diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..07f43b8 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +data/* \ No newline at end of file diff --git a/README.md b/README.md index 1248599..66c0187 100644 --- a/README.md +++ b/README.md @@ -1 +1,49 @@ -# pantallas-led +# Visualización para pantallas LED de paradas de bus + +Este repositorio contiene los archivos necesarios para ejecutar una aplicación Jupyter Notebook con ciertas bibliotecas de visualización y procesamiento de imágenes. + +## Contenido + +- `Dockerfile`: Define cómo construir la imagen Docker para ejecutar la aplicación. +- `requirements.txt`: Lista las bibliotecas y dependencias necesarias para la aplicación. + +## Dockerfile + +### Descripción + +El `Dockerfile` especifica cómo construir una imagen Docker basada en Python 3.8 que tiene todas las dependencias necesarias para ejecutar la aplicación. + +### Instrucciones + +1. **Imagen base**: Utiliza Python 3.8. +2. **Directorio de trabajo**: Establece `/app` como el directorio de trabajo en el contenedor. +3. **Instalación de dependencias**: Copia y utiliza `requirements.txt` para instalar las bibliotecas necesarias. +4. **Configuración de Jupyter**: Copia el archivo de configuración de Jupyter al contenedor. +5. **Puerto**: Expone el puerto 8888 para Jupyter Notebook. +6. **Comando de inicio**: Al iniciar el contenedor, se ejecuta Jupyter Notebook en el puerto 8888. + +## requirements.txt + +### Descripción + +El archivo `requirements.txt` lista las bibliotecas y dependencias que se requieren para la aplicación. + +### Bibliotecas y dependencias + +- `matplotlib`: Biblioteca de visualización de datos. +- `seaborn`: Biblioteca de visualización de datos basada en matplotlib. +- `plotly`: Biblioteca para gráficos interactivos. +- `opencv-python`: Biblioteca de procesamiento de imágenes y visión por computadora. +- `jupyter`: Entorno de desarrollo interactivo. + +## Cómo ejecutar + +1. Construye la imagen Docker: + +`docker build -t bus_stop_visualization .` + +2. Ejecuta el contenedor: + +`docker run -d --name bus_stop_vis -v /scripts:/app/scripts -p 8888:8888 bus_stop_visualization` + +3. Abre un navegador y accede a `http://localhost:8888` para comenzar a usar Jupyter Notebook. \ No newline at end of file diff --git a/data/input/gtfs-realtime.proto b/data/input/gtfs-realtime.proto new file mode 100644 index 0000000..f9b2b83 --- /dev/null +++ b/data/input/gtfs-realtime.proto @@ -0,0 +1,638 @@ +// Copyright 2015 The GTFS Specifications Authors. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +// Protocol definition file for GTFS Realtime. +// +// GTFS Realtime lets transit agencies provide consumers with realtime +// information about disruptions to their service (stations closed, lines not +// operating, important delays etc), location of their vehicles and expected +// arrival times. +// +// This protocol is published at: +// https://github.com/google/transit/tree/master/gtfs-realtime + +syntax = "proto2"; + +package transit_realtime; + +option java_package = "com.google.transit.realtime"; + +// The contents of a feed message. +// A feed is a continuous stream of feed messages. Each message in the stream is +// obtained as a response to an appropriate HTTP GET request. +// A realtime feed is always defined with relation to an existing GTFS feed. +// All the entity ids are resolved with respect to the GTFS feed. +// Note that "required" and "optional" as stated in this file refer to Protocol +// Buffer cardinality, not semantic cardinality. See reference.md at +// https://github.com/google/transit/tree/master/gtfs-realtime for field +// semantic cardinality. +message FeedMessage { + // Metadata about this feed and feed message. + required FeedHeader header = 1; + + // Contents of the feed. + repeated FeedEntity entity = 2; + + // The extensions namespace allows 3rd-party developers to extend the + // GTFS Realtime specification in order to add and evaluate new features and + // modifications to the spec. + extensions 1000 to 1999; +} + +// Metadata about a feed, included in feed messages. +message FeedHeader { + // Version of the feed specification. + // The current version is 2.0. + required string gtfs_realtime_version = 1; + + // Determines whether the current fetch is incremental. Currently, + // DIFFERENTIAL mode is unsupported and behavior is unspecified for feeds + // that use this mode. There are discussions on the GTFS Realtime mailing + // list around fully specifying the behavior of DIFFERENTIAL mode and the + // documentation will be updated when those discussions are finalized. + enum Incrementality { + FULL_DATASET = 0; + DIFFERENTIAL = 1; + } + optional Incrementality incrementality = 2 [default = FULL_DATASET]; + + // This timestamp identifies the moment when the content of this feed has been + // created (in server time). In POSIX time (i.e., number of seconds since + // January 1st 1970 00:00:00 UTC). + optional uint64 timestamp = 3; + + // The extensions namespace allows 3rd-party developers to extend the + // GTFS Realtime specification in order to add and evaluate new features and + // modifications to the spec. + extensions 1000 to 1999; +} + +// A definition (or update) of an entity in the transit feed. +message FeedEntity { + // The ids are used only to provide incrementality support. The id should be + // unique within a FeedMessage. Consequent FeedMessages may contain + // FeedEntities with the same id. In case of a DIFFERENTIAL update the new + // FeedEntity with some id will replace the old FeedEntity with the same id + // (or delete it - see is_deleted below). + // The actual GTFS entities (e.g. stations, routes, trips) referenced by the + // feed must be specified by explicit selectors (see EntitySelector below for + // more info). + required string id = 1; + + // Whether this entity is to be deleted. Relevant only for incremental + // fetches. + optional bool is_deleted = 2 [default = false]; + + // Data about the entity itself. Exactly one of the following fields must be + // present (unless the entity is being deleted). + optional TripUpdate trip_update = 3; + optional VehiclePosition vehicle = 4; + optional Alert alert = 5; + + // The extensions namespace allows 3rd-party developers to extend the + // GTFS Realtime Specification in order to add and evaluate new features and + // modifications to the spec. + extensions 1000 to 1999; +} + +// +// Entities used in the feed. +// + +// Realtime update of the progress of a vehicle along a trip. +// Depending on the value of ScheduleRelationship, a TripUpdate can specify: +// - A trip that proceeds along the schedule. +// - A trip that proceeds along a route but has no fixed schedule. +// - A trip that have been added or removed with regard to schedule. +// +// The updates can be for future, predicted arrival/departure events, or for +// past events that already occurred. +// Normally, updates should get more precise and more certain (see +// uncertainty below) as the events gets closer to current time. +// Even if that is not possible, the information for past events should be +// precise and certain. In particular, if an update points to time in the past +// but its update's uncertainty is not 0, the client should conclude that the +// update is a (wrong) prediction and that the trip has not completed yet. +// +// Note that the update can describe a trip that is already completed. +// To this end, it is enough to provide an update for the last stop of the trip. +// If the time of that is in the past, the client will conclude from that that +// the whole trip is in the past (it is possible, although inconsequential, to +// also provide updates for preceding stops). +// This option is most relevant for a trip that has completed ahead of schedule, +// but according to the schedule, the trip is still proceeding at the current +// time. Removing the updates for this trip could make the client assume +// that the trip is still proceeding. +// Note that the feed provider is allowed, but not required, to purge past +// updates - this is one case where this would be practically useful. +message TripUpdate { + // The Trip that this message applies to. There can be at most one + // TripUpdate entity for each actual trip instance. + // If there is none, that means there is no prediction information available. + // It does *not* mean that the trip is progressing according to schedule. + required TripDescriptor trip = 1; + + // Additional information on the vehicle that is serving this trip. + optional VehicleDescriptor vehicle = 3; + + // Timing information for a single predicted event (either arrival or + // departure). + // Timing consists of delay and/or estimated time, and uncertainty. + // - delay should be used when the prediction is given relative to some + // existing schedule in GTFS. + // - time should be given whether there is a predicted schedule or not. If + // both time and delay are specified, time will take precedence + // (although normally, time, if given for a scheduled trip, should be + // equal to scheduled time in GTFS + delay). + // + // Uncertainty applies equally to both time and delay. + // The uncertainty roughly specifies the expected error in true delay (but + // note, we don't yet define its precise statistical meaning). It's possible + // for the uncertainty to be 0, for example for trains that are driven under + // computer timing control. + message StopTimeEvent { + // Delay (in seconds) can be positive (meaning that the vehicle is late) or + // negative (meaning that the vehicle is ahead of schedule). Delay of 0 + // means that the vehicle is exactly on time. + optional int32 delay = 1; + + // Event as absolute time. + // In Unix time (i.e., number of seconds since January 1st 1970 00:00:00 + // UTC). + optional int64 time = 2; + + // If uncertainty is omitted, it is interpreted as unknown. + // If the prediction is unknown or too uncertain, the delay (or time) field + // should be empty. In such case, the uncertainty field is ignored. + // To specify a completely certain prediction, set its uncertainty to 0. + optional int32 uncertainty = 3; + + // The extensions namespace allows 3rd-party developers to extend the + // GTFS Realtime Specification in order to add and evaluate new features + // and modifications to the spec. + extensions 1000 to 1999; + } + + // Realtime update for arrival and/or departure events for a given stop on a + // trip. Updates can be supplied for both past and future events. + // The producer is allowed, although not required, to drop past events. + message StopTimeUpdate { + // The update is linked to a specific stop either through stop_sequence or + // stop_id, so one of the fields below must necessarily be set. + // See the documentation in TripDescriptor for more information. + + // Must be the same as in stop_times.txt in the corresponding GTFS feed. + optional uint32 stop_sequence = 1; + // Must be the same as in stops.txt in the corresponding GTFS feed. + optional string stop_id = 4; + + optional StopTimeEvent arrival = 2; + optional StopTimeEvent departure = 3; + + // The relation between this StopTime and the static schedule. + enum ScheduleRelationship { + // The vehicle is proceeding in accordance with its static schedule of + // stops, although not necessarily according to the times of the schedule. + // At least one of arrival and departure must be provided. If the schedule + // for this stop contains both arrival and departure times then so must + // this update. + SCHEDULED = 0; + + // The stop is skipped, i.e., the vehicle will not stop at this stop. + // Arrival and departure are optional. + SKIPPED = 1; + + // No data is given for this stop. The main intention for this value is to + // give the predictions only for part of a trip, i.e., if the last update + // for a trip has a NO_DATA specifier, then StopTimes for the rest of the + // stops in the trip are considered to be unspecified as well. + // Neither arrival nor departure should be supplied. + NO_DATA = 2; + } + optional ScheduleRelationship schedule_relationship = 5 + [default = SCHEDULED]; + + // The extensions namespace allows 3rd-party developers to extend the + // GTFS Realtime Specification in order to add and evaluate new features + // and modifications to the spec. + extensions 1000 to 1999; + } + + // Updates to StopTimes for the trip (both future, i.e., predictions, and in + // some cases, past ones, i.e., those that already happened). + // The updates must be sorted by stop_sequence, and apply for all the + // following stops of the trip up to the next specified one. + // + // Example 1: + // For a trip with 20 stops, a StopTimeUpdate with arrival delay and departure + // delay of 0 for stop_sequence of the current stop means that the trip is + // exactly on time. + // + // Example 2: + // For the same trip instance, 3 StopTimeUpdates are provided: + // - delay of 5 min for stop_sequence 3 + // - delay of 1 min for stop_sequence 8 + // - delay of unspecified duration for stop_sequence 10 + // This will be interpreted as: + // - stop_sequences 3,4,5,6,7 have delay of 5 min. + // - stop_sequences 8,9 have delay of 1 min. + // - stop_sequences 10,... have unknown delay. + repeated StopTimeUpdate stop_time_update = 2; + + // Moment at which the vehicle's real-time progress was measured. In POSIX + // time (i.e., the number of seconds since January 1st 1970 00:00:00 UTC). + optional uint64 timestamp = 4; + + // The current schedule deviation for the trip. Delay should only be + // specified when the prediction is given relative to some existing schedule + // in GTFS. + // + // Delay (in seconds) can be positive (meaning that the vehicle is late) or + // negative (meaning that the vehicle is ahead of schedule). Delay of 0 + // means that the vehicle is exactly on time. + // + // Delay information in StopTimeUpdates take precedent of trip-level delay + // information, such that trip-level delay is only propagated until the next + // stop along the trip with a StopTimeUpdate delay value specified. + // + // Feed providers are strongly encouraged to provide a TripUpdate.timestamp + // value indicating when the delay value was last updated, in order to + // evaluate the freshness of the data. + // + // NOTE: This field is still experimental, and subject to change. It may be + // formally adopted in the future. + optional int32 delay = 5; + + // The extensions namespace allows 3rd-party developers to extend the + // GTFS Realtime Specification in order to add and evaluate new features and + // modifications to the spec. + extensions 1000 to 1999; +} + +// Realtime positioning information for a given vehicle. +message VehiclePosition { + // The Trip that this vehicle is serving. + // Can be empty or partial if the vehicle can not be identified with a given + // trip instance. + optional TripDescriptor trip = 1; + + // Additional information on the vehicle that is serving this trip. + optional VehicleDescriptor vehicle = 8; + + // Current position of this vehicle. + optional Position position = 2; + + // The stop sequence index of the current stop. The meaning of + // current_stop_sequence (i.e., the stop that it refers to) is determined by + // current_status. + // If current_status is missing IN_TRANSIT_TO is assumed. + optional uint32 current_stop_sequence = 3; + // Identifies the current stop. The value must be the same as in stops.txt in + // the corresponding GTFS feed. + optional string stop_id = 7; + + enum VehicleStopStatus { + // The vehicle is just about to arrive at the stop (on a stop + // display, the vehicle symbol typically flashes). + INCOMING_AT = 0; + + // The vehicle is standing at the stop. + STOPPED_AT = 1; + + // The vehicle has departed and is in transit to the next stop. + IN_TRANSIT_TO = 2; + } + // The exact status of the vehicle with respect to the current stop. + // Ignored if current_stop_sequence is missing. + optional VehicleStopStatus current_status = 4 [default = IN_TRANSIT_TO]; + + // Moment at which the vehicle's position was measured. In POSIX time + // (i.e., number of seconds since January 1st 1970 00:00:00 UTC). + optional uint64 timestamp = 5; + + // Congestion level that is affecting this vehicle. + enum CongestionLevel { + UNKNOWN_CONGESTION_LEVEL = 0; + RUNNING_SMOOTHLY = 1; + STOP_AND_GO = 2; + CONGESTION = 3; + SEVERE_CONGESTION = 4; // People leaving their cars. + } + optional CongestionLevel congestion_level = 6; + + // The degree of passenger occupancy of the vehicle. This field is still + // experimental, and subject to change. It may be formally adopted in the + // future. + enum OccupancyStatus { + // The vehicle is considered empty by most measures, and has few or no + // passengers onboard, but is still accepting passengers. + EMPTY = 0; + + // The vehicle has a relatively large percentage of seats available. + // What percentage of free seats out of the total seats available is to be + // considered large enough to fall into this category is determined at the + // discretion of the producer. + MANY_SEATS_AVAILABLE = 1; + + // The vehicle has a relatively small percentage of seats available. + // What percentage of free seats out of the total seats available is to be + // considered small enough to fall into this category is determined at the + // discretion of the feed producer. + FEW_SEATS_AVAILABLE = 2; + + // The vehicle can currently accommodate only standing passengers. + STANDING_ROOM_ONLY = 3; + + // The vehicle can currently accommodate only standing passengers + // and has limited space for them. + CRUSHED_STANDING_ROOM_ONLY = 4; + + // The vehicle is considered full by most measures, but may still be + // allowing passengers to board. + FULL = 5; + + // The vehicle is not accepting additional passengers. + NOT_ACCEPTING_PASSENGERS = 6; + } + optional OccupancyStatus occupancy_status = 9; + + // The extensions namespace allows 3rd-party developers to extend the + // GTFS Realtime Specification in order to add and evaluate new features and + // modifications to the spec. + extensions 1000 to 1999; +} + +// An alert, indicating some sort of incident in the public transit network. +message Alert { + // Time when the alert should be shown to the user. If missing, the + // alert will be shown as long as it appears in the feed. + // If multiple ranges are given, the alert will be shown during all of them. + repeated TimeRange active_period = 1; + + // Entities whose users we should notify of this alert. + repeated EntitySelector informed_entity = 5; + + // Cause of this alert. + enum Cause { + UNKNOWN_CAUSE = 1; + OTHER_CAUSE = 2; // Not machine-representable. + TECHNICAL_PROBLEM = 3; + STRIKE = 4; // Public transit agency employees stopped working. + DEMONSTRATION = 5; // People are blocking the streets. + ACCIDENT = 6; + HOLIDAY = 7; + WEATHER = 8; + MAINTENANCE = 9; + CONSTRUCTION = 10; + POLICE_ACTIVITY = 11; + MEDICAL_EMERGENCY = 12; + } + optional Cause cause = 6 [default = UNKNOWN_CAUSE]; + + // What is the effect of this problem on the affected entity. + enum Effect { + NO_SERVICE = 1; + REDUCED_SERVICE = 2; + + // We don't care about INsignificant delays: they are hard to detect, have + // little impact on the user, and would clutter the results as they are too + // frequent. + SIGNIFICANT_DELAYS = 3; + + DETOUR = 4; + ADDITIONAL_SERVICE = 5; + MODIFIED_SERVICE = 6; + OTHER_EFFECT = 7; + UNKNOWN_EFFECT = 8; + STOP_MOVED = 9; + } + optional Effect effect = 7 [default = UNKNOWN_EFFECT]; + + // The URL which provides additional information about the alert. + optional TranslatedString url = 8; + + // Alert header. Contains a short summary of the alert text as plain-text. + optional TranslatedString header_text = 10; + + // Full description for the alert as plain-text. The information in the + // description should add to the information of the header. + optional TranslatedString description_text = 11; + + // The extensions namespace allows 3rd-party developers to extend the + // GTFS Realtime Specification in order to add and evaluate new features + // and modifications to the spec. + extensions 1000 to 1999; +} + +// +// Low level data structures used above. +// + +// A time interval. The interval is considered active at time 't' if 't' is +// greater than or equal to the start time and less than the end time. +message TimeRange { + // Start time, in POSIX time (i.e., number of seconds since January 1st 1970 + // 00:00:00 UTC). + // If missing, the interval starts at minus infinity. + optional uint64 start = 1; + + // End time, in POSIX time (i.e., number of seconds since January 1st 1970 + // 00:00:00 UTC). + // If missing, the interval ends at plus infinity. + optional uint64 end = 2; + + // The extensions namespace allows 3rd-party developers to extend the + // GTFS Realtime Specification in order to add and evaluate new features and + // modifications to the spec. + extensions 1000 to 1999; +} + +// A position. +message Position { + // Degrees North, in the WGS-84 coordinate system. + required float latitude = 1; + + // Degrees East, in the WGS-84 coordinate system. + required float longitude = 2; + + // Bearing, in degrees, clockwise from North, i.e., 0 is North and 90 is East. + // This can be the compass bearing, or the direction towards the next stop + // or intermediate location. + // This should not be direction deduced from the sequence of previous + // positions, which can be computed from previous data. + optional float bearing = 3; + + // Odometer value, in meters. + optional double odometer = 4; + // Momentary speed measured by the vehicle, in meters per second. + optional float speed = 5; + + // The extensions namespace allows 3rd-party developers to extend the + // GTFS Realtime Specification in order to add and evaluate new features and + // modifications to the spec. + extensions 1000 to 1999; +} + +// A descriptor that identifies an instance of a GTFS trip, or all instances of +// a trip along a route. +// - To specify a single trip instance, the trip_id (and if necessary, +// start_time) is set. If route_id is also set, then it should be same as one +// that the given trip corresponds to. +// - To specify all the trips along a given route, only the route_id should be +// set. Note that if the trip_id is not known, then stop sequence ids in +// TripUpdate are not sufficient, and stop_ids must be provided as well. In +// addition, absolute arrival/departure times must be provided. +message TripDescriptor { + // The trip_id from the GTFS feed that this selector refers to. + // For non frequency-based trips, this field is enough to uniquely identify + // the trip. For frequency-based trip, start_time and start_date might also be + // necessary. + optional string trip_id = 1; + + // The route_id from the GTFS that this selector refers to. + optional string route_id = 5; + + // The direction_id from the GTFS feed trips.txt file, indicating the + // direction of travel for trips this selector refers to. This field is + // still experimental, and subject to change. It may be formally adopted in + // the future. + optional uint32 direction_id = 6; + + // The initially scheduled start time of this trip instance. + // When the trip_id corresponds to a non-frequency-based trip, this field + // should either be omitted or be equal to the value in the GTFS feed. When + // the trip_id corresponds to a frequency-based trip, the start_time must be + // specified for trip updates and vehicle positions. If the trip corresponds + // to exact_times=1 GTFS record, then start_time must be some multiple + // (including zero) of headway_secs later than frequencies.txt start_time for + // the corresponding time period. If the trip corresponds to exact_times=0, + // then its start_time may be arbitrary, and is initially expected to be the + // first departure of the trip. Once established, the start_time of this + // frequency-based trip should be considered immutable, even if the first + // departure time changes -- that time change may instead be reflected in a + // StopTimeUpdate. + // Format and semantics of the field is same as that of + // GTFS/frequencies.txt/start_time, e.g., 11:15:35 or 25:15:35. + optional string start_time = 2; + // The scheduled start date of this trip instance. + // Must be provided to disambiguate trips that are so late as to collide with + // a scheduled trip on a next day. For example, for a train that departs 8:00 + // and 20:00 every day, and is 12 hours late, there would be two distinct + // trips on the same time. + // This field can be provided but is not mandatory for schedules in which such + // collisions are impossible - for example, a service running on hourly + // schedule where a vehicle that is one hour late is not considered to be + // related to schedule anymore. + // In YYYYMMDD format. + optional string start_date = 3; + + // The relation between this trip and the static schedule. If a trip is done + // in accordance with temporary schedule, not reflected in GTFS, then it + // shouldn't be marked as SCHEDULED, but likely as ADDED. + enum ScheduleRelationship { + // Trip that is running in accordance with its GTFS schedule, or is close + // enough to the scheduled trip to be associated with it. + SCHEDULED = 0; + + // An extra trip that was added in addition to a running schedule, for + // example, to replace a broken vehicle or to respond to sudden passenger + // load. + ADDED = 1; + + // A trip that is running with no schedule associated to it, for example, if + // there is no schedule at all. + UNSCHEDULED = 2; + + // A trip that existed in the schedule but was removed. + CANCELED = 3; + } + optional ScheduleRelationship schedule_relationship = 4; + + // The extensions namespace allows 3rd-party developers to extend the + // GTFS Realtime Specification in order to add and evaluate new features and + // modifications to the spec. + extensions 1000 to 1999; +} + +// Identification information for the vehicle performing the trip. +message VehicleDescriptor { + // Internal system identification of the vehicle. Should be unique per + // vehicle, and can be used for tracking the vehicle as it proceeds through + // the system. + optional string id = 1; + + // User visible label, i.e., something that must be shown to the passenger to + // help identify the correct vehicle. + optional string label = 2; + + // The license plate of the vehicle. + optional string license_plate = 3; + + // The extensions namespace allows 3rd-party developers to extend the + // GTFS Realtime Specification in order to add and evaluate new features and + // modifications to the spec. + extensions 1000 to 1999; +} + +// A selector for an entity in a GTFS feed. +message EntitySelector { + // The values of the fields should correspond to the appropriate fields in the + // GTFS feed. + // At least one specifier must be given. If several are given, then the + // matching has to apply to all the given specifiers. + optional string agency_id = 1; + optional string route_id = 2; + // corresponds to route_type in GTFS. + optional int32 route_type = 3; + optional TripDescriptor trip = 4; + optional string stop_id = 5; + + // The extensions namespace allows 3rd-party developers to extend the + // GTFS Realtime Specification in order to add and evaluate new features and + // modifications to the spec. + extensions 1000 to 1999; +} + +// An internationalized message containing per-language versions of a snippet of +// text or a URL. +// One of the strings from a message will be picked up. The resolution proceeds +// as follows: +// 1. If the UI language matches the language code of a translation, +// the first matching translation is picked. +// 2. If a default UI language (e.g., English) matches the language code of a +// translation, the first matching translation is picked. +// 3. If some translation has an unspecified language code, that translation is +// picked. +message TranslatedString { + message Translation { + // A UTF-8 string containing the message. + required string text = 1; + // BCP-47 language code. Can be omitted if the language is unknown or if + // no i18n is done at all for the feed. At most one translation is + // allowed to have an unspecified language tag. + optional string language = 2; + + // The extensions namespace allows 3rd-party developers to extend the + // GTFS Realtime Specification in order to add and evaluate new features and + // modifications to the spec. + extensions 1000 to 1999; + } + // At least one translation must be provided. + repeated Translation translation = 1; + + // The extensions namespace allows 3rd-party developers to extend the + // GTFS Realtime Specification in order to add and evaluate new features and + // modifications to the spec. + extensions 1000 to 1999; +} diff --git a/data/input/proto_file/input.proto b/data/input/proto_file/input.proto new file mode 100644 index 0000000..bd9dba9 Binary files /dev/null and b/data/input/proto_file/input.proto differ diff --git a/data/output/json_file/output.json b/data/output/json_file/output.json new file mode 100644 index 0000000..4251ef7 --- /dev/null +++ b/data/output/json_file/output.json @@ -0,0 +1,275907 @@ +{ + "header": { + "gtfs_realtime_version": "2.0", + "incrementality": 0, + "timestamp": 1694889070 + }, + "entity": [ + { + "id": "47323735-0555-464b-8c87-84612a960b31", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "6580c01a-a-701ff27f-2", + "start_date": "20230916", + "route_id": "540" + }, + "stop_time_update": [ + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694888663 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-13" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889285 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-Oct" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889555 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-Aug" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889651 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-Jun" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889694 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-Apr" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890567 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16-Aug" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890698 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16-May" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890756 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16-Mar" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890809 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16-Jan" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890909 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "27-Jan" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890954 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "17-Jan" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694891205 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "18-Feb" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694891538 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "19-Feb" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694891680 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20-Feb" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694891719 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20-Mar" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694891798 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20-Jun" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694891880 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20-Sep" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694892011 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20-Dec" + } + ] + } + }, + { + "id": "8e20884f-b099-465b-941b-f0682817d7ef", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "5b492c06-9-701ff27f-2", + "start_date": "20230916", + "route_id": "540" + }, + "stop_time_update": [ + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694889032 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "3-Mar" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694889092 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50031" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889144 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50032" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889181 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39495" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889278 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50033" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889315 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39497" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889346 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49407" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889400 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50034" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889442 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40903" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889497 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50035" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889547 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50036" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889772 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50037" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889912 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50038" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889979 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50039" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694890040 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50040" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694890123 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50041" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694890263 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-15" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890349 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-13" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890550 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Oct" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890602 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Aug" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890759 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jun" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890889 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Feb" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694891031 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Jul" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694891105 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-May" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694891150 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1508142" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694891257 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Feb" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694891322 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8-Jan" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694891368 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "9-Jan" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694891405 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Apr" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694891481 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Jan" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694891524 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44863" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694891569 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Mar" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891626 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "11-Jan" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891801 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-17" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891969 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-14" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694892024 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-11" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694892077 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91162" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694892196 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50023" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694892324 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Jul" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694892382 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Apr" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694892498 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Mar" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694892584 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38151" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694892816 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-13" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694893990 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-Oct" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694894669 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-Aug" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694894943 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-Jun" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694895072 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-Apr" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694898851 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16-Aug" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694899690 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16-May" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694900099 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16-Mar" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694900492 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16-Jan" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694901287 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "27-Jan" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694901671 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "17-Jan" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694904190 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "18-Feb" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694908919 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "19-Feb" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694911675 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20-Feb" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694912564 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20-Mar" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694914488 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20-Jun" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694916813 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20-Sep" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694921300 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20-Dec" + } + ] + } + }, + { + "id": "2e56463c-9cd8-4ef0-bdc0-767603d6f010", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "052d899d-c-701ff27f-2", + "start_date": "20230916", + "route_id": "540" + }, + "stop_time_update": [ + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889046 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "19-Apr" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889172 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "18-Jan" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889236 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "18-Feb" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889289 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "18-Mar" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889352 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50042" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889471 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16-Feb" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889525 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16-4" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889621 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16-Jun" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889679 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16-Jul" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889720 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-Jan" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890363 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-Feb" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890499 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-Mar" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890534 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-May" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890589 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-Jul" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890676 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-Sep" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694891492 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-Dec" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694891668 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38149" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694891743 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Feb" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694891854 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-May" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694891903 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Jun" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694891977 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Aug" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694892026 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50024" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694892201 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-12" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694892231 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-13" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694892361 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-15" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694892389 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-16" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694892462 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-18" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694892607 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "13-Jan" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694892675 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "13-Feb" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694892715 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "28-Jan" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694892795 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "12-3" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694892930 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "12-Jan" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694892995 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "12-Feb" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694893095 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Jan" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694893187 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Mar" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694893445 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Jun" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694893569 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Aug" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694893717 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jan" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694893874 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Mar" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694894108 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-May" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694894476 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jul" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694894624 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Sep" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694894888 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Nov" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694895176 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Dec" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694895448 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-14" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694895979 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-17" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694896286 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-19" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694896504 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-20" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694896752 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-22" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694897029 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-24" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694897444 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-25" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694898765 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "5-Feb" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694899349 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Feb" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694899716 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Mar" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694900074 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Apr" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694900386 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-May" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694900786 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Jun" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694901309 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Jul" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694901642 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Aug" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694902031 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Sep" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694902701 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Oct" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694903288 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Nov" + } + ] + } + }, + { + "id": "a3c8567d-4b28-49c3-be81-ea3eef681053", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "4a1e454c-e-701ff27f-2", + "start_date": "20230916", + "route_id": "540" + }, + "stop_time_update": [ + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694888997 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "18-Feb" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889276 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "19-Feb" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889385 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20-Feb" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889414 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20-Mar" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694889472 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20-Jun" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694889530 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20-Sep" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694889620 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20-Dec" + } + ] + } + }, + { + "id": "08173482-8a5a-4c8d-9c9e-40137cf5f92d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "b6530c23-0-701ff27f-2", + "start_date": "20230916", + "route_id": "540" + }, + "stop_time_update": [ + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694889169 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "5-Feb" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694889262 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Feb" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694889315 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Mar" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694889364 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Apr" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694889403 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-May" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694889452 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Jun" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694889510 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Jul" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694889544 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Aug" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694889583 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Sep" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694889644 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Oct" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694889693 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Nov" + } + ] + } + }, + { + "id": "194a87e2-fbcc-485c-a999-8c8668671ef8", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "97523aa1-7-701ff27f-2", + "start_date": "20230916", + "route_id": "540" + }, + "stop_time_update": [ + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889031 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Feb" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889093 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8-Jan" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889135 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "9-Jan" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889169 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Apr" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889237 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Jan" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889274 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44863" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889313 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Mar" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889360 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "11-Jan" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889503 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-17" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889632 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-14" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889673 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-11" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889711 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91162" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889796 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50023" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889883 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Jul" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889922 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Apr" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889997 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Mar" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890052 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38151" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890192 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-13" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890799 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-Oct" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891091 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-Aug" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891198 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-Jun" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891248 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-Apr" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694892349 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16-Aug" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694892532 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16-May" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694892615 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16-Mar" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694892691 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16-Jan" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694892837 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "27-Jan" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694892904 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "17-Jan" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694893286 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "18-Feb" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694893823 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "19-Feb" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694894061 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20-Feb" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694894129 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20-Mar" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694894265 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20-Jun" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694894410 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20-Sep" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694894644 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20-Dec" + } + ] + } + }, + { + "id": "5dbda519-b60b-4a72-82e8-23c4828d20c9", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "619ce6ab-8-701ff27f-2", + "start_date": "20230916", + "route_id": "540" + }, + "stop_time_update": [ + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889000 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50024" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889137 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-12" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889160 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-13" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889255 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-15" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889274 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-16" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889325 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-18" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889422 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "13-Jan" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889466 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "13-Feb" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889491 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "28-Jan" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889541 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "12-3" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889622 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "12-Jan" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889660 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "12-Feb" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889716 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Jan" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889767 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Mar" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889901 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Jun" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889962 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Aug" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890033 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jan" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890105 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Mar" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890207 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-May" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890357 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jul" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890414 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Sep" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890511 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Nov" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890610 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Dec" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890700 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-14" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890861 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-17" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890948 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-19" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694891007 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-20" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694891071 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-22" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694891140 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-24" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694891238 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-25" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694891514 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "5-Feb" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694891621 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Feb" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694891684 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Mar" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694891743 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Apr" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694891793 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-May" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694891854 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Jun" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694891929 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Jul" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694891975 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Aug" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694892027 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Sep" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694892111 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Oct" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694892180 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Nov" + } + ] + } + }, + { + "id": "0ed9a4b9-0622-40c5-bfc2-fcf366410395", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "9e911196-b-701ff27f-2", + "start_date": "20230916", + "route_id": "540" + }, + "stop_time_update": [ + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889567 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-Feb" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889702 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-Mar" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889736 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-May" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889791 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-Jul" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889875 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-Sep" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890619 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-Dec" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890770 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38149" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890833 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Feb" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890926 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-May" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890966 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Jun" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694891027 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Aug" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694891067 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50024" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694891209 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-12" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694891233 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-13" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694891336 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-15" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891358 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-16" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891416 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-18" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891528 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "13-Jan" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891580 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "13-Feb" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891611 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "28-Jan" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891672 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "12-3" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891773 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "12-Jan" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891823 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "12-Feb" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891896 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Jan" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891964 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Mar" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694892152 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Jun" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694892240 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Aug" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694892344 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jan" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694892454 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Mar" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694892615 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-May" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694892863 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jul" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694892960 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Sep" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694893132 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Nov" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694893316 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Dec" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694893486 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-14" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694893810 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-17" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694893992 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-19" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694894119 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-20" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694894262 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-22" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694894418 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-24" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694894648 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-25" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694895343 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "5-Feb" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694895634 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Feb" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694895812 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Mar" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694895982 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Apr" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694896128 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-May" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694896311 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Jun" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694896544 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Jul" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694896689 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Aug" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694896857 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Sep" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694897136 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Oct" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694897373 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Nov" + } + ] + } + }, + { + "id": "20b39c49-c387-4ca5-b8ed-4e1bad57d901", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "7d76082a-c-701ff27f-2", + "start_date": "20230916", + "route_id": "540" + }, + "stop_time_update": [ + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889054 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-14" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889098 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-11" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889139 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91162" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889230 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50023" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889322 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Jul" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889362 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Apr" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889441 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Mar" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889497 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38151" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889641 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-13" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890234 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-Oct" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890506 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-Aug" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890605 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-Jun" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890650 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-Apr" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891604 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16-Aug" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891755 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16-May" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891822 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16-Mar" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891885 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16-Jan" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694892002 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "27-Jan" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694892056 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "17-Jan" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694892358 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "18-Feb" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694892769 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "19-Feb" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694892948 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20-Feb" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694892998 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20-Mar" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694893099 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20-Jun" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694893205 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20-Sep" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694893375 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20-Dec" + } + ] + } + }, + { + "id": "fde89fcf-e11d-4728-9aed-56ebc3e54c20", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "90ec6b89-b-701ff27f-2", + "start_date": "20230916", + "route_id": "540" + }, + "stop_time_update": [ + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889054 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-15" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889147 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-13" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889356 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Oct" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889408 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Aug" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889563 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jun" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889687 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Feb" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889818 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Jul" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889884 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-May" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889924 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1508142" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890018 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Feb" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890075 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8-Jan" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890114 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "9-Jan" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890145 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Apr" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890209 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Jan" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890244 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44863" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890280 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Mar" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890326 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "11-Jan" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890466 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-17" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890596 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-14" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890637 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-11" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890676 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91162" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890765 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50023" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890858 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Jul" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890899 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Apr" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890981 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Mar" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891041 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38151" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891198 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-13" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891925 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-Oct" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694892302 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-Aug" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694892447 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-Jun" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694892514 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-Apr" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694894151 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16-Aug" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694894449 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16-May" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694894588 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16-Mar" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694894717 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16-Jan" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694894968 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "27-Jan" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694895084 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "17-Jan" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694895775 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "18-Feb" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694896811 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "19-Feb" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694897300 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20-Feb" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694897443 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20-Mar" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694897732 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20-Jun" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694898048 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20-Sep" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694898572 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20-Dec" + } + ] + } + }, + { + "id": "41bfefdf-262e-4480-8d4a-a36bb393505e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "2557141d-1-701ff27f-2", + "start_date": "20230916", + "route_id": "540" + }, + "stop_time_update": [ + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889716 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-Dec" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889861 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38149" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889921 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Feb" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890007 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-May" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890044 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Jun" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890099 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Aug" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890136 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50024" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890261 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-12" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890282 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-13" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890372 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-15" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890391 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-16" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890441 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-18" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890536 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "13-Jan" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890579 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "13-Feb" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890605 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "28-Jan" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890655 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "12-3" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890738 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "12-Jan" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890778 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "12-Feb" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890837 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Jan" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890891 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Mar" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891037 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Jun" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891105 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Aug" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891184 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jan" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891266 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Mar" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891385 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-May" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891563 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jul" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891632 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Sep" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891752 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Nov" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891878 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Dec" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694891993 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-14" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694892206 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-17" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694892323 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-19" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694892403 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-20" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694892492 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-22" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694892589 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-24" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694892728 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-25" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694893134 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "5-Feb" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694893297 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Feb" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694893395 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Mar" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694893488 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Apr" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694893566 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-May" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694893663 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Jun" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694893785 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Jul" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694893860 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Aug" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694893945 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Sep" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694894084 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Oct" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694894201 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Nov" + } + ] + } + }, + { + "id": "e385a63b-95ad-4618-9b72-0dfda2d59291", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "6c343838-d-701ff27f-2", + "start_date": "20230916", + "route_id": "540" + }, + "stop_time_update": [ + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889243 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-Aug" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889344 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-Jun" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889389 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-Apr" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890246 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16-Aug" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890366 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16-May" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890420 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16-Mar" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890468 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16-Jan" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890557 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "27-Jan" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890597 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "17-Jan" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890817 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "18-Feb" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694891100 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "19-Feb" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694891217 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20-Feb" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694891250 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20-Mar" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694891315 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20-Jun" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694891382 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20-Sep" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694891487 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20-Dec" + } + ] + } + }, + { + "id": "a4e6b9ec-2795-4d15-998d-dfc3eaf47637", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "f4b6a532-2-701ff27f-2", + "start_date": "20230916", + "route_id": "540" + }, + "stop_time_update": [ + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889016 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50033" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889055 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39497" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889088 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49407" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889144 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50034" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889187 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40903" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889245 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50035" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889297 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50036" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889528 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50037" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889670 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50038" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889738 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50039" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889799 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50040" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889882 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50041" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694890022 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-15" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890107 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-13" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890305 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Oct" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890355 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Aug" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890508 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jun" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890633 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Feb" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890769 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Jul" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890840 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-May" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890883 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1508142" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890984 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Feb" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694891046 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8-Jan" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694891089 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "9-Jan" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694891124 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Apr" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694891195 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Jan" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694891235 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44863" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694891277 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Mar" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891330 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "11-Jan" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891493 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-17" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891648 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-14" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891699 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-11" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891746 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91162" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891856 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50023" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891972 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Jul" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694892024 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Apr" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694892129 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Mar" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694892207 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38151" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694892414 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-13" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694893441 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-Oct" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694894020 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-Aug" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694894250 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-Jun" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694894358 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-Apr" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694897356 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16-Aug" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694897983 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16-May" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694898285 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16-Mar" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694898571 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16-Jan" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694899142 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "27-Jan" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694899415 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "17-Jan" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694901140 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "18-Feb" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694904123 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "19-Feb" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694905725 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20-Feb" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694906221 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20-Mar" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694907266 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20-Jun" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694908473 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20-Sep" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694910652 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20-Dec" + } + ] + } + }, + { + "id": "36071446-42b7-4a20-a63d-e286f01b1fa2", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "101b6e55-5-701ff27f-2", + "start_date": "20230916", + "route_id": "540" + }, + "stop_time_update": [ + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694888995 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "12-Jan" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889037 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "12-Feb" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889098 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Jan" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889152 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Mar" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889295 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Jun" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889360 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Aug" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889433 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jan" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889507 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Mar" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889611 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-May" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889761 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jul" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889817 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Sep" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889912 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Nov" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890009 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Dec" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890094 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-14" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890247 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-17" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890328 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-19" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694890382 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-20" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694890441 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-22" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694890504 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-24" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694890593 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-25" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694890837 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "5-Feb" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694890931 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Feb" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694890985 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Mar" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694891036 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Apr" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694891079 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-May" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694891130 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Jun" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694891194 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Jul" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694891233 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Aug" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694891276 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Sep" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694891346 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Oct" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694891403 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Nov" + } + ] + } + }, + { + "id": "6bb13bc0-1071-488d-929d-8f63b7d1ceff", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "b1e159c9-2-701ff27f-2", + "start_date": "20230916", + "route_id": "540" + }, + "stop_time_update": [ + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889029 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50036" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889269 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50037" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889415 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50038" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889484 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50039" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889546 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50040" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889631 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50041" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889772 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-15" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889857 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-13" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890054 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Oct" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890104 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Aug" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890255 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jun" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890378 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Feb" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890510 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Jul" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890579 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-May" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890620 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1508142" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890719 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Feb" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890778 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8-Jan" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890819 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "9-Jan" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890853 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Apr" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890921 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Jan" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890959 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44863" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890999 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Mar" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891050 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "11-Jan" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891204 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-17" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891351 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-14" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891398 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-11" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891443 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91162" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891545 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50023" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891654 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Jul" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891703 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Apr" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891800 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Mar" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891872 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38151" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694892063 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-13" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694892992 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-Oct" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694893505 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-Aug" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694893707 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-Jun" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694893801 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-Apr" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694896327 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16-Aug" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694896835 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16-May" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694897076 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16-Mar" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694897303 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16-Jan" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694897754 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "27-Jan" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694897967 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "17-Jan" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694899287 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "18-Feb" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694901462 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "19-Feb" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694902577 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20-Feb" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694902916 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20-Mar" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694903617 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20-Jun" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694904411 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20-Sep" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694905798 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20-Dec" + } + ] + } + }, + { + "id": "1f90e88d-c378-4383-b26f-04a5819a8173", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "7d120aea-c-701ff27f-2", + "start_date": "20230916", + "route_id": "540" + }, + "stop_time_update": [ + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694888915 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50042" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889039 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16-Feb" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889096 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16-4" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889196 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16-Jun" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889256 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16-Jul" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889298 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-Jan" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889946 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-Feb" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890080 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-Mar" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890114 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-May" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890169 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-Jul" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890254 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-Sep" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694891032 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-Dec" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694891196 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38149" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694891266 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Feb" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694891369 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-May" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694891414 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Jun" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694891482 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Aug" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694891527 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50024" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694891686 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-12" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694891714 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-13" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694891832 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-15" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891857 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-16" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891923 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-18" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694892054 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "13-Jan" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694892115 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "13-Feb" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694892150 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "28-Jan" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694892222 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "12-3" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694892341 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "12-Jan" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694892400 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "12-Feb" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694892488 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Jan" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694892569 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Mar" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694892795 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Jun" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694892903 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Aug" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694893031 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jan" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694893167 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Mar" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694893367 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-May" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694893681 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jul" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694893805 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Sep" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694894027 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Nov" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694894267 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Dec" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694894491 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-14" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694894925 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-17" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694895173 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-19" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694895347 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-20" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694895545 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-22" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694895764 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-24" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694896090 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-25" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694897102 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "5-Feb" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694897539 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Feb" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694897810 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Mar" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694898072 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Apr" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694898299 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-May" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694898587 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Jun" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694898959 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Jul" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694899193 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Aug" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694899465 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Sep" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694899927 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Oct" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694900325 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Nov" + } + ] + } + }, + { + "id": "5ec13397-2b9a-48a9-b05d-d549de9badea", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "94761076-e-701ff27f-2", + "start_date": "20230916", + "route_id": "541" + }, + "stop_time_update": [ + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889407 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "23-Jan" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889645 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "24-14" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694890527 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "24-May" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694890606 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "24-Apr" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694890828 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "24-Feb" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694890907 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "24-Jan" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694890970 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "25-2" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694891009 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "29-9" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694891046 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "30-1" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694891141 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "26-Jan" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694891264 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "26-Feb" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694891305 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "26-3" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694891340 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "29-6" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694891417 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "29-7" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694891564 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "29-8" + } + ] + } + }, + { + "id": "3b838b19-462f-4d97-aafe-e8012ed9305d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "d3f89e8a-6-701ff27f-2", + "start_date": "20230916", + "route_id": "541" + }, + "stop_time_update": [ + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694888988 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "24-13" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889406 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "22-Jan" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889648 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "18-Feb" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889698 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "18-Mar" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889758 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50042" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889872 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16-Feb" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889925 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16-4" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890019 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16-Jun" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890073 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16-Jul" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890116 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-Jan" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890776 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-Feb" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890925 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-Mar" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890954 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-May" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694891005 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-Jul" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694891100 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-Sep" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694892015 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-Dec" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694892217 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38149" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694892305 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Feb" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694892434 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-May" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694892492 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Jun" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694892580 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Aug" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694892637 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50024" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694892847 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-12" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694892883 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-13" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694893041 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-15" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694893075 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-16" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694893174 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-18" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694893343 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "13-Jan" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694893442 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "13-Feb" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694893476 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "28-Jan" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694893577 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "12-3" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694893745 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "12-Jan" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694893839 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "12-Feb" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694893955 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Jan" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694894073 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Mar" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694894407 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Jun" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694894566 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Aug" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694894761 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jan" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694894970 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Mar" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694895284 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-May" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694895789 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jul" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694895994 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Sep" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694896343 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Nov" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694896805 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Dec" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694897217 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-14" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694897966 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-17" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694898480 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-19" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694898797 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-20" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694899196 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-22" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694899658 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-24" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694900345 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-25" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694902557 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "5-Feb" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694903626 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Feb" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694904320 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Mar" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694905011 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Apr" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694905629 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-May" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694906439 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Jun" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694907531 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Jul" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694908245 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Aug" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694909106 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Sep" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694910641 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Oct" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694912049 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Nov" + } + ] + } + }, + { + "id": "f32ebfb3-31bb-44f9-8f81-0506217d7149", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "e07d182b-0-701ff27f-2", + "start_date": "20230916", + "route_id": "541" + }, + "stop_time_update": [ + { + "stop_sequence": 4, + "arrival": { + "delay": 0, + "time": 1694889075 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Apr" + }, + { + "stop_sequence": 5, + "arrival": { + "delay": 0, + "time": 1694889210 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "3-1" + }, + { + "stop_sequence": 6, + "arrival": { + "delay": 0, + "time": 1694889262 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50030" + }, + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694889314 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "3-Mar" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694889364 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50031" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889414 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50032" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889450 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39495" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889543 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50033" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889580 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39497" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889610 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49407" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889662 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50034" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889703 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40903" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889757 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50035" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889806 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50036" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694890029 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50037" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694890169 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50038" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694890236 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50039" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694890297 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50040" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694890381 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50041" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694890523 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-15" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890611 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-13" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890818 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Oct" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890871 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Aug" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694891034 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jun" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694891170 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Feb" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694891319 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Jul" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694891397 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-May" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694891444 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1508142" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694891558 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Feb" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694891628 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8-Jan" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694891676 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "9-Jan" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694891716 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Apr" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694891798 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Jan" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694891843 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44863" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694891891 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Mar" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891955 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "11-Jan" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694892141 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-17" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694892324 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-14" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694892385 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-11" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694892442 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91162" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694892573 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50023" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694892714 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Jul" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694892788 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Apr" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694892908 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Mar" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694893002 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38151" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694893261 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-13" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694894600 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-Oct" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694895427 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-Aug" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694895722 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-Jun" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694895877 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-Apr" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694900660 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16-Aug" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694901794 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16-May" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694902357 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16-Mar" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694902904 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16-Jan" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694903993 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "27-Jan" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694904586 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "17-Jan" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694917153 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "23-Jan" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694933588 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "24-14" + } + ] + } + }, + { + "id": "73c96ce6-6dbb-4538-be78-6b4beea55466", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "15469-701ff27f-2", + "start_date": "20230916", + "route_id": "546" + }, + "stop_time_update": [ + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694888799 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40947" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694888945 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42853" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889040 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42854" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889092 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42855" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889122 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38562" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889154 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889194 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38697" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889232 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38646" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889269 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38632" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889338 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38767" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889415 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38768" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889453 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38769" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889488 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49357" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889530 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38771" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889570 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38668" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889672 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38661" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889750 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38657" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889814 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38743" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889878 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38652" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889940 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38721" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889993 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38659" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890077 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38674" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890149 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38649" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890217 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38718" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890283 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38735" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890337 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42270" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890383 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42271" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890451 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838438" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890587 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38688" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890717 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39785" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890758 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38664" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890815 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38702" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890862 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39787" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890907 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38501" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890970 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38692" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891059 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38714" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694891112 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39791" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694891135 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49329" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694891204 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49330" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694891252 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39652" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694891313 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36683" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694891357 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37428" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694891405 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37429" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694891552 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36641" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694891645 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "32571" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694891676 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "32576" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694891722 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40259" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694891801 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40257" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694891842 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36690" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694891916 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36691" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694891964 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36692" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694891992 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36693" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694892050 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40036" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694892133 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36695" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694892204 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36696" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694892294 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39229" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694892351 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "32587" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694892392 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39230" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694892421 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36703" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694892486 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39688" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694892541 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36754" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694892559 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39686" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694892638 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36931" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694892711 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36932" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694892758 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39666" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694892804 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39667" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694893008 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49342" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694893179 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49343" + } + ] + } + }, + { + "id": "0d2aa157-745c-4ee2-a26b-f76bd53ed1a5", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "15468-701ff27f-2", + "start_date": "20230916", + "route_id": "546" + }, + "stop_time_update": [ + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889056 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38657" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889125 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38743" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889195 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38652" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889261 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38721" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889317 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38659" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889405 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38674" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889479 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38649" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889547 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38718" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889614 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38735" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889667 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42270" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889712 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42271" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889778 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838438" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889908 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38688" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890030 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39785" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890067 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38664" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890119 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38702" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890162 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39787" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890203 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38501" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890258 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38692" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890337 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38714" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890383 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39791" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890403 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49329" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890463 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49330" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694890504 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39652" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694890556 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36683" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694890592 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37428" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694890633 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37429" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694890754 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36641" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694890830 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "32571" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694890855 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "32576" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694890892 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40259" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694890955 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40257" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694890988 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36690" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694891045 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36691" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694891083 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36692" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694891105 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36693" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694891149 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40036" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694891213 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36695" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694891267 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36696" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694891334 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39229" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694891377 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "32587" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694891408 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39230" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694891429 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36703" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694891477 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39688" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694891517 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36754" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694891530 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39686" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694891587 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36931" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694891640 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36932" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694891673 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39666" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694891706 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39667" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694891850 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49342" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694891967 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49343" + } + ] + } + }, + { + "id": "94ca679e-f259-4c80-8c29-ca3d9a5d1ce0", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "15470-701ff27f-2", + "start_date": "20230916", + "route_id": "546" + }, + "stop_time_update": [ + { + "stop_sequence": 5, + "arrival": { + "delay": 0, + "time": 1694888659 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40349" + }, + { + "stop_sequence": 6, + "arrival": { + "delay": 0, + "time": 1694888701 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40350" + }, + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694888762 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40351" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694888854 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40352" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694888940 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41970" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889015 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "32500" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889059 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "32501" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889123 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38397" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889181 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38491" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889249 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38498" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889295 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38495" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889439 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40928" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889470 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38572" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889525 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38571" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889539 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37447" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889560 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40929" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889622 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40946" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889671 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40947" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889805 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42853" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889893 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42854" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889943 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42855" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889972 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38562" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890003 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890041 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38697" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890079 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38646" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890115 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38632" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890184 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38767" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890262 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38768" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890301 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38769" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890337 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49357" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890381 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38771" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890423 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38668" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890532 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38661" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890616 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38657" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890686 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38743" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890758 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38652" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890828 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38721" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890888 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38659" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890986 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38674" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891070 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38649" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891150 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38718" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891230 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38735" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891296 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42270" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891351 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42271" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891436 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838438" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891608 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38688" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891777 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39785" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891830 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38664" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891906 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38702" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891969 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39787" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694892030 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38501" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694892115 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38692" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694892237 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38714" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694892312 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39791" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694892344 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49329" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694892441 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49330" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694892510 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39652" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694892599 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36683" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694892662 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37428" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694892733 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37429" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694892951 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36641" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694893093 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "32571" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694893140 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "32576" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694893212 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40259" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694893334 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40257" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694893400 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36690" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694893516 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36691" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694893594 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36692" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694893639 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36693" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694893733 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40036" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694893869 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36695" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694893987 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36696" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694894138 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39229" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694894235 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "32587" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694894307 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39230" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694894356 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36703" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694894469 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39688" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694894567 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36754" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694894598 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39686" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694894738 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36931" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694894870 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36932" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694894955 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39666" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694895039 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39667" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694895421 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49342" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694895748 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49343" + } + ] + } + }, + { + "id": "19339e66-0208-4097-804f-7f8ca3d5f05b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "15535-701ff27f-2", + "start_date": "20230916", + "route_id": "547" + }, + "stop_time_update": [ + { + "stop_sequence": 3, + "arrival": { + "delay": 0, + "time": 1694889269 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42426" + }, + { + "stop_sequence": 4, + "arrival": { + "delay": 0, + "time": 1694889324 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42427" + }, + { + "stop_sequence": 5, + "arrival": { + "delay": 0, + "time": 1694889354 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42428" + }, + { + "stop_sequence": 6, + "arrival": { + "delay": 0, + "time": 1694889393 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37042" + }, + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694889412 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36935" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694889431 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37043" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889473 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37044" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889517 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37045" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889525 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36932" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889552 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37099" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889564 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36931" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889589 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36929" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889629 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39687" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889653 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8606050" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889687 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39689" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889781 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39140" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889843 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39141" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889898 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39082" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889928 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40252" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694890006 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "32731" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694890040 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36691" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890087 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36690" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890121 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40257" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890148 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40258" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890203 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "32734" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890305 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "32736" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890411 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37588" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890461 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37589" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890537 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37840" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890567 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49140" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890607 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49141" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890641 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49142" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890681 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49143" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890688 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45112" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890745 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45113" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890818 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37490" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890884 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45115" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890910 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45116" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890984 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45118" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891065 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45119" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891113 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45120" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891173 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45121" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891220 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891306 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891337 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891406 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891496 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891560 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38539" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891641 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891728 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891814 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891940 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38546" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694892102 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694892193 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694892276 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694892416 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38551" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694892545 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694892670 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694892754 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694892942 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694892987 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694893071 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694893156 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694893239 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694893352 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38560" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694893415 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38561" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694893476 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38562" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694893558 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38563" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694893644 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42854" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694893843 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38565" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694893948 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40932" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694894044 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38566" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694894118 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38567" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694894216 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38568" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694894297 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38569" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694894401 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38570" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694894544 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38571" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694894683 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38572" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694895177 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38393" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694895320 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38394" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694895471 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38424" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694895579 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38396" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694896001 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41928" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694896159 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41929" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694896721 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40543" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694896777 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41969" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694897224 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40544" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694897309 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16705477" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694897529 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40545" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694897785 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40546" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694897963 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40547" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694898225 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40548" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694898358 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40549" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694898564 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40550" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694898849 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40551" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694899510 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40552" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694899850 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40553" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694900281 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40554" + } + ] + } + }, + { + "id": "46abe55c-a3a6-4144-9559-d0a088e35f3f", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "15534-701ff27f-2", + "start_date": "20230916", + "route_id": "547" + }, + "stop_time_update": [ + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889001 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45116" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889077 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45118" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889155 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45119" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889202 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45120" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889258 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45121" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889301 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889379 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889406 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889467 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889543 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889596 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38539" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889661 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889731 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889797 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889891 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38546" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890008 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890072 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890129 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890222 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38551" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890305 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890383 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694890435 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694890546 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694890572 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694890620 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694890668 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694890714 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694890775 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38560" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694890809 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38561" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694890841 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38562" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694890884 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38563" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694890928 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42854" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694891027 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38565" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694891078 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40932" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694891124 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38566" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694891159 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38567" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694891204 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38568" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694891242 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38569" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694891288 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38570" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694891352 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38571" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694891412 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38572" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694891616 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38393" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694891672 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38394" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694891731 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38424" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694891771 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38396" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694891926 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41928" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694891981 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41929" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694892171 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40543" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694892189 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41969" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694892329 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40544" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694892355 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16705477" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694892421 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40545" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694892496 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40546" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694892546 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40547" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694892619 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40548" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694892655 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40549" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694892710 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40550" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694892784 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40551" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694892948 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40552" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694893028 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40553" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694893125 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40554" + } + ] + } + }, + { + "id": "4c599e09-658c-4832-95af-ee3e2d9007c8", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "15533-701ff27f-2", + "start_date": "20230916", + "route_id": "547" + }, + "stop_time_update": [ + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694888987 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38566" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694889021 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38567" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694889065 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38568" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694889101 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38569" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694889145 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38570" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694889203 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38571" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694889257 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38572" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694889431 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38393" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694889478 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38394" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694889525 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38424" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694889557 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38396" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694889676 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41928" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694889717 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41929" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694889853 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40543" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694889866 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41969" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694889962 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40544" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694889979 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16705477" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694890023 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40545" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694890071 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40546" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694890103 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40547" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694890149 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40548" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694890171 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40549" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694890204 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40550" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694890249 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40551" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694890345 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40552" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694890390 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40553" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694890445 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40554" + } + ] + } + }, + { + "id": "18659654-c65f-4c0e-aa1d-845dc29e9b8e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "15500-701ff27f-2", + "start_date": "20230916", + "route_id": "547" + }, + "stop_time_update": [ + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889056 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38646" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889097 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38632" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889172 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38767" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889241 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38768" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889286 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38769" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889332 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49357" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889373 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38771" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889414 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38668" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889516 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38661" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889602 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38657" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889662 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38743" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889719 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38652" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889790 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38721" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889845 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38659" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889928 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38674" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889990 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38649" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890122 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38735" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890177 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42270" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890228 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42271" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890424 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38688" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890473 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38673" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890549 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39785" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890588 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38664" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890636 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "32631" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890702 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "32697" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890876 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "32699" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890933 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42606" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890973 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42607" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694891032 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42608" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694891080 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49335" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694891132 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49336" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694891175 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4831075" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694891232 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37437" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694891282 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49337" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694891323 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39661" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694891367 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39662" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694891430 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39663" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694891482 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39664" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694891532 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39665" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694891624 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42522" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694891644 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42523" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694891682 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42524" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694891774 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42525" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694891813 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "32700" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694891869 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36699" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694891899 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36700" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694891939 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36701" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694891966 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36702" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694891983 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36703" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694892023 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36704" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694892060 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36754" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694892249 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39666" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694892299 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39667" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694892425 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36936" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694892590 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49343" + } + ] + } + }, + { + "id": "abfd2798-82f7-48ba-867f-a4cfaf8dd07a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "15501-701ff27f-2", + "start_date": "20230916", + "route_id": "547" + }, + "stop_time_update": [ + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889007 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38397" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889068 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38491" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889099 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38424" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889151 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38498" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889191 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38393" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889341 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40928" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889382 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38572" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889441 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38571" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889455 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37447" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889476 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40929" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889540 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40946" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889595 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40947" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889725 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42853" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889855 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42855" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889888 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41975" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889917 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889948 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38697" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889991 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38646" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890029 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38632" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890098 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38767" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890162 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38768" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890205 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38769" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890248 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49357" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890289 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38771" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890328 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38668" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890428 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38661" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890514 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38657" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890575 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38743" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890634 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38652" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890707 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38721" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890765 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38659" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890854 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38674" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890920 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38649" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891066 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38735" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891128 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42270" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891185 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42271" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891412 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38688" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891470 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38673" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891561 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39785" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891607 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38664" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891666 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "32631" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891748 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "32697" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694891966 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "32699" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694892039 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42606" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694892091 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42607" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694892167 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42608" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694892229 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49335" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694892298 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49336" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694892356 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4831075" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694892433 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37437" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694892500 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49337" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694892556 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39661" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694892617 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39662" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694892705 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39663" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694892776 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39664" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694892847 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39665" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694892978 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42522" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694893007 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42523" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694893063 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42524" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694893197 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42525" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694893254 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "32700" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694893337 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36699" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694893381 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36700" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694893442 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36701" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694893483 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36702" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694893509 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36703" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694893569 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36704" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694893626 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36754" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694893920 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39666" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694893999 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39667" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694894202 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36936" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694894472 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49343" + } + ] + } + }, + { + "id": "59d66b85-062b-4a2f-8419-9a21d2afe8fa", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "15579-701ff27f-2", + "start_date": "20230916", + "route_id": "549" + }, + "stop_time_update": [ + { + "stop_sequence": 4, + "arrival": { + "delay": 0, + "time": 1694889030 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40347" + }, + { + "stop_sequence": 5, + "arrival": { + "delay": 0, + "time": 1694889085 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40348" + }, + { + "stop_sequence": 6, + "arrival": { + "delay": 0, + "time": 1694889140 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40349" + }, + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694889266 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "32500" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694889322 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "32501" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889373 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "32503" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889438 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38491" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889476 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38424" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889518 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38498" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889556 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38495" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889689 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40928" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889736 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37446" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889808 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37447" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889828 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40929" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889889 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40946" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889941 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40947" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694890014 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40932" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694890073 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42853" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694890150 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42854" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694890194 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38563" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890211 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42855" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890243 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41975" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890261 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890307 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38697" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890343 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38646" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890379 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38632" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890454 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38767" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890523 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38768" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890565 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38769" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890600 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49357" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890645 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38771" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890690 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38668" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890790 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38661" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890867 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38657" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890939 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38743" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891002 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38652" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891077 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38721" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891139 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38659" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891230 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38674" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891302 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38649" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891392 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38718" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891459 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38735" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891523 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42270" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891586 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42271" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891663 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838438" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891847 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44896" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891908 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44897" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694892004 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44898" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694892235 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40993" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694892996 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40995" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694893144 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40996" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694893277 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40997" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694893387 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39614" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694893479 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39615" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694893576 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39616" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694893687 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39617" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694893808 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39618" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694893906 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39619" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694893991 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39620" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694894150 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39621" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694894264 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38281" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694894399 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694894500 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45068" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694894806 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37480" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694894978 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694895189 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40848" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694895452 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Apr" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694895642 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39728" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694895985 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39729" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694896055 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39730" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694896472 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42200" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694896650 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42203" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694896905 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42204" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694897049 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42205" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694897353 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42201" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694898719 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42206" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694899077 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42207" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694899520 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42208" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694900444 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42564" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694901372 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42214" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694902515 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42209" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694903939 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42210" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694906833 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42215" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694907414 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42216" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694908251 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42217" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694909970 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42218" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694910878 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42219" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694913948 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42220" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694915578 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42221" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694918530 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42222" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694922565 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42223" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694924107 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42224" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694930159 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42225" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694936912 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42226" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694944919 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42227" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694960811 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42228" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694974810 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42229" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1695028960 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42230" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1695089636 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42231" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1696041280 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42232" + } + ] + } + }, + { + "id": "50c3aba5-0be9-4791-98b4-8b95f05d81ae", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "15578-701ff27f-2", + "start_date": "20230916", + "route_id": "549" + }, + "stop_time_update": [ + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889018 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40932" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889082 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42853" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889164 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42854" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889211 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38563" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889229 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42855" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889263 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41975" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889282 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889329 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38697" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889366 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38646" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889403 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38632" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889479 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38767" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889548 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38768" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889590 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38769" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889624 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49357" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889668 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38771" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889711 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38668" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889807 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38661" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889880 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38657" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889947 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38743" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890005 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38652" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890074 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38721" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890129 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38659" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890211 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38674" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890273 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38649" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890352 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38718" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890409 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38735" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890464 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42270" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890517 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42271" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890582 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838438" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890733 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44896" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890783 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44897" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890859 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44898" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891041 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40993" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891606 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40995" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891711 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40996" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891804 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40997" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891880 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39614" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891943 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39615" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694892008 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39616" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694892083 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39617" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694892163 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39618" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694892228 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39619" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694892283 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39620" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694892386 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39621" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694892458 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38281" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694892543 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694892607 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45068" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694892795 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37480" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694892898 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694893023 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40848" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694893176 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Apr" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694893285 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39728" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694893478 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39729" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694893516 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39730" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694893743 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42200" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694893837 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42203" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694893970 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42204" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694894045 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42205" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694894199 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42201" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694894855 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42206" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694895017 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42207" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694895213 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42208" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694895605 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42564" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694895977 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42214" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694896408 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42209" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694896907 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42210" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694897813 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42215" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694897979 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42216" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694898210 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42217" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694898657 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42218" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694898879 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42219" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694899566 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42220" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694899895 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42221" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694900440 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42222" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694901091 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42223" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694901315 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42224" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694902092 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42225" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694902800 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42226" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694903482 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42227" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694904492 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42228" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694905136 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42229" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694906582 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42230" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694907369 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42231" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694909074 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42232" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694911310 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42233" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694912515 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42234" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694916128 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42211" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694919817 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91142" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694923581 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91143" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694927882 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91144" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694935303 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91145" + }, + { + "stop_sequence": 111, + "arrival": { + "delay": 0, + "time": 1694944797 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34560" + }, + { + "stop_sequence": 112, + "arrival": { + "delay": 0, + "time": 1694952398 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42273" + }, + { + "stop_sequence": 113, + "arrival": { + "delay": 0, + "time": 1694954086 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34415" + }, + { + "stop_sequence": 114, + "arrival": { + "delay": 0, + "time": 1694985795 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42077" + } + ] + } + }, + { + "id": "260ad30b-cfbc-4479-ae1d-547c95996440", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "15576-701ff27f-2", + "start_date": "20230916", + "route_id": "549" + }, + "stop_time_update": [ + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889063 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39621" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694889114 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38281" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694889173 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694889215 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45068" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694889334 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37480" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694889397 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694889469 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40848" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694889554 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Apr" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694889612 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39728" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694889709 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39729" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694889728 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39730" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694889834 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42200" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694889877 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42203" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694889935 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42204" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694889966 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42205" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694890030 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42201" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694890273 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42206" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694890328 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42207" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694890392 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42208" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694890511 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42564" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694890617 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42214" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694890730 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42209" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694890850 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42210" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694891045 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42215" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694891078 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42216" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694891122 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42217" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694891204 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42218" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694891243 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42219" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694891355 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42220" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694891406 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42221" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694891484 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42222" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694891572 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42223" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694891601 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42224" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694891695 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42225" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694891774 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42226" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694891844 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42227" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694891941 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42228" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694891997 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42229" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694892113 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42230" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694892170 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42231" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694892282 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42232" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694892408 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42233" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694892468 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42234" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694892622 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42211" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694892748 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91142" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694892852 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91143" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694892951 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91144" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694893083 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91145" + }, + { + "stop_sequence": 111, + "arrival": { + "delay": 0, + "time": 1694893206 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34560" + }, + { + "stop_sequence": 112, + "arrival": { + "delay": 0, + "time": 1694893280 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42273" + }, + { + "stop_sequence": 113, + "arrival": { + "delay": 0, + "time": 1694893294 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34415" + }, + { + "stop_sequence": 114, + "arrival": { + "delay": 0, + "time": 1694893477 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42077" + } + ] + } + }, + { + "id": "8330168b-afaf-4925-8963-c50c5715f42a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "15630-701ff27f-2", + "start_date": "20230916", + "route_id": "549" + }, + "stop_time_update": [ + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694889054 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694889087 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38562" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694889136 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38563" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694889176 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38564" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694889273 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38565" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694889336 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37448" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694889367 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38566" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694889399 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38567" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694889446 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38568" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694889475 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38569" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694889517 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38570" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694889571 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38571" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694889623 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38572" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694889787 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38393" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694889877 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38395" + }, + { + "stop_sequence": 111, + "arrival": { + "delay": 0, + "time": 1694889912 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38396" + }, + { + "stop_sequence": 112, + "arrival": { + "delay": 0, + "time": 1694889971 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38397" + }, + { + "stop_sequence": 113, + "arrival": { + "delay": 0, + "time": 1694890025 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41928" + }, + { + "stop_sequence": 114, + "arrival": { + "delay": 0, + "time": 1694890070 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41929" + }, + { + "stop_sequence": 115, + "arrival": { + "delay": 0, + "time": 1694890161 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40545" + }, + { + "stop_sequence": 116, + "arrival": { + "delay": 0, + "time": 1694890218 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40546" + }, + { + "stop_sequence": 117, + "arrival": { + "delay": 0, + "time": 1694890246 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40547" + }, + { + "stop_sequence": 118, + "arrival": { + "delay": 0, + "time": 1694890294 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40548" + }, + { + "stop_sequence": 119, + "arrival": { + "delay": 0, + "time": 1694890342 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40589" + }, + { + "stop_sequence": 120, + "arrival": { + "delay": 0, + "time": 1694890369 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40590" + }, + { + "stop_sequence": 121, + "arrival": { + "delay": 0, + "time": 1694890489 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40592" + }, + { + "stop_sequence": 122, + "arrival": { + "delay": 0, + "time": 1694890648 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41947" + } + ] + } + }, + { + "id": "2e18ba50-f505-4306-8721-6880d50cddf1", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "f108f547-1656-4d46-8fbd-d88f7a0b5fc5", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "15633-701ff27f-2", + "start_date": "20230916", + "route_id": "549" + }, + "stop_time_update": [ + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889095 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42285" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889188 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42286" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889205 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42287" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889263 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42288" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889300 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42289" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889377 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42290" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889435 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42291" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889520 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42292" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889592 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42293" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889765 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42294" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889884 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42295" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889992 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42296" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890127 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42297" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890218 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42298" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890443 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49296" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890528 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49297" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890563 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49298" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890632 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49299" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890673 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49300" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890760 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49301" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890830 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49302" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890876 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49303" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890930 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49304" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890959 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49305" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891019 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49306" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891062 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49307" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891080 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49308" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891107 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49309" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891144 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42315" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891162 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42316" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891225 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42317" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891274 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42318" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891359 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8606396" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891446 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38514" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891495 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38516" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891563 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38518" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694891684 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38520" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694891733 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38521" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694891794 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38522" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694891858 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38523" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694891925 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38524" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694891989 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38525" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694892058 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38526" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694892123 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38527" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694892238 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38528" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694892409 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38529" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694892751 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005209" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694893150 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38531" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694893250 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8921285" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694893455 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38532" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694893564 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38533" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694893661 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38534" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694893754 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694893913 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694893974 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694894110 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694894290 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694894421 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38539" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694894591 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694894782 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694894968 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694895255 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38546" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694895640 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694895864 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694896074 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694896439 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38551" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694896791 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694897145 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694897389 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694897954 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694898382 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694898665 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694898946 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694899360 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38560" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694899596 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694899824 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38562" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694900176 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38563" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694900483 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38564" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694901302 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38565" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694901895 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37448" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694902218 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38566" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694902559 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38567" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694903093 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38568" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694903438 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38569" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694903979 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38570" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694904748 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38571" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694905547 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38572" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694908673 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38393" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694910957 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38395" + }, + { + "stop_sequence": 111, + "arrival": { + "delay": 0, + "time": 1694911949 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38396" + }, + { + "stop_sequence": 112, + "arrival": { + "delay": 0, + "time": 1694913898 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38397" + }, + { + "stop_sequence": 113, + "arrival": { + "delay": 0, + "time": 1694915986 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41928" + }, + { + "stop_sequence": 114, + "arrival": { + "delay": 0, + "time": 1694917953 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41929" + }, + { + "stop_sequence": 115, + "arrival": { + "delay": 0, + "time": 1694922995 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40545" + }, + { + "stop_sequence": 116, + "arrival": { + "delay": 0, + "time": 1694927175 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40546" + }, + { + "stop_sequence": 117, + "arrival": { + "delay": 0, + "time": 1694929545 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40547" + }, + { + "stop_sequence": 118, + "arrival": { + "delay": 0, + "time": 1694934411 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40548" + }, + { + "stop_sequence": 119, + "arrival": { + "delay": 0, + "time": 1694940494 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40589" + }, + { + "stop_sequence": 120, + "arrival": { + "delay": 0, + "time": 1694944764 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40590" + }, + { + "stop_sequence": 121, + "arrival": { + "delay": 0, + "time": 1694975632 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40592" + }, + { + "stop_sequence": 122, + "arrival": { + "delay": 0, + "time": 1695195524 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41947" + } + ] + } + }, + { + "id": "a5752e7e-5dd3-4158-a68a-cc46f75e457f", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "15744-701ff27f-2", + "start_date": "20230916", + "route_id": "550" + }, + "stop_time_update": [ + { + "stop_sequence": 3, + "arrival": { + "delay": 0, + "time": 1694889082 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38511" + }, + { + "stop_sequence": 4, + "arrival": { + "delay": 0, + "time": 1694889128 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38482" + }, + { + "stop_sequence": 5, + "arrival": { + "delay": 0, + "time": 1694889154 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38440" + }, + { + "stop_sequence": 6, + "arrival": { + "delay": 0, + "time": 1694889184 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38446" + }, + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694889247 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38491" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694889285 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38424" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889330 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38394" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889366 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38495" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889501 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40928" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889549 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37446" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889621 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37447" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889642 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40929" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889704 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40946" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889756 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40947" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889886 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49356" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889951 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49357" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889990 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38771" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694890032 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38668" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694890128 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38661" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694890201 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38657" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694890268 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38743" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890325 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38652" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890396 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38721" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890452 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38659" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890532 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38674" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890599 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38649" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890679 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38718" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890738 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38735" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890794 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42270" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890849 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42271" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890916 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838438" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694891072 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44896" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694891124 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44897" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694891204 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44898" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694891386 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40993" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694891997 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40995" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694892105 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40996" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694892211 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40997" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694892293 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39614" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694892361 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39615" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694892433 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39616" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694892514 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39617" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694892602 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39618" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694892644 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38521" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694892671 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39619" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694892736 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39620" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694892847 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39621" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694892927 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38281" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694893021 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694893092 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45068" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694893308 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37480" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694893436 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694893569 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40848" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694893743 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Apr" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694893854 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39728" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694894075 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39729" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694894131 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39730" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694894387 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42200" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694894494 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42203" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694894774 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49301" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694895202 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42204" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694895302 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42205" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694895492 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42201" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694896362 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42206" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694896614 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42207" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694896867 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42208" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694897469 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42564" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694897968 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42214" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694898607 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42209" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694899313 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42210" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694900706 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40951" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694901303 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40952" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694901876 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40953" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694902338 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40954" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694903155 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40955" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694903625 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40956" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694904399 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40957" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694905178 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40958" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694905598 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40959" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694906818 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42223" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694907347 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42224" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694908935 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42225" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694910502 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42226" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694911971 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42227" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694914718 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42228" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694916240 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42229" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694920059 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42230" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694922423 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42231" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694928085 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42232" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694935695 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540229" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694940389 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540230" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694945128 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540231" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694957796 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20554362" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1695011020 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34871" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1695030324 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34872" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1695202053 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34873" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1696564142 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42077" + } + ] + } + }, + { + "id": "ca76a482-11fd-4346-baed-b803c28b32c7", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "15685-701ff27f-2", + "start_date": "20230916", + "route_id": "550" + }, + "stop_time_update": [ + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694889040 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005209" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694889288 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38531" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694889344 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8921285" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694889454 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38532" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694889510 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38533" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694889558 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38534" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694889602 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694889676 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694889703 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694889762 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694889834 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694889898 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38539" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694890031 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694890089 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694890187 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38546" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694890302 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694890366 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694890424 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694890517 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38551" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694890611 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694890684 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694890735 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694890850 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694890877 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694890926 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694890975 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694891023 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694891089 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38560" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694891125 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694891159 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38562" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694891210 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38563" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694891252 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38564" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694891356 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38565" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694891426 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37448" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694891458 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38566" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694891493 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38567" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694891548 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38568" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694891579 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38569" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694891630 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38570" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694891697 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38571" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694891750 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38572" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694891976 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38393" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694892100 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38395" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694892148 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38396" + }, + { + "stop_sequence": 111, + "arrival": { + "delay": 0, + "time": 1694892232 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38397" + }, + { + "stop_sequence": 112, + "arrival": { + "delay": 0, + "time": 1694892265 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38398" + }, + { + "stop_sequence": 113, + "arrival": { + "delay": 0, + "time": 1694892300 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38399" + }, + { + "stop_sequence": 114, + "arrival": { + "delay": 0, + "time": 1694892392 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38400" + }, + { + "stop_sequence": 115, + "arrival": { + "delay": 0, + "time": 1694892455 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38401" + }, + { + "stop_sequence": 116, + "arrival": { + "delay": 0, + "time": 1694892528 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38402" + } + ] + } + }, + { + "id": "80c14e4b-6ee3-44e6-b764-5fd495a3348d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "15686-701ff27f-2", + "start_date": "20230916", + "route_id": "550" + }, + "stop_time_update": [ + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889092 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42294" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889220 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42295" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889335 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42296" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889476 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42297" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889569 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42298" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889666 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49295" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889789 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49296" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889874 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49297" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889906 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49298" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889970 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49299" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890020 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49300" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890096 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49301" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890165 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49302" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890211 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49303" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890256 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49304" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890289 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49305" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890343 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49306" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890383 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49307" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890400 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49308" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890425 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49309" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890459 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42315" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890475 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42316" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890532 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42317" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890576 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42318" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890652 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8606396" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890729 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38514" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890772 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38516" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890831 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38518" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890932 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38520" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890976 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38521" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694891026 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38522" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694891080 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38523" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694891135 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38524" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694891194 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38525" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694891252 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38526" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694891306 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38527" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694891400 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38528" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694891539 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38529" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694891787 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38530" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694891810 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005209" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694892118 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38531" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694892193 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8921285" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694892347 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38532" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694892427 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38533" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694892499 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38534" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694892567 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694892682 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694892726 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694892823 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694892947 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694893059 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38539" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694893306 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694893419 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694893619 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38546" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694893865 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694894010 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694894144 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694894370 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38551" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694894609 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694894801 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694894942 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694895272 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694895352 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694895502 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694895658 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694895811 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694896032 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38560" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694896156 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694896275 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38562" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694896455 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38563" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694896609 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38564" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694897011 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38565" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694897293 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37448" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694897427 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38566" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694897575 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38567" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694897813 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38568" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694897952 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38569" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694898186 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38570" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694898509 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38571" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694898771 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38572" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694899997 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38393" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694900754 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38395" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694901063 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38396" + }, + { + "stop_sequence": 111, + "arrival": { + "delay": 0, + "time": 1694901636 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38397" + }, + { + "stop_sequence": 112, + "arrival": { + "delay": 0, + "time": 1694901868 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38398" + }, + { + "stop_sequence": 113, + "arrival": { + "delay": 0, + "time": 1694902125 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38399" + }, + { + "stop_sequence": 114, + "arrival": { + "delay": 0, + "time": 1694902828 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38400" + }, + { + "stop_sequence": 115, + "arrival": { + "delay": 0, + "time": 1694903332 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38401" + }, + { + "stop_sequence": 116, + "arrival": { + "delay": 0, + "time": 1694903962 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38402" + } + ] + } + }, + { + "id": "756dcfcb-fba2-4c09-8cff-d5fc1a5e571b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "15683-701ff27f-2", + "start_date": "20230916", + "route_id": "550" + }, + "stop_time_update": [ + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694889053 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694889087 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38562" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694889135 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38563" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694889175 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38564" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694889273 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38565" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694889335 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37448" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694889364 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38566" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694889394 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38567" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694889441 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38568" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694889467 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38569" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694889510 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38570" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694889565 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38571" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694889608 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38572" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694889782 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38393" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694889873 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38395" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694889907 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38396" + }, + { + "stop_sequence": 111, + "arrival": { + "delay": 0, + "time": 1694889967 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38397" + }, + { + "stop_sequence": 112, + "arrival": { + "delay": 0, + "time": 1694889989 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38398" + }, + { + "stop_sequence": 113, + "arrival": { + "delay": 0, + "time": 1694890013 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38399" + }, + { + "stop_sequence": 114, + "arrival": { + "delay": 0, + "time": 1694890076 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38400" + }, + { + "stop_sequence": 115, + "arrival": { + "delay": 0, + "time": 1694890117 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38401" + }, + { + "stop_sequence": 116, + "arrival": { + "delay": 0, + "time": 1694890164 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38402" + } + ] + } + }, + { + "id": "d0f61a9a-6682-471e-aa21-2e8ebdc1a417", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "15740-701ff27f-2", + "start_date": "20230916", + "route_id": "550" + }, + "stop_time_update": [ + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694889127 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34871" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694889149 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34872" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694889228 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34873" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694889280 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42077" + } + ] + } + }, + { + "id": "ed608ff5-e6a0-4ae2-8759-8e0f71d5d492", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "15854-701ff27f-2", + "start_date": "20230916", + "route_id": "551" + }, + "stop_time_update": [ + { + "stop_sequence": 121, + "arrival": { + "delay": 0, + "time": 1694888952 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34560" + }, + { + "stop_sequence": 122, + "arrival": { + "delay": 0, + "time": 1694888996 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42273" + }, + { + "stop_sequence": 123, + "arrival": { + "delay": 0, + "time": 1694889004 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34415" + }, + { + "stop_sequence": 124, + "arrival": { + "delay": 0, + "time": 1694889105 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42077" + } + ] + } + }, + { + "id": "d2f12613-b5df-4a18-9c62-7ffb16db5c4f", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "15799-701ff27f-2", + "start_date": "20230916", + "route_id": "551" + }, + "stop_time_update": [ + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889130 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38520" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889177 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38521" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889228 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38522" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889280 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38523" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694889334 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38524" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694889384 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38525" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694889436 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38526" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694889485 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38527" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694889573 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38528" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694889685 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38529" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694889891 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38530" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694889904 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005209" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694890133 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38531" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694890187 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8921285" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694890295 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38532" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694890346 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38533" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694890400 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38534" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694890447 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694890507 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694890547 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694890600 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694890682 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694890741 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38539" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694890799 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694890882 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694890944 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694891051 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38546" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694891120 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38547" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694891314 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694891525 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694891620 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694891681 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694891820 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694891852 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694891910 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694891975 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694892034 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694892117 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38560" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694892163 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694892206 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38562" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694892270 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38563" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694892325 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38564" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694892461 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38565" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694892552 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37448" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694892600 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38566" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694892649 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38567" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694892722 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38568" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694892767 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38569" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694892836 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38570" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694892927 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38571" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694893016 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38572" + }, + { + "stop_sequence": 111, + "arrival": { + "delay": 0, + "time": 1694893317 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38393" + }, + { + "stop_sequence": 112, + "arrival": { + "delay": 0, + "time": 1694893495 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38395" + }, + { + "stop_sequence": 113, + "arrival": { + "delay": 0, + "time": 1694893565 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38396" + }, + { + "stop_sequence": 114, + "arrival": { + "delay": 0, + "time": 1694893688 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38397" + }, + { + "stop_sequence": 115, + "arrival": { + "delay": 0, + "time": 1694893806 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41928" + }, + { + "stop_sequence": 116, + "arrival": { + "delay": 0, + "time": 1694893904 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41929" + }, + { + "stop_sequence": 117, + "arrival": { + "delay": 0, + "time": 1694894248 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40543" + }, + { + "stop_sequence": 118, + "arrival": { + "delay": 0, + "time": 1694894266 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41943" + }, + { + "stop_sequence": 119, + "arrival": { + "delay": 0, + "time": 1694894859 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42046" + }, + { + "stop_sequence": 120, + "arrival": { + "delay": 0, + "time": 1694894988 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42047" + }, + { + "stop_sequence": 121, + "arrival": { + "delay": 0, + "time": 1694895297 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42049" + }, + { + "stop_sequence": 122, + "arrival": { + "delay": 0, + "time": 1694895417 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42050" + }, + { + "stop_sequence": 123, + "arrival": { + "delay": 0, + "time": 1694895767 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42052" + }, + { + "stop_sequence": 124, + "arrival": { + "delay": 0, + "time": 1694895993 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42053" + }, + { + "stop_sequence": 125, + "arrival": { + "delay": 0, + "time": 1694896137 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42054" + }, + { + "stop_sequence": 126, + "arrival": { + "delay": 0, + "time": 1694896435 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42055" + }, + { + "stop_sequence": 127, + "arrival": { + "delay": 0, + "time": 1694896595 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42056" + } + ] + } + }, + { + "id": "63f616d3-d706-45b6-a1a7-dfb62f33e963", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "15796-701ff27f-2", + "start_date": "20230916", + "route_id": "551" + }, + "stop_time_update": [ + { + "stop_sequence": 117, + "arrival": { + "delay": 0, + "time": 1694889125 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40543" + }, + { + "stop_sequence": 118, + "arrival": { + "delay": 0, + "time": 1694889133 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41943" + }, + { + "stop_sequence": 119, + "arrival": { + "delay": 0, + "time": 1694889371 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42046" + }, + { + "stop_sequence": 120, + "arrival": { + "delay": 0, + "time": 1694889418 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42047" + }, + { + "stop_sequence": 121, + "arrival": { + "delay": 0, + "time": 1694889522 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42049" + }, + { + "stop_sequence": 122, + "arrival": { + "delay": 0, + "time": 1694889560 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42050" + }, + { + "stop_sequence": 123, + "arrival": { + "delay": 0, + "time": 1694889665 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42052" + }, + { + "stop_sequence": 124, + "arrival": { + "delay": 0, + "time": 1694889727 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42053" + }, + { + "stop_sequence": 125, + "arrival": { + "delay": 0, + "time": 1694889766 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42054" + }, + { + "stop_sequence": 126, + "arrival": { + "delay": 0, + "time": 1694889841 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42055" + }, + { + "stop_sequence": 127, + "arrival": { + "delay": 0, + "time": 1694889880 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42056" + } + ] + } + }, + { + "id": "8ef64122-708c-43fa-b6da-6de529a4cf81", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "15855-701ff27f-2", + "start_date": "20230916", + "route_id": "551" + }, + "stop_time_update": [ + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694889027 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45068" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694889154 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37480" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694889218 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694889288 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40848" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694889374 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Apr" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694889432 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39728" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694889530 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39729" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694889554 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39730" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694889656 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42200" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694889700 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42203" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694889754 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42204" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694889795 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42205" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694889854 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42201" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694890091 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42206" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694890152 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42207" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694890210 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42208" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694890333 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42564" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694890437 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42214" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694890542 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42209" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694890660 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42210" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694890850 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42215" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694890881 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42216" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694890924 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42217" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694891003 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42218" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694891040 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42219" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694891158 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42220" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694891207 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42221" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694891281 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42222" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694891357 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42223" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694891389 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42224" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694891476 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42225" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694891556 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42226" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694891615 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42227" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694891716 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42228" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694891768 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42229" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694891868 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42230" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694891922 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42231" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694892027 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42232" + }, + { + "stop_sequence": 111, + "arrival": { + "delay": 0, + "time": 1694892144 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42233" + }, + { + "stop_sequence": 112, + "arrival": { + "delay": 0, + "time": 1694892200 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42234" + }, + { + "stop_sequence": 113, + "arrival": { + "delay": 0, + "time": 1694892299 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42235" + }, + { + "stop_sequence": 114, + "arrival": { + "delay": 0, + "time": 1694892342 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42211" + }, + { + "stop_sequence": 115, + "arrival": { + "delay": 0, + "time": 1694892419 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49203" + }, + { + "stop_sequence": 116, + "arrival": { + "delay": 0, + "time": 1694892499 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49204" + }, + { + "stop_sequence": 117, + "arrival": { + "delay": 0, + "time": 1694892514 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42503" + }, + { + "stop_sequence": 118, + "arrival": { + "delay": 0, + "time": 1694892591 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91151" + }, + { + "stop_sequence": 119, + "arrival": { + "delay": 0, + "time": 1694892683 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91150" + }, + { + "stop_sequence": 120, + "arrival": { + "delay": 0, + "time": 1694892776 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91145" + }, + { + "stop_sequence": 121, + "arrival": { + "delay": 0, + "time": 1694892889 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34560" + }, + { + "stop_sequence": 122, + "arrival": { + "delay": 0, + "time": 1694892957 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42273" + }, + { + "stop_sequence": 123, + "arrival": { + "delay": 0, + "time": 1694892971 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34415" + }, + { + "stop_sequence": 124, + "arrival": { + "delay": 0, + "time": 1694893137 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42077" + } + ] + } + }, + { + "id": "8d00f8c6-c89a-4106-92ad-2e1552cabeaa", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "16066-701ff27f-2", + "start_date": "20230916", + "route_id": "553" + }, + "stop_time_update": [ + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889030 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49357" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889074 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38771" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889116 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38668" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889217 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38661" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889311 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38657" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889373 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38743" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889440 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38652" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889504 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38721" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889561 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38659" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889649 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38674" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889716 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38649" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889777 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38718" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889849 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38735" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889901 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42270" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889946 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42271" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890012 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838438" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890151 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44896" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890198 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44897" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890270 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44898" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890437 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40993" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890683 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005188" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890943 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40995" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891021 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40996" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891104 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40997" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891167 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39614" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891220 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39615" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891274 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39616" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891335 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39617" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891401 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39618" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891453 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39619" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891498 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39620" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891580 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39621" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891638 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38281" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891705 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891765 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45068" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891915 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37480" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891995 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694892085 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40848" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694892207 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Apr" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694892281 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39728" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694892423 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39729" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694892459 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39730" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694892612 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42200" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694892686 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42203" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694892788 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42204" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694892841 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42205" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694893382 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42206" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694893503 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42207" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694893620 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42208" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694893888 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42564" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694894128 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42214" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694894373 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42209" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694894678 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42210" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694895209 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42215" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694895302 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42216" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694895431 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42217" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694895675 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42218" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694895825 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42219" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694896186 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42220" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694896358 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42221" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694896627 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42222" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694896917 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42223" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694897042 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42224" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694897396 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42225" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694897717 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42226" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694897997 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42227" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694898469 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42228" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694898721 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42229" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694899237 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42230" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694899526 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42231" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694900122 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42232" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694901208 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42234" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694901883 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42235" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694902197 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42211" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694903104 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91142" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694904665 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91144" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694904772 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91150" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694905910 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91145" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694907133 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34560" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694907933 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42273" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694908093 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34415" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694910357 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42077" + } + ] + } + }, + { + "id": "394a4f8b-4ea6-4e85-800f-244b753e460d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "16065-701ff27f-2", + "start_date": "20230916", + "route_id": "553" + }, + "stop_time_update": [ + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694888995 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39617" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889056 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39618" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889105 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39619" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889145 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39620" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889218 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39621" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889268 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38281" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889324 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889373 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45068" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889492 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37480" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889553 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889621 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40848" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694889708 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Apr" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889760 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39728" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889856 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39729" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889879 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39730" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889977 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42200" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694890023 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42203" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694890085 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42204" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694890116 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42205" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694890416 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42206" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694890478 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42207" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694890537 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42208" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694890665 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42564" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694890774 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42214" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694890881 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42209" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694891007 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42210" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694891210 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42215" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694891244 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42216" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694891290 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42217" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694891375 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42218" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694891426 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42219" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694891543 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42220" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694891596 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42221" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694891677 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42222" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694891762 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42223" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694891797 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42224" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694891894 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42225" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694891978 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42226" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694892049 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42227" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694892163 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42228" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694892221 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42229" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694892335 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42230" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694892396 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42231" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694892516 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42232" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694892716 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42234" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694892830 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42235" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694892880 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42211" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694893018 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91142" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694893231 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91144" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694893245 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91150" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694893382 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91145" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694893517 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34560" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694893598 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42273" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694893614 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34415" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694893819 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42077" + } + ] + } + }, + { + "id": "7513505f-8562-49f0-8820-0a0ddced614d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "16068-701ff27f-2", + "start_date": "20230916", + "route_id": "553" + }, + "stop_time_update": [ + { + "stop_sequence": 6, + "arrival": { + "delay": 0, + "time": 1694889017 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40349" + }, + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694889053 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40350" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694889111 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40351" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889205 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40352" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889320 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42082" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889480 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49107" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889546 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38560" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889570 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38697" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889599 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38646" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889643 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38632" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889719 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38767" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889781 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38768" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889828 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38769" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889865 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49357" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889905 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38771" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889944 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38668" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694890037 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38661" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694890125 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38657" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890184 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38743" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890248 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38652" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890311 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38721" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890367 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38659" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890455 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38674" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890522 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38649" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890584 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38718" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890659 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38735" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890714 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42270" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890760 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42271" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890830 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838438" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890981 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44896" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694891032 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44897" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694891112 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44898" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694891300 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40993" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891587 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005188" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891902 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40995" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891999 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40996" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694892103 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40997" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694892183 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39614" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694892251 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39615" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694892320 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39616" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694892400 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39617" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694892486 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39618" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694892555 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39619" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694892614 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39620" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694892725 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39621" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694892804 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38281" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694892896 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694892978 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45068" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694893187 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37480" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694893301 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694893431 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40848" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694893607 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Apr" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694893717 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39728" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694893929 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39729" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694893983 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39730" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694894216 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42200" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694894332 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42203" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694894491 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42204" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694894575 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42205" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694895464 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42206" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694895671 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42207" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694895875 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42208" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694896353 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42564" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694896793 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42214" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694897258 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42209" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694897856 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42210" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694898954 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42215" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694899157 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42216" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694899439 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42217" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694899986 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42218" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694900331 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42219" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694901193 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42220" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694901618 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42221" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694902306 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42222" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694903077 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42223" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694903420 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42224" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694904425 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42225" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694905386 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42226" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694906260 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42227" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694907828 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42228" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694908716 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42229" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694910654 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42230" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694911819 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42231" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694914419 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42232" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694919992 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42234" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694924144 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42235" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694926300 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42211" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694933513 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91142" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694950945 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91144" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694952474 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91150" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694972874 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91145" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1695009031 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34560" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1695049515 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42273" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1695060545 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34415" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1696124773 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42077" + } + ] + } + }, + { + "id": "1e3659a7-3924-43c4-a494-8b01fb5fcc70", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "16009-701ff27f-2", + "start_date": "20230916", + "route_id": "553" + }, + "stop_time_update": [ + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889107 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38514" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889139 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38516" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889201 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38518" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889305 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38520" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889346 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38521" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694889397 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38522" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694889447 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38523" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694889500 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38524" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694889549 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38525" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694889600 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38526" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694889648 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38527" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694889734 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38528" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694889851 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38529" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694890051 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38530" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694890063 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005209" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694890293 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38531" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694890347 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8921285" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694890456 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38532" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694890508 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38533" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694890562 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38534" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694890611 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694890676 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694890712 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694890773 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694890849 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694890906 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38539" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694890970 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694891046 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694891117 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694891223 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38546" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694891358 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694891433 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694891501 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694891610 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38551" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694891717 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694891816 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694891882 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694892026 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694892053 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694892126 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694892191 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694892251 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694892590 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41942" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694892771 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41943" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694892936 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40544" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694893047 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40545" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694893133 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40546" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694893193 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40547" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694893278 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40548" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694893371 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40589" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694893405 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40590" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694893931 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41947" + } + ] + } + }, + { + "id": "e1043ea8-d2ff-4c04-8d8a-d85b537e7e29", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "16064-701ff27f-2", + "start_date": "20230916", + "route_id": "553" + }, + "stop_time_update": [ + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694889068 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42219" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694889173 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42220" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694889220 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42221" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694889289 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42222" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694889359 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42223" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694889387 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42224" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694889464 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42225" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694889528 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42226" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694889581 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42227" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694889663 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42228" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694889704 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42229" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694889782 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42230" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694889823 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42231" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694889901 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42232" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694890026 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42234" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694890093 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42235" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694890123 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42211" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694890201 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91142" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694890317 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91144" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694890324 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91150" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694890396 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91145" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694890464 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34560" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694890504 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42273" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694890511 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34415" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694890609 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42077" + } + ] + } + }, + { + "id": "598b4344-9f2a-4555-8c96-ca3a40316942", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "16062-701ff27f-2", + "start_date": "20230916", + "route_id": "553" + }, + "stop_time_update": [ + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694888637 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91144" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694888645 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91150" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694888721 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91145" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694888793 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34560" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694888835 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42273" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694888842 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34415" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694888942 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42077" + } + ] + } + }, + { + "id": "c24af2bb-43de-48bc-99e3-e4b49c834c09", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "16067-701ff27f-2", + "start_date": "20230916", + "route_id": "553" + }, + "stop_time_update": [ + { + "stop_sequence": 4, + "arrival": { + "delay": 0, + "time": 1694889041 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40347" + }, + { + "stop_sequence": 5, + "arrival": { + "delay": 0, + "time": 1694889097 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40348" + }, + { + "stop_sequence": 6, + "arrival": { + "delay": 0, + "time": 1694889149 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40349" + }, + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694889184 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40350" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694889241 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40351" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889334 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40352" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889447 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42082" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889605 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49107" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889670 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38560" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889695 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38697" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889723 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38646" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889767 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38632" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889842 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38767" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889904 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38768" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889951 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38769" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889988 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49357" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694890028 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38771" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694890067 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38668" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694890160 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38661" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694890248 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38657" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890308 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38743" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890372 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38652" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890435 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38721" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890491 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38659" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890580 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38674" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890648 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38649" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890711 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38718" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890786 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38735" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890842 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42270" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890889 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42271" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890960 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838438" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694891113 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44896" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694891166 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44897" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694891246 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44898" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694891439 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40993" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891733 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005188" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694892057 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40995" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694892158 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40996" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694892265 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40997" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694892348 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39614" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694892419 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39615" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694892490 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39616" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694892573 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39617" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694892662 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39618" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694892734 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39619" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694892796 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39620" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694892912 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39621" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694892994 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38281" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694893089 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694893175 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45068" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694893395 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37480" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694893514 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694893650 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40848" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694893836 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Apr" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694893952 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39728" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694894176 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39729" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694894233 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39730" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694894480 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42200" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694894603 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42203" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694894772 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42204" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694894861 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42205" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694895813 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42206" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694896035 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42207" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694896255 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42208" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694896772 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42564" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694897250 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42214" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694897758 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42209" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694898416 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42210" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694899633 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42215" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694899859 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42216" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694900174 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42217" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694900789 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42218" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694901179 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42219" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694902157 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42220" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694902644 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42221" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694903435 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42222" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694904329 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42223" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694904727 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42224" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694905908 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42225" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694907048 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42226" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694908095 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42227" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694909998 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42228" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694911089 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42229" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694913508 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42230" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694914987 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42231" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694918358 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42232" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694925920 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42234" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694931876 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42235" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694935085 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42211" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694946443 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91142" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694978607 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91144" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694981805 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91150" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1695032159 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91145" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1695180431 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34560" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1695628987 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42273" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1695936360 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34415" + } + ] + } + }, + { + "id": "1a5f41b1-26e5-4ed5-84a7-fb63b7f07910", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "e55e0ce1-6fb4-4f96-997b-b425d951326b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "9e5591f3-20bb-46c8-a339-bf88c6a1ad84", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "16177-701ff27f-2", + "start_date": "20230916", + "route_id": "554" + }, + "stop_time_update": [ + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694888956 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42047" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694889011 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42048" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694889066 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42049" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694889114 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42050" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694889193 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42051" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694889215 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42052" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694889278 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42053" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694889319 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42054" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694889396 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42055" + }, + { + "stop_sequence": 111, + "arrival": { + "delay": 0, + "time": 1694889435 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42056" + }, + { + "stop_sequence": 112, + "arrival": { + "delay": 0, + "time": 1694889576 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42057" + }, + { + "stop_sequence": 113, + "arrival": { + "delay": 0, + "time": 1694890469 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42127" + }, + { + "stop_sequence": 114, + "arrival": { + "delay": 0, + "time": 1694890520 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42128" + }, + { + "stop_sequence": 115, + "arrival": { + "delay": 0, + "time": 1694890534 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42129" + }, + { + "stop_sequence": 116, + "arrival": { + "delay": 0, + "time": 1694890575 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41950" + } + ] + } + }, + { + "id": "8103c0e9-d46c-4695-bdec-c5495222ebe9", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "16178-701ff27f-2", + "start_date": "20230916", + "route_id": "554" + }, + "stop_time_update": [ + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694889074 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694889155 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694889211 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38539" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694889280 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694889354 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694889421 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694889519 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38546" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694889639 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694889703 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694889759 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694889854 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38551" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694889937 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694890015 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694890065 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694890174 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694890199 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694890245 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694890291 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694890336 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694890561 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41942" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694890662 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42045" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694890736 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42046" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694890783 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42047" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694890836 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42048" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694890890 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42049" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694890938 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42050" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694891018 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42051" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694891042 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42052" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694891109 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42053" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694891152 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42054" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694891236 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42055" + }, + { + "stop_sequence": 111, + "arrival": { + "delay": 0, + "time": 1694891280 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42056" + }, + { + "stop_sequence": 112, + "arrival": { + "delay": 0, + "time": 1694891441 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42057" + }, + { + "stop_sequence": 113, + "arrival": { + "delay": 0, + "time": 1694892657 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42127" + }, + { + "stop_sequence": 114, + "arrival": { + "delay": 0, + "time": 1694892739 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42128" + }, + { + "stop_sequence": 115, + "arrival": { + "delay": 0, + "time": 1694892760 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42129" + }, + { + "stop_sequence": 116, + "arrival": { + "delay": 0, + "time": 1694892826 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41950" + } + ] + } + }, + { + "id": "c48093f8-696d-4227-a3d0-0d50b1560d17", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "16121-701ff27f-2", + "start_date": "20230916", + "route_id": "554" + }, + "stop_time_update": [ + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694889073 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39729" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694889099 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39730" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694889213 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42200" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694889246 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42203" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694889353 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42205" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694889409 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42201" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694889668 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42206" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694889715 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42207" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694889777 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42208" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694889902 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42564" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694890005 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42214" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694890108 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42209" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694890223 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42210" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694890405 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42215" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694890432 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42216" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694890476 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42217" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694890543 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42218" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694890587 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42219" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694890687 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42220" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694890732 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42221" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694890802 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42222" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694890880 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42223" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694890913 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42224" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694890985 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42225" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694891057 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42226" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694891114 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42227" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694891205 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42228" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694891251 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42229" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694891340 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42230" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694891387 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42231" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694891480 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42232" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694891584 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42233" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694891631 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42234" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694891716 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42235" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694891754 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42211" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694891820 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49203" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694891883 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49204" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694891911 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42503" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694892213 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42272" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694892420 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42077" + } + ] + } + }, + { + "id": "d2f6da68-d849-45af-960a-96ccba5531ab", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "16123-701ff27f-2", + "start_date": "20230916", + "route_id": "554" + }, + "stop_time_update": [ + { + "stop_sequence": 3, + "arrival": { + "delay": 0, + "time": 1694889721 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41957" + }, + { + "stop_sequence": 4, + "arrival": { + "delay": 0, + "time": 1694889758 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41958" + }, + { + "stop_sequence": 5, + "arrival": { + "delay": 0, + "time": 1694889841 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41959" + }, + { + "stop_sequence": 6, + "arrival": { + "delay": 0, + "time": 1694889868 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41960" + }, + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694889937 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41961" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694889962 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41962" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694890035 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41963" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694890079 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41964" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694890120 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41965" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694890176 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41966" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694890223 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41967" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694890304 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41968" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694890540 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41970" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694890550 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40542" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694890565 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41971" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694890596 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40541" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694890603 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41972" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694890628 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40540" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694890681 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40539" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694890748 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42855" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694890790 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41975" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890812 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890846 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38697" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890894 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38646" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890933 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38632" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694891029 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38767" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694891098 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38768" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694891157 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38769" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694891196 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49357" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694891252 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38771" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694891305 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38668" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694891417 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38661" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694891518 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38657" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694891596 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38743" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694891684 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38652" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694891772 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38721" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891851 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38659" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891977 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38674" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694892075 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38649" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694892181 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38718" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694892281 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38735" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694892370 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42270" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694892441 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42271" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694892557 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838438" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694892816 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44896" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694892904 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44897" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694893026 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44898" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694893380 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40993" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694893932 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005188" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694894569 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40995" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694894802 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40996" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694895037 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40997" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694895213 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39614" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694895380 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39615" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694895558 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39616" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694895748 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39617" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694895969 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39618" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694896139 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39619" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694896311 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39620" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694896611 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39621" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694896830 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38281" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694897093 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694897295 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45068" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694897970 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37480" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694898337 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694898734 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40848" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694899403 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Apr" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694899791 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39728" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694900626 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39729" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694900847 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39730" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694901924 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42200" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694902270 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42203" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694903533 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42205" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694904292 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42201" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694909093 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42206" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694910312 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42207" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694912123 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42208" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694916803 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42564" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694922311 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42214" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694930370 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42209" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694945165 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42210" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1695015042 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42215" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1695042904 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42216" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1695127161 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42217" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1696251148 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42218" + } + ] + } + }, + { + "id": "0b9ff009-f097-48bf-96dd-9224e5d905b9", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "16124-701ff27f-2", + "start_date": "20230916", + "route_id": "554" + }, + "stop_time_update": [ + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889116 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38767" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889179 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38768" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889233 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38769" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889267 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49357" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889316 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38771" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889361 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38668" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889453 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38661" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889534 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38657" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889594 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38743" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889660 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38652" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889725 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38721" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889781 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38659" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889868 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38674" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889934 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38649" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890003 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38718" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890067 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38735" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890122 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42270" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890165 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42271" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890234 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838438" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890380 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44896" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890428 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44897" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890493 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44898" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890671 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40993" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890924 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005188" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891186 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40995" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891275 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40996" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891362 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40997" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891424 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39614" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891482 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39615" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891542 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39616" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694891605 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39617" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694891675 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39618" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694891728 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39619" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694891780 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39620" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694891868 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39621" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694891931 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38281" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694892003 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694892057 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45068" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694892227 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37480" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694892315 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694892405 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40848" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694892548 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Apr" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694892627 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39728" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694892786 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39729" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694892826 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39730" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694893008 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42200" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694893063 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42203" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694893249 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42205" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694893352 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42201" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694893877 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42206" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694893984 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42207" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694894128 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42208" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694894435 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42564" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694894710 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42214" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694895006 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42209" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694895359 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42210" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694895986 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42215" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694896087 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42216" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694896254 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42217" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694896519 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42218" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694896699 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42219" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694897140 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42220" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694897347 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42221" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694897686 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42222" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694898088 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42223" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694898269 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42224" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694898673 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42225" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694899104 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42226" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694899464 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42227" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694900079 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42228" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694900411 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42229" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694901097 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42230" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694901486 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42231" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694902298 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42232" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694903313 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42233" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694903815 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42234" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694904782 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42235" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694905239 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42211" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694906102 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49203" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694906980 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49204" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694907390 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42503" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694913058 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42272" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694918806 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42077" + } + ] + } + }, + { + "id": "837ea09a-a33e-4452-a194-017ef047d161", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "16371-701ff27f-2", + "start_date": "20230916", + "route_id": "556" + }, + "stop_time_update": [ + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694888999 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44897" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889077 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44898" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889255 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40993" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889504 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005188" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889749 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40995" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889824 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40996" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889899 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40997" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889956 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39614" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890002 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39615" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890050 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39616" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890103 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39617" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890159 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39618" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890203 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39619" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890241 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39620" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890309 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39621" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890357 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38281" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890411 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890451 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45068" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890576 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37480" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890638 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890707 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40848" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694890793 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Apr" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694890852 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39728" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694890954 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39729" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694890980 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39730" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694891091 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42200" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694891140 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42203" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694891200 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42204" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694891246 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42205" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694891314 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42201" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694891610 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42206" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694891676 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42207" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694891750 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42208" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694891911 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42564" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694892050 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42214" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694892196 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42209" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694892365 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42210" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694892648 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42215" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694892697 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42216" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694892763 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42217" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694892887 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42218" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694892961 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42219" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694893134 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42220" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694893217 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42221" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694893342 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42222" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694893473 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42223" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694893529 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42224" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694893684 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42225" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694893820 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42226" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694893936 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42227" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694894126 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42228" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694894224 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42229" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694894420 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42230" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694894527 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42231" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694894739 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42232" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694894985 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42233" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694895104 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42234" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694895317 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42235" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694895413 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42211" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694895680 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91142" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694895996 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41937" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694896242 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91144" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694896286 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91150" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694896546 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91145" + } + ] + } + }, + { + "id": "a452108d-b340-4511-a86e-be19fc1a3385", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "16312-701ff27f-2", + "start_date": "20230916", + "route_id": "556" + }, + "stop_time_update": [ + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694889064 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38528" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694889191 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38529" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694889401 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38530" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694889414 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005209" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694889649 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38531" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694889702 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8921285" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694889808 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38532" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694889862 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38533" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694889915 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38534" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694890040 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42382" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694890108 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42383" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694890165 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42384" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694890204 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "43339" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694890252 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "43207" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694890297 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "43208" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694890361 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "43209" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694890383 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "43210" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694890447 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42389" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694890466 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42390" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694890496 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42391" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694890553 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42392" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694890580 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42393" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694890618 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42394" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694890666 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42395" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694890730 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42396" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694890749 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42397" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694890800 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42398" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694890840 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42399" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694890900 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42400" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694891141 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694891354 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694891436 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694891495 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694891629 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694891660 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694891716 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694891777 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694891835 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + } + ] + } + }, + { + "id": "3438b825-8f86-45de-9831-08a29e5488c0", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "16370-701ff27f-2", + "start_date": "20230916", + "route_id": "556" + }, + "stop_time_update": [ + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694889010 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45068" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889143 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37480" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889207 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889277 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40848" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889363 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Apr" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889420 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39728" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889518 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39729" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694889542 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39730" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694889644 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42200" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694889688 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42203" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694889742 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42204" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694889783 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42205" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694889842 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42201" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694890087 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42206" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694890140 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42207" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694890198 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42208" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694890321 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42564" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694890425 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42214" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694890530 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42209" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694890649 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42210" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694890839 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42215" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694890871 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42216" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694890914 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42217" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694890993 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42218" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694891040 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42219" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694891146 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42220" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694891197 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42221" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694891271 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42222" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694891348 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42223" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694891380 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42224" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694891467 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42225" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694891543 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42226" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694891607 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42227" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694891708 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42228" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694891760 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42229" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694891861 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42230" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694891915 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42231" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694892020 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42232" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694892139 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42233" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694892195 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42234" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694892294 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42235" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694892338 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42211" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694892457 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91142" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694892593 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41937" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694892697 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91144" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694892715 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91150" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694892821 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91145" + } + ] + } + }, + { + "id": "191418d6-2a51-461e-8048-93fe539496d6", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "16314-701ff27f-2", + "start_date": "20230916", + "route_id": "556" + }, + "stop_time_update": [ + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889083 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42278" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889127 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42279" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889212 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42280" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889256 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42281" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889332 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42282" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889389 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42283" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889454 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49279" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889533 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42285" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889620 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42286" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889636 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42287" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889691 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42288" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889726 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42289" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889806 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42290" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889856 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42291" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889939 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42292" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890007 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42293" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890179 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42294" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890300 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42295" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890417 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42296" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890541 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42297" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890638 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42298" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890702 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42299" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890746 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49295" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890870 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49296" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890961 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49297" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890998 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49298" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891072 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49299" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891119 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49300" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891210 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49301" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891286 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49302" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891336 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49303" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891395 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49304" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891428 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49305" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891494 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49306" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891542 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49307" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891570 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49308" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891599 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49309" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891633 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42315" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891653 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42316" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891724 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42317" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891778 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42318" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891881 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8606396" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694891975 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38514" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694892026 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38516" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694892106 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38518" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694892246 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38520" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694892303 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38521" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694892374 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38522" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694892448 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38523" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694892527 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38524" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694892603 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38525" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694892685 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38526" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694892762 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38527" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694892906 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38528" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694893114 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38529" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694893500 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38530" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694893525 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005209" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694894027 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38531" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694894153 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8921285" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694894416 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38532" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694894557 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38533" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694894701 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38534" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694895064 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42382" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694895273 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42383" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694895459 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42384" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694895591 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "43339" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694895757 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "43207" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694895920 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "43208" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694896157 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "43209" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694896243 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "43210" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694896498 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42389" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694896578 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42390" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694896704 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42391" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694896951 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42392" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694897074 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42393" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694897248 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42394" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694897481 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42395" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694897800 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42396" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694897899 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42397" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694898171 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42398" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694898394 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42399" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694898742 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42400" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694900355 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694902115 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694902912 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694903524 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694905078 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694905480 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694906229 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694907125 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694908029 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + } + ] + } + }, + { + "id": "718face7-7a75-4521-ac05-4cce68308b69", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "16313-701ff27f-2", + "start_date": "20230916", + "route_id": "556" + }, + "stop_time_update": [ + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889028 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38514" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889070 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38516" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889132 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38518" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889237 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38520" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889279 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38521" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889330 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38522" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694889380 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38523" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694889433 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38524" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694889483 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38525" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694889534 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38526" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694889582 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38527" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694889668 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38528" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694889786 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38529" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694889986 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38530" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694889998 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005209" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694890228 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38531" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694890281 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8921285" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694890387 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38532" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694890442 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38533" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694890496 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38534" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694890625 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42382" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694890695 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42383" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694890755 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42384" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694890796 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "43339" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694890847 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "43207" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694890895 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "43208" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694890963 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "43209" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694890987 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "43210" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694891056 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42389" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694891077 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42390" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694891109 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42391" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694891171 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42392" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694891201 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42393" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694891243 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42394" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694891297 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42395" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694891368 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42396" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694891389 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42397" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694891446 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42398" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694891491 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42399" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694891559 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42400" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694891838 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694892087 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694892186 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694892257 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694892419 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694892457 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694892525 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694892601 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694892672 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + } + ] + } + }, + { + "id": "705d5a86-e96b-4c07-a0f0-3582299e7da4", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "16311-701ff27f-2", + "start_date": "20230916", + "route_id": "556" + }, + "stop_time_update": [ + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694889211 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694889406 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694889478 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694889528 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694889639 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694889665 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694889709 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694889757 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694889802 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + } + ] + } + }, + { + "id": "215dbb79-15a5-4216-9914-774eb4c0addd", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "16512-701ff27f-2", + "start_date": "20230916", + "route_id": "557" + }, + "stop_time_update": [ + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889087 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44895" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889156 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42270" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889200 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42271" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889268 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838438" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889421 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44896" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889469 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44897" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889543 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44898" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889711 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40993" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889951 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005188" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890196 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40995" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890267 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40996" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890343 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40997" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890401 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39614" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890448 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39615" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890496 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39616" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890550 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39617" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890608 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39618" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890654 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39619" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890693 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39620" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890764 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39621" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890814 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38281" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890871 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890913 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45068" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891046 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37480" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694891112 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694891186 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40848" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694891279 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Apr" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694891344 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39728" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694891456 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39729" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694891485 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39730" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694891607 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42200" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694891662 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42203" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694891740 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42204" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694891781 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42205" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694891857 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42201" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694892183 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42206" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694892271 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42207" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694892356 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42208" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694892544 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42564" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694892711 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42214" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694892882 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42209" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694893085 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42210" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694893411 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40951" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694893532 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40952" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694893652 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40953" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694893744 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40954" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694893898 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40955" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694893982 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40956" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694894114 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40957" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694894239 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40958" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694894303 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40959" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694894480 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42223" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694894552 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42224" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694894753 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42225" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694894932 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42226" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694895085 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42227" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694895339 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42228" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694895471 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42229" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694895736 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42230" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694895882 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42231" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694896175 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42232" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694896686 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42234" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694897107 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42211" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694897972 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41937" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694899746 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34871" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694900139 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42212" + } + ] + } + }, + { + "id": "787c564f-54c6-44f4-a6ed-f0d00688b077", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "16438-701ff27f-2", + "start_date": "20230916", + "route_id": "557" + }, + "stop_time_update": [ + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889010 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49283" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889062 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49284" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889124 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49285" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889204 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49286" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889248 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49287" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889295 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49288" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889347 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49289" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889485 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42294" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889612 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42295" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889724 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42296" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889847 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42297" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889941 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42298" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890003 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42299" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890044 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49295" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890160 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49296" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890241 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49297" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890273 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49298" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890338 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49299" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890389 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49300" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890472 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49301" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890539 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49302" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890584 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49303" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890636 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49304" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890664 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49305" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890721 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49306" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890762 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49307" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890787 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49308" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890812 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49309" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890841 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42315" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890856 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42316" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890918 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42317" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890973 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42318" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694891049 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8606396" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694891127 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38514" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694891169 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38516" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694891235 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38518" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694891348 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38520" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694891394 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38521" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694891451 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38522" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694891509 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38523" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694891572 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38524" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694891630 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38525" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694891694 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38526" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694891753 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38527" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694891858 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38528" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694892020 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38529" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694892303 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38530" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694892322 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005209" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694892678 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38531" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694892765 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8921285" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694892950 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38532" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694893041 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38533" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694893137 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38534" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694893224 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694893346 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694893407 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694893529 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694893682 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694893886 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45087" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694893955 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45088" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694894043 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45089" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694894200 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45090" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694894286 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45091" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694894447 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45093" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694894590 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45094" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694894682 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45095" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694894799 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45096" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694894911 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45097" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694894994 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45098" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694895065 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45099" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694895144 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45100" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694895218 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45101" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694895336 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45102" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694895417 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45103" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694895495 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45104" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694895577 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45122" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694895758 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38630" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694896110 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42365" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694896590 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49349" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694897101 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49350" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694897356 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49351" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694897522 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49352" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694897719 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49353" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694897941 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49354" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694898169 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49355" + }, + { + "stop_sequence": 111, + "arrival": { + "delay": 0, + "time": 1694898646 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42244" + }, + { + "stop_sequence": 112, + "arrival": { + "delay": 0, + "time": 1694898717 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49356" + }, + { + "stop_sequence": 113, + "arrival": { + "delay": 0, + "time": 1694899136 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49357" + }, + { + "stop_sequence": 114, + "arrival": { + "delay": 0, + "time": 1694899296 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49358" + }, + { + "stop_sequence": 115, + "arrival": { + "delay": 0, + "time": 1694899650 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 116, + "arrival": { + "delay": 0, + "time": 1694900027 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 117, + "arrival": { + "delay": 0, + "time": 1694900956 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 118, + "arrival": { + "delay": 0, + "time": 1694901167 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 119, + "arrival": { + "delay": 0, + "time": 1694901638 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 120, + "arrival": { + "delay": 0, + "time": 1694902118 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 121, + "arrival": { + "delay": 0, + "time": 1694902612 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + } + ] + } + }, + { + "id": "68215fb6-74aa-4201-b096-187c7bd9a9ee", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "16513-701ff27f-2", + "start_date": "20230916", + "route_id": "557" + }, + "stop_time_update": [ + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889014 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42250" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889158 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42252" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889197 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42253" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889244 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42254" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889276 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42255" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889310 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42256" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889330 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42257" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889349 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42258" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889377 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42259" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889430 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42260" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889467 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42261" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889498 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45094" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889553 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42263" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889597 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45092" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889626 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45091" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889671 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42266" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889726 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45089" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889762 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45088" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889836 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44895" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889899 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42270" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889940 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42271" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890004 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838438" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890150 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44896" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890197 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44897" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890268 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44898" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890435 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40993" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890682 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005188" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890942 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40995" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891020 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40996" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891103 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40997" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891167 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39614" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891220 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39615" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891274 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39616" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891336 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39617" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891402 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39618" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891454 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39619" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891499 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39620" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891582 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39621" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891640 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38281" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891708 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891758 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45068" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891917 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37480" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694891998 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694892089 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40848" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694892205 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Apr" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694892286 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39728" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694892427 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39729" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694892464 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39730" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694892621 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42200" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694892692 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42203" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694892795 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42204" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694892849 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42205" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694892951 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42201" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694893393 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42206" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694893515 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42207" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694893635 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42208" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694893902 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42564" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694894145 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42214" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694894398 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42209" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694894703 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42210" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694895210 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40951" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694895402 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40952" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694895594 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40953" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694895743 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40954" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694895997 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40955" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694896137 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40956" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694896360 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40957" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694896574 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40958" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694896685 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40959" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694896994 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42223" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694897121 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42224" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694897483 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42225" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694897812 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42226" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694898098 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42227" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694898582 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42228" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694898840 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42229" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694899370 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42230" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694899667 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42231" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694900280 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42232" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694901399 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42234" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694902371 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42211" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694904530 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41937" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694909782 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34871" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694911125 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42212" + } + ] + } + }, + { + "id": "929c24a1-0ff5-43dc-8860-a4401522fc4a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "16434-701ff27f-2", + "start_date": "20230916", + "route_id": "557" + }, + "stop_time_update": [ + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694889024 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49352" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694889065 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49353" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694889110 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49354" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694889153 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49355" + }, + { + "stop_sequence": 111, + "arrival": { + "delay": 0, + "time": 1694889237 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42244" + }, + { + "stop_sequence": 112, + "arrival": { + "delay": 0, + "time": 1694889249 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49356" + }, + { + "stop_sequence": 113, + "arrival": { + "delay": 0, + "time": 1694889316 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49357" + }, + { + "stop_sequence": 114, + "arrival": { + "delay": 0, + "time": 1694889340 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49358" + }, + { + "stop_sequence": 115, + "arrival": { + "delay": 0, + "time": 1694889391 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 116, + "arrival": { + "delay": 0, + "time": 1694889441 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 117, + "arrival": { + "delay": 0, + "time": 1694889553 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 118, + "arrival": { + "delay": 0, + "time": 1694889576 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 119, + "arrival": { + "delay": 0, + "time": 1694889625 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 120, + "arrival": { + "delay": 0, + "time": 1694889672 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 121, + "arrival": { + "delay": 0, + "time": 1694889716 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + } + ] + } + }, + { + "id": "d2ebd741-021c-4857-9560-76a7706237a1", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "16511-701ff27f-2", + "start_date": "20230916", + "route_id": "557" + }, + "stop_time_update": [ + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889002 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40993" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889261 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005188" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889516 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40995" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889589 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40996" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889665 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40997" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889722 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39614" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889770 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39615" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889817 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39616" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889870 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39617" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889926 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39618" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889970 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39619" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890007 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39620" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890075 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39621" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890122 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38281" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890176 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890215 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45068" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890338 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37480" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890398 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890465 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40848" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890549 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Apr" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694890606 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39728" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694890705 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39729" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694890730 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39730" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694890835 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42200" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694890882 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42203" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694890950 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42204" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694890984 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42205" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694891048 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42201" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694891318 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42206" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694891389 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42207" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694891458 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42208" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694891607 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42564" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694891738 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42214" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694891870 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42209" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694892025 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42210" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694892268 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40951" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694892357 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40952" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694892444 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40953" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694892510 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40954" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694892621 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40955" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694892680 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40956" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694892774 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40957" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694892861 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40958" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694892906 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40959" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694893027 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42223" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694893077 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42224" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694893213 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42225" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694893333 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42226" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694893434 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42227" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694893599 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42228" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694893685 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42229" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694893854 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42230" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694893946 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42231" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694894128 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42232" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694894439 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42234" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694894687 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42211" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694895180 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41937" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694896124 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34871" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694896321 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42212" + } + ] + } + }, + { + "id": "9a34828c-f3ec-4e6a-9232-438ad15da776", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "16436-701ff27f-2", + "start_date": "20230916", + "route_id": "557" + }, + "stop_time_update": [ + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694889040 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694889074 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694889140 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694889218 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694889316 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45087" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694889348 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45088" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694889388 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45089" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694889456 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45090" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694889492 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45091" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694889556 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45093" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694889611 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45094" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694889645 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45095" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694889688 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45096" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694889727 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45097" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694889755 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45098" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694889779 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45099" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694889805 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45100" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694889829 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45101" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694889866 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45102" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694889891 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45103" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694889915 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45104" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694889939 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45122" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694889991 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38630" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694890087 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42365" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694890206 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49349" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694890321 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49350" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694890374 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49351" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694890407 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49352" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694890446 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49353" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694890487 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49354" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694890529 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49355" + }, + { + "stop_sequence": 111, + "arrival": { + "delay": 0, + "time": 1694890610 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42244" + }, + { + "stop_sequence": 112, + "arrival": { + "delay": 0, + "time": 1694890622 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49356" + }, + { + "stop_sequence": 113, + "arrival": { + "delay": 0, + "time": 1694890688 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49357" + }, + { + "stop_sequence": 114, + "arrival": { + "delay": 0, + "time": 1694890712 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49358" + }, + { + "stop_sequence": 115, + "arrival": { + "delay": 0, + "time": 1694890763 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 116, + "arrival": { + "delay": 0, + "time": 1694890815 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 117, + "arrival": { + "delay": 0, + "time": 1694890933 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 118, + "arrival": { + "delay": 0, + "time": 1694890957 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 119, + "arrival": { + "delay": 0, + "time": 1694891010 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 120, + "arrival": { + "delay": 0, + "time": 1694891061 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 121, + "arrival": { + "delay": 0, + "time": 1694891111 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + } + ] + } + }, + { + "id": "8749b690-c21d-41c0-8a4a-4e2345863c04", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "1684-c36b9237-d", + "start_date": "20230915", + "route_id": "558" + }, + "stop_time_update": [ + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694888646 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42503" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694888745 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49267" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694888810 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540210" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694888832 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540222" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694888890 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540211" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694888937 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540212" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694888995 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540213" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694889018 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540214" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694889063 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540215" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694889080 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540216" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694889098 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540228" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694889106 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540229" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694889170 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540207" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694889205 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91147" + } + ] + } + }, + { + "id": "7146d8fc-6443-4d4b-a5d2-c38dbbb0d58e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "16635-701ff27f-2", + "start_date": "20230916", + "route_id": "558" + }, + "stop_time_update": [ + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694888999 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35695" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889050 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35696" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889229 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35697" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889328 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Jan" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694889364 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42460" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889416 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39726" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889438 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Mar" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889520 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Apr" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889573 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39728" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889673 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39729" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889697 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39730" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694889798 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42200" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694889841 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42203" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694889894 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42204" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694889935 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42205" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694889994 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42201" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694890232 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42206" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694890293 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42207" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694890351 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42208" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694890475 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42564" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694890580 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42214" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694890688 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42209" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694890808 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42210" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694891004 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42215" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694891030 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42216" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694891081 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42217" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694891162 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42218" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694891210 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42219" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694891322 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42220" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694891372 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42221" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694891450 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42222" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694891529 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42223" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694891563 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42224" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694891654 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42225" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694891733 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42226" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694891800 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42227" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694891906 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42228" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694891961 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42229" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694892067 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42230" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694892124 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42231" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694892244 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42232" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694892424 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42234" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694892570 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42211" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694892731 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49204" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694892766 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42503" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694892921 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49267" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694893026 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540210" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694893064 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540222" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694893164 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540211" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694893248 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540212" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694893354 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540213" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694893397 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540214" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694893484 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540215" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694893519 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540216" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694893553 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540228" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694893570 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540229" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694893702 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540207" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694893775 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91147" + } + ] + } + }, + { + "id": "70fd59ab-426b-45f5-81ec-69b0ec35f0c6", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "16750-701ff27f-2", + "start_date": "20230916", + "route_id": "559" + }, + "stop_time_update": [ + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889065 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49285" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889146 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49286" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889191 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49287" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889239 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49288" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889291 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49289" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889430 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42294" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889671 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42296" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889793 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42297" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889888 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42298" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889950 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42299" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889991 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49295" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890108 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49296" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890195 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49297" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890224 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49298" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890294 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49299" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890329 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49300" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890422 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49301" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890485 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49302" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890529 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49303" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890581 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49304" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890615 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49305" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890666 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49306" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890715 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49307" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890731 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49308" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890755 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49309" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890825 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49310" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890858 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890883 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39633" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890916 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39634" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890942 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39635" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890991 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39636" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891185 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694891240 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694891275 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694891349 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49319" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694891421 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694891463 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39642" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694891769 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39795" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694891841 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42642" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694891883 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42643" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694891918 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42644" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694891945 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42645" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694892175 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37430" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694892218 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37431" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694892259 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37432" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694892356 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40720" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694892374 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40721" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694892433 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40722" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694892441 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40723" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694892608 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42653" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694892657 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42654" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694892801 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42655" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694892877 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49342" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694893034 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49343" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694893368 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49344" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694893651 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49345" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694894011 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49346" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694894131 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49347" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694894673 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49348" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694894960 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49349" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694895331 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49350" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694895481 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49351" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694895591 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49352" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694895722 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49353" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694896015 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49355" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694896320 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42244" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694896365 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49356" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694896628 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49357" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694896732 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49358" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694896945 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694897173 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694897721 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694897856 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694898112 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694898381 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694898638 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + } + ] + } + }, + { + "id": "833c2481-5a3f-485b-8179-ef0a28e9bd37", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "1731-c36b9237-d", + "start_date": "20230914", + "route_id": "559" + }, + "stop_time_update": [ + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889036 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38779" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889085 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42247" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889134 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42248" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889166 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38782" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889280 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42249" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889398 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42421" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889599 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42422" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889675 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42423" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889784 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42424" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889967 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42425" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694890143 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42426" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694890196 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42427" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694890225 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42428" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890255 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42429" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890347 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42521" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890376 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42522" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890432 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42524" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890506 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42525" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890509 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42526" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890543 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40721" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890583 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42528" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890629 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37585" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890666 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37586" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890691 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37587" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890795 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36641" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890849 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42533" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890909 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42534" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890950 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42535" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891035 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38502" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891107 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38503" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891280 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35691" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891326 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35692" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891388 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35693" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891455 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35694" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891502 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35695" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891558 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35696" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891772 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35697" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891904 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Jan" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891933 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42460" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694892009 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39726" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694892038 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Mar" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694892145 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Apr" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694892229 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39728" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694892369 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39729" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694892405 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39730" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694892560 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42200" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694892630 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42203" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694892731 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42204" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694892784 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42205" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694892884 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42201" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694893318 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42206" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694893438 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42207" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694893556 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42208" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694893817 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42564" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694894055 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42214" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694894302 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42209" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694894600 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42210" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694895093 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40951" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694895281 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40952" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694895467 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40953" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694895612 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40954" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694895859 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40955" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694895995 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40956" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694896223 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40957" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694896431 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40958" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694896539 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40959" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694896838 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42223" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694896962 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42224" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694897313 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42225" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694897631 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42226" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694897907 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42227" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694898374 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42228" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694898594 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42229" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694899132 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42230" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694899418 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42231" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694900006 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42232" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694901099 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42234" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694901820 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42235" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694902049 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42211" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694902669 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42501" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694903259 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49204" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694903365 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42503" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694904028 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49266" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694905661 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540210" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694906160 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540222" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694907116 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540211" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694907933 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540212" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694909166 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540213" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694909935 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540214" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694910836 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540215" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694911893 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540228" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694912219 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540229" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694914328 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540207" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694915442 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91147" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694916648 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20554362" + } + ] + } + }, + { + "id": "e28c238b-5501-4a8e-8a45-841f07e19160", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "16691-701ff27f-2", + "start_date": "20230916", + "route_id": "559" + }, + "stop_time_update": [ + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694888957 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39726" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694888980 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Mar" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889064 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Apr" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889127 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39728" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889228 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39729" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889253 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39730" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889357 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42200" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694889403 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42203" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889466 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42204" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889499 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42205" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889558 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42201" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889798 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42206" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889859 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42207" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889917 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42208" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694890039 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42564" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694890143 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42214" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694890245 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42209" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694890361 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42210" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694890537 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40951" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694890599 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40952" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694890659 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40953" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694890705 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40954" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694890779 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40955" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694890818 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40956" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694890882 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40957" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694890938 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40958" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694890967 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40959" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694891043 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42223" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694891074 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42224" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694891157 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42225" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694891229 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42226" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694891289 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42227" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694891385 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42228" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694891428 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42229" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694891528 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42230" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694891578 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42231" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694891677 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42232" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694891843 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42234" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694891941 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42235" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694891971 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42211" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694892048 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42501" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694892117 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49204" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694892129 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42503" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694892201 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49266" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694892361 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540210" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694892406 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540222" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694892486 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540211" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694892550 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540212" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694892639 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540213" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694892690 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540214" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694892747 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540215" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694892809 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540228" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694892827 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540229" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694892936 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540207" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694892988 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91147" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694893041 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20554362" + } + ] + } + }, + { + "id": "f2d09d37-1488-477e-adae-71749442eaa2", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "0c102e4c-3434-42e6-a4fb-c80682b55542", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "16815-701ff27f-2", + "start_date": "20230916", + "route_id": "560" + }, + "stop_time_update": [ + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694888939 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49297" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694888974 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49298" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889037 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49299" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889092 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49300" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889179 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49301" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889248 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49302" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889294 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49303" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889346 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49304" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889374 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49305" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889431 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49306" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889470 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49307" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889494 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49308" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889518 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49309" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889546 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42315" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889569 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42316" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889619 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42317" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889670 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42318" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889734 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8606396" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889811 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38514" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889848 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38516" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889906 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38518" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890000 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38520" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890043 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38521" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890091 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38522" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890139 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38523" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890191 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38524" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890238 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38525" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890289 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38526" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890337 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38527" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890423 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38528" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694890538 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38529" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694890752 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38530" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694890766 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005209" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694891015 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38531" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694891075 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8921285" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694891199 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38532" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694891258 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38533" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694891320 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38534" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694891375 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694891451 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694891494 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694891560 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694891657 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694891807 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694891902 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694892118 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38546" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694892289 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694892386 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694892470 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694892619 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38551" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694892756 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694892894 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694892975 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694893178 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694893228 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694893317 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694893411 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694893496 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + } + ] + } + }, + { + "id": "aa725d0e-9478-4d35-b6fb-9f357a259951", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "16892-701ff27f-2", + "start_date": "20230916", + "route_id": "560" + }, + "stop_time_update": [ + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889390 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40995" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889470 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40996" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889546 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40997" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889600 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39614" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889649 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39615" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889698 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39616" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889749 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39617" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889806 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39618" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889851 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39619" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889892 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39620" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889957 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39621" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890004 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38281" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890057 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890097 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45068" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890219 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37480" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890280 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890347 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40848" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890430 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Apr" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890488 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39728" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890579 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39729" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890611 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39730" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890717 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42200" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890764 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42203" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890821 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42204" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890865 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42205" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890930 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42201" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891199 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42206" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891270 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42207" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891339 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42208" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891493 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42564" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891619 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42214" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891752 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42209" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891906 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42210" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694892161 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42215" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694892205 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42216" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694892265 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42217" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694892376 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42218" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694892430 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42219" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694892600 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42220" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694892671 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42221" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694892782 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42222" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694892898 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42223" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694892948 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42224" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694893083 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42225" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694893203 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42226" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694893304 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42227" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694893469 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42228" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694893554 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42229" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694893723 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42230" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694893814 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42231" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694893996 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42232" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694894305 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42234" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694894485 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42235" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694894565 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42211" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694894710 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49203" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694894863 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49204" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694894891 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42503" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694894928 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49264" + } + ] + } + }, + { + "id": "d0ae1b85-c93a-4213-bf59-5f0f14b21eeb", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "16890-701ff27f-2", + "start_date": "20230916", + "route_id": "560" + }, + "stop_time_update": [ + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889167 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40995" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889250 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40996" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889328 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40997" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889383 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39614" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889433 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39615" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889484 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39616" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889536 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39617" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889594 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39618" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889639 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39619" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889681 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39620" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889745 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39621" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889792 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38281" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889846 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889885 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45068" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890007 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37480" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890067 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890133 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40848" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890214 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Apr" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890271 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39728" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890360 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39729" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890391 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39730" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890493 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42200" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890538 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42203" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890593 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42204" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890636 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42205" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890697 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42201" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890952 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42206" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891019 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42207" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891084 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42208" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891228 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42564" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891345 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42214" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891467 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42209" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891608 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42210" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891841 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42215" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891881 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42216" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891935 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42217" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694892035 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42218" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694892083 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42219" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694892235 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42220" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694892299 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42221" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694892397 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42222" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694892500 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42223" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694892544 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42224" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694892663 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42225" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694892768 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42226" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694892856 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42227" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694892999 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42228" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694893073 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42229" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694893219 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42230" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694893297 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42231" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694893452 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42232" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694893715 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42234" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694893866 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42235" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694893934 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42211" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694894056 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49203" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694894183 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49204" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694894206 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42503" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694894237 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49264" + } + ] + } + }, + { + "id": "e5031ff9-0a55-4df2-8351-1382c61bbf49", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "16816-701ff27f-2", + "start_date": "20230916", + "route_id": "560" + }, + "stop_time_update": [ + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694888910 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42296" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889043 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42297" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889143 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42298" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889209 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42299" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889252 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49295" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889373 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49296" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889462 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49297" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889494 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49298" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889554 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49299" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889605 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49300" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889686 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49301" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889752 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49302" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889796 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49303" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889846 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49304" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889873 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49305" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889928 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49306" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889967 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49307" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889990 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49308" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890014 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49309" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890041 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42315" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890063 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42316" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890113 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42317" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890164 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42318" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890228 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8606396" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890305 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38514" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890343 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38516" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890402 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38518" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890499 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38520" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890544 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38521" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890594 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38522" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890645 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38523" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890698 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38524" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890749 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38525" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890803 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38526" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890854 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38527" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890947 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38528" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694891072 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38529" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694891309 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38530" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694891324 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005209" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694891606 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38531" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694891674 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8921285" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694891817 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38532" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694891886 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38533" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694891958 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38534" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694892024 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694892114 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694892165 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694892243 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694892359 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694892542 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694892659 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694892927 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38546" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694893143 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694893267 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694893374 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694893567 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38551" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694893746 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694893928 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694894036 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694894310 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694894378 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694894499 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694894628 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694894747 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + } + ] + } + }, + { + "id": "174c719a-c537-4701-870f-34da21e74333", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "16893-701ff27f-2", + "start_date": "20230916", + "route_id": "560" + }, + "stop_time_update": [ + { + "stop_sequence": 2, + "arrival": { + "delay": 0, + "time": 1694889215 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49357" + }, + { + "stop_sequence": 3, + "arrival": { + "delay": 0, + "time": 1694889256 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38771" + }, + { + "stop_sequence": 4, + "arrival": { + "delay": 0, + "time": 1694889300 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38668" + }, + { + "stop_sequence": 5, + "arrival": { + "delay": 0, + "time": 1694889671 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38721" + }, + { + "stop_sequence": 6, + "arrival": { + "delay": 0, + "time": 1694889726 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38659" + }, + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694889808 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38674" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694889870 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38649" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889947 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38718" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694890004 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38735" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694890057 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42270" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694890109 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42271" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694890172 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838438" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694890317 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44896" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694890364 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44897" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694890437 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44898" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694890608 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40993" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694891128 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40995" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694891218 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40996" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694891306 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40997" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694891369 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39614" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694891428 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39615" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694891488 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39616" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694891552 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39617" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694891623 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39618" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694891680 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39619" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694891734 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39620" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694891819 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39621" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694891882 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38281" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694891955 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694892010 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45068" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694892184 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37480" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694892272 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694892372 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40848" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694892500 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Apr" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694892589 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39728" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694892736 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39729" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694892788 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39730" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694892964 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42200" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694893044 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42203" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694893143 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42204" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694893220 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42205" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694893336 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42201" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694893841 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42206" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694893982 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42207" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694894122 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42208" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694894443 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42564" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694894718 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42214" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694895017 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42209" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694895381 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42210" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694896024 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42215" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694896140 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42216" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694896300 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42217" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694896606 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42218" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694896756 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42219" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694897253 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42220" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694897471 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42221" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694897818 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42222" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694898195 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42223" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694898358 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42224" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694898826 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42225" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694899255 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42226" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694899631 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42227" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694900276 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42228" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694900624 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42229" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694901346 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42230" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694901756 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42231" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694902615 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42232" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694904225 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42234" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694905257 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42235" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694905746 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42211" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694906673 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49203" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694907711 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49204" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694907910 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42503" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694908176 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49264" + } + ] + } + }, + { + "id": "6e4bf60d-1fe4-4908-87aa-6a9c511d2f3c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "16819-701ff27f-2", + "start_date": "20230916", + "route_id": "560" + }, + "stop_time_update": [ + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694888973 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38531" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694889031 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8921285" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694889149 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38532" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694889203 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38533" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694889259 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38534" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694889308 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694889374 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694889410 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694889464 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694889543 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694889660 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694889732 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694889887 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38546" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694890004 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694890068 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694890122 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694890215 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38551" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694890298 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694890378 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694890425 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694890538 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694890565 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694890612 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694890661 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694890705 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + } + ] + } + }, + { + "id": "6899bd37-d5e1-4b9b-951d-1850842ca8c0", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "16886-701ff27f-2", + "start_date": "20230916", + "route_id": "560" + }, + "stop_time_update": [ + { + "stop_sequence": 5, + "arrival": { + "delay": 0, + "time": 1694889232 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38721" + }, + { + "stop_sequence": 6, + "arrival": { + "delay": 0, + "time": 1694889289 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38659" + }, + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694889374 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38674" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694889438 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38649" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889517 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38718" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889574 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38735" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889628 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42270" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889681 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42271" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889743 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838438" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889887 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44896" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889934 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44897" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694890005 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44898" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694890171 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40993" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694890660 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40995" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694890743 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40996" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694890823 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40997" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694890881 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39614" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694890934 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39615" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694890989 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39616" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694891045 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39617" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694891110 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39618" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694891160 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39619" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694891208 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39620" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694891283 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39621" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694891339 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38281" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694891403 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694891451 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45068" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694891601 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37480" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694891678 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694891763 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40848" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694891872 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Apr" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694891947 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39728" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694892071 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39729" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694892114 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39730" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694892260 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42200" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694892326 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42203" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694892407 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42204" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694892471 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42205" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694892565 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42201" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694892971 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42206" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694893082 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42207" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694893191 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42208" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694893441 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42564" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694893652 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42214" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694893878 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42209" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694894150 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42210" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694894620 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42215" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694894703 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42216" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694894818 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42217" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694895035 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42218" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694895140 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42219" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694895484 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42220" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694895634 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42221" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694895868 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42222" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694896120 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42223" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694896228 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42224" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694896533 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42225" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694896808 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42226" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694897046 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42227" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694897446 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42228" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694897658 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42229" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694898089 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42230" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694898330 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42231" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694898822 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42232" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694899706 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42234" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694900249 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42235" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694900499 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42211" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694900963 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49203" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694901467 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49204" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694901562 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42503" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694901688 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49264" + } + ] + } + }, + { + "id": "cd79de73-7aed-4e8a-afa9-6d1ddc81cfda", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "16887-701ff27f-2", + "start_date": "20230916", + "route_id": "560" + }, + "stop_time_update": [ + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694888928 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42218" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694888965 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42219" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889079 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42220" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694889125 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42221" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889194 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42222" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889263 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42223" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889292 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42224" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889368 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42225" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889432 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42226" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889485 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42227" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694889567 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42228" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694889607 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42229" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694889685 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42230" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694889726 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42231" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694889804 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42232" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694889928 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42234" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694889996 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42235" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694890026 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42211" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694890077 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49203" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694890130 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49204" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694890139 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42503" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694890152 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49264" + } + ] + } + }, + { + "id": "2fc7625b-9256-49d5-840c-b1f4089ad5e7", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "16889-701ff27f-2", + "start_date": "20230916", + "route_id": "560" + }, + "stop_time_update": [ + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694888932 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39729" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694888965 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39730" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889074 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42200" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889121 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42203" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889178 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42204" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889221 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42205" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889282 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42201" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889527 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42206" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889588 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42207" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889647 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42208" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889773 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42564" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889873 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42214" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889975 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42209" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890089 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42210" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890270 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42215" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890301 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42216" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890341 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42217" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890415 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42218" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890450 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42219" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890559 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42220" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890604 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42221" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890672 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42222" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890742 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42223" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890771 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42224" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694890850 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42225" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694890918 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42226" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694890975 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42227" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694891065 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42228" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694891111 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42229" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694891200 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42230" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694891247 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42231" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694891339 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42232" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694891489 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42234" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694891574 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42235" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694891611 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42211" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694891677 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49203" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694891745 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49204" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694891757 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42503" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694891773 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49264" + } + ] + } + }, + { + "id": "db4a4ddf-fbe6-4c19-b328-71ad064a2a8f", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "16818-701ff27f-2", + "start_date": "20230916", + "route_id": "560" + }, + "stop_time_update": [ + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694889054 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38546" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694889179 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694889247 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694889303 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694889399 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38551" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694889483 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694889565 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694889611 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694889721 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694889748 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694889793 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694889840 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694889882 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + } + ] + } + }, + { + "id": "d9920f88-62c5-4861-97fd-fdbad6dbfc82", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "16891-701ff27f-2", + "start_date": "20230916", + "route_id": "560" + }, + "stop_time_update": [ + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694888993 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39619" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889039 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39620" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889108 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39621" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889159 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38281" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889216 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889257 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45068" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889384 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37480" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889446 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889513 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40848" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889596 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Apr" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889652 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39728" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889741 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39729" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889772 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39730" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889872 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42200" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889915 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42203" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889968 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42204" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890009 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42205" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890068 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42201" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890307 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42206" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890368 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42207" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890427 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42208" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890557 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42564" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890661 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42214" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890768 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42209" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890891 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42210" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891090 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42215" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891124 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42216" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891169 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42217" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891253 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42218" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891292 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42219" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891418 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42220" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891470 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42221" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694891549 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42222" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694891632 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42223" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694891667 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42224" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694891762 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42225" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694891844 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42226" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694891913 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42227" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694892024 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42228" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694892081 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42229" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694892192 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42230" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694892251 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42231" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694892368 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42232" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694892563 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42234" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694892673 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42235" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694892722 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42211" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694892810 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49203" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694892901 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49204" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694892917 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42503" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694892939 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49264" + } + ] + } + }, + { + "id": "1f477b16-663d-4171-baa6-ff00be7a30cc", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "16888-701ff27f-2", + "start_date": "20230916", + "route_id": "560" + }, + "stop_time_update": [ + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889083 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42215" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889115 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42216" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889158 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42217" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889235 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42218" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889271 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42219" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889380 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42220" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694889425 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42221" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889491 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42222" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889559 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42223" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889586 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42224" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889661 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42225" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889724 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42226" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889775 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42227" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694889856 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42228" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694889896 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42229" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694889974 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42230" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694890014 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42231" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694890092 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42232" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694890217 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42234" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694890286 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42235" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694890315 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42211" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694890368 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49203" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694890421 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49204" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694890431 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42503" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694890443 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49264" + } + ] + } + }, + { + "id": "40f6c9b1-7fae-40dd-b7d9-6fd7834cb315", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "16820-701ff27f-2", + "start_date": "20230916", + "route_id": "560" + }, + "stop_time_update": [ + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694888988 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38521" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889040 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38522" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889093 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38523" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889148 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38524" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694889199 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38525" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889252 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38526" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889301 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38527" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889389 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38528" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889504 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38529" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889711 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38530" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889723 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005209" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694889953 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38531" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694890006 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8921285" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694890115 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38532" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694890166 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38533" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694890219 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38534" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694890266 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694890330 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694890366 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694890420 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694890498 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694890619 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694890693 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694890858 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38546" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694890985 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694891057 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694891117 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694891223 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38551" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694891319 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694891414 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694891469 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694891605 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694891638 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694891696 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694891757 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694891812 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + } + ] + } + }, + { + "id": "bc1656f3-417d-4b2c-a8c9-ad061d417314", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "16821-701ff27f-2", + "start_date": "20230916", + "route_id": "560" + }, + "stop_time_update": [ + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694888948 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42280" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694888993 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42281" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889072 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42282" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889130 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42283" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889197 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49279" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889277 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42285" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889365 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42286" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889382 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42287" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889438 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42288" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889473 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42289" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889546 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42290" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889595 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42291" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889688 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42292" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889756 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42293" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889928 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42294" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890054 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42295" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890165 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42296" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890288 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42297" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890383 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42298" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890447 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42299" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890489 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49295" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890610 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49296" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890702 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49297" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890736 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49298" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890798 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49299" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890853 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49300" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890941 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49301" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694891015 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49302" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694891064 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49303" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694891120 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49304" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891152 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49305" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891215 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49306" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891260 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49307" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891288 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49308" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891316 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49309" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891348 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42315" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891375 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42316" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891435 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42317" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891497 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42318" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891577 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8606396" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891674 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38514" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891723 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38516" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891799 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38518" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891926 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38520" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891985 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38521" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694892053 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38522" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694892122 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38523" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694892197 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38524" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694892267 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38525" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694892344 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38526" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694892417 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38527" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694892551 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38528" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694892736 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38529" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694893102 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38530" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694893125 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005209" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694893587 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38531" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694893702 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8921285" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694893949 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38532" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694894071 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38533" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694894201 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38534" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694894320 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694894487 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694894582 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694894730 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694894956 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694895321 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694895560 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694896134 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38546" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694896619 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694896908 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694897164 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694897638 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38551" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694898097 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694898581 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694898878 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694899663 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694899867 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694900235 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694900639 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694901021 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + } + ] + } + }, + { + "id": "48dc9b29-853c-4d95-8e10-b610c31453da", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "f37a3d9e-2461-4cea-9191-cbf3422bb261", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "17072-701ff27f-2", + "start_date": "20230916", + "route_id": "561" + }, + "stop_time_update": [ + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694889034 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38527" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694889127 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38528" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694889244 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38529" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694889461 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38530" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694889474 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005209" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694889707 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38531" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694889761 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8921285" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694889870 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38532" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694889921 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38533" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694889973 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38534" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694890021 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694890079 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694890119 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694890170 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694890250 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694890300 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38539" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694890364 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694890441 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694890501 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694890602 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38546" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694890723 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694890790 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694890851 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694890939 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38551" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694891038 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694891127 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694891181 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694891304 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694891335 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694891388 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694891444 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694891496 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694891570 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38560" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694891610 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694891648 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38562" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694891704 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38563" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694891751 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38564" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694891869 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38565" + }, + { + "stop_sequence": 111, + "arrival": { + "delay": 0, + "time": 1694891931 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40932" + }, + { + "stop_sequence": 112, + "arrival": { + "delay": 0, + "time": 1694892029 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38567" + }, + { + "stop_sequence": 113, + "arrival": { + "delay": 0, + "time": 1694892091 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38568" + }, + { + "stop_sequence": 114, + "arrival": { + "delay": 0, + "time": 1694892188 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38570" + }, + { + "stop_sequence": 115, + "arrival": { + "delay": 0, + "time": 1694892266 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38571" + }, + { + "stop_sequence": 116, + "arrival": { + "delay": 0, + "time": 1694892341 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38572" + }, + { + "stop_sequence": 117, + "arrival": { + "delay": 0, + "time": 1694892393 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38573" + } + ] + } + }, + { + "id": "d94c2c3f-864c-496f-a342-2333e4fb4835", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "17073-701ff27f-2", + "start_date": "20230916", + "route_id": "561" + }, + "stop_time_update": [ + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889119 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42297" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889220 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42298" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889286 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42299" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889329 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49295" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889450 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49296" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889534 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49297" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889572 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49298" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889631 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49299" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889682 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49300" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889764 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49301" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889830 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49302" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889874 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49303" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889918 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49304" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889952 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49305" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890006 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49306" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890045 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49307" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890068 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49308" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890092 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49309" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890119 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42315" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890141 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42316" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890191 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42317" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694890242 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42318" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694890312 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8606396" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694890383 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38514" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694890421 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38516" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694890480 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38518" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694890581 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38520" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694890621 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38521" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694890671 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38522" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694890722 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38523" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694890776 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38524" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694890826 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38525" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694890880 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38526" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694890931 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38527" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694891023 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38528" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694891145 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38529" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694891384 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38530" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694891398 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005209" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694891679 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38531" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694891747 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8921285" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694891888 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38532" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694891957 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38533" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694892029 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38534" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694892095 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694892177 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694892234 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694892309 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694892430 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694892506 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38539" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694892607 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694892730 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694892828 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694892999 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38546" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694893213 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694893334 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694893449 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694893616 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38551" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694893812 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694893992 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694894105 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694894371 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694894439 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694894558 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694894686 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694894808 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694894983 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38560" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694895081 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694895174 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38562" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694895315 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38563" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694895436 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38564" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694895746 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38565" + }, + { + "stop_sequence": 111, + "arrival": { + "delay": 0, + "time": 1694895915 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40932" + }, + { + "stop_sequence": 112, + "arrival": { + "delay": 0, + "time": 1694896187 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38567" + }, + { + "stop_sequence": 113, + "arrival": { + "delay": 0, + "time": 1694896366 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38568" + }, + { + "stop_sequence": 114, + "arrival": { + "delay": 0, + "time": 1694896652 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38570" + }, + { + "stop_sequence": 115, + "arrival": { + "delay": 0, + "time": 1694896891 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38571" + }, + { + "stop_sequence": 116, + "arrival": { + "delay": 0, + "time": 1694897127 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38572" + }, + { + "stop_sequence": 117, + "arrival": { + "delay": 0, + "time": 1694897295 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38573" + } + ] + } + }, + { + "id": "ade4a3ff-d56a-4d09-8b20-5960f5af96a3", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "56e97065-073e-467f-8b59-d21050a2905f", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "17074-701ff27f-2", + "start_date": "20230916", + "route_id": "561" + }, + "stop_time_update": [ + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889006 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42285" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889100 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42286" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889117 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42287" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889176 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42288" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889213 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42289" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889297 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42290" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889349 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42291" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889436 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42292" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889508 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42293" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889676 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42294" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889809 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42295" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889920 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42296" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890042 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42297" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890136 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42298" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890198 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42299" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890239 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49295" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890357 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49296" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890440 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49297" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890478 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49298" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890537 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49299" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890589 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49300" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890674 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49301" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890743 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49302" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890789 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49303" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890836 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49304" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890873 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49305" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890931 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49306" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890973 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49307" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890999 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49308" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891025 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49309" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694891055 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42315" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694891080 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42316" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694891135 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42317" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694891193 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42318" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694891273 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8606396" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694891355 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38514" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694891399 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38516" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694891468 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38518" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694891589 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38520" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694891637 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38521" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694891698 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38522" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694891760 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38523" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694891827 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38524" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694891890 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38525" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694891958 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38526" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694892022 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38527" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694892140 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38528" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694892299 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38529" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694892619 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38530" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694892640 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005209" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694893032 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38531" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694893129 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8921285" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694893336 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38532" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694893437 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38533" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694893545 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38534" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694893644 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694893770 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694893858 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694893975 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694894165 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694894287 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38539" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694894450 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694894653 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694894817 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694895108 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38546" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694895483 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694895700 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694895908 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694896219 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38551" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694896592 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694896946 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694897171 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694897716 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694897859 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694898115 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694898391 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694898661 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694899058 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38560" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694899284 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694899502 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38562" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694899838 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38563" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694900131 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38564" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694900911 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38565" + }, + { + "stop_sequence": 111, + "arrival": { + "delay": 0, + "time": 1694901351 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40932" + }, + { + "stop_sequence": 112, + "arrival": { + "delay": 0, + "time": 1694902086 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38567" + }, + { + "stop_sequence": 113, + "arrival": { + "delay": 0, + "time": 1694902590 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38568" + }, + { + "stop_sequence": 114, + "arrival": { + "delay": 0, + "time": 1694903421 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38570" + }, + { + "stop_sequence": 115, + "arrival": { + "delay": 0, + "time": 1694904148 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38571" + }, + { + "stop_sequence": 116, + "arrival": { + "delay": 0, + "time": 1694904896 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38572" + }, + { + "stop_sequence": 117, + "arrival": { + "delay": 0, + "time": 1694905449 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38573" + } + ] + } + }, + { + "id": "7bb5090a-f651-470a-b835-fa89cd48ac4d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "17075-701ff27f-2", + "start_date": "20230916", + "route_id": "561" + }, + "stop_time_update": [ + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889030 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42950" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889076 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540195" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889119 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540196" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889196 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42948" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889225 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540198" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889247 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42946" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889297 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42894" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889332 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42893" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889353 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42891" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889379 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42892" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889420 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42895" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889432 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42896" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889473 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42889" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889516 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42888" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889557 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42890" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889600 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42886" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889621 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42885" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889683 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42285" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889768 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42286" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889785 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42287" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889839 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42288" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889874 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42289" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889954 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42290" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890003 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42291" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890087 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42292" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890157 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42293" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890323 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42294" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890458 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42295" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890571 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42296" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890698 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42297" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890796 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42298" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890862 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42299" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890906 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49295" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891034 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49296" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891124 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49297" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891166 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49298" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891232 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49299" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891290 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49300" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891385 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49301" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891463 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49302" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891516 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49303" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891570 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49304" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891612 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49305" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891680 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49306" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891729 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49307" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891759 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49308" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891789 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49309" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694891825 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42315" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694891854 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42316" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694891920 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42317" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694891988 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42318" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694892085 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8606396" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694892184 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38514" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694892238 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38516" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694892323 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38518" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694892472 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38520" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694892532 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38521" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694892608 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38522" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694892687 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38523" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694892771 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38524" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694892852 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38525" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694892939 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38526" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694893022 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38527" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694893177 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38528" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694893386 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38529" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694893820 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38530" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694893848 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005209" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694894396 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38531" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694894535 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8921285" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694894835 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38532" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694894984 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38533" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694895143 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38534" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694895292 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694895483 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694895616 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694895796 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694896093 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694896287 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38539" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694896547 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694896878 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694897150 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694897641 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38546" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694898292 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694898681 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694899059 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694899639 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38551" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694900359 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694901063 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694901525 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694902685 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694902999 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694903572 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694904210 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694904849 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694905821 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38560" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694906393 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694906959 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38562" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694907858 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38563" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694908667 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38564" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694910959 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38565" + }, + { + "stop_sequence": 111, + "arrival": { + "delay": 0, + "time": 1694912344 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40932" + }, + { + "stop_sequence": 112, + "arrival": { + "delay": 0, + "time": 1694914833 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38567" + }, + { + "stop_sequence": 113, + "arrival": { + "delay": 0, + "time": 1694916670 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38568" + }, + { + "stop_sequence": 114, + "arrival": { + "delay": 0, + "time": 1694919979 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38570" + }, + { + "stop_sequence": 115, + "arrival": { + "delay": 0, + "time": 1694923195 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38571" + }, + { + "stop_sequence": 116, + "arrival": { + "delay": 0, + "time": 1694926866 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38572" + }, + { + "stop_sequence": 117, + "arrival": { + "delay": 0, + "time": 1694929861 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38573" + } + ] + } + }, + { + "id": "6ff0d331-7344-41e3-ab46-ce8d3c10e16c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "17071-701ff27f-2", + "start_date": "20230916", + "route_id": "561" + }, + "stop_time_update": [ + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694889072 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694889141 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694889203 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694889289 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38551" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694889385 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694889468 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694889517 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694889627 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694889653 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694889699 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694889747 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694889790 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694889851 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38560" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694889884 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694889914 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38562" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694889959 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38563" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694889995 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38564" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694890086 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38565" + }, + { + "stop_sequence": 111, + "arrival": { + "delay": 0, + "time": 1694890133 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40932" + }, + { + "stop_sequence": 112, + "arrival": { + "delay": 0, + "time": 1694890204 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38567" + }, + { + "stop_sequence": 113, + "arrival": { + "delay": 0, + "time": 1694890250 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38568" + }, + { + "stop_sequence": 114, + "arrival": { + "delay": 0, + "time": 1694890318 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38570" + }, + { + "stop_sequence": 115, + "arrival": { + "delay": 0, + "time": 1694890373 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38571" + }, + { + "stop_sequence": 116, + "arrival": { + "delay": 0, + "time": 1694890424 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38572" + }, + { + "stop_sequence": 117, + "arrival": { + "delay": 0, + "time": 1694890460 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38573" + } + ] + } + }, + { + "id": "d39c3e57-ab09-4248-8b68-f8432cd9c851", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "16976-701ff27f-2", + "start_date": "20230916", + "route_id": "561" + }, + "stop_time_update": [ + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694889053 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42206" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694889112 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42207" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694889174 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42208" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694889304 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42564" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694889412 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42214" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694889518 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42209" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694889635 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42210" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694889818 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42215" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694889848 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42216" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694889888 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42217" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694889961 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42218" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694890003 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42219" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694890100 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42220" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694890143 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42221" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694890208 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42222" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694890342 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42897" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694890410 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42898" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694890458 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42887" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694890538 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42943" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694890610 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42944" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694890666 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42945" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694890718 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42947" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694890753 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42949" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694890887 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540195" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694890919 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42951" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694890962 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540194" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694891025 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42952" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694891055 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42958" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694891093 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42955" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694891118 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42983" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694891163 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540192" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694891196 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42979" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694891259 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540201" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694891308 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "43082" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694891326 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540202" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694891542 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42954" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694891617 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540199" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694891656 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42957" + } + ] + } + }, + { + "id": "b607f3db-a93c-4332-b06a-80227cc55d9e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "16978-701ff27f-2", + "start_date": "20230916", + "route_id": "561" + }, + "stop_time_update": [ + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889013 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005188" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889278 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40995" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889353 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40996" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889432 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40997" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889490 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39614" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889538 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39615" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889594 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39616" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889640 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39617" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889697 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39618" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889742 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39619" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889779 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39620" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889847 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39621" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889894 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38281" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889948 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889987 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45068" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890109 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37480" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890169 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890235 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40848" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890317 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Apr" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890373 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39728" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890469 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39729" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890493 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39730" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890596 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42200" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694890641 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42203" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694890697 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42204" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694890739 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42205" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694890801 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42201" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694891066 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42206" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694891126 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42207" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694891191 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42208" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694891331 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42564" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694891452 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42214" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694891578 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42209" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694891721 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42210" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694891958 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42215" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694891998 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42216" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694892053 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42217" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694892155 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42218" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694892215 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42219" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694892357 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42220" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694892422 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42221" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694892522 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42222" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694892736 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42897" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694892850 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42898" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694892931 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42887" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694893071 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42943" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694893199 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42944" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694893301 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42945" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694893399 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42947" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694893466 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42949" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694893728 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540195" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694893794 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42951" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694893881 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540194" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694894013 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42952" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694894076 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42958" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694894159 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42955" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694894213 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42983" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694894312 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540192" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694894387 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42979" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694894532 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540201" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694894645 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "43082" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694894687 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540202" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694895223 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42954" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694895418 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540199" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694895520 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42957" + } + ] + } + }, + { + "id": "bcbb1253-d189-4af0-94c4-18f135302f39", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "16977-701ff27f-2", + "start_date": "20230916", + "route_id": "561" + }, + "stop_time_update": [ + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889019 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45068" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889151 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37480" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889215 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889285 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40848" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889370 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Apr" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694889428 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39728" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889525 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39729" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889549 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39730" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889651 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42200" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889695 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42203" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889749 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42204" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889790 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42205" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694889848 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42201" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694890093 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42206" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694890147 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42207" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694890205 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42208" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694890328 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42564" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694890432 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42214" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694890538 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42209" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694890656 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42210" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694890848 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42215" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694890880 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42216" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694890923 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42217" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694891002 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42218" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694891049 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42219" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694891157 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42220" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694891206 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42221" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694891281 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42222" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694891438 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42897" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694891520 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42898" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694891578 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42887" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694891677 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42943" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694891765 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42944" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694891835 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42945" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694891902 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42947" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694891948 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42949" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694892121 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540195" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694892165 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42951" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694892221 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540194" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694892306 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42952" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694892347 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42958" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694892399 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42955" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694892433 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42983" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694892495 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540192" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694892542 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42979" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694892630 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540201" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694892699 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "43082" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694892725 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540202" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694893041 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42954" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694893152 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540199" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694893210 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42957" + } + ] + } + }, + { + "id": "8bd3b3c0-fd39-4ada-9071-31af9fb7d2b2", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "17070-701ff27f-2", + "start_date": "20230916", + "route_id": "561" + }, + "stop_time_update": [ + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694888985 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694889018 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38562" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694889067 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38563" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694889107 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38564" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694889204 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38565" + }, + { + "stop_sequence": 111, + "arrival": { + "delay": 0, + "time": 1694889254 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40932" + }, + { + "stop_sequence": 112, + "arrival": { + "delay": 0, + "time": 1694889329 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38567" + }, + { + "stop_sequence": 113, + "arrival": { + "delay": 0, + "time": 1694889376 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38568" + }, + { + "stop_sequence": 114, + "arrival": { + "delay": 0, + "time": 1694889447 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38570" + }, + { + "stop_sequence": 115, + "arrival": { + "delay": 0, + "time": 1694889502 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38571" + }, + { + "stop_sequence": 116, + "arrival": { + "delay": 0, + "time": 1694889554 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38572" + }, + { + "stop_sequence": 117, + "arrival": { + "delay": 0, + "time": 1694889589 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38573" + } + ] + } + }, + { + "id": "a9f031b0-c5f1-4b13-b5ab-481695416de7", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "16980-701ff27f-2", + "start_date": "20230916", + "route_id": "561" + }, + "stop_time_update": [ + { + "stop_sequence": 5, + "arrival": { + "delay": 0, + "time": 1694888942 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40947" + }, + { + "stop_sequence": 6, + "arrival": { + "delay": 0, + "time": 1694889027 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40932" + }, + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694889077 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42853" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694889168 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42854" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889227 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42855" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889257 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41975" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889287 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889317 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38697" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889366 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38646" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889396 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38632" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889481 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38767" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889551 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38768" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889593 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38769" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889633 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49357" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889672 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38771" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889716 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38668" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889811 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38661" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889892 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38657" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889952 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38743" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890016 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38652" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890075 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38721" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890133 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38659" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890211 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38674" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890286 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38649" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890348 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38718" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890421 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38735" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890475 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42270" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890520 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42271" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890589 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838438" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890736 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44896" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890786 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44897" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890862 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44898" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694891044 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40993" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694891319 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005188" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891617 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40995" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891708 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40996" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891806 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40997" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891882 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39614" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891945 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39615" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694892021 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39616" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694892085 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39617" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694892166 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39618" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694892231 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39619" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694892285 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39620" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694892388 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39621" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694892461 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38281" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694892546 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694892609 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45068" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694892813 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37480" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694892917 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694893036 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40848" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694893188 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Apr" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694893295 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39728" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694893486 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39729" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694893535 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39730" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694893750 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42200" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694893848 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42203" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694893970 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42204" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694894066 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42205" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694894210 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42201" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694894872 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42206" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694895031 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42207" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694895211 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42208" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694895618 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42564" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694895991 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42214" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694896401 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42209" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694896901 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42210" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694897811 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42215" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694897977 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42216" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694898208 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42217" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694898654 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42218" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694898930 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42219" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694899619 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42220" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694899952 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42221" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694900490 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42222" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694901748 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42897" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694902490 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42898" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694903047 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42887" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694904084 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42943" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694905118 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42944" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694906014 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42945" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694906938 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42947" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694907612 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42949" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694910598 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540195" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694911461 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42951" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694912669 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540194" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694914710 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42952" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694915775 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42958" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694917279 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42955" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694918325 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42983" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694920415 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540192" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694922157 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42979" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694925964 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540201" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694929468 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "43082" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694930939 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540202" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694961182 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42954" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694983625 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540199" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1695001261 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42957" + } + ] + } + }, + { + "id": "7437a998-be78-4a1e-93d3-258f84b6fbc1", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "16975-701ff27f-2", + "start_date": "20230916", + "route_id": "561" + }, + "stop_time_update": [ + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694889203 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42954" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694889268 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540199" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694889300 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42957" + } + ] + } + }, + { + "id": "b295565a-1e8f-4d02-969c-2dc1e96d79dd", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "39c06ba2-4b63-43a1-a59a-5a9f164acf38", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "d4afd7ae-f-701ff27f-2", + "start_date": "20230916", + "route_id": "562" + }, + "stop_time_update": [ + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889040 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40953" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889086 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40954" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889160 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40955" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889194 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40956" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889258 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40957" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889318 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40958" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889341 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40959" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889486 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42897" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889550 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42898" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889610 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91011" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889661 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91012" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889754 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91013" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889814 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91014" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889862 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42945" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889907 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42947" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889948 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42949" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890074 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540195" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890103 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42951" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890140 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540194" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890190 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42952" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890224 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42958" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890254 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42955" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890277 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42954" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890323 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540192" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890349 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42979" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890408 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540201" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890444 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "43082" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890466 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540202" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890497 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "43080" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890649 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42983" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694890716 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540199" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694890749 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42957" + } + ] + } + }, + { + "id": "921981e1-8c86-4c6f-8998-99be8affce50", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "1bc94f39-4-701ff27f-2", + "start_date": "20230916", + "route_id": "562" + }, + "stop_time_update": [ + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889061 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42894" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889098 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42893" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889119 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42891" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889177 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91008" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889272 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91009" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889334 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91010" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889389 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42890" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889428 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42886" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889452 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42885" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889515 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42285" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889611 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49281" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889669 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49282" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889717 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49283" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889769 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49284" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889829 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49285" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889895 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49286" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889942 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49287" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889983 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49288" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890031 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49289" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890167 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42294" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890294 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42295" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890400 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42296" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890536 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42297" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890624 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42298" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890694 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42299" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890729 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49295" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890859 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49296" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890950 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49297" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890984 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49298" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891055 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49299" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891110 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49300" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891196 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49301" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891274 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49302" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891328 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49303" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891381 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49304" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891419 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49305" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891484 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49306" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891531 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49307" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891552 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49308" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891582 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49309" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891616 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42315" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694891642 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42316" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694891713 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42317" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694891806 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42319" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694891889 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42320" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694891962 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38514" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694892037 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34586" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694892068 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34587" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694892109 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34588" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694892174 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39497" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694892217 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49407" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694892292 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50034" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694892351 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40903" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694892433 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50035" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694892507 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50036" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694892656 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35712" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694892812 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35713" + } + ] + } + }, + { + "id": "4f66dd4d-2eac-412e-81ab-57ab04a574a7", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "0e8abda7-4-701ff27f-2", + "start_date": "20230916", + "route_id": "562" + }, + "stop_time_update": [ + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889023 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38514" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889082 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34586" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694889107 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34587" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694889139 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34588" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694889189 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39497" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694889221 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49407" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694889276 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50034" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694889318 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40903" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694889374 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50035" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694889425 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50036" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694889521 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35712" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694889618 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35713" + } + ] + } + }, + { + "id": "a7aea2a6-596e-4464-b680-965ad87443c8", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "4aa826f5-e-701ff27f-2", + "start_date": "20230916", + "route_id": "562" + }, + "stop_time_update": [ + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889016 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "43080" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889192 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42953" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889292 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540193" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889346 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42950" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889398 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540195" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889439 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540196" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889534 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540198" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889553 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42946" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889602 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42894" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889636 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42893" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889656 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42891" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889710 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91008" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889800 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91009" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889858 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91010" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889911 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42890" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889949 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42886" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889972 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42885" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890032 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42285" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890127 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49281" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890184 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49282" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890231 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49283" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890284 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49284" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890344 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49285" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890411 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49286" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890459 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49287" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890500 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49288" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890550 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49289" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890691 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42294" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890825 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42295" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890938 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42296" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891085 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42297" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891181 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42298" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891258 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42299" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891297 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49295" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891441 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49296" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891544 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49297" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891583 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49298" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891663 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49299" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891727 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49300" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891826 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49301" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891917 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49302" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891979 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49303" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694892041 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49304" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694892086 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49305" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694892163 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49306" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694892220 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49307" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694892244 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49308" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694892280 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49309" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694892321 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42315" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694892353 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42316" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694892438 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42317" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694892551 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42319" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694892652 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42320" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694892743 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38514" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694892835 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34586" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694892874 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34587" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694892925 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34588" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694893007 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39497" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694893061 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49407" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694893156 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50034" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694893231 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40903" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694893335 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50035" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694893431 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50036" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694893624 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35712" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694893829 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35713" + } + ] + } + }, + { + "id": "7a4db7d4-3c12-4e0f-9930-ca0f7fc87b65", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "41c40566-f-701ff27f-2", + "start_date": "20230916", + "route_id": "562" + }, + "stop_time_update": [ + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889015 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49285" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889087 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49286" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889138 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49287" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889182 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49288" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889234 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49289" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889376 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42294" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889506 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42295" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889614 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42296" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889748 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42297" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889834 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42298" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889901 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42299" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889935 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49295" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890057 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49296" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890141 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49297" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890173 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49298" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890238 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49299" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890288 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49300" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890365 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49301" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890435 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49302" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890482 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49303" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890528 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49304" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890562 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49305" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890618 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49306" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890659 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49307" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890676 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49308" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890702 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49309" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890731 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42315" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890753 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42316" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890813 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42317" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890891 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42319" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694890959 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42320" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694891020 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38514" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694891080 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34586" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694891105 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34587" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694891139 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34588" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694891191 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39497" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694891225 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49407" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694891285 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50034" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694891331 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40903" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694891395 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50035" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694891453 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50036" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694891568 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35712" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694891686 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35713" + } + ] + } + }, + { + "id": "a920c00a-9741-46ab-8bca-a23deb495c94", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "8be7751a-7-701ff27f-2", + "start_date": "20230916", + "route_id": "562" + }, + "stop_time_update": [ + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889051 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889116 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40848" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889205 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Apr" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889264 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39728" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889365 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39729" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889384 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39730" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889492 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42200" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889536 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42203" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889594 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42204" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889626 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42205" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889691 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42201" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889935 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42206" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889989 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42207" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890052 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42208" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890170 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42564" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890273 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42214" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890383 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42209" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890491 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42210" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890674 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40951" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890738 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40952" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890799 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40953" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890844 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40954" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890917 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40955" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890953 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40956" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694891018 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40957" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694891081 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40958" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694891106 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40959" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694891265 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42897" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891337 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42898" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891407 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91011" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891468 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91012" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891581 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91013" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891656 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91014" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891717 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42945" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891774 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42947" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891828 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42949" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891997 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540195" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694892038 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42951" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694892089 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540194" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694892159 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42952" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694892209 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42958" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694892253 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42955" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694892286 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42954" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694892354 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540192" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694892393 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42979" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694892482 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540201" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694892538 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "43082" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694892573 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540202" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694892622 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "43080" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694892867 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42983" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694892980 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "20540199" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694893035 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42957" + } + ] + } + }, + { + "id": "f632c6be-60bb-47ca-9afe-b9bd177374ca", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "17357-701ff27f-2", + "start_date": "20230916", + "route_id": "565" + }, + "stop_time_update": [ + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694889018 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "13-Feb" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694889047 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "28-Jan" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889097 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "12-3" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889177 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "12-Jan" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889222 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "12-Feb" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889277 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Jan" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889332 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Mar" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889476 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Jun" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889536 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Aug" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889612 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jan" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889679 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Mar" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889779 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-May" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889928 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jul" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889993 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Sep" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694890073 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Nov" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694890181 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Dec" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694890270 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-14" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890417 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-17" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890496 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-19" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890555 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-20" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890617 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-22" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890682 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-24" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890773 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-25" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694891074 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90003" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694891124 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90007" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694891169 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40830" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694891209 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40831" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694891302 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694891328 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39600" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694891404 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37496" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694891461 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45064" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694891548 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891604 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45068" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891749 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37480" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891827 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891914 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40848" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694892024 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Apr" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694892101 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39728" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694892236 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39729" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694892271 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39730" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694892420 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42200" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694892489 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42203" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694892585 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42204" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694892636 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42205" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694892732 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42201" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694893147 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42206" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694893262 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42207" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694893374 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42208" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694893622 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42564" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694893848 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42214" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694894081 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42209" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694894362 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42210" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694894826 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40951" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694895001 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40952" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694895175 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40953" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694895311 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40954" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694895540 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40955" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694895666 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40956" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694895867 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40957" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694896058 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40958" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694896158 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40959" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694896433 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42223" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694897830 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42228" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694898068 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42229" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694898496 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42230" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694898777 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42231" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694899285 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42232" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694901052 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34557" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694901893 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42212" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694902820 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34560" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694903238 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42273" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694904848 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49203" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694905685 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49204" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694905844 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42503" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694906057 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49264" + } + ] + } + }, + { + "id": "2f7035f0-f82e-42a2-a29e-4f368f82abf9", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "17436-701ff27f-2", + "start_date": "20230916", + "route_id": "565" + }, + "stop_time_update": [ + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889028 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49303" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889078 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49304" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889114 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49305" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889173 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49306" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889214 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49307" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889239 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49308" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889264 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49309" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889334 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49310" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889365 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889390 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39633" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889422 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35796" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889470 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35797" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889511 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35798" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889549 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35799" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889618 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35800" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889666 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35801" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889692 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35802" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694889738 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35803" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889792 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38507" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889841 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34473" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889884 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38500" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889929 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35808" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889985 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35710" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694890028 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50036" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694890246 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50037" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694890392 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50038" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694890468 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50039" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694890524 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50040" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694890608 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50041" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694890751 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-15" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694890854 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-13" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694891060 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Oct" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694891116 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Aug" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694891297 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jun" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694891438 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Feb" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694891644 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44956" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694891691 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44957" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694891825 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45057" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694891901 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44963" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694892044 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34493" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694892115 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50019" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694892237 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Jan" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694892306 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44863" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694892351 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Mar" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694892433 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "11-Jan" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694892512 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39943" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694892552 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39944" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694892753 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39947" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694892810 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39949" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694892827 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39950" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694892912 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39952" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694893058 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34529" + } + ] + } + }, + { + "id": "629206a6-5f5c-48e3-934d-577a00ed01be", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "17434-701ff27f-2", + "start_date": "20230916", + "route_id": "565" + }, + "stop_time_update": [ + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694889062 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50037" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694889219 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50038" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694889298 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50039" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694889356 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50040" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694889441 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50041" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694889582 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-15" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694889680 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-13" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694889871 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Oct" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694889921 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Aug" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694890079 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jun" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694890198 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Feb" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694890367 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44956" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694890404 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44957" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694890510 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45057" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694890568 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44963" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694890677 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34493" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694890729 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50019" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694890819 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Jan" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694890869 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44863" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694890901 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Mar" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694890959 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "11-Jan" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694891015 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39943" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694891043 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39944" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694891179 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39947" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694891218 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39949" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694891229 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39950" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694891285 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39952" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694891380 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34529" + } + ] + } + }, + { + "id": "c3f27192-19ad-4426-b8da-1ccbb6f97496", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "17437-701ff27f-2", + "start_date": "20230916", + "route_id": "565" + }, + "stop_time_update": [ + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889100 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42295" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889220 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42296" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889349 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42297" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889447 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42298" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889511 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42299" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889553 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49295" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889673 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49296" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889757 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49297" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889792 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49298" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889851 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49299" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889902 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49300" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889983 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49301" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890048 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49302" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890092 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49303" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890138 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49304" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890171 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49305" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890225 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49306" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890264 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49307" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890288 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49308" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890311 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49309" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890378 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49310" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890409 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890433 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39633" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890464 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35796" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890512 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35797" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890553 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35798" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890591 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35799" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890661 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35800" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890711 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35801" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890737 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35802" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890785 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35803" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890842 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38507" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890894 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34473" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890940 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38500" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694890989 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35808" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694891050 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35710" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694891098 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50036" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694891344 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50037" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694891516 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50038" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694891606 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50039" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694891673 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50040" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694891777 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50041" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694891956 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-15" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694892088 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-13" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694892358 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Oct" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694892433 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Aug" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694892681 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jun" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694892880 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Feb" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694893178 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44956" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694893246 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44957" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694893448 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45057" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694893562 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44963" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694893785 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34493" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694893896 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50019" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694894091 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Jan" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694894203 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44863" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694894278 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Mar" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694894412 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "11-Jan" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694894546 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39943" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694894613 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39944" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694894958 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39947" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694895059 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39949" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694895089 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39950" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694895240 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39952" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694895503 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34529" + } + ] + } + }, + { + "id": "257e3f37-f8e4-4c5b-8073-3c65eaea43c3", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "17438-701ff27f-2", + "start_date": "20230916", + "route_id": "565" + }, + "stop_time_update": [ + { + "stop_sequence": 3, + "arrival": { + "delay": 0, + "time": 1694889050 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42501" + }, + { + "stop_sequence": 4, + "arrival": { + "delay": 0, + "time": 1694889069 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49267" + }, + { + "stop_sequence": 5, + "arrival": { + "delay": 0, + "time": 1694889149 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42274" + }, + { + "stop_sequence": 6, + "arrival": { + "delay": 0, + "time": 1694889230 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42275" + }, + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694889272 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42276" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694889356 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42277" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889439 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42278" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889480 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42279" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889561 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42280" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889603 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42281" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889678 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42282" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889732 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42283" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889795 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49279" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889872 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42285" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889965 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49281" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694890026 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49282" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694890068 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49283" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694890123 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49284" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694890188 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49285" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694890255 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49286" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694890302 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49287" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890341 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49288" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890387 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49289" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890520 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42294" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890655 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42295" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890771 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42296" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890900 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42297" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694891002 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42298" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694891070 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42299" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694891116 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49295" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694891248 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49296" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694891344 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49297" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694891385 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49298" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694891454 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49299" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694891515 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49300" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694891614 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49301" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891697 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49302" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891752 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49303" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891811 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49304" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891854 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49305" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891927 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49306" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891979 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49307" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694892010 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49308" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694892043 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49309" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694892135 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49310" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694892178 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694892212 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39633" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694892256 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35796" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694892325 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35797" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694892385 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35798" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694892441 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35799" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694892546 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35800" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694892621 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35801" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694892662 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35802" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694892737 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35803" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694892827 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38507" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694892911 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34473" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694892986 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38500" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694893065 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35808" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694893168 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35710" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694893250 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50036" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694893687 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50037" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694894008 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50038" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694894184 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50039" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694894318 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50040" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694894530 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50041" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694894909 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-15" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694895200 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-13" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694895831 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Oct" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694896015 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Aug" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694896651 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jun" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694897194 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Feb" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694898070 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44956" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694898282 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44957" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694898934 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45057" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694899323 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44963" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694900118 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34493" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694900537 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50019" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694901311 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Jan" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694901778 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44863" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694902100 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Mar" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694902699 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "11-Jan" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694903324 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39943" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694903652 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39944" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694905458 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39947" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694906032 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39949" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694906207 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39950" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694907118 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39952" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694908858 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34529" + } + ] + } + }, + { + "id": "a8b92f16-796b-4029-8811-da3aac14ac43", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "17354-701ff27f-2", + "start_date": "20230916", + "route_id": "565" + }, + "stop_time_update": [ + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694889050 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42232" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694889285 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34557" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694889375 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42212" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694889461 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34560" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694889496 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42273" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694889615 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49203" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694889668 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49204" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694889677 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42503" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694889690 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49264" + } + ] + } + }, + { + "id": "2c144cd9-6fe5-4fc6-91bc-adf9712d99c2", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "17435-701ff27f-2", + "start_date": "20230916", + "route_id": "565" + }, + "stop_time_update": [ + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889065 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38507" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889119 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34473" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889165 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38500" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889213 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35808" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889273 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35710" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889319 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50036" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694889545 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50037" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694889693 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50038" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694889768 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50039" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694889822 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50040" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694889905 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50041" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694890041 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-15" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694890138 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-13" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694890327 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Oct" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694890378 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Aug" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694890539 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jun" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694890662 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Feb" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694890838 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44956" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694890877 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44957" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694890989 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45057" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694891051 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44963" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694891168 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34493" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694891225 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50019" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694891323 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Jan" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694891377 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44863" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694891413 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Mar" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694891477 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "11-Jan" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694891539 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39943" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694891569 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39944" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694891722 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39947" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694891766 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39949" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694891778 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39950" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694891842 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39952" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694891950 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34529" + } + ] + } + }, + { + "id": "671f629f-1c90-4f9c-8961-c0774ffd9cfc", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "17359-701ff27f-2", + "start_date": "20230916", + "route_id": "565" + }, + "stop_time_update": [ + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889044 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42201" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889300 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42206" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889364 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42207" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889424 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42208" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889550 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42564" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889656 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42214" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694889758 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42209" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889873 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42210" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890045 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40951" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890105 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40952" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694890162 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40953" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694890205 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40954" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694890275 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40955" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694890312 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40956" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694890369 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40957" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694890421 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40958" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694890448 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40959" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694890518 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42223" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694890826 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42228" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694890872 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42229" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694890950 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42230" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694890999 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42231" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694891082 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42232" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694891330 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34557" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694891431 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42212" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694891531 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34560" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694891573 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42273" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694891718 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49203" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694891786 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49204" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694891798 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42503" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694891814 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49264" + } + ] + } + }, + { + "id": "c70768a5-f68e-4418-a7ad-25ca15e36501", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "82261874-47cc-4a6f-bbc3-63a2f01f4385", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "17360-701ff27f-2", + "start_date": "20230916", + "route_id": "565" + }, + "stop_time_update": [ + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889161 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-17" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889244 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-19" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889305 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-20" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889368 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-22" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889433 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-24" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889522 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-25" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889804 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90003" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889849 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90007" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889889 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40830" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889925 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40831" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890005 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890028 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39600" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890092 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37496" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890140 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45064" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890212 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890258 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45068" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890374 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37480" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890435 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890502 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40848" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890585 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Apr" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890643 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39728" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890742 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39729" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890767 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39730" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890873 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42200" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890922 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42203" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890988 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42204" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891023 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42205" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891087 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42201" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891358 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42206" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891430 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42207" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891500 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42208" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891650 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42564" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891783 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42214" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891916 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42209" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694892072 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42210" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694892318 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40951" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694892408 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40952" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694892496 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40953" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694892563 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40954" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694892675 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40955" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694892736 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40956" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694892830 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40957" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694892918 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40958" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694892964 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40959" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694893087 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42223" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694893667 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42228" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694893759 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42229" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694893920 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42230" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694894022 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42231" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694894202 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42232" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694894774 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34557" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694895021 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42212" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694895277 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34560" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694895387 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42273" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694895785 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49203" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694895975 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49204" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694896011 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42503" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694896057 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49264" + } + ] + } + }, + { + "id": "a4ada7e2-e725-4d55-9322-2c0c14674227", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "17355-701ff27f-2", + "start_date": "20230916", + "route_id": "565" + }, + "stop_time_update": [ + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889022 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37480" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889088 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889159 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40848" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889246 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Apr" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889305 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39728" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889404 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39729" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889429 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39730" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889532 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42200" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889577 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42203" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889640 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42204" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889672 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42205" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889731 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42201" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889969 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42206" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890030 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42207" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890088 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42208" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890210 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42564" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890315 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42214" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890418 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42209" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890534 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42210" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890713 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40951" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890776 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40952" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694890837 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40953" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694890883 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40954" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694890958 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40955" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694890998 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40956" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694891060 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40957" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694891118 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40958" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694891147 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40959" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694891225 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42223" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694891574 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42228" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694891627 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42229" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694891718 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42230" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694891775 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42231" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694891874 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42232" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694892174 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34557" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694892297 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42212" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694892421 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34560" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694892474 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42273" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694892658 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49203" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694892744 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49204" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694892760 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42503" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694892780 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49264" + } + ] + } + }, + { + "id": "71956134-a804-403e-a81a-e2c4f3357a42", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "17433-701ff27f-2", + "start_date": "20230916", + "route_id": "565" + }, + "stop_time_update": [ + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694889060 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44956" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694889100 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44957" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694889212 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45057" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694889272 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44963" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694889382 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34493" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694889434 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50019" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694889522 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Jan" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694889569 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44863" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694889601 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Mar" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694889655 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "11-Jan" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694889706 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39943" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694889732 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39944" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694889855 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39947" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694889890 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39949" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694889899 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39950" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694889948 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39952" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694890030 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34529" + } + ] + } + }, + { + "id": "55dff1db-90f8-44f1-bb8c-54d3c4f22460", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "17501-701ff27f-2", + "start_date": "20230916", + "route_id": "566" + }, + "stop_time_update": [ + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889088 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42283" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889157 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49279" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889239 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42285" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889337 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49281" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889402 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49282" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889445 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49283" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889503 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49284" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889569 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49285" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889637 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49286" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889684 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49287" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889724 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49288" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889774 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49289" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889898 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42294" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890032 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42295" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890142 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42296" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890264 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42297" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890359 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42298" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890421 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42299" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890463 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49295" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890582 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49296" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890666 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49297" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890705 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49298" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890766 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49299" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890820 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49300" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890906 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49301" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890977 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49302" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891024 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49303" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891071 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49304" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891110 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49305" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891171 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49306" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891215 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49307" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891241 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49308" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891268 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49309" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891344 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49310" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891380 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891444 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35796" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891500 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35797" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891548 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35798" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891594 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35799" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891677 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35800" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891738 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35801" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891769 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35802" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891829 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35803" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891899 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38507" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891965 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34473" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694892022 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38500" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694892084 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35808" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694892162 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35710" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694892224 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50036" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694892548 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50037" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694892783 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50038" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694892908 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50039" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694893003 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50040" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694893151 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50041" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694893411 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-15" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694893606 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-13" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694894020 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Oct" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694894137 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Aug" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694894533 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jun" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694894862 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Feb" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694895230 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10940386" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694895375 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10940383" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694895496 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10940382" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694895629 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10940381" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694895841 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10940374" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694896099 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10940370" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694896188 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10940367" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694896301 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10940368" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694896603 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10940388" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694897337 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Apr" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694897656 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Jan" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694897872 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44863" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694898041 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Mar" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694898342 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "11-Jan" + } + ] + } + }, + { + "id": "4f3471ad-dc7e-4f93-bcf6-d6bd4143e809", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "17528-701ff27f-2", + "start_date": "20230916", + "route_id": "566" + }, + "stop_time_update": [ + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889027 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37496" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889080 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45064" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889157 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889199 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45068" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889319 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37480" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889381 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889453 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40848" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889542 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Apr" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889599 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39728" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889695 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39729" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889719 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39730" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889820 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42200" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889865 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42203" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889926 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42204" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889949 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42205" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890016 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42201" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890261 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42206" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890315 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42207" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890374 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42208" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890498 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42564" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890603 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42214" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890711 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42209" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890832 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42210" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891018 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40951" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891085 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40952" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891149 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40953" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694891198 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40954" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694891278 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40955" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694891320 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40956" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694891384 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40957" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694891448 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40958" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694891479 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40959" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694891563 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42223" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694891597 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42224" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694891689 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42225" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694891769 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42226" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694891836 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42227" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694891933 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42228" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694891990 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42229" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694892103 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42230" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694892162 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42231" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694892274 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42232" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694892611 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34557" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694892689 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42242" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694892750 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42212" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694892883 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34560" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694892952 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42273" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694893163 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49203" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694893261 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49204" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694893280 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42503" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694893303 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49264" + } + ] + } + }, + { + "id": "baed9db0-c0f5-4cff-9670-c5a12994ab51", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "17567-701ff27f-2", + "start_date": "20230916", + "route_id": "567" + }, + "stop_time_update": [ + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889043 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38514" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889102 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34586" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889133 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34587" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694889158 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34588" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889208 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39497" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889243 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49407" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889302 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50034" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889342 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40903" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889376 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40904" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889421 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35814" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694889497 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35815" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694889523 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35816" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694889535 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35817" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694889569 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35818" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694889608 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35819" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694889794 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35822" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694889842 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35823" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694889896 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35723" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694889940 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35722" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694890021 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35826" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694890077 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35827" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694890099 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35828" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694890154 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35829" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694890272 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40921" + } + ] + } + }, + { + "id": "00ae4fe5-de8b-4eae-b37d-df3f12f92a70", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "17613-701ff27f-2", + "start_date": "20230916", + "route_id": "567" + }, + "stop_time_update": [ + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889073 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90001" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889165 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889189 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39600" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889257 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37496" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889308 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45064" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889382 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889423 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45068" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889548 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37480" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889609 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889676 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40848" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889758 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Apr" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889814 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39728" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889909 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39729" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889932 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39730" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890032 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42200" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890076 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42203" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890129 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42204" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890170 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42205" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890224 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42201" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890532 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42207" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890591 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42208" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890719 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42564" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890827 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42214" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890938 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42209" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891064 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42210" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891269 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42215" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891297 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42216" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891351 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42217" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891437 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42218" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891481 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42219" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891607 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42220" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891661 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42221" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891743 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42222" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891829 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42223" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891865 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42224" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891964 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42225" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694892050 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42226" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694892122 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42227" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694892238 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42228" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694892287 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42229" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694892410 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42230" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694892479 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42231" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694892610 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42232" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694892741 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42233" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694892966 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34557" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694893120 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42212" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694893268 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34560" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694893344 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42273" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694893579 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49203" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694893690 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49204" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694893710 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42503" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694893737 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49264" + } + ] + } + }, + { + "id": "fa7d7968-1a4a-4581-a394-49ad111e494f", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "17570-701ff27f-2", + "start_date": "20230916", + "route_id": "567" + }, + "stop_time_update": [ + { + "stop_sequence": 2, + "arrival": { + "delay": 0, + "time": 1694889007 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42211" + }, + { + "stop_sequence": 3, + "arrival": { + "delay": 0, + "time": 1694889049 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34868" + }, + { + "stop_sequence": 4, + "arrival": { + "delay": 0, + "time": 1694889075 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34415" + }, + { + "stop_sequence": 5, + "arrival": { + "delay": 0, + "time": 1694889143 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41801" + }, + { + "stop_sequence": 6, + "arrival": { + "delay": 0, + "time": 1694889253 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42242" + }, + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694889263 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34871" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694889297 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34557" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889421 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42275" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889457 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42276" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889540 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42277" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889619 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42278" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889661 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42279" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889741 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42280" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889782 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42281" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889855 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42282" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889910 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42283" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889973 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49279" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694890045 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42285" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694890134 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42286" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694890150 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42287" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694890205 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42288" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694890240 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42289" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890320 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42290" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890361 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42291" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890455 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42292" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890522 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42293" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890703 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42294" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890835 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42295" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890954 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42296" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694891088 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42297" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694891193 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42298" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694891264 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42299" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694891312 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49295" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694891449 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49296" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694891552 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49297" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694891594 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49298" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694891678 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49299" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891730 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49300" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891835 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49301" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891922 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49302" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891981 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49303" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694892050 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49304" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694892088 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49305" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694892165 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49306" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694892221 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49307" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694892254 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49308" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694892289 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49309" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694892329 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42315" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694892363 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42316" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694892438 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42317" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694892537 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42319" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694892666 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42320" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694892741 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38514" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694892832 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34586" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694892880 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34587" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694892922 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34588" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694893003 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39497" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694893062 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49407" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694893163 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50034" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694893235 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40903" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694893298 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40904" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694893382 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35814" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694893529 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35815" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694893582 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35816" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694893607 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35817" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694893678 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35818" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694893758 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35819" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694894183 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35822" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694894302 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35823" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694894438 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35723" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694894553 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35722" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694894776 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35826" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694894939 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35827" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694895005 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35828" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694895170 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35829" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694895551 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40921" + } + ] + } + }, + { + "id": "12e7bf91-bb84-47df-b84c-75a141552e6a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "17569-701ff27f-2", + "start_date": "20230916", + "route_id": "567" + }, + "stop_time_update": [ + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889066 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42281" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889145 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42282" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889204 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42283" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889271 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49279" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889348 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42285" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889441 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42286" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889457 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42287" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889514 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42288" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889549 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42289" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889630 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42290" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889671 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42291" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889765 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42292" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889831 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42293" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890006 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42294" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890131 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42295" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890242 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42296" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890365 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42297" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890460 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42298" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890523 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42299" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890565 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49295" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890686 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49296" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890775 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49297" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890810 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49298" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890882 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49299" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890927 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49300" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891015 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49301" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891087 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49302" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891136 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49303" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891192 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49304" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891223 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49305" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891286 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49306" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891330 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49307" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891358 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49308" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891385 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49309" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891417 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42315" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891444 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42316" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891503 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42317" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891581 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42319" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891681 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42320" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891739 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38514" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891808 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34586" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891845 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34587" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891877 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34588" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694891938 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39497" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694891982 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49407" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694892058 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50034" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694892111 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40903" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694892157 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40904" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694892218 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35814" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694892325 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35815" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694892363 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35816" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694892381 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35817" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694892431 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35818" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694892489 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35819" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694892785 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35822" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694892866 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35823" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694892958 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35723" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694893036 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35722" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694893184 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35826" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694893290 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35827" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694893333 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35828" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694893440 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35829" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694893681 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40921" + } + ] + } + }, + { + "id": "b0dada73-a90a-42db-a15d-66d86383f96d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "17566-701ff27f-2", + "start_date": "20230916", + "route_id": "567" + }, + "stop_time_update": [ + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694889063 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35827" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694889087 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35828" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694889146 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35829" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694889273 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40921" + } + ] + } + }, + { + "id": "972eab18-e1ae-4f0f-8a9b-ba8b03022e1a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "17568-701ff27f-2", + "start_date": "20230916", + "route_id": "567" + }, + "stop_time_update": [ + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889077 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49299" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889122 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49300" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889209 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49301" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889279 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49302" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889325 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49303" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889378 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49304" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889406 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49305" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889463 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49306" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889503 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49307" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889527 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49308" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889551 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49309" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889579 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42315" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889602 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42316" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889652 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42317" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889716 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42319" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889798 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42320" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889844 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38514" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889898 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34586" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889926 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34587" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694889950 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34588" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889996 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39497" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890029 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49407" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890084 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50034" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694890122 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40903" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694890155 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40904" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694890199 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35814" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694890272 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35815" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694890298 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35816" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694890310 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35817" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694890344 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35818" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694890382 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35819" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694890570 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35822" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694890620 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35823" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694890675 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35723" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694890721 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35722" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694890807 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35826" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694890867 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35827" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694890891 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35828" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694890949 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35829" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694891078 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40921" + } + ] + } + }, + { + "id": "4279047f-791d-4a70-a84f-618708864c5c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "17615-701ff27f-2", + "start_date": "20230916", + "route_id": "567" + }, + "stop_time_update": [ + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889015 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42218" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889056 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42219" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889167 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42220" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889213 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42221" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889282 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42222" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889352 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42223" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889380 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42224" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889456 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42225" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694889521 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42226" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889573 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42227" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889655 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42228" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889689 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42229" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889772 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42230" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889817 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42231" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889900 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42232" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694889980 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42233" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694890111 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34557" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694890196 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42212" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694890275 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34560" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694890315 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42273" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694890432 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49203" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694890486 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49204" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694890495 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42503" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694890508 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49264" + } + ] + } + }, + { + "id": "23c3c037-a8f9-401a-9993-b6b487ac713b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "17670-701ff27f-2", + "start_date": "20230916", + "route_id": "568" + }, + "stop_time_update": [ + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694889071 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38514" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694889130 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34586" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694889161 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34587" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694889187 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34588" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694889236 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39497" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694889271 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49407" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694889330 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50034" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694889370 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40903" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694889405 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40904" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694889449 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35814" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694889525 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35815" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694889551 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35816" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694889563 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35817" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694889598 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35818" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694889636 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35819" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694889822 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35822" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694889899 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38833" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694889925 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40924" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694890128 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38812" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694890162 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38813" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694890219 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38814" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694890264 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38815" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694890276 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38816" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694890366 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40565" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694890422 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40566" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694890441 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40567" + } + ] + } + }, + { + "id": "05a9b596-4e7d-467d-9ee4-2df73de5b433", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "17674-701ff27f-2", + "start_date": "20230916", + "route_id": "568" + }, + "stop_time_update": [ + { + "stop_sequence": 3, + "arrival": { + "delay": 0, + "time": 1694889034 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49228" + }, + { + "stop_sequence": 4, + "arrival": { + "delay": 0, + "time": 1694889115 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49237" + }, + { + "stop_sequence": 5, + "arrival": { + "delay": 0, + "time": 1694889159 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49238" + }, + { + "stop_sequence": 6, + "arrival": { + "delay": 0, + "time": 1694889194 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40966" + }, + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694889236 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40967" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694889312 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40969" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889409 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40970" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889454 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49250" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889479 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49244" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889495 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49251" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889511 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49242" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889557 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38054" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889626 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38055" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889752 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49254" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889785 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49255" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889820 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34810" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889840 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49256" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889864 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49219" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889906 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49249" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889928 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49218" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889951 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49257" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890068 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49258" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890123 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49259" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890134 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49260" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890295 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49261" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694891140 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34549" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694891523 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49264" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694891525 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49265" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694891572 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49266" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694891635 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49267" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694891727 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42274" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694891823 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42275" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694891873 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42276" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694891982 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42277" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694892090 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42278" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694892146 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42279" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694892259 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42280" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694892319 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42281" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694892430 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42282" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694892510 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42283" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694892610 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49279" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694892733 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42285" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694892888 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49281" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694892995 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49282" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694893069 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49283" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694893170 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49284" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694893276 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49285" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694893420 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49286" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694893502 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49287" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694893594 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49288" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694893697 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49289" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694893990 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42294" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694894287 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42295" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694894572 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42296" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694894911 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42297" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694895191 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42298" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694895387 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42299" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694895522 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49295" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694895920 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49296" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694896253 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49297" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694896389 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49298" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694896631 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49299" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694896852 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49300" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694897227 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49301" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694897555 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49302" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694897784 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49303" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694898060 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49304" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694898217 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49305" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694898545 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49306" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694898789 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49307" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694898942 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49308" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694899100 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49309" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694899288 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42315" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694899448 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42316" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694899815 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42317" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694900398 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42319" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694901031 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42320" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694901470 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38514" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694902019 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34586" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694902327 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34587" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694902597 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34588" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694903146 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39497" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694903563 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49407" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694904320 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50034" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694904882 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40903" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694905401 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40904" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694906128 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35814" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694907505 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35815" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694908038 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35816" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694908299 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35817" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694909061 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35818" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694909985 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35819" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694915996 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35822" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694919580 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38833" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694921026 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40924" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694939058 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38812" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694944222 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38813" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694955686 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38814" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694968435 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38815" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694972845 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38816" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1695028449 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40565" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1695126668 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40566" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1695201904 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40567" + } + ] + } + }, + { + "id": "0f7be8ee-9755-40cc-a949-0887f092a4ee", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "17747-701ff27f-2", + "start_date": "20230916", + "route_id": "568" + }, + "stop_time_update": [ + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889223 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42206" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889279 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42207" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889341 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42208" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889468 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42564" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889573 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42214" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889679 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42209" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889794 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42210" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889967 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40951" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890027 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40952" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890084 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40953" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890127 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40954" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890197 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40955" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890234 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40956" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890288 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40957" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890342 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40958" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890368 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40959" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890438 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42223" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890466 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42224" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890541 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42225" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890605 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42226" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890658 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42227" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890742 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42228" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890785 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42229" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890867 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42230" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890910 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42231" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890994 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42232" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694891131 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42234" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694891207 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42235" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694891241 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42211" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694891300 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49203" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694891361 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49204" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694891386 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34564" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694891793 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34789" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694891820 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49163" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694892896 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49208" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694892938 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49209" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694892964 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49210" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694893289 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49211" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694893341 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49212" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694893447 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49213" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694893807 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49206" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694893983 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49215" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694894001 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49216" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694894050 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49217" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694894105 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49214" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694894218 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49218" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694894268 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49219" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694894382 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38044" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694894479 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38045" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694894692 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34824" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694894983 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38091" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694895102 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38092" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694895187 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38093" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694895317 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38094" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694895361 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49243" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694895485 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49245" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694895622 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40338" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694895663 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40339" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694895704 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40340" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694895732 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40341" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694895896 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40342" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694896699 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49226" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694896816 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49227" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694896945 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49229" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694897016 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49228" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694897173 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49230" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694897286 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49231" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694897345 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49233" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694897495 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49234" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694897641 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49235" + } + ] + } + }, + { + "id": "b15aaa3e-12c5-45f7-b65f-9435f4d35a11", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "17672-701ff27f-2", + "start_date": "20230916", + "route_id": "568" + }, + "stop_time_update": [ + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889019 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42274" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889101 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42275" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889142 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42276" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889230 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42277" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889314 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42278" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889356 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42279" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889438 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42280" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889481 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42281" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889557 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42282" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889610 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42283" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889675 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49279" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889752 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42285" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889844 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49281" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889906 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49282" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889948 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49283" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890003 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49284" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890059 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49285" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890134 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49286" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890175 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49287" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890220 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49288" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890269 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49289" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890403 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42294" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890530 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42295" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890645 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42296" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890772 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42297" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890872 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42298" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890939 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42299" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890983 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49295" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694891109 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49296" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694891208 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49297" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694891247 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49298" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694891314 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49299" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694891373 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49300" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694891469 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49301" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694891549 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49302" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694891603 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49303" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694891665 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49304" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694891700 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49305" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694891770 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49306" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694891820 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49307" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694891851 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49308" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694891882 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49309" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694891918 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42315" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694891948 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42316" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694892015 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42317" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694892116 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42319" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694892219 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42320" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694892286 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38514" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694892365 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34586" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694892408 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34587" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694892445 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34588" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694892516 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39497" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694892567 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49407" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694892656 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50034" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694892719 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40903" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694892773 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40904" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694892846 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35814" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694892973 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35815" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694893018 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35816" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694893040 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35817" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694893101 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35818" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694893170 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35819" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694893530 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35822" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694893690 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38833" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694893747 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40924" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694894214 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38812" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694894299 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38813" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694894445 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38814" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694894562 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38815" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694894595 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38816" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694894841 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40565" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694895004 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40566" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694895061 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40567" + } + ] + } + }, + { + "id": "91ecfba2-c800-48a5-8cc7-f2b0934a21aa", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "17745-701ff27f-2", + "start_date": "20230916", + "route_id": "568" + }, + "stop_time_update": [ + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694889078 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49218" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694889101 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49219" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694889150 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38044" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694889191 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38045" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694889277 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34824" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694889385 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38091" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694889426 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38092" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694889455 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38093" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694889498 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38094" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694889512 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49243" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694889551 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49245" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694889593 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40338" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694889605 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40339" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694889617 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40340" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694889625 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40341" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694889672 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40342" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694889876 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49226" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694889903 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49227" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694889931 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49229" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694889947 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49228" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694889980 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49230" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694890004 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49231" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694890016 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49233" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694890046 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49234" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694890074 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49235" + } + ] + } + }, + { + "id": "1dbdd3e5-e542-4299-afdc-9ebd70d6d322", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "17749-701ff27f-2", + "start_date": "20230916", + "route_id": "568" + }, + "stop_time_update": [ + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889038 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35202" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889151 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90001" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889243 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889266 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39600" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889335 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37496" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889385 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45064" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889460 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889500 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45068" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889616 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37480" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889676 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889747 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40848" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889834 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Apr" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889890 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39728" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889985 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39729" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890009 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39730" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890109 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42200" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890153 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42203" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890206 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42204" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890237 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42205" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890555 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42206" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890610 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42207" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890670 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42208" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890797 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42564" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890906 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42214" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694891018 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42209" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891145 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42210" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891340 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40951" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891410 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40952" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891478 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40953" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891530 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40954" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891615 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40955" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891661 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40956" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891729 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40957" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891797 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40958" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891831 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40959" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891921 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42223" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891958 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42224" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694892058 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42225" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694892144 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42226" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694892217 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42227" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694892335 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42228" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694892395 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42229" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694892513 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42230" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694892576 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42231" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694892700 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42232" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694892908 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42234" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694893027 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42235" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694893080 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42211" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694893174 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49203" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694893272 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49204" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694893313 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34564" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694894011 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34789" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694894060 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49163" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694896251 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49208" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694896349 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49209" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694896410 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49210" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694897196 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49211" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694897327 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49212" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694897599 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49213" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694898577 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49206" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694899087 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49215" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694899140 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49216" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694899287 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49217" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694899454 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49214" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694899802 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49218" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694899960 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49219" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694900327 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38044" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694900650 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38045" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694901382 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34824" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694902457 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38091" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694902918 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38092" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694903258 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38093" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694903796 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38094" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694903982 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49243" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694904518 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49245" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694905136 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40338" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694905325 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40339" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694905519 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40340" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694905653 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40341" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694906451 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40342" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694911027 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49226" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694911804 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49227" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694912700 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49229" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694913213 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49228" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694914394 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49230" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694915288 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49231" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694915772 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49233" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694917045 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49234" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694918367 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49235" + } + ] + } + }, + { + "id": "97302e58-9e3c-47f5-940d-81a4d494bcc3", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "17871-701ff27f-2", + "start_date": "20230916", + "route_id": "572" + }, + "stop_time_update": [ + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889046 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005209" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889294 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38531" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889350 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8921285" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889463 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38532" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889515 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38533" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889570 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38534" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889618 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889678 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889713 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889769 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889846 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889898 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38539" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889962 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890038 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890104 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890193 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38546" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890310 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694890375 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694890429 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694890524 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38551" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694890608 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694890691 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694890741 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694890854 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694890882 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694890932 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694890982 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694891029 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + } + ] + } + }, + { + "id": "8c9d4199-7831-4c18-b636-c9bcb0c180bc", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "17872-701ff27f-2", + "start_date": "20230916", + "route_id": "572" + }, + "stop_time_update": [ + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889101 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35787" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889168 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35788" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889271 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35789" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889316 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35790" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889399 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35791" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889446 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35792" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889503 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35793" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889618 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91116" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694890082 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39545" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890246 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39546" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890380 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35286" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890407 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35287" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890475 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42317" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890527 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42318" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890599 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8606396" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890671 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38514" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890711 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38516" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890771 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38518" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890875 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38520" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890917 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38521" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890968 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38522" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694891021 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38523" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694891078 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38524" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694891130 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38525" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891187 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38526" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891240 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38527" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891338 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38528" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891475 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38529" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891721 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38530" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891737 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005209" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694892039 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38531" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694892113 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8921285" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694892266 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38532" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694892340 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38533" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694892421 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38534" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694892493 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694892584 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694892639 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694892730 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694892857 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694892948 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38539" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694893060 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694893199 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694893325 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694893500 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38546" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694893744 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694893885 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694894007 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694894228 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38551" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694894434 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694894644 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694894777 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694895090 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694895170 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694895317 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694895466 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694895612 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + } + ] + } + }, + { + "id": "bda0be92-0f91-41a8-8ac4-e15e0e2bd0a4", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "17814-701ff27f-2", + "start_date": "20230916", + "route_id": "572" + }, + "stop_time_update": [ + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889098 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35417" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889174 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35755" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889398 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35756" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889515 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35757" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889560 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35758" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889675 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35508" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694889713 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35514" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889761 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35515" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889812 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35516" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889845 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35517" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889872 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35518" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889878 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35764" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889920 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35763" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694889963 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35762" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694889981 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35761" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694890019 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35760" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694890063 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35759" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694890099 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34960" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694890126 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34961" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694890207 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34962" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694890268 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34963" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694890310 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34964" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694890362 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34965" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694890428 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34966" + } + ] + } + }, + { + "id": "01bc6f06-afc9-4487-a507-d572f7265155", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "17815-701ff27f-2", + "start_date": "20230916", + "route_id": "572" + }, + "stop_time_update": [ + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889330 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40995" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889412 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40996" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889490 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40997" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889544 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39614" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889594 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39615" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889644 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39616" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889696 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39617" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889752 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39618" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889798 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39619" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889846 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39620" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889888 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Jul" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889920 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Aug" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889966 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Sep" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890017 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Oct" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890066 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Nov" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890119 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35745" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890144 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15879953" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890165 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35746" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890741 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35748" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890800 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35749" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890858 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35750" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890938 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35751" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891058 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35752" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891209 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35417" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891288 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35755" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891538 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35756" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891676 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35757" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891731 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35758" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891877 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35508" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891926 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35514" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694891991 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35515" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694892059 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35516" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694892104 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35517" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694892142 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35518" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694892151 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35764" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694892210 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35763" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694892272 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35762" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694892298 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35761" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694892355 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35760" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694892420 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35759" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694892475 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34960" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694892516 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34961" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694892644 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34962" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694892742 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34963" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694892811 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34964" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694892899 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34965" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694893013 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34966" + } + ] + } + }, + { + "id": "80ac2753-5fed-4458-bbea-1ae8d6f973c5", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "17816-701ff27f-2", + "start_date": "20230916", + "route_id": "572" + }, + "stop_time_update": [ + { + "stop_sequence": 3, + "arrival": { + "delay": 0, + "time": 1694888998 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38646" + }, + { + "stop_sequence": 4, + "arrival": { + "delay": 0, + "time": 1694889038 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38632" + }, + { + "stop_sequence": 5, + "arrival": { + "delay": 0, + "time": 1694889120 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38767" + }, + { + "stop_sequence": 6, + "arrival": { + "delay": 0, + "time": 1694889185 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38768" + }, + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694889235 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38769" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694889277 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49357" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889318 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38771" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889362 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38668" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889460 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38661" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889543 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38657" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889603 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38743" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889668 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38652" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889728 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38721" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889786 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38659" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889868 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38674" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889940 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38649" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694890009 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38718" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694890068 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38735" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694890125 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42270" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694890172 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42271" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694890234 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838438" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890379 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44896" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890427 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44897" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890500 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44898" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890671 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40993" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694891192 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40995" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694891282 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40996" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694891370 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40997" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694891433 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39614" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694891492 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39615" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694891553 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39616" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694891616 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39617" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694891686 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39618" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694891745 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39619" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694891806 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39620" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694891862 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Jul" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891904 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Aug" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891967 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Sep" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694892037 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Oct" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694892105 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Nov" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694892181 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35745" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694892218 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15879953" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694892248 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35746" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694893185 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35748" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694893293 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35749" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694893400 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35750" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694893553 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35751" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694893790 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35752" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694894101 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35417" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694894272 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35755" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694894841 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35756" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694895178 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35757" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694895319 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35758" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694895702 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35508" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694895833 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35514" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694896013 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35515" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694896207 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35516" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694896338 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35517" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694896449 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35518" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694896475 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35764" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694896652 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35763" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694896844 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35762" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694896926 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35761" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694897104 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35760" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694897316 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35759" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694897500 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34960" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694897638 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34961" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694898086 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34962" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694898443 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34963" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694898706 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34964" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694899049 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34965" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694899509 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34966" + } + ] + } + }, + { + "id": "c5f50aea-60c3-4a33-a83d-b480a7d416c7", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "17985-701ff27f-2", + "start_date": "20230916", + "route_id": "573" + }, + "stop_time_update": [ + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889067 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35791" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889117 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35792" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889176 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35793" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889296 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91116" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889762 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35794" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889853 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35796" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889901 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35797" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889941 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35798" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889978 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35799" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890045 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35800" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890093 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35801" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890118 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35802" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890190 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38520" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890234 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38521" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890282 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38522" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890331 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38523" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890382 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38524" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890431 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38525" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890482 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38526" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890530 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38527" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890613 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38528" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890739 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38529" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890952 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38530" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890966 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005209" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891221 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38531" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891283 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8921285" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891409 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38532" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694891470 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38533" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694891534 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38534" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694891591 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694891664 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694891714 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694891779 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694891879 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694891947 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38539" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694892034 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694892140 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694892223 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694892368 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38546" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694892461 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38547" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694892547 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694892650 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694892738 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694892895 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38551" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694893040 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694893186 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694893277 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694893489 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694893543 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694893637 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694893738 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694893830 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + } + ] + } + }, + { + "id": "43f1e128-2e62-4ce4-9c59-e4ed352f18a5", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "17927-701ff27f-2", + "start_date": "20230916", + "route_id": "573" + }, + "stop_time_update": [ + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889013 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889045 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91118" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889111 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35223" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889159 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39547" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889239 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35224" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889416 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35225" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889971 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35748" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890036 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35749" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890081 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35750" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890156 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35751" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890270 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35752" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890403 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35417" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890474 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35755" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890686 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35864" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890808 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91039" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890954 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35866" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890996 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91040" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694891038 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35867" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694891076 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91085" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694891125 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35862" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694891205 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91045" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694891235 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91089" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694891267 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35645" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694891323 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35646" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694891373 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35475" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694891521 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35476" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694891784 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7084047" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694891882 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7084048" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694891958 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34961" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694892426 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34962" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694892518 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34963" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694892584 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34964" + } + ] + } + }, + { + "id": "5448fae1-bfa4-4f44-be37-eb1c1c0e186f", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "17928-701ff27f-2", + "start_date": "20230916", + "route_id": "573" + }, + "stop_time_update": [ + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889187 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40995" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889271 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40996" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889350 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40997" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889410 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39614" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889458 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39615" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889507 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39616" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889561 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39617" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889619 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39618" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889663 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39619" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889705 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39620" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889770 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39621" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889817 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38281" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889871 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889963 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37520" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890067 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37470" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890091 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890120 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91118" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890181 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35223" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890225 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39547" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890299 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35224" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890470 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35225" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891045 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35748" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891118 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35749" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891168 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35750" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891253 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35751" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891385 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35752" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891542 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35417" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891627 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35755" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891890 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35864" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694892045 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91039" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694892237 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35866" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694892293 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91040" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694892349 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35867" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694892400 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91085" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694892467 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35862" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694892577 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91045" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694892619 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91089" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694892663 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35645" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694892742 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35646" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694892813 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35475" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694893027 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35476" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694893421 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7084047" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694893572 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7084048" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694893691 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34961" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694894457 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34962" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694894615 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34963" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694894730 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34964" + } + ] + } + }, + { + "id": "5964d228-191a-45dc-82dd-855d66a437b8", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "17929-701ff27f-2", + "start_date": "20230916", + "route_id": "573" + }, + "stop_time_update": [ + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694888904 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38652" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694888973 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38721" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889033 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38659" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889120 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38674" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889186 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38649" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889267 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38718" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889326 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38735" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889380 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42270" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889434 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42271" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889497 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838438" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889642 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44896" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889690 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44897" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889761 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44898" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889926 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40993" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890408 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40995" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890489 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40996" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890567 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40997" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890627 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39614" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890676 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39615" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890726 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39616" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890783 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39617" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890844 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39618" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890892 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39619" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890937 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39620" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694891008 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39621" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891061 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38281" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891122 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891230 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37520" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891353 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37470" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891382 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891416 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91118" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891491 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35223" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891546 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39547" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891641 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35224" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891864 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35225" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694892690 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35748" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694892804 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35749" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694892882 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35750" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694893018 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35751" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694893235 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35752" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694893502 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35417" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694893651 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35755" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694894129 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35864" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694894426 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91039" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694894807 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35866" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694894921 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91040" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694895037 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35867" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694895145 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91085" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694895288 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35862" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694895526 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91045" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694895618 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91089" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694895718 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35645" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694895897 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35646" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694896059 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35475" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694896571 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35476" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694897579 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7084047" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694897993 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7084048" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694898331 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34961" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694900761 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34962" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694901330 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34963" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694901755 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34964" + } + ] + } + }, + { + "id": "9f9a4789-0aa3-435c-b9bd-cd4a87dc450a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "17984-701ff27f-2", + "start_date": "20230916", + "route_id": "573" + }, + "stop_time_update": [ + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889026 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38526" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889078 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38527" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889165 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38528" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889293 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38529" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889500 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38530" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889513 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005209" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889745 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38531" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889799 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8921285" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694889907 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38532" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889958 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38533" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890011 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38534" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890057 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694890116 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694890155 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694890206 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694890283 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694890335 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38539" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694890399 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694890476 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694890536 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694890638 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38546" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694890702 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38547" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694890760 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694890829 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694890887 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694890988 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38551" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694891078 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694891168 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694891223 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694891348 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694891379 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694891433 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694891489 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694891541 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + } + ] + } + }, + { + "id": "eb13feac-0b69-466c-b65c-dc6d71f13e86", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "17986-701ff27f-2", + "start_date": "20230916", + "route_id": "573" + }, + "stop_time_update": [ + { + "stop_sequence": 6, + "arrival": { + "delay": 0, + "time": 1694889103 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91031" + }, + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694889205 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7084050" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694889243 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91032" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889302 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91033" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889361 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91034" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889422 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91035" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889477 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91036" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889510 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35607" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889576 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91037" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889610 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35483" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889628 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35484" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889689 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7175655" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889720 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35639" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889791 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35640" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889815 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35781" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889845 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35782" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889891 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91038" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889998 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35783" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890031 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "31013" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890147 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35785" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890375 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35786" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890444 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35787" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890504 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35788" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890611 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35789" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890653 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35790" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890738 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35791" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890787 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35792" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890846 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35793" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890967 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91116" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694891489 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35794" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694891600 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35796" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694891660 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35797" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694891711 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35798" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891758 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35799" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891846 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35800" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891910 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35801" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891943 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35802" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694892043 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38520" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694892103 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38521" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694892171 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38522" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694892241 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38523" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694892316 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38524" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694892388 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38525" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694892465 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38526" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694892539 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38527" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694892669 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38528" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694892872 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38529" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694893233 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38530" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694893258 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005209" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694893725 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38531" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694893842 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8921285" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694894092 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38532" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694894216 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38533" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694894348 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38534" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694894469 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694894625 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694894735 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694894881 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694895109 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694895269 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38539" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694895476 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694895738 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694895950 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694896331 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38546" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694896586 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38547" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694896828 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694897125 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694897389 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694897877 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38551" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694898350 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694898850 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694899174 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694899970 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694900182 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694900564 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694900984 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694901384 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + } + ] + } + }, + { + "id": "47d51281-8a1f-42e6-ba0b-22e88a4cf1f9", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "18098-701ff27f-2", + "start_date": "20230916", + "route_id": "574" + }, + "stop_time_update": [ + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889068 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35797" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889112 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35798" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889153 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35799" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889225 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35800" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889276 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35801" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889303 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35802" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889379 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38520" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889424 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38521" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889474 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38522" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889524 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38523" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889576 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38524" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889624 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38525" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889676 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38526" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889723 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38527" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889809 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38528" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889925 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38529" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890125 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38530" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890138 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005209" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890368 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38531" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890422 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8921285" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890532 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38532" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890585 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38533" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890639 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38534" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890688 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890745 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890790 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890846 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890927 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890980 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38539" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891050 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891134 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694891209 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694891310 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38546" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694891446 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694891523 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694891589 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694891704 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38551" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694891809 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694891913 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694891977 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694892125 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694892162 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694892227 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694892295 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694892356 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + } + ] + } + }, + { + "id": "bff55ba6-ac13-41ce-b583-54e0d3f39d28", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "18044-701ff27f-2", + "start_date": "20230916", + "route_id": "574" + }, + "stop_time_update": [ + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889072 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40993" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889573 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40995" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889652 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40996" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889728 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40997" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889785 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39614" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889832 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39615" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889879 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39616" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889932 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39617" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889988 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39618" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890032 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39619" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890070 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39620" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890138 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39621" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890185 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38281" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890239 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890332 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37520" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890438 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37470" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890462 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890491 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91118" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890554 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35223" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890599 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39547" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890676 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35224" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890856 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35225" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891477 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35748" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891557 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35749" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891613 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35750" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891708 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35751" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891782 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35789" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891851 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35752" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694892035 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35417" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694892132 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35755" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694892446 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35756" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694892623 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35757" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694892695 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35758" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694892708 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35759" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694892794 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35522" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694892888 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35508" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694892952 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35514" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694893039 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35515" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694893131 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35516" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694893192 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35517" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694893336 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35763" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694893458 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35761" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694893550 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35760" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694893622 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35523" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694893706 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34960" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694893764 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34961" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694893947 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34962" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694894088 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34963" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694894190 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34964" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694894319 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34965" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694894491 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34966" + } + ] + } + }, + { + "id": "caecf9f1-c916-4b66-ac7b-2a7e5d6e2fc0", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "18101-701ff27f-2", + "start_date": "20230916", + "route_id": "574" + }, + "stop_time_update": [ + { + "stop_sequence": 2, + "arrival": { + "delay": 0, + "time": 1694889157 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34971" + }, + { + "stop_sequence": 3, + "arrival": { + "delay": 0, + "time": 1694889187 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34972" + }, + { + "stop_sequence": 4, + "arrival": { + "delay": 0, + "time": 1694889224 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34973" + }, + { + "stop_sequence": 5, + "arrival": { + "delay": 0, + "time": 1694889258 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34974" + }, + { + "stop_sequence": 6, + "arrival": { + "delay": 0, + "time": 1694889345 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34961" + }, + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694889529 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35762" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694889610 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35764" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889665 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35766" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889721 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35767" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889779 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35398" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889873 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35760" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889915 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35759" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889980 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35524" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694890074 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35525" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694890337 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35786" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694890394 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35787" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694890458 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35788" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694890563 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35789" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694890607 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35790" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694890689 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35791" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694890742 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35792" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694890795 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35793" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890915 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91116" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694891428 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35794" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694891537 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35796" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694891596 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35797" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694891645 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35798" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694891692 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35799" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694891778 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35800" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694891840 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35801" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694891873 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35802" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694891970 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38520" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694892028 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38521" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694892095 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38522" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694892163 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38523" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694892236 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38524" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694892306 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38525" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694892381 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38526" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694892452 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38527" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694892585 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38528" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694892775 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38529" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694893124 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38530" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694893147 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005209" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694893597 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38531" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694893711 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8921285" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694893950 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38532" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694894069 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38533" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694894195 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38534" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694894311 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694894452 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694894565 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694894709 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694894923 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694895070 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38539" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694895266 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694895514 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694895744 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694896067 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38546" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694896534 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694896811 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694897057 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694897511 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38551" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694897949 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694898411 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694898709 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694899439 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694899632 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694899980 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694900361 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694900721 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + } + ] + } + }, + { + "id": "bf4b68b7-a613-4eae-8bd7-88de69ed8f94", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "18100-701ff27f-2", + "start_date": "20230916", + "route_id": "574" + }, + "stop_time_update": [ + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694888936 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35767" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694888999 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35398" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889100 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35760" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889144 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35759" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889213 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35524" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889311 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35525" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889579 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35786" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889635 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35787" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889699 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35788" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889802 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35789" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889844 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35790" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889923 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35791" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889974 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35792" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694890024 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35793" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890136 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91116" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890601 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35794" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890697 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35796" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890748 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35797" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890791 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35798" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890831 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35799" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890905 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35800" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890958 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35801" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890985 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35802" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694891067 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38520" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694891116 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38521" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694891171 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38522" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694891227 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38523" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694891287 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38524" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694891344 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38525" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891405 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38526" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891463 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38527" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891568 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38528" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891718 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38529" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891989 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38530" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694892007 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005209" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694892344 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38531" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694892428 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8921285" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694892602 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38532" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694892687 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38533" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694892777 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38534" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694892859 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694892958 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694893037 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694893136 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694893282 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694893381 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38539" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694893513 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694893676 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694893826 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694894033 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38546" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694894325 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694894496 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694894644 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694894914 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38551" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694895168 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694895430 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694895595 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694895990 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694896092 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694896274 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694896470 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694896651 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + } + ] + } + }, + { + "id": "6b0b6c77-d360-4d24-9593-c452febf3cc0", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "18097-701ff27f-2", + "start_date": "20230916", + "route_id": "574" + }, + "stop_time_update": [ + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694889105 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889177 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889272 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38546" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889395 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889461 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889517 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889612 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38551" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694889695 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694889776 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694889824 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694889932 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694889958 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694890004 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694890050 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694890092 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + } + ] + } + }, + { + "id": "966a99a6-4dde-4759-8fd3-b6f66b9356da", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "18043-701ff27f-2", + "start_date": "20230916", + "route_id": "574" + }, + "stop_time_update": [ + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889279 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35748" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889348 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35749" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889395 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35750" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889472 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35751" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889531 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35789" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889585 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35752" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889722 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35417" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889793 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35755" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890004 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35756" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890116 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35757" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890161 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35758" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890169 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35759" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694890220 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35522" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694890274 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35508" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694890311 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35514" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694890360 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35515" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694890411 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35516" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694890444 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35517" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694890521 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35763" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694890584 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35761" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694890630 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35760" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694890666 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35523" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694890707 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34960" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694890735 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34961" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694890821 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34962" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694890885 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34963" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694890930 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34964" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694890987 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34965" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694891059 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34966" + } + ] + } + }, + { + "id": "d9bfe7af-94fb-4f51-af2c-fa635479ae30", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "18214-701ff27f-2", + "start_date": "20230916", + "route_id": "575" + }, + "stop_time_update": [ + { + "stop_sequence": 4, + "arrival": { + "delay": 0, + "time": 1694889124 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34961" + }, + { + "stop_sequence": 5, + "arrival": { + "delay": 0, + "time": 1694889196 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35759" + }, + { + "stop_sequence": 6, + "arrival": { + "delay": 0, + "time": 1694889247 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35760" + }, + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694889314 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35762" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694889359 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91032" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889412 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91033" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889535 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35876" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889611 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35874" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889652 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35873" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889687 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35872" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889721 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35871" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889766 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35484" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889826 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7175655" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889849 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35776" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889884 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35868" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889914 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35778" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889957 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35779" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889995 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35867" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694890005 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35781" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694890034 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35782" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890080 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91038" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890187 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35783" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890220 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "31013" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890336 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35785" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890578 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35786" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890644 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35787" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890708 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35788" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890809 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35789" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890854 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35790" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890939 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35791" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890988 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35792" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694891048 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35793" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694891166 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91116" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694891714 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35794" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694891830 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35796" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891892 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35797" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891946 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35798" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891995 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35799" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694892088 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35800" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694892155 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35801" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694892190 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35802" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694892295 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38520" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694892358 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38521" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694892430 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38522" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694892505 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38523" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694892584 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38524" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694892660 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38525" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694892743 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38526" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694892821 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38527" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694892967 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38528" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694893176 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38529" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694893566 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38530" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694893592 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005209" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694894099 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38531" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694894209 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8921285" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694894499 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38532" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694894636 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38533" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694894781 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38534" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694894914 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694895102 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694895209 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694895377 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694895633 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694895807 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38539" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694896040 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694896334 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694896610 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694897001 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38546" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694897287 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38547" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694897570 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694897911 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694898216 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694898785 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38551" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694899339 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694899905 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694900317 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694901275 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694901532 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694901998 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694902513 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694903033 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + } + ] + } + }, + { + "id": "6fb9e6ba-a92c-4756-9794-0b4d40818fbe", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "18213-701ff27f-2", + "start_date": "20230916", + "route_id": "575" + }, + "stop_time_update": [ + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889017 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35781" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889049 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35782" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889100 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91038" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889215 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35783" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889250 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "31013" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889372 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35785" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889616 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35786" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889681 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35787" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889743 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35788" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889840 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35789" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889882 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35790" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889961 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35791" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890007 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35792" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890062 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35793" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890168 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91116" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890636 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35794" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890731 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35796" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890781 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35797" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890823 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35798" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890863 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35799" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890935 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35800" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890987 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35801" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891015 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35802" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891095 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38520" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891143 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38521" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891197 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38522" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891252 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38523" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891311 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38524" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891367 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38525" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891427 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38526" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891483 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38527" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891586 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38528" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891732 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38529" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891995 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38530" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694892012 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005209" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694892339 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38531" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694892408 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8921285" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694892587 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38532" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694892669 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38533" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694892756 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38534" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694892834 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694892943 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694893005 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694893100 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694893243 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694893339 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38539" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694893464 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694893620 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694893763 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694893961 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38546" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694894102 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38547" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694894238 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694894399 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694894540 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694894795 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38551" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694895034 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694895269 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694895435 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694895805 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694895901 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694896070 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694896252 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694896430 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + } + ] + } + }, + { + "id": "01e46230-e064-47b9-ab3f-200feae5df34", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "18156-701ff27f-2", + "start_date": "20230916", + "route_id": "575" + }, + "stop_time_update": [ + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889081 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Nov" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889139 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35745" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889160 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15879953" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889189 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35746" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889779 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35748" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889840 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35749" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889885 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35750" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889960 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35751" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890072 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35752" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890205 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35417" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890275 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35755" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890483 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35864" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890745 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35866" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890824 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35867" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890906 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35644" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890953 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35868" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890979 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35869" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694891006 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35870" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694891042 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91045" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694891071 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91089" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694891102 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35645" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694891154 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91090" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694891208 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91091" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694891247 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91092" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694891294 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35875" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694891594 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35762" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694891616 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35761" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694891663 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35760" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694891715 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35523" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694891765 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34960" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694891799 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34961" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694892253 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34962" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694892341 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34963" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694892404 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34964" + } + ] + } + }, + { + "id": "524f4891-b855-4304-a0b8-1c7971239aa8", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "18157-701ff27f-2", + "start_date": "20230916", + "route_id": "575" + }, + "stop_time_update": [ + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889276 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40995" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889359 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40996" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889436 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40997" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889495 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39614" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889543 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39615" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889592 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39616" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889646 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39617" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889703 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39618" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889746 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39619" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889785 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39620" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889836 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Jul" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889868 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Aug" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889914 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Sep" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889965 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Oct" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890014 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Nov" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890067 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35745" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890086 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15879953" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890113 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35746" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890693 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35748" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890756 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35749" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890803 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35750" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890883 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35751" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891005 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35752" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891153 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35417" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891231 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35755" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891472 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35864" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891787 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35866" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891886 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35867" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891988 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35644" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694892048 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35868" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694892080 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35869" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694892115 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35870" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694892162 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91045" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694892199 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91089" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694892240 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35645" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694892307 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91090" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694892379 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91091" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694892431 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91092" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694892493 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35875" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694892906 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35762" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694892937 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35761" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694893004 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35760" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694893078 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35523" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694893149 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34960" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694893199 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34961" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694893881 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34962" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694894017 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34963" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694894117 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34964" + } + ] + } + }, + { + "id": "6395bab2-04eb-473e-a9ce-cfb2f72887ba", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "18212-701ff27f-2", + "start_date": "20230916", + "route_id": "575" + }, + "stop_time_update": [ + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889016 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38527" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889109 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38528" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889234 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38529" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889442 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38530" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889455 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005209" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694889689 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38531" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889735 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8921285" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889851 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38532" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889902 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38533" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889955 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38534" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694890001 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694890064 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694890099 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694890152 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694890229 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694890279 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38539" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694890343 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694890420 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694890488 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694890579 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38546" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694890642 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38547" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694890701 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694890768 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694890826 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694890925 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38551" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694891015 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694891100 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694891157 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694891281 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694891311 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694891364 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694891420 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694891473 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + } + ] + } + }, + { + "id": "4571f63a-a4b2-4077-be57-b8b1821d6014", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "848a0443-41f7-451b-96cd-e039b18f0a67", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "18279-701ff27f-2", + "start_date": "20230916", + "route_id": "576" + }, + "stop_time_update": [ + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889085 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91127" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889116 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35841" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889150 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35842" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889203 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35843" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889239 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35844" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889299 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91128" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889346 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35846" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889381 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35847" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889412 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35848" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889416 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35157" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889487 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35147" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889532 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35148" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889565 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91129" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889604 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91130" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889654 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91131" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889740 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35669" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889816 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35670" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889849 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35671" + } + ] + } + }, + { + "id": "8b057e28-8f8c-49e2-b598-4b1a88e336fd", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "18281-701ff27f-2", + "start_date": "20230916", + "route_id": "576" + }, + "stop_time_update": [ + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889066 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889167 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37520" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889273 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37470" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889305 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889334 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91118" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889398 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35223" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889444 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39547" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889520 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35224" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889698 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35225" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694890240 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35748" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694890307 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35749" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694890352 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35750" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694890494 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35681" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890602 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35128" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890688 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91121" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890741 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91122" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890813 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35129" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890862 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91123" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890902 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91124" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890945 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35136" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890986 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91125" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694891033 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35130" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694891081 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91126" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694891178 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91127" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694891210 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35841" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694891246 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35842" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694891303 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35843" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694891342 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35844" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891408 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91128" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891462 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35846" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891502 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35847" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891538 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35848" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891543 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35157" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891627 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35147" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891682 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35148" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891723 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91129" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891772 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91130" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891836 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91131" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891948 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35669" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694892050 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35670" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694892096 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35671" + } + ] + } + }, + { + "id": "593f908b-c479-49ad-8680-18cf1011e4da", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "18357-701ff27f-2", + "start_date": "20230916", + "route_id": "576" + }, + "stop_time_update": [ + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694889011 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91135" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889042 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91136" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889084 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35156" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889158 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91137" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889195 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91138" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889245 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35845" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889291 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35684" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889332 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35685" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889376 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35686" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889433 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35687" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889472 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35165" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889661 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35791" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889707 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35792" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889762 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35793" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889875 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91116" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694890337 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39545" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890504 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39546" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890641 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35286" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890669 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35287" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890740 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42317" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890816 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42319" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890884 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42320" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890944 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38514" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694891002 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34586" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694891034 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34587" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694891060 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34588" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694891111 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39497" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694891148 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49407" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694891211 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50034" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694891254 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40903" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694891311 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50035" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891368 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50036" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891483 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35712" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891595 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35713" + } + ] + } + }, + { + "id": "38420c18-90e1-409e-94d5-923e728f0c5a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "29a7e504-6b61-436e-b3ad-f2010a4d4e6e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "18356-701ff27f-2", + "start_date": "20230916", + "route_id": "576" + }, + "stop_time_update": [ + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889024 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42317" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889103 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42319" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889172 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42320" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889231 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38514" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889288 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34586" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889318 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34587" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889343 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34588" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889391 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39497" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889425 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49407" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889483 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50034" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889522 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40903" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889572 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50035" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889622 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50036" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889720 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35712" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889811 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35713" + } + ] + } + }, + { + "id": "3c578dfa-f49e-47f2-8dc8-3fd99d5286c5", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "18280-701ff27f-2", + "start_date": "20230916", + "route_id": "576" + }, + "stop_time_update": [ + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889532 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35748" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889601 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35749" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889646 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35750" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889787 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35681" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889893 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35128" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889975 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91121" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890026 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91122" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890094 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35129" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890140 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91123" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890177 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91124" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890218 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35136" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890255 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91125" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890298 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35130" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890343 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91126" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890431 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91127" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890460 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35841" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890492 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35842" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890543 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35843" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890577 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35844" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890635 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91128" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890682 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35846" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890717 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35847" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890748 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35848" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890753 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35157" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890825 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35147" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890872 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35148" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890907 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91129" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890948 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91130" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891002 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91131" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891095 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35669" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891180 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35670" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891217 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35671" + } + ] + } + }, + { + "id": "3010e5be-f3ee-45b2-8561-697132acade5", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "18566-701ff27f-2", + "start_date": "20230916", + "route_id": "578" + }, + "stop_time_update": [ + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889004 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35508" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889042 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35514" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889095 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35515" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889149 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35516" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889184 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35517" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889264 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35763" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889329 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35761" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889367 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35522" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889481 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35524" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889580 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35525" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889841 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35786" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889905 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35787" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889966 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35788" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694890063 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35789" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694890105 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35790" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890184 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35791" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890230 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35792" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890285 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35793" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890399 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91116" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890872 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35794" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890971 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35796" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694891023 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35797" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694891067 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35798" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694891108 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35799" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694891184 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35800" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694891239 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35801" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694891268 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35802" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694891321 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35803" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694891383 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38507" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694891443 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34473" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891495 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38500" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891549 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35808" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891651 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35814" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891741 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35815" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891777 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35816" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891783 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35817" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891837 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35818" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891887 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35819" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694892142 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35822" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694892211 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35823" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694892289 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35723" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694892356 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35722" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694892479 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35826" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694892578 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35548" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694892716 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35547" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694892823 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35546" + } + ] + } + }, + { + "id": "13f06972-230a-4a9c-b482-e9d6571576e3", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "18630-701ff27f-2", + "start_date": "20230916", + "route_id": "578" + }, + "stop_time_update": [ + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889016 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35417" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889092 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35755" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889318 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35756" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889435 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35757" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889471 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35758" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889489 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35759" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889536 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35760" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889582 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35761" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889600 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35762" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889644 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35763" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889680 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35764" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889714 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35517" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889793 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35767" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889851 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35398" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890014 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91060" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890037 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35769" + } + ] + } + }, + { + "id": "02e2d6b2-49c6-4397-83d0-b637e8e7b725", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "a3f155e3-bc6b-4125-9b6b-b47cc3805a4a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "18632-701ff27f-2", + "start_date": "20230916", + "route_id": "578" + }, + "stop_time_update": [ + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889012 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35726" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889096 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35727" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889209 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35729" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889242 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35730" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889274 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35731" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889340 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35201" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889426 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35202" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889530 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90001" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889616 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889639 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39600" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889704 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37496" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889753 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45064" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889824 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889917 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37520" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890021 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37470" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890045 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890073 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91118" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890134 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35223" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890178 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39547" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890253 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35224" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890420 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35225" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694891007 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35748" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694891074 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35749" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694891124 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35750" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694891209 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35751" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694891336 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35752" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891498 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35417" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891583 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35755" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891853 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35756" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694892004 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35757" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694892052 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35758" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694892076 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35759" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694892140 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35760" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694892204 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35761" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694892231 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35762" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694892294 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35763" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694892347 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35764" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694892398 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35517" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694892518 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35767" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694892610 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35398" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694892883 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91060" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694892923 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35769" + } + ] + } + }, + { + "id": "88da9381-1a9a-4940-b480-a7c3ea5748dd", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "18696-701ff27f-2", + "start_date": "20230916", + "route_id": "579" + }, + "stop_time_update": [ + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889099 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42319" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889178 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42320" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889227 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38514" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889284 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34586" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889314 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34587" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889339 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34588" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889390 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39497" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889422 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49407" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889479 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50034" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889519 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40903" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889553 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40904" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889597 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35814" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694889671 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35815" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889697 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35816" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889709 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35817" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889743 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35818" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889781 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35819" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889965 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35822" + } + ] + } + }, + { + "id": "d828d22c-debf-4676-aa4d-0c16e75199cb", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "18693-701ff27f-2", + "start_date": "20230916", + "route_id": "579" + }, + "stop_time_update": [ + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889064 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50034" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889106 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40903" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889142 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40904" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889188 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35814" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694889266 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35815" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889293 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35816" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889306 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35817" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889341 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35818" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889381 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35819" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889570 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35822" + } + ] + } + }, + { + "id": "8a4473af-2e12-44d7-9c6c-c1028badd0f7", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "18694-701ff27f-2", + "start_date": "20230916", + "route_id": "579" + }, + "stop_time_update": [ + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889059 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35822" + } + ] + } + }, + { + "id": "6571f1a5-9155-4cbe-9926-47f76e98d544", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "18698-701ff27f-2", + "start_date": "20230916", + "route_id": "579" + }, + "stop_time_update": [ + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889021 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35785" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889269 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35786" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889336 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35787" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889400 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35788" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889499 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35789" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889542 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35790" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889622 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35791" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889668 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35792" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889724 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35793" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889836 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91116" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890299 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39545" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890465 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39546" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890602 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35286" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890630 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35287" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890700 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42317" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890777 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42319" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890854 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42320" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890904 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38514" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890962 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34586" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890994 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34587" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891020 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34588" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891073 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39497" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891108 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49407" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891171 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50034" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891214 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40903" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891252 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40904" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891302 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35814" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891388 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35815" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694891419 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35816" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694891433 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35817" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694891474 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35818" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694891520 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35819" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694891751 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35822" + } + ] + } + }, + { + "id": "b6c049fe-f56f-4da6-b691-4b872cb5fa63", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "18700-701ff27f-2", + "start_date": "20230916", + "route_id": "579" + }, + "stop_time_update": [ + { + "stop_sequence": 1, + "arrival": { + "delay": 0, + "time": 1694889247 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35260" + }, + { + "stop_sequence": 2, + "arrival": { + "delay": 0, + "time": 1694889307 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35261" + }, + { + "stop_sequence": 3, + "arrival": { + "delay": 0, + "time": 1694889353 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "13025566" + }, + { + "stop_sequence": 4, + "arrival": { + "delay": 0, + "time": 1694889384 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35262" + }, + { + "stop_sequence": 5, + "arrival": { + "delay": 0, + "time": 1694889407 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35263" + }, + { + "stop_sequence": 6, + "arrival": { + "delay": 0, + "time": 1694889442 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "13025567" + }, + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694889563 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35265" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694889612 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35266" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889627 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50006" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889642 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35267" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889645 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50005" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889754 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16263780" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889814 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16263781" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889897 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16263782" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889944 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16263783" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889999 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16263784" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694890064 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16258263" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694890112 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16258262" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694890129 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16258261" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694890162 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16258260" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694890225 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15360397" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694890271 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15360410" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694890334 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35268" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890366 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35269" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890412 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35270" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890587 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35271" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890912 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35272" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694891091 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35273" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694891139 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35274" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694891252 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35785" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694891527 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35786" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694891606 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35787" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694891682 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35788" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694891806 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35789" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694891862 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35790" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694891968 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35791" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694892031 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35792" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694892108 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35793" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694892269 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91116" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694893018 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39545" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694893324 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39546" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694893594 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35286" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694893650 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35287" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694893796 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42317" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694893961 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42319" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694894130 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42320" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694894243 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38514" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694894379 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34586" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694894452 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34587" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694894515 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34588" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694894646 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39497" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694894731 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49407" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694894890 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50034" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694895002 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40903" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694895102 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40904" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694895236 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35814" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694895474 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35815" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694895560 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35816" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694895602 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35817" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694895718 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35818" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694895854 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35819" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694896580 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35822" + } + ] + } + }, + { + "id": "e448e01f-907e-45c2-b402-828e8257ab33", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "18888-701ff27f-2", + "start_date": "20230916", + "route_id": "580" + }, + "stop_time_update": [ + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889054 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35791" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889104 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35792" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889163 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35793" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889282 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91116" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889754 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39545" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889918 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39546" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890052 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35286" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890078 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35287" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890146 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42317" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890219 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42319" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890291 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42320" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890337 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38514" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890392 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34586" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890421 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34587" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890445 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34588" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890492 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39497" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890526 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49407" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890583 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50034" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890623 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40903" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890657 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40904" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890702 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35814" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890780 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35815" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890807 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35816" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890820 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35817" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890856 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35818" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890896 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35819" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891099 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35822" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891144 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35823" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891214 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35723" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891265 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35722" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891360 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35826" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891435 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35548" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891538 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35547" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891618 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35546" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891699 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35553" + } + ] + } + }, + { + "id": "beaf9df0-5a46-4e9f-bbc1-79ca258b235f", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "19178-701ff27f-2", + "start_date": "20230916", + "route_id": "582" + }, + "stop_time_update": [ + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889271 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35841" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889309 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35842" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889358 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35843" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889389 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35844" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889453 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91128" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889493 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35846" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889556 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35848" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889648 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35849" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889679 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35850" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889702 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35851" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889722 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35852" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889748 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35853" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889783 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35854" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889814 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35618" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889859 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35855" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889936 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35856" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890004 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35668" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890037 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35858" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890082 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35859" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890103 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35665" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890133 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35861" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890391 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35756" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890507 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35757" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890553 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35758" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890562 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35759" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890605 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35760" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890667 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35762" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890752 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35764" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890767 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35518" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890816 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35766" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890878 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35767" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890941 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35398" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890999 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91055" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694891071 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91056" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694891136 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91057" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694891170 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91058" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694891232 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91059" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694891283 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91060" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694891304 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35769" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694891332 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91061" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694891452 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91062" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694891514 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91037" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694891552 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35483" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694891586 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35484" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694891663 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7175655" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694891704 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35639" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694891841 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35779" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694891853 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91084" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694891891 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35780" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694891932 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91085" + } + ] + } + }, + { + "id": "cb631e0c-b51f-4dae-9a6f-4d2eaac45851", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "19124-701ff27f-2", + "start_date": "20230916", + "route_id": "582" + }, + "stop_time_update": [ + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694888991 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Jan" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889022 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42460" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889062 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35690" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889168 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35700" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694889264 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35703" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694889288 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35704" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694889298 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35705" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694889321 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35706" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694889376 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35707" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694889401 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35708" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694889419 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35709" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694889496 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38507" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694889546 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34473" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694889589 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38500" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694889626 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35808" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694889690 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35710" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694889734 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50036" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694889830 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35712" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694889922 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35713" + } + ] + } + }, + { + "id": "a2cd3a54-e1f8-4d41-908f-55e0167267f6", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "19176-701ff27f-2", + "start_date": "20230916", + "route_id": "582" + }, + "stop_time_update": [ + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694888907 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35483" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694888936 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35484" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694889001 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7175655" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694889035 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35639" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694889146 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35779" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694889155 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91084" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694889184 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35780" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694889216 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91085" + } + ] + } + }, + { + "id": "b936d236-bf72-48f8-91bd-9640718c51b2", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "19179-701ff27f-2", + "start_date": "20230916", + "route_id": "582" + }, + "stop_time_update": [ + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694888919 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35745" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694888947 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15879953" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694888970 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35746" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694888997 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39634" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889024 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39635" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889072 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39636" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889127 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49503" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889256 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889307 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889338 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889404 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49319" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889467 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890299 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35841" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890336 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35842" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890385 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35843" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890416 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35844" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890480 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91128" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890521 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35846" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890587 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35848" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890683 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35849" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890716 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35850" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890740 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35851" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890762 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35852" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890790 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35853" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890828 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35854" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890862 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35618" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890911 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35855" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890997 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35856" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891074 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35668" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891110 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35858" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891163 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35859" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891187 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35665" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891222 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35861" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891531 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35756" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891674 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35757" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891732 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35758" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891743 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35759" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891798 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35760" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891878 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35762" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891988 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35764" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694892007 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35518" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694892073 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35766" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694892154 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35767" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694892239 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35398" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694892318 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91055" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694892418 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91056" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694892508 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91057" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694892556 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91058" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694892644 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91059" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694892717 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91060" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694892747 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35769" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694892788 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91061" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694892963 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91062" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694893055 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91037" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694893112 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35483" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694893163 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35484" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694893280 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7175655" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694893343 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35639" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694893558 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35779" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694893576 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91084" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694893636 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35780" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694893703 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91085" + } + ] + } + }, + { + "id": "4d3288c0-a4e7-4c73-92cc-aa39ab5179b1", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "19125-701ff27f-2", + "start_date": "20230916", + "route_id": "582" + }, + "stop_time_update": [ + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694888967 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35763" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889034 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35761" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889120 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35523" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889192 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35524" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889295 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35525" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889537 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35418" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889587 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91051" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889623 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35666" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889667 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35667" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889688 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35668" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889743 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35669" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889805 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35670" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889843 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35671" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889877 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91050" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889919 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35672" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889959 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35673" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889985 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35674" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890005 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35675" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890022 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35676" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890054 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35677" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890134 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35678" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890185 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91137" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890220 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91138" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890261 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35845" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890310 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35684" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890350 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35685" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890393 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35686" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890448 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35687" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890513 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91052" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890554 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91053" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890618 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91054" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891343 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35688" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891474 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35691" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891593 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35693" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891660 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35694" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891710 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35695" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694891769 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35696" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694891993 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35697" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694892125 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Jan" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694892166 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42460" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694892221 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35690" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694892368 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35700" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694892511 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35703" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694892547 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35704" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694892564 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35705" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694892599 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35706" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694892687 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35707" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694892728 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35708" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694892758 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35709" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694892887 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38507" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694892974 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34473" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694893052 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38500" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694893119 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35808" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694893241 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35710" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694893327 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50036" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694893521 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35712" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694893717 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35713" + } + ] + } + }, + { + "id": "d68deee7-5682-4b93-b748-68e017d4d629", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "19479-701ff27f-2", + "start_date": "20230916", + "route_id": "585" + }, + "stop_time_update": [ + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889152 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35786" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889219 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35787" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889284 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35788" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889384 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35789" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889428 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35790" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889509 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35791" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889555 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35792" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889611 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35793" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889724 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91116" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890179 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35794" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890271 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35796" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890319 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35797" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890359 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35798" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890397 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35799" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890466 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35800" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890515 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35801" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890541 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35802" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890589 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35803" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890645 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38507" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890696 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34473" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890742 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38500" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890789 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35808" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890878 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35814" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890959 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35815" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890987 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35816" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891001 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35817" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891038 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35818" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891080 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35819" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891291 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35822" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891337 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35823" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891412 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35723" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891465 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35722" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891565 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35826" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891636 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35827" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891664 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35828" + } + ] + } + }, + { + "id": "9a19e68b-1c18-47b4-9cc5-65f49f0ebb0d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "19475-701ff27f-2", + "start_date": "20230916", + "route_id": "585" + }, + "stop_time_update": [ + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889099 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35794" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889196 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35796" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889246 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35797" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889288 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35798" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889326 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35799" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889396 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35800" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889445 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35801" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889471 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35802" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889518 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35803" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889573 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38507" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889622 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34473" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889665 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38500" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889710 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35808" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889793 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35814" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889868 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35815" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889893 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35816" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889905 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35817" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889939 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35818" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889976 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35819" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890161 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35822" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890201 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35823" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890263 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35723" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890308 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35722" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890390 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35826" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890448 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35827" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890471 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35828" + } + ] + } + }, + { + "id": "c68195d6-c367-417d-9dbe-f93b0c466e71", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "19396-701ff27f-2", + "start_date": "20230916", + "route_id": "585" + }, + "stop_time_update": [ + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694888880 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35745" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694888908 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15879953" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694888988 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35746" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889580 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35748" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889641 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35749" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889686 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35750" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889761 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35751" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889871 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35752" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890006 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35417" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890076 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35755" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890290 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35756" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890404 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35757" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890450 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35758" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890458 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35759" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890506 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35760" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890571 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35762" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890655 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35764" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890661 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35518" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890714 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35766" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890774 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35767" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890833 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35398" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890890 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91055" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890961 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91056" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891025 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91057" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891058 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91058" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891119 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91059" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891169 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91060" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694891196 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35769" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694891225 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91061" + } + ] + } + }, + { + "id": "fe594a80-18f9-4d2b-9df7-00f1ff3b80ab", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "19400-701ff27f-2", + "start_date": "20230916", + "route_id": "585" + }, + "stop_time_update": [ + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694888923 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35726" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694888997 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35727" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889074 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35820" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889110 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35729" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889143 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35730" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889175 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35731" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889241 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35201" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889331 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35202" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889360 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35203" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889426 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Feb" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889471 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Mar" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889482 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8276831" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889518 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Apr" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889566 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-May" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889606 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Jun" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889668 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Jul" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889694 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Aug" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889741 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Sep" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889792 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Oct" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889841 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Nov" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889894 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35745" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889919 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15879953" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889993 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35746" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890573 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35748" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890636 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35749" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890683 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35750" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890763 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35751" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890882 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35752" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891032 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35417" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891111 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35755" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891359 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35756" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891496 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35757" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891551 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35758" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891561 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35759" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891619 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35760" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891700 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35762" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891804 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35764" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891812 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35518" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891879 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35766" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891956 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35767" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694892032 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35398" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694892106 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91055" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694892200 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91056" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694892285 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91057" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694892330 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91058" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694892412 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91059" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694892480 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91060" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694892517 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35769" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694892556 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91061" + } + ] + } + }, + { + "id": "5eedf066-4a44-4c77-ba9f-4d182b9077e9", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "19478-701ff27f-2", + "start_date": "20230916", + "route_id": "585" + }, + "stop_time_update": [ + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889015 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35803" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889074 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38507" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889127 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34473" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889173 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38500" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889221 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35808" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889308 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35814" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889386 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35815" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889413 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35816" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889425 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35817" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889460 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35818" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889498 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35819" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889685 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35822" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889725 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35823" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889788 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35723" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889832 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35722" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889913 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35826" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889970 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35827" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889992 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35828" + } + ] + } + }, + { + "id": "7d2c80d3-f24f-4cda-bbb6-20eb760ea518", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "19388-701ff27f-2", + "start_date": "20230916", + "route_id": "585" + }, + "stop_time_update": [ + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694888265 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91059" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694888313 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91060" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694888338 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35769" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694888364 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91061" + } + ] + } + }, + { + "id": "9fdfc35f-f5ee-4f99-badc-b8025bbb39de", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "19397-701ff27f-2", + "start_date": "20230916", + "route_id": "585" + }, + "stop_time_update": [ + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694888966 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35766" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889028 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35767" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889086 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35398" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889142 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91055" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889211 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91056" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889270 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91057" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889301 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91058" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889356 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91059" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694889401 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91060" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889425 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35769" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889450 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91061" + } + ] + } + }, + { + "id": "b98d234e-ac0c-4487-984b-49dcb8469a8a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "19476-701ff27f-2", + "start_date": "20230916", + "route_id": "585" + }, + "stop_time_update": [ + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694888964 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35823" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889032 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35723" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889080 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35722" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889166 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35826" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889226 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35827" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889250 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35828" + } + ] + } + }, + { + "id": "70b3d1f8-ff61-4e52-948a-b87ae223ee3a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "19394-701ff27f-2", + "start_date": "20230916", + "route_id": "585" + }, + "stop_time_update": [ + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694888958 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35756" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889080 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35757" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889128 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35758" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889136 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35759" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889185 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35760" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889251 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35762" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889334 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35764" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889340 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35518" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889392 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35766" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889450 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35767" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889505 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35398" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889558 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91055" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889623 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91056" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889680 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91057" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889710 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91058" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889763 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91059" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694889807 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91060" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889830 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35769" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889854 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91061" + } + ] + } + }, + { + "id": "177ba214-2aeb-4e75-b7eb-92110155b660", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "19399-701ff27f-2", + "start_date": "20230916", + "route_id": "585" + }, + "stop_time_update": [ + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694888924 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Oct" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694888977 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Nov" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889035 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35745" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889063 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15879953" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889142 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35746" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889728 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35748" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889789 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35749" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889833 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35750" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889908 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35751" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890019 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35752" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890154 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35417" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890224 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35755" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890439 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35756" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890555 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35757" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890601 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35758" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890609 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35759" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890657 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35760" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890723 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35762" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890808 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35764" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890814 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35518" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890867 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35766" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890929 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35767" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890989 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35398" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891047 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91055" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891119 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91056" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891184 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91057" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891218 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91058" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891280 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91059" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891331 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91060" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694891358 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35769" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694891387 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91061" + } + ] + } + }, + { + "id": "5f430ac2-382b-41c4-bed8-9e4594e48440", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "43e09d32-1902-451c-99d5-8401ad45a8c1", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "8091a49d-e18f-47b7-819d-0bd3d870e3a9", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "19401-701ff27f-2", + "start_date": "20230916", + "route_id": "585" + }, + "stop_time_update": [ + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694888928 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35724" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889000 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35726" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889073 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35727" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889149 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35820" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889185 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35729" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889218 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35730" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889250 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35731" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889315 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35201" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889404 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35202" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889433 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35203" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889499 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Feb" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889544 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Mar" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889555 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8276831" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889591 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Apr" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889639 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-May" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889678 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Jun" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889740 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Jul" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889766 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Aug" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889813 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Sep" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889864 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Oct" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889913 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Nov" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889966 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35745" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889991 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15879953" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890065 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35746" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890647 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35748" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890710 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35749" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890758 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35750" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890839 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35751" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890959 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35752" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891111 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35417" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891191 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35755" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891442 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35756" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891581 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35757" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891637 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35758" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891647 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35759" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891706 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35760" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891788 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35762" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891894 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35764" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891902 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35518" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891970 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35766" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694892049 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35767" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694892126 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35398" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694892202 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91055" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694892298 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91056" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694892384 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91057" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694892430 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91058" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694892514 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91059" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694892585 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91060" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694892622 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35769" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694892662 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91061" + } + ] + } + }, + { + "id": "bdf79ae6-f542-4cc0-9f3b-999df29a42f6", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "19480-701ff27f-2", + "start_date": "20230916", + "route_id": "585" + }, + "stop_time_update": [ + { + "stop_sequence": 1, + "arrival": { + "delay": 0, + "time": 1694888981 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35810" + }, + { + "stop_sequence": 2, + "arrival": { + "delay": 0, + "time": 1694889022 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35813" + }, + { + "stop_sequence": 3, + "arrival": { + "delay": 0, + "time": 1694889084 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91048" + }, + { + "stop_sequence": 4, + "arrival": { + "delay": 0, + "time": 1694889133 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35650" + }, + { + "stop_sequence": 5, + "arrival": { + "delay": 0, + "time": 1694889213 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91049" + }, + { + "stop_sequence": 6, + "arrival": { + "delay": 0, + "time": 1694889293 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91043" + }, + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694889307 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35508" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694889346 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35514" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889396 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35515" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889448 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35516" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889481 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35517" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889558 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35763" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889620 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35761" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889657 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35522" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889700 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35523" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889768 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35524" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889865 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35525" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694890124 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35786" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694890188 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35787" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694890249 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35788" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694890347 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35789" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694890390 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35790" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694890471 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35791" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890518 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35792" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890575 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35793" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890692 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91116" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694891190 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35794" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694891296 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35796" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694891351 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35797" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694891399 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35798" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694891444 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35799" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694891526 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35800" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694891586 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35801" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694891617 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35802" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694891676 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35803" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694891745 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38507" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694891809 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34473" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694891866 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38500" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891926 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35808" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694892040 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35814" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694892146 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35815" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694892183 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35816" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694892201 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35817" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694892250 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35818" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694892306 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35819" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694892593 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35822" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694892658 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35823" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694892762 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35723" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694892837 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35722" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694892980 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35826" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694893083 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35827" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694893125 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35828" + } + ] + } + }, + { + "id": "c9e111ac-34d8-4128-a635-c7cbeed09c38", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "19553-701ff27f-2", + "start_date": "20230916", + "route_id": "586" + }, + "stop_time_update": [ + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694888950 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35793" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889072 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91116" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889546 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35794" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889637 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35796" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889676 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35797" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889725 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35798" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889763 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35799" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889830 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35800" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889878 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35801" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889903 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35802" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889948 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35803" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890002 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38507" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890052 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34473" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890094 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38500" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890131 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35808" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890195 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35710" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890229 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50036" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890337 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35712" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890430 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35713" + } + ] + } + }, + { + "id": "cd5c311d-6826-4099-9fae-3d5c45b712b1", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "19625-701ff27f-2", + "start_date": "20230916", + "route_id": "586" + }, + "stop_time_update": [ + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889033 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91058" + } + ] + } + }, + { + "id": "aa091111-434a-45cf-a167-5fbda4505a62", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "25215522-6f4f-47fb-b657-5c9582306d62", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "19554-701ff27f-2", + "start_date": "20230916", + "route_id": "586" + }, + "stop_time_update": [ + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694888988 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34473" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889035 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38500" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889075 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35808" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889144 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35710" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889181 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50036" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889294 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35712" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889388 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35713" + } + ] + } + }, + { + "id": "77c6650d-e90b-468d-ac5a-860a74d6ac74", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "19556-701ff27f-2", + "start_date": "20230916", + "route_id": "586" + }, + "stop_time_update": [ + { + "stop_sequence": 4, + "arrival": { + "delay": 0, + "time": 1694888989 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35876" + }, + { + "stop_sequence": 5, + "arrival": { + "delay": 0, + "time": 1694889079 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35874" + }, + { + "stop_sequence": 6, + "arrival": { + "delay": 0, + "time": 1694889121 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35873" + }, + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694889159 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35872" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694889194 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35871" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889241 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35484" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889304 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7175655" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889322 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35776" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889368 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35777" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889396 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35778" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889461 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35640" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889486 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35781" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889516 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35782" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889563 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91038" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889672 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35783" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889705 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "31013" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889826 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35785" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694890057 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35786" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694890122 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35787" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694890184 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35788" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890281 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35789" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890324 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35790" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890404 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35791" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890450 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35792" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890507 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35793" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890623 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91116" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694891115 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35794" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694891219 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35796" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694891264 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35797" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694891320 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35798" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694891365 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35799" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694891446 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35800" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694891504 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35801" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694891535 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35802" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694891591 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35803" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891660 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38507" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891723 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34473" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891778 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38500" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891826 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35808" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891912 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35710" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891958 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50036" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694892107 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35712" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694892238 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35713" + } + ] + } + }, + { + "id": "4bc54ac0-cd1f-4c0f-bc05-6d29dd749a8f", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "19552-701ff27f-2", + "start_date": "20230916", + "route_id": "586" + }, + "stop_time_update": [ + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694888960 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35782" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889011 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91038" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889127 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35783" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889162 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "31013" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889289 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35785" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889527 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35786" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889594 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35787" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889656 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35788" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889753 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35789" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889795 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35790" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889874 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35791" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889919 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35792" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889975 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35793" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890087 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91116" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890548 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35794" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890643 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35796" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890683 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35797" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890735 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35798" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890775 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35799" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890847 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35800" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890899 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35801" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890926 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35802" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890975 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35803" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891036 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38507" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891091 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34473" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891139 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38500" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891181 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35808" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891255 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35710" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891295 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50036" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891422 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35712" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891532 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35713" + } + ] + } + }, + { + "id": "ed563e8e-50d9-4ebe-87e9-e3d78da33a35", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "19627-701ff27f-2", + "start_date": "20230916", + "route_id": "586" + }, + "stop_time_update": [ + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694888914 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35745" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694888942 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15879953" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694888965 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35746" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889562 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35748" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889623 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35749" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889668 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35750" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889744 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35751" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889854 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35752" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889989 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35417" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890059 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35755" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890266 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35864" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890383 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91039" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890524 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35866" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890563 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91040" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890603 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35867" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890634 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91066" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890684 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35644" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890730 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35868" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890755 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35869" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890782 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35870" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890818 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91045" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890846 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91089" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890876 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35645" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890927 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91090" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890981 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91091" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891019 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91092" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891059 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35875" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891234 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91058" + } + ] + } + }, + { + "id": "eafca7c4-5119-42a4-83d8-4a0fe73a56a1", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "19628-701ff27f-2", + "start_date": "20230916", + "route_id": "586" + }, + "stop_time_update": [ + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694888894 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Nov" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694888953 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35745" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694888980 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15879953" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889003 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35746" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889596 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35748" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889656 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35749" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889701 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35750" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889776 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35751" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889887 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35752" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694890022 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35417" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890092 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35755" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890299 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35864" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890418 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91039" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890560 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35866" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890599 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91040" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890639 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35867" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890670 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91066" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890720 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35644" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890768 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35868" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890793 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35869" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890819 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35870" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890856 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91045" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890885 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91089" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890915 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35645" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890967 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91090" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891021 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91091" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891060 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91092" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891100 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35875" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891277 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91058" + } + ] + } + }, + { + "id": "a0ec8b87-bead-42d7-93bd-d5839d6e2698", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "a1ff5980-5ff4-429c-a120-2526f037f89e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "19630-701ff27f-2", + "start_date": "20230916", + "route_id": "586" + }, + "stop_time_update": [ + { + "stop_sequence": 6, + "arrival": { + "delay": 0, + "time": 1694888898 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8276831" + }, + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694888928 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Apr" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694888980 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-May" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889023 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Jun" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889083 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Jul" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889117 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Aug" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889157 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Sep" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889220 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Oct" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889271 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Nov" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889326 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35745" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889352 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15879953" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889374 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35746" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889949 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35748" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694890009 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35749" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694890053 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35750" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694890129 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35751" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694890240 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35752" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694890377 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35417" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890449 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35755" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890663 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35864" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890787 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91039" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890937 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35866" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890979 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91040" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694891021 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35867" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694891054 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91066" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694891108 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35644" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694891158 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35868" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694891185 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35869" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694891214 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35870" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694891253 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91045" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694891284 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91089" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694891317 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35645" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694891373 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91090" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891432 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91091" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891474 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91092" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891518 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35875" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891713 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91058" + } + ] + } + }, + { + "id": "59f24102-217d-43ca-a1d6-f1a7d3e4fdfd", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "19555-701ff27f-2", + "start_date": "20230916", + "route_id": "586" + }, + "stop_time_update": [ + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694888921 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35786" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694888993 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35787" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889059 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35788" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889163 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35789" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889208 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35790" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889290 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35791" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889337 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35792" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889395 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35793" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889509 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91116" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889966 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35794" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890057 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35796" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890096 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35797" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890144 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35798" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890182 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35799" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890250 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35800" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890299 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35801" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890324 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35802" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890370 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35803" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890425 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38507" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890476 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34473" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890520 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38500" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890558 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35808" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890624 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35710" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890660 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50036" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890773 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35712" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890871 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35713" + } + ] + } + }, + { + "id": "8f5183a0-a2ba-45a2-b66b-c166ac75eff4", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "19626-701ff27f-2", + "start_date": "20230916", + "route_id": "586" + }, + "stop_time_update": [ + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694888996 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91039" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889145 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35866" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889185 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91040" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889226 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35867" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889256 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91066" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889306 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35644" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889352 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35868" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889376 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35869" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889402 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35870" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889436 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91045" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889463 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91089" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889492 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35645" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889539 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91090" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889589 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91091" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889623 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91092" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889659 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35875" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889812 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91058" + } + ] + } + }, + { + "id": "a42728e7-5283-452c-a193-9bf516b8a0a8", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "19301-701ff27f-2", + "start_date": "20230916", + "route_id": "587" + }, + "stop_time_update": [ + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694888578 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35645" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694888631 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35646" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694888668 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35647" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694888699 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35648" + } + ] + } + }, + { + "id": "52d2c045-6fee-49cd-a14c-9d59b4b41b49", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "19302-701ff27f-2", + "start_date": "20230916", + "route_id": "587" + }, + "stop_time_update": [ + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694888770 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35648" + } + ] + } + }, + { + "id": "ded46826-2669-46d9-8e3c-46ad99999eef", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "19303-701ff27f-2", + "start_date": "20230916", + "route_id": "587" + }, + "stop_time_update": [ + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694888936 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40272" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889077 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39545" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889514 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39541" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889544 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39542" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889579 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39543" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889764 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35749" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889809 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35750" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889884 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35751" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889994 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35752" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890129 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35417" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890200 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35755" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890409 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35864" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890507 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35865" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890555 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35233" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890710 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35234" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694891062 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35235" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694891204 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35236" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694891424 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91096" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694891624 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91097" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694891802 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91098" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694891888 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91099" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891931 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91100" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891995 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91101" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694892045 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91102" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694892119 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91103" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694892243 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91104" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694892375 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91105" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694892871 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91106" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694892956 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91107" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694893036 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91108" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694893144 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91109" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694894042 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91110" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694894262 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91111" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694894426 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91112" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694894596 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35645" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694894734 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35646" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694894831 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35647" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694894918 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35648" + } + ] + } + }, + { + "id": "5cccf38a-2d11-4475-becc-28ce4afb3acd", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "19342-701ff27f-2", + "start_date": "20230916", + "route_id": "587" + }, + "stop_time_update": [ + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889041 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35796" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889093 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35797" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889136 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35798" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889176 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35799" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889248 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35800" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889298 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35801" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889324 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35802" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889370 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35803" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889427 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38507" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889478 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34473" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889521 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38500" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889558 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35808" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889624 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35710" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889668 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50036" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889762 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35712" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889856 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35713" + } + ] + } + }, + { + "id": "15c1d274-eb5a-4c3f-a910-504a076427b2", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "19343-701ff27f-2", + "start_date": "20230916", + "route_id": "587" + }, + "stop_time_update": [ + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694888972 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91003" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889157 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91004" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889237 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91005" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889285 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91156" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889327 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91006" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889369 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91157" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889561 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50005" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889646 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35259" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889777 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35268" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889809 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35269" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889855 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35270" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694890025 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35271" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694890334 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35272" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694890507 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35273" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694890545 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35274" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890644 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35785" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890896 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35786" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890966 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35787" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694891034 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35788" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694891143 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35789" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694891192 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35790" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694891284 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35791" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694891337 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35792" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694891403 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35793" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694891484 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39973" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694891622 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39974" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694891668 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39975" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694892401 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35225" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694892528 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16039072" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694892559 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35794" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694892709 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35796" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694892790 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35797" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694892859 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35798" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694892926 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35799" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694893048 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35800" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694893137 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35801" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694893184 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35802" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694893271 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35803" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694893380 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38507" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694893480 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34473" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694893570 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38500" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694893648 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35808" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694893789 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35710" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694893888 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50036" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694894109 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35712" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694894346 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35713" + } + ] + } + }, + { + "id": "fd8c0ad2-0497-4c4f-b3e4-8edbbcd513ea", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "19742-701ff27f-2", + "start_date": "20230916", + "route_id": "588" + }, + "stop_time_update": [ + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694888962 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44635" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889023 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "5020123" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889082 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "5020122" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889158 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44642" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889203 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44643" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889243 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44644" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889337 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91116" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889800 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35794" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889890 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35796" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889938 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35797" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889977 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35798" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890015 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35799" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890082 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35800" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890130 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35801" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890155 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35802" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890202 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35803" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890256 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38507" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890305 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34473" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890348 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38500" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890394 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35808" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890478 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35814" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890546 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35815" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890580 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35816" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890592 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35817" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890627 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35818" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890666 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35819" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890730 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49417" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890808 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49421" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890837 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49422" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890920 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49539" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890978 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44677" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890991 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44671" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891089 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44674" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891115 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44675" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891137 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44776" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891162 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44676" + } + ] + } + }, + { + "id": "c7652364-df72-43a0-98a8-a0c044f6c096", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "19852-701ff27f-2", + "start_date": "20230916", + "route_id": "588" + }, + "stop_time_update": [ + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694888755 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35666" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694888799 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35667" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694888882 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35669" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889004 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35854" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889045 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35430" + } + ] + } + }, + { + "id": "9a00609b-636c-47d9-8226-fb7611cc0419", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "19853-701ff27f-2", + "start_date": "20230916", + "route_id": "588" + }, + "stop_time_update": [ + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694888921 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35418" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694888941 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35664" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694888977 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91051" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889012 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35666" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889055 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35667" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889136 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35669" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889257 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35854" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889298 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35430" + } + ] + } + }, + { + "id": "9a42a77e-ba42-4810-86d7-f2468e089d05", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "19854-701ff27f-2", + "start_date": "20230916", + "route_id": "588" + }, + "stop_time_update": [ + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694888978 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35223" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889019 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39547" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889107 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35224" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889292 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35225" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889876 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35409" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889911 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35411" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889944 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35412" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890050 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44716" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890087 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44717" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890157 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44718" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890185 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90010" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890333 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44722" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890368 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44723" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890417 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44724" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890452 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44725" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890487 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44726" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890562 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44727" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890597 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35417" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890658 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35418" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890676 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35664" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890712 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91051" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890745 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35666" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890788 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35667" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890870 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35669" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890995 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35854" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891038 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35430" + } + ] + } + }, + { + "id": "341f5276-49ff-4190-972e-9764e23c2439", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "19743-701ff27f-2", + "start_date": "20230916", + "route_id": "588" + }, + "stop_time_update": [ + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694888971 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35858" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889021 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35859" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889044 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35665" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889077 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35861" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889169 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91119" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889184 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44629" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889257 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91007" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889277 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44630" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889309 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44631" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889385 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44633" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889455 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44635" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889511 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "5020123" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889567 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "5020122" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889639 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44642" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889681 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44643" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889719 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44644" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889809 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91116" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890264 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35794" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890356 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35796" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890404 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35797" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890444 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35798" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890483 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35799" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890552 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35800" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890602 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35801" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890628 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35802" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890676 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35803" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890733 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38507" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890785 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34473" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890830 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38500" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890878 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35808" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890968 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35814" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891041 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35815" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891077 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35816" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891091 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35817" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891128 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35818" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891171 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35819" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891240 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49417" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891325 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49421" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891358 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49422" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891449 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49539" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891513 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44677" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891528 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44671" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891637 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44674" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891666 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44675" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891691 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44776" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891719 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44676" + } + ] + } + }, + { + "id": "a2acb4f3-a9ae-4c16-b8c3-5360758a5cf6", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "19856-701ff27f-2", + "start_date": "20230916", + "route_id": "588" + }, + "stop_time_update": [ + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694888976 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Mar" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889011 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37465" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889115 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889139 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39600" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889208 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37496" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889258 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45064" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889333 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889429 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37520" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889536 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37470" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889560 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889589 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91118" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889650 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35223" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889688 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39547" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889769 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35224" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889944 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35225" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890525 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35409" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890562 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35411" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890596 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35412" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890707 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44716" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890746 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44717" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890821 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44718" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890851 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90010" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891011 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44722" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891049 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44723" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891103 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44724" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891142 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44725" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891180 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44726" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891264 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44727" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891303 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35417" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891372 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35418" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891394 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35664" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891434 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91051" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891472 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35666" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891521 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35667" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891615 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35669" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891762 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35854" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891813 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35430" + } + ] + } + }, + { + "id": "fd64ecfe-42b1-4211-826d-6836193f077c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "20093-701ff27f-2", + "start_date": "20230916", + "route_id": "589" + }, + "stop_time_update": [ + { + "stop_sequence": 4, + "arrival": { + "delay": 0, + "time": 1694888955 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49433" + }, + { + "stop_sequence": 5, + "arrival": { + "delay": 0, + "time": 1694888977 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49434" + }, + { + "stop_sequence": 6, + "arrival": { + "delay": 0, + "time": 1694889019 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49419" + }, + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694889047 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49418" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694889067 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49417" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889096 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35820" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889125 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35729" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889150 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35730" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889182 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35731" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889248 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35201" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889339 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35202" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889369 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35203" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889435 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Feb" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889480 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Mar" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889500 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8276831" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889527 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Apr" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889576 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-May" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889615 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Jun" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889672 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Jul" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889704 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Aug" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889751 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Sep" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889802 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Oct" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889851 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Nov" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889904 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35745" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889929 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15879953" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889950 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35746" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890551 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35409" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890592 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35411" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890631 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35412" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890789 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "5020101" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890853 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44722" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890896 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44723" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890942 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44724" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890988 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44725" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694891024 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44726" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891106 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44727" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891211 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35418" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891231 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35664" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891270 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91051" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891307 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35666" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891354 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35667" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891389 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35668" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891419 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35849" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891456 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35850" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891484 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35851" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891509 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35852" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891540 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35853" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891584 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35854" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891626 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35430" + } + ] + } + }, + { + "id": "64d10247-3d6b-4508-bdcb-302e7742d8a4", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "20091-701ff27f-2", + "start_date": "20230916", + "route_id": "589" + }, + "stop_time_update": [ + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694888942 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44723" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694888989 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44724" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889034 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44725" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889070 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44726" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889147 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44727" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889244 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35418" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889263 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35664" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889298 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91051" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889330 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35666" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889372 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35667" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889402 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35668" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889427 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35849" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889459 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35850" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889482 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35851" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889503 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35852" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889529 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35853" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889564 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35854" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889599 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35430" + } + ] + } + }, + { + "id": "a13b292e-d3e6-4987-a38d-8adf7ab5e217", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "20092-701ff27f-2", + "start_date": "20230916", + "route_id": "589" + }, + "stop_time_update": [ + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694888918 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35745" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694888946 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15879953" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694888969 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35746" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889592 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35409" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889631 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35411" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889669 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35412" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889820 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "5020101" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889879 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44722" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889919 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44723" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889961 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44724" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890002 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44725" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890035 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44726" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890108 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44727" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890201 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35418" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890218 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35664" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890252 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91051" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890284 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35666" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890325 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35667" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890354 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35668" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890380 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35849" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890411 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35850" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890435 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35851" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890455 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35852" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890482 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35853" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890518 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35854" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890553 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35430" + } + ] + } + }, + { + "id": "e6d245f6-5f50-4934-9aea-75416241f494", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "19978-701ff27f-2", + "start_date": "20230916", + "route_id": "589" + }, + "stop_time_update": [ + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694888970 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35287" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889044 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42317" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889123 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42319" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889200 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42320" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889248 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38514" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889295 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34586" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889334 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34587" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889359 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34588" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889407 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39497" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889441 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49407" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889492 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50034" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889536 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40903" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889570 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40904" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889614 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35814" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889685 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35815" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889713 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35816" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889718 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35817" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889759 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35818" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889796 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35819" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889857 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49417" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889890 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49420" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889930 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49421" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889958 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49422" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890003 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49423" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890034 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49539" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890087 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44677" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890099 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44671" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694890187 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44674" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694890210 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44675" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694890230 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44776" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694890255 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44676" + } + ] + } + }, + { + "id": "ff209772-ad9a-4385-9130-dbee9537ee46", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "19981-701ff27f-2", + "start_date": "20230916", + "route_id": "589" + }, + "stop_time_update": [ + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889015 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91119" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889030 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44629" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889104 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91007" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889125 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44630" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889157 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44631" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889235 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44633" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889307 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44635" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889335 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44721" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889373 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44720" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889459 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44639" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889532 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44640" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889586 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44641" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889659 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44642" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889704 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44643" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889778 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91158" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889846 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39973" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889953 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39974" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889990 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39975" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890407 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39546" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890544 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35286" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890572 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35287" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890642 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42317" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890718 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42319" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890795 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42320" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890844 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38514" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890893 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34586" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890934 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34587" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890960 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34588" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891011 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39497" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891047 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49407" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891104 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50034" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891153 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40903" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891191 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40904" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891240 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35814" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891323 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35815" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891356 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35816" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891362 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35817" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891411 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35818" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891456 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35819" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891531 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49417" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891571 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49420" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891622 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49421" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891657 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49422" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891716 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49423" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694891755 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49539" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694891825 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44677" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694891841 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44671" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694891960 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44674" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694891992 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44675" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694892019 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44776" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694892053 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44676" + } + ] + } + }, + { + "id": "c34eb701-5649-44c8-abd5-cae7a9a7d395", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "20258-701ff27f-2", + "start_date": "20230916", + "route_id": "590" + }, + "stop_time_update": [ + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889046 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-May" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889086 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Jun" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889140 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Aug" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889186 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50024" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889320 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-12" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889402 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37471" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889435 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37560" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889459 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37564" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889508 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37517" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889525 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37475" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889562 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37508" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889596 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37476" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889621 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37526" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889688 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37567" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889710 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "13-Jan" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889761 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "13-Feb" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889786 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "28-Jan" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889831 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "12-3" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889905 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "12-Jan" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889948 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "12-Feb" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889996 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Jan" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890048 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Mar" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890179 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Jun" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890248 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Aug" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890314 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jan" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890384 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Mar" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890490 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-May" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890647 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jul" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890710 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Sep" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890800 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Nov" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890910 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Dec" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891005 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-14" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891167 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-17" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891260 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-19" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891321 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-20" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891391 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-22" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891465 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-24" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891569 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-25" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891924 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90003" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694891984 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90007" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694892051 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90008" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694892201 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694892308 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45011" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694892453 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39623" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694892526 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39624" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694892627 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90000" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694892706 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39628" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694892830 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39631" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694892908 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694893003 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39634" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694893047 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39635" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694893128 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39636" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694893224 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49503" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694893462 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694893558 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694893623 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694893759 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49319" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694893895 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694894460 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49323" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694894547 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49324" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694894648 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49325" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694894817 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49326" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694894903 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37425" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694895009 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37426" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694895109 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37427" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694895279 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8606049" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694895443 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37428" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694895546 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37429" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694895683 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37430" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694895792 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37431" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694895895 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37432" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694896263 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37433" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694896613 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37434" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694896692 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37435" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694896926 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37436" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694897227 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37437" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694897478 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49337" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694897615 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39661" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694897867 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39662" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694898168 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39663" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694898398 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49341" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694898671 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49342" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694899266 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49343" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694900663 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49344" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694902077 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49345" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694903978 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49346" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694904752 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49347" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694908612 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49348" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694913185 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42250" + } + ] + } + }, + { + "id": "bc458934-4d0b-4289-ac9a-e8004ac82f18", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "20254-701ff27f-2", + "start_date": "20230916", + "route_id": "590" + }, + "stop_time_update": [ + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694889067 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37433" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694889160 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37434" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694889180 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37435" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694889237 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37436" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694889306 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37437" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694889359 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49337" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694889387 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39661" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694889436 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39662" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694889492 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39663" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694889532 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49341" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694889578 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49342" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694889669 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49343" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694889849 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49344" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694889995 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49345" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694890152 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49346" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694890206 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49347" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694890417 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49348" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694890586 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42250" + } + ] + } + }, + { + "id": "8e4414d3-3c81-44ee-8fb3-2fd75a252760", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "20183-701ff27f-2", + "start_date": "20230916", + "route_id": "590" + }, + "stop_time_update": [ + { + "stop_sequence": 4, + "arrival": { + "delay": 0, + "time": 1694889033 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42254" + }, + { + "stop_sequence": 5, + "arrival": { + "delay": 0, + "time": 1694889065 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42255" + }, + { + "stop_sequence": 6, + "arrival": { + "delay": 0, + "time": 1694889101 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42256" + }, + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694889121 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42257" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694889144 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42258" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889170 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42259" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889224 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42260" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889263 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42261" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889294 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45094" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889351 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42263" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889396 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45092" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889426 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45091" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889462 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45090" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889472 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42266" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889527 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45089" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889566 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45088" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889596 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42269" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889631 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38611" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889639 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44792" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889695 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44790" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889728 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38609" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889765 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44791" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889825 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44800" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889859 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44799" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889908 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44801" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889931 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44802" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890000 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44803" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890015 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38602" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890271 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38688" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890319 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38673" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890394 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39785" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890432 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38664" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890485 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38702" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890529 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39787" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890571 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38501" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890638 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38692" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890708 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38714" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890753 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39791" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890784 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38506" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890835 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38635" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890870 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38509" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890915 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38642" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890961 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39795" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890989 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38502" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891060 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38503" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891232 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35691" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891348 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35693" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891414 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35694" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891451 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35695" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891517 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35696" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891710 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35697" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891863 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39778" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891999 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35797" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694892054 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35798" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694892106 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35799" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694892201 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35800" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694892271 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35801" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694892307 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35802" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694892376 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35803" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694892458 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38507" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694892534 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34473" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694892602 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38500" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694892673 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35808" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694892766 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35710" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694892840 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50036" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694893240 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50037" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694893514 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50038" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694893666 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50039" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694893793 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50040" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694893985 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50041" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694894318 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-15" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694894548 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-13" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694895084 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Oct" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694895255 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Aug" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694895769 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jun" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694896190 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Feb" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694896769 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Jul" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694897057 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-May" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694897196 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1508142" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694897720 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Feb" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694898059 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8-Jan" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694898233 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "9-Jan" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694898467 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Apr" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694898821 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Jan" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694899091 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44863" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694899303 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Mar" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694899693 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "11-Jan" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694900077 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44866" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694900385 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44867" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694900602 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44868" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694900831 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44869" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694901118 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44870" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694901429 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44871" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694901817 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44872" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694902481 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50020" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694903487 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-11" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694903953 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91162" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694905130 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50023" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694906800 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Jul" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694907503 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Apr" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694908461 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37474" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694909557 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44879" + } + ] + } + }, + { + "id": "0d6efc3b-9e7f-491e-8b26-2e51bd85c6f7", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "20182-701ff27f-2", + "start_date": "20230916", + "route_id": "590" + }, + "stop_time_update": [ + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889047 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38673" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889128 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39785" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889169 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38664" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889225 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38702" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889271 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39787" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889314 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38501" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889381 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38692" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889451 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38714" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889496 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39791" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889527 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38506" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889576 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38635" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889609 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38509" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889652 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38642" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889695 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39795" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889720 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38502" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889786 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38503" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889939 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35691" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890040 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35693" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890096 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35694" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890127 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35695" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890181 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35696" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890337 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35697" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890457 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39778" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890561 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35797" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890602 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35798" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890640 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35799" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890711 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35800" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890761 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35801" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694890787 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35802" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694890836 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35803" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694890893 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38507" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694890946 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34473" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694890992 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38500" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694891041 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35808" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694891103 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35710" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694891151 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50036" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694891407 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50037" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694891574 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50038" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694891665 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50039" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694891738 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50040" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694891848 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50041" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694892033 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-15" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694892156 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-13" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694892431 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Oct" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694892516 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Aug" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694892761 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jun" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694892952 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Feb" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694893204 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Jul" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694893324 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-May" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694893380 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1508142" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694893588 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Feb" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694893718 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8-Jan" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694893783 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "9-Jan" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694893869 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Apr" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694893996 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Jan" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694894090 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44863" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694894163 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Mar" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694894293 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "11-Jan" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694894418 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44866" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694894515 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44867" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694894582 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44868" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694894652 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44869" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694894738 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44870" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694894829 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44871" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694894939 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44872" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694895121 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50020" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694895381 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-11" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694895496 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91162" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694895771 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50023" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694896127 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Jul" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694896266 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Apr" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694896447 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37474" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694896642 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44879" + } + ] + } + }, + { + "id": "1f78272f-8840-4faf-b5cd-6ed247ddedbb", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "20257-701ff27f-2", + "start_date": "20230916", + "route_id": "590" + }, + "stop_time_update": [ + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889036 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "12-Jan" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889082 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "12-Feb" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889136 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Jan" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889192 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Mar" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889332 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Jun" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889404 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Aug" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889472 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jan" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889543 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Mar" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889650 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-May" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889804 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jul" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889865 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Sep" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889950 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Nov" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890054 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Dec" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890142 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-14" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890288 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-17" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890371 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-19" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890425 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-20" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890486 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-22" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890549 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-24" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890639 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-25" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890932 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90003" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890981 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90007" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694891034 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90008" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694891153 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694891237 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45011" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694891348 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39623" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694891404 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39624" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694891479 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90000" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694891539 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39628" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694891630 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39631" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694891688 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694891756 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39634" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694891788 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39635" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694891846 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39636" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694891914 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49503" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694892081 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694892147 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694892191 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694892283 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49319" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694892375 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694892742 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49323" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694892797 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49324" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694892861 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49325" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694892965 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49326" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694893018 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37425" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694893083 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37426" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694893144 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37427" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694893246 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8606049" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694893343 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37428" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694893404 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37429" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694893483 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37430" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694893547 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37431" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694893605 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37432" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694893812 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37433" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694894004 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37434" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694894047 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37435" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694894172 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37436" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694894330 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37437" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694894460 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49337" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694894530 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39661" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694894657 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39662" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694894805 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39663" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694894917 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49341" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694895047 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49342" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694895324 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49343" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694895936 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49344" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694896507 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49345" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694897207 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49346" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694897472 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49347" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694898652 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49348" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694899801 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42250" + } + ] + } + }, + { + "id": "d264dfdd-b990-49ca-a5f2-d8ff18f07492", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "20256-701ff27f-2", + "start_date": "20230916", + "route_id": "590" + }, + "stop_time_update": [ + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889039 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889120 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45011" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889225 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39623" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889276 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39624" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694889343 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90000" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694889395 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39628" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694889473 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39631" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694889520 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694889575 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39634" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694889601 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39635" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694889646 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39636" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694889699 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49503" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694889823 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694889871 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694889902 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694889966 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49319" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694890028 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694890262 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49323" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694890296 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49324" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694890334 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49325" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694890395 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49326" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694890426 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37425" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694890463 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37426" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694890497 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37427" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694890553 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8606049" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694890605 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37428" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694890637 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37429" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694890678 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37430" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694890711 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37431" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694890741 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37432" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694890843 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37433" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694890935 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37434" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694890955 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37435" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694891012 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37436" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694891083 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37437" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694891139 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49337" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694891169 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39661" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694891223 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39662" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694891284 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39663" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694891329 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49341" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694891380 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49342" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694891487 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49343" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694891706 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49344" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694891895 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49345" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694892107 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49346" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694892183 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49347" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694892492 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49348" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694892756 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42250" + } + ] + } + }, + { + "id": "4bb4bdbf-5e75-42ee-b66b-9a74e2daf707", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "20180-701ff27f-2", + "start_date": "20230916", + "route_id": "590" + }, + "stop_time_update": [ + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694889011 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35710" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694889059 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50036" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694889299 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50037" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694889444 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50038" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694889520 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50039" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694889579 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50040" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694889666 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50041" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694889806 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-15" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694889894 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-13" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694890083 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Oct" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694890138 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Aug" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694890292 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jun" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694890406 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Feb" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694890549 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Jul" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694890614 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-May" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694890644 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1508142" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694890753 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Feb" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694890818 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8-Jan" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694890850 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "9-Jan" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694890892 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Apr" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694890953 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Jan" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694890997 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44863" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694891030 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Mar" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694891090 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "11-Jan" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694891145 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44866" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694891187 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44867" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694891216 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44868" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694891246 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44869" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694891282 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44870" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694891319 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44871" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694891364 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44872" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694891437 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50020" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694891537 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-11" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694891580 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91162" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694891680 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50023" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694891803 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Jul" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694891850 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Apr" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694891910 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37474" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694891973 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44879" + } + ] + } + }, + { + "id": "20bc1f0b-d12d-4e05-9ebb-a04b3fc6ed73", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "20410-701ff27f-2", + "start_date": "20230916", + "route_id": "591" + }, + "stop_time_update": [ + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889078 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50017" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889121 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45054" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889227 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45055" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889269 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45056" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889339 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45057" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889345 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44958" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889401 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1508146" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889448 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44957" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889483 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44956" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889500 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45060" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889611 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jan" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889678 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Mar" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889778 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-May" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889927 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jul" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889992 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Sep" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890072 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Nov" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890180 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Dec" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890269 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-14" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890416 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-17" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890494 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-19" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890554 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-20" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890615 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-22" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890680 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-24" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890771 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-25" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891071 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90003" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891121 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90007" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891176 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90008" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891298 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891384 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45011" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891499 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39623" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891557 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39624" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891635 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90000" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891697 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39628" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891792 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39631" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694891852 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694891920 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39634" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694891956 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39635" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694892017 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39636" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694892088 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49503" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694892263 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694892334 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694892379 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694892476 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49319" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694892573 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694892627 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39642" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694892949 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49323" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694893021 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49324" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694893088 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49325" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694893200 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49326" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694893256 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37425" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694893325 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37426" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694893408 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37427" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694893504 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8606049" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694893597 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37428" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694893680 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37429" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694893745 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37430" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694893815 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37431" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694893858 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37432" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694894102 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37433" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694894314 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37434" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694894361 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37435" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694894495 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37436" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694894668 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37437" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694894809 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49337" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694894885 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39661" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694895027 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39662" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694895177 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39663" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694895332 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49341" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694895459 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49342" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694895765 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49343" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694896449 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49344" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694897069 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49345" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694897889 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49346" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694898185 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49347" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694899558 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49348" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694900912 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42250" + } + ] + } + }, + { + "id": "856ff56f-3f7e-42ad-b76b-79982816738a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "20409-701ff27f-2", + "start_date": "20230916", + "route_id": "591" + }, + "stop_time_update": [ + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889008 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-19" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889072 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-20" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889136 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-22" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889204 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-24" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889296 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-25" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889584 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90003" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889629 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90007" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889679 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90008" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889787 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889861 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45011" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889958 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39623" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890005 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39624" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890069 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90000" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890118 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39628" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890193 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39631" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890240 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890292 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39634" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890319 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39635" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694890364 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39636" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694890417 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49503" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694890543 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694890593 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694890624 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694890691 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49319" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694890756 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694890792 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39642" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694891000 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49323" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694891045 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49324" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694891087 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49325" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694891155 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49326" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694891189 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37425" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694891230 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37426" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694891279 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37427" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694891335 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8606049" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694891389 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37428" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694891436 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37429" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694891472 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37430" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694891511 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37431" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694891535 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37432" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694891667 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37433" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694891778 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37434" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694891803 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37435" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694891871 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37436" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694891958 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37437" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694892027 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49337" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694892064 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39661" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694892132 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39662" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694892203 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39663" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694892274 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49341" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694892332 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49342" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694892468 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49343" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694892756 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49344" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694893001 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49345" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694893302 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49346" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694893405 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49347" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694893849 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49348" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694894240 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42250" + } + ] + } + }, + { + "id": "63018140-a8df-409e-ad2e-d0c4dffa1f18", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "20331-701ff27f-2", + "start_date": "20230916", + "route_id": "591" + }, + "stop_time_update": [ + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889073 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38500" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889121 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35808" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889183 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35710" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694889229 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50036" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889462 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50037" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889607 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50038" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889683 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50039" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889738 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50040" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889826 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50041" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889960 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-15" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694890054 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-13" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694890243 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Oct" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694890301 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Aug" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694890452 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jun" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694890575 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Feb" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694890712 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Jul" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694890779 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-May" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694890815 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1508142" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694890923 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Feb" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694890986 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8-Jan" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694891019 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "9-Jan" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694891062 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Apr" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694891124 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Jan" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694891169 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44863" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694891204 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Mar" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694891265 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "11-Jan" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694891321 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44866" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694891365 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44867" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694891395 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44868" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694891425 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44869" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694891463 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44870" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694891501 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44871" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694891548 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44872" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694891623 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50020" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694891723 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-11" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694891774 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91162" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694891875 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50023" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694892003 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Jul" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694892052 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Apr" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694892115 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37474" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694892180 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44879" + } + ] + } + }, + { + "id": "adea44f7-50cc-49b3-aa67-17a3fecdfba5", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "20408-701ff27f-2", + "start_date": "20230916", + "route_id": "591" + }, + "stop_time_update": [ + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694888995 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39628" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694889077 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39631" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889127 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889182 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39634" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889212 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39635" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889259 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39636" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889314 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49503" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889442 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694889492 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694889523 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694889588 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49319" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694889651 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694889686 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39642" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694889879 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49323" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694889920 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49324" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694889957 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49325" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694890018 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49326" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694890048 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37425" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694890084 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37426" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694890127 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37427" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694890175 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8606049" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694890221 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37428" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694890260 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37429" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694890291 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37430" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694890323 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37431" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694890343 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37432" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694890451 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37433" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694890540 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37434" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694890560 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37435" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694890613 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37436" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694890681 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37437" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694890734 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49337" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694890762 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39661" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694890814 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39662" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694890866 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39663" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694890920 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49341" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694890962 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49342" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694891061 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49343" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694891263 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49344" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694891430 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49345" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694891628 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49346" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694891694 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49347" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694891971 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49348" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694892204 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42250" + } + ] + } + }, + { + "id": "0d7d082e-eef8-41ec-9ef8-a0eabe8cb2f3", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "81a4de54-c212-4560-8291-eb3f0262e89a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "20334-701ff27f-2", + "start_date": "20230916", + "route_id": "591" + }, + "stop_time_update": [ + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889046 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838438" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889197 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44896" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889248 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44897" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889323 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44898" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889494 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40993" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889977 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40995" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890055 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40996" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890130 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40997" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890187 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39614" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890234 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39615" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890281 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39616" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890335 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39617" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890392 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39618" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890437 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39619" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890478 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39620" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890544 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39621" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890603 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39623" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890751 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39627" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890850 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39631" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890899 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890958 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35796" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891010 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35797" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891054 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35798" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891095 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35799" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891171 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35800" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891225 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35801" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891253 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35802" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891307 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35803" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891370 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38507" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891428 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34473" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891479 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38500" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891533 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35808" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891602 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35710" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891656 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50036" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694891944 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50037" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694892139 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50038" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694892245 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50039" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694892326 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50040" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694892458 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50041" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694892670 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-15" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694892825 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-13" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694893160 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Oct" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694893270 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Aug" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694893568 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jun" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694893825 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Feb" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694894131 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Jul" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694894286 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-May" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694894374 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1508142" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694894639 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Feb" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694894802 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8-Jan" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694894889 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "9-Jan" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694895004 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Apr" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694895174 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Jan" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694895302 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44863" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694895401 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Mar" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694895579 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "11-Jan" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694895752 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44866" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694895887 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44867" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694895981 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44868" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694896078 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44869" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694896199 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44870" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694896328 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44871" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694896485 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44872" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694896747 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50020" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694897113 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-11" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694897307 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91162" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694897705 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50023" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694898242 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Jul" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694898457 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Apr" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694898738 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37474" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694899045 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44879" + } + ] + } + }, + { + "id": "67ad7a2d-b3eb-4a3c-b017-43380deee3e8", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "20411-701ff27f-2", + "start_date": "20230916", + "route_id": "591" + }, + "stop_time_update": [ + { + "stop_sequence": 1, + "arrival": { + "delay": 0, + "time": 1694889028 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44967" + }, + { + "stop_sequence": 2, + "arrival": { + "delay": 0, + "time": 1694889080 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44968" + }, + { + "stop_sequence": 3, + "arrival": { + "delay": 0, + "time": 1694889152 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45105" + }, + { + "stop_sequence": 4, + "arrival": { + "delay": 0, + "time": 1694889180 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45106" + }, + { + "stop_sequence": 5, + "arrival": { + "delay": 0, + "time": 1694889251 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45107" + }, + { + "stop_sequence": 6, + "arrival": { + "delay": 0, + "time": 1694889296 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45108" + }, + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694889328 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Jun" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694889393 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Aug" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889439 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50024" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889563 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-12" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889588 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-13" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889674 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-15" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889690 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50022" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889735 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50021" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889811 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37475" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889847 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37508" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889869 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37476" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889902 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37526" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889969 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37567" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889991 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "13-Jan" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694890041 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "13-Feb" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694890058 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "28-Jan" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694890117 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50016" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890209 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50017" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890249 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45054" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890347 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45055" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890387 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45056" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890454 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45057" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890460 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44958" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890515 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1508146" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890561 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44957" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890596 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44956" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890613 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45060" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890726 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jan" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890796 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Mar" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890901 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-May" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694891063 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jul" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694891135 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Sep" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891226 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Nov" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891350 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Dec" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891455 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-14" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891632 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-17" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891730 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-19" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891804 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-20" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891881 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-22" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891966 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-24" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694892084 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-25" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694892493 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90003" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694892563 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90007" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694892641 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90008" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694892818 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694892944 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45011" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694893118 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39623" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694893206 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39624" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694893327 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90000" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694893424 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39628" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694893575 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39631" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694893672 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694893783 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39634" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694893843 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39635" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694893944 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39636" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694894064 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49503" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694894365 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694894489 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694894570 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694894745 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49319" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694894921 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694895022 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39642" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694895641 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49323" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694895783 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49324" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694895919 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49325" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694896148 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49326" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694896266 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37425" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694896412 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37426" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694896587 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37427" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694896797 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8606049" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694897002 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37428" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694897188 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37429" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694897336 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37430" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694897498 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37431" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694897598 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37432" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694898180 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37433" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694898709 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37434" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694898831 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37435" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694899181 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37436" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694899643 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37437" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694900035 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49337" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694900250 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39661" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694900662 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39662" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694901109 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39663" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694901585 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49341" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694901988 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49342" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694903006 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49343" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694905542 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49344" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694908225 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49345" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694912500 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49346" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694914293 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49347" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694925184 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49348" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694943110 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42250" + } + ] + } + }, + { + "id": "0ea29b65-ab82-4717-a3cd-b6936d7f0507", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "20330-701ff27f-2", + "start_date": "20230916", + "route_id": "591" + }, + "stop_time_update": [ + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889099 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50041" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889243 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-15" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694889343 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-13" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694889539 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Oct" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694889598 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Aug" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694889750 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jun" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694889871 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Feb" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694890003 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Jul" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694890067 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-May" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694890101 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1508142" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694890202 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Feb" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694890261 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8-Jan" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694890291 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "9-Jan" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694890330 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Apr" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694890387 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Jan" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694890428 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44863" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694890459 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Mar" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694890513 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "11-Jan" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694890564 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44866" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694890603 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44867" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694890629 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44868" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694890656 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44869" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694890688 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44870" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694890722 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44871" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694890762 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44872" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694890827 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50020" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694890912 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-11" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694890956 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91162" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694891040 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50023" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694891147 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Jul" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694891187 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Apr" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694891238 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37474" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694891291 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44879" + } + ] + } + }, + { + "id": "435debd1-4003-41d0-958f-9addc0eb3a5a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "20332-701ff27f-2", + "start_date": "20230916", + "route_id": "591" + }, + "stop_time_update": [ + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889039 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39623" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889194 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39627" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889294 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39631" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889342 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889399 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35796" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889448 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35797" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889490 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35798" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889528 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35799" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889597 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35800" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889646 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35801" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889671 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35802" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889718 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35803" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889772 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38507" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889822 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34473" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889864 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38500" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889909 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35808" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889965 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35710" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890009 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50036" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890230 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50037" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890373 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50038" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890448 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50039" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694890504 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50040" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694890593 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50041" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694890732 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-15" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694890831 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-13" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694891034 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Oct" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694891098 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Aug" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694891266 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jun" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694891406 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Feb" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694891565 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Jul" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694891643 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-May" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694891686 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1508142" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694891814 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Feb" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694891890 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8-Jan" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694891931 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "9-Jan" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694891983 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Apr" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694892059 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Jan" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694892115 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44863" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694892158 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Mar" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694892234 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "11-Jan" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694892306 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44866" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694892362 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44867" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694892400 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44868" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694892439 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44869" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694892486 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44870" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694892537 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44871" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694892597 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44872" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694892695 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50020" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694892828 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-11" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694892896 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91162" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694893032 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50023" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694893207 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Jul" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694893275 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Apr" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694893361 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37474" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694893453 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44879" + } + ] + } + }, + { + "id": "699fe76d-f94f-41bc-940e-06e8b7442626", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "20407-701ff27f-2", + "start_date": "20230916", + "route_id": "591" + }, + "stop_time_update": [ + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694889005 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49323" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694889050 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49324" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694889092 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49325" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694889158 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49326" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694889190 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37425" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694889229 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37426" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694889273 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37427" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694889324 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8606049" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694889372 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37428" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694889413 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37429" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694889444 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37430" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694889478 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37431" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694889498 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37432" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694889606 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37433" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694889694 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37434" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694889714 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37435" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694889766 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37436" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694889831 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37437" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694889882 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49337" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694889908 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39661" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694889957 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39662" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694890006 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39663" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694890055 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49341" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694890094 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49342" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694890184 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49343" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694890364 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49344" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694890508 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49345" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694890676 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49346" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694890731 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49347" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694890956 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49348" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694891139 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42250" + } + ] + } + }, + { + "id": "185cfe55-6a41-408c-9b74-99371ef636b8", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "20560-701ff27f-2", + "start_date": "20230916", + "route_id": "592" + }, + "stop_time_update": [ + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889031 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37523" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889074 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889166 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49310" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889199 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889256 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39634" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889282 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39635" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889329 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39636" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889384 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49503" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694889511 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889561 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889592 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889657 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49319" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889719 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889784 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38590" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694890193 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "32575" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694890242 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4950738" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694890495 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38530" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694890508 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005209" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694890746 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38531" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694890802 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8921285" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694890918 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38532" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694890974 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38533" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694891032 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38534" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694891083 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694891154 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694891193 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694891254 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694891343 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694891462 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45087" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694891491 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45088" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694891537 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45089" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694891618 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45090" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694891651 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45091" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694891698 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45092" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694891750 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45093" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694891811 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45094" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694891856 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45095" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694891909 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45096" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694892000 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45098" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694892041 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45099" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694892066 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45100" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694892107 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45101" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694892154 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45102" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694892190 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45103" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694892224 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45104" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694892260 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45122" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694892335 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38630" + } + ] + } + }, + { + "id": "d8087585-a442-495b-9886-fedd15853dec", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "20562-701ff27f-2", + "start_date": "20230916", + "route_id": "592" + }, + "stop_time_update": [ + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889016 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "12-3" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889098 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "12-Jan" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889143 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "12-Feb" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889190 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Jan" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889251 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Mar" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889391 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Jun" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889461 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Aug" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889606 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Mar" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889706 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-May" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889854 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jul" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889920 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Sep" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890004 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Nov" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890103 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Dec" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890191 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-14" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890343 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-17" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890429 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-19" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890480 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-20" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890542 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-22" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890606 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-24" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890696 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-25" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890994 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90003" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891043 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90007" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891097 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90008" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891218 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891243 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39600" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891318 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37496" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891374 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45064" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891458 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891546 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45069" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891681 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37523" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891730 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891840 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49310" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891880 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891952 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39634" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891985 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39635" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694892047 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39636" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694892119 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49503" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694892295 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694892367 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694892413 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694892512 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49319" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694892609 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694892713 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38590" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694893454 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "32575" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694893554 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4950738" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694894106 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38530" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694894137 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005209" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694894728 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38531" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694894879 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8921285" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694895204 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38532" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694895367 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38533" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694895541 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38534" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694895702 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694895928 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694896059 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694896264 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694896579 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694897024 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45087" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694897137 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45088" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694897321 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45089" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694897656 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45090" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694897797 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45091" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694898001 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45092" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694898236 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45093" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694898520 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45094" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694898734 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45095" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694898997 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45096" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694899466 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45098" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694899690 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45099" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694899828 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45100" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694900057 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45101" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694900328 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45102" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694900541 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45103" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694900746 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45104" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694900972 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45122" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694901459 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38630" + } + ] + } + }, + { + "id": "17afee49-1e12-4a99-9b51-b3008df11ea6", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "20486-701ff27f-2", + "start_date": "20230916", + "route_id": "592" + }, + "stop_time_update": [ + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889009 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37586" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889035 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37587" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889053 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37588" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889105 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37589" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889165 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37590" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889208 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37427" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889265 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37426" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889303 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37425" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889313 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37593" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889338 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38509" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889374 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38642" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889418 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39795" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889444 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38502" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889511 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38503" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889666 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35691" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889706 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35692" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889760 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35693" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889816 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35694" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889855 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35695" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889901 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35696" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890065 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35697" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890184 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39778" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890286 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35797" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890326 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35798" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890364 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35799" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890432 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35800" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890481 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35801" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890507 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35802" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890554 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35803" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890609 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38507" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890661 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34473" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890705 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38500" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890752 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35808" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890812 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35710" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890858 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50036" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891102 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50037" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891260 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50038" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694891346 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50039" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694891412 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50040" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694891512 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50041" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694891678 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-15" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694891802 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-13" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694892055 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Oct" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694892131 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Aug" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694892355 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jun" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694892538 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Feb" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694892812 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44956" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694892874 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44957" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694893058 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45057" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694893162 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44963" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694893259 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44964" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694893432 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44965" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694893436 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50018" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694893534 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44959" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694893717 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Jan" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694893798 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44863" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694893874 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Mar" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694893996 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "11-Jan" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694894112 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44866" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694894203 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44867" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694894266 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44868" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694894331 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44869" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694894411 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44870" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694894558 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44960" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694894696 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44961" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694894808 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-15" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694894913 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44962" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694895230 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-11" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694895350 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91162" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694895610 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50023" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694895953 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Jul" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694896099 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50025" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694896279 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50026" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694896625 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50027" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694896925 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37474" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694897143 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44879" + } + ] + } + }, + { + "id": "be8c8b14-feb9-499f-b8ee-8e16c28533cd", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "20485-701ff27f-2", + "start_date": "20230916", + "route_id": "592" + }, + "stop_time_update": [ + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889101 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35697" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889228 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39778" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889336 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35797" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889378 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35798" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889416 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35799" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889486 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35800" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889535 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35801" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889561 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35802" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889608 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35803" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889662 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38507" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889712 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34473" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889755 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38500" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889800 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35808" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889856 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35710" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889900 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50036" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890123 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50037" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890262 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50038" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890337 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50039" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890394 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50040" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890479 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50041" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694890616 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-15" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694890717 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-13" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694890918 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Oct" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694890977 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Aug" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694891147 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jun" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694891284 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Feb" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694891482 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44956" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694891526 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44957" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694891655 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45057" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694891727 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44963" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694891793 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44964" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694891909 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44965" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694891912 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50018" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694891977 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44959" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694892097 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Jan" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694892149 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44863" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694892198 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Mar" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694892275 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "11-Jan" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694892349 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44866" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694892405 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44867" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694892444 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44868" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694892484 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44869" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694892532 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44870" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694892622 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44960" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694892704 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44961" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694892770 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-15" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694892832 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44962" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694893014 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-11" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694893082 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91162" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694893226 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50023" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694893412 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Jul" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694893490 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50025" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694893585 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50026" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694893763 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50027" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694893914 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37474" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694894022 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44879" + } + ] + } + }, + { + "id": "8af00e4e-961c-47b0-b8a8-0a07813a5346", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "20483-701ff27f-2", + "start_date": "20230916", + "route_id": "592" + }, + "stop_time_update": [ + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694889020 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44959" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694889116 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Jan" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694889156 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44863" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694889192 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Mar" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694889249 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "11-Jan" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694889301 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44866" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694889341 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44867" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694889367 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44868" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694889394 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44869" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694889426 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44870" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694889484 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44960" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694889536 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44961" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694889577 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-15" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694889614 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44962" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694889720 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-11" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694889758 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91162" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694889836 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50023" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694889932 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Jul" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694889970 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50025" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694890016 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50026" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694890100 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50027" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694890168 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37474" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694890215 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44879" + } + ] + } + }, + { + "id": "fc7e8c9f-efbb-4e11-b69c-158de259b6f2", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "20484-701ff27f-2", + "start_date": "20230916", + "route_id": "592" + }, + "stop_time_update": [ + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889005 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50040" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889096 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50041" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889240 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-15" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889342 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-13" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889537 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Oct" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694889592 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Aug" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694889748 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jun" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694889868 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Feb" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694890036 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44956" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694890073 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44957" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694890177 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45057" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694890234 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44963" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694890285 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44964" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694890375 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44965" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694890377 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50018" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694890426 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44959" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694890515 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Jan" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694890553 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44863" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694890588 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Mar" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694890643 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "11-Jan" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694890695 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44866" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694890734 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44867" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694890761 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44868" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694890788 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44869" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694890821 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44870" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694890881 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44960" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694890936 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44961" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694890980 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-15" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694891019 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44962" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694891136 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-11" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694891178 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91162" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694891267 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50023" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694891379 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Jul" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694891425 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50025" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694891480 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50026" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694891582 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50027" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694891666 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37474" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694891725 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44879" + } + ] + } + }, + { + "id": "eab165b9-b2a2-40d7-b73d-21efbbed7c5b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "20559-701ff27f-2", + "start_date": "20230916", + "route_id": "592" + }, + "stop_time_update": [ + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694889028 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694889086 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694889169 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694889276 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45087" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694889302 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45088" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694889342 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45089" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694889410 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45090" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694889438 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45091" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694889476 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45092" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694889518 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45093" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694889567 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45094" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694889601 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45095" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694889642 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45096" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694889710 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45098" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694889741 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45099" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694889759 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45100" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694889788 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45101" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694889822 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45102" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694889847 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45103" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694889871 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45104" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694889896 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45122" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694889947 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38630" + } + ] + } + }, + { + "id": "7623000a-a671-4c4a-800f-ee503cb0211b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "20561-701ff27f-2", + "start_date": "20230916", + "route_id": "592" + }, + "stop_time_update": [ + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889283 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90003" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889330 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90007" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889381 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90008" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889492 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889515 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39600" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889581 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37496" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889630 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45064" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889702 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889775 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45069" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889884 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37523" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889924 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890008 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49310" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890039 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890093 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39634" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890118 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39635" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890162 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39636" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890214 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49503" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890338 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890387 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890418 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890483 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49319" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694890547 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694890613 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38590" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694891049 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "32575" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694891103 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4950738" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694891389 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38530" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694891404 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005209" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694891684 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38531" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694891752 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8921285" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694891893 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38532" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694891962 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38533" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694892033 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38534" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694892098 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694892188 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694892238 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694892315 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694892431 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694892587 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45087" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694892625 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45088" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694892687 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45089" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694892796 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45090" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694892841 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45091" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694892904 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45092" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694892976 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45093" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694893060 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45094" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694893122 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45095" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694893197 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45096" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694893325 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45098" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694893384 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45099" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694893420 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45100" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694893479 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45101" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694893547 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45102" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694893599 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45103" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694893648 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45104" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694893701 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45122" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694893813 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38630" + } + ] + } + }, + { + "id": "161c593c-bd83-4318-879a-cec2967b3cca", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "20487-701ff27f-2", + "start_date": "20230916", + "route_id": "592" + }, + "stop_time_update": [ + { + "stop_sequence": 1, + "arrival": { + "delay": 0, + "time": 1694889048 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42365" + }, + { + "stop_sequence": 2, + "arrival": { + "delay": 0, + "time": 1694889255 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42421" + }, + { + "stop_sequence": 3, + "arrival": { + "delay": 0, + "time": 1694889461 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42422" + }, + { + "stop_sequence": 4, + "arrival": { + "delay": 0, + "time": 1694889537 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42423" + }, + { + "stop_sequence": 5, + "arrival": { + "delay": 0, + "time": 1694889648 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42424" + }, + { + "stop_sequence": 6, + "arrival": { + "delay": 0, + "time": 1694889835 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42425" + }, + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694890009 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42426" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694890062 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42427" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694890091 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42428" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694890120 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42429" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694890156 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42430" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694890205 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42431" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694890228 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42432" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694890314 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42434" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694890364 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42435" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694890409 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4831075" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694890479 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37435" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694890518 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37583" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694890687 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37585" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694890724 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37586" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694890749 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37587" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694890766 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37588" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890816 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37589" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890875 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37590" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890918 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37427" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890976 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37426" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694891015 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37425" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694891025 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37593" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694891052 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38509" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694891089 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38642" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694891137 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39795" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694891164 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38502" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694891238 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38503" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694891414 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35691" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694891461 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35692" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694891525 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35693" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694891594 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35694" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891642 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35695" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891699 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35696" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891910 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35697" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694892071 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39778" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694892214 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35797" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694892271 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35798" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694892325 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35799" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694892426 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35800" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694892499 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35801" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694892538 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35802" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694892610 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35803" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694892697 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38507" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694892777 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34473" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694892849 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38500" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694892925 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35808" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694893024 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35710" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694893102 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50036" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694893530 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50037" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694893825 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50038" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694893991 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50039" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694894123 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50040" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694894326 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50041" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694894674 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-15" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694894947 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-13" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694895538 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Oct" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694895723 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Aug" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694896297 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jun" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694896798 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Feb" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694897599 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44956" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694897793 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44957" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694898385 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45057" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694898735 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44963" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694899071 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44964" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694899702 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44965" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694899716 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50018" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694900090 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44959" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694900829 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Jan" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694901169 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44863" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694901497 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Mar" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694902045 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "11-Jan" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694902593 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44866" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694903037 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44867" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694903352 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44868" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694903687 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44869" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694904111 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44870" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694904931 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44960" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694905747 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44961" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694906446 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-15" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694907130 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44962" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694909412 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-11" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694910365 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91162" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694912637 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50023" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694916167 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Jul" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694917893 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50025" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694920237 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50026" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694925586 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50027" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694931421 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37474" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694936604 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44879" + } + ] + } + }, + { + "id": "edfbd7e6-de68-4254-afee-431b8b3f98a9", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "20714-701ff27f-2", + "start_date": "20230916", + "route_id": "593" + }, + "stop_time_update": [ + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889059 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jul" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889116 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Sep" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889218 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Nov" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889327 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Dec" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889412 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-14" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889570 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-17" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889650 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-19" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889704 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-20" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889768 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-22" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889831 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-24" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889910 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-25" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890197 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90003" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890242 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90007" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890292 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90008" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890400 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890422 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39600" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890488 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37496" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890537 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45064" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890610 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890685 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45069" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890799 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37523" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890841 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890931 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49310" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890964 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891023 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39634" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891050 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39635" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891100 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39636" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891158 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49503" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694891297 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694891353 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694891389 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694891465 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49319" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694891539 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694891926 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49325" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694892008 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49326" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694892043 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39648" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694892107 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39649" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694892161 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45112" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694892221 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45113" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694892334 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37490" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694892412 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45115" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694892448 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45116" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694892554 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45118" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694892669 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45119" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694892740 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45120" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694892829 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45121" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694892897 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694893027 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694893090 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694893187 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694893332 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694893519 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45087" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694893661 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45089" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694893800 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45090" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694893877 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45091" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694893942 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45092" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694894036 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45093" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694894208 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45095" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694894312 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45096" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694894429 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45097" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694894511 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45098" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694894581 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45099" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694894634 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45100" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694894714 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45101" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694894802 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45102" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694894874 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45103" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694894942 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45104" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694894988 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45122" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694895170 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38630" + } + ] + } + }, + { + "id": "794037c5-550c-4ff3-a8e2-9a152dd9d746", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "20637-701ff27f-2", + "start_date": "20230916", + "route_id": "593" + }, + "stop_time_update": [ + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889025 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38509" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889062 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38642" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889109 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39795" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889136 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38502" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889206 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38503" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889367 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35691" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889467 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35693" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889521 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35694" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889561 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35695" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889608 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35696" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889774 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35697" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889892 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39778" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889994 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35797" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890040 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35798" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890071 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35799" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890139 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35800" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890187 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35801" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890212 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35802" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890258 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35803" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890312 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38507" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890362 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34473" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890405 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38500" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890450 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35808" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890508 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35710" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890552 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50036" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890784 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50037" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890933 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50038" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694891014 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50039" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694891077 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50040" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694891170 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50041" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694891323 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-15" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694891437 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-13" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694891668 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Oct" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694891737 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Aug" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694891938 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jun" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694892102 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Feb" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694892293 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Jul" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694892387 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-May" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694892440 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1508142" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694892597 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Feb" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694892691 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8-Jan" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694892741 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "9-Jan" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694892806 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Apr" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694892902 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Jan" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694892973 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44863" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694893028 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Mar" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694893124 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "11-Jan" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694893217 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44866" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694893288 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44867" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694893337 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44868" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694893388 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44869" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694893450 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44870" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694893498 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44871" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694893592 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44872" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694893713 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50020" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694893909 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-11" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694893994 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91162" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694894179 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50023" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694894419 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Jul" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694894513 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Apr" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694894633 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37474" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694894763 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44879" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694894827 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44880" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694894913 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44881" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694895138 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38151" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694895595 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-13" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694895869 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50029" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694895912 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50014" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694895968 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38204" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694896120 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50013" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694896254 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38127" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694896314 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38124" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694896401 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38194" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694896407 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50015" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694897243 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38149" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694897541 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Feb" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694897608 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50028" + } + ] + } + }, + { + "id": "48edab0e-af17-482f-9f65-0ce5f395cf08", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "20636-701ff27f-2", + "start_date": "20230916", + "route_id": "593" + }, + "stop_time_update": [ + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889022 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35710" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889070 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50036" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889309 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50037" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694889454 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50038" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889531 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50039" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889589 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50040" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889673 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50041" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889808 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-15" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889905 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-13" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694890093 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Oct" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694890148 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Aug" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694890302 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jun" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694890423 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Feb" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694890559 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Jul" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694890624 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-May" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694890660 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1508142" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694890765 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Feb" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694890827 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8-Jan" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694890859 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "9-Jan" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694890901 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Apr" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694890962 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Jan" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694891006 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44863" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694891039 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Mar" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694891099 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "11-Jan" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694891154 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44866" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694891196 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44867" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694891225 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44868" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694891255 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44869" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694891291 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44870" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694891318 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44871" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694891371 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44872" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694891439 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50020" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694891546 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-11" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694891592 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91162" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694891689 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50023" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694891811 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Jul" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694891858 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Apr" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694891918 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37474" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694891981 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44879" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694892011 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44880" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694892052 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44881" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694892158 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38151" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694892362 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-13" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694892480 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50029" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694892498 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50014" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694892522 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38204" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694892585 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50013" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694892640 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38127" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694892664 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38124" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694892699 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38194" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694892702 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50015" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694893022 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38149" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694893130 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Feb" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694893153 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50028" + } + ] + } + }, + { + "id": "b7b5d1df-3f78-4512-85e0-348cd64e859c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "20634-701ff27f-2", + "start_date": "20230916", + "route_id": "593" + }, + "stop_time_update": [ + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694889034 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44880" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694889067 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44881" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694889150 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38151" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694889300 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-13" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694889382 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50029" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694889394 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50014" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694889410 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38204" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694889452 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50013" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694889487 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38127" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694889503 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38124" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694889525 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38194" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694889527 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50015" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694889718 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38149" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694889778 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Feb" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694889791 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50028" + } + ] + } + }, + { + "id": "c43608cf-7ce7-4147-9393-2984279ffb04", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "20712-701ff27f-2", + "start_date": "20230916", + "route_id": "593" + }, + "stop_time_update": [ + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889315 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49325" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694889379 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49326" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694889406 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39648" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694889454 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39649" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694889494 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45112" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694889538 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45113" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694889617 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37490" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694889670 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45115" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694889694 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45116" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694889764 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45118" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694889837 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45119" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694889880 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45120" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694889933 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45121" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694889974 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694890048 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694890083 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694890136 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694890213 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694890308 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45087" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694890377 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45089" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694890443 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45090" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694890478 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45091" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694890507 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45092" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694890550 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45093" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694890624 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45095" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694890668 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45096" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694890716 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45097" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694890749 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45098" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694890777 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45099" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694890797 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45100" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694890829 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45101" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694890862 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45102" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694890889 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45103" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694890914 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45104" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694890931 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45122" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694890997 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38630" + } + ] + } + }, + { + "id": "0d96f58a-e591-4be6-93f9-39cd5b283831", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "20713-701ff27f-2", + "start_date": "20230916", + "route_id": "593" + }, + "stop_time_update": [ + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889035 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889114 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45069" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889232 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37523" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889273 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889362 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49310" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889394 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889450 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39634" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889476 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39635" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889522 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39636" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694889575 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49503" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889699 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889748 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889779 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889843 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49319" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889905 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694890210 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49325" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694890272 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49326" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694890297 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39648" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694890344 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39649" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694890383 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45112" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694890426 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45113" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694890505 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37490" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694890559 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45115" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694890584 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45116" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694890655 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45118" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694890730 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45119" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694890776 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45120" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694890833 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45121" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694890876 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694890956 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694890994 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694891053 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694891138 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694891245 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45087" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694891325 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45089" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694891401 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45090" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694891443 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45091" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694891477 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45092" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694891527 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45093" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694891616 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45095" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694891668 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45096" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694891727 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45097" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694891767 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45098" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694891802 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45099" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694891828 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45100" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694891866 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45101" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694891908 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45102" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694891942 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45103" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694891974 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45104" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694891995 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45122" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694892078 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38630" + } + ] + } + }, + { + "id": "c9a132b5-ae8c-45df-b9dd-3661f86af0ea", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "20635-701ff27f-2", + "start_date": "20230916", + "route_id": "593" + }, + "stop_time_update": [ + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694889071 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44867" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694889099 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44868" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694889127 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44869" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694889161 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44870" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694889187 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44871" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694889236 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44872" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694889296 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50020" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694889390 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-11" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694889429 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91162" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694889509 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50023" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694889608 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Jul" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694889644 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Apr" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694889690 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37474" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694889737 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44879" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694889760 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44880" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694889790 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44881" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694889866 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38151" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694890006 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-13" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694890084 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50029" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694890096 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50014" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694890111 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38204" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694890151 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50013" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694890185 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38127" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694890200 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38124" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694890222 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38194" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694890223 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50015" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694890412 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38149" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694890473 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Feb" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694890486 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50028" + } + ] + } + }, + { + "id": "88fd7614-ba09-4f95-a379-1f5ae36989fb", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "20711-701ff27f-2", + "start_date": "20230916", + "route_id": "593" + }, + "stop_time_update": [ + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694888999 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45090" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694889038 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45091" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694889069 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45092" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694889114 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45093" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694889191 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45095" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694889236 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45096" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694889285 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45097" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694889318 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45098" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694889346 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45099" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694889366 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45100" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694889397 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45101" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694889430 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45102" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694889456 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45103" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694889480 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45104" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694889496 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45122" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694889558 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38630" + } + ] + } + }, + { + "id": "85a1b8cd-f2c1-4943-98b1-b99b56388a94", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "20834-701ff27f-2", + "start_date": "20230916", + "route_id": "594" + }, + "stop_time_update": [ + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889085 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38611" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889125 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38612" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889127 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45088" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889180 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45089" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694889250 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45090" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694889281 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45091" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694889318 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45092" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694889363 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45093" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694889448 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45095" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694889489 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45096" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694889575 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38622" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694889892 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45102" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694889917 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45103" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694889940 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45104" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694889965 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45122" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694890017 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38630" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694890112 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42365" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694890229 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49349" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694890352 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49350" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694890398 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49351" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694890432 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49352" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694890464 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49353" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694890599 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38567" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694890674 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38569" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694890716 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38570" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694890773 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38571" + } + ] + } + }, + { + "id": "0f61fd8c-595a-4fda-b308-0ccb386573f5", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "20836-701ff27f-2", + "start_date": "20230916", + "route_id": "594" + }, + "stop_time_update": [ + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889092 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889144 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889177 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889246 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49319" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889311 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889347 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39642" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889585 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49324" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889626 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49325" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889688 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49326" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889713 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39648" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889760 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39649" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889791 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45112" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889841 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45113" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889919 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37490" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889973 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45115" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889997 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45116" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890065 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45118" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890138 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45119" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890181 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45120" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890235 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45121" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890275 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890350 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890378 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890574 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39397" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890598 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39398" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890672 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38601" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890742 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38603" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890770 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38607" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890824 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39403" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890863 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44799" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890900 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44800" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890926 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38608" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890995 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38609" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694891060 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38610" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694891112 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38611" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694891153 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38612" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694891156 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45088" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694891211 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45089" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694891287 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45090" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694891320 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45091" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694891362 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45092" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694891412 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45093" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694891511 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45095" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694891559 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45096" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694891664 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38622" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694892081 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45102" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694892117 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45103" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694892150 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45104" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694892186 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45122" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694892261 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38630" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694892403 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42365" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694892587 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49349" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694892789 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49350" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694892868 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49351" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694892925 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49352" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694892980 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49353" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694893225 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38567" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694893365 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38569" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694893447 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38570" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694893558 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38571" + } + ] + } + }, + { + "id": "a6a10381-4a67-4958-913f-e9b6529b50b6", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "20778-701ff27f-2", + "start_date": "20230916", + "route_id": "594" + }, + "stop_time_update": [ + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889026 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35800" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694889079 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35801" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694889106 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35802" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694889156 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35803" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694889214 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38507" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694889267 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34473" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694889312 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38500" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694889358 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35808" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694889417 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35710" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694889462 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50036" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694889690 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50037" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694889830 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50038" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694889904 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50039" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694889959 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50040" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694890047 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50041" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694890181 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1566333" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694890286 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39334" + } + ] + } + }, + { + "id": "af6d5477-c81b-49af-a1d2-0dbf50861a0c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "20837-701ff27f-2", + "start_date": "20230916", + "route_id": "594" + }, + "stop_time_update": [ + { + "stop_sequence": 3, + "arrival": { + "delay": 0, + "time": 1694889020 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-17" + }, + { + "stop_sequence": 4, + "arrival": { + "delay": 0, + "time": 1694889105 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-19" + }, + { + "stop_sequence": 5, + "arrival": { + "delay": 0, + "time": 1694889168 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-20" + }, + { + "stop_sequence": 6, + "arrival": { + "delay": 0, + "time": 1694889232 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-22" + }, + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694889298 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-24" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694889389 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-25" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889675 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90003" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889720 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90007" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889769 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90008" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889877 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889899 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39600" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889964 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37496" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694890012 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45064" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694890083 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694890156 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45069" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694890265 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37523" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694890304 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694890390 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49310" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694890421 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694890476 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39634" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694890501 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39635" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890547 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39636" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890600 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49503" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890729 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890779 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890812 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890880 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49319" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890948 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890985 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39642" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694891243 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49324" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694891290 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49325" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694891361 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49326" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694891391 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39648" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694891446 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39649" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694891483 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45112" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694891544 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45113" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891640 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37490" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891708 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45115" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891738 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45116" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891826 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45118" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891922 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45119" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891980 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45120" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694892053 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45121" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694892110 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694892215 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694892254 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694892544 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39397" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694892581 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39398" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694892694 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38601" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694892805 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38603" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694892850 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38607" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694892937 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39403" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694893002 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44799" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694893063 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44800" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694893107 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38608" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694893224 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38609" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694893336 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38610" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694893429 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38611" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694893501 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38612" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694893507 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45088" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694893606 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45089" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694893746 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45090" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694893809 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45091" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694893887 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45092" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694893984 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45093" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694894176 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45095" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694894273 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45096" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694894487 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38622" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694895405 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45102" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694895488 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45103" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694895567 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45104" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694895652 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45122" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694895834 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38630" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694896191 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42365" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694896673 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49349" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694897234 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49350" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694897461 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49351" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694897630 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49352" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694897796 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49353" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694898564 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38567" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694899034 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38569" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694899315 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38570" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694899710 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38571" + } + ] + } + }, + { + "id": "1c3e5654-c8ac-4f28-8cd1-766651b9f45a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "20780-701ff27f-2", + "start_date": "20230916", + "route_id": "594" + }, + "stop_time_update": [ + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889035 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42252" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889067 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42253" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889109 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42254" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889156 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42255" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889184 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42256" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889204 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42257" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889227 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42258" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889255 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42259" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889306 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42260" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889345 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42261" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889375 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45094" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889431 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42263" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889476 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45092" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889513 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42265" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889552 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42266" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889606 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42267" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889645 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42268" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889676 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42269" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889722 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44895" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889777 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42270" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889829 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42271" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889891 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838438" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890035 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44896" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890082 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44897" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890154 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44898" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890320 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40993" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890563 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005188" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890812 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40995" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890895 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40996" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890977 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40997" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891039 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39614" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891090 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39615" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891143 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39616" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891202 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39617" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891266 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39618" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891317 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39619" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891365 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39620" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891440 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39621" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891496 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38281" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891561 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891650 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45069" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891788 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37523" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891839 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891950 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49310" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694891991 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694892065 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35796" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694892131 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35797" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694892187 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35798" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694892240 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35799" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694892339 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35800" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694892410 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35801" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694892448 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35802" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694892519 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35803" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694892603 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38507" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694892682 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34473" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694892752 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38500" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694892826 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35808" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694892922 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35710" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694892998 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50036" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694893413 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50037" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694893698 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50038" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694893859 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50039" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694893982 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50040" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694894189 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50041" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694894528 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1566333" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694894814 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39334" + } + ] + } + }, + { + "id": "2b296c55-1b60-42ad-86cb-73e5a3c759ed", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "20907-701ff27f-2", + "start_date": "20230916", + "route_id": "595" + }, + "stop_time_update": [ + { + "stop_sequence": 117, + "arrival": { + "delay": 0, + "time": 1694888827 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38400" + }, + { + "stop_sequence": 118, + "arrival": { + "delay": 0, + "time": 1694888876 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38401" + }, + { + "stop_sequence": 119, + "arrival": { + "delay": 0, + "time": 1694888923 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38402" + }, + { + "stop_sequence": 120, + "arrival": { + "delay": 0, + "time": 1694889004 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38433" + } + ] + } + }, + { + "id": "baae1773-c95f-475e-a651-7d93bb3c00db", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "20912-701ff27f-2", + "start_date": "20230916", + "route_id": "595" + }, + "stop_time_update": [ + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889242 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49324" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889296 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49325" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694889343 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49326" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694889377 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39648" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694889416 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39649" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694889465 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45112" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694889508 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45113" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694889581 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37490" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694889640 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45115" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694889664 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45116" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694889734 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45118" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694889806 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45119" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694889850 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45120" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694889903 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45121" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694889944 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694890018 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694890053 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694890106 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694890182 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694890294 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694890370 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694890438 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694890526 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38546" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694890650 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694890717 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694890774 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694890873 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38551" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694890962 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694891047 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694891102 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694891224 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694891254 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694891307 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694891357 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694891403 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694891483 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38560" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694891528 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694891565 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38562" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694891606 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38563" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694891653 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42854" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694891774 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38565" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694891838 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40932" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694891929 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38567" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694891991 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38568" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694892028 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38569" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694892085 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38570" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694892161 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38571" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694892234 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38572" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694892477 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38393" + }, + { + "stop_sequence": 111, + "arrival": { + "delay": 0, + "time": 1694892556 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38394" + }, + { + "stop_sequence": 112, + "arrival": { + "delay": 0, + "time": 1694892624 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38395" + }, + { + "stop_sequence": 113, + "arrival": { + "delay": 0, + "time": 1694892677 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38396" + }, + { + "stop_sequence": 114, + "arrival": { + "delay": 0, + "time": 1694892773 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38397" + }, + { + "stop_sequence": 115, + "arrival": { + "delay": 0, + "time": 1694892812 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38398" + }, + { + "stop_sequence": 116, + "arrival": { + "delay": 0, + "time": 1694892854 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38399" + }, + { + "stop_sequence": 117, + "arrival": { + "delay": 0, + "time": 1694892960 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38400" + }, + { + "stop_sequence": 118, + "arrival": { + "delay": 0, + "time": 1694893041 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38401" + }, + { + "stop_sequence": 119, + "arrival": { + "delay": 0, + "time": 1694893120 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38402" + }, + { + "stop_sequence": 120, + "arrival": { + "delay": 0, + "time": 1694893262 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38433" + } + ] + } + }, + { + "id": "e4110f51-4f86-4889-9e5d-c4bf215559a7", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "20914-701ff27f-2", + "start_date": "20230916", + "route_id": "595" + }, + "stop_time_update": [ + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889088 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889112 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39600" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889182 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37496" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889233 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45064" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889309 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889385 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45069" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889498 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37523" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889538 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889624 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49310" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889655 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889710 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39634" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889735 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39635" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889780 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39636" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889830 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49503" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889955 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890003 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890034 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890098 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49319" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890160 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694890190 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39642" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694890427 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49324" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694890479 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49325" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694890525 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49326" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694890559 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39648" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694890597 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39649" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694890646 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45112" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694890691 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45113" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694890765 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37490" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694890827 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45115" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694890852 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45116" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694890926 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45118" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694891005 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45119" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694891053 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45120" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694891112 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45121" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694891157 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694891241 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694891281 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694891343 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694891433 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694891567 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694891661 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694891746 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694891858 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38546" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694892018 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694892107 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694892183 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694892318 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38551" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694892441 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694892562 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694892642 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694892819 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694892864 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694892943 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694893019 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694893090 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694893212 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38560" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694893282 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694893340 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38562" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694893405 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38563" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694893481 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42854" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694893677 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38565" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694893783 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40932" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694893938 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38567" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694894042 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38568" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694894107 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38569" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694894205 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38570" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694894339 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38571" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694894469 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38572" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694894915 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38393" + }, + { + "stop_sequence": 111, + "arrival": { + "delay": 0, + "time": 1694895064 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38394" + }, + { + "stop_sequence": 112, + "arrival": { + "delay": 0, + "time": 1694895195 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38395" + }, + { + "stop_sequence": 113, + "arrival": { + "delay": 0, + "time": 1694895299 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38396" + }, + { + "stop_sequence": 114, + "arrival": { + "delay": 0, + "time": 1694895488 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38397" + }, + { + "stop_sequence": 115, + "arrival": { + "delay": 0, + "time": 1694895564 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38398" + }, + { + "stop_sequence": 116, + "arrival": { + "delay": 0, + "time": 1694895648 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38399" + }, + { + "stop_sequence": 117, + "arrival": { + "delay": 0, + "time": 1694895866 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38400" + }, + { + "stop_sequence": 118, + "arrival": { + "delay": 0, + "time": 1694896034 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38401" + }, + { + "stop_sequence": 119, + "arrival": { + "delay": 0, + "time": 1694896199 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38402" + }, + { + "stop_sequence": 120, + "arrival": { + "delay": 0, + "time": 1694896505 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38433" + } + ] + } + }, + { + "id": "a9720ff5-7291-4753-95f9-a91af589a7fd", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "20911-701ff27f-2", + "start_date": "20230916", + "route_id": "595" + }, + "stop_time_update": [ + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694889063 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45112" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694889109 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45113" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694889187 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37490" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694889249 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45115" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694889275 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45116" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694889347 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45118" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694889423 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45119" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694889468 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45120" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694889523 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45121" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694889564 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694889640 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694889675 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694889729 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694889806 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694889917 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694889993 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694890060 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694890146 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38546" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694890266 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694890330 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694890385 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694890479 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38551" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694890563 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694890643 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694890695 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694890808 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694890836 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694890884 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694890930 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694890972 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694891045 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38560" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694891086 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694891119 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38562" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694891156 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38563" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694891198 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42854" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694891306 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38565" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694891363 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40932" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694891445 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38567" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694891499 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38568" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694891532 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38569" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694891581 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38570" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694891648 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38571" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694891712 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38572" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694891921 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38393" + }, + { + "stop_sequence": 111, + "arrival": { + "delay": 0, + "time": 1694891988 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38394" + }, + { + "stop_sequence": 112, + "arrival": { + "delay": 0, + "time": 1694892046 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38395" + }, + { + "stop_sequence": 113, + "arrival": { + "delay": 0, + "time": 1694892092 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38396" + }, + { + "stop_sequence": 114, + "arrival": { + "delay": 0, + "time": 1694892173 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38397" + }, + { + "stop_sequence": 115, + "arrival": { + "delay": 0, + "time": 1694892205 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38398" + }, + { + "stop_sequence": 116, + "arrival": { + "delay": 0, + "time": 1694892241 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38399" + }, + { + "stop_sequence": 117, + "arrival": { + "delay": 0, + "time": 1694892330 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38400" + }, + { + "stop_sequence": 118, + "arrival": { + "delay": 0, + "time": 1694892398 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38401" + }, + { + "stop_sequence": 119, + "arrival": { + "delay": 0, + "time": 1694892463 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38402" + }, + { + "stop_sequence": 120, + "arrival": { + "delay": 0, + "time": 1694892580 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38433" + } + ] + } + }, + { + "id": "6da266c4-69b5-417b-adc6-f939e1a92dfc", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "20910-701ff27f-2", + "start_date": "20230916", + "route_id": "595" + }, + "stop_time_update": [ + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694889117 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694889199 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694889270 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694889360 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38546" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694889484 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694889550 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694889605 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694889699 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38551" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694889782 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694889860 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694889910 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694890017 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694890044 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694890089 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694890132 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694890171 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694890238 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38560" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694890275 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694890305 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38562" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694890338 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38563" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694890377 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42854" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694890473 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38565" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694890523 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40932" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694890594 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38567" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694890641 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38568" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694890670 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38569" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694890712 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38570" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694890769 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38571" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694890823 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38572" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694890997 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38393" + }, + { + "stop_sequence": 111, + "arrival": { + "delay": 0, + "time": 1694891052 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38394" + }, + { + "stop_sequence": 112, + "arrival": { + "delay": 0, + "time": 1694891100 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38395" + }, + { + "stop_sequence": 113, + "arrival": { + "delay": 0, + "time": 1694891137 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38396" + }, + { + "stop_sequence": 114, + "arrival": { + "delay": 0, + "time": 1694891202 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38397" + }, + { + "stop_sequence": 115, + "arrival": { + "delay": 0, + "time": 1694891228 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38398" + }, + { + "stop_sequence": 116, + "arrival": { + "delay": 0, + "time": 1694891256 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38399" + }, + { + "stop_sequence": 117, + "arrival": { + "delay": 0, + "time": 1694891327 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38400" + }, + { + "stop_sequence": 118, + "arrival": { + "delay": 0, + "time": 1694891380 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38401" + }, + { + "stop_sequence": 119, + "arrival": { + "delay": 0, + "time": 1694891431 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38402" + }, + { + "stop_sequence": 120, + "arrival": { + "delay": 0, + "time": 1694891523 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38433" + } + ] + } + }, + { + "id": "b42ccab1-6d11-4af0-b366-857c22bf5c7f", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "20998-701ff27f-2", + "start_date": "20230916", + "route_id": "595" + }, + "stop_time_update": [ + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694888986 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39785" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889027 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38664" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889083 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38702" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889129 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39787" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889172 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38501" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889240 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38692" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889310 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38714" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889358 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39791" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889386 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38506" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889435 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38635" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889468 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38509" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889511 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38642" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694889555 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39795" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889587 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38502" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889645 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38503" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889799 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35691" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889838 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35692" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889895 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35693" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889948 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35694" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694889986 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35695" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694890032 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35696" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694890199 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35697" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694890316 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39778" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694890420 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35797" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694890467 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35798" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694890499 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35799" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694890569 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35800" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694890619 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35801" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694890646 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35802" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694890694 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35803" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694890751 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38507" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694890804 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34473" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694890850 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38500" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694890899 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35808" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694890960 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35710" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694891009 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50036" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694891263 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50037" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694891429 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50038" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694891520 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50039" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694891588 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50040" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694891701 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50041" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694891879 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-15" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694892006 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-13" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694892280 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Oct" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694892357 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Aug" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694892606 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jun" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694892808 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Feb" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694893042 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Jul" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694893164 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-May" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694893230 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1508142" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694893417 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Feb" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694893552 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8-Jan" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694893616 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "9-Jan" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694893701 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Apr" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694893819 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Jan" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694893919 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44863" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694893991 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Mar" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694894120 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "11-Jan" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694894243 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44866" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694894339 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44867" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694894405 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44868" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694894473 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44869" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694894558 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44870" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694894648 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44871" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694894756 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44872" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694894936 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50020" + }, + { + "stop_sequence": 111, + "arrival": { + "delay": 0, + "time": 1694895192 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-11" + }, + { + "stop_sequence": 112, + "arrival": { + "delay": 0, + "time": 1694895313 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91162" + }, + { + "stop_sequence": 113, + "arrival": { + "delay": 0, + "time": 1694895575 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50023" + }, + { + "stop_sequence": 114, + "arrival": { + "delay": 0, + "time": 1694895922 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Jul" + }, + { + "stop_sequence": 115, + "arrival": { + "delay": 0, + "time": 1694896059 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Apr" + }, + { + "stop_sequence": 116, + "arrival": { + "delay": 0, + "time": 1694896237 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37474" + }, + { + "stop_sequence": 117, + "arrival": { + "delay": 0, + "time": 1694896428 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44879" + }, + { + "stop_sequence": 118, + "arrival": { + "delay": 0, + "time": 1694896519 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44880" + }, + { + "stop_sequence": 119, + "arrival": { + "delay": 0, + "time": 1694896652 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44881" + }, + { + "stop_sequence": 120, + "arrival": { + "delay": 0, + "time": 1694896751 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50028" + } + ] + } + }, + { + "id": "5b313258-850e-4211-afb5-045d76b847ba", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "20915-701ff27f-2", + "start_date": "20230916", + "route_id": "595" + }, + "stop_time_update": [ + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889045 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Jun" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889108 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Aug" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889259 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Mar" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889360 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-May" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889513 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jul" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889583 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Sep" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889674 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Nov" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889774 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Dec" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889861 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-14" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890009 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-17" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890086 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-19" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890144 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-20" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890204 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-22" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890267 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-24" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890354 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-25" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890639 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90003" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890686 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90007" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890737 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90008" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890851 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890875 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39600" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890944 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37496" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890997 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45064" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891075 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891156 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45069" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891280 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37523" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891326 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891426 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49310" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891462 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891527 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39634" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891558 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39635" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891613 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39636" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891676 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49503" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891836 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891900 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694891941 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694892028 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49319" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694892114 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694892157 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39642" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694892506 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49324" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694892587 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49325" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694892659 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49326" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694892712 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39648" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694892774 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39649" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694892854 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45112" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694892927 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45113" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694893054 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37490" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694893161 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45115" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694893205 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45116" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694893336 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45118" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694893480 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45119" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694893569 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45120" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694893681 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45121" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694893768 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694893934 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694894014 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694894139 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694894329 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694894618 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694894829 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694895025 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694895291 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38546" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694895690 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694895920 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694896123 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694896495 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38551" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694896851 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694897212 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694897460 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694898035 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694898186 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694898457 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694898725 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694898983 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694899443 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38560" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694899717 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694899948 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38562" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694900215 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38563" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694900532 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42854" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694901400 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38565" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694901897 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40932" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694902660 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38567" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694903203 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38568" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694903554 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38569" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694904103 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38570" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694904894 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38571" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694905710 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38572" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694908915 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38393" + }, + { + "stop_sequence": 111, + "arrival": { + "delay": 0, + "time": 1694910149 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38394" + }, + { + "stop_sequence": 112, + "arrival": { + "delay": 0, + "time": 1694911324 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38395" + }, + { + "stop_sequence": 113, + "arrival": { + "delay": 0, + "time": 1694912320 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38396" + }, + { + "stop_sequence": 114, + "arrival": { + "delay": 0, + "time": 1694914284 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38397" + }, + { + "stop_sequence": 115, + "arrival": { + "delay": 0, + "time": 1694915139 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38398" + }, + { + "stop_sequence": 116, + "arrival": { + "delay": 0, + "time": 1694916137 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38399" + }, + { + "stop_sequence": 117, + "arrival": { + "delay": 0, + "time": 1694918966 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38400" + }, + { + "stop_sequence": 118, + "arrival": { + "delay": 0, + "time": 1694921458 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38401" + }, + { + "stop_sequence": 119, + "arrival": { + "delay": 0, + "time": 1694924213 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38402" + }, + { + "stop_sequence": 120, + "arrival": { + "delay": 0, + "time": 1694930340 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38433" + } + ] + } + }, + { + "id": "d71d3d6c-b50a-4d6f-a7dc-54866d2b413e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "20909-701ff27f-2", + "start_date": "20230916", + "route_id": "595" + }, + "stop_time_update": [ + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694889002 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694889087 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694889141 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694889256 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694889284 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694889331 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694889376 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694889417 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694889485 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38560" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694889523 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694889554 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38562" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694889587 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38563" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694889626 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42854" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694889721 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38565" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694889771 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40932" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694889840 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38567" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694889885 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38568" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694889913 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38569" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694889953 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38570" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694890007 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38571" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694890058 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38572" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694890220 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38393" + }, + { + "stop_sequence": 111, + "arrival": { + "delay": 0, + "time": 1694890270 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38394" + }, + { + "stop_sequence": 112, + "arrival": { + "delay": 0, + "time": 1694890313 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38395" + }, + { + "stop_sequence": 113, + "arrival": { + "delay": 0, + "time": 1694890347 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38396" + }, + { + "stop_sequence": 114, + "arrival": { + "delay": 0, + "time": 1694890405 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38397" + }, + { + "stop_sequence": 115, + "arrival": { + "delay": 0, + "time": 1694890428 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38398" + }, + { + "stop_sequence": 116, + "arrival": { + "delay": 0, + "time": 1694890454 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38399" + }, + { + "stop_sequence": 117, + "arrival": { + "delay": 0, + "time": 1694890516 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38400" + }, + { + "stop_sequence": 118, + "arrival": { + "delay": 0, + "time": 1694890563 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38401" + }, + { + "stop_sequence": 119, + "arrival": { + "delay": 0, + "time": 1694890608 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38402" + }, + { + "stop_sequence": 120, + "arrival": { + "delay": 0, + "time": 1694890687 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38433" + } + ] + } + }, + { + "id": "565709a4-bea3-4f0a-a8dc-83d9e510540f", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "20997-701ff27f-2", + "start_date": "20230916", + "route_id": "595" + }, + "stop_time_update": [ + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694889130 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35697" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694889254 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39778" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694889360 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35797" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694889408 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35798" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694889440 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35799" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694889510 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35800" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694889558 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35801" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694889584 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35802" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694889631 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35803" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694889685 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38507" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694889734 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34473" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694889777 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38500" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694889822 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35808" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694889878 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35710" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694889922 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50036" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694890144 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50037" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694890285 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50038" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694890359 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50039" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694890415 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50040" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694890505 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50041" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694890644 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-15" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694890741 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-13" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694890944 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Oct" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694891000 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Aug" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694891176 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jun" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694891314 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Feb" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694891470 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Jul" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694891549 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-May" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694891592 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1508142" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694891711 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Feb" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694891795 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8-Jan" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694891835 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "9-Jan" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694891887 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Apr" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694891958 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Jan" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694892018 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44863" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694892061 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Mar" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694892136 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "11-Jan" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694892207 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44866" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694892262 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44867" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694892300 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44868" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694892338 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44869" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694892385 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44870" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694892435 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44871" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694892495 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44872" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694892592 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50020" + }, + { + "stop_sequence": 111, + "arrival": { + "delay": 0, + "time": 1694892728 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-11" + }, + { + "stop_sequence": 112, + "arrival": { + "delay": 0, + "time": 1694892791 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91162" + }, + { + "stop_sequence": 113, + "arrival": { + "delay": 0, + "time": 1694892925 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50023" + }, + { + "stop_sequence": 114, + "arrival": { + "delay": 0, + "time": 1694893098 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Jul" + }, + { + "stop_sequence": 115, + "arrival": { + "delay": 0, + "time": 1694893165 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Apr" + }, + { + "stop_sequence": 116, + "arrival": { + "delay": 0, + "time": 1694893250 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37474" + }, + { + "stop_sequence": 117, + "arrival": { + "delay": 0, + "time": 1694893341 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44879" + }, + { + "stop_sequence": 118, + "arrival": { + "delay": 0, + "time": 1694893383 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44880" + }, + { + "stop_sequence": 119, + "arrival": { + "delay": 0, + "time": 1694893445 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44881" + }, + { + "stop_sequence": 120, + "arrival": { + "delay": 0, + "time": 1694893490 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50028" + } + ] + } + }, + { + "id": "0ed5d52b-9dd2-400f-a8bb-fbad9df7a000", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "20913-701ff27f-2", + "start_date": "20230916", + "route_id": "595" + }, + "stop_time_update": [ + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694888987 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889020 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39642" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889273 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49324" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889327 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49325" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694889374 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49326" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694889407 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39648" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694889446 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39649" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694889495 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45112" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694889538 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45113" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694889611 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37490" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694889670 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45115" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694889694 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45116" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694889763 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45118" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694889836 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45119" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694889879 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45120" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694889932 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45121" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694889973 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694890047 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694890082 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694890135 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694890212 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694890323 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694890400 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694890468 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694890556 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38546" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694890681 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694890748 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694890805 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694890905 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38551" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694890994 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694891080 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694891136 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694891259 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694891289 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694891342 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694891393 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694891440 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694891520 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38560" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694891565 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694891602 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38562" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694891644 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38563" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694891692 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42854" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694891814 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38565" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694891879 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40932" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694891972 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38567" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694892033 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38568" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694892072 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38569" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694892129 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38570" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694892206 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38571" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694892280 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38572" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694892527 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38393" + }, + { + "stop_sequence": 111, + "arrival": { + "delay": 0, + "time": 1694892607 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38394" + }, + { + "stop_sequence": 112, + "arrival": { + "delay": 0, + "time": 1694892676 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38395" + }, + { + "stop_sequence": 113, + "arrival": { + "delay": 0, + "time": 1694892731 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38396" + }, + { + "stop_sequence": 114, + "arrival": { + "delay": 0, + "time": 1694892828 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38397" + }, + { + "stop_sequence": 115, + "arrival": { + "delay": 0, + "time": 1694892867 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38398" + }, + { + "stop_sequence": 116, + "arrival": { + "delay": 0, + "time": 1694892910 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38399" + }, + { + "stop_sequence": 117, + "arrival": { + "delay": 0, + "time": 1694893018 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38400" + }, + { + "stop_sequence": 118, + "arrival": { + "delay": 0, + "time": 1694893101 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38401" + }, + { + "stop_sequence": 119, + "arrival": { + "delay": 0, + "time": 1694893181 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38402" + }, + { + "stop_sequence": 120, + "arrival": { + "delay": 0, + "time": 1694893326 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38433" + } + ] + } + }, + { + "id": "bac3c3cb-8dbb-4f89-aefb-4b1bf910378e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "20916-701ff27f-2", + "start_date": "20230916", + "route_id": "595" + }, + "stop_time_update": [ + { + "stop_sequence": 2, + "arrival": { + "delay": 0, + "time": 1694889058 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44967" + }, + { + "stop_sequence": 3, + "arrival": { + "delay": 0, + "time": 1694889110 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44968" + }, + { + "stop_sequence": 4, + "arrival": { + "delay": 0, + "time": 1694889167 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-May" + }, + { + "stop_sequence": 5, + "arrival": { + "delay": 0, + "time": 1694889199 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Jun" + }, + { + "stop_sequence": 6, + "arrival": { + "delay": 0, + "time": 1694889258 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Aug" + }, + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694889305 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50024" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694889432 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-12" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889507 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37471" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889539 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37560" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889567 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37564" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889604 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37517" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889635 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37475" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889669 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37508" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889700 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37476" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889725 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37526" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889792 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37567" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889814 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "13-Jan" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889934 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "12-3" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694890009 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "12-Jan" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694890051 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "12-Feb" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694890102 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Jan" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694890155 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Mar" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890294 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Jun" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890353 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Aug" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890496 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Mar" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890595 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-May" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890749 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jul" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890821 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Sep" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890917 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Nov" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694891025 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Dec" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694891122 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-14" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694891290 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-17" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694891380 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-19" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694891449 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-20" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694891521 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-22" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694891598 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-24" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694891707 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-25" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694892077 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90003" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694892140 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90007" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694892210 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90008" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694892369 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694892402 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39600" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694892501 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37496" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694892576 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45064" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694892692 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694892813 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45069" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694893002 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37523" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694893072 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694893229 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49310" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694893287 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694893393 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39634" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694893442 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39635" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694893533 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39636" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694893638 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49503" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694893911 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694894022 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694894095 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694894251 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49319" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694894407 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694894485 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39642" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694895155 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49324" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694895316 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49325" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694895463 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49326" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694895573 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39648" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694895702 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39649" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694895871 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45112" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694896029 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45113" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694896307 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37490" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694896547 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45115" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694896648 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45116" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694896953 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45118" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694897297 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45119" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694897515 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45120" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694897796 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45121" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694898019 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694898455 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694898672 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694899019 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694899561 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694900437 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694901114 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694901771 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694902718 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38546" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694904264 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694905231 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694906135 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694907930 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38551" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694909838 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694912002 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694913638 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694918028 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694919342 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694921894 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694924716 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694927749 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694934162 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38560" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694938740 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694943165 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38562" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694949056 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38563" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694957520 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42854" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694994358 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38565" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1695034704 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40932" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1695202340 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38567" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1696120712 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38568" + } + ] + } + }, + { + "id": "362d640f-2223-49c7-89f5-1cc8f1a3e215", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "20999-701ff27f-2", + "start_date": "20230916", + "route_id": "595" + }, + "stop_time_update": [ + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889054 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40932" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889103 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42853" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889196 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42854" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889254 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42855" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889292 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41975" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889315 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889387 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49108" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889432 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49109" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889467 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40363" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889631 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38768" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889675 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38769" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889715 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49357" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889754 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38771" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889797 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38668" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889892 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38661" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889973 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38657" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890032 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38743" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890096 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38652" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890150 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38721" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890208 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38659" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890296 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38674" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890364 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38649" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890430 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38718" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890497 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38735" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890558 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42270" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890605 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42271" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890803 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38688" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890861 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38673" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890941 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39785" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890982 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38664" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891039 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38702" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891086 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39787" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891131 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38501" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891204 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38692" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891281 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38714" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891334 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39791" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891366 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38506" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891422 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38635" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891461 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38509" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891512 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38642" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891564 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39795" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694891603 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38502" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694891675 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38503" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694891872 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35691" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694891925 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35692" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694892001 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35693" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694892073 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35694" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694892128 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35695" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694892193 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35696" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694892438 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35697" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694892620 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39778" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694892787 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35797" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694892865 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35798" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694892919 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35799" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694893038 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35800" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694893125 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35801" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694893171 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35802" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694893257 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35803" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694893361 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38507" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694893459 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34473" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694893545 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38500" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694893638 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35808" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694893758 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35710" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694893854 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50036" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694894385 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50037" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694894759 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50038" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694894972 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50039" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694895136 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50040" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694895415 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50041" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694895880 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-15" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694896231 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-13" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694897039 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Oct" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694897283 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Aug" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694898115 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jun" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694898848 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Feb" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694899774 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Jul" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694900290 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-May" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694900582 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1508142" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694901450 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Feb" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694902121 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8-Jan" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694902456 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "9-Jan" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694902912 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Apr" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694903573 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Jan" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694904169 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44863" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694904609 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Mar" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694905439 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "11-Jan" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694906285 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44866" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694906982 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44867" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694907484 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44868" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694908023 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44869" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694908714 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44870" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694909483 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44871" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694910470 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44872" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694912241 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50020" + }, + { + "stop_sequence": 111, + "arrival": { + "delay": 0, + "time": 1694915137 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-11" + }, + { + "stop_sequence": 112, + "arrival": { + "delay": 0, + "time": 1694916682 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91162" + }, + { + "stop_sequence": 113, + "arrival": { + "delay": 0, + "time": 1694920520 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50023" + }, + { + "stop_sequence": 114, + "arrival": { + "delay": 0, + "time": 1694926951 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Jul" + }, + { + "stop_sequence": 115, + "arrival": { + "delay": 0, + "time": 1694930055 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Apr" + }, + { + "stop_sequence": 116, + "arrival": { + "delay": 0, + "time": 1694934714 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37474" + }, + { + "stop_sequence": 117, + "arrival": { + "delay": 0, + "time": 1694940773 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44879" + }, + { + "stop_sequence": 118, + "arrival": { + "delay": 0, + "time": 1694944145 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44880" + }, + { + "stop_sequence": 119, + "arrival": { + "delay": 0, + "time": 1694949743 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44881" + }, + { + "stop_sequence": 120, + "arrival": { + "delay": 0, + "time": 1694954596 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50028" + } + ] + } + }, + { + "id": "ae3c02f6-8010-4ba7-ad73-cf8d258b6bcf", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "21000-701ff27f-2", + "start_date": "20230916", + "route_id": "595" + }, + "stop_time_update": [ + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889010 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40947" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889096 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40932" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889146 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42853" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889237 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42854" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889295 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42855" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889333 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41975" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889355 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889427 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49108" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889472 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49109" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889507 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40363" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889670 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38768" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889714 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38769" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889754 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49357" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889793 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38771" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889836 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38668" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889931 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38661" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890012 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38657" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890071 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38743" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890135 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38652" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890189 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38721" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890246 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38659" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890335 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38674" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890404 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38649" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890470 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38718" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890537 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38735" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890598 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42270" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890646 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42271" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890844 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38688" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890903 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38673" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890983 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39785" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891024 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38664" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891082 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38702" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891130 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39787" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891175 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38501" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891249 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38692" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891326 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38714" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891380 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39791" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891412 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38506" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891469 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38635" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891508 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38509" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891560 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38642" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891612 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39795" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694891652 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38502" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694891725 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38503" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694891925 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35691" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694891978 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35692" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694892055 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35693" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694892129 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35694" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694892184 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35695" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694892250 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35696" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694892500 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35697" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694892685 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39778" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694892855 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35797" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694892934 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35798" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694892989 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35799" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694893111 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35800" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694893200 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35801" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694893247 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35802" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694893336 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35803" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694893442 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38507" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694893541 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34473" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694893630 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38500" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694893725 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35808" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694893848 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35710" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694893946 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50036" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694894492 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50037" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694894876 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50038" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694895096 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50039" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694895265 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50040" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694895553 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50041" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694896034 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-15" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694896398 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-13" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694897238 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Oct" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694897492 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Aug" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694898362 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jun" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694899129 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Feb" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694900104 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Jul" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694900649 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-May" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694900958 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1508142" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694901879 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Feb" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694902593 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8-Jan" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694902951 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "9-Jan" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694903438 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Apr" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694904147 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Jan" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694904787 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44863" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694905262 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Mar" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694906159 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "11-Jan" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694907077 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44866" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694907836 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44867" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694908385 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44868" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694908975 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44869" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694909734 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44870" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694910581 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44871" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694911673 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44872" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694913645 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50020" + }, + { + "stop_sequence": 111, + "arrival": { + "delay": 0, + "time": 1694916907 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-11" + }, + { + "stop_sequence": 112, + "arrival": { + "delay": 0, + "time": 1694918665 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91162" + }, + { + "stop_sequence": 113, + "arrival": { + "delay": 0, + "time": 1694923090 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50023" + }, + { + "stop_sequence": 114, + "arrival": { + "delay": 0, + "time": 1694930692 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Jul" + }, + { + "stop_sequence": 115, + "arrival": { + "delay": 0, + "time": 1694934448 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Apr" + }, + { + "stop_sequence": 116, + "arrival": { + "delay": 0, + "time": 1694940196 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37474" + }, + { + "stop_sequence": 117, + "arrival": { + "delay": 0, + "time": 1694947874 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44879" + }, + { + "stop_sequence": 118, + "arrival": { + "delay": 0, + "time": 1694952252 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44880" + }, + { + "stop_sequence": 119, + "arrival": { + "delay": 0, + "time": 1694959688 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44881" + }, + { + "stop_sequence": 120, + "arrival": { + "delay": 0, + "time": 1694966312 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50028" + } + ] + } + }, + { + "id": "e27fde01-7114-4fb2-9308-a015d68c4ea3", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "21557-701ff27f-2", + "start_date": "20230916", + "route_id": "598" + }, + "stop_time_update": [ + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694888987 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39636" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889177 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889229 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889261 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889329 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49319" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889393 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889626 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49323" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889705 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49325" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889767 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49326" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889786 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39648" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889856 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36115" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889906 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36116" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889938 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8606049" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889984 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37428" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890024 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37429" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890055 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37430" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890086 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37431" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890115 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37432" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890181 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40720" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890193 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40721" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890232 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40722" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890237 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40723" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890270 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40724" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890340 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40725" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890369 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37435" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890411 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39658" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890453 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39659" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694890481 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39660" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694890510 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39661" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694890557 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39662" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694890615 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39663" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694890660 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39664" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694890707 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39665" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694890831 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42655" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694890879 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49342" + } + ] + } + }, + { + "id": "97e8d47e-9423-4c19-8cef-a06601d2c8e2", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "21559-701ff27f-2", + "start_date": "20230916", + "route_id": "598" + }, + "stop_time_update": [ + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889022 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35727" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889100 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35820" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889138 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35729" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889170 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35730" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889203 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35731" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889267 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35201" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889360 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35202" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889390 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35203" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889457 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Feb" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889502 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Mar" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889535 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37465" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889633 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889707 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45011" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889805 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39623" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889852 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39624" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889916 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90000" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889966 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39628" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890040 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39631" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890086 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890140 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39634" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890165 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39635" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890210 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39636" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890386 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890435 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890467 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890532 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49319" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890596 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890834 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49323" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890918 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49325" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890985 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49326" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891006 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39648" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891083 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36115" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891139 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36116" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891174 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8606049" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891227 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37428" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891273 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37429" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891309 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37430" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891346 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37431" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891379 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37432" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891457 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40720" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891472 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40721" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891519 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40722" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891525 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40723" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891565 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40724" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891651 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40725" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694891687 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37435" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694891739 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39658" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694891793 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39659" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694891828 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39660" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694891866 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39661" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694891926 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39662" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694892003 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39663" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694892063 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39664" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694892124 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39665" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694892294 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42655" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694892361 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49342" + } + ] + } + }, + { + "id": "874c0b30-23ce-41e2-88ac-c515f3c8daad", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "21462-701ff27f-2", + "start_date": "20230916", + "route_id": "598" + }, + "stop_time_update": [ + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889102 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37522" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889138 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889180 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50034" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889223 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40903" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889256 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40904" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694889309 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35814" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889382 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35815" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889408 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35816" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889425 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35817" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889460 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35818" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889499 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35819" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889686 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35822" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694889736 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35823" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694889786 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35723" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694889829 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35722" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694889915 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35826" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694889976 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35548" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694890063 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35547" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694890127 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35546" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694890191 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35553" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694890245 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35568" + } + ] + } + }, + { + "id": "7fbf4be1-a5ab-4040-af14-fb5779ada23d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "21560-701ff27f-2", + "start_date": "20230916", + "route_id": "598" + }, + "stop_time_update": [ + { + "stop_sequence": 2, + "arrival": { + "delay": 0, + "time": 1694888978 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35318" + }, + { + "stop_sequence": 3, + "arrival": { + "delay": 0, + "time": 1694889027 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35319" + }, + { + "stop_sequence": 4, + "arrival": { + "delay": 0, + "time": 1694889052 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40659" + }, + { + "stop_sequence": 5, + "arrival": { + "delay": 0, + "time": 1694889112 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35718" + }, + { + "stop_sequence": 6, + "arrival": { + "delay": 0, + "time": 1694889153 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35719" + }, + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694889195 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35720" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694889227 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35721" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889241 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35722" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889290 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35723" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889338 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35724" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889407 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35726" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889476 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35727" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889549 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35820" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889584 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35729" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889615 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35730" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889645 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35731" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889706 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35201" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889795 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35202" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889824 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35203" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889888 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Feb" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889932 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Mar" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889964 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37465" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890060 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890134 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45011" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890231 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39623" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890279 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39624" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890343 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90000" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890393 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39628" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890469 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39631" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890517 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890572 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39634" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890598 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39635" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890644 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39636" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890829 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890881 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890914 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890984 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49319" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891052 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891311 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49323" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891404 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49325" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891477 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49326" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891500 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39648" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891586 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36115" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891649 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36116" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891689 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8606049" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891749 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37428" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891800 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37429" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891842 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37430" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891883 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37431" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891921 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37432" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694892011 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40720" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694892027 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40721" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694892082 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40722" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694892089 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40723" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694892135 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40724" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694892235 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40725" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694892277 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37435" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694892338 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39658" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694892401 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39659" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694892443 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39660" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694892488 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39661" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694892559 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39662" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694892650 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39663" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694892722 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39664" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694892796 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39665" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694893001 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42655" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694893083 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49342" + } + ] + } + }, + { + "id": "bcd35849-9817-4987-9d79-7e02f6d94352", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "21663-701ff27f-2", + "start_date": "20230916", + "route_id": "599" + }, + "stop_time_update": [ + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889076 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40996" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889157 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40997" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889218 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39614" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889267 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39615" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889318 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39616" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889373 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39617" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889431 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39618" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889477 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39619" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889515 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39620" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889585 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39621" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889633 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38281" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889687 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889780 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37520" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889885 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37470" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889909 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889937 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91118" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889998 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35223" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890042 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39547" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890116 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35224" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890285 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35225" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890886 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35409" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890924 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35411" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890960 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35412" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694891087 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35414" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694891125 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35415" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694891153 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35416" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694891330 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35752" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694891490 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35417" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694891557 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35418" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694891581 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35664" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694891622 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35665" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694891658 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35666" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694891712 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35667" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694891749 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35668" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694891809 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35669" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694891897 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35670" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694891941 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35671" + } + ] + } + }, + { + "id": "f503df67-c5a2-457a-8682-44c6d2d38c86", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "21662-701ff27f-2", + "start_date": "20230916", + "route_id": "599" + }, + "stop_time_update": [ + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694888861 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37520" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694888975 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37470" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889001 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889031 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91118" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889096 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35223" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889143 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39547" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889221 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35224" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694889395 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35225" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889979 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35409" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890014 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35411" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890047 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35412" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694890163 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35414" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694890198 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35415" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694890223 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35416" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694890380 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35752" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694890520 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35417" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694890577 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35418" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694890597 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35664" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694890633 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35665" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694890663 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35666" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694890709 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35667" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694890740 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35668" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694890790 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35669" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694890863 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35670" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694890900 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35671" + } + ] + } + }, + { + "id": "b9b89734-0f29-4c10-b58d-07c6acf285cc", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "21660-701ff27f-2", + "start_date": "20230916", + "route_id": "599" + }, + "stop_time_update": [ + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694888980 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35670" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694889016 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35671" + } + ] + } + }, + { + "id": "3149fe8b-8100-446b-a9da-0b7c5c2471e8", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "21665-701ff27f-2", + "start_date": "20230916", + "route_id": "599" + }, + "stop_time_update": [ + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889046 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40749" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889089 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42525" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889092 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42526" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889128 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40721" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889151 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40720" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889170 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42528" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889224 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37432" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889256 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37586" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889278 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37430" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889298 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37588" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889348 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37589" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889428 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37840" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889454 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49140" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889494 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49141" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889533 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49142" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889570 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49143" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889577 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45112" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889628 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45113" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889707 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37490" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889793 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37104" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889835 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8606052" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890088 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005188" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890334 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40995" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890406 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40996" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890483 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40997" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890541 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39614" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890589 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39615" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890638 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39616" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890693 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39617" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890752 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39618" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890799 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39619" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890838 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39620" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890911 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39621" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890962 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38281" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891021 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891124 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37520" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891242 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37470" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891269 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891302 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91118" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891373 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35223" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891425 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39547" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891514 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35224" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891725 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35225" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694892544 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35409" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694892600 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35411" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694892653 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35412" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694892845 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35414" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694892904 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35415" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694892947 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35416" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694893228 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35752" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694893493 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35417" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694893605 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35418" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694893646 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35664" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694893718 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35665" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694893780 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35666" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694893875 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35667" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694893941 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35668" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694894049 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35669" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694894208 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35670" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694894290 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35671" + } + ] + } + }, + { + "id": "03ccd0c1-ae48-4e30-bec3-2f361cf56e29", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "21767-701ff27f-2", + "start_date": "20230916", + "route_id": "599" + }, + "stop_time_update": [ + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889070 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38692" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889143 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38714" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889192 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39791" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889214 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49329" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889272 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49330" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889311 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39652" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889373 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36683" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889411 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37428" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694889452 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37429" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889484 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37430" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889516 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37431" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889545 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37432" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889612 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40720" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889624 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40721" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889664 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40722" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694889669 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40723" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694889702 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40724" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694889771 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40725" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694889800 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37435" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694889841 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39658" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694889883 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39659" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694889910 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39660" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694889939 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39661" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694889984 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39662" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694890040 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39663" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694890084 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39664" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694890128 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39665" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694890246 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42655" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694890292 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49342" + } + ] + } + }, + { + "id": "953505dd-893b-4305-91e6-b13067329b93", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "21765-701ff27f-2", + "start_date": "20230916", + "route_id": "599" + }, + "stop_time_update": [ + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889042 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40722" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694889047 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40723" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694889083 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40724" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694889158 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40725" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694889189 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37435" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694889233 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39658" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694889277 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39659" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694889306 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39660" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694889336 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39661" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694889383 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39662" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694889442 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39663" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694889487 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39664" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694889532 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39665" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694889652 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42655" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694889698 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49342" + } + ] + } + }, + { + "id": "c09129e8-5768-452f-94b6-83a65d191591", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "21768-701ff27f-2", + "start_date": "20230916", + "route_id": "599" + }, + "stop_time_update": [ + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694888974 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44643" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889016 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44644" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889110 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91116" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889592 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39545" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889757 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39546" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889890 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35286" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889917 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35287" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889984 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42317" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890035 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42318" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890105 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8606396" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890175 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38514" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890213 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38516" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890271 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38518" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890369 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38520" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890409 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38521" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890458 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38522" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890508 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38523" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890560 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38524" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890610 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38525" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890662 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38526" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890712 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38527" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890801 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38528" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890918 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38529" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891143 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38530" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891163 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005209" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891506 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36001" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891692 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42604" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891834 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38692" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891924 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38714" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891987 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39791" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694892015 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49329" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694892091 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49330" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694892144 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39652" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694892230 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36683" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694892284 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37428" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694892343 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37429" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694892391 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37430" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694892439 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37431" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694892483 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37432" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694892587 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40720" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694892606 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40721" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694892670 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40722" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694892678 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40723" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694892732 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40724" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694892850 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40725" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694892899 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37435" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694892972 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39658" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694893047 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39659" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694893096 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39660" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694893150 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39661" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694893235 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39662" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694893345 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39663" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694893431 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39664" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694893521 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39665" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694893772 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42655" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694893873 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49342" + } + ] + } + }, + { + "id": "f720cc13-652b-4e83-8d15-f950083146ad", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "21766-701ff27f-2", + "start_date": "20230916", + "route_id": "599" + }, + "stop_time_update": [ + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889016 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005209" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889330 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36001" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889486 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42604" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889598 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38692" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889666 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38714" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889713 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39791" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889734 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49329" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889789 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49330" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889826 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39652" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889885 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36683" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889923 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37428" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694889962 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37429" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889993 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37430" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890025 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37431" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890053 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37432" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694890119 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40720" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694890131 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40721" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694890170 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40722" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694890175 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40723" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694890208 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40724" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694890277 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40725" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694890306 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37435" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694890347 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39658" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694890390 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39659" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694890417 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39660" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694890446 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39661" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694890492 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39662" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694890550 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39663" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694890595 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39664" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694890641 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39665" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694890764 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42655" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694890812 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49342" + } + ] + } + }, + { + "id": "678f9cf2-a4ab-4877-b764-5f79ad4907bc", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "21943-701ff27f-2", + "start_date": "20230916", + "route_id": "600" + }, + "stop_time_update": [ + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694888956 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39623" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694888998 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39624" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889077 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90000" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889130 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39628" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889201 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39631" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889258 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889314 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39634" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889340 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39635" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889386 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39636" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889564 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889613 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889644 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889708 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49319" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889771 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889805 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39642" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890053 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39795" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890110 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42642" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890141 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42643" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890164 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42644" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890188 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42645" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890289 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8606039" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890321 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36489" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890350 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36490" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890374 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40714" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890437 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8606049" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890484 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37428" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890549 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36551" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890570 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36552" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890602 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36553" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890629 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36554" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890731 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39657" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890771 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39658" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890827 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39659" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890856 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39660" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890887 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39661" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890937 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39662" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890999 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39663" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891048 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39664" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891098 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39665" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891183 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42522" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891237 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42524" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891292 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39686" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891306 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39687" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891483 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39232" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891538 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39233" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891616 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39234" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891643 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39235" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891813 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49342" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891925 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49343" + } + ] + } + }, + { + "id": "8d26d673-0f76-44ac-97c0-60b07d394d63", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "21875-701ff27f-2", + "start_date": "20230916", + "route_id": "600" + }, + "stop_time_update": [ + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889009 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35695" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889064 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35696" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889243 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35697" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889341 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Jan" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889371 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42460" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889411 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35690" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889513 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35700" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889598 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35703" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889629 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35704" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889643 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35705" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889661 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35706" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694889715 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35707" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889803 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38281" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889857 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34586" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889886 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34587" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889911 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34588" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889956 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39497" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889989 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49407" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694890044 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50034" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694890082 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40903" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694890132 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50035" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694890369 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35713" + } + ] + } + }, + { + "id": "7ac558ac-405d-458b-9d6f-b9f60ba209fd", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "21942-701ff27f-2", + "start_date": "20230916", + "route_id": "600" + }, + "stop_time_update": [ + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889079 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90000" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889133 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39628" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889204 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39631" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889262 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889320 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39634" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889346 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39635" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889392 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39636" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889573 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889622 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889653 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889717 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49319" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889780 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889814 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39642" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890063 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39795" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890119 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42642" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890151 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42643" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890174 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42644" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890198 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42645" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890298 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8606039" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890329 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36489" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890359 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36490" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890382 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40714" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890444 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8606049" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890491 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37428" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890555 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36551" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890576 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36552" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890607 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36553" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890635 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36554" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890735 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39657" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890775 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39658" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890829 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39659" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890858 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39660" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890889 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39661" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890938 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39662" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890999 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39663" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891047 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39664" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891096 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39665" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891179 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42522" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891232 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42524" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891286 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39686" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891300 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39687" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891473 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39232" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891526 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39233" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891602 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39234" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891628 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39235" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891793 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49342" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891902 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49343" + } + ] + } + }, + { + "id": "338c046b-3057-41cd-8c19-2b6c3cd877a7", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "21941-701ff27f-2", + "start_date": "20230916", + "route_id": "600" + }, + "stop_time_update": [ + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889023 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39642" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889292 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39795" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889351 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42642" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889384 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42643" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889408 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42644" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889433 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42645" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889535 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8606039" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889568 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36489" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889597 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36490" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889621 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40714" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889683 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8606049" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889729 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37428" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889792 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36551" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889813 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36552" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889843 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36553" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889870 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36554" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889966 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39657" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890004 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39658" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890055 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39659" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890082 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39660" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890111 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39661" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890156 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39662" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890213 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39663" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890256 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39664" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890301 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39665" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890375 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42522" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890423 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42524" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890470 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39686" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890482 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39687" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890633 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39232" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890679 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39233" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890744 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39234" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890766 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39235" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890904 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49342" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890994 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49343" + } + ] + } + }, + { + "id": "3257727b-615e-4997-8e57-9dca8cb38f95", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "21877-701ff27f-2", + "start_date": "20230916", + "route_id": "600" + }, + "stop_time_update": [ + { + "stop_sequence": 3, + "arrival": { + "delay": 0, + "time": 1694888940 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42427" + }, + { + "stop_sequence": 4, + "arrival": { + "delay": 0, + "time": 1694888969 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42428" + }, + { + "stop_sequence": 5, + "arrival": { + "delay": 0, + "time": 1694889010 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42429" + }, + { + "stop_sequence": 6, + "arrival": { + "delay": 0, + "time": 1694889110 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39668" + }, + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694889134 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39234" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694889140 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39669" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889169 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39670" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889191 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39233" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889232 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36752" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889322 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39231" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889364 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8606050" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889390 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36754" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889444 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37101" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889492 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42653" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889529 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42654" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889573 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37046" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889619 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37047" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889657 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37048" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889693 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42431" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889711 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42432" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889761 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37578" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889798 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39660" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889825 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39659" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889869 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37581" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889897 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37436" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890008 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36768" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890047 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36769" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890099 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36771" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890122 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36772" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890197 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37590" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890260 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40760" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890288 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36686" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890317 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36687" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890343 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8606039" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890384 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42532" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890435 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42533" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890493 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42534" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890532 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42535" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890622 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38502" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890683 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38503" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890849 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35691" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890955 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35693" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891014 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35694" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891053 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35695" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891111 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35696" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891307 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35697" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891420 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Jan" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891456 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42460" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891505 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35690" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891631 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35700" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891741 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35703" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891782 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35704" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891801 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35705" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891826 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35706" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891899 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35707" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694892022 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38281" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694892101 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34586" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694892143 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34587" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694892180 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34588" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694892247 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39497" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694892298 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49407" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694892384 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50034" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694892445 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40903" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694892525 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50035" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694892933 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35713" + } + ] + } + }, + { + "id": "1b151cf4-c0ee-47ac-913b-a629fc850a45", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "22075-701ff27f-2", + "start_date": "20230916", + "route_id": "601" + }, + "stop_time_update": [ + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889051 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38528" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889178 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38529" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889388 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38530" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889401 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005209" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889700 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36001" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889850 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42604" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889960 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38692" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890027 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38714" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890073 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39791" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890094 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49329" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890148 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49330" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890192 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39652" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890245 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36683" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890263 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37590" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890325 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40760" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890353 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36686" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890382 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36687" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890407 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8606039" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890446 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36641" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890571 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36689" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890616 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36690" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890670 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36691" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890705 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36692" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890722 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36693" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890768 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40036" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890830 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36695" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890880 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36696" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890943 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39229" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890979 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "32587" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891038 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39139" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891344 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36699" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891373 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36700" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891409 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36701" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891433 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36702" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891448 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36703" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891482 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36704" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891536 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39231" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891630 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39232" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891685 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39233" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891764 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39234" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891791 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39235" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694891964 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49342" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694892087 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49343" + } + ] + } + }, + { + "id": "16bc65ce-2e7a-4064-8ebb-fbcafbb45818", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "22009-701ff27f-2", + "start_date": "20230916", + "route_id": "601" + }, + "stop_time_update": [ + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694888988 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "3890531" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889028 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "3890533" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889067 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "32571" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889132 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "32736" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889173 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8606039" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889206 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36489" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889237 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36490" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889262 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40714" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889326 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8606049" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889365 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37840" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889390 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49140" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889431 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49141" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889470 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49142" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889507 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49143" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889514 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45112" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889565 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45113" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889644 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37490" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889733 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37104" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889773 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8606052" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890026 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005188" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890265 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40995" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890344 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40996" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890420 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40997" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890478 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39614" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890527 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39615" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890575 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39616" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890630 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39617" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890689 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39618" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890736 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39619" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890776 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39620" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890847 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39621" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890909 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39623" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890960 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39624" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694891030 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90000" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694891085 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39628" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694891169 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39631" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694891222 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + } + ] + } + }, + { + "id": "01045ffd-3e51-4f12-aa59-9b8d48d48289", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "22007-701ff27f-2", + "start_date": "20230916", + "route_id": "601" + }, + "stop_time_update": [ + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889045 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40997" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889107 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39614" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889158 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39615" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889209 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39616" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889265 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39617" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889325 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39618" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889372 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39619" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694889411 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39620" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889480 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39621" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889539 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39623" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889587 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39624" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889652 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90000" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889702 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39628" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889777 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39631" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694889823 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + } + ] + } + }, + { + "id": "242d228a-2a04-4245-a207-302a6eca0ec0", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "22076-701ff27f-2", + "start_date": "20230916", + "route_id": "601" + }, + "stop_time_update": [ + { + "stop_sequence": 1, + "arrival": { + "delay": 0, + "time": 1694889075 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35700" + }, + { + "stop_sequence": 2, + "arrival": { + "delay": 0, + "time": 1694889106 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35701" + }, + { + "stop_sequence": 3, + "arrival": { + "delay": 0, + "time": 1694889174 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35703" + }, + { + "stop_sequence": 4, + "arrival": { + "delay": 0, + "time": 1694889189 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35704" + }, + { + "stop_sequence": 5, + "arrival": { + "delay": 0, + "time": 1694889213 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35705" + }, + { + "stop_sequence": 6, + "arrival": { + "delay": 0, + "time": 1694889232 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35706" + }, + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694889289 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35707" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694889315 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35708" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889382 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38520" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889423 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38521" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889472 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38522" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889522 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38523" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889574 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38524" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889622 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38525" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889673 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38526" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889721 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38527" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889806 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38528" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889923 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38529" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694890122 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38530" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694890135 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005209" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694890429 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36001" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694890583 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42604" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694890696 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38692" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890767 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38714" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890816 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39791" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890838 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49329" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890897 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49330" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890944 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39652" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694891002 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36683" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694891022 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37590" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694891090 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40760" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694891121 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36686" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694891153 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36687" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694891182 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8606039" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694891225 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36641" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694891368 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36689" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694891418 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36690" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694891482 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36691" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891523 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36692" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891542 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36693" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891596 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40036" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891669 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36695" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891729 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36696" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891805 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39229" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891848 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "32587" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891920 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39139" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694892300 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36699" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694892337 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36700" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694892382 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36701" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694892414 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36702" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694892433 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36703" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694892476 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36704" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694892546 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39231" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694892668 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39232" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694892741 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39233" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694892847 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39234" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694892883 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39235" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694893115 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49342" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694893284 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49343" + } + ] + } + }, + { + "id": "b7070b35-28ea-414a-acfd-f794fce3bde7", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "22150-701ff27f-2", + "start_date": "20230916", + "route_id": "602" + }, + "stop_time_update": [ + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694888985 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45069" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889104 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37523" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889146 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + } + ] + } + }, + { + "id": "f482c20d-c72a-4efe-8048-c530b05a15a8", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "22151-701ff27f-2", + "start_date": "20230916", + "route_id": "602" + }, + "stop_time_update": [ + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889026 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40997" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889088 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39614" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889138 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39615" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889190 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39616" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889246 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39617" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889305 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39618" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889350 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39619" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889392 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39620" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889460 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39621" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889506 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38281" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889563 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889637 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45069" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889747 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37523" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889786 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + } + ] + } + }, + { + "id": "d8f7e17e-05b0-4a47-a206-96c6ad837f6e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "22322-701ff27f-2", + "start_date": "20230916", + "route_id": "603" + }, + "stop_time_update": [ + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694888985 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35694" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889019 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35695" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889032 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889114 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889210 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35696" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889384 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35697" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889481 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Jan" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889510 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42460" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889568 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39726" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889589 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Mar" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889644 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1566281" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889672 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42315" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889694 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42316" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889744 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42317" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889817 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42319" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889889 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42320" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889935 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38514" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889989 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34586" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890017 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34587" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890039 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34588" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890087 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39497" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890120 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49407" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694890176 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50034" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694890214 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40903" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694890263 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50035" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694890312 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50036" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694890410 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35712" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694890503 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35713" + } + ] + } + }, + { + "id": "f7d7c5ef-fc5b-41cd-b1fd-99eb004c51fc", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "22320-701ff27f-2", + "start_date": "20230916", + "route_id": "603" + }, + "stop_time_update": [ + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694889028 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35712" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694889127 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35713" + } + ] + } + }, + { + "id": "442ad282-837c-4e27-998a-f7c4a8a3fda7", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "22323-701ff27f-2", + "start_date": "20230916", + "route_id": "603" + }, + "stop_time_update": [ + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889030 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39791" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889059 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38506" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889111 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38635" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889156 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38509" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889192 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38642" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889237 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39795" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889271 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38502" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889328 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38503" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889499 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35691" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889525 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35692" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889587 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35693" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889648 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35694" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889680 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35695" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889692 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889767 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889857 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35696" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890023 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35697" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890116 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Jan" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890145 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42460" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890201 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39726" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890222 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Mar" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890277 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1566281" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890304 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42315" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890327 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42316" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890377 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42317" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890451 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42319" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890525 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42320" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890572 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38514" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890628 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34586" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890658 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34587" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890680 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34588" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890731 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39497" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890766 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49407" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694890825 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50034" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694890865 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40903" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694890918 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50035" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694890971 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50036" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694891078 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35712" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694891181 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35713" + } + ] + } + }, + { + "id": "9fafcf83-7a61-4857-8e18-1db851f4a819", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "22238-701ff27f-2", + "start_date": "20230916", + "route_id": "603" + }, + "stop_time_update": [ + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694888994 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39625" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889068 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39628" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889149 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39631" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889199 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889256 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39634" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889282 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39635" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889329 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39636" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889383 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49503" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889511 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889560 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889591 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889656 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49319" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889724 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889753 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39642" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890025 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49325" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890086 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49326" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890111 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39648" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890158 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39649" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890196 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45112" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890239 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45113" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890317 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37490" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890470 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42604" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890513 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42605" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890571 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42606" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890606 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42607" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890663 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42608" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890707 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49335" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890758 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49336" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890852 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37437" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890900 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49337" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890938 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39661" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890981 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39662" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891041 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39663" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891089 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39664" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891139 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39665" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891251 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39666" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891289 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39667" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891352 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36935" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891387 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36936" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891515 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49343" + } + ] + } + }, + { + "id": "ac4eac7a-9f59-428e-9395-a73fcdd29dfe", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "22321-701ff27f-2", + "start_date": "20230916", + "route_id": "603" + }, + "stop_time_update": [ + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889076 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42320" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889126 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38514" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889184 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34586" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694889214 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34587" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889237 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34588" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889289 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39497" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889323 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49407" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889381 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50034" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889421 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40903" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889471 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50035" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694889522 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50036" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694889620 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35712" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694889713 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35713" + } + ] + } + }, + { + "id": "cf4da3f1-e731-4ab9-8c1a-405226369379", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "22324-701ff27f-2", + "start_date": "20230916", + "route_id": "603" + }, + "stop_time_update": [ + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889019 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37048" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889060 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42431" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889080 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42432" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889133 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37578" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889170 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42434" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889221 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42435" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889268 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4831075" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889315 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49135" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889357 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49136" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889457 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42438" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889486 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37442" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889554 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42440" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889590 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42441" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889698 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38692" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889766 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38714" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889813 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39791" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889840 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38506" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889887 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38635" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889929 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38509" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889963 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38642" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890005 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39795" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890037 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38502" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890091 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38503" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890256 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35691" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890282 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35692" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890343 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35693" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890405 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35694" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890437 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35695" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890449 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890525 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890617 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35696" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890790 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35697" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890890 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Jan" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890921 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42460" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890981 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39726" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891004 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Mar" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891064 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1566281" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891094 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42315" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891119 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42316" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891175 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42317" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891258 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42319" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891341 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42320" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891395 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38514" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891458 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34586" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891492 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34587" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694891518 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34588" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694891578 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39497" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694891618 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49407" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694891687 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50034" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694891736 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40903" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694891798 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50035" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694891862 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50036" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694891991 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35712" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694892117 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35713" + } + ] + } + }, + { + "id": "ca011d57-0e4f-45f4-90db-533cfaf2d25d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "22239-701ff27f-2", + "start_date": "20230916", + "route_id": "603" + }, + "stop_time_update": [ + { + "stop_sequence": 3, + "arrival": { + "delay": 0, + "time": 1694888990 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35203" + }, + { + "stop_sequence": 4, + "arrival": { + "delay": 0, + "time": 1694889059 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Feb" + }, + { + "stop_sequence": 5, + "arrival": { + "delay": 0, + "time": 1694889114 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Mar" + }, + { + "stop_sequence": 6, + "arrival": { + "delay": 0, + "time": 1694889148 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37465" + }, + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694889251 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694889328 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45011" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889429 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39623" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889478 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39624" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889524 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39625" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889593 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39628" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889669 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39631" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889715 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889770 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39634" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889795 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39635" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889839 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39636" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889891 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49503" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694890014 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694890063 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694890093 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694890157 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49319" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694890225 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890254 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39642" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890530 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49325" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890593 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49326" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890619 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39648" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890667 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39649" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890708 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45112" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890752 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45113" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890835 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37490" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890999 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42604" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694891045 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42605" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694891107 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42606" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694891145 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42607" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694891208 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42608" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694891257 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49335" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694891313 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49336" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891417 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37437" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891471 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49337" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891514 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39661" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891562 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39662" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891629 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39663" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891684 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39664" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891741 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39665" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891870 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39666" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891914 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39667" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891988 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36935" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694892028 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36936" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694892179 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49343" + } + ] + } + }, + { + "id": "66edff6c-8802-4eb0-864d-adb1fbbdb468", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "22506-701ff27f-2", + "start_date": "20230916", + "route_id": "604" + }, + "stop_time_update": [ + { + "stop_sequence": 1, + "arrival": { + "delay": 0, + "time": 1694889132 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37577" + }, + { + "stop_sequence": 2, + "arrival": { + "delay": 0, + "time": 1694889189 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37578" + }, + { + "stop_sequence": 3, + "arrival": { + "delay": 0, + "time": 1694889233 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39660" + }, + { + "stop_sequence": 4, + "arrival": { + "delay": 0, + "time": 1694889261 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39659" + }, + { + "stop_sequence": 5, + "arrival": { + "delay": 0, + "time": 1694889308 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37581" + }, + { + "stop_sequence": 6, + "arrival": { + "delay": 0, + "time": 1694889341 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37435" + }, + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694889384 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37583" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694889454 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37584" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889553 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37432" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889583 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37586" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889605 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37430" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889632 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37588" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889672 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37589" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889728 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37590" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889775 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37591" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889827 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37592" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889868 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37593" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889893 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38509" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889927 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38642" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889965 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39795" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694890001 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38502" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694890059 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38503" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694890213 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35691" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890306 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35693" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890363 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35694" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890403 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35695" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890450 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35696" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890621 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35697" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890726 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Jan" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890755 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42460" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890793 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35690" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890895 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35700" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890925 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35701" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890995 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35703" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694891011 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35704" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694891034 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35705" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694891055 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35706" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694891114 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35707" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891142 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35708" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891168 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35709" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891234 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40306" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891306 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40308" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891391 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40309" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891528 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39504" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891565 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39595" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891584 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39759" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891681 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37627" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891881 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39712" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891921 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39714" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891964 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39715" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891996 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39470" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694892142 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39611" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694892228 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37636" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694892389 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37637" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694892474 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37639" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694892532 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39200" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694892644 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40191" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694892690 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40192" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694892762 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40193" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694892816 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40194" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694892955 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38025" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694892988 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38026" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694893035 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38027" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694893054 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38028" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694893085 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38029" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694893129 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38030" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694893177 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38031" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694893234 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38032" + } + ] + } + }, + { + "id": "859fab00-4f3a-4298-bc43-3a007111296e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "22599-701ff27f-2", + "start_date": "20230916", + "route_id": "604" + }, + "stop_time_update": [ + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889062 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39536" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889097 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16206048" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889119 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39537" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889137 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40192" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889166 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39429" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889203 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39430" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889220 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37300" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889248 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39562" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889284 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39563" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889302 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39564" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889313 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37638" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889349 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39587" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889383 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39588" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889436 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39589" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889468 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37322" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889497 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37323" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889593 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39558" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889645 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39985" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889703 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37325" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889739 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37364" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889871 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37366" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889907 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39594" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890015 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39505" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890043 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39506" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890071 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90003" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890115 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90007" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890155 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40830" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890191 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40831" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890272 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890294 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39600" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890359 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37496" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890408 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45064" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890480 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890515 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49496" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890556 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49497" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890580 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39624" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890646 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90000" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890697 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39628" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890776 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39631" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890825 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890882 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39634" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890908 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39635" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890957 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39636" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891151 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891205 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891240 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891314 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49319" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891387 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694891428 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39642" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694891763 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49325" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694891842 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49326" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694891881 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37425" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694891929 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37426" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694891986 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37427" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694892052 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8606049" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694892116 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37428" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694892172 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37429" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694892217 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37430" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694892262 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37431" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694892304 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37432" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694892450 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37433" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694892585 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37434" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694892615 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37435" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694892682 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39658" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694892751 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39659" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694892796 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39660" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694892845 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39661" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694892932 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37440" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694893124 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37441" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694893410 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37442" + } + ] + } + }, + { + "id": "3396f6bd-6605-4ddd-aa3d-f3870926e6e9", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "22504-701ff27f-2", + "start_date": "20230916", + "route_id": "604" + }, + "stop_time_update": [ + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889114 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35693" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889175 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35694" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889217 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35695" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889266 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35696" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889441 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35697" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889544 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Jan" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889572 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42460" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889609 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35690" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889705 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35700" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889733 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35701" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889797 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35703" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889812 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35704" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889833 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35705" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889852 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35706" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889906 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35707" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889930 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35708" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889953 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35709" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890011 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40306" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890073 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40308" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890146 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40309" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890259 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39504" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890290 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39595" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890305 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39759" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890383 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37627" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890539 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39712" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890570 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39714" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890603 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39715" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890627 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39470" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890736 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39611" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890799 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37636" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890915 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37637" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890974 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37639" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891015 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39200" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891092 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40191" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694891123 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40192" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694891172 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40193" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694891208 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40194" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694891299 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38025" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694891321 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38026" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694891352 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38027" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694891364 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38028" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694891383 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38029" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694891412 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38030" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694891443 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38031" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694891479 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38032" + } + ] + } + }, + { + "id": "45a577e9-30e0-4471-be43-b88a2e3f895a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "22597-701ff27f-2", + "start_date": "20230916", + "route_id": "604" + }, + "stop_time_update": [ + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889014 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90007" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889058 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40830" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889097 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40831" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889184 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889207 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39600" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889276 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37496" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889326 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45064" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889400 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889435 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49496" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889476 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49497" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889501 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39624" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889566 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90000" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889616 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39628" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889691 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39631" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889737 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889792 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39634" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889816 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39635" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889861 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39636" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890036 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890085 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890115 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890180 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49319" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890242 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890277 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39642" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890553 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49325" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890616 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49326" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694890647 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37425" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694890685 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37426" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694890729 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37427" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694890780 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8606049" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694890829 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37428" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694890872 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37429" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694890906 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37430" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694890939 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37431" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694890971 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37432" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694891078 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37433" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694891175 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37434" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694891197 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37435" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694891244 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39658" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694891293 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39659" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694891324 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39660" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694891358 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39661" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694891418 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37440" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694891548 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37441" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694891737 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37442" + } + ] + } + }, + { + "id": "25aac175-203e-47d6-95a5-1e7d0d4e3317", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "22502-701ff27f-2", + "start_date": "20230916", + "route_id": "604" + }, + "stop_time_update": [ + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694888987 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40306" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889056 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40308" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889135 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40309" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889255 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39504" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889288 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39595" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889304 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39759" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889384 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37627" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889542 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39712" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889573 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39714" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889605 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39715" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889629 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39470" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889734 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39611" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889794 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37636" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889903 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37637" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889958 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37639" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889995 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39200" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890065 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40191" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890093 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40192" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890136 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40193" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890168 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40194" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694890249 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38025" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694890267 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38026" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694890294 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38027" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694890304 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38028" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694890321 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38029" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694890346 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38030" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694890372 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38031" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694890403 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38032" + } + ] + } + }, + { + "id": "f759ebf8-8032-49b2-8d28-bbb2757b1590", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "22672-701ff27f-2", + "start_date": "20230916", + "route_id": "605" + }, + "stop_time_update": [ + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889084 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37465" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889133 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39503" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889236 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39504" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889258 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39595" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889279 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39759" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889341 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39760" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889381 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39761" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889420 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39511" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889542 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39763" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889585 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39764" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889620 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39765" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889643 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39529" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889704 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39530" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889750 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40150" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889851 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40152" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694889957 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38025" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889975 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38026" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890002 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38027" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890012 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38028" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694890033 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38029" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694890053 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38030" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694890079 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38031" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694890162 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16206047" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694890295 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39214" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694890349 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39215" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694890462 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16027103" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694890605 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4950739" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694890809 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40978" + } + ] + } + }, + { + "id": "8b6fd731-e8d4-4ccd-9d15-5607ac484279", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "22739-701ff27f-2", + "start_date": "20230916", + "route_id": "605" + }, + "stop_time_update": [ + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889014 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889095 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45011" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889200 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39623" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889250 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39624" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889298 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39625" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889370 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39628" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889447 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39631" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889494 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889549 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39634" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889575 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39635" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889620 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39636" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889796 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889845 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889875 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889939 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49319" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890001 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890036 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39642" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890229 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49323" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890308 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49325" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890369 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49326" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890400 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37425" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890437 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37426" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890480 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37427" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890529 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8606049" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890567 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37840" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890587 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39653" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890613 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39654" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890644 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49334" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890704 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49335" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890752 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49336" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694890880 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42436" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694890916 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4831072" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694890928 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42437" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694890987 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42438" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694891018 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37442" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694891046 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37850" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694891095 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "32692" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694891119 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37852" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694891145 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37853" + } + ] + } + }, + { + "id": "759bd548-4d85-4058-8803-c1ffca660bf5", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "22738-701ff27f-2", + "start_date": "20230916", + "route_id": "605" + }, + "stop_time_update": [ + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889148 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49323" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889232 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49325" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889297 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49326" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889328 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37425" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889366 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37426" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889410 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37427" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889460 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8606049" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889498 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37840" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889517 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39653" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694889543 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39654" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889573 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49334" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889632 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49335" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889678 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49336" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889798 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42436" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889832 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4831072" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889843 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42437" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694889897 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42438" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694889926 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37442" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694889950 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37850" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694889994 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "32692" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694890016 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37852" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694890039 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37853" + } + ] + } + }, + { + "id": "4af2b46e-7d07-4e8f-9a6a-e27bcbbcff65", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "22740-701ff27f-2", + "start_date": "20230916", + "route_id": "605" + }, + "stop_time_update": [ + { + "stop_sequence": 1, + "arrival": { + "delay": 0, + "time": 1694889113 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40977" + }, + { + "stop_sequence": 2, + "arrival": { + "delay": 0, + "time": 1694889310 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16206049" + }, + { + "stop_sequence": 3, + "arrival": { + "delay": 0, + "time": 1694889371 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16206051" + }, + { + "stop_sequence": 4, + "arrival": { + "delay": 0, + "time": 1694889437 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39576" + }, + { + "stop_sequence": 5, + "arrival": { + "delay": 0, + "time": 1694889487 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39214" + }, + { + "stop_sequence": 6, + "arrival": { + "delay": 0, + "time": 1694889669 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38032" + }, + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694889691 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39678" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694889710 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39679" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889741 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39580" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889768 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39581" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889783 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39582" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889794 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39583" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889815 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39584" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889853 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39585" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889934 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40196" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889977 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40151" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694890111 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39700" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694890153 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39701" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694890190 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39702" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694890202 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39703" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694890249 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39704" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694890276 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39918" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694890315 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39513" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890357 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39591" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890385 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39592" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890443 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39593" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890480 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39594" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890603 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39596" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890639 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39597" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890685 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39598" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890785 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890864 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45011" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890970 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39623" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694891023 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39624" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694891073 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39625" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694891150 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39628" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694891235 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39631" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694891288 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891352 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39634" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891381 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39635" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891435 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39636" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891650 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891711 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891751 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891834 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49319" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891917 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891964 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39642" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694892236 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49323" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694892352 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49325" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694892445 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49326" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694892492 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37425" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694892549 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37426" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694892617 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37427" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694892695 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8606049" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694892757 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37840" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694892789 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39653" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694892832 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39654" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694892882 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49334" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694892984 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49335" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694893067 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49336" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694893292 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42436" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694893357 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4831072" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694893378 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42437" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694893488 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42438" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694893547 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37442" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694893598 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37850" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694893692 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "32692" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694893739 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37852" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694893790 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37853" + } + ] + } + }, + { + "id": "707d1c6a-cd15-4ec5-87e8-025b72aabf80", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "22673-701ff27f-2", + "start_date": "20230916", + "route_id": "605" + }, + "stop_time_update": [ + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889037 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35694" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889080 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35695" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889307 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35697" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889429 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39778" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889468 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37986" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889509 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37987" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889535 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37988" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889608 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49393" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889655 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49394" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889705 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50004" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889777 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50030" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889819 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "3-Mar" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889874 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50031" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889899 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49398" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889922 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50032" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889965 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39495" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890048 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50033" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890083 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39497" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890116 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49407" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890228 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37465" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890273 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39503" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890370 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39504" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890391 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39595" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890411 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39759" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890471 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39760" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890510 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39761" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890548 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39511" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890671 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39763" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890715 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39764" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890751 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39765" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890776 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39529" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890840 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39530" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890888 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40150" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890997 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40152" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891114 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38025" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694891135 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38026" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694891164 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38027" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694891176 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38028" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694891199 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38029" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694891222 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38030" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694891252 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38031" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694891348 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16206047" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694891505 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39214" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694891570 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39215" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694891709 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16027103" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694891890 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4950739" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694892157 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40978" + } + ] + } + }, + { + "id": "f127cc61-f8d9-4215-83db-6460de2e816b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "fe471c50-7-701ff27f-2", + "start_date": "20230916", + "route_id": "606" + }, + "stop_time_update": [ + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694889221 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91159" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889337 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38026" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889358 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38027" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889378 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38028" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889396 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38029" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889421 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38030" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889448 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38031" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694889530 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16206047" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694889663 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39214" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694889717 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39215" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694889829 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16027103" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694890068 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "95000" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694890171 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40978" + } + ] + } + }, + { + "id": "745a9437-4f76-457c-9868-cfcdadea67c4", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "d6a001c3-5-701ff27f-2", + "start_date": "20230916", + "route_id": "606" + }, + "stop_time_update": [ + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889025 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50004" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889102 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50030" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889156 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "3-Mar" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889207 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50031" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889233 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49398" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889258 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50032" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889303 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39495" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889390 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50033" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889427 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39497" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889461 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49407" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889575 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37465" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889621 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39503" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889718 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39504" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889736 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39595" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889759 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39759" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889818 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39760" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889856 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39761" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889894 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39511" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890007 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39763" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890050 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39764" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890084 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39765" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890107 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39529" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890377 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91159" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890488 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38026" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890508 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38027" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890528 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38028" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694890545 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38029" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694890570 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38030" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694890597 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38031" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694890680 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16206047" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694890817 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39214" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694890874 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39215" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694890995 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16027103" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694891263 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "95000" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694891383 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40978" + } + ] + } + }, + { + "id": "2ae3d711-3a8e-45e3-9769-8e89c945e278", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "08422e60-e-701ff27f-2", + "start_date": "20230916", + "route_id": "606" + }, + "stop_time_update": [ + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889180 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40199" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889221 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39700" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889265 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39701" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889297 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39702" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889317 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39703" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889366 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39704" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889392 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39918" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889434 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39513" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889477 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39591" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889502 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39592" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889564 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39593" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889594 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39594" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889721 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39596" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889753 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39597" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889801 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39598" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889896 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889970 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45011" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890067 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39623" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890114 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39624" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890155 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39625" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890222 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39628" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890302 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39631" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890349 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890404 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39634" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890425 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39635" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890474 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39636" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890527 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49503" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890651 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890703 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890735 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890805 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49319" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890871 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891208 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49325" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891283 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40711" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891328 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40712" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891363 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40713" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891393 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40714" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891467 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8606049" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891503 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37840" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891523 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39653" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891558 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39654" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891595 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49334" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891673 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49335" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694891726 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49336" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694891879 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42436" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694891923 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4831072" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694891937 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42437" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694892020 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42438" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694892054 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37442" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694892094 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37850" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694892143 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "32692" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694892175 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37852" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694892209 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37853" + } + ] + } + }, + { + "id": "4d0e03b1-171b-4d05-a1b2-04ba23c610e7", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "248a74d6-1-701ff27f-2", + "start_date": "20230916", + "route_id": "606" + }, + "stop_time_update": [ + { + "stop_sequence": 6, + "arrival": { + "delay": 0, + "time": 1694889012 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4831075" + }, + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694889060 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49135" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694889104 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49136" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889181 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49137" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889205 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49138" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889223 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49139" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889269 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36683" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889288 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37590" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889344 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40760" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889375 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40713" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889413 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40762" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889463 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40763" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889499 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38642" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889541 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39795" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889576 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38502" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889635 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38503" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889789 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35691" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889829 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35692" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889885 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35693" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889938 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35694" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889977 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35695" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890023 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35696" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890189 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35697" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890305 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39778" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890344 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37986" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890384 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37987" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890410 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37988" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890483 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49393" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890530 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49394" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890581 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50004" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890654 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50030" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890706 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "3-Mar" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890756 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50031" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890782 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49398" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890807 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50032" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890852 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39495" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890941 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50033" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890980 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39497" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891016 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49407" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891140 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37465" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891191 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39503" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891300 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39504" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891321 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39595" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891348 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39759" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891417 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39760" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891463 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39761" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891508 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39511" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891648 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39763" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891701 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39764" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891745 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39765" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891774 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39529" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694892136 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91159" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694892293 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38026" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694892322 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38027" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694892351 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38028" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694892376 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38029" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694892412 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38030" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694892452 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38031" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694892575 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16206047" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694892788 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39214" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694892879 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39215" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694893075 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16027103" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694893534 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "95000" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694893751 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40978" + } + ] + } + }, + { + "id": "7773b2be-eaa4-4301-9729-1fa15f2c2e76", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "c930d348-a-701ff27f-2", + "start_date": "20230916", + "route_id": "606" + }, + "stop_time_update": [ + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694888949 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39628" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889037 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39631" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889087 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889145 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39634" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889168 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39635" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889219 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39636" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889273 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49503" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889397 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889449 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889481 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889548 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49319" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889610 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889917 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49325" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889982 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40711" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890021 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40712" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890051 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40713" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890077 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40714" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890139 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8606049" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890169 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37840" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890186 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39653" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890215 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39654" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890244 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49334" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890308 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49335" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890350 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49336" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890471 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42436" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890504 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4831072" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694890515 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42437" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694890579 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42438" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694890605 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37442" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694890634 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37850" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694890671 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "32692" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694890695 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37852" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694890720 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37853" + } + ] + } + }, + { + "id": "eddbf425-d866-49c5-8c1b-5c62cd31ab74", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "22949-701ff27f-2", + "start_date": "20230916", + "route_id": "607" + }, + "stop_time_update": [ + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889039 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838438" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889191 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44896" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889242 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44897" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889317 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44898" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889489 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40993" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889734 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005188" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889972 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40995" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890051 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40996" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890127 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40997" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890183 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39614" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890229 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39615" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890277 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39616" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890330 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39617" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890387 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39618" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890433 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39619" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890471 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39620" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890539 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39621" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890587 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38281" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890643 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890718 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45069" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890833 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37523" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890875 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + } + ] + } + }, + { + "id": "33560a45-e33a-4838-8061-9f98efb4aa71", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "23034-701ff27f-2", + "start_date": "20230916", + "route_id": "607" + }, + "stop_time_update": [ + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889095 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39642" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889128 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38590" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889554 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "32575" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889821 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38530" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889833 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005209" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694890063 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38531" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694890116 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8921285" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694890224 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38532" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694890275 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38533" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694890328 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38534" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694890376 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694890440 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694890476 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694890727 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38598" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890768 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38599" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890813 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38600" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890847 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38601" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890919 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38603" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890964 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38604" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694891069 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38606" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694891125 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38607" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694891178 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39403" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694891220 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44799" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694891258 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44800" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694891286 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38608" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694891359 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38609" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694891429 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38610" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694891485 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38611" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694891529 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38612" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891537 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45088" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891591 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45089" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891673 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45090" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891717 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45091" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891808 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45093" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891869 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45094" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891914 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45095" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891968 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45096" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694892083 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38622" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694892209 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38623" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694892403 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38624" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694892551 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38625" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694892940 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45102" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694892984 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45103" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694893026 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45104" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694893071 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45122" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694893410 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38575" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694893530 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38630" + } + ] + } + }, + { + "id": "6410afba-912d-41ab-b514-a5759741392b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "23036-701ff27f-2", + "start_date": "20230916", + "route_id": "607" + }, + "stop_time_update": [ + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694888747 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005209" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694888995 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38531" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889051 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8921285" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889164 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38532" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889217 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38533" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889271 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38534" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889319 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889383 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889418 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889662 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38598" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889701 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38599" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889744 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38600" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889776 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38601" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889842 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38603" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889884 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38604" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889980 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38606" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890030 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38607" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890078 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39403" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890115 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44799" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890150 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44800" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890175 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38608" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890238 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38609" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890299 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38610" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890347 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38611" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890385 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38612" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890391 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45088" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890438 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45089" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890507 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45090" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890544 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45091" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890619 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45093" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890670 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45094" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890707 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45095" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890751 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45096" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890843 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38622" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890944 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38623" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891096 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38624" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891209 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38625" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891502 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45102" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891534 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45103" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891565 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45104" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891598 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45122" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891841 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38575" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891925 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38630" + } + ] + } + }, + { + "id": "0441a8f9-0fe0-4da3-a9d2-700b6dc6fcec", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "23385-701ff27f-2", + "start_date": "20230916", + "route_id": "610" + }, + "stop_time_update": [ + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889086 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39628" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889167 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39631" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889216 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889274 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39634" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889300 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39635" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694889347 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39636" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694889529 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694889578 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694889610 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694889674 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49319" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694889737 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694889772 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39642" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694889914 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39643" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694889968 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49323" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694890005 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49324" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694890052 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49325" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694890104 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49326" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694890126 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39648" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694890176 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39649" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694890225 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49329" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694890280 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49330" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694890317 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39652" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694890345 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39653" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694890377 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39654" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694890407 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49334" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694890467 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49335" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694890512 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49336" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694890561 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39657" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694890594 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39658" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694890640 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39659" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694890673 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39660" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694890703 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39661" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694890750 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39662" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694890810 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39663" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694890857 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39664" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694890904 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39665" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694891012 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39666" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694891048 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39667" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694891135 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39668" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694891179 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39669" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694891208 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39670" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694891229 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39233" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694891275 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36752" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694891478 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39689" + } + ] + } + }, + { + "id": "9f774ec5-fb7d-4d9e-96f2-9a492deee7a6", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "23300-701ff27f-2", + "start_date": "20230916", + "route_id": "610" + }, + "stop_time_update": [ + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889049 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35697" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889151 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Jan" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889182 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42460" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889227 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35690" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889327 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35700" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889357 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35701" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889424 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35703" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889447 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35704" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889461 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35705" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889480 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35706" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889535 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35707" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889560 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35708" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889626 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38520" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889666 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38521" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889715 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38522" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889764 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38523" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889816 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38524" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889863 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38525" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694889914 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38526" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889959 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39987" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890001 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39988" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890048 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37636" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694890162 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37637" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694890211 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37639" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694890249 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39200" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694890277 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37300" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694890318 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40191" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694890354 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40192" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694890384 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40193" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694890417 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40194" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694890455 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38024" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694890496 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38025" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694890520 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38026" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694890542 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38027" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694890553 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38028" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694890579 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38029" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694890595 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38030" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694890646 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91020" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694890677 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91021" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694890716 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39214" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694890771 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39215" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694890889 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39216" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694890956 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39217" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694891012 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39218" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694891040 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39219" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694891081 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39220" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694891107 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39221" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694891188 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39424" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694891242 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91022" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694891312 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91023" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694891404 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39428" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694891441 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39429" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694891482 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39430" + } + ] + } + }, + { + "id": "4475f473-6adf-4e67-9f17-3165d9d057a6", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "23386-701ff27f-2", + "start_date": "20230916", + "route_id": "610" + }, + "stop_time_update": [ + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889061 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39589" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889116 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39516" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889163 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39517" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889232 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39611" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889256 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39612" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889389 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39615" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889439 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39616" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889494 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39617" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889552 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39618" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889596 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39619" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889637 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39620" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889704 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39621" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889762 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39623" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694889809 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39624" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889855 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39625" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889923 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39628" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889997 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39631" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694890043 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694890097 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39634" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694890122 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39635" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694890167 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39636" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694890343 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694890391 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694890423 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694890487 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49319" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694890551 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694890586 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39642" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694890733 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39643" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694890790 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49323" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694890829 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49324" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694890879 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49325" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694890935 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49326" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694890959 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39648" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694891012 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39649" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694891067 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49329" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694891127 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49330" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694891168 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39652" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694891199 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39653" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694891236 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39654" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694891269 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49334" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694891337 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49335" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694891388 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49336" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694891445 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39657" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694891484 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39658" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694891537 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39659" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694891575 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39660" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694891611 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39661" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694891667 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39662" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694891738 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39663" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694891795 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39664" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694891852 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39665" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694891984 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39666" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694892028 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39667" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694892137 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39668" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694892192 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39669" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694892229 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39670" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694892256 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39233" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694892314 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36752" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694892578 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39689" + } + ] + } + }, + { + "id": "5d2cd0a3-a6f8-4b3b-8139-f9d7f6bd3bbc", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "23299-701ff27f-2", + "start_date": "20230916", + "route_id": "610" + }, + "stop_time_update": [ + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889034 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38520" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889078 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38521" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889130 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38522" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889183 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38523" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889238 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38524" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889288 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38525" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694889342 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38526" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889390 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39987" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889432 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39988" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889481 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37636" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889599 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37637" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889649 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37639" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889687 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39200" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694889715 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37300" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694889757 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40191" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694889792 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40192" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694889823 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40193" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694889854 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40194" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694889892 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38024" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694889932 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38025" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694889956 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38026" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694889977 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38027" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694889989 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38028" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694890013 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38029" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694890029 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38030" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694890079 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91020" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694890109 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91021" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694890146 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39214" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694890199 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39215" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694890310 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39216" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694890373 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39217" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694890425 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39218" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694890451 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39219" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694890490 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39220" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694890513 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39221" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694890588 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39424" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694890637 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91022" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694890700 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91023" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694890783 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39428" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694890816 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39429" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694890853 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39430" + } + ] + } + }, + { + "id": "e1c499be-bbd8-4f99-ad9d-2e6cabe94319", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "23383-701ff27f-2", + "start_date": "20230916", + "route_id": "610" + }, + "stop_time_update": [ + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694889030 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49325" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694889087 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49326" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694889112 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39648" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694889165 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39649" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694889218 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49329" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694889276 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49330" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694889315 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39652" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694889344 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39653" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694889377 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39654" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694889407 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49334" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694889469 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49335" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694889514 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49336" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694889563 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39657" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694889596 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39658" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694889641 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39659" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694889673 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39660" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694889702 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39661" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694889748 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39662" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694889804 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39663" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694889849 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39664" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694889893 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39665" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694889992 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39666" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694890025 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39667" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694890104 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39668" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694890143 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39669" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694890169 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39670" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694890187 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39233" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694890228 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36752" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694890402 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39689" + } + ] + } + }, + { + "id": "caa7656f-50ca-47fe-819e-8aea6e408c90", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "23301-701ff27f-2", + "start_date": "20230916", + "route_id": "610" + }, + "stop_time_update": [ + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889013 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91019" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889076 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37436" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889148 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49135" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889191 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49136" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889266 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49137" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889290 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49138" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889308 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49139" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889340 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49140" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889381 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49141" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889421 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49142" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889458 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49143" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889485 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38506" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889534 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38635" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889567 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38509" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889610 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38642" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889654 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39795" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889684 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38502" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889745 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38503" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889898 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35691" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889994 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35693" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890047 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35694" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890086 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35695" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890132 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35696" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890298 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35697" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890393 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Jan" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890422 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42460" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890464 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35690" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890561 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35700" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890590 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35701" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890656 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35703" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890679 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35704" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890694 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35705" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890713 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35706" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890769 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35707" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890795 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35708" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890864 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38520" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890906 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38521" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890958 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38522" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891011 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38523" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891068 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38524" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891120 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38525" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891177 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38526" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694891229 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39987" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694891276 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39988" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694891331 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37636" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694891467 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37637" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694891525 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37639" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694891571 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39200" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694891607 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37300" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694891658 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40191" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694891702 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40192" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694891740 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40193" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694891781 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40194" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694891830 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38024" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694891883 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38025" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694891915 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38026" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694891943 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38027" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694891958 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38028" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694891992 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38029" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694892013 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38030" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694892082 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91020" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694892124 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91021" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694892177 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39214" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694892253 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39215" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694892417 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39216" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694892514 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39217" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694892595 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39218" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694892636 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39219" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694892697 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39220" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694892735 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39221" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694892858 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39424" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694892940 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91022" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694893048 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91023" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694893193 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39428" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694893252 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39429" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694893319 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39430" + } + ] + } + }, + { + "id": "710b0a30-70ce-4083-9e31-9b6171accb4f", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "23382-701ff27f-2", + "start_date": "20230916", + "route_id": "610" + }, + "stop_time_update": [ + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694889210 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39689" + } + ] + } + }, + { + "id": "bcf36d06-b8e9-4943-95c9-55306fff636e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "23482-701ff27f-2", + "start_date": "20230916", + "route_id": "611" + }, + "stop_time_update": [ + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889007 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39579" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889043 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39580" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889072 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39581" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889089 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39582" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889104 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39583" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889129 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39584" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889165 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39585" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889178 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38024" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889218 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39536" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889256 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16206048" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889275 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39537" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889293 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39428" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889322 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39429" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889358 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39430" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889467 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37638" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889502 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39587" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889535 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39588" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889587 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39589" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889637 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39516" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889681 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39517" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889746 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39611" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889769 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39612" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889821 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39613" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889843 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39614" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889892 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39615" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889942 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39616" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889992 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39617" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890049 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39618" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890091 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39619" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890132 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39620" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890200 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39621" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890258 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39623" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890306 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39624" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890351 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39625" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890420 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39628" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890496 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39631" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890544 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890600 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39634" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890625 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39635" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694890672 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39636" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694890857 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694890909 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694890943 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694891013 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49319" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694891082 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694891283 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39643" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694891434 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49325" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694891508 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49326" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694891539 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39648" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694891596 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39649" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694891658 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49329" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694891728 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49330" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694891776 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39652" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694891811 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39653" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694891854 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39654" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694891891 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49334" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694891970 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49335" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694892033 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49336" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694892100 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39657" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694892309 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42523" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694892355 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42524" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694892426 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39686" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694892444 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39687" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694892544 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39689" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694892580 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39690" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694892611 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39691" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694892657 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39692" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694892686 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39693" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694892830 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36695" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694892914 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36696" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694893026 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39229" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694893211 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39139" + } + ] + } + }, + { + "id": "5c1cb788-27e2-4f7c-a36c-f9b5e40cb9a0", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "9559013c-d7ed-429f-b4d3-a1369e376825", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "23568-701ff27f-2", + "start_date": "20230916", + "route_id": "611" + }, + "stop_time_update": [ + { + "stop_sequence": 3, + "arrival": { + "delay": 0, + "time": 1694889053 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8606050" + }, + { + "stop_sequence": 4, + "arrival": { + "delay": 0, + "time": 1694889094 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39231" + }, + { + "stop_sequence": 5, + "arrival": { + "delay": 0, + "time": 1694889176 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39232" + }, + { + "stop_sequence": 6, + "arrival": { + "delay": 0, + "time": 1694889222 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39233" + }, + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694889284 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39234" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694889312 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39235" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889409 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37044" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889446 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37045" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889532 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37046" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889571 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37047" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889612 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37048" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889649 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42431" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889665 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42432" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889723 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37578" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889755 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39660" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889790 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39659" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889834 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37581" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889854 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37436" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889920 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49135" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889960 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49136" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694890031 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49137" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890053 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49138" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890069 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49139" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890108 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49140" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890144 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49141" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890182 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49142" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890217 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49143" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890242 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38506" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890290 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38635" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890331 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38509" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890365 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38642" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890408 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39795" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890440 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38502" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890662 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35691" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890694 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35692" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890755 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35693" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890819 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35694" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890821 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890847 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35695" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890958 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35696" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891141 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35697" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891247 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Jan" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891283 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42460" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891327 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35690" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891438 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35700" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891472 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35701" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891548 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35703" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891567 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35704" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891593 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35705" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891615 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35706" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891682 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35707" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891713 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35708" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891795 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38520" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891846 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38521" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891909 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38522" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694891974 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38523" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694892043 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38524" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694892109 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38525" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694892180 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38526" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694892245 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39987" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694892305 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39988" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694892375 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37636" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694892540 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37637" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694892635 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37639" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694892693 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39200" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694892807 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40191" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694892866 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40192" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694892928 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40193" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694892985 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40194" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694893043 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38024" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694893113 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38025" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694893163 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38026" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694893216 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38027" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694893235 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38028" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694893261 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38029" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694893314 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38030" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694893529 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39214" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694893640 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39215" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694893881 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16027103" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694894206 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4950739" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694894452 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "95000" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694894728 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40978" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694894902 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16206052" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694895042 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39220" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694895135 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39221" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694895172 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16201786" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694895267 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16206050" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694895595 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39568" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694895746 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39567" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694895840 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39224" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694895993 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16201788" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694896057 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39225" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694896560 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37300" + } + ] + } + }, + { + "id": "9528b1cc-c410-429a-834e-8db9e3e9e6e5", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "23478-701ff27f-2", + "start_date": "20230916", + "route_id": "611" + }, + "stop_time_update": [ + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694889191 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42523" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694889224 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42524" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694889274 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39686" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694889287 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39687" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694889354 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39689" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694889378 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39690" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694889398 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39691" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694889427 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39692" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694889446 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39693" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694889534 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36695" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694889584 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36696" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694889648 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39229" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694889750 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39139" + } + ] + } + }, + { + "id": "eefe97c3-18a3-4f4d-9d2b-850b9573a415", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "23565-701ff27f-2", + "start_date": "20230916", + "route_id": "611" + }, + "stop_time_update": [ + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889032 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35705" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889053 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35706" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889112 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35707" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889138 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35708" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889208 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38520" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889250 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38521" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694889301 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38522" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889352 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38523" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889405 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38524" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889454 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38525" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889507 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38526" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889553 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39987" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889595 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39988" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694889643 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37636" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694889753 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37637" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694889813 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37639" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694889849 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39200" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694889918 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40191" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694889954 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40192" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694889990 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40193" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694890022 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40194" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694890055 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38024" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694890094 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38025" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694890121 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38026" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694890149 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38027" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694890160 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38028" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694890174 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38029" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694890201 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38030" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694890310 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39214" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694890365 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39215" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694890478 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16027103" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694890621 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4950739" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694890724 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "95000" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694890832 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40978" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694890898 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16206052" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694890949 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39220" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694890983 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39221" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694890996 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16201786" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694891029 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16206050" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694891140 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39568" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694891190 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39567" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694891220 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39224" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694891267 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16201788" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694891287 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39225" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694891435 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37300" + } + ] + } + }, + { + "id": "f748490d-bced-467e-a035-96facadeb767", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "23479-701ff27f-2", + "start_date": "20230916", + "route_id": "611" + }, + "stop_time_update": [ + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889074 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889133 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39634" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889160 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39635" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889209 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39636" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889394 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889444 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694889476 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694889542 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49319" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694889605 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694889784 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39643" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694889913 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49325" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694889974 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49326" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694889999 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39648" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694890046 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39649" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694890095 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49329" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694890149 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49330" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694890187 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39652" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694890214 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39653" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694890246 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39654" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694890274 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49334" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694890334 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49335" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694890379 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49336" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694890428 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39657" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694890575 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42523" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694890607 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42524" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694890655 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39686" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694890668 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39687" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694890734 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39689" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694890758 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39690" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694890778 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39691" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694890808 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39692" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694890827 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39693" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694890918 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36695" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694890971 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36696" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694891039 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39229" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694891150 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39139" + } + ] + } + }, + { + "id": "d212bba4-70d6-471f-9824-105dfcd33249", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "23633-701ff27f-2", + "start_date": "20230916", + "route_id": "612" + }, + "stop_time_update": [ + { + "stop_sequence": 1, + "arrival": { + "delay": 0, + "time": 1694889008 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49299" + }, + { + "stop_sequence": 2, + "arrival": { + "delay": 0, + "time": 1694889054 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49300" + }, + { + "stop_sequence": 3, + "arrival": { + "delay": 0, + "time": 1694889142 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49301" + }, + { + "stop_sequence": 4, + "arrival": { + "delay": 0, + "time": 1694889213 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49302" + }, + { + "stop_sequence": 5, + "arrival": { + "delay": 0, + "time": 1694889260 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49303" + }, + { + "stop_sequence": 6, + "arrival": { + "delay": 0, + "time": 1694889313 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49304" + }, + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694889341 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49305" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694889399 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49306" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889439 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49307" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889463 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49308" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889487 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49309" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889553 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49310" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889586 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889686 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35700" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889714 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35701" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889778 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35703" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889793 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35704" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889815 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35705" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889833 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35706" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889910 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49535" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889960 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49536" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694890006 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49537" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890059 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39492" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890107 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39493" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890211 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38525" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890261 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38526" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890307 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39987" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890349 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39988" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890397 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39516" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890441 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39517" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890483 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39518" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890553 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39519" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890568 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39520" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890590 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39521" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890620 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39708" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890629 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39522" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890657 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39523" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890679 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39524" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890709 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39705" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890736 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39763" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890781 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39764" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890818 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39765" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890842 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39529" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890907 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39530" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890966 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39531" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891016 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39532" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891039 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39533" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891130 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39535" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891218 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39536" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891256 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16206048" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891279 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39537" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891298 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40192" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891330 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39429" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891370 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39430" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891394 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37300" + } + ] + } + }, + { + "id": "0132290a-ca05-459d-923a-be5b363f1f4a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "23700-701ff27f-2", + "start_date": "20230916", + "route_id": "612" + }, + "stop_time_update": [ + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889037 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91027" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889092 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91028" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889151 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39723" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889205 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39724" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889280 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39725" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889409 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39624" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889502 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39627" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889602 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39631" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889654 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16057337" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889683 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39726" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889695 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Mar" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889784 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Apr" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889840 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39728" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889935 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39729" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889959 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39730" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890059 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42200" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890104 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42203" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890156 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42204" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890196 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42205" + } + ] + } + }, + { + "id": "321823d0-1048-40ae-9a31-11df019382ae", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "23776-701ff27f-2", + "start_date": "20230916", + "route_id": "613" + }, + "stop_time_update": [ + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889018 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42246" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889067 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38779" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889124 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42247" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889172 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42248" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889204 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38782" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889319 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42249" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889487 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42250" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889564 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38630" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889627 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42252" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889657 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42253" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889699 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42254" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889735 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42255" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889765 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42256" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889784 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42257" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889805 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42258" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889832 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42259" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889880 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42260" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889919 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42261" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889992 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38659" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890144 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38649" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890276 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38735" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890329 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42270" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890374 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42271" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890566 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38688" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890622 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38673" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890699 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39785" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890739 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38664" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890794 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38702" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890839 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39787" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890883 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38501" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890952 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38692" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891019 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38714" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891077 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39791" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891105 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38506" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891161 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38635" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891198 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38509" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891246 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38642" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891294 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39795" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891333 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38502" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891401 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38503" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891585 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35691" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891635 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35692" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891706 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35693" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891773 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35694" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891825 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35695" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891890 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35696" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694892113 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35697" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694892279 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39778" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694892433 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35797" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694892503 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35798" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694892552 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35799" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694892660 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35800" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694892739 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35801" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694892780 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35802" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694892862 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35803" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694892952 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38507" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694893039 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34473" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694893117 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38500" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694893199 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35808" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694893307 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35710" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694893392 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50036" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694893860 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50037" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694894185 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50038" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694894370 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50039" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694894502 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50040" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694894751 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50041" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694895160 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-15" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694895425 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-13" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694896116 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Oct" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694896346 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Aug" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694896995 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jun" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694897583 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Feb" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694898321 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Jul" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694898713 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-May" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694898938 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1508142" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694900100 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8-Jan" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694900349 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "9-Jan" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694900685 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Apr" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694901198 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Jan" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694901532 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44863" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694901908 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Mar" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694902476 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "11-Jan" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694903031 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39943" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694903401 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39944" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694905234 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39947" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694905758 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39949" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694905884 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39950" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694906764 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39952" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694908441 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34529" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694909763 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39954" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694911440 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39956" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694915436 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44967" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694917491 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44968" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694920097 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-May" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694921841 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Jun" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694925536 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Aug" + } + ] + } + }, + { + "id": "1335e721-104c-4128-be07-bf161e702f0e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "23842-701ff27f-2", + "start_date": "20230916", + "route_id": "613" + }, + "stop_time_update": [ + { + "stop_sequence": 3, + "arrival": { + "delay": 0, + "time": 1694889013 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40161" + }, + { + "stop_sequence": 4, + "arrival": { + "delay": 0, + "time": 1694889052 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39951" + }, + { + "stop_sequence": 5, + "arrival": { + "delay": 0, + "time": 1694889088 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39949" + }, + { + "stop_sequence": 6, + "arrival": { + "delay": 0, + "time": 1694889096 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39948" + }, + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694889122 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39947" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694889135 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40167" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889218 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39945" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889265 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39944" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889292 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39943" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889359 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "13-Feb" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889385 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "28-Jan" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889432 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "12-3" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889508 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "12-Jan" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889552 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "12-Feb" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889604 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Jan" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889658 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Mar" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889798 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Jun" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889856 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Aug" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889930 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jan" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889997 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Mar" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694890095 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-May" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890310 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Sep" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890400 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Nov" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890592 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-14" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890743 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-17" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890825 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-19" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890887 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-20" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890952 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-22" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694891014 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-24" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694891115 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-25" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694891436 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90003" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694891490 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90007" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694891538 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40830" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694891585 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40831" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694891682 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694891710 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39600" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891793 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37496" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891855 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45064" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891951 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694892050 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45069" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694892203 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37523" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694892260 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694892385 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49310" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694892431 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694892515 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39634" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694892553 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39635" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694892625 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39636" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694892709 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49503" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694892917 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694893001 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694893056 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694893173 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49319" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694893290 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694893355 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39642" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694893930 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49325" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694894071 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49326" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694894131 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39648" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694894244 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39649" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694894321 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45112" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694894449 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45113" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694894655 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37490" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694894813 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45115" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694894874 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45116" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694895076 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45118" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694895302 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45119" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694895442 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45120" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694895622 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45121" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694895763 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694896007 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694896168 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694896378 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694896701 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694897208 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694897588 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694897912 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694898828 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45095" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694899095 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45096" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694899573 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45098" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694899798 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45099" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694899951 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45100" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694900156 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45101" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694900449 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45102" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694900666 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45103" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694900875 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45104" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694901104 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45122" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694901604 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38630" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694902630 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42365" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694904124 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49349" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694906036 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49350" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694906870 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49351" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694907382 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49352" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694908317 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49353" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694911449 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38567" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694912842 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38568" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694913777 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38569" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694915293 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38570" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694917605 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38571" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694920164 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38572" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694930153 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40115" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694935505 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40116" + } + ] + } + }, + { + "id": "1e7ee143-45e6-424d-9c38-060054e4b95c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "23775-701ff27f-2", + "start_date": "20230916", + "route_id": "613" + }, + "stop_time_update": [ + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889031 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38659" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889197 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38649" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889336 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38735" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889391 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42270" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889437 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42271" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889630 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38688" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889685 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38673" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889760 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39785" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889798 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38664" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889850 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38702" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889893 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39787" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889933 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38501" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889998 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38692" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890059 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38714" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890111 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39791" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890136 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38506" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890187 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38635" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890219 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38509" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890262 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38642" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890304 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39795" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890337 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38502" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890395 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38503" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890551 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35691" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890592 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35692" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890651 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35693" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890706 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35694" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890747 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35695" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890800 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35696" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890975 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35697" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891102 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39778" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891218 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35797" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694891270 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35798" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694891306 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35799" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694891385 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35800" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694891442 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35801" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694891472 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35802" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694891530 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35803" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694891593 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38507" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694891654 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34473" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694891708 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38500" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694891765 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35808" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694891838 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35710" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694891896 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50036" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694892203 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50037" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694892408 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50038" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694892522 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50039" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694892602 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50040" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694892752 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50041" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694892990 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-15" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694893140 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-13" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694893516 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Oct" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694893637 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Aug" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694893967 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jun" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694894253 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Feb" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694894595 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Jul" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694894769 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-May" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694894868 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1508142" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694895353 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8-Jan" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694895452 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "9-Jan" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694895583 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Apr" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694895778 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Jan" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694895902 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44863" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694896039 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Mar" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694896240 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "11-Jan" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694896429 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39943" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694896552 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39944" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694897126 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39947" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694897279 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39949" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694897315 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39950" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694897562 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39952" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694898003 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34529" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694898325 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39954" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694898705 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39956" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694899503 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44967" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694899864 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44968" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694900280 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-May" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694900535 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Jun" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694901026 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Aug" + } + ] + } + }, + { + "id": "714251e1-c01e-4dd5-9fcf-36107615e3b1", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "23840-701ff27f-2", + "start_date": "20230916", + "route_id": "613" + }, + "stop_time_update": [ + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889052 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49503" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889185 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889237 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889270 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889337 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49319" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889402 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889436 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39642" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694889715 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49325" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889776 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49326" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889801 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39648" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889848 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39649" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889879 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45112" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889929 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45113" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694890007 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37490" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694890063 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45115" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694890084 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45116" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694890153 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45118" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694890226 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45119" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694890269 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45120" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694890323 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45121" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694890364 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694890431 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694890475 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694890529 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694890608 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694890723 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694890803 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694890868 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694891034 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45095" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694891078 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45096" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694891154 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45098" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694891188 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45099" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694891210 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45100" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694891239 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45101" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694891280 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45102" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694891309 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45103" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694891336 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45104" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694891366 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45122" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694891427 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38630" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694891541 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42365" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694891687 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49349" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694891845 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49350" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694891906 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49351" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694891941 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49352" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694892001 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49353" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694892173 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38567" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694892238 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38568" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694892278 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38569" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694892339 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38570" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694892420 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38571" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694892498 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38572" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694892722 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40115" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694892806 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40116" + } + ] + } + }, + { + "id": "48cd6c63-3c39-496e-b1d6-27644166fc5a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "23841-701ff27f-2", + "start_date": "20230916", + "route_id": "613" + }, + "stop_time_update": [ + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889022 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889101 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45069" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889219 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37523" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889260 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889349 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49310" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889381 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889437 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39634" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889463 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39635" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889509 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39636" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889562 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49503" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889687 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889736 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889767 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889831 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49319" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889893 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889926 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39642" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890199 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49325" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890260 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49326" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890286 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39648" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890333 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39649" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694890364 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45112" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694890415 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45113" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694890494 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37490" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694890552 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45115" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694890574 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45116" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694890645 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45118" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694890720 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45119" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694890766 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45120" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694890822 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45121" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694890866 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694890938 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694890984 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694891042 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694891127 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694891253 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694891341 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694891412 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694891598 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45095" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694891648 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45096" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694891733 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45098" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694891771 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45099" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694891797 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45100" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694891830 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45101" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694891877 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45102" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694891910 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45103" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694891942 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45104" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694891976 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45122" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694892046 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38630" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694892180 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42365" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694892352 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49349" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694892540 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49350" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694892612 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49351" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694892655 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49352" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694892728 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49353" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694892938 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38567" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694893017 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38568" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694893067 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38569" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694893141 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38570" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694893243 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38571" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694893341 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38572" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694893623 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40115" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694893731 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40116" + } + ] + } + }, + { + "id": "b1584218-96dc-46f4-98bb-13413262b6e2", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "23772-701ff27f-2", + "start_date": "20230916", + "route_id": "613" + }, + "stop_time_update": [ + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694889095 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Oct" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694889158 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Aug" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694889318 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jun" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694889444 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Feb" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694889580 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Jul" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694889644 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-May" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694889679 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1508142" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694889840 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8-Jan" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694889870 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "9-Jan" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694889909 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Apr" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694889965 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Jan" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694890000 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44863" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694890036 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Mar" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694890088 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "11-Jan" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694890135 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39943" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694890165 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39944" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694890294 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39947" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694890326 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39949" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694890333 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39950" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694890383 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39952" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694890466 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34529" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694890523 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39954" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694890586 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39956" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694890708 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44967" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694890758 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44968" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694890813 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-May" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694890845 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Jun" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694890904 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Aug" + } + ] + } + }, + { + "id": "14872879-7f5c-404d-98cf-6e89c3faa2b0", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "23774-701ff27f-2", + "start_date": "20230916", + "route_id": "613" + }, + "stop_time_update": [ + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889031 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38692" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889098 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38714" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889155 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39791" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889182 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38506" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889236 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38635" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889270 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38509" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889315 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38642" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889359 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39795" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889394 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38502" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889454 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38503" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889610 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35691" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889650 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35692" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889708 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35693" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889761 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35694" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889801 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35695" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889851 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35696" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890014 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35697" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890130 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39778" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890232 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35797" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890278 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35798" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890310 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35799" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890378 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35800" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694890426 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35801" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694890452 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35802" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694890501 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35803" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694890554 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38507" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694890605 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34473" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694890649 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38500" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694890695 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35808" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694890754 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35710" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694890800 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50036" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694891040 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50037" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694891196 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50038" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694891281 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50039" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694891340 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50040" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694891448 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50041" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694891617 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-15" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694891721 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-13" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694891975 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Oct" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694892055 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Aug" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694892268 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jun" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694892447 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Feb" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694892655 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Jul" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694892760 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-May" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694892817 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1508142" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694893096 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8-Jan" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694893152 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "9-Jan" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694893225 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Apr" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694893332 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Jan" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694893399 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44863" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694893472 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Mar" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694893578 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "11-Jan" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694893677 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39943" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694893741 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39944" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694894029 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39947" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694894104 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39949" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694894121 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39950" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694894240 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39952" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694894446 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34529" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694894593 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39954" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694894763 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39956" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694895105 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44967" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694895253 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44968" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694895421 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-May" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694895521 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Jun" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694895710 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Aug" + } + ] + } + }, + { + "id": "93c6adda-9ba1-49a2-9832-b8bf010469a1", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "23773-701ff27f-2", + "start_date": "20230916", + "route_id": "613" + }, + "stop_time_update": [ + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889014 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35799" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889089 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35800" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889141 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35801" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889167 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35802" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889219 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35803" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694889274 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38507" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694889326 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34473" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694889371 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38500" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694889417 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35808" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694889475 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35710" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694889520 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50036" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694889746 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50037" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694889886 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50038" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694889960 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50039" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694890011 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50040" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694890103 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50041" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694890242 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-15" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694890326 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-13" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694890523 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Oct" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694890583 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Aug" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694890739 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jun" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694890866 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Feb" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694891010 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Jul" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694891080 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-May" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694891119 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1508142" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694891299 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8-Jan" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694891335 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "9-Jan" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694891381 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Apr" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694891447 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Jan" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694891488 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44863" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694891533 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Mar" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694891597 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "11-Jan" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694891655 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39943" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694891693 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39944" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694891858 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39947" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694891900 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39949" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694891910 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39950" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694891976 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39952" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694892088 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34529" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694892167 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39954" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694892256 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39956" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694892430 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44967" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694892504 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44968" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694892586 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-May" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694892634 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Jun" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694892724 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Aug" + } + ] + } + }, + { + "id": "7aba0fb3-279d-48b9-bd26-3c183fc8c157", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "23891-701ff27f-2", + "start_date": "20230916", + "route_id": "614" + }, + "stop_time_update": [ + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889032 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49310" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889065 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889124 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39634" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889151 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39635" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889199 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39636" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889376 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889433 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889465 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889531 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49319" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889594 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889629 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39642" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889772 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39643" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889826 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49323" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889864 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49324" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889911 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49325" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889963 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49326" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889989 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39648" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890035 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39649" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890066 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45112" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890116 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45113" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890193 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37490" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890246 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45115" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890270 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45116" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890339 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45118" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890412 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45119" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890457 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45120" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890511 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45121" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694890553 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694890629 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694890666 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694890721 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694890802 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694891004 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694891078 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694891243 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45095" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694891290 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45096" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694891366 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45098" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694891404 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45099" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694891427 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45100" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694891458 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45101" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694891501 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45102" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694891531 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45103" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694891560 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45104" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694891591 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45122" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694891655 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38630" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694891776 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42365" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694891931 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49349" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694892100 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49350" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694892164 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49351" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694892202 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49352" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694892267 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49353" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694892327 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49354" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694892452 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38567" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694892522 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38568" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694892566 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38569" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694892631 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38570" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694892719 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38571" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694892804 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38572" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694893048 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40115" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694893140 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40116" + } + ] + } + }, + { + "id": "96e73fca-363c-4f58-8805-75592c96d000", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "23937-701ff27f-2", + "start_date": "20230916", + "route_id": "614" + }, + "stop_time_update": [ + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889037 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35694" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889080 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35695" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889306 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35697" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889404 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Jan" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694889439 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42460" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889476 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35690" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889573 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35700" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889602 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35701" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889666 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35703" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889681 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35704" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889702 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35705" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694889721 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35706" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694889775 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35707" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694889799 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35708" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694889814 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35709" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694889880 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40306" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694889943 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40308" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694890013 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40309" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694890128 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39504" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694890159 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39595" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694890174 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39759" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694890233 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39760" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694890272 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39761" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694890310 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39511" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694890409 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39705" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694890451 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39706" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694890469 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39707" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694890508 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39708" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694890533 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39709" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694890571 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39711" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694890610 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39712" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694890642 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39714" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694890675 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39715" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694890697 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39470" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694890719 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39471" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694890747 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39472" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694890783 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39473" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694890809 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39718" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694890834 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39494" + } + ] + } + }, + { + "id": "3deabf33-4c16-4f3f-8383-d18d6c90f984", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "23938-701ff27f-2", + "start_date": "20230916", + "route_id": "614" + }, + "stop_time_update": [ + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694888985 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42271" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889189 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38688" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889246 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38673" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889324 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39785" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889364 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38664" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889418 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38702" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889462 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39787" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889503 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38501" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889569 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38692" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889637 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38714" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889684 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39791" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889711 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38506" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889759 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38635" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889791 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38509" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889834 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38642" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889874 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39795" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889909 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38502" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889966 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38503" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890119 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35691" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890215 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35693" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890269 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35694" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890308 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35695" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890524 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35697" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890621 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Jan" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890656 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42460" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890694 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35690" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890794 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35700" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890824 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35701" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694890892 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35703" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694890908 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35704" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694890932 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35705" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694890952 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35706" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694891010 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35707" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694891037 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35708" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694891054 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35709" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694891128 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40306" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694891199 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40308" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694891279 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40309" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694891416 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39504" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694891452 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39595" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694891471 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39759" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694891543 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39760" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694891590 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39761" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694891637 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39511" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694891763 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39705" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694891816 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39706" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694891839 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39707" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694891890 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39708" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694891922 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39709" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694891973 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39711" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694892025 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39712" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694892067 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39714" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694892111 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39715" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694892142 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39470" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694892171 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39471" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694892210 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39472" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694892260 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39473" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694892296 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39718" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694892331 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39494" + } + ] + } + }, + { + "id": "65113a71-ba62-4ea3-a8f5-479b37b7513c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "23886-701ff27f-2", + "start_date": "20230916", + "route_id": "614" + }, + "stop_time_update": [ + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889024 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39523" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889049 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39524" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889083 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39705" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889108 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39918" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889156 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39513" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889224 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39592" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889285 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39593" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889318 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39594" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889430 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39505" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889460 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39506" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889488 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90003" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889533 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90007" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889574 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40830" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889612 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40831" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889692 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889714 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39600" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889780 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37496" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889828 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45064" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889899 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889972 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45069" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890081 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37523" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890120 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890205 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49310" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890235 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890290 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39634" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890314 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39635" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890360 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39636" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890531 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890588 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890619 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890686 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49319" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890751 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890787 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39642" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890940 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39643" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890998 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49323" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891039 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49324" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891091 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49325" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891150 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49326" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891179 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39648" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891231 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39649" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891267 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45112" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891325 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45113" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891416 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37490" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891479 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45115" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891507 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45116" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891591 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45118" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694891682 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45119" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694891737 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45120" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694891805 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45121" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694891858 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694891957 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694892005 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694892078 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694892186 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694892464 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694892568 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694892808 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45095" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694892876 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45096" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694892990 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45098" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694893047 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45099" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694893083 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45100" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694893130 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45101" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694893196 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45102" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694893243 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45103" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694893288 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45104" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694893337 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45122" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694893438 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38630" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694893633 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42365" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694893889 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49349" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694894176 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49350" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694894288 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49351" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694894354 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49352" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694894469 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49353" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694894577 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49354" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694894806 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38567" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694894936 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38568" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694895017 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38569" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694895140 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38570" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694895310 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38571" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694895476 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38572" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694895967 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40115" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694896160 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40116" + } + ] + } + }, + { + "id": "65b6e3df-585e-4674-a9cd-dab07c30ebe5", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "23890-701ff27f-2", + "start_date": "20230916", + "route_id": "614" + }, + "stop_time_update": [ + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889025 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49323" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889067 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49324" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889118 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49325" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889174 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49326" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889202 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39648" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889251 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39649" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889284 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45112" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889337 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45113" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889417 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37490" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889471 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45115" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889496 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45116" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694889566 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45118" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889640 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45119" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889684 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45120" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889737 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45121" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889778 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889853 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889888 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694889941 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694890018 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694890204 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694890271 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694890420 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45095" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694890460 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45096" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694890527 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45098" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694890560 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45099" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694890580 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45100" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694890607 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45101" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694890644 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45102" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694890670 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45103" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694890694 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45104" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694890720 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45122" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694890775 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38630" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694890876 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42365" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694891003 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49349" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694891139 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49350" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694891190 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49351" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694891220 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49352" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694891271 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49353" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694891318 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49354" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694891415 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38567" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694891469 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38568" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694891502 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38569" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694891552 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38570" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694891619 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38571" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694891682 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38572" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694891862 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40115" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694891929 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40116" + } + ] + } + }, + { + "id": "1ac5816d-5675-4e8b-a322-b25c52a374ef", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "23889-701ff27f-2", + "start_date": "20230916", + "route_id": "614" + }, + "stop_time_update": [ + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889074 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45120" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889133 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45121" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889176 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889256 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889293 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694889349 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694889430 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694889622 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694889689 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694889837 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45095" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694889878 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45096" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694889943 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45098" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694889975 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45099" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694889995 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45100" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694890020 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45101" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694890056 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45102" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694890081 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45103" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694890104 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45104" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694890129 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45122" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694890181 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38630" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694890276 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42365" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694890394 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49349" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694890519 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49350" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694890566 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49351" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694890593 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49352" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694890638 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49353" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694890681 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49354" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694890767 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38567" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694890815 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38568" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694890844 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38569" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694890887 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38570" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694890945 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38571" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694891000 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38572" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694891154 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40115" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694891211 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40116" + } + ] + } + }, + { + "id": "6a70238b-a293-4e28-b5fa-55f2077b8b2a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "23888-701ff27f-2", + "start_date": "20230916", + "route_id": "614" + }, + "stop_time_update": [ + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694889087 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45095" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694889131 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45096" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694889201 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45098" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694889236 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45099" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694889257 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45100" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694889284 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45101" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694889321 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45102" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694889348 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45103" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694889372 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45104" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694889398 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45122" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694889452 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38630" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694889550 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42365" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694889669 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49349" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694889793 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49350" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694889839 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49351" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694889865 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49352" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694889910 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49353" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694889950 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49354" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694890033 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38567" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694890078 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38568" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694890106 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38569" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694890146 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38570" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694890200 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38571" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694890251 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38572" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694890392 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40115" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694890443 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40116" + } + ] + } + }, + { + "id": "f27a0033-8cd9-4fb0-b338-9b86fa5acafc", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "23936-701ff27f-2", + "start_date": "20230916", + "route_id": "614" + }, + "stop_time_update": [ + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694889038 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40308" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694889114 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40309" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694889239 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39504" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694889271 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39595" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694889288 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39759" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694889350 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39760" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694889390 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39761" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694889428 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39511" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694889530 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39705" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694889572 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39706" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694889590 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39707" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694889629 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39708" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694889653 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39709" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694889691 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39711" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694889729 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39712" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694889759 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39714" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694889791 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39715" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694889813 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39470" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694889833 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39471" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694889860 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39472" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694889894 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39473" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694889919 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39718" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694889942 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39494" + } + ] + } + }, + { + "id": "673d83b0-5db4-43c5-a873-556b8fbd6580", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "24108-701ff27f-2", + "start_date": "20230916", + "route_id": "616" + }, + "stop_time_update": [ + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889098 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39602" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889128 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39603" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889232 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39604" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889281 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39605" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889333 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39606" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889356 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39607" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889384 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39608" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889427 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39609" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889468 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39548" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889551 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39549" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889600 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39550" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889677 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39551" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889801 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39552" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890022 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39554" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890070 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39493" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890159 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39515" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890233 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39558" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890277 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39985" + } + ] + } + }, + { + "id": "f8e1c463-a381-413a-81a2-a33186e9f799", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "a456fcf7-44f9-46e9-bdd1-69583aae0f10", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "24051-701ff27f-2", + "start_date": "20230916", + "route_id": "616" + }, + "stop_time_update": [ + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889056 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49391" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889078 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49392" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889186 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49393" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889235 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49394" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889289 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50004" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889363 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50030" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889415 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "3-Mar" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889466 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50031" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889491 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49398" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889516 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50032" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889559 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39495" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889639 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50033" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889682 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39497" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889713 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49407" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889826 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37465" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889871 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39503" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889960 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39504" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889992 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39595" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890111 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39509" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890291 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39510" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890397 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39511" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890512 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39763" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890556 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39764" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890591 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39765" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890615 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39529" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890677 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39530" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890897 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91159" + } + ] + } + }, + { + "id": "40c80f16-3663-4144-b4e7-361efbe53a00", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "24109-701ff27f-2", + "start_date": "20230916", + "route_id": "616" + }, + "stop_time_update": [ + { + "stop_sequence": 1, + "arrival": { + "delay": 0, + "time": 1694889008 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39584" + }, + { + "stop_sequence": 2, + "arrival": { + "delay": 0, + "time": 1694889109 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16391318" + }, + { + "stop_sequence": 3, + "arrival": { + "delay": 0, + "time": 1694889336 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40199" + }, + { + "stop_sequence": 4, + "arrival": { + "delay": 0, + "time": 1694889372 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39700" + }, + { + "stop_sequence": 5, + "arrival": { + "delay": 0, + "time": 1694889414 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39701" + }, + { + "stop_sequence": 6, + "arrival": { + "delay": 0, + "time": 1694889454 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39702" + }, + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694889466 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39703" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694889515 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39704" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889541 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39918" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889587 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39513" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889623 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39591" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889651 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39592" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889709 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39593" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889740 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39594" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889865 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39596" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889900 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39597" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889944 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39598" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694890039 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694890061 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39600" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694890132 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39602" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694890159 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39603" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694890256 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39604" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890302 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39605" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890351 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39606" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890374 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39607" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890400 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39608" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890443 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39609" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890483 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39548" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890565 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39549" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890615 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39550" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890694 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39551" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890823 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39552" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694891062 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39554" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694891116 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39493" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694891216 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39515" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694891301 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39558" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694891352 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39985" + } + ] + } + }, + { + "id": "06dd5921-72c1-462b-8dbd-c07d95c7fce2", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "24192-701ff27f-2", + "start_date": "20230916", + "route_id": "617" + }, + "stop_time_update": [ + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889005 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39980" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889108 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39981" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889218 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39982" + } + ] + } + }, + { + "id": "f9054203-af3b-45e4-9ecd-cb71ec6e73d4", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "24366-701ff27f-2", + "start_date": "20230916", + "route_id": "618" + }, + "stop_time_update": [ + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889166 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39627" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889266 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39631" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889315 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889372 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39634" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889397 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39635" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889444 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39636" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889624 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889724 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39940" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889886 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39941" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889948 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39736" + } + ] + } + }, + { + "id": "2f18df24-de20-468f-a51e-7ed60969f896", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "24261-701ff27f-2", + "start_date": "20230916", + "route_id": "618" + }, + "stop_time_update": [ + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889019 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39767" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889063 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39768" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889076 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39911" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889103 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39769" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889130 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39910" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889168 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39709" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889190 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39710" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889206 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39711" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889248 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39712" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889268 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39713" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889305 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39559" + } + ] + } + }, + { + "id": "8e07a3a4-3d24-49c4-a5d8-ea135099ebc5", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "24367-701ff27f-2", + "start_date": "20230916", + "route_id": "618" + }, + "stop_time_update": [ + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694888992 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39918" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889041 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39513" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889080 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39591" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889106 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39592" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889171 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39593" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889205 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39594" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889336 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39596" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889372 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39597" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889417 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39598" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889515 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889590 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45011" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889688 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39623" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889831 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39627" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889924 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39631" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889970 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890024 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39634" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890049 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39635" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890094 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39636" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890269 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890369 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39940" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890534 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39941" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890598 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39736" + } + ] + } + }, + { + "id": "badb879e-aadc-4e03-a3c3-432280014fc1", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "24263-701ff27f-2", + "start_date": "20230916", + "route_id": "618" + }, + "stop_time_update": [ + { + "stop_sequence": 5, + "arrival": { + "delay": 0, + "time": 1694889015 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39741" + }, + { + "stop_sequence": 6, + "arrival": { + "delay": 0, + "time": 1694889038 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40277" + }, + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694889060 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39742" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694889186 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35697" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889292 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Jan" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889321 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42460" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889359 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35690" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889457 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35700" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889486 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35701" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889546 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35703" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889574 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35704" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889585 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35705" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889607 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35706" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889661 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35707" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889686 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35708" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889710 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35709" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889800 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37522" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889833 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889929 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37465" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889974 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39503" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890064 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39504" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890095 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39595" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890110 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39759" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890169 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39760" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890208 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39761" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890245 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39511" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890360 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39763" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890402 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39764" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890438 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39765" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890446 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39701" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890479 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39766" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890513 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39767" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890554 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39768" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890566 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39911" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890592 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39769" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890618 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39910" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890654 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39709" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890675 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39710" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890691 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39711" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890732 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39712" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890752 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39713" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890789 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39559" + } + ] + } + }, + { + "id": "f512e465-e6f4-4170-9e0f-b0bf1977c09d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "24365-701ff27f-2", + "start_date": "20230916", + "route_id": "618" + }, + "stop_time_update": [ + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889165 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889271 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39940" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889440 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39941" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889504 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39736" + } + ] + } + }, + { + "id": "749de9d5-49c9-476d-9cfa-f75cdf5adda5", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "24262-701ff27f-2", + "start_date": "20230916", + "route_id": "618" + }, + "stop_time_update": [ + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889070 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35703" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889101 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35704" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889112 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35705" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889136 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35706" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889193 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35707" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889220 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35708" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889245 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35709" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889339 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37522" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889373 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889473 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37465" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889519 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39503" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889612 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39504" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889643 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39595" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889658 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39759" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889717 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39760" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889757 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39761" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889794 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39511" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889908 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39763" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889950 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39764" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889985 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39765" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889993 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39701" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890025 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39766" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890059 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39767" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890099 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39768" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890110 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39911" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890136 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39769" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890160 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39910" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890195 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39709" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890216 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39710" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890231 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39711" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890270 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39712" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890289 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39713" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890325 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39559" + } + ] + } + }, + { + "id": "fe774239-3720-4fc6-8845-91ac281b0b03", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "24460-701ff27f-2", + "start_date": "20230916", + "route_id": "619" + }, + "stop_time_update": [ + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889082 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50031" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889109 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49398" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889135 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50032" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889181 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39495" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889264 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50033" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889310 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39497" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889343 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49407" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889459 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37465" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889506 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39503" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889599 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39504" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889630 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39595" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889653 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39759" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889705 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39760" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889744 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39761" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889782 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39511" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889896 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39763" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889938 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39764" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889973 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39765" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889996 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39529" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890056 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39530" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890264 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91159" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890539 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39214" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890594 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39215" + } + ] + } + }, + { + "id": "71e1aa6a-2e80-4b2b-b527-3e01ded4c929", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "24600-701ff27f-2", + "start_date": "20230916", + "route_id": "620" + }, + "stop_time_update": [ + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889057 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50036" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889183 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39509" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889285 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39760" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889325 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39761" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889364 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39511" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889482 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39763" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889526 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39764" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889561 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39765" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889584 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39529" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889646 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39530" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889726 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6734219" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889797 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39536" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889832 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16206048" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889850 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39537" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889867 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39428" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889887 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39429" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889929 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39430" + } + ] + } + }, + { + "id": "d52f7d21-87f1-453b-b1e3-2733151ebaae", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "24602-701ff27f-2", + "start_date": "20230916", + "route_id": "620" + }, + "stop_time_update": [ + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694889191 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40273" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889210 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40272" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889267 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16039072" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889287 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35794" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889383 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35796" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889432 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35797" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889476 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35700" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889505 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35701" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889570 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35703" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889593 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35704" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889604 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35705" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889626 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35706" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889680 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35707" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889705 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35708" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889729 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35709" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889798 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38507" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889847 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34473" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889890 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38500" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889927 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35808" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889991 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35710" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890034 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50036" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890150 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39509" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890245 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39760" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890284 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39761" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890321 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39511" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890437 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39763" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890480 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39764" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890515 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39765" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890538 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39529" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890601 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39530" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890683 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6734219" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890757 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39536" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890794 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16206048" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890813 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39537" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890831 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39428" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890852 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39429" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890897 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39430" + } + ] + } + }, + { + "id": "505f544d-278c-4e22-a166-3c1d67d918b3", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "24668-701ff27f-2", + "start_date": "20230916", + "route_id": "620" + }, + "stop_time_update": [ + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889187 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49478" + } + ] + } + }, + { + "id": "9ba7b984-ccb9-416c-83af-70ebdd8b0da4", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "24601-701ff27f-2", + "start_date": "20230916", + "route_id": "620" + }, + "stop_time_update": [ + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889040 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35707" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889067 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35708" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889092 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35709" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889167 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38507" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889219 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34473" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889265 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38500" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889303 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35808" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889370 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35710" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889415 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50036" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889534 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39509" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889631 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39760" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889670 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39761" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889708 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39511" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889822 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39763" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889864 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39764" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889899 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39765" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889922 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39529" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889982 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39530" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890062 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6734219" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890132 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39536" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890167 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16206048" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890185 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39537" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890202 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39428" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890222 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39429" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890264 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39430" + } + ] + } + }, + { + "id": "73c2b6df-e2c9-4354-8ad1-4f6e3888d461", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "24669-701ff27f-2", + "start_date": "20230916", + "route_id": "620" + }, + "stop_time_update": [ + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889132 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40268" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889206 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40269" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889302 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40274" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889326 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40275" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889384 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40277" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889445 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39940" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889543 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40279" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889603 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49319" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889666 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889882 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49478" + } + ] + } + }, + { + "id": "243dca6a-0a93-40aa-a0e9-ef6c76059551", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "24745-701ff27f-2", + "start_date": "20230916", + "route_id": "621" + }, + "stop_time_update": [ + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889056 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889094 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39642" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889358 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39795" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889417 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42642" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889450 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42643" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889478 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42644" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889498 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42645" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889576 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42532" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889748 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40249" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889788 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40250" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889811 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40251" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889889 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36699" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889917 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36700" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889947 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36701" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889968 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36702" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890049 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39140" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890111 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39141" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890166 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39082" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890197 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40252" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890256 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36693" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890270 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "32731" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890310 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36691" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890363 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36690" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890389 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "3890531" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890427 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "3890533" + } + ] + } + }, + { + "id": "c1a75573-e24f-4049-b4ec-5d75dedc930d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "24822-701ff27f-2", + "start_date": "20230916", + "route_id": "621" + }, + "stop_time_update": [ + { + "stop_sequence": 1, + "arrival": { + "delay": 0, + "time": 1694889066 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40035" + }, + { + "stop_sequence": 2, + "arrival": { + "delay": 0, + "time": 1694889156 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40036" + }, + { + "stop_sequence": 3, + "arrival": { + "delay": 0, + "time": 1694889218 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36695" + }, + { + "stop_sequence": 4, + "arrival": { + "delay": 0, + "time": 1694889258 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36696" + }, + { + "stop_sequence": 5, + "arrival": { + "delay": 0, + "time": 1694889329 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39229" + }, + { + "stop_sequence": 6, + "arrival": { + "delay": 0, + "time": 1694889364 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "32587" + }, + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694889394 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39230" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694889411 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39690" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889436 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39691" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889467 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39692" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889484 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39693" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889567 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40037" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889593 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40038" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889650 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40039" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889726 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40040" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889806 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42532" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889858 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42533" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889911 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42534" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889949 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42535" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694890034 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38502" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694890092 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38503" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694890245 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35691" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694890284 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35692" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890338 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35693" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890395 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35694" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890435 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35695" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890481 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35696" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890650 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35697" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890751 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Jan" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890787 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42460" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890824 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35690" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890926 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35700" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890957 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35701" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694891027 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35703" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694891051 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35704" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694891063 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35705" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694891087 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35706" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694891147 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35707" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891175 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35708" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891201 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35709" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891304 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37522" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891342 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891455 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37465" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891510 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39503" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891628 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39504" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891659 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39595" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891679 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39759" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891754 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39760" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891803 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39761" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891850 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39511" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694892005 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39763" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694892063 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39764" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694892108 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39765" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694892143 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39529" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694892230 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39530" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694892297 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40150" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694892447 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40152" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694892511 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39536" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694892551 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16206048" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694892582 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39537" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694892609 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40192" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694892652 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39429" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694892709 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39430" + } + ] + } + }, + { + "id": "4c6d49ba-40e2-4622-99ef-e11058c92781", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "24746-701ff27f-2", + "start_date": "20230916", + "route_id": "621" + }, + "stop_time_update": [ + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889018 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39623" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889070 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39624" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889120 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39625" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889193 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39628" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889273 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39631" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889321 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889378 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39634" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889404 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39635" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889450 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39636" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889629 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889678 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889709 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889774 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49319" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889836 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889871 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39642" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890118 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39795" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890174 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42642" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890206 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42643" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890233 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42644" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890252 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42645" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890329 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42532" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890501 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40249" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890542 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40250" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890566 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40251" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890646 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36699" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890675 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36700" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890707 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36701" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890728 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36702" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890814 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39140" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890880 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39141" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890939 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39082" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890973 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40252" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891038 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36693" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891052 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "32731" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891097 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36691" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694891155 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36690" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694891185 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "3890531" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694891227 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "3890533" + } + ] + } + }, + { + "id": "898f6aab-4502-4045-ad1e-09efd086966a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "24821-701ff27f-2", + "start_date": "20230916", + "route_id": "621" + }, + "stop_time_update": [ + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889182 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35697" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889285 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Jan" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889321 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42460" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889357 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35690" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889457 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35700" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889486 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35701" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889551 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35703" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889574 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35704" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889584 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35705" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889607 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35706" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889661 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35707" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889686 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35708" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889709 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35709" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889800 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37522" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889832 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889928 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37465" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889973 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39503" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890069 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39504" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890095 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39595" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890110 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39759" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890169 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39760" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890207 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39761" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890243 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39511" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890359 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39763" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890402 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39764" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890435 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39765" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890460 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39529" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890522 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39530" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890569 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40150" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890672 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40152" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890715 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39536" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890742 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16206048" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890763 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39537" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694890781 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40192" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694890809 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39429" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694890846 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39430" + } + ] + } + }, + { + "id": "76c5770b-69cf-4964-8c34-38e81b7ad3a6", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "24747-701ff27f-2", + "start_date": "20230916", + "route_id": "621" + }, + "stop_time_update": [ + { + "stop_sequence": 2, + "arrival": { + "delay": 0, + "time": 1694889010 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40192" + }, + { + "stop_sequence": 3, + "arrival": { + "delay": 0, + "time": 1694889050 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40193" + }, + { + "stop_sequence": 4, + "arrival": { + "delay": 0, + "time": 1694889078 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40194" + }, + { + "stop_sequence": 5, + "arrival": { + "delay": 0, + "time": 1694889098 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40195" + }, + { + "stop_sequence": 6, + "arrival": { + "delay": 0, + "time": 1694889124 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40196" + }, + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694889171 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40151" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694889313 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39700" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889356 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39701" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889395 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39702" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889407 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39703" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889456 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39704" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889483 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39918" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889528 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39513" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889593 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39592" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889651 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39593" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889683 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39594" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889808 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39596" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889843 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39597" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889886 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39598" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889981 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694890055 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45011" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694890152 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39623" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890200 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39624" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890245 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39625" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890313 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39628" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890389 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39631" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890436 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890491 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39634" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890516 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39635" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890562 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39636" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890745 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890796 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890828 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890897 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49319" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890964 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694891002 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39642" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694891280 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39795" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891345 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42642" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891383 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42643" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891415 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42644" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891438 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42645" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891530 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42532" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891742 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40249" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891794 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40250" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891824 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40251" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891927 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36699" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891965 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36700" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694892006 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36701" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694892035 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36702" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694892149 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39140" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694892237 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39141" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694892318 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39082" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694892365 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40252" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694892455 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36693" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694892476 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "32731" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694892538 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36691" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694892622 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36690" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694892664 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "3890531" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694892725 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "3890533" + } + ] + } + }, + { + "id": "d1460db6-3799-4570-bec4-15ae853588b0", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "24744-701ff27f-2", + "start_date": "20230916", + "route_id": "621" + }, + "stop_time_update": [ + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889184 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40249" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889227 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40250" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889252 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40251" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889334 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36699" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889363 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36700" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889395 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36701" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889416 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36702" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889500 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39140" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889563 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39141" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889619 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39082" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889651 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40252" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889711 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36693" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889724 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "32731" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694889764 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36691" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889817 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36690" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889843 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "3890531" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889880 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "3890533" + } + ] + } + }, + { + "id": "42ea9384-0c4d-4efb-b193-5b7ab2a50191", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "24817-701ff27f-2", + "start_date": "20230916", + "route_id": "621" + }, + "stop_time_update": [ + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889031 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39504" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889058 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39595" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889075 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39759" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889139 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39760" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889180 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39761" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889218 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39511" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889339 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39763" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889383 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39764" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889417 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39765" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889443 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39529" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889505 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39530" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889552 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40150" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694889653 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40152" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889694 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39536" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889720 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16206048" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889740 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39537" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889757 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40192" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889784 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39429" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889819 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39430" + } + ] + } + }, + { + "id": "c35288af-b4ad-4275-9682-2861b11c3b34", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "24820-701ff27f-2", + "start_date": "20230916", + "route_id": "621" + }, + "stop_time_update": [ + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889023 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35704" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889034 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35705" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889058 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35706" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889117 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35707" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889144 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35708" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889169 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35709" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889265 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37522" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889299 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889400 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37465" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889447 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39503" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889545 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39504" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889571 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39595" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889587 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39759" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889647 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39760" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889686 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39761" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889722 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39511" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889838 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39763" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889880 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39764" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889913 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39765" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889938 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39529" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889998 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39530" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890044 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40150" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890144 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40152" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890185 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39536" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890210 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16206048" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890230 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39537" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694890247 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40192" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694890274 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39429" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694890309 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39430" + } + ] + } + }, + { + "id": "43ab0a05-2718-4484-b371-2da96d2758d6", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "24945-701ff27f-2", + "start_date": "20230916", + "route_id": "622" + }, + "stop_time_update": [ + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889006 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39592" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889076 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39593" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889109 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39594" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889243 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39596" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889276 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39597" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889326 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39598" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889426 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889502 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45011" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889601 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39623" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889649 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39624" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889695 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39625" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889763 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39628" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889891 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15879953" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889912 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35746" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890043 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40272" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890659 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6734217" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890872 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40257" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890911 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40256" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890963 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40255" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694891381 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39139" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694891456 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "32587" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694891486 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39230" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694891508 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36703" + } + ] + } + }, + { + "id": "8ab55ded-be22-4c2a-be52-eb4b0489034d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "24886-701ff27f-2", + "start_date": "20230916", + "route_id": "622" + }, + "stop_time_update": [ + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694888996 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39763" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889033 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39764" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889072 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39765" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889096 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39529" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889170 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39530" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889391 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91159" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889494 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39584" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889540 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39585" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889552 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38024" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889591 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39536" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889627 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16206048" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889646 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39537" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889663 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39428" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889690 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39429" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889725 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39430" + } + ] + } + }, + { + "id": "94b12a5e-d8d5-49d5-bfe6-3da767927dbb", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "24887-701ff27f-2", + "start_date": "20230916", + "route_id": "622" + }, + "stop_time_update": [ + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694888981 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35703" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889006 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35704" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889018 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35705" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889042 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35706" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889097 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35707" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889127 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35708" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889152 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35709" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889248 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37522" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889282 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889382 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37465" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889429 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39503" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889522 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39504" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889547 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39595" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889569 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39759" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889628 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39760" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889667 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39761" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889705 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39511" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889819 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39763" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889853 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39764" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889888 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39765" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889911 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39529" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889979 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39530" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890189 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91159" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890290 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39584" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890335 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39585" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890347 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38024" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890386 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39536" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890422 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16206048" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890441 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39537" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890458 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39428" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890485 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39429" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890521 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39430" + } + ] + } + }, + { + "id": "90434c2f-965a-4d1a-99d6-53b00e902996", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "24943-701ff27f-2", + "start_date": "20230916", + "route_id": "622" + }, + "stop_time_update": [ + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889131 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39139" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889199 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "32587" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889225 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39230" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889244 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36703" + } + ] + } + }, + { + "id": "471daeb5-934a-41b4-81a3-8833099aedce", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "24888-701ff27f-2", + "start_date": "20230916", + "route_id": "622" + }, + "stop_time_update": [ + { + "stop_sequence": 3, + "arrival": { + "delay": 0, + "time": 1694889188 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39141" + }, + { + "stop_sequence": 4, + "arrival": { + "delay": 0, + "time": 1694889247 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39082" + }, + { + "stop_sequence": 5, + "arrival": { + "delay": 0, + "time": 1694889281 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40252" + }, + { + "stop_sequence": 6, + "arrival": { + "delay": 0, + "time": 1694889343 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36693" + }, + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694889360 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "32731" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694890312 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40272" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694890396 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Jan" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694890429 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42460" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694890471 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35690" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694890568 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35700" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694890597 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35701" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694890663 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35703" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694890687 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35704" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694890698 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35705" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694890721 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35706" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694890774 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35707" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694890803 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35708" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694890828 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35709" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694890924 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37522" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694890959 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694891065 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37465" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694891115 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39503" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694891217 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39504" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694891245 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39595" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694891270 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39759" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694891338 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39760" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694891383 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39761" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694891427 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39511" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694891565 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39763" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694891606 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39764" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694891650 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39765" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694891679 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39529" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694891766 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39530" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694892045 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91159" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694892187 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39584" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694892251 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39585" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694892268 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38024" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694892325 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39536" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694892378 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16206048" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694892406 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39537" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694892431 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39428" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694892473 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39429" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694892527 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39430" + } + ] + } + }, + { + "id": "0a1644b2-256d-4ac5-a996-d1738535a9cb", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "24944-701ff27f-2", + "start_date": "20230916", + "route_id": "622" + }, + "stop_time_update": [ + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889040 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39625" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889114 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39628" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889250 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15879953" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889272 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35746" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889410 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40272" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890025 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6734217" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890226 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40257" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890263 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40256" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890311 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40255" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890690 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39139" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890756 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "32587" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890782 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39230" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890801 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "36703" + } + ] + } + }, + { + "id": "6a4b49df-cab9-4b7e-b595-d287be5785e5", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "742beaf6-4-701ff27f-2", + "start_date": "20230916", + "route_id": "626" + }, + "stop_time_update": [ + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694888959 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35203" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889029 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Feb" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889078 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Mar" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889112 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37465" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889215 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889293 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45011" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889394 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39623" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889443 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39624" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889508 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90000" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889558 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39628" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889634 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39631" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889680 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889735 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39634" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889760 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39635" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889805 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39636" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889857 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49503" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889980 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890028 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890059 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890123 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49319" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890185 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890220 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39642" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890496 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49325" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890569 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40711" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890612 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40712" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890645 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40713" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890663 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40714" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890728 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8606049" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890776 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37428" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890818 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37429" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890852 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37430" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890886 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37431" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890917 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37432" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890989 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40720" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891002 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40721" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891046 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40722" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891052 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40723" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891088 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40724" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891167 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40725" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694891199 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37435" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694891247 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39658" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694891295 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39659" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694891321 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39660" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694891361 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39661" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694891415 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39662" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694891483 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39663" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694891538 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49341" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694891587 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49342" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694891700 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49343" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694893476 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40735" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694893699 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40736" + } + ] + } + }, + { + "id": "5ffaee9c-8cfa-472d-b4ac-185d550277ed", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "d217be94-b-701ff27f-2", + "start_date": "20230916", + "route_id": "626" + }, + "stop_time_update": [ + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694888952 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50034" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694888996 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40903" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889029 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40904" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889159 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35815" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889189 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35816" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694889194 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35817" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889237 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35818" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889276 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35819" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889466 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35822" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889506 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35823" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889569 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35723" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889614 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35722" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694889693 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35826" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694889759 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35548" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694889844 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35547" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694889933 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50003" + } + ] + } + }, + { + "id": "da4e6172-8c11-4d08-b23a-5ad634329898", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "85b9f14e-1-701ff27f-2", + "start_date": "20230916", + "route_id": "626" + }, + "stop_time_update": [ + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694888908 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35815" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694888939 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35816" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694888944 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35817" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694888989 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35818" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889029 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35819" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889226 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35822" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889267 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35823" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889332 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35723" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889377 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35722" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694889458 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35826" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694889525 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35548" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694889611 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35547" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694889701 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50003" + } + ] + } + }, + { + "id": "6830f4f1-3904-45a3-88e5-335583a8c56a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "77ce18f2-2-701ff27f-2", + "start_date": "20230916", + "route_id": "626" + }, + "stop_time_update": [ + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694888985 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90000" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889039 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39628" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889120 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39631" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889168 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889226 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39634" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889252 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39635" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889298 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39636" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889352 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49503" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889479 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889528 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889559 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889624 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49319" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889687 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889721 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39642" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889993 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49325" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890064 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40711" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890105 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40712" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890137 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40713" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890154 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40714" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890216 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8606049" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890262 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37428" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890302 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37429" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890334 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37430" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890366 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37431" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890395 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37432" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890463 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40720" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890475 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40721" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890516 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40722" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890521 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40723" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890555 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40724" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890627 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40725" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890657 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37435" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890701 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39658" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890745 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39659" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694890768 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39660" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694890805 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39661" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694890854 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39662" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694890915 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39663" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694890964 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49341" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694891008 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49342" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694891109 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49343" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694892599 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40735" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694892776 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40736" + } + ] + } + }, + { + "id": "c832c2e7-feae-4ade-bb12-df173b8ce3c7", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "22889603-2-701ff27f-2", + "start_date": "20230916", + "route_id": "626" + }, + "stop_time_update": [ + { + "stop_sequence": 1, + "arrival": { + "delay": 0, + "time": 1694888947 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50001" + }, + { + "stop_sequence": 2, + "arrival": { + "delay": 0, + "time": 1694889053 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50002" + }, + { + "stop_sequence": 3, + "arrival": { + "delay": 0, + "time": 1694890108 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42428" + }, + { + "stop_sequence": 4, + "arrival": { + "delay": 0, + "time": 1694890147 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42429" + }, + { + "stop_sequence": 5, + "arrival": { + "delay": 0, + "time": 1694890174 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42430" + }, + { + "stop_sequence": 6, + "arrival": { + "delay": 0, + "time": 1694890233 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42431" + }, + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694890251 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42432" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694890301 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37578" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694890335 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37579" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694890370 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37580" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694890413 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37581" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694890447 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37582" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694890481 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40748" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694890543 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40749" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694890583 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42525" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694890586 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42526" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694890612 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42527" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694890659 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42528" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694890717 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37432" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694890748 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37586" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694890771 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37430" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694890791 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37588" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694890842 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37589" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890902 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37590" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890970 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40760" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890994 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40713" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694891035 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40762" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694891090 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40763" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694891129 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38642" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694891178 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39795" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694891216 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38502" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694891283 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38503" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694891467 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35691" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694891583 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35693" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694891654 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35694" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694891698 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35695" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694891765 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35696" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694891990 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35697" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694892123 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Jan" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694892173 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42460" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694892224 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35690" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694892369 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35700" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694892513 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35703" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694892537 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35704" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694892571 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35705" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694892602 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35706" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694892690 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35707" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694892732 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35708" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694892759 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35709" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694892928 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37522" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694892988 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694893060 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50034" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694893135 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40903" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694893194 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40904" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694893435 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35815" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694893493 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35816" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694893503 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35817" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694893589 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35818" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694893670 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35819" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694894095 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35822" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694894193 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35823" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694894352 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35723" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694894467 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35722" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694894683 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35826" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694894874 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35548" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694895132 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35547" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694895424 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50003" + } + ] + } + }, + { + "id": "92f52987-496a-4208-9c3b-8942ae3c99ed", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "a6bb2544-b-701ff27f-2", + "start_date": "20230916", + "route_id": "626" + }, + "stop_time_update": [ + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694888999 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49325" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889075 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40711" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889119 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40712" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889154 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40713" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889171 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40714" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889237 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8606049" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889285 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37428" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889326 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37429" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889358 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37430" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889391 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37431" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889420 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37432" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889488 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40720" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889500 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40721" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889540 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40722" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889545 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40723" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889578 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40724" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694889648 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40725" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889677 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37435" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889719 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39658" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889760 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39659" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889782 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39660" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889816 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39661" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889862 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39662" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694889918 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39663" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694889962 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49341" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694890002 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49342" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694890092 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49343" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694891271 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40735" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694891396 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40736" + } + ] + } + }, + { + "id": "f03b2f14-d5e8-4502-a73f-b44b4fe4362e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "864e29e1-7-701ff27f-2", + "start_date": "20230916", + "route_id": "626" + }, + "stop_time_update": [ + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694888964 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35691" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889066 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35693" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889127 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35694" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889163 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35695" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889217 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35696" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889391 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35697" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889487 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Jan" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889522 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42460" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889558 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35690" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889654 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35700" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889747 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35703" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889762 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35704" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889783 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35705" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889801 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35706" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889855 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35707" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889880 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35708" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889895 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35709" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889992 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37522" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890025 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890064 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50034" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890104 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40903" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890135 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40904" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890257 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35815" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890285 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35816" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890290 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35817" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890331 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35818" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890369 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35819" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890558 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35822" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694890599 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35823" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694890664 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35723" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694890710 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35722" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694890794 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35826" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694890865 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35548" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694890957 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35547" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694891056 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50003" + } + ] + } + }, + { + "id": "4bf98f39-93c9-4a59-986a-e88699a1b425", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "b9ec6b9b-c-701ff27f-2", + "start_date": "20230916", + "route_id": "626" + }, + "stop_time_update": [ + { + "stop_sequence": 3, + "arrival": { + "delay": 0, + "time": 1694888987 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35319" + }, + { + "stop_sequence": 4, + "arrival": { + "delay": 0, + "time": 1694889013 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40659" + }, + { + "stop_sequence": 5, + "arrival": { + "delay": 0, + "time": 1694889073 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35718" + }, + { + "stop_sequence": 6, + "arrival": { + "delay": 0, + "time": 1694889114 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35719" + }, + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694889156 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35720" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694889187 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35721" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889202 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35722" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889251 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35723" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889299 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35724" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889369 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35726" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889512 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35820" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889550 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35729" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889578 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35730" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889608 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35731" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889671 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35201" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889758 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35202" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889787 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35203" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889851 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Feb" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889895 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1-Mar" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889927 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37465" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694890024 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890097 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45011" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890195 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39623" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890243 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39624" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890307 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90000" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890357 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39628" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890433 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39631" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890480 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890536 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39634" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890561 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39635" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890608 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39636" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890662 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49503" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890792 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890844 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890877 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890947 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49319" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891016 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891055 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39642" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891368 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49325" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891453 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40711" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891503 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40712" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891542 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40713" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891563 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40714" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891641 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8606049" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891699 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37428" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891750 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37429" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891791 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37430" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891833 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37431" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891871 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37432" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891961 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40720" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891976 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40721" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694892032 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40722" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694892039 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40723" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694892085 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40724" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694892184 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40725" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694892226 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37435" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694892287 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39658" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694892349 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39659" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694892383 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39660" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694892435 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39661" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694892506 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39662" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694892596 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39663" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694892669 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49341" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694892735 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49342" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694892890 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49343" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694895605 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40735" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694895988 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40736" + } + ] + } + }, + { + "id": "584b28eb-74c8-4a62-ae09-aeb9e8f4f8e9", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "067a8eff-4-701ff27f-2", + "start_date": "20230916", + "route_id": "626" + }, + "stop_time_update": [ + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694888930 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37432" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694888963 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37586" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694888987 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37430" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889007 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37588" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889059 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37589" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889118 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37590" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889184 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40760" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889206 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40713" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889245 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40762" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889296 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40763" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889332 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38642" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889376 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39795" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889409 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38502" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889469 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38503" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889624 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35691" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889717 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35693" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889774 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35694" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889808 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35695" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889858 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35696" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890024 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35697" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890118 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Jan" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890153 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42460" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890188 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35690" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890284 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35700" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890377 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35703" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890392 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35704" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890414 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35705" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890433 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35706" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890488 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35707" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890513 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35708" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890529 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35709" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890630 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37522" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890665 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890706 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50034" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890749 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40903" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890782 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40904" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890913 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35815" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890943 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35816" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890948 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35817" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890994 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35818" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694891035 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35819" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694891245 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35822" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694891291 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35823" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694891365 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35723" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694891418 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35722" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694891514 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35826" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694891596 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35548" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694891704 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35547" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694891822 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50003" + } + ] + } + }, + { + "id": "fa2f9405-f619-4ff0-bdf3-1d82e9dbe67d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "d869341b-c1d8-4b51-8c03-1a5b157ef7f3", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "5e12e7c6-7-701ff27f-2", + "start_date": "20230916", + "route_id": "626" + }, + "stop_time_update": [ + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694888953 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40723" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694888989 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40724" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694889065 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40725" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889096 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37435" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889140 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39658" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889185 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39659" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889208 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39660" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889244 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39661" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889292 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39662" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694889350 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39663" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694889396 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49341" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694889437 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49342" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694889529 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49343" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694890651 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40735" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694890763 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40736" + } + ] + } + }, + { + "id": "3b2ad06c-b56d-4012-99e1-c6df96781029", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "d6a47dea-b-701ff27f-2", + "start_date": "20230916", + "route_id": "626" + }, + "stop_time_update": [ + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694888990 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49343" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694890125 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40735" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694890232 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40736" + } + ] + } + }, + { + "id": "37f4243e-6d2d-4820-b309-709c9cd7d1d5", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "549dd60c-0-701ff27f-2", + "start_date": "20230916", + "route_id": "627" + }, + "stop_time_update": [ + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889030 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889073 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45068" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889196 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37480" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889259 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889333 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40848" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889419 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Apr" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889478 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39728" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889577 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39729" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889595 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39730" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889702 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42200" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889744 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42203" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889803 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42204" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889834 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42205" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889898 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42201" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890141 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42206" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890173 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40855" + } + ] + } + }, + { + "id": "409d1e2e-bfd1-4b68-8226-11638437d0bf", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "d8148350-b-701ff27f-2", + "start_date": "20230916", + "route_id": "627" + }, + "stop_time_update": [ + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889047 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42319" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889116 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42320" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889175 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38514" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889234 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34586" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889259 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34587" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889289 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34588" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889338 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39497" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889369 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49407" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889423 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50034" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889464 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40903" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889496 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40904" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889548 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35814" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889618 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35815" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889648 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35816" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889653 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35817" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889694 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35818" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889731 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35819" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889917 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35822" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889957 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35823" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890017 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35723" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890057 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35722" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890144 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35826" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890193 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35827" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890216 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35828" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890275 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35829" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890315 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50003" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890396 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40921" + } + ] + } + }, + { + "id": "9f92c2eb-bc29-49b7-b247-1f42d7eabbad", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "656e4b95-6955-4cff-8fa5-7468bfcf6d2b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "d844b036-0-701ff27f-2", + "start_date": "20230916", + "route_id": "628" + }, + "stop_time_update": [ + { + "stop_sequence": 1, + "arrival": { + "delay": 0, + "time": 1694889201 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40863" + }, + { + "stop_sequence": 2, + "arrival": { + "delay": 0, + "time": 1694889607 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40865" + }, + { + "stop_sequence": 3, + "arrival": { + "delay": 0, + "time": 1694889794 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90003" + }, + { + "stop_sequence": 4, + "arrival": { + "delay": 0, + "time": 1694889839 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90007" + }, + { + "stop_sequence": 5, + "arrival": { + "delay": 0, + "time": 1694889879 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40830" + }, + { + "stop_sequence": 6, + "arrival": { + "delay": 0, + "time": 1694889914 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40831" + }, + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694889995 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694890011 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39600" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694890082 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37496" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694890130 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45064" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694890201 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694890241 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45068" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694890363 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37480" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694890424 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694890491 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40848" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694890574 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Apr" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694890635 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39728" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694890730 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39729" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694890755 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39730" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694890861 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42200" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694890909 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42203" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694890975 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42204" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694891009 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42205" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694891074 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42201" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694891352 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42206" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694891386 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40855" + } + ] + } + }, + { + "id": "bd167a5e-0c55-42b9-a13c-18e6fa7ffaef", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "39bc4ff9-7-701ff27f-2", + "start_date": "20230916", + "route_id": "628" + }, + "stop_time_update": [ + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889032 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49301" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889099 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49302" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889146 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49303" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889200 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49304" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889229 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49305" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889287 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49306" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889328 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49307" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889352 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49308" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889377 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49309" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889405 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42315" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889428 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42316" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889479 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42317" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889552 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42319" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889627 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42320" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889673 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38514" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889727 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34586" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889756 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34587" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889780 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34588" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889826 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39497" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889859 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49407" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889915 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50034" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889953 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40903" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889986 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40904" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890029 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35814" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890102 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35815" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890124 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35816" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890139 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35817" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890173 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35818" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890211 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35819" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890396 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35822" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890474 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38833" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890498 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40924" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890875 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40864" + } + ] + } + }, + { + "id": "a443e7d6-775f-4f61-880d-ae9eb1a6e8dd", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "7b03ef8e-e-701ff27f-2", + "start_date": "20230916", + "route_id": "632" + }, + "stop_time_update": [ + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694889077 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42210" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694889272 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42215" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694889303 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42216" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694889345 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42217" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694889421 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42218" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694889465 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42219" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694889556 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42220" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694889607 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42221" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694889674 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42222" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694889741 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42223" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694889768 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42224" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694889842 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42225" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694889905 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42226" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694889956 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42227" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694890037 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42228" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694890078 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42229" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694890155 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42230" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694890196 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42231" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694890274 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42232" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694890399 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42234" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694890468 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42235" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694890498 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42211" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694890551 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49203" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694890605 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49204" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694890615 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42503" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694890628 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34564" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694890980 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34789" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694891002 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49163" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694891867 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49208" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694891899 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49209" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694891919 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49210" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694892164 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49211" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694892203 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49212" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694892281 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49213" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694892547 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49206" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694892654 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49215" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694892684 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49216" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694892706 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49217" + }, + { + "stop_sequence": 111, + "arrival": { + "delay": 0, + "time": 1694892745 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49214" + }, + { + "stop_sequence": 112, + "arrival": { + "delay": 0, + "time": 1694892804 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49249" + }, + { + "stop_sequence": 113, + "arrival": { + "delay": 0, + "time": 1694892833 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49218" + }, + { + "stop_sequence": 114, + "arrival": { + "delay": 0, + "time": 1694892866 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49219" + }, + { + "stop_sequence": 115, + "arrival": { + "delay": 0, + "time": 1694892954 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38044" + }, + { + "stop_sequence": 116, + "arrival": { + "delay": 0, + "time": 1694893008 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38045" + }, + { + "stop_sequence": 117, + "arrival": { + "delay": 0, + "time": 1694893134 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49220" + }, + { + "stop_sequence": 118, + "arrival": { + "delay": 0, + "time": 1694893240 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49221" + }, + { + "stop_sequence": 119, + "arrival": { + "delay": 0, + "time": 1694893268 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49222" + }, + { + "stop_sequence": 120, + "arrival": { + "delay": 0, + "time": 1694893283 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49223" + }, + { + "stop_sequence": 121, + "arrival": { + "delay": 0, + "time": 1694893303 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38049" + }, + { + "stop_sequence": 122, + "arrival": { + "delay": 0, + "time": 1694893339 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49224" + }, + { + "stop_sequence": 123, + "arrival": { + "delay": 0, + "time": 1694893454 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49253" + }, + { + "stop_sequence": 124, + "arrival": { + "delay": 0, + "time": 1694893580 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49226" + }, + { + "stop_sequence": 125, + "arrival": { + "delay": 0, + "time": 1694893631 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49227" + }, + { + "stop_sequence": 126, + "arrival": { + "delay": 0, + "time": 1694893689 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49229" + }, + { + "stop_sequence": 127, + "arrival": { + "delay": 0, + "time": 1694893722 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49228" + }, + { + "stop_sequence": 128, + "arrival": { + "delay": 0, + "time": 1694893795 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49230" + }, + { + "stop_sequence": 129, + "arrival": { + "delay": 0, + "time": 1694893883 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49235" + }, + { + "stop_sequence": 130, + "arrival": { + "delay": 0, + "time": 1694894293 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49232" + }, + { + "stop_sequence": 131, + "arrival": { + "delay": 0, + "time": 1694894964 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40342" + }, + { + "stop_sequence": 132, + "arrival": { + "delay": 0, + "time": 1694895257 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40343" + }, + { + "stop_sequence": 133, + "arrival": { + "delay": 0, + "time": 1694895457 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49243" + } + ] + } + }, + { + "id": "ade68416-7dfa-4fc7-b381-83fe1b6f210f", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "47a2a852-d-701ff27f-2", + "start_date": "20230916", + "route_id": "632" + }, + "stop_time_update": [ + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889099 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42282" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889158 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42283" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889226 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49279" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889307 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42285" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889397 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42286" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889413 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42287" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889467 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42288" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889506 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42289" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889583 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42290" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889637 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42291" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889722 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42292" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889791 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42293" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889964 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42294" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890089 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42295" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890200 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42296" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890322 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42297" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890417 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42298" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890480 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42299" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890521 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49295" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890642 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49296" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890730 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49297" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890768 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49298" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890837 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49299" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694890881 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49300" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694890968 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49301" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694891040 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49302" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694891088 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49303" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694891144 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49304" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694891175 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49305" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694891237 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49306" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694891281 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49307" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694891308 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49308" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694891335 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49309" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694891412 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49310" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694891449 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694891477 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39633" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694891514 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39634" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694891544 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39635" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694891594 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39636" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694891663 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49503" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694891820 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694891883 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694891923 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694892010 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49319" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694892095 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694892143 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39642" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694892547 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49325" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694892643 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49326" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694892684 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39648" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694892760 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39649" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694892843 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49329" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694892936 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49330" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694893002 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39652" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694893050 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39653" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694893108 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39654" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694893161 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49334" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694893270 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49335" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694893357 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49336" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694893533 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37437" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694893640 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49337" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694893699 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39661" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694893779 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39662" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694893904 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39663" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694894005 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49341" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694894098 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49342" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694894316 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49343" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694894791 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49344" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694895210 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49345" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694895718 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49346" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694895938 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49347" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694896780 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49348" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694897245 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49349" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694897870 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49350" + }, + { + "stop_sequence": 111, + "arrival": { + "delay": 0, + "time": 1694898127 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49351" + }, + { + "stop_sequence": 112, + "arrival": { + "delay": 0, + "time": 1694898279 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49352" + }, + { + "stop_sequence": 113, + "arrival": { + "delay": 0, + "time": 1694898547 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49353" + }, + { + "stop_sequence": 114, + "arrival": { + "delay": 0, + "time": 1694898805 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49354" + }, + { + "stop_sequence": 115, + "arrival": { + "delay": 0, + "time": 1694899071 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49355" + }, + { + "stop_sequence": 116, + "arrival": { + "delay": 0, + "time": 1694899631 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42244" + }, + { + "stop_sequence": 117, + "arrival": { + "delay": 0, + "time": 1694899714 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49356" + }, + { + "stop_sequence": 118, + "arrival": { + "delay": 0, + "time": 1694900210 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49357" + }, + { + "stop_sequence": 119, + "arrival": { + "delay": 0, + "time": 1694900409 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49358" + }, + { + "stop_sequence": 120, + "arrival": { + "delay": 0, + "time": 1694900818 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 121, + "arrival": { + "delay": 0, + "time": 1694901281 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 122, + "arrival": { + "delay": 0, + "time": 1694902395 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 123, + "arrival": { + "delay": 0, + "time": 1694902696 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 124, + "arrival": { + "delay": 0, + "time": 1694903245 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 125, + "arrival": { + "delay": 0, + "time": 1694903855 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 126, + "arrival": { + "delay": 0, + "time": 1694904346 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + } + ] + } + }, + { + "id": "31c19356-cc4c-4be4-84db-917e836ed536", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "16c9a590-a-701ff27f-2", + "start_date": "20230916", + "route_id": "632" + }, + "stop_time_update": [ + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694889076 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49237" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694889120 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49238" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889230 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38096" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889327 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49248" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889368 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49254" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889402 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49255" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889458 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49256" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889596 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49216" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889634 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49217" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889658 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49214" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889705 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49218" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889728 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49257" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889846 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49258" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889901 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49259" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889909 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49260" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694890073 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49261" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694890103 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49262" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890128 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49263" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890898 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34549" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694891263 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49264" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694891266 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49265" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694891310 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49266" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694891372 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49267" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694891456 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42274" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694891547 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42275" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694891595 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42276" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694891695 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42277" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694891796 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42278" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694891848 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42279" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694891952 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42280" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694892008 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42281" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694892108 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42282" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694892184 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42283" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694892275 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49279" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694892388 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42285" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694892518 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42286" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694892543 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42287" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694892625 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42288" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694892685 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42289" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694892810 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42290" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694892900 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42291" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694893047 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42292" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694893171 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42293" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694893506 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42294" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694893767 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42295" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694894015 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42296" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694894308 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42297" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694894549 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42298" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694894717 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42299" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694894832 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49295" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694895178 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49296" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694895448 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49297" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694895569 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49298" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694895794 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49299" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694895945 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49300" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694896253 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49301" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694896520 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49302" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694896705 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49303" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694896928 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49304" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694897054 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49305" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694897316 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49306" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694897509 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49307" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694897630 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49308" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694897754 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49309" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694898118 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49310" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694898295 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694898436 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39633" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694898625 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39634" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694898782 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39635" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694899056 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39636" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694899441 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49503" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694900398 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694900816 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694901097 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694901724 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49319" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694902385 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694902781 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39642" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694906845 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49325" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694908072 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49326" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694908635 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39648" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694909739 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39649" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694911053 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49329" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694912696 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49330" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694913961 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39652" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694914980 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39653" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694916276 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39654" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694917554 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49334" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694920488 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49335" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694923239 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49336" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694930170 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37437" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694935604 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49337" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694939216 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39661" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694944910 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39662" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694956475 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39663" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694969551 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49341" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694986250 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49342" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1695071303 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49343" + } + ] + } + }, + { + "id": "454294b1-5407-4762-a00a-4cdc0a0d5e64", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "71aa25d5-0-701ff27f-2", + "start_date": "20230916", + "route_id": "632" + }, + "stop_time_update": [ + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889051 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38509" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889089 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38642" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889136 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39795" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889161 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38502" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889233 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38503" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889394 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35691" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889490 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35693" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889548 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35694" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889583 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35695" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889635 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35696" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889803 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35697" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889897 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Jan" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889931 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42460" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889981 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39726" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890002 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Mar" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890082 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Apr" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890137 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39728" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890232 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39729" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694890256 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39730" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694890357 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42200" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694890402 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42203" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694890455 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42204" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694890496 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42205" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694890556 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42201" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694890804 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42206" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694890868 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42207" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694890930 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42208" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694891063 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42564" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694891180 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42214" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694891295 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42209" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694891430 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42210" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694891650 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42215" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694891687 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42216" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694891738 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42217" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694891831 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42218" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694891886 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42219" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694892005 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42220" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694892074 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42221" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694892166 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42222" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694892261 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42223" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694892301 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42224" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694892410 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42225" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694892506 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42226" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694892586 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42227" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694892716 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42228" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694892783 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42229" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694892914 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42230" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694892985 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42231" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694893125 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42232" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694893359 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42234" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694893494 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42235" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694893554 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42211" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694893661 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49203" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694893773 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49204" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694893794 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42503" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694893821 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34564" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694894631 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34789" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694894688 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49163" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694897352 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49208" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694897476 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49209" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694897552 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49210" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694898557 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49211" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694898727 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49212" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694899081 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49213" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694900410 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49206" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694901001 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49215" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694901175 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49216" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694901303 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49217" + }, + { + "stop_sequence": 111, + "arrival": { + "delay": 0, + "time": 1694901532 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49214" + }, + { + "stop_sequence": 112, + "arrival": { + "delay": 0, + "time": 1694901894 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49249" + }, + { + "stop_sequence": 113, + "arrival": { + "delay": 0, + "time": 1694902076 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49218" + }, + { + "stop_sequence": 114, + "arrival": { + "delay": 0, + "time": 1694902283 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49219" + }, + { + "stop_sequence": 115, + "arrival": { + "delay": 0, + "time": 1694902869 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38044" + }, + { + "stop_sequence": 116, + "arrival": { + "delay": 0, + "time": 1694903241 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38045" + }, + { + "stop_sequence": 117, + "arrival": { + "delay": 0, + "time": 1694904166 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49220" + }, + { + "stop_sequence": 118, + "arrival": { + "delay": 0, + "time": 1694905008 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49221" + }, + { + "stop_sequence": 119, + "arrival": { + "delay": 0, + "time": 1694905235 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49222" + }, + { + "stop_sequence": 120, + "arrival": { + "delay": 0, + "time": 1694905363 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49223" + }, + { + "stop_sequence": 121, + "arrival": { + "delay": 0, + "time": 1694905537 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38049" + }, + { + "stop_sequence": 122, + "arrival": { + "delay": 0, + "time": 1694905842 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49224" + }, + { + "stop_sequence": 123, + "arrival": { + "delay": 0, + "time": 1694906897 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49253" + }, + { + "stop_sequence": 124, + "arrival": { + "delay": 0, + "time": 1694908157 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49226" + }, + { + "stop_sequence": 125, + "arrival": { + "delay": 0, + "time": 1694908691 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49227" + }, + { + "stop_sequence": 126, + "arrival": { + "delay": 0, + "time": 1694909342 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49229" + }, + { + "stop_sequence": 127, + "arrival": { + "delay": 0, + "time": 1694909725 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49228" + }, + { + "stop_sequence": 128, + "arrival": { + "delay": 0, + "time": 1694910599 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49230" + }, + { + "stop_sequence": 129, + "arrival": { + "delay": 0, + "time": 1694911727 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49235" + }, + { + "stop_sequence": 130, + "arrival": { + "delay": 0, + "time": 1694918349 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49232" + }, + { + "stop_sequence": 131, + "arrival": { + "delay": 0, + "time": 1694938305 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40342" + }, + { + "stop_sequence": 132, + "arrival": { + "delay": 0, + "time": 1694955553 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40343" + }, + { + "stop_sequence": 133, + "arrival": { + "delay": 0, + "time": 1694974624 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49243" + } + ] + } + }, + { + "id": "e6dc7aa2-2c8b-442b-a9d2-5ff726cdc11b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "63740513-9-701ff27f-2", + "start_date": "20230916", + "route_id": "632" + }, + "stop_time_update": [ + { + "stop_sequence": 1, + "arrival": { + "delay": 0, + "time": 1694889097 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38560" + }, + { + "stop_sequence": 2, + "arrival": { + "delay": 0, + "time": 1694889112 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38697" + }, + { + "stop_sequence": 3, + "arrival": { + "delay": 0, + "time": 1694889159 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38646" + }, + { + "stop_sequence": 4, + "arrival": { + "delay": 0, + "time": 1694889199 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38632" + }, + { + "stop_sequence": 5, + "arrival": { + "delay": 0, + "time": 1694889279 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38767" + }, + { + "stop_sequence": 6, + "arrival": { + "delay": 0, + "time": 1694889343 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38768" + }, + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694889392 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38769" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694889488 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42244" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889566 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42245" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889608 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42246" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889661 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38779" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889706 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42247" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889751 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42248" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889781 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38782" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889890 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42249" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889995 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42421" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694890194 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42422" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694890272 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42423" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694890381 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42424" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694890566 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42425" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694890752 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42426" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694890808 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42427" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694890839 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42428" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890879 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42429" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890907 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42430" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890966 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42431" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890989 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42432" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694891043 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37578" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694891080 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42434" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694891134 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42435" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694891183 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4831075" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694891233 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49135" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694891279 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49136" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694891361 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49137" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694891388 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49138" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694891407 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49139" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694891443 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49140" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694891491 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49141" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891537 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49142" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891580 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49143" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891613 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38506" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891673 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38635" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891723 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38509" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891767 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38642" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891822 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39795" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891853 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38502" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891941 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38503" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694892151 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35691" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694892284 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35693" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694892367 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35694" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694892419 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35695" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694892496 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35696" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694892762 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35697" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694892920 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Jan" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694892980 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42460" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694893069 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39726" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694893107 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Mar" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694893255 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Apr" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694893362 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39728" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694893551 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39729" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694893600 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39730" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694893814 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42200" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694893913 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42203" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694894033 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42204" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694894129 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42205" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694894271 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42201" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694894907 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42206" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694895087 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42207" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694895265 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42208" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694895669 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42564" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694896046 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42214" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694896445 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42209" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694896943 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42210" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694897845 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42215" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694898009 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42216" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694898238 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42217" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694898680 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42218" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694898952 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42219" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694899575 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42220" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694899956 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42221" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694900494 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42222" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694901081 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42223" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694901340 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42224" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694902090 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42225" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694902795 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42226" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694903426 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42227" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694904535 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42228" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694905150 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42229" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694906462 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42230" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694907231 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42231" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694908896 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42232" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694912245 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42234" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694914562 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42235" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694915710 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42211" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694917982 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49203" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694920692 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49204" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694921231 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42503" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694921965 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34564" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694971782 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34789" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694980304 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49163" + } + ] + } + }, + { + "id": "88558a68-3bf9-45f1-a3b7-519e893aed48", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "9433f1f7-2-701ff27f-2", + "start_date": "20230916", + "route_id": "633" + }, + "stop_time_update": [ + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694888986 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35808" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889056 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35710" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889104 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50036" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889206 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35712" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889304 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35713" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889380 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35817" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889423 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35818" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889453 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49532" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889601 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49487" + } + ] + } + }, + { + "id": "9621c27e-22a7-4605-932d-9bd5dcb11c60", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "f33f6815-5-701ff27f-2", + "start_date": "20230916", + "route_id": "633" + }, + "stop_time_update": [ + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694888980 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49514" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889045 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49516" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889126 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49517" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889158 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49511" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889273 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49481" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889297 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49485" + } + ] + } + }, + { + "id": "521d3e63-6042-435e-ad46-b5c6f29d4889", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "db21da87-b-701ff27f-2", + "start_date": "20230916", + "route_id": "634" + }, + "stop_time_update": [ + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694888978 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50032" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889024 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39495" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889115 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50033" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889153 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39497" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889189 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49407" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889248 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50034" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889288 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40903" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889322 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40904" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889367 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35814" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889434 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35815" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889469 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35816" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889482 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35817" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889516 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35818" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889554 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35819" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889616 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49417" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889643 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49420" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889690 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49421" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889717 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49422" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889763 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49423" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889794 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49539" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889916 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49424" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889983 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49374" + } + ] + } + }, + { + "id": "2691e208-7676-4ce6-a0e8-1e607fe9bfd7", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "45c13cfe-f-701ff27f-2", + "start_date": "20230916", + "route_id": "634" + }, + "stop_time_update": [ + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889062 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37523" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889100 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889200 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49310" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889233 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889336 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35700" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889366 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35701" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889432 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35703" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889455 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35704" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889466 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35705" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889488 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35706" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889567 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49535" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889617 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49536" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889663 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49537" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889718 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39492" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889793 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49472" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889888 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49432" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889919 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49386" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890091 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49383" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890190 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49381" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890370 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49505" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890523 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49475" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890609 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49476" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890888 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49478" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890929 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49479" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890991 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49480" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891042 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49482" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891091 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49483" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891144 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49484" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891154 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49481" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891191 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49485" + } + ] + } + }, + { + "id": "7ebd6901-2e49-460f-a9b5-e35937cd8444", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "a380b886-6-701ff27f-2", + "start_date": "20230916", + "route_id": "634" + }, + "stop_time_update": [ + { + "stop_sequence": 6, + "arrival": { + "delay": 0, + "time": 1694889029 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49373" + }, + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694889095 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49376" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694889183 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49377" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889234 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49520" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889314 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49379" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889372 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49380" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889495 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49382" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889609 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49384" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889623 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49385" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889761 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49387" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889868 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49388" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889905 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49389" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889946 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49390" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694890001 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49391" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694890020 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49392" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694890120 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49393" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694890166 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49394" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694890216 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50004" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890287 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50030" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890337 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "3-Mar" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890385 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50031" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890410 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49398" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890434 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50032" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890477 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39495" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890562 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50033" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890599 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39497" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890633 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49407" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890691 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50034" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890731 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40903" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890765 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40904" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890811 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35814" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890880 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35815" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890917 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35816" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890930 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35817" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890966 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35818" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891007 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35819" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891074 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49417" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891104 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49420" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891156 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49421" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891186 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49422" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891239 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49423" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891274 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49539" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891416 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49424" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891496 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49374" + } + ] + } + }, + { + "id": "4708858d-32c8-452d-ab08-8c441cf849b3", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "4c7e6b56-9-701ff27f-2", + "start_date": "20230916", + "route_id": "634" + }, + "stop_time_update": [ + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889025 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35820" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889055 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35729" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889081 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35730" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889114 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35731" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889181 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35201" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889267 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35202" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889376 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90001" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889464 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889478 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39600" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889552 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37496" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889603 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45064" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889675 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889763 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37520" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889853 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37523" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889888 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889981 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49310" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890012 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890110 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35700" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890139 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35701" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890202 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35703" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890225 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35704" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890235 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35705" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890257 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35706" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890335 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49535" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890384 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49536" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890431 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49537" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890486 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39492" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890563 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49472" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890661 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49432" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890693 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49386" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890875 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49383" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890981 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49381" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891179 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49505" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891351 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49475" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891449 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49476" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891777 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49478" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891825 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49479" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891900 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49480" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891962 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49482" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694892021 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49483" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694892087 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49484" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694892099 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49481" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694892145 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49485" + } + ] + } + }, + { + "id": "b71b6505-ef1c-4c0f-913d-ff49eb24bff7", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "c83efe61-5-701ff27f-2", + "start_date": "20230916", + "route_id": "634" + }, + "stop_time_update": [ + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889021 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49393" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889071 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49394" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889125 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50004" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889201 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50030" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889254 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "3-Mar" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889304 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50031" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889330 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49398" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889355 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50032" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889399 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39495" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889485 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50033" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889521 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39497" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889555 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49407" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889612 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50034" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889650 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40903" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889683 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40904" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889727 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35814" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889792 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35815" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889826 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35816" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889838 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35817" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889872 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35818" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889909 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35819" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889970 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49417" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889997 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49420" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890043 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49421" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890070 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49422" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890116 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49423" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890147 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49539" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890269 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49424" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890336 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49374" + } + ] + } + }, + { + "id": "fdab2b7c-7c45-48ab-96bf-13f20fcaf40c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "09f9f4d9-a-701ff27f-2", + "start_date": "20230916", + "route_id": "636" + }, + "stop_time_update": [ + { + "stop_sequence": 4, + "arrival": { + "delay": 0, + "time": 1694889070 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40989" + }, + { + "stop_sequence": 5, + "arrival": { + "delay": 0, + "time": 1694889158 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40985" + }, + { + "stop_sequence": 6, + "arrival": { + "delay": 0, + "time": 1694889201 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40973" + }, + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694889228 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40983" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694889271 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40984" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889352 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40990" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889414 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40991" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889690 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40974" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694890278 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40995" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694890358 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40996" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694890433 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40997" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694890487 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39614" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694890537 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39615" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694890588 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39616" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694890641 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39617" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694890700 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39618" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694890744 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39619" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694890787 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39620" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694890859 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39621" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694890909 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38281" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890967 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694891044 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45069" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694891163 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37523" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694891213 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694891282 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40848" + } + ] + } + }, + { + "id": "726f1e30-7ef7-429e-bf06-1f1f3ae5661b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "a966cd42-9-701ff27f-2", + "start_date": "20230916", + "route_id": "725" + }, + "stop_time_update": [ + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694888999 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39634" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889023 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39635" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889076 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39636" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889132 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49503" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889259 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889312 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889344 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889413 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49319" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889476 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889787 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49325" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889843 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49326" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889866 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39648" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889916 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39649" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889951 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45112" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890001 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45113" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890070 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37490" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890131 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45115" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890155 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45116" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890224 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45118" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890297 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45119" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890340 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45120" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890395 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45121" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890436 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890512 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890539 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890600 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890677 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890732 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38539" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890801 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890875 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694890946 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694891049 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38546" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694891181 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694891254 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694891320 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694891430 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38551" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694891530 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694891626 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694891689 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694891828 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694891854 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694891924 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694891988 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694892037 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694892128 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38560" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694892180 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694892218 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38562" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694892353 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40539" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694892420 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40540" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694892476 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40541" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694892663 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40543" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694892685 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41943" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694892836 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40544" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694892866 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16705477" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694892943 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40545" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694893031 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40546" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694893085 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40547" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694893172 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40548" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694893562 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40590" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694893677 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40591" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694893865 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40592" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694894208 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41947" + } + ] + } + }, + { + "id": "db34b698-d115-4177-a222-aade17763b7a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "9994fa86-6-701ff27f-2", + "start_date": "20230916", + "route_id": "725" + }, + "stop_time_update": [ + { + "stop_sequence": 2, + "arrival": { + "delay": 0, + "time": 1694889875 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38817" + }, + { + "stop_sequence": 3, + "arrival": { + "delay": 0, + "time": 1694889922 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38825" + }, + { + "stop_sequence": 4, + "arrival": { + "delay": 0, + "time": 1694889976 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38826" + }, + { + "stop_sequence": 5, + "arrival": { + "delay": 0, + "time": 1694889991 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38827" + }, + { + "stop_sequence": 6, + "arrival": { + "delay": 0, + "time": 1694890001 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38828" + }, + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694890026 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38829" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694890057 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38830" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694890115 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38831" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694890253 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38832" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694890287 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38833" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694890320 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38834" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694890367 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35726" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694890508 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35820" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694890542 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35729" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694890565 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35730" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694890606 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35731" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694890662 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35201" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694890752 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35202" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694890864 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90001" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694890956 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694890980 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39600" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694891050 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37496" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694891103 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45064" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694891184 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694891264 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45069" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694891388 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37523" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694891440 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694891533 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49310" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694891578 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694891646 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39634" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694891672 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39635" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694891733 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39636" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694891800 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49503" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694891957 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694892026 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694892068 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694892161 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49319" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694892249 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694892723 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49325" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694892816 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49326" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694892854 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39648" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694892941 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39649" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694893003 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45112" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694893093 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45113" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694893220 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37490" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694893338 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45115" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694893384 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45116" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694893521 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45118" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694893672 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45119" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694893765 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45120" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694893883 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45121" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694893975 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694894149 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694894215 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694894360 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694894554 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694894694 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38539" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694894877 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694895084 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694895285 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694895596 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38546" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694896015 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694896260 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694896491 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694896894 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38551" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694897281 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694897674 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694897945 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694898578 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694898702 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694899043 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694899369 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694899626 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694900133 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38560" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694900431 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694900660 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38562" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694901509 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40539" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694901958 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40540" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694902351 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40541" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694903786 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40543" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694903969 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41943" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694905304 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40544" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694905584 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16705477" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694906351 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40545" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694907284 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40546" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694907881 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40547" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694908931 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40548" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694914802 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40590" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694917056 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40591" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694921423 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40592" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694932985 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41947" + } + ] + } + }, + { + "id": "9a5b8f2e-3f5c-4ba7-b1ac-a07eb49d142f", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "2bf60d47-6900-4dbc-8f96-05ff79f566ae", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "ae8c2cde-a-701ff27f-2", + "start_date": "20230916", + "route_id": "725" + }, + "stop_time_update": [ + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889016 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45115" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889042 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45116" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889117 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45118" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889195 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45119" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889241 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45120" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889297 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45121" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889339 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889416 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889444 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889504 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694889580 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889633 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38539" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889698 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889768 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889833 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889928 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38546" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694890045 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694890108 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694890165 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694890259 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38551" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694890342 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694890420 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694890471 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694890582 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694890602 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694890657 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694890706 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694890743 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694890812 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38560" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694890851 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694890880 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38562" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694890979 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40539" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694891027 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40540" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694891067 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40541" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694891199 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40543" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694891215 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41943" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694891319 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40544" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694891339 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16705477" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694891392 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40545" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694891451 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40546" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694891486 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40547" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694891544 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40548" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694891793 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40590" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694891865 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40591" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694891980 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40592" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694892184 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41947" + } + ] + } + }, + { + "id": "18acfe3f-4de2-417c-9886-52c7cafc18c0", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "bc15b225-4-701ff27f-2", + "start_date": "20230916", + "route_id": "725" + }, + "stop_time_update": [ + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694889043 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694889073 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38562" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694889172 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40539" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694889219 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40540" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694889257 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40541" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694889381 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40543" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694889395 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41943" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694889488 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40544" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694889505 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16705477" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694889551 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40545" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694889601 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40546" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694889631 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40547" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694889679 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40548" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694889877 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40590" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694889931 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40591" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694890016 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40592" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694890162 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41947" + } + ] + } + }, + { + "id": "336b2186-edc4-4010-a314-0b9105677e96", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "0a943e8a-0-701ff27f-2", + "start_date": "20230916", + "route_id": "725" + }, + "stop_time_update": [ + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889038 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35730" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889081 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35731" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889140 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35201" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889232 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35202" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889344 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90001" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889433 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889456 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39600" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889522 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37496" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889571 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45064" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889644 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889715 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45069" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889823 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37523" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889867 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889944 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49310" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889981 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890035 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39634" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890057 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39635" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890105 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39636" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890157 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49503" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890276 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890327 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890358 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890425 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49319" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890488 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890806 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49325" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890865 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49326" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890890 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39648" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890944 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39649" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890982 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45112" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891037 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45113" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891113 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37490" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891182 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45115" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891208 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45116" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891287 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45118" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891371 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45119" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891422 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45120" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891486 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45121" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891535 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891626 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891659 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891733 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891829 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694891897 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38539" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694891984 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694892079 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694892170 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694892307 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38546" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694892483 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694892582 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694892674 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694892828 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38551" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694892969 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694893108 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694893201 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694893407 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694893446 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694893552 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694893649 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694893725 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694893868 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38560" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694893949 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694894010 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38562" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694894227 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40539" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694894336 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40540" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694894428 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40541" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694894743 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40543" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694894780 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41943" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694895042 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40544" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694895093 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16705477" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694895230 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40545" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694895388 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40546" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694895484 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40547" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694895644 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40548" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694896380 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40590" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694896607 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40591" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694896984 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40592" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694897702 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41947" + } + ] + } + }, + { + "id": "ebb4af2c-af4f-4214-b56c-d0dc610a7d39", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "caf08a3a-f-701ff27f-2", + "start_date": "20230916", + "route_id": "725" + }, + "stop_time_update": [ + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694889019 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40548" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694889231 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40590" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694889289 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40591" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694889377 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40592" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694889527 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41947" + } + ] + } + }, + { + "id": "b1e4e112-5a57-4bc8-9b2b-828b8ff7e8d9", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "ce54ea2c-2-701ff27f-2", + "start_date": "20230916", + "route_id": "725" + }, + "stop_time_update": [ + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889082 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694889151 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694889212 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694889311 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38551" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694889397 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694889477 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694889529 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694889638 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694889658 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694889711 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694889758 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694889794 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694889859 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38560" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694889895 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694889922 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38562" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694890013 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40539" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694890057 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40540" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694890093 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40541" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694890210 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40543" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694890224 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41943" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694890314 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40544" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694890332 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16705477" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694890377 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40545" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694890427 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40546" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694890456 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40547" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694890505 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40548" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694890708 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40590" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694890766 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40591" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694890856 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40592" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694891014 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41947" + } + ] + } + }, + { + "id": "7cb12a63-c4c1-47ea-9562-bfc8efb01d07", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "3d9d21b5-6-701ff27f-2", + "start_date": "20230916", + "route_id": "726" + }, + "stop_time_update": [ + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694889040 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40904" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694889096 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35814" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694889171 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35815" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694889202 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35816" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694889207 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35817" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694889251 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35818" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694889289 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35819" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694889483 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35822" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694889533 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35823" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694889588 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35723" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694889626 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35722" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694889763 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35827" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694889787 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35828" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694889806 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35716" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694889847 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35715" + } + ] + } + }, + { + "id": "64c1c484-cb39-4c3f-9c29-d09685751b5b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "c1a4dc4d-ea5a-4be4-a50a-db8fa70d1bc9", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "b7b79609-3-701ff27f-2", + "start_date": "20230916", + "route_id": "726" + }, + "stop_time_update": [ + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889019 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889052 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38697" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889099 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38646" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889136 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38632" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889225 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38767" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889287 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38768" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889339 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38769" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889372 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49357" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889421 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38771" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889465 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38668" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889556 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38661" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889640 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38657" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889697 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38743" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889762 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38652" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889829 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38721" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889887 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38659" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889965 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38674" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890031 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38649" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890100 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38718" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890164 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38735" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890220 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42270" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890264 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42271" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890462 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38688" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890518 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38673" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890591 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39785" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890633 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38664" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890687 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38702" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890732 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39787" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890774 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38501" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890833 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38692" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890905 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38714" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890957 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39791" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890994 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38506" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891047 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38635" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891082 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38509" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891120 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38642" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891178 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39795" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694891207 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38502" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694891280 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38503" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694891575 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35693" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694891642 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35694" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694891683 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35695" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694891751 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35696" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694891966 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35697" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694892096 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Jan" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694892137 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42460" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694892190 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35690" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694892327 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35700" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694892474 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35703" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694892497 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35704" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694892525 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35705" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694892559 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35706" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694892632 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35707" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694892684 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35708" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694892709 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35709" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694892870 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37522" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694892929 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694892998 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50034" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694893070 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40903" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694893126 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40904" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694893220 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35814" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694893354 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35815" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694893411 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35816" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694893420 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35817" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694893503 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35818" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694893577 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35819" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694893982 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35822" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694894095 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35823" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694894225 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35723" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694894319 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35722" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694894675 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35827" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694894740 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35828" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694894794 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35716" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694894910 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35715" + } + ] + } + }, + { + "id": "c932a649-c599-415b-9675-f7fbdf2c8364", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "2217740b-6-701ff27f-2", + "start_date": "20230916", + "route_id": "726" + }, + "stop_time_update": [ + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889055 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35694" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889090 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35695" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889148 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35696" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694889322 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35697" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694889421 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Jan" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694889451 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42460" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694889490 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35690" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694889586 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35700" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694889685 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35703" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694889700 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35704" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694889718 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35705" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694889740 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35706" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694889786 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35707" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694889818 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35708" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694889833 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35709" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694889930 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37522" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694889964 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694890003 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50034" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694890043 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40903" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694890074 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40904" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694890124 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35814" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694890194 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35815" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694890223 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35816" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694890228 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35817" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694890269 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35818" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694890305 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35819" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694890493 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35822" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694890543 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35823" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694890599 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35723" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694890638 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35722" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694890780 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35827" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694890804 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35828" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694890825 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35716" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694890868 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35715" + } + ] + } + }, + { + "id": "afb6044e-b2d2-41c7-90b5-d4ac117757a0", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "7edee734-3-701ff27f-2", + "start_date": "20230916", + "route_id": "726" + }, + "stop_time_update": [ + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694888975 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38721" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889038 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38659" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889124 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38674" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889194 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38649" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889268 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38718" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889334 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38735" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889392 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42270" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889438 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42271" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889638 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38688" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889693 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38673" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889765 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39785" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889805 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38664" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889857 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38702" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889900 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39787" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889941 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38501" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889996 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38692" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890063 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38714" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890111 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39791" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890145 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38506" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890193 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38635" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890225 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38509" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890260 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38642" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890311 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39795" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890337 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38502" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890402 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38503" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890657 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35693" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694890714 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35694" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694890748 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35695" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694890805 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35696" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694890982 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35697" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694891087 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Jan" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694891120 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42460" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694891162 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35690" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694891270 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35700" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694891384 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35703" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694891402 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35704" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694891423 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35705" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694891449 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35706" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694891505 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35707" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694891544 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35708" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694891562 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35709" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694891683 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37522" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694891727 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694891778 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50034" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694891830 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40903" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694891871 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40904" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694891939 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35814" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694892034 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35815" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694892075 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35816" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694892081 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35817" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694892139 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35818" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694892191 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35819" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694892468 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35822" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694892545 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35823" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694892631 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35723" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694892693 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35722" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694892924 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35827" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694892965 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35828" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694892999 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35716" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694893073 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35715" + } + ] + } + }, + { + "id": "5064b884-e2bf-45c9-b7c9-3864b57572a5", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "853dbd29-c-701ff27f-2", + "start_date": "20230916", + "route_id": "726" + }, + "stop_time_update": [ + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694889002 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40348" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694889056 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40349" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889084 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40350" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889147 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40351" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889241 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40352" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889329 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41970" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889339 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40542" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889353 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41971" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889375 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40541" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889390 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41972" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889413 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40540" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889463 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40539" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889525 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42855" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889563 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41975" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889584 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889614 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38697" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889657 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38646" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889692 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38632" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889775 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38767" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889833 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38768" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889883 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38769" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889915 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49357" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889961 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38771" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890004 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38668" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890093 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38661" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890176 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38657" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890232 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38743" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890297 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38652" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890365 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38721" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890423 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38659" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890503 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38674" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890571 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38649" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890643 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38718" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890709 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38735" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890768 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42270" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890815 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42271" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891027 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38688" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891088 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38673" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891168 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39785" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891214 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38664" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891274 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38702" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891324 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39787" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891372 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38501" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891438 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38692" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891519 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38714" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891579 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39791" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891621 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38506" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891681 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38635" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891722 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38509" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891766 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38642" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891832 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39795" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694891867 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38502" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694891953 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38503" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694892304 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35693" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694892385 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35694" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694892435 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35695" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694892518 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35696" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694892784 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35697" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694892948 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Jan" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694893000 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42460" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694893068 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35690" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694893244 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35700" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694893434 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35703" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694893464 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35704" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694893501 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35705" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694893546 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35706" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694893642 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35707" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694893711 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35708" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694893743 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35709" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694893960 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37522" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694894039 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694894133 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50034" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694894231 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40903" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694894308 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40904" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694894438 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35814" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694894623 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35815" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694894704 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35816" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694894717 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35817" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694894833 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35818" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694894938 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35819" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694895523 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35822" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694895691 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35823" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694895885 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35723" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694896026 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35722" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694896571 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35827" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694896670 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35828" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694896755 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35716" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694896938 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35715" + } + ] + } + }, + { + "id": "519cc717-383c-44d6-8c39-b25e39ff7503", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "25028-701ff27f-2", + "start_date": "20230916", + "route_id": "727" + }, + "stop_time_update": [ + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889014 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694889072 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889153 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889206 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38539" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889273 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889353 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889422 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889511 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38546" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694889632 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694889697 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694889844 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38551" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694889926 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694890006 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694890054 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694890161 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694890188 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694890233 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694890281 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694890316 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694890383 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38560" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694890421 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694890452 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38562" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694890542 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40539" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694890587 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40540" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694890630 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40541" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694890752 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40543" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694890761 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41943" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694890859 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40544" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694891039 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40548" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694891072 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40443" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694891108 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40550" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694891145 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40551" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694891164 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40441" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694891261 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40552" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694891312 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40553" + } + ] + } + }, + { + "id": "96177e05-a548-4d52-8afc-71b5e81d72ef", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "25031-701ff27f-2", + "start_date": "20230916", + "route_id": "727" + }, + "stop_time_update": [ + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889092 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889116 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39600" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889186 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37496" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889237 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45064" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889313 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889389 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45069" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889503 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37523" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889544 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889630 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49310" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889661 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889716 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39634" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889740 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39635" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889786 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39636" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889961 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890009 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890040 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890104 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49319" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890166 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890200 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39642" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890475 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49325" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890537 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49326" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890563 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39648" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890611 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39649" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890651 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45112" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890695 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45113" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890777 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37490" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890832 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45115" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890857 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45116" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890931 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45118" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891010 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45119" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891057 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45120" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891116 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45121" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891162 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891246 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891286 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891348 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694891436 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694891496 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38539" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694891573 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694891667 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694891751 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694891863 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38546" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694892024 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694892113 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694892323 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38551" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694892447 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694892571 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694892647 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694892825 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694892870 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694892949 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694893032 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694893095 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694893218 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38560" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694893288 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694893346 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38562" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694893522 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40539" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694893612 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40540" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694893699 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40541" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694893957 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40543" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694893975 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41943" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694894194 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40544" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694894618 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40548" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694894699 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40443" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694894788 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40550" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694894881 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40551" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694894932 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40441" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694895187 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40552" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694895323 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40553" + } + ] + } + }, + { + "id": "129c397c-44a4-4d4e-a6de-9a0b8ff4cd9b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "25030-701ff27f-2", + "start_date": "20230916", + "route_id": "727" + }, + "stop_time_update": [ + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889117 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37523" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889160 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889250 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49310" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889283 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889340 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39634" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889366 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39635" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889412 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39636" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889592 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889642 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889673 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889737 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49319" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889800 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889834 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39642" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890106 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49325" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890167 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49326" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890192 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39648" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890239 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39649" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890277 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45112" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890320 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45113" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890399 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37490" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890452 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45115" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890476 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45116" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890546 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45118" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890621 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45119" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890666 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45120" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890721 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45121" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890764 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890842 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890880 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890937 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694891019 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694891073 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38539" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694891144 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694891229 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694891306 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694891407 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38546" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694891551 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694891630 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694891815 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38551" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694891923 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694892031 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694892097 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694892250 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694892289 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694892356 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694892426 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694892481 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694892584 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38560" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694892643 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694892692 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38562" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694892838 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40539" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694892913 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40540" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694892985 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40541" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694893197 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40543" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694893212 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41943" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694893390 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40544" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694893730 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40548" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694893794 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40443" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694893865 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40550" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694893938 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40551" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694893978 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40441" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694894178 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40552" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694894284 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40553" + } + ] + } + }, + { + "id": "46f93ace-ed66-4c7e-b1cb-2c7a40c30c09", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "25033-701ff27f-2", + "start_date": "20230916", + "route_id": "727" + }, + "stop_time_update": [ + { + "stop_sequence": 2, + "arrival": { + "delay": 0, + "time": 1694889089 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40808" + }, + { + "stop_sequence": 3, + "arrival": { + "delay": 0, + "time": 1694889104 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35715" + }, + { + "stop_sequence": 4, + "arrival": { + "delay": 0, + "time": 1694889148 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35716" + }, + { + "stop_sequence": 5, + "arrival": { + "delay": 0, + "time": 1694889164 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35717" + }, + { + "stop_sequence": 6, + "arrival": { + "delay": 0, + "time": 1694889208 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35718" + }, + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694889248 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35719" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694889290 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35720" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889321 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35721" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889336 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35722" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889384 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35723" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889431 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35724" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889498 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35726" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889569 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35727" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889647 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35820" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889677 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35729" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889707 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35730" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889738 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35731" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889801 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35201" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889879 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35202" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889985 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90001" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694890070 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694890092 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39600" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890157 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37496" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890205 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45064" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890276 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890349 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45069" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890462 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37523" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890502 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890589 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49310" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890620 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890677 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39634" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890702 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39635" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890749 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39636" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890936 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890989 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694891022 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694891093 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49319" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891162 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891201 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39642" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891520 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49325" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891595 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49326" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891626 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39648" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891684 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39649" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891733 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45112" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891788 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45113" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891889 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37490" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891959 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45115" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891992 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45116" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694892086 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45118" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694892188 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45119" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694892251 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45120" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694892329 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45121" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694892390 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694892503 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694892558 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694892642 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694892766 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694892849 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38539" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694892959 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694893095 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694893219 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694893385 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38546" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694893628 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694893766 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694894099 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38551" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694894299 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694894504 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694894632 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694894935 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694895013 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694895151 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694895298 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694895413 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694895635 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38560" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694895765 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694895873 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38562" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694896206 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40539" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694896380 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40540" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694896551 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40541" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694897068 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40543" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694897107 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41943" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694897565 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40544" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694898495 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40548" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694898680 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40443" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694898887 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40550" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694899106 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40551" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694899225 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40441" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694899847 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40552" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694900190 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40553" + } + ] + } + }, + { + "id": "397be882-c455-4ccd-b92b-14a08984439c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "25029-701ff27f-2", + "start_date": "20230916", + "route_id": "727" + }, + "stop_time_update": [ + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889095 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49325" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889161 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49326" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889189 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39648" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889238 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39649" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889279 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45112" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889324 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45113" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889405 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37490" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889459 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45115" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889483 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45116" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889554 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45118" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889628 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45119" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889672 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45120" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889725 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45121" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889766 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889841 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889876 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694889928 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890004 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890053 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38539" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890116 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694890192 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694890259 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694890346 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38546" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694890468 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694890533 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694890685 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38551" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694890771 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694890856 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694890907 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694891024 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694891053 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694891103 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694891156 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694891196 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694891271 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38560" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694891314 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694891349 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38562" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694891453 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40539" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694891506 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40540" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694891556 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40541" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694891701 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40543" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694891712 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41943" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694891831 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40544" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694892053 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40548" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694892094 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40443" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694892139 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40550" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694892185 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40551" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694892210 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40441" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694892334 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40552" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694892399 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40553" + } + ] + } + }, + { + "id": "03d165cc-729f-4d8b-88b2-e74fff7cc56a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "25026-701ff27f-2", + "start_date": "20230916", + "route_id": "727" + }, + "stop_time_update": [ + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694889049 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694889082 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38562" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694889178 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40539" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694889225 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40540" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694889269 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40541" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694889391 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40543" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694889399 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41943" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694889495 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40544" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694889664 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40548" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694889694 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40443" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694889726 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40550" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694889759 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40551" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694889776 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40441" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694889862 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40552" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694889905 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40553" + } + ] + } + }, + { + "id": "76d72354-5195-4066-8348-b86fdea0a2c4", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "25137-701ff27f-2", + "start_date": "20230916", + "route_id": "728" + }, + "stop_time_update": [ + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694888991 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38697" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889044 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38646" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889076 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38632" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889165 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38767" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889233 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38768" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889280 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38769" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889318 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49357" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889361 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38771" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889406 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38668" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889503 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38661" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889586 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38657" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889646 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38743" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889711 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38652" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889773 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38721" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889828 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38659" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889909 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38674" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889981 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38649" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890042 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38718" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890106 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38735" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890165 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42270" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890212 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42271" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890403 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38688" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890458 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38673" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890534 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39785" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890573 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38664" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890627 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38702" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890672 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39787" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890714 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38501" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890784 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38692" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890855 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38714" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890905 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39791" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890934 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38506" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890987 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38635" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891022 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38509" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891069 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38642" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891117 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39795" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891151 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38502" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694891219 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38503" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694891398 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35691" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694891510 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35693" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694891579 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35694" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694891628 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35695" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694891686 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35696" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694891903 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35697" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694892030 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Jan" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694892070 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42460" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694892128 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35690" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694892266 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35700" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694892403 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35703" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694892426 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35704" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694892459 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35705" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694892488 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35706" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694892572 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35707" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694892611 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35708" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694892640 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35709" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694892795 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37522" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694892854 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694892922 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50034" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694892994 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40903" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694893049 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40904" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694893142 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35814" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694893281 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35815" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694893331 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35816" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694893354 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35817" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694893421 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35818" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694893497 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35819" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694893895 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35822" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694894066 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38833" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694894916 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38814" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694895064 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38815" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694895101 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38816" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694895383 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40565" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694895570 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40566" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694895635 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40567" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694899128 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50010" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694899239 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50011" + } + ] + } + }, + { + "id": "3bc74813-4d5e-4d7a-b4a5-cc4c7f733dba", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "25135-701ff27f-2", + "start_date": "20230916", + "route_id": "728" + }, + "stop_time_update": [ + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694888997 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38664" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889054 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38702" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889101 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39787" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889144 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38501" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889215 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38692" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889286 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38714" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889334 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39791" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889362 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38506" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889412 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38635" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889445 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38509" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889489 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38642" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889532 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39795" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694889563 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38502" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889624 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38503" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889778 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35691" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889871 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35693" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889927 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35694" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889966 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35695" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694890012 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35696" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694890178 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35697" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694890272 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Jan" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694890301 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42460" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694890343 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35690" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694890439 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35700" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694890533 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35703" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694890548 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35704" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694890570 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35705" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694890590 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35706" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694890645 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35707" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694890671 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35708" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694890689 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35709" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694890788 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37522" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694890824 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694890866 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50034" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694890910 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40903" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694890943 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40904" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694890998 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35814" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694891079 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35815" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694891108 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35816" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694891121 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35817" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694891159 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35818" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694891202 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35819" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694891417 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35822" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694891505 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38833" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694891917 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38814" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694891983 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38815" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694892000 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38816" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694892124 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40565" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694892204 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40566" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694892231 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40567" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694893452 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50010" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694893484 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50011" + } + ] + } + }, + { + "id": "6a0d0cad-5fd3-440c-b37f-262ec92986df", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "25138-701ff27f-2", + "start_date": "20230916", + "route_id": "728" + }, + "stop_time_update": [ + { + "stop_sequence": 1, + "arrival": { + "delay": 0, + "time": 1694889022 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40439" + }, + { + "stop_sequence": 2, + "arrival": { + "delay": 0, + "time": 1694889073 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40440" + }, + { + "stop_sequence": 3, + "arrival": { + "delay": 0, + "time": 1694889175 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40441" + }, + { + "stop_sequence": 4, + "arrival": { + "delay": 0, + "time": 1694889266 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40443" + }, + { + "stop_sequence": 5, + "arrival": { + "delay": 0, + "time": 1694889294 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40548" + }, + { + "stop_sequence": 6, + "arrival": { + "delay": 0, + "time": 1694889343 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40348" + }, + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694889394 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40349" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694889428 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40350" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889488 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40351" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889575 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40352" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889656 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41970" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889664 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40542" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889681 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41971" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889708 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40541" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889721 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41972" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889738 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40540" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889785 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40539" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889846 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42855" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889884 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41975" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889904 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889934 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38697" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889981 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38646" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694890010 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38632" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890093 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38767" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890157 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38768" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890201 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38769" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890238 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49357" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890280 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38771" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890323 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38668" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890419 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38661" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890502 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38657" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890563 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38743" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890629 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38652" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890694 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38721" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890752 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38659" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890838 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38674" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890915 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38649" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890982 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38718" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891053 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38735" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891118 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42270" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891170 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42271" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891389 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38688" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891454 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38673" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891545 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39785" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891591 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38664" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891656 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38702" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891710 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39787" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891762 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38501" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891848 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38692" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891938 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38714" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694892000 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39791" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694892037 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38506" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694892104 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38635" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694892150 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38509" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694892211 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38642" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694892273 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39795" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694892317 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38502" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694892408 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38503" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694892648 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35691" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694892802 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35693" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694892899 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35694" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694892967 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35695" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694893050 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35696" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694893364 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35697" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694893553 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Jan" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694893612 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42460" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694893701 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35690" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694893911 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35700" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694894126 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35703" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694894161 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35704" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694894213 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35705" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694894259 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35706" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694894395 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35707" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694894458 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35708" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694894505 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35709" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694894760 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37522" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694894859 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694894974 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50034" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694895094 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40903" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694895190 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40904" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694895351 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35814" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694895595 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35815" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694895684 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35816" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694895726 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35817" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694895846 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35818" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694895985 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35819" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694896733 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35822" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694897068 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38833" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694898859 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38814" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694899192 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38815" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694899278 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38816" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694899939 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40565" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694900393 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40566" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694900556 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40567" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694912349 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50010" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694912858 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50011" + } + ] + } + }, + { + "id": "7ce564d4-a958-48e4-b19e-3de170c7d47c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "25132-701ff27f-2", + "start_date": "20230916", + "route_id": "728" + }, + "stop_time_update": [ + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694889046 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35814" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694889126 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35815" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694889153 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35816" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694889166 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35817" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694889202 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35818" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694889242 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35819" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694889435 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35822" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694889511 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38833" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694889837 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38814" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694889886 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38815" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694889898 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38816" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694889987 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40565" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694890043 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40566" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694890062 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40567" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694890792 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50010" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694890808 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50011" + } + ] + } + }, + { + "id": "4844bb59-0b7c-4b4e-b230-22f6edac4a15", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "25136-701ff27f-2", + "start_date": "20230916", + "route_id": "728" + }, + "stop_time_update": [ + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889026 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38767" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889096 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38768" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889143 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38769" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889183 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49357" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889227 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38771" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889272 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38668" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889371 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38661" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889455 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38657" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889516 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38743" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889581 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38652" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889644 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38721" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889700 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38659" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889781 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38674" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889853 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38649" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889914 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38718" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889979 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38735" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890037 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42270" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890084 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42271" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890273 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38688" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890328 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38673" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890404 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39785" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890442 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38664" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890495 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38702" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890539 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39787" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890581 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38501" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890649 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38692" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890719 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38714" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890768 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39791" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890797 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38506" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890848 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38635" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890882 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38509" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890928 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38642" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890975 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39795" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891007 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38502" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694891074 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38503" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694891247 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35691" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694891356 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35693" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694891422 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35694" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694891469 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35695" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694891525 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35696" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694891734 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35697" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694891856 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Jan" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694891894 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42460" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694891950 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35690" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694892080 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35700" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694892211 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35703" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694892233 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35704" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694892264 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35705" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694892291 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35706" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694892371 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35707" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694892408 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35708" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694892435 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35709" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694892582 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37522" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694892638 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694892702 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50034" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694892769 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40903" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694892821 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40904" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694892908 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35814" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694893038 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35815" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694893085 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35816" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694893107 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35817" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694893169 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35818" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694893240 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35819" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694893610 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35822" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694893768 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38833" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694894550 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38814" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694894685 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38815" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694894719 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38816" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694894975 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40565" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694895144 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40566" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694895204 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40567" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694898288 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50010" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694898383 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50011" + } + ] + } + }, + { + "id": "99ba1a54-54f9-42b0-96fc-e093ae8356de", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "25133-701ff27f-2", + "start_date": "20230916", + "route_id": "728" + }, + "stop_time_update": [ + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694889009 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35705" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694889029 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35706" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694889088 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35707" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694889114 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35708" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694889133 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35709" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694889233 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37522" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694889270 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694889311 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50034" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694889353 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40903" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694889385 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40904" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694889438 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35814" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694889513 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35815" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694889539 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35816" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694889551 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35817" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694889585 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35818" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694889623 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35819" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694889809 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35822" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694889883 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38833" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694890205 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38814" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694890254 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38815" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694890267 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38816" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694890356 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40565" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694890413 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40566" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694890432 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40567" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694891196 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50010" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694891214 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50011" + } + ] + } + }, + { + "id": "e3def9ae-236e-4f51-8766-4e9eb7e0d38b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "25131-701ff27f-2", + "start_date": "20230916", + "route_id": "728" + }, + "stop_time_update": [ + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694889009 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40565" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694889071 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40566" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694889091 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40567" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694889832 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50010" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694889848 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50011" + } + ] + } + }, + { + "id": "64aded04-25d9-44b9-a720-b3cb929e3c94", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "25134-701ff27f-2", + "start_date": "20230916", + "route_id": "728" + }, + "stop_time_update": [ + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889059 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35694" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889101 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35695" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889151 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35696" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694889328 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35697" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694889426 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Jan" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694889455 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42460" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694889498 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35690" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694889595 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35700" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694889688 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35703" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694889703 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35704" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694889724 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35705" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694889743 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35706" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694889797 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35707" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694889821 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35708" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694889839 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35709" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694889933 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37522" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694889967 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694890006 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50034" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694890046 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40903" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694890077 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40904" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694890127 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35814" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694890201 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35815" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694890226 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35816" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694890238 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35817" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694890272 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35818" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694890310 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35819" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694890497 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35822" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694890572 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38833" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694890911 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38814" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694890964 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38815" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694890977 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38816" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694891075 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40565" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694891137 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40566" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694891158 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40567" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694892043 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50010" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694892065 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50011" + } + ] + } + }, + { + "id": "c9292222-58a6-4d79-b66b-f1e96856610f", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "25711-701ff27f-2", + "start_date": "20230916", + "route_id": "730" + }, + "stop_time_update": [ + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694889026 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42318" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694889107 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8606396" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694889187 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38514" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694889230 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38516" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694889290 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38518" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694889392 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38520" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694889437 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38521" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694889482 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38522" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694889532 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38523" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694889584 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38524" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694889633 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38525" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694889684 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38526" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694889731 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38527" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694889817 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38528" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694889928 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38529" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694890127 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38530" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694890145 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005209" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694890376 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38531" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694890430 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8921285" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694890540 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38532" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694890584 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38533" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694890647 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38534" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694890696 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694890762 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694890799 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694890855 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694890939 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694890993 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38539" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694891063 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694891147 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694891223 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694891322 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38546" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694891461 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694891541 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694891608 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694891830 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694891936 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694892001 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694892150 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694892188 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 111, + "arrival": { + "delay": 0, + "time": 1694892253 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 112, + "arrival": { + "delay": 0, + "time": 1694892322 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 113, + "arrival": { + "delay": 0, + "time": 1694892375 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + }, + { + "stop_sequence": 114, + "arrival": { + "delay": 0, + "time": 1694892476 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38560" + }, + { + "stop_sequence": 115, + "arrival": { + "delay": 0, + "time": 1694892534 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 116, + "arrival": { + "delay": 0, + "time": 1694892581 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38562" + }, + { + "stop_sequence": 117, + "arrival": { + "delay": 0, + "time": 1694892634 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38563" + }, + { + "stop_sequence": 118, + "arrival": { + "delay": 0, + "time": 1694892696 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42854" + }, + { + "stop_sequence": 119, + "arrival": { + "delay": 0, + "time": 1694892854 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38565" + }, + { + "stop_sequence": 120, + "arrival": { + "delay": 0, + "time": 1694892934 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40932" + }, + { + "stop_sequence": 121, + "arrival": { + "delay": 0, + "time": 1694893007 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38566" + }, + { + "stop_sequence": 122, + "arrival": { + "delay": 0, + "time": 1694893062 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38567" + }, + { + "stop_sequence": 123, + "arrival": { + "delay": 0, + "time": 1694893144 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38568" + }, + { + "stop_sequence": 124, + "arrival": { + "delay": 0, + "time": 1694893196 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38569" + }, + { + "stop_sequence": 125, + "arrival": { + "delay": 0, + "time": 1694893273 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38570" + }, + { + "stop_sequence": 126, + "arrival": { + "delay": 0, + "time": 1694893377 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38571" + }, + { + "stop_sequence": 127, + "arrival": { + "delay": 0, + "time": 1694893479 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38572" + } + ] + } + }, + { + "id": "080c3df7-3ab7-4851-a7e8-c098ca923f8d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "25714-701ff27f-2", + "start_date": "20230916", + "route_id": "730" + }, + "stop_time_update": [ + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889039 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49256" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889195 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49214" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889245 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49218" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889269 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49257" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889392 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49258" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889449 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49259" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889457 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49260" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889625 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49261" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889656 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49262" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889677 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49263" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890434 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34549" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890776 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49264" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890778 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49265" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890953 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42274" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694891035 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42275" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694891079 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42276" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694891169 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42277" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694891259 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42278" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694891305 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42279" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694891398 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42280" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694891447 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42281" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694891535 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42282" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694891601 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42283" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694891680 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49279" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694891777 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42285" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891889 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42286" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891910 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42287" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891984 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42288" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694892030 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42289" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694892136 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42290" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694892212 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42291" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694892335 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42292" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694892438 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42293" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694892711 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42294" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694892923 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42295" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694893121 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42296" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694893352 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42297" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694893539 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42298" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694893669 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42299" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694893757 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49295" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694894012 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49296" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694894222 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49297" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694894307 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49298" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694894479 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49299" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694894589 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49300" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694894813 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49301" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694895005 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49302" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694895137 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49303" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694895294 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49304" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694895382 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49305" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694895565 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49306" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694895698 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49307" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694895781 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49308" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694895866 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49309" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694895966 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42315" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694896050 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42316" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694896241 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42317" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694896413 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42318" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694896725 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8606396" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694897061 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38514" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694897253 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38516" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694897534 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38518" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694898063 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38520" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694898312 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38521" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694898582 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38522" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694898893 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38523" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694899240 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38524" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694899582 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38525" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694899968 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38526" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694900348 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38527" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694901104 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38528" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694902231 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38529" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694904801 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38530" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694905073 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005209" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694909594 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38531" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694910999 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8921285" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694914491 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38532" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694916191 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38533" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694919012 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38534" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694921593 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694925836 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694928673 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694933833 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694944443 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694954227 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38539" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694973047 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1695016797 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1695123283 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + } + ] + } + }, + { + "id": "c78b1aca-62ed-4c05-830d-43fe35397b65", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "25707-701ff27f-2", + "start_date": "20230916", + "route_id": "730" + }, + "stop_time_update": [ + { + "stop_sequence": 123, + "arrival": { + "delay": 0, + "time": 1694889055 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38568" + }, + { + "stop_sequence": 124, + "arrival": { + "delay": 0, + "time": 1694889085 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38569" + }, + { + "stop_sequence": 125, + "arrival": { + "delay": 0, + "time": 1694889129 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38570" + }, + { + "stop_sequence": 126, + "arrival": { + "delay": 0, + "time": 1694889188 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38571" + }, + { + "stop_sequence": 127, + "arrival": { + "delay": 0, + "time": 1694889242 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38572" + } + ] + } + }, + { + "id": "ea2ab4d5-d766-4915-8730-59900b063a49", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "25713-701ff27f-2", + "start_date": "20230916", + "route_id": "730" + }, + "stop_time_update": [ + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889090 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42282" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889149 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42283" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889218 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49279" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889299 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42285" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889389 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42286" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889405 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42287" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889462 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42288" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889497 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42289" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889575 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42290" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889630 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42291" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889715 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42292" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889783 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42293" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889957 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42294" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890081 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42295" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890192 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42296" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890314 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42297" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890409 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42298" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890472 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42299" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890514 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49295" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890630 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49296" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890722 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49297" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890757 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49298" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890828 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49299" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890873 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49300" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890960 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49301" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694891031 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49302" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694891079 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49303" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694891135 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49304" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694891166 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49305" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694891227 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49306" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694891272 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49307" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694891298 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49308" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694891326 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49309" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694891357 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42315" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694891384 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42316" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694891442 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42317" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694891493 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42318" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694891582 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8606396" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694891674 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38514" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694891725 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38516" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694891796 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38518" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694891924 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38520" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694891982 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38521" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694892042 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38522" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694892109 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38523" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694892181 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38524" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694892249 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38525" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694892323 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38526" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694892392 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38527" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694892522 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38528" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694892699 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38529" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694893038 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38530" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694893070 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005209" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694893507 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38531" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694893616 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8921285" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694893847 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38532" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694893944 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38533" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694894084 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38534" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694894196 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694894352 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694894441 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694894579 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694894791 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694894934 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38539" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694895122 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694895360 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694895580 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694895882 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38546" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694896328 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694896603 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694896837 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694897682 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694898119 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694898400 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694899087 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694899268 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 111, + "arrival": { + "delay": 0, + "time": 1694899594 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 112, + "arrival": { + "delay": 0, + "time": 1694899950 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 113, + "arrival": { + "delay": 0, + "time": 1694900233 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + }, + { + "stop_sequence": 114, + "arrival": { + "delay": 0, + "time": 1694900799 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38560" + }, + { + "stop_sequence": 115, + "arrival": { + "delay": 0, + "time": 1694901137 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 116, + "arrival": { + "delay": 0, + "time": 1694901424 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38562" + }, + { + "stop_sequence": 117, + "arrival": { + "delay": 0, + "time": 1694901756 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38563" + }, + { + "stop_sequence": 118, + "arrival": { + "delay": 0, + "time": 1694902155 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42854" + }, + { + "stop_sequence": 119, + "arrival": { + "delay": 0, + "time": 1694903256 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38565" + }, + { + "stop_sequence": 120, + "arrival": { + "delay": 0, + "time": 1694903861 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40932" + }, + { + "stop_sequence": 121, + "arrival": { + "delay": 0, + "time": 1694904433 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38566" + }, + { + "stop_sequence": 122, + "arrival": { + "delay": 0, + "time": 1694904892 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38567" + }, + { + "stop_sequence": 123, + "arrival": { + "delay": 0, + "time": 1694905608 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38568" + }, + { + "stop_sequence": 124, + "arrival": { + "delay": 0, + "time": 1694906076 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38569" + }, + { + "stop_sequence": 125, + "arrival": { + "delay": 0, + "time": 1694906814 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38570" + }, + { + "stop_sequence": 126, + "arrival": { + "delay": 0, + "time": 1694907892 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38571" + }, + { + "stop_sequence": 127, + "arrival": { + "delay": 0, + "time": 1694909022 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38572" + } + ] + } + }, + { + "id": "74bf276a-7b41-42dd-acea-78c11ed204c8", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "25709-701ff27f-2", + "start_date": "20230916", + "route_id": "730" + }, + "stop_time_update": [ + { + "stop_sequence": 126, + "arrival": { + "delay": 0, + "time": 1694889017 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38571" + }, + { + "stop_sequence": 127, + "arrival": { + "delay": 0, + "time": 1694889073 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38572" + } + ] + } + }, + { + "id": "e1e9cf41-6efc-4e8e-8416-a5f5819f2c2c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "25710-701ff27f-2", + "start_date": "20230916", + "route_id": "730" + }, + "stop_time_update": [ + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694888982 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8921285" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694889101 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38532" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694889147 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38533" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694889212 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38534" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694889262 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694889328 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694889364 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694889419 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694889499 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694889550 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38539" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694889614 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694889691 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694889758 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694889844 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38546" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694889961 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694890028 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694890082 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694890257 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694890338 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694890386 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694890496 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694890523 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 111, + "arrival": { + "delay": 0, + "time": 1694890570 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 112, + "arrival": { + "delay": 0, + "time": 1694890618 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 113, + "arrival": { + "delay": 0, + "time": 1694890655 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + }, + { + "stop_sequence": 114, + "arrival": { + "delay": 0, + "time": 1694890724 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38560" + }, + { + "stop_sequence": 115, + "arrival": { + "delay": 0, + "time": 1694890764 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 116, + "arrival": { + "delay": 0, + "time": 1694890795 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38562" + }, + { + "stop_sequence": 117, + "arrival": { + "delay": 0, + "time": 1694890831 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38563" + }, + { + "stop_sequence": 118, + "arrival": { + "delay": 0, + "time": 1694890871 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42854" + }, + { + "stop_sequence": 119, + "arrival": { + "delay": 0, + "time": 1694890974 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38565" + }, + { + "stop_sequence": 120, + "arrival": { + "delay": 0, + "time": 1694891025 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40932" + }, + { + "stop_sequence": 121, + "arrival": { + "delay": 0, + "time": 1694891071 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38566" + }, + { + "stop_sequence": 122, + "arrival": { + "delay": 0, + "time": 1694891105 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38567" + }, + { + "stop_sequence": 123, + "arrival": { + "delay": 0, + "time": 1694891156 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38568" + }, + { + "stop_sequence": 124, + "arrival": { + "delay": 0, + "time": 1694891187 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38569" + }, + { + "stop_sequence": 125, + "arrival": { + "delay": 0, + "time": 1694891234 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38570" + }, + { + "stop_sequence": 126, + "arrival": { + "delay": 0, + "time": 1694891296 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38571" + }, + { + "stop_sequence": 127, + "arrival": { + "delay": 0, + "time": 1694891356 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38572" + } + ] + } + }, + { + "id": "00e5aa91-99e9-4633-8816-c14bc0724c7d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "25749-701ff27f-2", + "start_date": "20230916", + "route_id": "731" + }, + "stop_time_update": [ + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694889148 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42209" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694889271 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42210" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694889461 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42215" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694889492 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42216" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694889533 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42217" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694889608 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42218" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694889651 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42219" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694889749 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42220" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694889792 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42221" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694889857 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42222" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694889924 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42223" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694889951 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42224" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694890022 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42225" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694890084 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42226" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694890139 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42227" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694890211 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42228" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694890254 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42229" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694890336 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42230" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694890378 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42231" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694890456 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42232" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694890538 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42233" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694890580 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42234" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694890655 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42235" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694890676 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42211" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694890736 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49203" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694890794 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49204" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694890812 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42503" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694890820 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34564" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694891174 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34789" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694891203 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49163" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694892107 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49208" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694892141 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49209" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694892162 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49210" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694892428 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49211" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694892463 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49212" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694892546 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49213" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694892830 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49206" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694892941 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49215" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694893044 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38041" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694893100 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38042" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694893160 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38043" + }, + { + "stop_sequence": 111, + "arrival": { + "delay": 0, + "time": 1694893246 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38044" + }, + { + "stop_sequence": 112, + "arrival": { + "delay": 0, + "time": 1694893319 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38045" + }, + { + "stop_sequence": 113, + "arrival": { + "delay": 0, + "time": 1694893446 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49247" + }, + { + "stop_sequence": 114, + "arrival": { + "delay": 0, + "time": 1694893485 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49222" + }, + { + "stop_sequence": 115, + "arrival": { + "delay": 0, + "time": 1694893501 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49223" + }, + { + "stop_sequence": 116, + "arrival": { + "delay": 0, + "time": 1694893535 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38049" + }, + { + "stop_sequence": 117, + "arrival": { + "delay": 0, + "time": 1694893560 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49224" + }, + { + "stop_sequence": 118, + "arrival": { + "delay": 0, + "time": 1694893601 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49225" + }, + { + "stop_sequence": 119, + "arrival": { + "delay": 0, + "time": 1694893649 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49226" + }, + { + "stop_sequence": 120, + "arrival": { + "delay": 0, + "time": 1694893702 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49227" + }, + { + "stop_sequence": 121, + "arrival": { + "delay": 0, + "time": 1694893764 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49229" + }, + { + "stop_sequence": 122, + "arrival": { + "delay": 0, + "time": 1694893797 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49228" + }, + { + "stop_sequence": 123, + "arrival": { + "delay": 0, + "time": 1694893871 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49230" + }, + { + "stop_sequence": 124, + "arrival": { + "delay": 0, + "time": 1694893964 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49235" + }, + { + "stop_sequence": 125, + "arrival": { + "delay": 0, + "time": 1694894362 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49233" + }, + { + "stop_sequence": 126, + "arrival": { + "delay": 0, + "time": 1694895052 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40343" + }, + { + "stop_sequence": 127, + "arrival": { + "delay": 0, + "time": 1694895238 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49251" + }, + { + "stop_sequence": 128, + "arrival": { + "delay": 0, + "time": 1694895289 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49242" + }, + { + "stop_sequence": 129, + "arrival": { + "delay": 0, + "time": 1694895433 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38054" + } + ] + } + }, + { + "id": "efc9eb12-dce1-4523-b7d0-51b00c084673", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "25853-701ff27f-2", + "start_date": "20230916", + "route_id": "732" + }, + "stop_time_update": [ + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889126 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42298" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889193 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42299" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889237 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49295" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889361 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49296" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889449 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49297" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889485 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49298" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694889554 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49299" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889596 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49300" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889674 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49301" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889745 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49302" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889789 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49303" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889840 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49304" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889922 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49306" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694889961 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49307" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694889984 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49308" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694890008 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49309" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694890035 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42315" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694890057 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42316" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694890107 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42317" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694890157 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42318" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694890227 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8606396" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694890298 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38514" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694890336 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38516" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694890394 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38518" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694890493 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38520" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694890533 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38521" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694890582 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38522" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694890632 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38523" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694890685 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38524" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694890735 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38525" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694890788 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38526" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694890838 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38527" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694890928 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38528" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694891055 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38529" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694891279 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38530" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694891293 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005209" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694891565 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38531" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694891630 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8921285" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694891766 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38532" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694891832 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38533" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694891901 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38534" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694891964 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694892049 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694892098 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694892171 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694892280 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694892353 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38539" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694892448 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694892566 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694892672 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694892814 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38546" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694892920 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38547" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694893020 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694893136 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694893235 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694893414 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38551" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694893580 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694893748 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694893852 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694894098 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 111, + "arrival": { + "delay": 0, + "time": 1694894161 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 112, + "arrival": { + "delay": 0, + "time": 1694894271 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 113, + "arrival": { + "delay": 0, + "time": 1694894389 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 114, + "arrival": { + "delay": 0, + "time": 1694894479 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + }, + { + "stop_sequence": 115, + "arrival": { + "delay": 0, + "time": 1694894656 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38560" + }, + { + "stop_sequence": 116, + "arrival": { + "delay": 0, + "time": 1694894758 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 117, + "arrival": { + "delay": 0, + "time": 1694894842 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38562" + }, + { + "stop_sequence": 118, + "arrival": { + "delay": 0, + "time": 1694894938 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38563" + }, + { + "stop_sequence": 119, + "arrival": { + "delay": 0, + "time": 1694895076 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42854" + }, + { + "stop_sequence": 120, + "arrival": { + "delay": 0, + "time": 1694895342 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38565" + }, + { + "stop_sequence": 121, + "arrival": { + "delay": 0, + "time": 1694895503 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40932" + }, + { + "stop_sequence": 122, + "arrival": { + "delay": 0, + "time": 1694895739 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38567" + }, + { + "stop_sequence": 123, + "arrival": { + "delay": 0, + "time": 1694895900 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38568" + }, + { + "stop_sequence": 124, + "arrival": { + "delay": 0, + "time": 1694896001 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38569" + }, + { + "stop_sequence": 125, + "arrival": { + "delay": 0, + "time": 1694896155 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38570" + }, + { + "stop_sequence": 126, + "arrival": { + "delay": 0, + "time": 1694896359 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38571" + }, + { + "stop_sequence": 127, + "arrival": { + "delay": 0, + "time": 1694896577 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38572" + } + ] + } + }, + { + "id": "bddd4675-e59c-4640-b50a-dd37071ebbb8", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "25855-701ff27f-2", + "start_date": "20230916", + "route_id": "732" + }, + "stop_time_update": [ + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694888990 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49263" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889773 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34549" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694890103 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49264" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890109 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49265" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890144 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49266" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890197 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49267" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890269 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42274" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890345 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42275" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890385 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42276" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890467 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42277" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890548 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42278" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890589 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42279" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890672 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42280" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890715 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42281" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890792 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42282" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890850 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42283" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890918 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49279" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694891001 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42285" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891095 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42286" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891114 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42287" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891175 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42288" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891214 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42289" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891307 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42290" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891354 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42291" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891464 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42292" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891547 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42293" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891765 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42294" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891930 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42295" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694892082 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42296" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694892257 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42297" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694892397 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42298" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694892492 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42299" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694892557 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49295" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694892747 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49296" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694892892 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49297" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694892951 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49298" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694893072 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49299" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694893148 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49300" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694893294 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49301" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694893433 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49302" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694893522 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49303" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694893626 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49304" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694893804 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49306" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694893891 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49307" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694893944 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49308" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694893999 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49309" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694894063 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42315" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694894117 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42316" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694894238 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42317" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694894365 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42318" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694894548 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8606396" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694894741 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38514" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694894848 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38516" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694895017 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38518" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694895322 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38520" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694895451 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38521" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694895613 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38522" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694895785 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38523" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694895972 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38524" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694896153 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38525" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694896355 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38526" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694896549 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38527" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694896923 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38528" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694897488 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38529" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694898621 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38530" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694898701 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005209" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694900386 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38531" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694900851 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8921285" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694901905 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38532" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694902471 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38533" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694903094 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38534" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694903695 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694904583 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694905117 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694905986 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694907413 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694908464 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38539" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694909989 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694912136 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694914398 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694918020 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38546" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694921325 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38547" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694925067 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694930400 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694936220 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694951116 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38551" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694974855 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1695024697 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1695096621 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + } + ] + } + }, + { + "id": "97a6e275-05ad-431c-b45e-4b80689fd6e7", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "76cc0109-4f88-4f20-91cf-94ad56951ff4", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "25852-701ff27f-2", + "start_date": "20230916", + "route_id": "732" + }, + "stop_time_update": [ + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694889224 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38530" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694889237 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005209" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694889478 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38531" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694889533 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8921285" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694889643 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38532" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694889696 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38533" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694889749 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38534" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694889796 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694889859 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694889894 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694889947 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694890023 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694890072 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38539" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694890136 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694890212 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694890279 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694890365 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38546" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694890428 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38547" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694890487 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694890552 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694890608 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694890704 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38551" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694890790 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694890874 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694890926 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694891042 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 111, + "arrival": { + "delay": 0, + "time": 1694891071 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 112, + "arrival": { + "delay": 0, + "time": 1694891122 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 113, + "arrival": { + "delay": 0, + "time": 1694891174 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 114, + "arrival": { + "delay": 0, + "time": 1694891214 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + }, + { + "stop_sequence": 115, + "arrival": { + "delay": 0, + "time": 1694891289 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38560" + }, + { + "stop_sequence": 116, + "arrival": { + "delay": 0, + "time": 1694891332 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 117, + "arrival": { + "delay": 0, + "time": 1694891367 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38562" + }, + { + "stop_sequence": 118, + "arrival": { + "delay": 0, + "time": 1694891406 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38563" + }, + { + "stop_sequence": 119, + "arrival": { + "delay": 0, + "time": 1694891461 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42854" + }, + { + "stop_sequence": 120, + "arrival": { + "delay": 0, + "time": 1694891564 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38565" + }, + { + "stop_sequence": 121, + "arrival": { + "delay": 0, + "time": 1694891625 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40932" + }, + { + "stop_sequence": 122, + "arrival": { + "delay": 0, + "time": 1694891711 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38567" + }, + { + "stop_sequence": 123, + "arrival": { + "delay": 0, + "time": 1694891768 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38568" + }, + { + "stop_sequence": 124, + "arrival": { + "delay": 0, + "time": 1694891803 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38569" + }, + { + "stop_sequence": 125, + "arrival": { + "delay": 0, + "time": 1694891856 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38570" + }, + { + "stop_sequence": 126, + "arrival": { + "delay": 0, + "time": 1694891924 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38571" + }, + { + "stop_sequence": 127, + "arrival": { + "delay": 0, + "time": 1694891995 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38572" + } + ] + } + }, + { + "id": "3fabe906-2f83-40b6-8e3c-7ad603de86ad", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "25851-701ff27f-2", + "start_date": "20230916", + "route_id": "732" + }, + "stop_time_update": [ + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694889040 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38547" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694889103 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694889172 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694889230 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694889328 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38551" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694889414 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694889496 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694889545 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694889654 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 111, + "arrival": { + "delay": 0, + "time": 1694889681 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 112, + "arrival": { + "delay": 0, + "time": 1694889727 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 113, + "arrival": { + "delay": 0, + "time": 1694889774 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 114, + "arrival": { + "delay": 0, + "time": 1694889809 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + }, + { + "stop_sequence": 115, + "arrival": { + "delay": 0, + "time": 1694889876 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38560" + }, + { + "stop_sequence": 116, + "arrival": { + "delay": 0, + "time": 1694889913 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 117, + "arrival": { + "delay": 0, + "time": 1694889943 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38562" + }, + { + "stop_sequence": 118, + "arrival": { + "delay": 0, + "time": 1694889976 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38563" + }, + { + "stop_sequence": 119, + "arrival": { + "delay": 0, + "time": 1694890023 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42854" + }, + { + "stop_sequence": 120, + "arrival": { + "delay": 0, + "time": 1694890108 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38565" + }, + { + "stop_sequence": 121, + "arrival": { + "delay": 0, + "time": 1694890158 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40932" + }, + { + "stop_sequence": 122, + "arrival": { + "delay": 0, + "time": 1694890227 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38567" + }, + { + "stop_sequence": 123, + "arrival": { + "delay": 0, + "time": 1694890272 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38568" + }, + { + "stop_sequence": 124, + "arrival": { + "delay": 0, + "time": 1694890300 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38569" + }, + { + "stop_sequence": 125, + "arrival": { + "delay": 0, + "time": 1694890341 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38570" + }, + { + "stop_sequence": 126, + "arrival": { + "delay": 0, + "time": 1694890393 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38571" + }, + { + "stop_sequence": 127, + "arrival": { + "delay": 0, + "time": 1694890447 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38572" + } + ] + } + }, + { + "id": "33c73830-3671-4437-b3e9-6952a02f11ae", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "25856-701ff27f-2", + "start_date": "20230916", + "route_id": "732" + }, + "stop_time_update": [ + { + "stop_sequence": 3, + "arrival": { + "delay": 0, + "time": 1694888988 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38094" + }, + { + "stop_sequence": 4, + "arrival": { + "delay": 0, + "time": 1694889036 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49252" + }, + { + "stop_sequence": 5, + "arrival": { + "delay": 0, + "time": 1694889144 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38096" + }, + { + "stop_sequence": 6, + "arrival": { + "delay": 0, + "time": 1694889243 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49248" + }, + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694889284 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49254" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694889317 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49255" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889374 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49256" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889512 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49216" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889551 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49217" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889574 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49214" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889605 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49249" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889622 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49218" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889645 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49257" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889763 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49258" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889819 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49259" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889827 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49260" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889991 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49261" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694890025 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49262" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694890046 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49263" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694890813 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34549" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694891175 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49264" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694891182 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49265" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694891222 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49266" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694891283 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49267" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694891367 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42274" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694891456 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42275" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694891504 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42276" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694891603 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42277" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694891702 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42278" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694891753 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42279" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694891857 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42280" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694891912 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42281" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694892010 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42282" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694892085 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42283" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694892175 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49279" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694892286 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42285" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694892414 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42286" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694892438 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42287" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694892523 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42288" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694892578 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42289" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694892707 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42290" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694892774 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42291" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694892933 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42292" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694893055 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42293" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694893382 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42294" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694893638 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42295" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694893880 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42296" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694894166 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42297" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694894400 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42298" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694894563 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42299" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694894675 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49295" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694895012 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49296" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694895274 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49297" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694895383 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49298" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694895609 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49299" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694895755 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49300" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694896036 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49301" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694896311 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49302" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694896490 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49303" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694896704 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49304" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694897077 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49306" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694897264 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49307" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694897380 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49308" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694897499 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49309" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694897640 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42315" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694897760 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42316" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694898034 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42317" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694898328 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42318" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694898763 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8606396" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694899236 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38514" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694899504 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38516" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694899942 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38518" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694900761 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38520" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694901121 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38521" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694901587 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38522" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694902094 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38523" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694902667 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38524" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694903244 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38525" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694903907 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38526" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694904573 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38527" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694905929 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38528" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694908195 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38529" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694913708 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38530" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694914158 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005209" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694926346 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38531" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694930978 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8921285" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694944906 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38532" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694955354 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38533" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694970815 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38534" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694992080 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1695047191 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1695113021 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1695482151 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + } + ] + } + }, + { + "id": "396c0def-1442-42f0-9041-b74d18c19897", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "25790-701ff27f-2", + "start_date": "20230916", + "route_id": "733" + }, + "stop_time_update": [ + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889083 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38735" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889132 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42270" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889188 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42271" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889255 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838438" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889407 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44896" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889455 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44897" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889529 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44898" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889939 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005188" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890177 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40995" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890255 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40996" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890358 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40997" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890416 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39614" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890463 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39615" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890512 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39616" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890566 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39617" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890623 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39618" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890669 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39619" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890708 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39620" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890779 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39621" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890829 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38281" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890886 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890928 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45068" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891060 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37480" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891126 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891200 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40848" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891293 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Apr" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891357 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39728" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891471 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39729" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694891499 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39730" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694891626 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42200" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694891677 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42203" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694891754 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42204" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694891786 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42205" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694891875 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42201" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694892195 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42206" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694892282 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42207" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694892378 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42208" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694892560 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42564" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694892720 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42214" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694892890 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42209" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694893091 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42210" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694893434 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42215" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694893494 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42216" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694893575 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42217" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694893728 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42218" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694893801 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42219" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694894037 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42220" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694894129 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42221" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694894277 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42222" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694894452 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42223" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694894523 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42224" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694894726 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42225" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694894902 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42226" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694895062 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42227" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694895286 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42228" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694895422 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42229" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694895697 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42230" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694895843 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42231" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694896132 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42232" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694896449 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42233" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694896619 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42234" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694896940 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42235" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694897033 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42211" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694897306 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49203" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694897584 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49204" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694897672 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42503" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694897710 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34564" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694899771 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34789" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694899968 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49163" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694910404 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49208" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694910914 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49209" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694911455 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49210" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694918249 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49211" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694919621 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49212" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694922741 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49213" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694938809 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49206" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694947261 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49216" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694950413 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49217" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694956913 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49214" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694965243 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49249" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694971042 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49218" + }, + { + "stop_sequence": 111, + "arrival": { + "delay": 0, + "time": 1694978858 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49219" + }, + { + "stop_sequence": 112, + "arrival": { + "delay": 0, + "time": 1695028237 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38041" + }, + { + "stop_sequence": 113, + "arrival": { + "delay": 0, + "time": 1695066867 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38042" + }, + { + "stop_sequence": 114, + "arrival": { + "delay": 0, + "time": 1695147457 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38043" + }, + { + "stop_sequence": 115, + "arrival": { + "delay": 0, + "time": 1695590339 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38044" + } + ] + } + }, + { + "id": "8e8cd704-b102-41ad-b19b-1e8a9a25bd6b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "25788-701ff27f-2", + "start_date": "20230916", + "route_id": "733" + }, + "stop_time_update": [ + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694889092 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42226" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694889151 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42227" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694889230 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42228" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694889275 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42229" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694889361 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42230" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694889404 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42231" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694889485 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42232" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694889567 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42233" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694889609 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42234" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694889683 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42235" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694889704 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42211" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694889761 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49203" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694889817 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49204" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694889834 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42503" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694889841 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34564" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694890167 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34789" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694890192 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49163" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694890938 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49208" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694890959 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49209" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694890979 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49210" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694891179 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49211" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694891210 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49212" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694891271 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49213" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694891473 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49206" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694891537 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49216" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694891557 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49217" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694891592 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49214" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694891628 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49249" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694891650 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49218" + }, + { + "stop_sequence": 111, + "arrival": { + "delay": 0, + "time": 1694891674 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49219" + }, + { + "stop_sequence": 112, + "arrival": { + "delay": 0, + "time": 1694891767 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38041" + }, + { + "stop_sequence": 113, + "arrival": { + "delay": 0, + "time": 1694891805 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38042" + }, + { + "stop_sequence": 114, + "arrival": { + "delay": 0, + "time": 1694891848 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38043" + }, + { + "stop_sequence": 115, + "arrival": { + "delay": 0, + "time": 1694891909 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38044" + }, + { + "stop_sequence": 116, + "arrival": { + "delay": 0, + "time": 1694891959 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38045" + }, + { + "stop_sequence": 117, + "arrival": { + "delay": 0, + "time": 1694892048 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49247" + }, + { + "stop_sequence": 118, + "arrival": { + "delay": 0, + "time": 1694892075 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49222" + }, + { + "stop_sequence": 119, + "arrival": { + "delay": 0, + "time": 1694892086 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49223" + }, + { + "stop_sequence": 120, + "arrival": { + "delay": 0, + "time": 1694892109 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38049" + }, + { + "stop_sequence": 121, + "arrival": { + "delay": 0, + "time": 1694892126 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49224" + }, + { + "stop_sequence": 122, + "arrival": { + "delay": 0, + "time": 1694892251 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49239" + }, + { + "stop_sequence": 123, + "arrival": { + "delay": 0, + "time": 1694892271 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49240" + }, + { + "stop_sequence": 124, + "arrival": { + "delay": 0, + "time": 1694892283 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49241" + }, + { + "stop_sequence": 125, + "arrival": { + "delay": 0, + "time": 1694892412 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38054" + } + ] + } + }, + { + "id": "d15e823e-c6e0-48e6-aacb-e38739ec0ebc", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "25786-701ff27f-2", + "start_date": "20230916", + "route_id": "733" + }, + "stop_time_update": [ + { + "stop_sequence": 113, + "arrival": { + "delay": 0, + "time": 1694889050 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38042" + }, + { + "stop_sequence": 114, + "arrival": { + "delay": 0, + "time": 1694889086 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38043" + }, + { + "stop_sequence": 115, + "arrival": { + "delay": 0, + "time": 1694889137 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38044" + }, + { + "stop_sequence": 116, + "arrival": { + "delay": 0, + "time": 1694889178 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38045" + }, + { + "stop_sequence": 117, + "arrival": { + "delay": 0, + "time": 1694889248 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49247" + }, + { + "stop_sequence": 118, + "arrival": { + "delay": 0, + "time": 1694889269 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49222" + }, + { + "stop_sequence": 119, + "arrival": { + "delay": 0, + "time": 1694889277 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49223" + }, + { + "stop_sequence": 120, + "arrival": { + "delay": 0, + "time": 1694889295 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38049" + }, + { + "stop_sequence": 121, + "arrival": { + "delay": 0, + "time": 1694889308 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49224" + }, + { + "stop_sequence": 122, + "arrival": { + "delay": 0, + "time": 1694889400 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49239" + }, + { + "stop_sequence": 123, + "arrival": { + "delay": 0, + "time": 1694889415 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49240" + }, + { + "stop_sequence": 124, + "arrival": { + "delay": 0, + "time": 1694889423 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49241" + }, + { + "stop_sequence": 125, + "arrival": { + "delay": 0, + "time": 1694889514 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38054" + } + ] + } + }, + { + "id": "26682cb1-d625-41ca-b1b4-cd55b0625f5c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "25792-701ff27f-2", + "start_date": "20230916", + "route_id": "733" + }, + "stop_time_update": [ + { + "stop_sequence": 5, + "arrival": { + "delay": 0, + "time": 1694888859 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40947" + }, + { + "stop_sequence": 6, + "arrival": { + "delay": 0, + "time": 1694888945 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40932" + }, + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694888994 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42853" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694889086 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42854" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889144 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42855" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889181 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41975" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889204 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889234 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38697" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889283 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38646" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889313 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38632" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889398 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38767" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889464 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38768" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889508 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38769" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889548 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49357" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889587 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38771" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889630 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38668" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889722 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38661" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889798 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38657" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889860 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38743" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889922 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38652" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889992 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38721" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890042 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38659" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890130 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38674" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890203 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38649" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890265 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38718" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890337 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38735" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890383 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42270" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890437 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42271" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890501 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838438" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890652 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44896" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890702 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44897" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890778 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44898" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694891235 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005188" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694891525 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40995" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891624 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40996" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891759 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40997" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891836 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39614" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891899 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39615" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891965 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39616" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694892040 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39617" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694892122 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39618" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694892187 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39619" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694892243 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39620" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694892346 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39621" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694892420 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38281" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694892506 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694892570 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45068" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694892776 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37480" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694892882 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694893002 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40848" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694893156 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Apr" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694893265 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39728" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694893461 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39729" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694893511 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39730" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694893738 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42200" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694893831 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42203" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694893975 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42204" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694894036 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42205" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694894206 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42201" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694894850 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42206" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694895034 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42207" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694895242 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42208" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694895648 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42564" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694896023 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42214" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694896436 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42209" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694896948 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42210" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694897884 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42215" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694898055 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42216" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694898293 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42217" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694898754 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42218" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694898983 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42219" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694899750 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42220" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694900062 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42221" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694900581 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42222" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694901224 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42223" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694901496 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42224" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694902303 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42225" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694903041 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42226" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694903752 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42227" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694904809 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42228" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694905484 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42229" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694906959 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42230" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694907803 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42231" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694909603 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42232" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694911824 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42233" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694913130 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42234" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694915880 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42235" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694916749 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42211" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694919530 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49203" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694922768 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49204" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694923886 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42503" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694924395 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34564" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694985879 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34789" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1695000725 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49163" + } + ] + } + }, + { + "id": "aa638911-f340-476d-b69c-dfd606fe62b3", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "25789-701ff27f-2", + "start_date": "20230916", + "route_id": "733" + }, + "stop_time_update": [ + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889116 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37480" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889180 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889251 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40848" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889337 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Apr" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889395 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39728" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694889494 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39729" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889519 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39730" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889624 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42200" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889666 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42203" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889728 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42204" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889753 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42205" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889822 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42201" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694890057 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42206" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694890117 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42207" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694890182 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42208" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694890302 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42564" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694890403 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42214" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694890507 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42209" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694890624 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42210" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694890815 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42215" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694890847 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42216" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694890889 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42217" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694890968 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42218" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694891005 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42219" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694891121 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42220" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694891165 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42221" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694891234 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42222" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694891314 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42223" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694891346 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42224" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694891435 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42225" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694891510 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42226" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694891577 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42227" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694891667 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42228" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694891721 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42229" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694891826 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42230" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694891881 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42231" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694891985 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42232" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694892095 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42233" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694892153 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42234" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694892258 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42235" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694892288 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42211" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694892373 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49203" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694892457 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49204" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694892483 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42503" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694892494 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34564" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694893038 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34789" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694893084 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49163" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694894702 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49208" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694894754 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49209" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694894808 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49210" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694895357 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49211" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694895446 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49212" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694895627 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49213" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694896266 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49206" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694896483 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49216" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694896551 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49217" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694896674 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49214" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694896804 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49249" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694896881 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49218" + }, + { + "stop_sequence": 111, + "arrival": { + "delay": 0, + "time": 1694896971 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49219" + }, + { + "stop_sequence": 112, + "arrival": { + "delay": 0, + "time": 1694897322 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38041" + }, + { + "stop_sequence": 113, + "arrival": { + "delay": 0, + "time": 1694897469 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38042" + }, + { + "stop_sequence": 114, + "arrival": { + "delay": 0, + "time": 1694897639 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38043" + }, + { + "stop_sequence": 115, + "arrival": { + "delay": 0, + "time": 1694897887 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38044" + }, + { + "stop_sequence": 116, + "arrival": { + "delay": 0, + "time": 1694898101 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38045" + }, + { + "stop_sequence": 117, + "arrival": { + "delay": 0, + "time": 1694898487 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49247" + }, + { + "stop_sequence": 118, + "arrival": { + "delay": 0, + "time": 1694898609 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49222" + }, + { + "stop_sequence": 119, + "arrival": { + "delay": 0, + "time": 1694898659 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49223" + }, + { + "stop_sequence": 120, + "arrival": { + "delay": 0, + "time": 1694898767 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38049" + }, + { + "stop_sequence": 121, + "arrival": { + "delay": 0, + "time": 1694898845 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49224" + }, + { + "stop_sequence": 122, + "arrival": { + "delay": 0, + "time": 1694899450 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49239" + }, + { + "stop_sequence": 123, + "arrival": { + "delay": 0, + "time": 1694899550 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49240" + }, + { + "stop_sequence": 124, + "arrival": { + "delay": 0, + "time": 1694899611 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49241" + }, + { + "stop_sequence": 125, + "arrival": { + "delay": 0, + "time": 1694900297 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38054" + } + ] + } + }, + { + "id": "de85a6f6-fe0d-42bb-879a-cbf51135dac5", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "25953-701ff27f-2", + "start_date": "20230916", + "route_id": "734" + }, + "stop_time_update": [ + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889057 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38514" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694889098 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38516" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889161 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38518" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889264 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38520" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889307 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38521" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889358 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38522" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889408 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38523" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889461 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38524" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694889511 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38525" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694889562 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38526" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694889610 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38527" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694889696 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38528" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694889809 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38529" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694890014 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38530" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694890026 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005209" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694890256 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38531" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694890301 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8921285" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694890419 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38532" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694890471 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38533" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694890525 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38534" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694890573 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694890638 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694890674 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694890728 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694890808 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694890864 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38539" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694890931 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694891013 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694891086 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694891182 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38546" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694891316 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694891394 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694891457 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694891569 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38551" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694891671 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694891769 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694891833 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694891976 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694892011 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694892074 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694892139 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694892189 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694892284 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38560" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694892338 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694892383 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38562" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694892433 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38563" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694892505 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42854" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694892639 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38565" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694892715 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40932" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694892834 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38567" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694892911 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38568" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694892958 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38569" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694893030 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38570" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694893127 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38571" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694893221 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38572" + } + ] + } + }, + { + "id": "89202739-2cdb-44ed-9256-da8227f112d4", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "25955-701ff27f-2", + "start_date": "20230916", + "route_id": "734" + }, + "stop_time_update": [ + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889108 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40606" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889146 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40607" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889210 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40609" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889269 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40610" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889326 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40611" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889376 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40612" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889441 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40620" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889512 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49281" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889577 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49282" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889620 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49283" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889676 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49284" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889742 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49285" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889808 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49286" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889850 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49287" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889895 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49288" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889944 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49289" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890074 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42294" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890201 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42295" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890313 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42296" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890436 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42297" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890531 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42298" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890595 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42299" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890637 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49295" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890759 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49296" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890848 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49297" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890884 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49298" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890957 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49299" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891002 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49300" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891091 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49301" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891164 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49302" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891213 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49303" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891270 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49304" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891302 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49305" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891365 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49306" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891411 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49307" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891438 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49308" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891466 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49309" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891499 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42315" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891526 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42316" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891586 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42317" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891648 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42318" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891736 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8606396" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891826 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38514" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891875 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38516" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694891952 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38518" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694892083 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38520" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694892139 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38521" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694892207 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38522" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694892277 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38523" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694892352 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38524" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694892423 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38525" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694892500 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38526" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694892573 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38527" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694892709 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38528" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694892896 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38529" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694893265 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38530" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694893289 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005209" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694893753 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38531" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694893852 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8921285" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694894120 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38532" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694894243 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38533" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694894374 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38534" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694894495 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694894663 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694894759 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694894904 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694895131 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694895294 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38539" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694895497 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694895757 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694895999 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694896331 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38546" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694896824 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694897129 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694897390 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694897874 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38551" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694898341 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694898821 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694899156 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694899943 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694900152 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694900530 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694900944 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694901273 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694901937 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38560" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694902337 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694902678 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38562" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694903073 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38563" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694903669 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42854" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694904882 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38565" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694905622 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40932" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694906897 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38567" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694907795 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38568" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694908386 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38569" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694909326 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38570" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694910715 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38571" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694912196 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38572" + } + ] + } + }, + { + "id": "830def33-4849-46cd-a0b6-408c1ccd755c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "25950-701ff27f-2", + "start_date": "20230916", + "route_id": "734" + }, + "stop_time_update": [ + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694889102 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38560" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694889143 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694889175 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38562" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694889211 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38563" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694889261 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42854" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694889352 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38565" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694889400 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40932" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694889475 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38567" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694889521 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38568" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694889549 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38569" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694889591 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38570" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694889646 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38571" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694889698 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38572" + } + ] + } + }, + { + "id": "44fed9f4-5b18-45e1-a292-6e2a9eb9f639", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "25952-701ff27f-2", + "start_date": "20230916", + "route_id": "734" + }, + "stop_time_update": [ + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694889060 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694889153 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38546" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694889278 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694889348 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694889405 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694889501 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38551" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694889585 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694889663 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694889714 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694889822 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694889848 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694889894 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694889941 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694889976 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694890042 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38560" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694890079 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694890109 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38562" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694890142 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38563" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694890189 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42854" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694890275 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38565" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694890322 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40932" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694890395 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38567" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694890440 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38568" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694890468 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38569" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694890510 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38570" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694890565 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38571" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694890618 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38572" + } + ] + } + }, + { + "id": "7338c480-acc0-491d-a9b6-1d3ca961c2dd", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "25949-701ff27f-2", + "start_date": "20230916", + "route_id": "734" + }, + "stop_time_update": [ + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694889063 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38571" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694889119 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38572" + } + ] + } + }, + { + "id": "2d7d9ae4-c9c9-48c4-b7e9-0118f0f060f0", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "25956-701ff27f-2", + "start_date": "20230916", + "route_id": "734" + }, + "stop_time_update": [ + { + "stop_sequence": 3, + "arrival": { + "delay": 0, + "time": 1694889047 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40584" + }, + { + "stop_sequence": 4, + "arrival": { + "delay": 0, + "time": 1694889087 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40594" + }, + { + "stop_sequence": 5, + "arrival": { + "delay": 0, + "time": 1694889236 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40593" + }, + { + "stop_sequence": 6, + "arrival": { + "delay": 0, + "time": 1694889292 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40597" + }, + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694889322 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40598" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694889363 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40599" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889402 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "30963" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889416 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40601" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889431 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40602" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889477 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40603" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889517 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40604" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889587 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40606" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889622 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40607" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889682 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40609" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889738 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40610" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889792 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40611" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889840 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40612" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889902 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40620" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889972 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49281" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694890035 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49282" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694890077 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49283" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890132 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49284" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890197 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49285" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890263 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49286" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890305 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49287" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890350 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49288" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890400 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49289" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890532 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42294" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890663 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42295" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890779 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42296" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890909 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42297" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694891010 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42298" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694891078 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42299" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694891124 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49295" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694891256 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49296" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694891354 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49297" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891393 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49298" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891473 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49299" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891523 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49300" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891622 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49301" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891705 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49302" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891760 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49303" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891825 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49304" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891860 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49305" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891933 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49306" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891985 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49307" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694892017 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49308" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694892049 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49309" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694892086 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42315" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694892118 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42316" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694892188 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42317" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694892260 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42318" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694892363 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8606396" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694892469 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38514" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694892527 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38516" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694892618 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38518" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694892776 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38520" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694892843 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38521" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694892925 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38522" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694893010 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38523" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694893102 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38524" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694893190 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38525" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694893285 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38526" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694893375 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38527" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694893545 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38528" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694893781 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38529" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694894255 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38530" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694894286 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005209" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694894900 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38531" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694895032 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8921285" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694895396 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38532" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694895566 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38533" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694895748 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38534" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694895916 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694896153 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694896290 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694896498 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694896826 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694897065 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38539" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694897366 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694897757 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694898126 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694898643 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38546" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694899430 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694899929 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694900365 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694901189 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38551" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694902013 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694902884 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694903509 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694905035 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694905455 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694906227 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694907099 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694907812 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694909300 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38560" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694910232 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694911048 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38562" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694912023 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38563" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694913550 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42854" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694916893 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38565" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694919100 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40932" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694923255 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38567" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694926479 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38568" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694928755 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38569" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694932656 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38570" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694939159 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38571" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694947272 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38572" + } + ] + } + }, + { + "id": "829fb8ed-0e4d-4407-baf6-4e633c5458da", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "25954-701ff27f-2", + "start_date": "20230916", + "route_id": "734" + }, + "stop_time_update": [ + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889033 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42295" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889153 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42296" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889284 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42297" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889382 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42298" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889446 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42299" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889488 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49295" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889608 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49296" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889694 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49297" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889728 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49298" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889796 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49299" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889837 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49300" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889918 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49301" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889984 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49302" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890028 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49303" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890078 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49304" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890105 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49305" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890160 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49306" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890199 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49307" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890222 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49308" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890246 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49309" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890273 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42315" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890296 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42316" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890346 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42317" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890397 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42318" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890468 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8606396" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890540 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38514" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890578 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38516" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890638 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38518" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890739 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38520" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890782 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38521" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694890833 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38522" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694890885 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38523" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694890940 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38524" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694890991 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38525" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694891047 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38526" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694891099 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38527" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694891194 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38528" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694891323 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38529" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694891567 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38530" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694891583 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005209" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694891876 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38531" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694891936 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8921285" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694892096 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38532" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694892168 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38533" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694892244 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38534" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694892313 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694892407 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694892461 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694892540 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694892662 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694892748 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38539" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694892854 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694892986 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694893106 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694893267 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38546" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694893498 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694893636 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694893752 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694893959 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38551" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694894152 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694894343 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694894473 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694894764 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694894839 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694894971 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694895113 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694895222 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694895435 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38560" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694895559 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694895662 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38562" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694895779 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38563" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694895950 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42854" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694896278 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38565" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694896467 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40932" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694896774 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38567" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694896978 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38568" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694897106 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38569" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694897302 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38570" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694897575 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38571" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694897845 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38572" + } + ] + } + }, + { + "id": "94ca2494-3e84-48d4-9bf9-1f218ffc6b18", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "8907e924-141d-47fa-a840-d4fd719470b5", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "25951-701ff27f-2", + "start_date": "20230916", + "route_id": "734" + }, + "stop_time_update": [ + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694889104 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38546" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694889231 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694889302 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694889359 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694889456 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38551" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694889540 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694889619 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694889671 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694889779 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694889806 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694889851 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694889898 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694889934 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694890000 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38560" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694890037 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694890067 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38562" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694890100 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38563" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694890147 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42854" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694890233 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38565" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694890279 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40932" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694890351 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38567" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694890397 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38568" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694890425 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38569" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694890466 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38570" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694890521 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38571" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694890573 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38572" + } + ] + } + }, + { + "id": "d91b04ea-a0fd-41d7-9225-057aff2d90e1", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "26064-701ff27f-2", + "start_date": "20230916", + "route_id": "735" + }, + "stop_time_update": [ + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889077 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39621" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889128 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38281" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889186 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889228 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45068" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889357 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37480" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889420 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889488 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40848" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889572 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Apr" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694889632 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39728" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889725 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39729" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889749 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39730" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889849 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42200" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889893 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42203" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889946 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42204" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889987 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42205" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694890046 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42201" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694890291 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42206" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694890345 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42207" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694890403 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42208" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694890527 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42564" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694890628 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42214" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694890741 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42209" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694890862 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42210" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694891048 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40951" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694891114 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40952" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694891178 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40953" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694891227 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40954" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694891306 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40955" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694891349 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40956" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694891412 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40957" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694891479 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40958" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694891507 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40959" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694891671 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40960" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694891796 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "30962" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694891867 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40961" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694891937 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40608" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694892080 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40605" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694892372 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40597" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694892471 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40593" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694892576 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40962" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694892591 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40588" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694892683 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40594" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694892726 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40585" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694892743 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40584" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694892931 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40587" + } + ] + } + }, + { + "id": "85705a2e-2455-4970-9523-d9306ed5efa0", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "26062-701ff27f-2", + "start_date": "20230916", + "route_id": "735" + }, + "stop_time_update": [ + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694889220 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40951" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694889284 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40952" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694889344 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40953" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694889389 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40954" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694889462 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40955" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694889500 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40956" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694889555 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40957" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694889613 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40958" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694889637 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40959" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694889771 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40960" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694889871 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "30962" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694889926 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40961" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694889979 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40608" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694890084 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40605" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694890288 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40597" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694890354 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40593" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694890422 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40962" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694890432 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40588" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694890490 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40594" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694890517 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40585" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694890528 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40584" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694890643 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40587" + } + ] + } + }, + { + "id": "e051bdb8-9b85-4162-b92b-c8518ef62bb8", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "26065-701ff27f-2", + "start_date": "20230916", + "route_id": "735" + }, + "stop_time_update": [ + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889042 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44898" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889223 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40993" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889476 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005188" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889718 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40995" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889797 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40996" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889873 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40997" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889930 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39614" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889976 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39615" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890031 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39616" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890077 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39617" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890133 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39618" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890176 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39619" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890216 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39620" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890282 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39621" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890329 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38281" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890384 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890423 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45068" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890547 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37480" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890609 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890677 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40848" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890762 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Apr" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890824 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39728" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890922 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39729" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890947 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39730" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694891056 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42200" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694891105 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42203" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694891164 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42204" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694891210 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42205" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694891277 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42201" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694891566 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42206" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694891632 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42207" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694891704 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42208" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694891861 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42564" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694891991 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42214" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694892141 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42209" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694892305 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42210" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694892565 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40951" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694892661 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40952" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694892754 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40953" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694892826 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40954" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694892945 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40955" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694893010 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40956" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694893106 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40957" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694893210 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40958" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694893254 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40959" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694893514 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40960" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694893720 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "30962" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694893839 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40961" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694893958 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40608" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694894206 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40605" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694894734 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40597" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694894918 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40593" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694895119 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40962" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694895148 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40588" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694895328 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40594" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694895414 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40585" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694895448 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40584" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694895831 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40587" + } + ] + } + }, + { + "id": "4bc3cfe9-e79f-431d-95ae-1a510d006a39", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "26063-701ff27f-2", + "start_date": "20230916", + "route_id": "735" + }, + "stop_time_update": [ + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694889065 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39728" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694889164 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39729" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889190 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39730" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889296 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42200" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889342 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42203" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889397 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42204" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889439 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42205" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694889500 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42201" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694889749 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42206" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694889803 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42207" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694889861 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42208" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694889983 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42564" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694890081 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42214" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694890189 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42209" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694890304 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42210" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694890479 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40951" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694890540 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40952" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694890599 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40953" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694890644 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40954" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694890717 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40955" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694890755 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40956" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694890812 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40957" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694890872 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40958" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694890898 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40959" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694891043 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40960" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694891153 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "30962" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694891215 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40961" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694891276 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40608" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694891399 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40605" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694891647 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40597" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694891729 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40593" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694891817 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40962" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694891829 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40588" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694891905 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40594" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694891941 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40585" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694891954 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40584" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694892108 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40587" + } + ] + } + }, + { + "id": "792651fb-fa8b-4514-b7c2-f73244f6030f", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "26067-701ff27f-2", + "start_date": "20230916", + "route_id": "735" + }, + "stop_time_update": [ + { + "stop_sequence": 6, + "arrival": { + "delay": 0, + "time": 1694889038 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40932" + }, + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694889088 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42853" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694889189 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42854" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889239 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42855" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889277 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41975" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889300 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889330 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38697" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889380 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38646" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889410 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38632" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889495 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38767" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889558 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38768" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889606 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38769" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889646 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49357" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889685 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38771" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889728 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38668" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889823 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38661" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889897 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38657" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889964 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38743" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890028 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38652" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890090 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38721" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890145 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38659" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890226 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38674" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890289 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38649" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890368 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38718" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890425 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38735" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890479 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42270" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890533 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42271" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890597 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838438" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890746 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44896" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890796 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44897" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890871 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44898" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694891052 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40993" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694891324 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005188" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891610 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40995" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891708 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40996" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891805 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40997" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891879 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39614" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891941 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39615" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694892015 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39616" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694892079 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39617" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694892158 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39618" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694892220 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39619" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694892278 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39620" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694892376 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39621" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694892447 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38281" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694892531 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694892593 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45068" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694892792 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37480" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694892894 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694893010 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40848" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694893158 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Apr" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694893269 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39728" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694893448 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39729" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694893496 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39730" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694893705 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42200" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694893800 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42203" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694893919 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42204" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694894012 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42205" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694894152 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42201" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694894792 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42206" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694894946 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42207" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694895120 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42208" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694895512 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42564" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694895855 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42214" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694896267 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42209" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694896745 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42210" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694897565 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40951" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694897886 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40952" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694898210 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40953" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694898467 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40954" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694898910 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40955" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694899159 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40956" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694899544 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40957" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694899972 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40958" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694900161 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40959" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694901342 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40960" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694902373 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "30962" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694903012 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40961" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694903687 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40608" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694905219 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40605" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694909196 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40597" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694910880 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40593" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694912935 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40962" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694913249 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40588" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694915357 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40594" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694915358 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40586" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694916459 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40585" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694916909 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40584" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694922862 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40587" + } + ] + } + }, + { + "id": "d42c6bd0-fc9b-4f3f-ab98-0de126ac7a45", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "26066-701ff27f-2", + "start_date": "20230916", + "route_id": "735" + }, + "stop_time_update": [ + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889038 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38632" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889128 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38767" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889194 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38768" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889244 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38769" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889286 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49357" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889327 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38771" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889372 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38668" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889470 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38661" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889546 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38657" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889614 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38743" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889679 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38652" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889741 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38721" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889797 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38659" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889878 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38674" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889941 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38649" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890018 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38718" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890075 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38735" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890128 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42270" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890180 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42271" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890242 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838438" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890387 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44896" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890435 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44897" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890506 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44898" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890678 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40993" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890933 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "16005188" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891196 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40995" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891286 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40996" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891374 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40997" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891441 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39614" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891497 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39615" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891563 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39616" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891620 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39617" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891690 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39618" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891745 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39619" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891796 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39620" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891883 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39621" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891946 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38281" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694892018 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694892073 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45068" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694892245 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37480" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694892333 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694892432 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40848" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694892559 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "2-Apr" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694892653 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39728" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694892804 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39729" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694892844 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39730" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694893019 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42200" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694893098 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42203" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694893196 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42204" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694893273 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42205" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694893387 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42201" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694893904 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42206" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694894026 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42207" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694894164 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42208" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694894471 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42564" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694894736 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42214" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694895051 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42209" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694895410 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42210" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694896013 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40951" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694896245 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40952" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694896477 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40953" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694896659 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40954" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694896969 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40955" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694897141 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40956" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694897405 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40957" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694897694 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40958" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694897821 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40959" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694898596 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40960" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694899251 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "30962" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694899647 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40961" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694900057 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40608" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694900958 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40605" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694903126 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40597" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694903976 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40593" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694904963 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40962" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694905109 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40588" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694906062 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40594" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694906063 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40586" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694906541 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40585" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694906733 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40584" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694909087 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40587" + } + ] + } + }, + { + "id": "382197bf-3c91-4856-855e-cd7977896cab", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "21062-701ff27f-2", + "start_date": "20230916", + "route_id": "736" + }, + "stop_time_update": [ + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694889130 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Jul" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694889344 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Feb" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694889413 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8-Jan" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694889444 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "9-Jan" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694889484 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Apr" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694889542 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Jan" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694889583 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44863" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694889614 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Mar" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694889668 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "11-Jan" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694889711 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44866" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694889756 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44867" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694889788 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44868" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694889807 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44869" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694889842 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44870" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694889871 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44871" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694889909 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44872" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694889968 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50020" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694890049 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-11" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694890086 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91162" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694890164 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50023" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694890261 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Jul" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694890294 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Apr" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694890340 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37474" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694890381 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44879" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694890410 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44880" + }, + { + "stop_sequence": 111, + "arrival": { + "delay": 0, + "time": 1694890441 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44881" + }, + { + "stop_sequence": 112, + "arrival": { + "delay": 0, + "time": 1694890458 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50028" + }, + { + "stop_sequence": 113, + "arrival": { + "delay": 0, + "time": 1694890518 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38151" + }, + { + "stop_sequence": 114, + "arrival": { + "delay": 0, + "time": 1694890664 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-13" + }, + { + "stop_sequence": 115, + "arrival": { + "delay": 0, + "time": 1694890719 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38194" + }, + { + "stop_sequence": 116, + "arrival": { + "delay": 0, + "time": 1694890744 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50029" + }, + { + "stop_sequence": 118, + "arrival": { + "delay": 0, + "time": 1694890757 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50014" + }, + { + "stop_sequence": 119, + "arrival": { + "delay": 0, + "time": 1694890771 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38204" + }, + { + "stop_sequence": 120, + "arrival": { + "delay": 0, + "time": 1694890809 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50013" + }, + { + "stop_sequence": 121, + "arrival": { + "delay": 0, + "time": 1694890849 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38127" + }, + { + "stop_sequence": 122, + "arrival": { + "delay": 0, + "time": 1694890888 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50015" + }, + { + "stop_sequence": 123, + "arrival": { + "delay": 0, + "time": 1694891096 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38149" + }, + { + "stop_sequence": 124, + "arrival": { + "delay": 0, + "time": 1694891162 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Feb" + } + ] + } + }, + { + "id": "3246cf03-b840-4daf-bd33-fb5e05ecfd1b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "21132-701ff27f-2", + "start_date": "20230916", + "route_id": "736" + }, + "stop_time_update": [ + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889027 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "1566267" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889110 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44967" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889161 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44968" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889217 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-May" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889249 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Jun" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889308 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Aug" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889355 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50024" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889477 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-12" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889555 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37471" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889587 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37560" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889620 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37564" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889657 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37517" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889687 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37475" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889721 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37508" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889748 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37476" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889777 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37526" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889843 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37567" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889861 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "13-Jan" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889916 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "13-Feb" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889940 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "28-Jan" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889986 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "12-3" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890055 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "12-Jan" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890102 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "12-Feb" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890154 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Jan" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890206 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Mar" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890346 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Jun" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890405 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Aug" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890549 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Mar" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890651 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-May" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890810 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jul" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890879 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Sep" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890976 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Nov" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891085 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Dec" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891185 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-14" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891353 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-17" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891445 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-19" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891515 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-20" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891590 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-22" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891668 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-24" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891779 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-25" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694892158 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90003" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694892223 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90007" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694892295 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90008" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694892458 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694892492 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39600" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694892594 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37496" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694892672 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45064" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694892791 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694892915 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45069" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694893111 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37523" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694893184 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694893347 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49310" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694893408 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694893518 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39634" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694893569 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39635" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694893663 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39636" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694893776 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49503" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694894057 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694894173 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694894249 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694894411 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49319" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694894575 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694894669 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39642" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694895362 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49324" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694895498 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49325" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694895708 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49326" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694895799 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39648" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694895969 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39649" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694896115 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45112" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694896283 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45113" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694896605 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37490" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694896835 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45115" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694896943 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45116" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694897268 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45118" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694897637 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45119" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694897870 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45120" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694898172 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45121" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694898413 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694898883 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694899064 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694899496 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694900086 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694900499 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38539" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694901068 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694901816 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694902547 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694905329 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694906430 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694907468 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694909549 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38551" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694911796 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694914388 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694916378 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694921936 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694923347 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694926850 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694930989 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 111, + "arrival": { + "delay": 0, + "time": 1694934739 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + }, + { + "stop_sequence": 112, + "arrival": { + "delay": 0, + "time": 1694943859 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38560" + }, + { + "stop_sequence": 113, + "arrival": { + "delay": 0, + "time": 1694950703 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 114, + "arrival": { + "delay": 0, + "time": 1694957601 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38562" + }, + { + "stop_sequence": 115, + "arrival": { + "delay": 0, + "time": 1694967247 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38563" + }, + { + "stop_sequence": 116, + "arrival": { + "delay": 0, + "time": 1694982118 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42854" + }, + { + "stop_sequence": 117, + "arrival": { + "delay": 0, + "time": 1695065181 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38565" + }, + { + "stop_sequence": 118, + "arrival": { + "delay": 0, + "time": 1695200619 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40932" + } + ] + } + }, + { + "id": "9aef2024-9eb1-4374-bbba-ca344b76d6ef", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "21064-701ff27f-2", + "start_date": "20230916", + "route_id": "736" + }, + "stop_time_update": [ + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889025 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38646" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889065 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38632" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889146 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38767" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889218 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38768" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694889261 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38769" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694889303 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49357" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694889341 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38771" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694889388 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38668" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694889486 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38661" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694889568 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38657" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889629 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38743" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889694 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38652" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889756 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38721" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889811 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38659" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889899 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38674" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889964 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38649" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890096 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38735" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890149 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42270" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890193 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42271" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890382 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38688" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890438 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38673" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890513 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39785" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694890552 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38664" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694890606 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38702" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694890650 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39787" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890693 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38501" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890761 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38692" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890829 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38714" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890881 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39791" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890910 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38506" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890962 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38635" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891000 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38509" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891044 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38642" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891092 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39795" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891120 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38502" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891194 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38503" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891417 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35692" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891490 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35693" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891558 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35694" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694891589 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35695" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694891660 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35696" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694891865 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35697" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694892024 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39778" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694892165 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35797" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694892231 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35798" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694892280 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35799" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694892377 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35800" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694892450 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35801" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694892489 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35802" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694892562 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35803" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694892649 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38507" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694892730 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34473" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694892802 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38500" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694892864 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35808" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694892976 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35710" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694893054 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50036" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694893480 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50037" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694893775 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50038" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694893942 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50039" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694894061 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50040" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694894284 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50041" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694894647 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-15" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694894898 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-13" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694895488 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Oct" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694895681 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Aug" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694896248 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jun" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694896726 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Feb" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694897331 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Jul" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694898441 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Feb" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694898854 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8-Jan" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694899059 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "9-Jan" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694899327 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Apr" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694899740 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Jan" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694900056 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44863" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694900306 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Mar" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694900762 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "11-Jan" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694901154 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44866" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694901588 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44867" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694901914 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44868" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694902118 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44869" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694902512 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44870" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694902850 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44871" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694903310 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44872" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694904099 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50020" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694905315 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-11" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694905941 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91162" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694907401 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50023" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694909548 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Jul" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694910411 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Apr" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694911689 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37474" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694912966 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44879" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694913962 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44880" + }, + { + "stop_sequence": 111, + "arrival": { + "delay": 0, + "time": 1694915109 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44881" + }, + { + "stop_sequence": 112, + "arrival": { + "delay": 0, + "time": 1694915740 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50028" + }, + { + "stop_sequence": 113, + "arrival": { + "delay": 0, + "time": 1694918403 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38151" + }, + { + "stop_sequence": 114, + "arrival": { + "delay": 0, + "time": 1694927297 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-13" + }, + { + "stop_sequence": 115, + "arrival": { + "delay": 0, + "time": 1694932161 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38194" + }, + { + "stop_sequence": 116, + "arrival": { + "delay": 0, + "time": 1694934807 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50029" + }, + { + "stop_sequence": 118, + "arrival": { + "delay": 0, + "time": 1694936206 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50014" + }, + { + "stop_sequence": 119, + "arrival": { + "delay": 0, + "time": 1694937917 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38204" + }, + { + "stop_sequence": 120, + "arrival": { + "delay": 0, + "time": 1694943169 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50013" + }, + { + "stop_sequence": 121, + "arrival": { + "delay": 0, + "time": 1694949922 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38127" + }, + { + "stop_sequence": 122, + "arrival": { + "delay": 0, + "time": 1694958162 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50015" + }, + { + "stop_sequence": 123, + "arrival": { + "delay": 0, + "time": 1695123991 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38149" + }, + { + "stop_sequence": 124, + "arrival": { + "delay": 0, + "time": 1695803865 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Feb" + } + ] + } + }, + { + "id": "ace21c3f-fa61-451a-ae52-b23ed0242f81", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "21130-701ff27f-2", + "start_date": "20230916", + "route_id": "736" + }, + "stop_time_update": [ + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889015 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-14" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889173 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-17" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889255 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-19" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889316 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-20" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889379 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-22" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694889444 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-24" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694889532 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-25" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694889814 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90003" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694889859 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90007" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694889908 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90008" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890015 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890037 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39600" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890102 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37496" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890150 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45064" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694890221 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694890294 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45069" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694890405 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37523" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694890445 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694890531 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49310" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694890563 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694890619 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39634" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694890645 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39635" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694890692 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39636" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694890746 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49503" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694890878 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694890930 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694890963 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694891034 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49319" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694891102 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694891141 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39642" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694891409 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49324" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694891458 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49325" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694891532 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49326" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694891564 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39648" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694891621 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39649" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694891670 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45112" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694891724 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45113" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694891825 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37490" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694891894 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45115" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694891926 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45116" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694892019 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45118" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694892121 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45119" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694892183 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45120" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694892260 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45121" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694892320 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694892432 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694892474 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694892570 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694892695 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694892778 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38539" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694892886 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694893021 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694893143 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694893544 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38548" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694893679 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38549" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694893797 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38550" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694894008 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38551" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694894205 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38552" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694894401 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49359" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694894532 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49360" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694894834 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49361" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694894899 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49362" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694895042 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49363" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694895187 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49364" + }, + { + "stop_sequence": 111, + "arrival": { + "delay": 0, + "time": 1694895299 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49365" + }, + { + "stop_sequence": 112, + "arrival": { + "delay": 0, + "time": 1694895517 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38560" + }, + { + "stop_sequence": 113, + "arrival": { + "delay": 0, + "time": 1694895644 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 114, + "arrival": { + "delay": 0, + "time": 1694895750 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38562" + }, + { + "stop_sequence": 115, + "arrival": { + "delay": 0, + "time": 1694895870 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38563" + }, + { + "stop_sequence": 116, + "arrival": { + "delay": 0, + "time": 1694896011 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42854" + }, + { + "stop_sequence": 117, + "arrival": { + "delay": 0, + "time": 1694896383 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38565" + }, + { + "stop_sequence": 118, + "arrival": { + "delay": 0, + "time": 1694896577 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40932" + }, + { + "stop_sequence": 119, + "arrival": { + "delay": 0, + "time": 1694896890 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38567" + }, + { + "stop_sequence": 120, + "arrival": { + "delay": 0, + "time": 1694897103 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38568" + }, + { + "stop_sequence": 121, + "arrival": { + "delay": 0, + "time": 1694897235 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38569" + }, + { + "stop_sequence": 122, + "arrival": { + "delay": 0, + "time": 1694897437 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38570" + }, + { + "stop_sequence": 123, + "arrival": { + "delay": 0, + "time": 1694897719 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38571" + }, + { + "stop_sequence": 124, + "arrival": { + "delay": 0, + "time": 1694897998 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38572" + }, + { + "stop_sequence": 125, + "arrival": { + "delay": 0, + "time": 1694899000 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38393" + }, + { + "stop_sequence": 126, + "arrival": { + "delay": 0, + "time": 1694899343 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38394" + }, + { + "stop_sequence": 127, + "arrival": { + "delay": 0, + "time": 1694899657 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38395" + }, + { + "stop_sequence": 128, + "arrival": { + "delay": 0, + "time": 1694899911 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38396" + }, + { + "stop_sequence": 129, + "arrival": { + "delay": 0, + "time": 1694900381 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38397" + }, + { + "stop_sequence": 130, + "arrival": { + "delay": 0, + "time": 1694900575 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38398" + }, + { + "stop_sequence": 131, + "arrival": { + "delay": 0, + "time": 1694900792 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38399" + }, + { + "stop_sequence": 132, + "arrival": { + "delay": 0, + "time": 1694901367 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38400" + }, + { + "stop_sequence": 133, + "arrival": { + "delay": 0, + "time": 1694901826 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38401" + }, + { + "stop_sequence": 134, + "arrival": { + "delay": 0, + "time": 1694902289 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38402" + }, + { + "stop_sequence": 135, + "arrival": { + "delay": 0, + "time": 1694903181 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38433" + } + ] + } + }, + { + "id": "9cd347c3-b7a1-4d21-bea6-4611d7e839d9", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "21126-701ff27f-2", + "start_date": "20230916", + "route_id": "736" + }, + "stop_time_update": [ + { + "stop_sequence": 113, + "arrival": { + "delay": 0, + "time": 1694888943 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42857" + }, + { + "stop_sequence": 114, + "arrival": { + "delay": 0, + "time": 1694888976 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38562" + }, + { + "stop_sequence": 115, + "arrival": { + "delay": 0, + "time": 1694889013 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38563" + }, + { + "stop_sequence": 116, + "arrival": { + "delay": 0, + "time": 1694889054 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42854" + }, + { + "stop_sequence": 117, + "arrival": { + "delay": 0, + "time": 1694889156 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38565" + }, + { + "stop_sequence": 118, + "arrival": { + "delay": 0, + "time": 1694889205 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40932" + }, + { + "stop_sequence": 119, + "arrival": { + "delay": 0, + "time": 1694889280 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38567" + }, + { + "stop_sequence": 120, + "arrival": { + "delay": 0, + "time": 1694889327 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38568" + }, + { + "stop_sequence": 121, + "arrival": { + "delay": 0, + "time": 1694889356 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38569" + }, + { + "stop_sequence": 122, + "arrival": { + "delay": 0, + "time": 1694889398 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38570" + }, + { + "stop_sequence": 123, + "arrival": { + "delay": 0, + "time": 1694889454 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38571" + }, + { + "stop_sequence": 124, + "arrival": { + "delay": 0, + "time": 1694889505 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38572" + }, + { + "stop_sequence": 125, + "arrival": { + "delay": 0, + "time": 1694889670 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38393" + }, + { + "stop_sequence": 126, + "arrival": { + "delay": 0, + "time": 1694889720 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38394" + }, + { + "stop_sequence": 127, + "arrival": { + "delay": 0, + "time": 1694889763 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38395" + }, + { + "stop_sequence": 128, + "arrival": { + "delay": 0, + "time": 1694889796 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38396" + }, + { + "stop_sequence": 129, + "arrival": { + "delay": 0, + "time": 1694889854 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38397" + }, + { + "stop_sequence": 130, + "arrival": { + "delay": 0, + "time": 1694889876 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38398" + }, + { + "stop_sequence": 131, + "arrival": { + "delay": 0, + "time": 1694889901 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38399" + }, + { + "stop_sequence": 132, + "arrival": { + "delay": 0, + "time": 1694889962 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38400" + }, + { + "stop_sequence": 133, + "arrival": { + "delay": 0, + "time": 1694890008 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38401" + }, + { + "stop_sequence": 134, + "arrival": { + "delay": 0, + "time": 1694890051 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38402" + }, + { + "stop_sequence": 135, + "arrival": { + "delay": 0, + "time": 1694890126 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38433" + } + ] + } + }, + { + "id": "f003275a-7e73-4967-aafd-d45d4626d1b1", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "21065-701ff27f-2", + "start_date": "20230916", + "route_id": "736" + }, + "stop_time_update": [ + { + "stop_sequence": 3, + "arrival": { + "delay": 0, + "time": 1694889017 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38508" + }, + { + "stop_sequence": 4, + "arrival": { + "delay": 0, + "time": 1694889083 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38511" + }, + { + "stop_sequence": 5, + "arrival": { + "delay": 0, + "time": 1694889129 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38482" + }, + { + "stop_sequence": 6, + "arrival": { + "delay": 0, + "time": 1694889151 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38440" + }, + { + "stop_sequence": 7, + "arrival": { + "delay": 0, + "time": 1694889179 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38446" + }, + { + "stop_sequence": 8, + "arrival": { + "delay": 0, + "time": 1694889246 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38491" + }, + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889326 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38498" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889366 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38495" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889542 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37446" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889606 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37447" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889634 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40929" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889696 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40946" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889751 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40947" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694890015 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42855" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694890039 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "41975" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694890094 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38697" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694890143 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38646" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694890179 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38632" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694890254 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38767" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694890322 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38768" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694890363 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38769" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890403 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49357" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890440 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38771" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890486 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38668" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890584 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38661" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890668 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38657" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890730 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38743" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890798 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38652" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890865 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38721" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890924 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38659" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694891020 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38674" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694891093 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38649" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694891242 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38735" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694891304 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42270" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694891356 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42271" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694891583 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38688" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694891651 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38673" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694891746 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39785" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891795 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38664" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891863 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38702" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891921 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39787" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891976 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38501" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694892065 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38692" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694892156 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38714" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694892227 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39791" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694892266 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38506" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694892337 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38635" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694892389 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38509" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694892451 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38642" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694892518 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39795" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694892558 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38502" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694892663 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38503" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694892991 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35692" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694893102 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35693" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694893207 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35694" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694893254 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35695" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694893365 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35696" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694893693 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35697" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694893955 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39778" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694894195 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35797" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694894309 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35798" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694894394 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35799" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694894567 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35800" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694894698 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35801" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694894769 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35802" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694894903 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35803" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694895064 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38507" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694895218 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34473" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694895355 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38500" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694895476 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35808" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694895696 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35710" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694895852 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50036" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694896744 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50037" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694897404 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50038" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694897793 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50039" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694898080 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50040" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694898631 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50041" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694899582 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-15" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694900280 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-13" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694902068 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Oct" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694902700 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Aug" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694904725 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jun" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694906648 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Feb" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694909419 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Jul" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694915826 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "7-Feb" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694918797 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "8-Jan" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694920417 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "9-Jan" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694922714 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Apr" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694926706 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Jan" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694930209 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44863" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694933293 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Mar" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694939851 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "11-Jan" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694946700 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44866" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694956083 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44867" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694964803 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44868" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694971237 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44869" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694986532 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44870" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1695003930 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44871" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1695038138 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44872" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1695170431 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50020" + } + ] + } + }, + { + "id": "09d10caa-eb5b-49db-8c8b-a9ab470272d8", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "21198-701ff27f-2", + "start_date": "20230916", + "route_id": "737" + }, + "stop_time_update": [ + { + "stop_sequence": 9, + "arrival": { + "delay": 0, + "time": 1694889064 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38495" + }, + { + "stop_sequence": 10, + "arrival": { + "delay": 0, + "time": 1694889218 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40928" + }, + { + "stop_sequence": 11, + "arrival": { + "delay": 0, + "time": 1694889262 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37446" + }, + { + "stop_sequence": 12, + "arrival": { + "delay": 0, + "time": 1694889338 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37447" + }, + { + "stop_sequence": 13, + "arrival": { + "delay": 0, + "time": 1694889360 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40929" + }, + { + "stop_sequence": 14, + "arrival": { + "delay": 0, + "time": 1694889424 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40946" + }, + { + "stop_sequence": 15, + "arrival": { + "delay": 0, + "time": 1694889480 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "40947" + }, + { + "stop_sequence": 16, + "arrival": { + "delay": 0, + "time": 1694889522 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42245" + }, + { + "stop_sequence": 17, + "arrival": { + "delay": 0, + "time": 1694889564 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42246" + }, + { + "stop_sequence": 18, + "arrival": { + "delay": 0, + "time": 1694889617 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38779" + }, + { + "stop_sequence": 19, + "arrival": { + "delay": 0, + "time": 1694889663 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42247" + }, + { + "stop_sequence": 20, + "arrival": { + "delay": 0, + "time": 1694889708 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42248" + }, + { + "stop_sequence": 21, + "arrival": { + "delay": 0, + "time": 1694889738 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38782" + }, + { + "stop_sequence": 22, + "arrival": { + "delay": 0, + "time": 1694889847 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42249" + }, + { + "stop_sequence": 23, + "arrival": { + "delay": 0, + "time": 1694890008 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42250" + }, + { + "stop_sequence": 24, + "arrival": { + "delay": 0, + "time": 1694890084 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38630" + }, + { + "stop_sequence": 25, + "arrival": { + "delay": 0, + "time": 1694890146 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42252" + }, + { + "stop_sequence": 26, + "arrival": { + "delay": 0, + "time": 1694890176 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42253" + }, + { + "stop_sequence": 27, + "arrival": { + "delay": 0, + "time": 1694890214 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42254" + }, + { + "stop_sequence": 28, + "arrival": { + "delay": 0, + "time": 1694890255 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42255" + }, + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694890283 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42256" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694890302 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42257" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694890324 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42258" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694890350 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42259" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694890398 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42260" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694890435 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42261" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694890512 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38659" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694890595 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38674" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694890665 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38649" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694890808 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38735" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694890864 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42270" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694890911 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42271" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694891124 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38688" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694891177 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38673" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694891261 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39785" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694891304 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38664" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694891365 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38702" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694891415 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39787" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694891463 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38501" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694891530 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38692" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694891612 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38714" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694891672 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39791" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694891714 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38506" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694891815 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49326" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694891934 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49324" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694891985 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49323" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694892042 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38503" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694892265 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35691" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694892407 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35693" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694892488 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35694" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694892548 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35695" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694892620 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35696" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694892891 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35697" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694893100 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39778" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694893290 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35797" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694893367 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35798" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694893440 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35799" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694893576 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35800" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694893676 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35801" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694893729 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35802" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694893830 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35803" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694893950 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38507" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694894063 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34473" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694894164 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38500" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694894273 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35808" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694894414 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35710" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694894527 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50036" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694895160 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50037" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694895612 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50038" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694895872 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50039" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694896082 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50040" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694896403 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50041" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694897004 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-15" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694897451 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-13" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694898500 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Oct" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694898821 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Aug" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694899876 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jun" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694900949 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Feb" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694902175 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10940386" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694902689 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10940383" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694903131 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10940382" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694903634 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10940381" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694904468 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10940374" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694905547 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10940370" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694905962 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10940367" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694906449 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10940368" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694907886 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10940388" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694911955 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Apr" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694914031 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Jan" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694915571 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44863" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694916856 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Mar" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694919414 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "11-Jan" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694922225 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44866" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694924714 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44867" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694926613 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44868" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694928760 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44869" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694931694 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44870" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694935218 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44871" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694940208 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44872" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694950764 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50020" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694974468 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-11" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694992240 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91162" + }, + { + "stop_sequence": 111, + "arrival": { + "delay": 0, + "time": 1695069728 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50023" + }, + { + "stop_sequence": 112, + "arrival": { + "delay": 0, + "time": 1697128150 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Jul" + } + ] + } + }, + { + "id": "5a12e27a-fd61-4f8d-839b-0c1bde1a3fa5", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "21255-701ff27f-2", + "start_date": "20230916", + "route_id": "737" + }, + "stop_time_update": [ + { + "stop_sequence": 29, + "arrival": { + "delay": 0, + "time": 1694889033 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37567" + }, + { + "stop_sequence": 30, + "arrival": { + "delay": 0, + "time": 1694889058 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "13-Jan" + }, + { + "stop_sequence": 31, + "arrival": { + "delay": 0, + "time": 1694889112 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "13-Feb" + }, + { + "stop_sequence": 32, + "arrival": { + "delay": 0, + "time": 1694889139 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "28-Jan" + }, + { + "stop_sequence": 33, + "arrival": { + "delay": 0, + "time": 1694889188 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "12-3" + }, + { + "stop_sequence": 34, + "arrival": { + "delay": 0, + "time": 1694889267 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "12-Jan" + }, + { + "stop_sequence": 35, + "arrival": { + "delay": 0, + "time": 1694889311 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "12-Feb" + }, + { + "stop_sequence": 36, + "arrival": { + "delay": 0, + "time": 1694889401 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10940364" + }, + { + "stop_sequence": 37, + "arrival": { + "delay": 0, + "time": 1694889473 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10940365" + }, + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889513 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10940366" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889542 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10940369" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889589 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10940372" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889649 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10940380" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889908 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jan" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889975 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Mar" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694890073 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-May" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694890224 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jul" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694890287 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Sep" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694890378 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Nov" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694890479 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Dec" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694890569 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-14" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694890721 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-17" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694890803 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-19" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890865 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-20" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890929 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-22" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890998 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-24" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694891093 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-25" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694891414 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90003" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694891468 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90007" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694891528 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "90008" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694891661 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694891689 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39600" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694891772 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37496" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694891834 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45064" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694891929 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694892028 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45069" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694892181 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37523" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694892238 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694892363 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49310" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694892410 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694892491 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39634" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694892532 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39635" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694892603 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39636" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694892687 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49503" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694892895 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694892980 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694893035 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694893152 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49319" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694893269 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694893822 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49324" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694893907 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49325" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694894036 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49326" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694894089 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39648" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694894212 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39649" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694894298 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45112" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694894426 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45113" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694894609 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37490" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694894778 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45115" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694894846 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45116" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694895049 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45118" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694895274 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45119" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694895414 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45120" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694895593 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45121" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694895735 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694896006 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694896139 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694896349 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694896672 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694896919 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38539" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694897178 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694897557 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694897869 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694898805 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45095" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694899072 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45096" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694899550 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45098" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694899775 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45099" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694899928 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45100" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694900133 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45101" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694900426 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45102" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694900643 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45103" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694900852 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45104" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694901082 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45122" + }, + { + "stop_sequence": 111, + "arrival": { + "delay": 0, + "time": 1694901582 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38630" + }, + { + "stop_sequence": 112, + "arrival": { + "delay": 0, + "time": 1694904202 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49349" + }, + { + "stop_sequence": 113, + "arrival": { + "delay": 0, + "time": 1694906030 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49350" + }, + { + "stop_sequence": 114, + "arrival": { + "delay": 0, + "time": 1694906866 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49351" + }, + { + "stop_sequence": 115, + "arrival": { + "delay": 0, + "time": 1694907514 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49352" + }, + { + "stop_sequence": 116, + "arrival": { + "delay": 0, + "time": 1694908316 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49353" + }, + { + "stop_sequence": 117, + "arrival": { + "delay": 0, + "time": 1694909256 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49354" + }, + { + "stop_sequence": 118, + "arrival": { + "delay": 0, + "time": 1694910627 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38566" + }, + { + "stop_sequence": 119, + "arrival": { + "delay": 0, + "time": 1694911420 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38567" + }, + { + "stop_sequence": 120, + "arrival": { + "delay": 0, + "time": 1694912813 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38568" + }, + { + "stop_sequence": 121, + "arrival": { + "delay": 0, + "time": 1694913748 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38569" + }, + { + "stop_sequence": 122, + "arrival": { + "delay": 0, + "time": 1694915264 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38570" + }, + { + "stop_sequence": 123, + "arrival": { + "delay": 0, + "time": 1694917574 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38571" + }, + { + "stop_sequence": 124, + "arrival": { + "delay": 0, + "time": 1694920132 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38572" + }, + { + "stop_sequence": 125, + "arrival": { + "delay": 0, + "time": 1694932322 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38393" + }, + { + "stop_sequence": 126, + "arrival": { + "delay": 0, + "time": 1694937812 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38394" + }, + { + "stop_sequence": 127, + "arrival": { + "delay": 0, + "time": 1694944597 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38395" + }, + { + "stop_sequence": 128, + "arrival": { + "delay": 0, + "time": 1694950791 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38396" + }, + { + "stop_sequence": 129, + "arrival": { + "delay": 0, + "time": 1694965663 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38397" + }, + { + "stop_sequence": 130, + "arrival": { + "delay": 0, + "time": 1694973575 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38398" + }, + { + "stop_sequence": 131, + "arrival": { + "delay": 0, + "time": 1694984273 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38399" + }, + { + "stop_sequence": 132, + "arrival": { + "delay": 0, + "time": 1695027711 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38400" + }, + { + "stop_sequence": 133, + "arrival": { + "delay": 0, + "time": 1695097904 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38401" + }, + { + "stop_sequence": 134, + "arrival": { + "delay": 0, + "time": 1695287869 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38402" + } + ] + } + }, + { + "id": "6c1f2d20-073a-4190-bd59-6a14489a1b2c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "21253-701ff27f-2", + "start_date": "20230916", + "route_id": "737" + }, + "stop_time_update": [ + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694889067 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39599" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694889091 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39600" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694889161 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37496" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694889212 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45064" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694889287 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37506" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694889363 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45069" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694889476 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37523" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694889516 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37477" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694889602 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49310" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694889633 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49311" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694889686 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39634" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694889713 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39635" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694889758 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39636" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694889810 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49503" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694889933 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39637" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694889981 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49317" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694890012 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49318" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694890076 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49319" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694890138 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39641" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694890408 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49324" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694890446 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49325" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694890503 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49326" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694890526 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39648" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694890578 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39649" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694890615 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45112" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694890667 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45113" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694890739 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37490" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694890804 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45115" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694890829 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45116" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694890903 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45118" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694890982 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45119" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694891030 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45120" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694891089 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45121" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694891134 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38535" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694891219 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38536" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694891259 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "4838437" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694891320 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45085" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694891411 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45086" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694891478 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38539" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694891545 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38540" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694891640 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38544" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694891714 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38545" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694891919 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45095" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694891974 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45096" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694892067 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45098" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694892109 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45099" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694892137 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45100" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694892174 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45101" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694892225 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45102" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694892261 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45103" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694892296 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45104" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694892333 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "45122" + }, + { + "stop_sequence": 111, + "arrival": { + "delay": 0, + "time": 1694892411 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38630" + }, + { + "stop_sequence": 112, + "arrival": { + "delay": 0, + "time": 1694892763 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49349" + }, + { + "stop_sequence": 113, + "arrival": { + "delay": 0, + "time": 1694892964 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49350" + }, + { + "stop_sequence": 114, + "arrival": { + "delay": 0, + "time": 1694893047 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49351" + }, + { + "stop_sequence": 115, + "arrival": { + "delay": 0, + "time": 1694893107 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49352" + }, + { + "stop_sequence": 116, + "arrival": { + "delay": 0, + "time": 1694893177 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49353" + }, + { + "stop_sequence": 117, + "arrival": { + "delay": 0, + "time": 1694893255 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49354" + }, + { + "stop_sequence": 118, + "arrival": { + "delay": 0, + "time": 1694893359 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38566" + }, + { + "stop_sequence": 119, + "arrival": { + "delay": 0, + "time": 1694893414 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38567" + }, + { + "stop_sequence": 120, + "arrival": { + "delay": 0, + "time": 1694893506 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38568" + }, + { + "stop_sequence": 121, + "arrival": { + "delay": 0, + "time": 1694893563 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38569" + }, + { + "stop_sequence": 122, + "arrival": { + "delay": 0, + "time": 1694893648 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38570" + }, + { + "stop_sequence": 123, + "arrival": { + "delay": 0, + "time": 1694893765 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38571" + }, + { + "stop_sequence": 124, + "arrival": { + "delay": 0, + "time": 1694893879 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38572" + }, + { + "stop_sequence": 125, + "arrival": { + "delay": 0, + "time": 1694894264 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38393" + }, + { + "stop_sequence": 126, + "arrival": { + "delay": 0, + "time": 1694894383 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38394" + }, + { + "stop_sequence": 127, + "arrival": { + "delay": 0, + "time": 1694894503 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38395" + }, + { + "stop_sequence": 128, + "arrival": { + "delay": 0, + "time": 1694894591 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38396" + }, + { + "stop_sequence": 129, + "arrival": { + "delay": 0, + "time": 1694894751 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38397" + }, + { + "stop_sequence": 130, + "arrival": { + "delay": 0, + "time": 1694894816 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38398" + }, + { + "stop_sequence": 131, + "arrival": { + "delay": 0, + "time": 1694894887 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38399" + }, + { + "stop_sequence": 132, + "arrival": { + "delay": 0, + "time": 1694895070 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38400" + }, + { + "stop_sequence": 133, + "arrival": { + "delay": 0, + "time": 1694895211 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38401" + }, + { + "stop_sequence": 134, + "arrival": { + "delay": 0, + "time": 1694895349 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38402" + }, + { + "stop_sequence": 135, + "arrival": { + "delay": 0, + "time": 1694895602 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38433" + } + ] + } + }, + { + "id": "6f40a23a-cc78-4f23-b342-2d947adcaa4d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "21193-701ff27f-2", + "start_date": "20230916", + "route_id": "737" + }, + "stop_time_update": [ + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694889045 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44872" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694889112 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50020" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694889201 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-11" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694889241 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91162" + }, + { + "stop_sequence": 111, + "arrival": { + "delay": 0, + "time": 1694889323 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50023" + }, + { + "stop_sequence": 112, + "arrival": { + "delay": 0, + "time": 1694889423 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Jul" + }, + { + "stop_sequence": 113, + "arrival": { + "delay": 0, + "time": 1694889461 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Apr" + }, + { + "stop_sequence": 114, + "arrival": { + "delay": 0, + "time": 1694889507 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37474" + }, + { + "stop_sequence": 115, + "arrival": { + "delay": 0, + "time": 1694889555 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44879" + }, + { + "stop_sequence": 116, + "arrival": { + "delay": 0, + "time": 1694889577 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44880" + }, + { + "stop_sequence": 117, + "arrival": { + "delay": 0, + "time": 1694889608 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44881" + }, + { + "stop_sequence": 118, + "arrival": { + "delay": 0, + "time": 1694889631 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44874" + }, + { + "stop_sequence": 119, + "arrival": { + "delay": 0, + "time": 1694889686 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38151" + }, + { + "stop_sequence": 120, + "arrival": { + "delay": 0, + "time": 1694889826 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-13" + }, + { + "stop_sequence": 121, + "arrival": { + "delay": 0, + "time": 1694889879 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38194" + }, + { + "stop_sequence": 122, + "arrival": { + "delay": 0, + "time": 1694889902 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38124" + }, + { + "stop_sequence": 123, + "arrival": { + "delay": 0, + "time": 1694889915 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50014" + }, + { + "stop_sequence": 124, + "arrival": { + "delay": 0, + "time": 1694889928 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38204" + }, + { + "stop_sequence": 125, + "arrival": { + "delay": 0, + "time": 1694889969 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50013" + }, + { + "stop_sequence": 126, + "arrival": { + "delay": 0, + "time": 1694890003 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38127" + }, + { + "stop_sequence": 127, + "arrival": { + "delay": 0, + "time": 1694890018 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50029" + }, + { + "stop_sequence": 128, + "arrival": { + "delay": 0, + "time": 1694890040 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50015" + }, + { + "stop_sequence": 129, + "arrival": { + "delay": 0, + "time": 1694890229 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38149" + }, + { + "stop_sequence": 130, + "arrival": { + "delay": 0, + "time": 1694890294 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Feb" + }, + { + "stop_sequence": 131, + "arrival": { + "delay": 0, + "time": 1694890311 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50028" + } + ] + } + }, + { + "id": "9d34577b-08b0-4b32-ab9c-7a64ac2505a7", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "21196-701ff27f-2", + "start_date": "20230916", + "route_id": "737" + }, + "stop_time_update": [ + { + "stop_sequence": 38, + "arrival": { + "delay": 0, + "time": 1694889107 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38735" + }, + { + "stop_sequence": 39, + "arrival": { + "delay": 0, + "time": 1694889164 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42270" + }, + { + "stop_sequence": 40, + "arrival": { + "delay": 0, + "time": 1694889212 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "42271" + }, + { + "stop_sequence": 41, + "arrival": { + "delay": 0, + "time": 1694889417 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38688" + }, + { + "stop_sequence": 42, + "arrival": { + "delay": 0, + "time": 1694889467 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38673" + }, + { + "stop_sequence": 43, + "arrival": { + "delay": 0, + "time": 1694889543 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39785" + }, + { + "stop_sequence": 44, + "arrival": { + "delay": 0, + "time": 1694889582 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38664" + }, + { + "stop_sequence": 45, + "arrival": { + "delay": 0, + "time": 1694889635 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38702" + }, + { + "stop_sequence": 46, + "arrival": { + "delay": 0, + "time": 1694889678 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39787" + }, + { + "stop_sequence": 47, + "arrival": { + "delay": 0, + "time": 1694889719 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38501" + }, + { + "stop_sequence": 48, + "arrival": { + "delay": 0, + "time": 1694889775 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38692" + }, + { + "stop_sequence": 49, + "arrival": { + "delay": 0, + "time": 1694889843 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38714" + }, + { + "stop_sequence": 50, + "arrival": { + "delay": 0, + "time": 1694889891 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39791" + }, + { + "stop_sequence": 51, + "arrival": { + "delay": 0, + "time": 1694889925 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38506" + }, + { + "stop_sequence": 52, + "arrival": { + "delay": 0, + "time": 1694890003 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49326" + }, + { + "stop_sequence": 53, + "arrival": { + "delay": 0, + "time": 1694890094 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49324" + }, + { + "stop_sequence": 54, + "arrival": { + "delay": 0, + "time": 1694890132 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "49323" + }, + { + "stop_sequence": 55, + "arrival": { + "delay": 0, + "time": 1694890174 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38503" + }, + { + "stop_sequence": 56, + "arrival": { + "delay": 0, + "time": 1694890333 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35691" + }, + { + "stop_sequence": 57, + "arrival": { + "delay": 0, + "time": 1694890430 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35693" + }, + { + "stop_sequence": 58, + "arrival": { + "delay": 0, + "time": 1694890484 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35694" + }, + { + "stop_sequence": 59, + "arrival": { + "delay": 0, + "time": 1694890524 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35695" + }, + { + "stop_sequence": 60, + "arrival": { + "delay": 0, + "time": 1694890571 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35696" + }, + { + "stop_sequence": 61, + "arrival": { + "delay": 0, + "time": 1694890741 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35697" + }, + { + "stop_sequence": 62, + "arrival": { + "delay": 0, + "time": 1694890866 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "39778" + }, + { + "stop_sequence": 63, + "arrival": { + "delay": 0, + "time": 1694890975 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35797" + }, + { + "stop_sequence": 64, + "arrival": { + "delay": 0, + "time": 1694891019 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35798" + }, + { + "stop_sequence": 65, + "arrival": { + "delay": 0, + "time": 1694891059 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35799" + }, + { + "stop_sequence": 66, + "arrival": { + "delay": 0, + "time": 1694891134 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35800" + }, + { + "stop_sequence": 67, + "arrival": { + "delay": 0, + "time": 1694891188 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35801" + }, + { + "stop_sequence": 68, + "arrival": { + "delay": 0, + "time": 1694891216 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35802" + }, + { + "stop_sequence": 69, + "arrival": { + "delay": 0, + "time": 1694891269 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35803" + }, + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694891331 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38507" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694891388 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34473" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694891438 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38500" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694891491 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35808" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694891559 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35710" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694891612 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50036" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694891896 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50037" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694892085 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50038" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694892189 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50039" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694892270 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50040" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694892391 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50041" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694892605 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-15" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694892755 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-13" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694893081 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Oct" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694893175 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Aug" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694893461 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jun" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694893726 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Feb" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694893999 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10940386" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694894106 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10940383" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694894194 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10940382" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694894291 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10940381" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694894444 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10940374" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694894627 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10940370" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694894695 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10940367" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694894771 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10940368" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694894981 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10940388" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694895483 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Apr" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694895697 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Jan" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694895840 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44863" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694895951 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Mar" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694896152 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "11-Jan" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694896347 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44866" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694896500 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44867" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694896607 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44868" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694896718 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44869" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694896856 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44870" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694897003 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44871" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694897183 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44872" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694897484 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50020" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694897922 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-11" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694898132 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91162" + }, + { + "stop_sequence": 111, + "arrival": { + "delay": 0, + "time": 1694898596 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50023" + }, + { + "stop_sequence": 112, + "arrival": { + "delay": 0, + "time": 1694899228 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Jul" + }, + { + "stop_sequence": 113, + "arrival": { + "delay": 0, + "time": 1694899483 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Apr" + }, + { + "stop_sequence": 114, + "arrival": { + "delay": 0, + "time": 1694899818 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37474" + }, + { + "stop_sequence": 115, + "arrival": { + "delay": 0, + "time": 1694900185 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44879" + }, + { + "stop_sequence": 116, + "arrival": { + "delay": 0, + "time": 1694900363 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44880" + }, + { + "stop_sequence": 117, + "arrival": { + "delay": 0, + "time": 1694900624 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44881" + }, + { + "stop_sequence": 118, + "arrival": { + "delay": 0, + "time": 1694900823 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44874" + }, + { + "stop_sequence": 119, + "arrival": { + "delay": 0, + "time": 1694901326 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38151" + }, + { + "stop_sequence": 120, + "arrival": { + "delay": 0, + "time": 1694902811 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-13" + }, + { + "stop_sequence": 121, + "arrival": { + "delay": 0, + "time": 1694903466 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38194" + }, + { + "stop_sequence": 122, + "arrival": { + "delay": 0, + "time": 1694903771 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38124" + }, + { + "stop_sequence": 123, + "arrival": { + "delay": 0, + "time": 1694903943 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50014" + }, + { + "stop_sequence": 124, + "arrival": { + "delay": 0, + "time": 1694904129 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38204" + }, + { + "stop_sequence": 125, + "arrival": { + "delay": 0, + "time": 1694904713 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50013" + }, + { + "stop_sequence": 126, + "arrival": { + "delay": 0, + "time": 1694905242 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38127" + }, + { + "stop_sequence": 127, + "arrival": { + "delay": 0, + "time": 1694905484 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50029" + }, + { + "stop_sequence": 128, + "arrival": { + "delay": 0, + "time": 1694905845 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50015" + }, + { + "stop_sequence": 129, + "arrival": { + "delay": 0, + "time": 1694909752 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38149" + }, + { + "stop_sequence": 130, + "arrival": { + "delay": 0, + "time": 1694911507 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Feb" + }, + { + "stop_sequence": 131, + "arrival": { + "delay": 0, + "time": 1694912011 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50028" + } + ] + } + }, + { + "id": "787773c6-f684-4c61-ab34-3aa91ce01722", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "21195-701ff27f-2", + "start_date": "20230916", + "route_id": "737" + }, + "stop_time_update": [ + { + "stop_sequence": 70, + "arrival": { + "delay": 0, + "time": 1694889065 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38507" + }, + { + "stop_sequence": 71, + "arrival": { + "delay": 0, + "time": 1694889119 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "34473" + }, + { + "stop_sequence": 72, + "arrival": { + "delay": 0, + "time": 1694889165 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38500" + }, + { + "stop_sequence": 73, + "arrival": { + "delay": 0, + "time": 1694889213 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35808" + }, + { + "stop_sequence": 74, + "arrival": { + "delay": 0, + "time": 1694889273 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "35710" + }, + { + "stop_sequence": 75, + "arrival": { + "delay": 0, + "time": 1694889318 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50036" + }, + { + "stop_sequence": 76, + "arrival": { + "delay": 0, + "time": 1694889549 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50037" + }, + { + "stop_sequence": 77, + "arrival": { + "delay": 0, + "time": 1694889691 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50038" + }, + { + "stop_sequence": 78, + "arrival": { + "delay": 0, + "time": 1694889766 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50039" + }, + { + "stop_sequence": 79, + "arrival": { + "delay": 0, + "time": 1694889823 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50040" + }, + { + "stop_sequence": 80, + "arrival": { + "delay": 0, + "time": 1694889905 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50041" + }, + { + "stop_sequence": 81, + "arrival": { + "delay": 0, + "time": 1694890043 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-15" + }, + { + "stop_sequence": 82, + "arrival": { + "delay": 0, + "time": 1694890136 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "Jun-13" + }, + { + "stop_sequence": 83, + "arrival": { + "delay": 0, + "time": 1694890326 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Oct" + }, + { + "stop_sequence": 84, + "arrival": { + "delay": 0, + "time": 1694890377 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Aug" + }, + { + "stop_sequence": 85, + "arrival": { + "delay": 0, + "time": 1694890529 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Jun" + }, + { + "stop_sequence": 86, + "arrival": { + "delay": 0, + "time": 1694890661 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "6-Feb" + }, + { + "stop_sequence": 87, + "arrival": { + "delay": 0, + "time": 1694890790 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10940386" + }, + { + "stop_sequence": 88, + "arrival": { + "delay": 0, + "time": 1694890839 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10940383" + }, + { + "stop_sequence": 89, + "arrival": { + "delay": 0, + "time": 1694890878 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10940382" + }, + { + "stop_sequence": 90, + "arrival": { + "delay": 0, + "time": 1694890921 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10940381" + }, + { + "stop_sequence": 91, + "arrival": { + "delay": 0, + "time": 1694890986 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10940374" + }, + { + "stop_sequence": 92, + "arrival": { + "delay": 0, + "time": 1694891063 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10940370" + }, + { + "stop_sequence": 93, + "arrival": { + "delay": 0, + "time": 1694891090 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10940367" + }, + { + "stop_sequence": 94, + "arrival": { + "delay": 0, + "time": 1694891121 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10940368" + }, + { + "stop_sequence": 95, + "arrival": { + "delay": 0, + "time": 1694891204 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10940388" + }, + { + "stop_sequence": 96, + "arrival": { + "delay": 0, + "time": 1694891390 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Apr" + }, + { + "stop_sequence": 97, + "arrival": { + "delay": 0, + "time": 1694891464 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Jan" + }, + { + "stop_sequence": 98, + "arrival": { + "delay": 0, + "time": 1694891513 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44863" + }, + { + "stop_sequence": 99, + "arrival": { + "delay": 0, + "time": 1694891550 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "10-Mar" + }, + { + "stop_sequence": 100, + "arrival": { + "delay": 0, + "time": 1694891616 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "11-Jan" + }, + { + "stop_sequence": 101, + "arrival": { + "delay": 0, + "time": 1694891678 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44866" + }, + { + "stop_sequence": 102, + "arrival": { + "delay": 0, + "time": 1694891725 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44867" + }, + { + "stop_sequence": 103, + "arrival": { + "delay": 0, + "time": 1694891758 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44868" + }, + { + "stop_sequence": 104, + "arrival": { + "delay": 0, + "time": 1694891791 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44869" + }, + { + "stop_sequence": 105, + "arrival": { + "delay": 0, + "time": 1694891832 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44870" + }, + { + "stop_sequence": 106, + "arrival": { + "delay": 0, + "time": 1694891874 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44871" + }, + { + "stop_sequence": 107, + "arrival": { + "delay": 0, + "time": 1694891925 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44872" + }, + { + "stop_sequence": 108, + "arrival": { + "delay": 0, + "time": 1694892008 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50020" + }, + { + "stop_sequence": 109, + "arrival": { + "delay": 0, + "time": 1694892123 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-11" + }, + { + "stop_sequence": 110, + "arrival": { + "delay": 0, + "time": 1694892176 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "91162" + }, + { + "stop_sequence": 111, + "arrival": { + "delay": 0, + "time": 1694892288 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50023" + }, + { + "stop_sequence": 112, + "arrival": { + "delay": 0, + "time": 1694892432 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Jul" + }, + { + "stop_sequence": 113, + "arrival": { + "delay": 0, + "time": 1694892487 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Apr" + }, + { + "stop_sequence": 114, + "arrival": { + "delay": 0, + "time": 1694892557 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "37474" + }, + { + "stop_sequence": 115, + "arrival": { + "delay": 0, + "time": 1694892631 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44879" + }, + { + "stop_sequence": 116, + "arrival": { + "delay": 0, + "time": 1694892666 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44880" + }, + { + "stop_sequence": 117, + "arrival": { + "delay": 0, + "time": 1694892716 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44881" + }, + { + "stop_sequence": 118, + "arrival": { + "delay": 0, + "time": 1694892754 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "44874" + }, + { + "stop_sequence": 119, + "arrival": { + "delay": 0, + "time": 1694892845 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38151" + }, + { + "stop_sequence": 120, + "arrival": { + "delay": 0, + "time": 1694893090 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "15-13" + }, + { + "stop_sequence": 121, + "arrival": { + "delay": 0, + "time": 1694893187 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38194" + }, + { + "stop_sequence": 122, + "arrival": { + "delay": 0, + "time": 1694893231 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38124" + }, + { + "stop_sequence": 123, + "arrival": { + "delay": 0, + "time": 1694893255 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50014" + }, + { + "stop_sequence": 124, + "arrival": { + "delay": 0, + "time": 1694893281 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38204" + }, + { + "stop_sequence": 125, + "arrival": { + "delay": 0, + "time": 1694893359 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50013" + }, + { + "stop_sequence": 126, + "arrival": { + "delay": 0, + "time": 1694893427 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38127" + }, + { + "stop_sequence": 127, + "arrival": { + "delay": 0, + "time": 1694893457 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50029" + }, + { + "stop_sequence": 128, + "arrival": { + "delay": 0, + "time": 1694893500 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50015" + }, + { + "stop_sequence": 129, + "arrival": { + "delay": 0, + "time": 1694893905 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "38149" + }, + { + "stop_sequence": 130, + "arrival": { + "delay": 0, + "time": 1694894054 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "14-Feb" + }, + { + "stop_sequence": 131, + "arrival": { + "delay": 0, + "time": 1694894094 + }, + "departure": { + "delay": 0, + "time": 0 + }, + "stop_id": "50028" + } + ] + } + }, + { + "id": "babef592-7fab-4fe8-b46c-ff6966a36337", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "8bcd713e-a5d9-492b-8540-8e007abfb272", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "bf3c2053-73c5-4eda-ba2b-2705d5365ba4", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "218c2428-53c4-4f39-83b2-5b17bbcd7630", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "80c38e17-5868-45cb-aeed-71b264f34af6", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "c31caed9-2f9c-4d2d-ad93-c14dcaf632f3", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "cc744b19-08ad-4f6a-b31b-fd631d137e5f", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "27e00cca-b83b-4f33-8231-2a433d7afe57", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "88503255-747e-4eb8-a49f-dc6632fb3919", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "830deda2-11db-4949-8d23-1e758946eba4", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "d0a2bebc-ecf2-4af7-90e9-0a8b0a5b9551", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "e0b67022-8378-40d7-9900-22995afe9a8b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "9641c90c-4bbd-4869-8a2b-d3ff178a87ba", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "d3d5a544-4718-4ccd-92f7-6d258a2bc260", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "0946cc3c-2e4b-4bdf-a763-a978277ed8e2", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "736c7bdf-7639-4f46-91b1-751457c125fa", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "9c5c9098-a605-466b-bc1e-44791e579b9a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "baab916a-3381-4b6f-89ca-12b2f097b366", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "3a10d216-8237-426c-8bfd-c5021d4c6b30", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "91849378-3a42-4da5-a0b3-7f74ee9421a9", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "292c39df-e0f6-42e7-9933-1fd7418849b8", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "f83084af-f915-43ec-a48b-e3d809bbe9c8", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "3d33455d-114a-4fb7-b58e-89326424ee7e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "9b4425b3-04db-40b4-ac04-9967c95f174e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "0dfbd5c2-7ad7-4dd1-b784-351f3d333ab2", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "05ff798d-f2e4-47f1-8d03-9cb201177466", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "03fb3cc5-bf26-4244-9e75-64e2155e0d27", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "daf013d5-8c81-4dc7-af77-c1d40b9f392c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "792ec025-4ad4-46de-a48e-edb860ba0499", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "452a305f-fd9b-4f7f-942a-b9df2826c6c1", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "5069bf16-e951-4026-a04f-c950f0c9d32d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "ce2aa4c5-db11-43e9-8576-c480495c9d0b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "83f64a00-e343-4389-8ee3-37cf67c170f1", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "be2547f6-6f76-4b90-964d-0b8bd2f519e6", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "f21aa6ce-954c-4066-bff4-cf72539aeb64", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "d3653a6a-afe4-4773-9679-6e99cdb2c341", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "19c166bd-64d5-462e-8e26-2d0ca3aa3825", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "6d823810-9e77-4c52-ba69-d84df0d05e75", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "62d0b114-b00e-4f30-9a13-2cb2dd0073b2", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "df89fb26-b9bf-47ec-9c83-d0df8ac0eaba", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "6f31455f-1436-4615-b0b2-3b756b358507", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "30744488-28b2-40da-9904-54e95ec7be51", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "482cf3a4-c2de-4596-9067-7870825c2e28", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "8cabae95-bddd-4a78-b2ee-e0d7242fa333", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "94fc4699-16cb-4232-9163-5c9bfd4c4547", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b7af1998-5f9e-4c98-a3e3-77288a229b6e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b69f5415-8063-4463-a2fd-b9c27d1534b4", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "0d9ff9b5-1826-4dbe-9571-e83d4aec4cc9", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "c00b1b71-7438-40bc-ac2e-1fa16022ca31", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "854e9434-c282-45b5-b466-d33de6ee8515", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "e3e354dd-ae2b-4759-aeb7-0ca436124b80", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "f4ff8244-e794-4ed1-bdd4-dabe734da0cb", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "6235f0ef-32cf-41bb-8bc9-4e632aa095eb", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "9d93050d-0e3f-4ac6-bc96-e103cd8316a0", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "4b8c125d-ff53-4622-87a4-811c48ac9869", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "328b2321-7460-487e-a696-0814dcaef51d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "766a4cd6-f056-4ff0-9230-f01f34e8ab43", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "d0eff6da-fce0-498f-8c50-f1be0cb1d23e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "7c6ec234-0f1a-419a-8733-07b91ef635c4", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "ed16bb00-39d2-4e9b-88e2-3995ab5ac55d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "9af56033-b38a-4586-8941-d29d941cb07c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b8535ab1-7d3c-4cc5-b724-8aba40809037", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "958fea87-0c00-4ef3-b8ca-b0eea9e893a7", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "f2cace55-229d-4bd3-ad3c-d8828eaa5eda", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "1bbf03ae-bf71-4ff6-be6e-eec19cf56daa", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "f27e7f1c-45f0-4d98-80fd-5565367e6a4c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "e72be77a-a193-4d1e-b0fe-29f3dbfc9f76", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "9252bac4-2863-41ac-92e4-36500c34e6ed", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "0de1926e-04e7-41a1-8724-a19abbea0a6f", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "fcc5b458-8b5d-440a-8807-0855065868cb", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "eae784cf-1007-498f-8e13-f2215cc38e31", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "f33bd178-b17a-4acd-b2e8-82bfd41fa837", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "8ca6ee03-518f-4ba7-8467-00a151d4e7a4", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "0919c21c-0676-4d21-a93b-1c89ef0a46e0", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "fa3ebea3-8220-4de9-8144-ce017fb80697", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "27057910-1aec-42e0-a628-e2c30928010b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "780b6a55-177c-4692-b57a-d82e4c7b8883", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "d73a5423-dc52-4d93-a132-8f01dcb3b310", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "2cfe871e-dc87-4982-a78f-acd56b7dc350", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "a6e97c00-2836-4552-95d3-bc0c6d306370", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "2a5c7173-cddc-4295-b25e-bba7a3b3dc89", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "a72980a5-2b8a-4253-b485-923ddd92d52a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "ff897dfe-0068-414c-a966-c6f46b4c20bc", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "8bd450fe-40c5-49b3-b3d0-a894e9bd8258", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "fc27ebb6-d800-4f75-ac4e-262941c48081", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "7ad3816a-8cfb-43de-b007-49de739dbb09", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "5618e73a-1f90-4b26-bcd9-fc31b4f1ccf6", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b1961468-be8b-4846-afa5-d0633cd0140b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "0aaf93d1-c5b8-4c1d-aec4-d8964034b5bd", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "8ef2a994-ec18-4bfd-9b50-9c8a9b57274c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "1b6ccb61-d316-45f6-850b-2034304ffcd9", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "49931496-e734-4657-80f2-03951fc3a33d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "0b2b54ec-4de5-42e6-8540-c64ce05626d4", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b152883e-03c6-43c0-bcb1-f44d40a4e44a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "ed621499-bb0f-447c-8477-40f56c447fab", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "6574656e-071c-4f68-b72d-a841b47d6b92", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "f6ac16cd-f393-46b8-b292-1f60bdeee53f", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b4d43b07-e126-4ada-b459-a59ed037eed3", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "5d50a1c1-d755-406f-a29a-b691f6cd640b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "7d33df46-97c8-4a33-a37a-5fd92785db3d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "d807e8b4-c57c-49d0-b996-3af5fc9840b2", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "6870e621-c66b-433d-984c-885f38432bed", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "1d7c18f5-efb6-451e-9f74-0a468e7b1fa8", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "1ff75269-d65b-490a-884f-d7f99554b67c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "3453c5b9-4e39-435c-8f1a-c0edf6877207", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "91da8c19-aba5-4c51-8ab9-4b34e33c03c7", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "a38f2a67-a54b-4fd7-ab72-d50346ddef7a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "ccbc9053-686b-4ebe-aeb2-0fb9809c7881", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "2f8946f1-2b94-467b-b762-9865a4ca6234", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "7d7d4777-9316-4c2e-984d-645afb547d6f", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "d07325ce-dbb9-4e8e-aab7-35d6ae846f93", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "681a7090-cc4d-478e-873d-9cf9cd9ef6ae", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "53427dff-1a7e-44df-ae9e-e64e1f5a647a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "0a051435-3510-4efa-98e4-e5864ad5a76b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "ac7cdfd8-3b14-476e-9a9c-9fa017ae1753", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "557d7e72-a4bf-409b-bfa9-ecc31401178a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "37fe9390-ff33-4b51-8fca-ccaf900bcbf6", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "bff016c0-bcd1-4fa4-9fc0-b82f0113f2fb", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "8665f192-a605-4bce-a2be-66a0d1cef8d7", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "4bd3f246-4db0-4cab-8f88-4a86610a6d6b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "1a91030b-e0ee-46e3-a5b5-d0dc99aa3f4c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "8e17f051-cb79-47bb-bca7-cc1db39037cd", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "4d37e74e-9094-4673-9f62-df4e36399e1b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "5ae981f1-b531-4dbc-83c7-89cc7b7e7904", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "58b75b3b-b3f4-4e1b-9ab5-6b8def14ec35", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "a6578e13-f890-46ba-ab64-42847a6154eb", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "f914466f-5840-4208-80a4-dca1691ba688", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "29b2bf3d-eed9-411e-bb48-8b3fb7ac5f46", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "fbfd2c6a-427b-4999-abe8-d341ac82984f", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b3407bdb-dc86-44be-bc3f-f73230f02bc4", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "1bf93978-a7b3-4baa-a23d-6718462eec26", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "4b30fca9-8b8e-42b3-8da0-6c84a0b8369b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "26ef2a39-1880-4a03-a354-7ed0ce6cc84c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "89ff023c-a066-4d43-a36e-44f011ab2ff8", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b21d7447-df2d-48f4-bfc9-11318406357d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "af630b48-aa4a-4343-9d89-f5aaa41bb6be", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "43394c2c-73b6-4cfd-bb2e-0f20cca5480e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "f031fc7a-6aaf-49da-8f76-74186eb74fd7", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "d4bb0807-c408-438f-8682-c1a0842b82df", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "dafc21a4-70a9-425b-a52f-5dbc5bcabd8b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "69fcd988-c3fb-4611-8652-5e5ea45af6ab", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "42478694-5202-421e-8b3a-8be68608b11e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "f22e0b8e-708a-474b-83b7-b23a22a4b648", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "df8e5179-77b4-4065-b75b-db5f0c00b7bc", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "ab03cb26-cc75-4ea9-8091-99d5652cbcdc", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "91649449-728c-4644-8938-88e356340178", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "c937e95d-c4e1-4b34-b731-a84e61f74706", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "1aeccc67-c8c8-45ba-8bfd-797d498385e8", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "f7c78a48-b180-42a5-8f1b-c5eb756d2250", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "a3e9f473-534b-42d7-93c2-a194e360c174", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "48f6e583-e7b7-4a1e-8a7b-197fdc6ade7c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "33775b8d-c929-49f8-9e4b-a36613cb2a6d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "2c7740bc-2d12-46fc-8613-4c52e07fc1d7", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "904b1359-aeb4-443b-9951-f7bc55f71beb", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "007c9caa-2bce-4038-bd75-b5e35a099ed3", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "ab27809a-95ac-4e69-acb5-71873c7b77a6", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "62f3faae-4db6-4be1-932a-6b2cbc070499", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b00cdf94-18f1-4682-8351-1e9bc2e2d980", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "2558628a-65b6-4704-99a0-3b07f20d3732", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "e1ffa5d0-302a-4c5d-9d4b-e985c0048e0e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "1e5e22f1-cf37-4be8-86b7-b50028d414bd", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "242531b4-a7eb-4b62-a470-3a07b431c930", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "23fe2d4e-226c-41e6-8e3f-133fabc6e485", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "0c1c1409-f7ff-4a03-8952-eae2d97cd784", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "7bd2817f-171a-40c6-81fd-20c72080537c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "fc5652b2-3428-4fc8-8e1e-3c061a495203", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "9dc385d5-d930-4d91-90a5-60b062f123e8", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "bdea0b00-56c4-4a83-9cb7-8617479205dd", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "15c01b6d-5881-4751-8608-ceeac54896a5", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "337fa4b2-a2fa-4cab-973d-67ed2879b71d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b7730879-0742-4a61-8af5-a17ec4c14bf1", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "8b1e5ddb-fb4c-4f74-84c8-08e367e96f96", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "5e46906c-ba29-431a-8146-5b2dde4dbafb", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "63487cf8-1347-4125-a5a0-433de5bf71aa", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "eef8ef58-558b-469d-a1ac-bb0b170d8cfc", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "7866c3cc-41f4-4da9-b9b1-464d18372a12", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "9eea7ea5-5472-4946-adb8-5c8f8b05d2c6", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "879ef85d-0f6d-4bb0-855a-4946f8fdd702", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "730a6208-e4e8-4127-8551-eda2cecf3dd9", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "918bac75-118b-4670-8faa-296c2a1ca548", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "83dfc87f-c46a-43ae-b6a8-94fb3c1d353e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "5b836f27-cfd8-4b41-8969-7853ff94c769", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "a99aa49b-8ac2-4ebc-9bf6-af8c627b1740", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "3549abae-a8b2-4a9d-8498-683c6dec0379", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "167fd7d9-59b2-4702-b4c9-2cbec65888ec", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "45a75417-fd48-491d-9a86-6137e604fcb2", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "79db8453-cdf0-4a81-bdec-de6ed5cf11dc", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "2397dada-b228-4fc7-bb89-edbe9b0bb8c2", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b8d87bc8-cede-4ad8-90a0-c2f4642ab074", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "4201fdd0-33ee-49f3-8a71-a5513180021b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "a66cb9d5-0821-49d9-9db2-4c456b54d15a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "502375db-39a6-420d-a47d-83bc0e818df9", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "61a1381d-10b8-4384-8c5f-36d8b4630e14", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "61854c7c-d2b9-4009-a33f-85cb0def796a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "e398de81-2538-4267-9433-793ec19b3894", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "bb183487-6609-4124-8b10-d6100add07f2", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "88657fa0-b33d-4ab4-89c2-f07df8c91e96", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "1024518a-7a64-4950-9dd4-4adae3c4b0cc", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "f233316c-17d9-454c-b089-af6849eac3c3", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "2d23f3ee-bfae-46a5-b117-2891090ae9b3", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "7a07deeb-b036-458d-b908-564f0b23cbec", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "6b5e482f-ec13-4c95-b1a1-876d0736643e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "daf9cb19-d3be-4c2f-a063-08657c863aa4", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "34d26f5d-ce44-43cf-9300-a28b76fad299", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "e7039c46-52f4-4eb1-819b-0cc663a8dea7", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "a0d034c4-41a2-4f39-9218-8526419d159b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "98498bd7-5a73-41d2-8468-f2e98ab425ad", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "1df7d795-627b-43e3-bd5b-595b6f4d0fe2", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "9aaec4e1-2c90-4cfb-8dce-f1c60a9fec41", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "494032a6-e9cb-49d6-9715-4c0977970228", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "d23b9e33-bde2-427d-9bec-a5bd7ef88fb2", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "c34e7a19-0061-4887-8bed-6b7dc303bca7", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "16a8c29f-3898-4063-95d8-cc7dd7b6b583", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "8bc3e16e-4d80-43c5-9669-10a2c1371488", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "975cd5ac-6c1c-448e-b43a-b08913146f3a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "439e18d9-529a-43b3-9f7f-0070b37c010a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "5090a07f-df83-4627-b6e3-57cc7be56d1b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "f8cb9b40-ce86-4faf-9eb6-5a10515105d9", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "cdb00712-4165-4a21-a660-98c9b187743b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "bd9228b0-84f6-4f8d-b3bf-c22b379b1f07", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "8843d295-43e5-4f41-a459-4a8532ee0069", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "3ac9c1b1-4a7c-4627-8cd4-a5bc7347f8c7", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "edc0edd5-dc84-49c2-960f-6b58219fbc5d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "c5b875dc-f97f-4ac8-85b7-8b5c066c0ff4", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b77f77ef-9e85-4815-aebc-5d2784109471", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "30c20370-4833-40ac-b24e-4d298174eb3e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "fd22c398-3fbc-4f2c-8b70-e3ee87f76751", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "58317737-d700-4b1c-9e8a-3b831c0b532b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "c82e1914-46dc-4ab1-8d98-61a2031aaf75", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "bb26dad4-8515-4e1c-8ea3-ee223495e6ca", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "f0e0fea6-6ac0-4935-bb21-394d6ac99de8", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "80d32062-4f0a-4ef0-81bc-6b9d9a0e3647", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "1dbb794a-09fe-4e34-9f75-928de3563271", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "32b85c2c-3899-44df-9440-bc76b74c17c1", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "e0d6f3a1-f99f-48cc-97f1-5503faf2f607", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "78177a8f-86dc-4e15-a8f8-af1d6c621e72", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "9bba3422-2af6-4b69-8e13-7a63cd61f3f9", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "7d3d0763-ff39-4697-a32b-3fa9ad1afb15", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "f7413153-6e73-4595-94ec-8379bd211640", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "944d4f6b-f982-4787-8381-3483ab2b4499", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "c31194a5-cd9f-43e3-97bf-8aab709ee1e0", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b921b955-29ff-4035-9361-6a0994b089cf", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "5679bba4-ec23-4450-99c5-e6b6520013b4", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "e690826c-b6d5-48fa-a759-d30e054b3e45", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "60772fcf-3d6a-42dd-ba4f-a95b9e9e8867", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "d941d8b1-ed02-4d2b-8f8b-c31c30335193", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "73ce7e91-e1aa-427e-84a0-22992ec7bafd", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b8a988fc-cec2-451a-821d-d5b078fff9de", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "9839e13c-5b4f-4230-a496-00e1bc017384", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "46ef7f7a-b945-4e05-af2d-e500152ec40a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b1945a5c-20e6-4ed3-b7d8-5dde7a594c2a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "a6632bea-4ffd-4971-8156-ed008af2b02b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "03d7b103-a8c3-4ff1-a6b3-c38698272a4f", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "4a0af0f6-6f2b-49c3-bf89-148be19dd0c5", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "fc8e84f0-179f-4096-aab7-cf0a92bef9c7", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "15627506-997a-486c-be42-d1a0652a31c1", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "8a396781-0a70-4c70-bce7-e3867c44e7a2", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "c05e7086-6a35-48cc-b78f-ce7fa32e1807", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "e43ddde9-515f-47e5-a99b-dcf36097758d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "aafa089a-ac1b-4df8-9d86-232097cdd3d0", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "92294c23-3f31-4bfb-9ead-b4dc58bfedbd", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "49d0cf67-7ec9-4c80-a75b-8c548ca5df02", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "a6b22c30-f04c-429b-88f5-9942bb68e209", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "a2fce729-5819-4cc8-b399-240ddb52b112", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "648c6bfd-187a-43d8-a147-43b9e7aa2fa5", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "5a37e66e-19ce-48c5-8259-961e12edf47d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "9a3c4357-396d-4ab2-b9d5-9322d43423c3", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "9d9c9278-6cf9-4813-8227-f68e56847dd0", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "f32c54c3-1c29-4bca-8acc-aad721965927", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "5e59c174-9502-45d8-b654-fbe1f19c7f99", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "f34af194-4447-4fb7-ba15-9ca0a8e5cd82", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "0c85a6b6-aadb-4436-8e83-e0103a53d106", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "3e67b66e-32e9-413d-a92b-f46e30cce42d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "f10df46e-80e9-4c63-a503-28ceb97074cc", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "423260db-cb79-445f-98c9-47b447287642", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "297a03ab-5f96-484c-8cdd-d0b4cdab2c07", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "319207ce-b2cb-4cbb-936b-8dc327f60f7d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "ab077297-d396-4926-a814-b56425317f08", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "241ed3be-f163-4309-abd9-af3271c5e16c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "4a619f9a-75f3-4499-8093-59c72cb739cc", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "083a8fc9-8a6b-47d6-a2ee-dd61f51bf6d5", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "893a79ff-43f0-42fb-8bea-4593fd7dfe39", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "9ebe96aa-57bc-4f96-859a-af8677b7ca00", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "ed4615b0-d9ce-4846-9eb9-ec0f83bd2d9d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "6d173656-96bf-4cc7-9b95-a8e63fa6a389", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "225e5725-e86e-4ea6-a657-27a9a9fef152", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "836103a4-93d5-4283-8bf5-d6bea411f6f3", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "c9c4f84b-7ba3-4d82-ba50-6db43976cc5a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "4525f7af-1bfd-45dc-a9cc-ac5df2e322fd", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "653f222c-12e8-4eec-a6ca-739170fa4904", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b9ab8091-5755-4156-97f8-f9917baec463", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "83f68ee1-baeb-416a-9d05-3c6abe862a2d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "c6fa9b2e-ce86-4b5b-b2dc-d8d3edf4e386", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "6aa17a74-b741-4f92-8826-5f9a84087351", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "df175ca7-596a-4f11-9ad2-37464190da5e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "3137d8e5-ff5c-4d98-99ce-fd3c44d26915", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "615ea201-8d5a-4c0c-ad63-416c24c6219c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "88aa5642-f479-46a2-a7ed-2a84172f90f1", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "3e3e073a-d804-462d-957c-2f020d51fbba", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "e68c8861-38e7-4892-8385-55a330cb7af8", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "ea61c0bb-5bc6-4f85-b744-b252b3d3a541", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "cee33753-1519-4b0a-89e3-280d615df4c0", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "d883cb04-c951-4082-b848-5c6b270e9210", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "4b83e4a9-7cbc-40a9-9b01-8ac00e635248", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "8de7bece-7157-4e8f-9a6b-a2f4e1635996", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "a3afb1d8-d021-4219-815e-e80e4b54f301", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "728d0126-c919-43d5-ae31-c07d6712bc69", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "bd3e804c-4040-43dc-8a35-6e09658a854a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "739a0059-0f69-4d2d-a906-92ff8e399052", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "fbb0870d-a646-45de-ab58-3805e71efca5", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "050be756-1f54-4357-acfc-97d885f6c97b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "33ad06c7-5aed-4a2b-8e89-7fb5269ad654", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "3373bc62-cbdf-4f8f-b7eb-c10960ed71f4", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "a6aebcf7-22b6-4b29-9051-3bf237cd9ec9", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "bd78b111-6211-4ff2-8ad8-40a72c3480de", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "ef0938af-44c6-4167-9cde-16465d0bd604", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "2ae7dd47-8ad4-4d89-9a43-0c4340074413", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b27af132-700b-48ce-aaf6-c8705335d777", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "7c45f425-9e57-4920-a584-8121d3f30d29", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "d41a5cfb-40e7-4cb2-a3ea-627340fafd83", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b4be97f1-8913-4a58-a6d1-4968f1b2d7e0", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "4f9f9d2a-5ac9-4118-9297-a156cf25db2d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "06f390f7-fa50-4ae4-ab8b-b577e7cdacb9", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "63eed79b-6e3d-4dcf-9fdc-e793447723da", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "7f8a9462-0270-4ff0-93b1-32ee5c68f3c0", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "a6fc8e33-49b6-49b4-9914-5b3bc6b728ae", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "c66d85c0-d242-4046-a4f9-33291fcf7bfa", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "e8e8930b-ad20-4d9c-a3dd-9e6eba511c73", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "f912c1c2-a84b-49ad-82ef-9ebc79b36b8e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "498edd88-93c4-4bcc-8390-508427cbd3dd", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "301899b4-45f2-48f0-8cec-2034028eb4d3", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "0666f956-43f9-477d-9516-7a8a59fef268", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "5b50f722-1052-4618-94f6-da76c59682e5", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "47fa9ebe-e641-419d-8466-1e14440fb052", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "93fd740b-3e9a-4d68-97b4-9d1a81f9ce68", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "61d84786-9831-476a-960c-aa2b3cbdff19", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "bf5f1550-5301-4058-a44c-0c7d1ca27295", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "25d2d82b-3bfe-4b3c-8f00-32ee5563d86e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "c5055477-fef7-4c9d-bb93-6c92e8fd6a87", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "ecfeee68-af02-4ed0-bc58-f6e54587e293", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "e8992845-0eee-4998-be44-544ade7058b2", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "9f2dc56d-a9b8-4d3a-9cfc-4334da32d5db", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "37fcf44b-a012-4dcd-aafe-81ca3f1951bd", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "63726e18-db88-4dae-ac5f-7322c5a27ae9", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b735744a-03ad-42af-a154-03d5f9db5066", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "5328ff28-30ce-4ead-935e-9d068a6eb21c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "99df40c7-94c3-40f5-b3f9-b4a33c1b08ac", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "0f3091bf-1183-41e1-a14e-708003791ef9", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "d74d5652-2982-4591-b384-06ce66ccc686", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "80dc78d7-afbd-44c5-b279-9fac046c1325", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "7a90b4bf-0043-42fa-9cd3-d6a52e7690a3", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "3f389a2b-55bd-465e-850e-00bab15c7400", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "c195f90e-5dc8-4be4-8f8a-738fe36d7ab6", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "7d216689-0d42-48b0-a813-ecddb3b580d4", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "853b8dd1-3dbd-4fb5-acb8-b7cb141e412d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "45c10aeb-ddf2-4ecd-8ba1-50a1c5f33395", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "2296cd92-d93a-42f5-8b98-30beab92ff30", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "9b1e1bfe-bd87-4c59-a6ed-dc3e0524ad38", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "1b7854b1-3bfa-41bc-85ef-0a712016fb9f", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "2f1e0597-e2cf-4d18-b453-21a56ea45ff5", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "50c9a640-43ce-49e6-bfed-ec5b8ba893ef", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "5b5870cb-62e6-43dc-b823-4b79511de6f5", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "d04e4219-7556-41a7-aac6-56f1ded81471", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "7808d218-3bc3-4adc-aea2-716b4aa9b4ac", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "2e857e78-5820-4a95-9e21-40eda7f45531", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "5470aad7-af87-405b-91d4-7c4d2714d2b4", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "33e35ea3-c65c-4b00-9f3b-1122b820c109", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "6f2945dc-7c0c-471a-9afd-49ad5db2f2ef", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "a7cbc6e4-f479-44e2-9d5e-dd55d700fd1e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "95402368-8889-45a8-a879-42eec67c32f5", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "f180b007-40aa-43f4-9aca-057e7c7c35c8", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "eeef2229-835c-4573-b01c-a05ea73c55e3", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "67a7edf5-e0e6-4f04-b2ac-ec7c9bf3d581", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "801b8186-b15b-4ebe-a6d9-ea4ec4b51fc9", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "95a4c9d5-1c57-4725-888d-0642458ca042", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "01ca1d22-2113-4c96-9096-492c03e3ef1d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "1d7e9628-bc00-4d9e-8c5b-e83eebff03b0", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "a605b913-9ae4-421b-9dc6-15ad261841a7", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "377ac708-c347-4892-b076-eb54d6fb6a19", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "5c4c6e41-2b37-480b-a857-148ee55a95e2", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "3fdc4a70-0212-4d75-992b-659fbb0aa7dd", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "f61295ae-ec13-4a81-ac6a-2075e8c2f4d3", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "11cdd616-583f-4a45-9a5e-693ce44c0aed", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "877dc403-44b6-490b-befd-c3a9c3dda7be", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "acf5707a-03d6-43a8-9a54-84c2a35c98ca", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "44574553-7628-423e-aa87-25cf21eeb2fc", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "3cf0178a-a2ee-498e-9dbe-97b5e10ca4b4", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "63be7389-bdbd-4cee-9a02-33aff3b1b75e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "00dc4224-f897-46c1-8279-83a1bbcc5a8e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "1e70fb56-ac33-41fb-b02c-8640f78f574c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "09f75ca0-58c3-4cd3-ab4c-bfba69d4264b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "9f028e3e-773d-4de4-91b4-d1d733af6102", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b7b8b95e-179e-4513-bf70-669547980a0f", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "59b21f62-c803-4a73-a1cb-fdbd88063d08", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "9e532018-f5bb-441c-a7f8-5ab761b9d218", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "14d686da-6791-45f0-be9c-cd7f1157f7d1", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "eb46d922-dc2b-492c-94f5-ed0349385a30", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "38906fc4-c0d1-4b20-b841-6cde0dc61961", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "5b8913cf-37ff-4738-9840-ce90d5f4712e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "d051226e-108f-4b16-b500-73d43f7db67f", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "3c214f86-bcb3-4a5b-b3fe-a4bf6939cb1a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "83a07ec1-1d44-4710-bec2-880f6a415240", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "a4cfaabd-45e0-4960-8ae7-1d345a7830e6", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "12b3de53-0541-4e1c-a44f-1d553b35fe6e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "9dc4d098-26ad-41de-ad33-f7e1145cd64e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "f248089d-7972-45ff-96d1-42f612357606", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b36ef04b-f18a-4906-ab10-13a8c268b099", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "6ad67278-4909-405c-ae43-d4c09d320517", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "25488f38-5d33-4741-a80f-34506add8d53", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "fb92ae69-0f6a-412f-8dbf-803f5b0c5003", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "d719d81b-8405-4bfc-8616-7c58b659a49a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "8b1fde3d-e05e-4634-9253-d6791d5c4c58", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "75a8726e-d1bc-4346-b47f-6880835e85c7", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "2511168d-1f58-4e3e-a88f-16f20ea65668", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "0234c1bf-7d84-47c9-8992-1cc3a14a27c3", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "88e1f408-b55a-4c15-8bff-4bd7dcbe2ece", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "25c5a4da-3380-4537-87a4-04506bb2ad11", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "7ac65e0c-8cd1-49a8-a776-38afdc5be633", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "1ef95687-b8ed-47e7-86a9-19f1ae674711", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "ae06ac2e-eaf8-4525-967f-d3ec06778f6a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "ee8483c8-6827-4e53-9cef-44a2dab18f00", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "ccdeb069-8d55-4096-8e5e-a487134a7af2", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "8fabe4da-31ba-4d10-b97a-6a50437fbfcc", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "03e8c155-40f7-4fc9-8816-ddab65f12bf3", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "8ecc1a17-0517-4c4d-b92f-10997e222105", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "06a6abac-5c1a-4002-a2be-0d344f205006", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "2943f578-421f-415e-98bd-3ad0114d17cd", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "93baef9b-aaa8-4546-b6af-f188b1428c9c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "8c0827d9-1ab2-417e-b81f-bb4bf0cadf59", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "248f7681-0c10-4284-8ff2-793fa67c081b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "0ff5f335-ae68-4adc-97f9-82c6b759a33e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "f34d0bba-4ef0-43a9-bf16-5efe35f1575c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "f7e24071-ab53-4560-a937-ce1042b932ca", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "77829db0-a940-406a-972e-5602069e1361", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "36603737-738d-4610-a70f-1faba96db50d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "0364c522-ecce-40cb-ba92-77692f3170a9", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "0e3dab73-3811-4cf4-b2cf-17cfd63108b9", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "f18c2aeb-850b-4a98-b2a0-d3cb3fea88a7", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "03e06f2e-4ae5-45d1-9b31-bf3a5a226746", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "e09d2f1a-6a10-4312-86e3-41a1b5ba012a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "15972446-57f8-4846-8dc3-99285deee61d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "cfef994b-58bc-4052-b29f-3d8d3c8506dd", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "c2d2fd12-703a-460a-a8ed-5366714af4fd", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "f04ef51d-95a6-4db0-be3f-0eb5156cae1e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "f3446974-df0f-4265-b038-8ca49811e9ed", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "012cc0fa-7040-4f0f-a5fb-aad6f8e240c3", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "865c2107-5b6a-4abc-aae7-5a1edf64b4b8", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "21229d97-f9ec-415c-a0da-ace03c809037", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "36c641bf-4066-41de-af08-dbed5cf9ca4c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "474f1f8b-7606-4b5c-987c-0fa648c21bff", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "422827b3-d577-41a9-aa77-1f242aa52209", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "12196ee8-0535-4e43-8254-b7674f3ff32c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "2932f601-793c-4f1a-885b-5c06dbf2e972", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "03039d96-6ae4-4448-aedf-b523161c2b84", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "27e3a903-629e-4c6b-92c7-99bfbc5d3c40", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "292714c7-d898-47b6-85b6-f1be33bdae23", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "d49e38cf-7fdc-45ca-8a2d-7919498d3a2b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "cb8740d8-d738-4a37-8788-24f2b02e8eea", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "798e3db1-19a0-4bbe-8a56-7abe6ff1ef37", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "1c9360bc-1e29-4f96-ae8c-e416f6f43608", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "238887a5-17da-4947-9ca9-67117c1ff8d3", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "50f7a62b-819f-407e-afa8-4e8f656a0d75", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "c9c12328-1c43-47e0-92cd-d016717a89ee", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "fe542b7d-3979-4713-8f0d-ad6a5fb20c22", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "303d191c-2106-47c1-a5b3-40ef04e6c4ae", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "534eaabd-a05b-44aa-9051-357a94fd7f2a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "4efdd9c0-6413-4032-a952-3593d3adf888", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "fc48fa3c-9207-4bd2-bffa-cf8b1b18984f", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "00f9c363-31f3-4a60-be53-1833fac54c6e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "8902e930-88ed-4ef0-b981-e2f343dc933a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "4ac372e2-a0b0-46ec-9f15-fdfe3fca4b2a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "0e8a512c-07b3-4d2f-88ce-514a322a6a88", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "054b9609-5a9f-4376-881d-8beb2b88750b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b5caabbe-d662-4b17-a4f7-986f4b4aedc0", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "77fc2049-2a46-429c-bde8-d3605ffc7ded", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "3ce9fb26-8868-43d0-b022-9cf0c7071aaa", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "16acbe17-babd-499a-8c09-09d6060b1927", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "01c0d732-13e3-4772-b0df-9061c4c37c99", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "bbf89a32-bf25-4ea2-b550-f7be2d3b780a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "3dc6704e-0a9c-46a7-8927-8d2515f49dbc", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "28c3e801-9afb-457e-8802-3813c310f663", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "451a48ac-5de8-41ef-b228-319c9f444437", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "e0174052-4338-4e7a-b640-4dce60764d3a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "2b3715f8-0921-45d4-ba73-f63b4539db90", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "1c98ecad-abe7-4f6d-ac87-f8f83e9d2dd2", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "0d07b326-1ac8-4831-bc6e-f47241bfdcf7", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "2e98cdaf-bd35-4c41-b678-d525523bc1d8", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "7ebc980f-7ac5-4a3a-ab36-5ce086147361", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "680d9b20-c172-41ee-9095-990b53c08452", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "ed04ed1f-b6ad-4a5c-9f30-541ec1e85254", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "0f7348bf-aa66-4700-beef-fbc79ac57a3a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "6bcfaa68-05ce-48f5-ace1-00731bbd4e6e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "4bb73092-8079-4231-93aa-b7c2b96d09a0", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "2b21abb6-f00b-4235-95de-7a08872dba6f", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "9535b101-5686-4c6f-a31b-a7b1f48504f5", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "035172da-dba9-4623-8429-f580202d53d4", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "081d55e3-d6ae-47c4-bbb1-fd857e277f1b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "6a0018a7-60a6-468b-9129-2e31738e68c1", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "5d8f25fa-288d-4ad3-859a-dcf2d6a6fe81", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "59aacc30-67f9-42de-9a04-234f54236a9c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "d8501c44-7b69-44ec-88a1-22f1a51f5b4a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "577b71b9-daf1-45aa-89d6-d95bfcb47682", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "1720bf95-29ee-4186-bc23-c19b7a0323d7", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "d227341b-b220-4e40-8d44-640837ee6ee1", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "8c128846-d6d4-4a5a-8291-5448239477d6", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "dcadc6a0-a206-4994-a245-598c92a57897", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "e9f1c2d1-bda6-4733-9160-e000c4861b29", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "5935e7c2-d41f-46fb-8b90-9b009198a738", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "eb27e864-859a-4c3c-acad-afc345ebbd0d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "a171d374-f635-4e8b-acb0-2e4e3903b873", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "70f484e1-7917-45ab-bd09-e967f9f319fb", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "18d2c88b-73c2-4414-9fa2-fdfb5462f618", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "4c43cbd3-1028-49c6-917f-e28b3a2c6126", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "c8c6c228-94ff-49f0-a933-a9438600b9a8", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "5e91bfce-d9a1-4442-bcf4-d85cb94f2822", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "1f061ad3-4140-49ab-adcd-547897688326", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "4d831fe8-0c3c-47ea-a5ad-ca0976b67b09", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "ad0836a6-6570-4fe7-a4b2-59feced933ca", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "d751bb71-5818-47ef-a4bd-bf350993dddb", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "1e8456ac-5bcd-46b1-8337-16be5898087c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "e8427425-7985-46e6-823e-ef88e70f6ce6", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "19acc275-cd5b-4fb6-aeb0-48de464d84c3", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "2db8f34e-76ce-4f34-b212-358993f50bfb", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "50b5fbab-9bec-40dc-bdc9-48151ad1f866", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "da20b1d6-f3a6-4c0c-abb8-9059459646f6", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "bd9fcb8d-1952-4cce-a41a-e62af7fb23f4", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "a7aebe38-4d13-4a67-a9e9-258969ba1527", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "5aac42e4-682d-437a-a606-9f774fa5d143", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "98925789-e768-4e2b-8d30-b8a1349f0c03", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "12d63c4e-1170-435d-bbdf-8e817543ce23", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b50f5c3e-5f06-49af-9bfd-a28e233d6eca", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "d5240286-12f5-424a-9df7-69fcff0132f5", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "d2f016a2-0988-4af3-a928-bdc87cdde38b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "ac329f5d-62fa-4acc-8399-438100457fb2", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "181fc332-fa7f-4c0d-b2ca-600386740501", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "ba1d487f-c65d-4502-a4ca-e4c0d25e4bb5", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "57ab6cea-1252-48cc-b1f9-1dc66f02abf7", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "01a561da-d865-4282-a458-30156814a4e5", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "4a931a44-85e5-4781-87b4-3b9b028aefad", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "14dc1b71-32cc-4ace-870c-e85637ff79e9", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b114c23e-82a1-43df-933d-e8c2456e60c7", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "fea39816-1e49-4c29-9509-bec387ff0589", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "3f0e3c57-b4ff-4162-84a8-8fd9babc6411", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "81f685b9-8cd4-439c-bacb-1e46ad316e6c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "5b0f4ed7-adf1-4fc6-9128-09e52a42fe02", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "c27bf4e2-0b8d-4fb0-992d-b145e37df871", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "943fc7b1-7c32-4d0a-ac09-b1532aa9e8d1", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "c92845f0-b353-4a25-a9e9-40c3ff04f7c7", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b040cf9d-fb97-435a-bed6-aa146dca297f", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "19727c65-818b-487d-b308-a1cafda30e0c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "9a3a1e5f-0799-408d-8735-6a85ffde9dab", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "d54ea130-650b-448f-a171-0135a283a21f", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b9546a50-0a88-455e-a46c-6194c9fc52de", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "cda0f620-56e5-482f-9810-19073f349d85", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "8dcde36e-8316-40ff-9668-0ffb3ff755d0", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "805a75b2-2c43-41e4-9e85-06ec66aeec17", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "2890aa19-07e0-4eb3-9354-3d55c5e6229e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "23d53fbe-e2b6-43b9-861a-602d62f88953", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "58e78ea8-8127-4b35-a3da-d09f5a6e35a1", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "64a86e0f-a56f-4723-9e3b-0bbb29c732b7", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "328d7c9d-0555-450a-94c4-ef7151fddbde", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "cf2275d5-fe8d-4a6f-9711-f515ab110ea2", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b5fe92e0-dce2-431b-97e2-11cbd959f0c6", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "20e6a69e-2d10-4781-9c67-55423626c156", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "7ffbb23c-cfa3-4485-b36d-f10fa6981f8b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "99261b3e-4b0d-40ec-8f8e-1b85b0159e78", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "f591d695-cfa7-491c-8b26-8fb29994fa2a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b1e17a54-f9ec-4702-93f7-c19da1783ab7", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "17c28f94-9a17-4d56-88bf-66a2fd34f602", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "0a63e1aa-0da8-495b-afed-807e9ff80580", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "40eb583b-d89d-4a2c-878b-6512de5efbb4", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "6e0b632f-801b-47cd-aad4-3ff0daae14a8", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "0cc39a7b-5b4a-445d-b04a-6787d58ebda7", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b10edc15-d621-452a-9500-7c444d539597", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "e6a2b64e-95f4-4b6a-a0c0-8bae874917e0", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b230b5f1-9445-44fa-bf5c-af1ca88a55ae", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "c47a5fbb-4fd3-4678-aa0b-623bd4d6e5c0", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "906e5ef8-8005-4a8b-82f8-fb2abd2f71ed", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "6361cbcb-190b-4b52-bad2-130c2c27140e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "7ae74349-f991-4fa1-aeab-e8028865750f", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "a6b2463f-6a9c-493d-96c4-f488117a9bf1", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "9373169c-3841-4c5a-a668-f7e7af3eb066", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "52db5cff-8a39-4630-8497-122aebf11d27", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "bb9b8656-3264-42d4-94a2-2d9de73bf55f", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "9befb5b2-57b8-422d-b0f3-47ef49860978", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "c3b4e7a2-0f23-460f-8c7a-ef16604c056b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "0b5de451-9250-4e34-b7c6-c105b934f7e7", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "1dba47d9-e1c8-4176-b419-a57738525f69", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "ce2ef144-27ed-45a3-9ced-02aa44bcc5a7", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "31481478-6711-4909-b69d-fde78d144bc6", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "a68da8fc-4746-4ef9-a874-3f3cab1192f5", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "7577c2ff-dce7-43d6-b61f-1e62c5e0d7b9", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b890f031-a376-483e-94a9-e129b5f4da9d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "9ab5cc7a-2117-49c7-9d53-9fa7bcdcebe3", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b05f3e7d-2f5e-4905-a811-e7166137119b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b33cbd0b-95b2-44dc-bde6-e6b7aa7d05ec", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "ba541b41-e534-485a-aad9-7e1fee45e582", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "70fd799c-4d76-487a-b7c5-b9fb9ba1e58c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "d7d0f319-260e-471c-8a80-6958f734dffc", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "f13dbef5-7f5d-409b-9cf6-d93c6c3a3232", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "ffc0937f-ab53-4d72-b389-8dc43f712c46", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "40281954-b5ac-4fd1-8eae-5049bdc4ac66", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "0e0e695d-f9b3-41af-9085-fc0f9cb827b5", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "0593618c-abcc-401b-abe2-ebe8af4a509c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "28ae2e2d-247d-4f01-92a3-f40b19ccb6c1", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "ee07032c-0973-41d5-ab5e-c39906519f20", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "f3c4880e-6ebf-46c5-917f-b5150c253051", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "aed12c6b-11b3-41d4-ba2f-ec8ffabce07c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "a782e11d-4479-4eb0-a443-9280bd632070", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "71c62178-d81e-4b02-9697-d4ebfa533ead", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "9a45d000-410d-47d1-a213-bcae8371e009", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "c10a43b5-fc43-4ab9-8cc4-2014ebe21a52", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b1da4325-0b4c-4e43-97f7-1b799c77ff9a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "c75cc13d-ed61-4cb0-be3b-a59fb6b2e793", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "2db1b09c-6b24-40d9-b9c3-960eab861408", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "6e3227de-5291-4e65-8190-d011d26f00d6", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "9c881459-8372-4c0e-ba86-45605dd5843d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "a489c174-99ab-479f-ac60-c8128b69d0d2", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "fad302d1-53e4-40b4-ab18-3214f06e27d8", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "365f48e7-272e-4cc5-848f-440fa97c811c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "0995a59a-c67d-4dfc-ad68-daed079164e0", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "a2649979-f929-46b7-8c28-bae2a93d6956", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b55782c4-7bbb-4ff1-900d-d00882d74d9e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "38f117de-c91a-431a-91bc-e0b0d9b33fab", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "87d2185a-5684-480d-b203-73c5b4ff83de", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "593e2c62-acc4-4268-8aca-1491072498ae", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "98875317-8572-4709-830e-9de4ed958103", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "427ad44b-7566-41e0-93fb-49e81f7beabd", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "d24d6f85-2d72-4c76-baee-81a4367ab802", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "76c6d4ec-1edd-4655-8c39-608b93bc1d0e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "4bfd62c6-0b75-47a2-8b4e-34e9da3d14aa", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "d96f4369-a6bc-4e7a-8ef0-c6d717e445e7", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "af09183c-3f60-4758-a88f-250d5f401aec", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "24861ad2-7f6e-4fcb-b362-db0fee1d382b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "05153a8a-dab7-4fa5-99b8-214808f3b277", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "0316dbbc-e71c-4a56-9dd3-35cdb73fb0af", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "e22666b8-4dee-493a-935a-60be89d3f1c7", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "10b87f47-bce6-47e0-a551-2750593d5d9d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "07c18b89-0a72-41e2-905f-28f442c21369", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "13998fd4-26fc-4153-9faa-0494e773aa7f", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "52dfdc40-84d0-4477-a618-de0773ebc6fb", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "13a00b97-42da-4af9-a987-d215377e2a4f", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "9111d57c-b373-4b46-8ec9-18f982aa797d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "9d3cabd0-b86e-4247-ab47-7acad76e3bda", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "35ba13a7-17cc-49aa-9d29-ace1981bde91", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "a1372cf6-3bef-412a-ac23-3f13b1bf8916", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "08378a4c-94da-40c1-89c5-bcb3fdae277a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "2df0c2ee-a15e-4c2c-bfc9-8a4352acab70", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "815e2c3e-2ac5-4b9d-97ba-a579a65ab75a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "11570f05-753d-43ec-a5bf-9446b53b5fee", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "ca2c76a2-8cdc-4bd9-838c-c7bca1d56c33", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "5d197202-8dc2-4a47-838c-fbeb5eb6aea0", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "780f5bcb-3a4d-42fe-b1cd-79440432f23c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "af92bec4-f5ad-4835-94a7-f5996fcb7aba", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "e78afb30-0855-4ae7-82ca-03fc35a635b3", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "4cdfaaa8-fd7e-401c-8f8a-6045fb196ed7", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "0b79ece0-587d-4ab8-848c-923b553ad3e5", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "c8a64b50-a29c-4290-89d1-7754f2351a52", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "c79fe072-f9cd-4313-a422-847a34b1a4f3", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "a5aae311-ab7b-43c0-a482-9120c4d5348c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "fedb7f5d-4597-4c9b-9d14-6f30b933cd3b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "aafdb77d-f501-4e78-8f6d-0c951be702ea", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "76d1b1d2-f36e-4bd0-ac62-657b5bc774ef", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "297844ad-468a-4264-96ef-d97b42eed47c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "ecb61d10-209a-4d90-a9c4-034ce5945358", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "3a078b6e-d98a-4f84-8080-211e4f8fcd36", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b1c1865a-c235-474a-a81d-99fa02b6e84f", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "f333b3ed-8e0c-491c-bea2-a078db09a5f1", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "6c2c56c3-ff7b-4130-acd9-e5447ba85662", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "1badd376-fb6a-4289-8bac-b530bf68c017", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "4cb4ebce-c737-4d83-b6a8-dc92dad7ec4d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "a0f2e47c-7e4f-41ee-9d92-3f81c4e080f5", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "f8285b7e-42a4-4b22-9964-e76ae6f17e34", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b4780ca7-1e0b-4a6e-ac47-fe0dfb01e4e9", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "0e696444-2a61-4679-b8bd-f6268078474d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "e8278091-ea33-42bb-bfd3-05ae79fbaf21", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "ae5fdecb-a33e-4285-aa07-fa2803cec409", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "48cd2327-7718-4de0-839c-56b8e20e2540", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "66e0c29a-986a-4819-9662-5eda52af5f94", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "37a1f091-b28b-4062-b52b-8a81c5198ce5", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "bd2da293-6467-4749-a74c-2658c2c976d9", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "7069d025-2415-4931-bd02-da01e23ce531", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "abf50f9c-6382-4e95-8125-e80d0232e00a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "556571ba-dbb1-48d3-b4ca-43ea5c9221ed", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "92133084-dc0e-4828-9628-c9fb6a31baed", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "d477903a-3051-4569-a7b2-e2a5512a692f", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "53662e2f-652b-4404-8a93-79e45a057c94", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "7c530d85-fdaf-4598-ac10-4784ed1cbd8f", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "17200a37-14dd-41d6-9d5a-0cf49745c9fa", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "a2394b1c-8178-4b4b-ae21-9a7c4d3667d0", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "0be64288-9b2e-4048-9b20-9ee6d12d8107", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "f25ee9f2-0f1a-4f71-9628-d3e007242085", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "386555f1-d66e-4892-bed7-6da250d22bbb", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b2bd1998-5cf6-45e1-956d-c30e6ac05c55", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "ce1df667-0770-474e-9c75-8549240409d0", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "cd339500-58d5-4877-ac8a-9868af3b08a9", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "5327d30e-7237-4012-8f05-bee8e6848d12", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "572be774-269f-4ef2-9c42-bdd601bb1a56", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "3e2686c7-3b8a-44d2-9871-dbc800778e25", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "7b3e9bc9-eba3-4b84-ab0c-a32874573c85", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "68275099-2816-42f0-8f0a-cae33266b540", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "fcb42fab-8abe-43ac-8040-abcf3b49363c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "89585351-cf5e-40ad-aa89-3a5659140048", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "1c5ee8c3-46af-4c3a-ae61-16a128560815", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "3f98a721-0c0d-4c9b-a8bd-aa55e2d6f80f", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "59cb8498-551d-4210-91dc-09195cea0668", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "0bfc2ead-2228-470f-9241-9a3439b03c71", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "e095183c-153d-46a6-b86f-8bf8621cdd28", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "180bafa1-8219-462a-9dce-f59589c35766", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "d4dd01df-eb1b-49ed-867a-bda2a062b94b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b5df92d1-cfc8-4fd2-9f4f-1d959f891416", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "41986478-2dbc-45d7-9d71-10b16b2f85e6", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "32b42c9b-1ce6-4206-8736-2fe599e3948d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "4945993e-a300-41a5-a672-0c4999eeeac3", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "76309832-1aba-4b75-aa5a-9b236ebfc686", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "e31c723a-76be-43f4-b0ab-aa053156d0fd", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "1a3d3661-8424-4862-869d-4e20ec2ad19b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "d273a4f7-7ece-4709-ad3b-da8a6b5a1408", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "5f0a1c13-366d-4620-9739-405325c5eaae", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "f6d66b8c-9b9a-4974-b30a-c422cff5138c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "083227df-45c3-493f-9768-508570466deb", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "8b48e555-75b6-49a7-9b0d-800f0b54a67b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "0c1dc551-ccfd-48d4-a50f-34092fd1972d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "2522bed6-9832-45cc-825b-22c8a40a9e36", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "9656fc5b-25d3-42c0-b755-46f12b734e27", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "50ba7353-d7a9-4d59-9caa-8e5eb9e3f1b7", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "0b5260ff-86b6-4494-a1a5-29b07f2732da", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "c1d63286-038c-424c-a2cb-2c4d60533c98", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "751b9315-f47e-420e-9a55-e2b97011f065", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "fba0c994-8927-467f-9689-6f3a25bf0e5d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "7a0c84a2-4d17-43ab-a770-b70383fa8816", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "0b75799d-fbee-40bc-a9ff-f8991ce949d5", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "38f93b88-564a-40d0-8451-398c27199501", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "64c5a24f-c234-416c-bf00-12e59debb144", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "358abc93-856a-4941-bd93-ebe4081fd6ef", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "6a0cf819-1e96-464a-a62f-f2ea8c00be1a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "df3ae136-7868-433b-8c66-e41c9bb3fbe9", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "a2ec3e6f-6042-4e55-b6f7-e17208e080ca", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "c91f254b-2c75-4774-8a64-db2ffd304651", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b903550d-91aa-452d-93d6-ca80ae81528e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "13181fd5-0643-4de5-b18c-cb40f6ca67f7", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b4a46bf8-bd8e-4934-9c6f-491569b098b9", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "f7538592-7d4c-4070-af9b-070196dfd2b8", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "3914e6e5-9137-4acb-9bff-ff0f0e84f127", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "62ee3e74-7793-42bf-abae-bd879d9c65bf", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "58f8e4da-ecb4-4aa3-a20d-c33dbe59e0e6", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "38c10acb-d823-490f-8814-9844ff3965fc", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "12d8928c-3962-4986-955f-f9568b77c829", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "59ed885b-2112-4878-b461-48064fc892aa", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "0c8f5e44-cc8c-40c2-b96c-7b110828fb0b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "81829781-2a43-4d54-9325-6f6c4576db7b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "36491eff-9dc1-4604-869e-e3a2a35026e7", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "2620c76e-d3eb-49fa-b7a1-e94153a7062b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "35435903-6c33-469f-b964-afa221b7466d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "36ae3c88-9fff-473a-a3a7-e3adfc37ef32", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "e17d47bc-c496-40c8-99a3-a052fd3515e9", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "fe8e1623-0c73-44c4-96c1-bb6d88015180", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "698a78cd-1baf-42f2-84f9-bfbceb926daf", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b46020ce-2552-4765-b75e-a0e899b43919", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "8c6c206c-2327-4fc2-90bf-585acb297685", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "f80703dd-d72f-4400-badb-03d5241a3190", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "4729ca8b-f544-44da-8dd3-2dbc9cd56607", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "9621a391-84cd-4357-81d2-d8f340210e1a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "76327583-224b-4c7b-9044-b17dedd3b093", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "12617f8b-ef49-4156-b6e4-d228f8bad49c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "c79ed8ba-9647-4048-b548-4dc5596bca05", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "f29c20d0-545c-453a-a7bf-f7f4ce2f70e2", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "998c9992-8b32-470b-b020-648b45799f06", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "2fd5ff6e-5211-49ae-b269-b369cf632887", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "c4faa539-7e6b-4d4e-9b4d-b00306ca8ae7", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "3107d47f-c1da-475b-a6d4-c0c32535efb7", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "181fdd81-d75d-498a-97b0-4b804deac51e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "c03c7de5-4c7b-4297-ba8e-a0b316b38df0", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "85c3e80f-2f2b-4eb3-92dc-9f8e28e26e40", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "add4d0e5-d126-4159-9b73-a122ca63adcb", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "1902f37d-a0b7-488c-89ab-7ce0477c264f", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "e8761268-846a-41d1-8877-9fa4baf77285", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "7b97afe3-dad9-45bf-ad25-0ef97fac9d84", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "703b0895-bf02-416c-8aad-5078f57b1798", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "de35a8f6-0891-4200-ac4d-326f1bc6d2c3", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "dfea6313-5421-4510-b19a-5e289d821994", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "2bf88050-66fd-467c-afe0-a8c2fa772467", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "f31e70fe-343b-4887-986f-9ce1e877a3c9", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "a7543736-3de0-4370-9366-6c9e4d664aea", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "c52a638a-0fd7-421a-a0b5-af087f93d801", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "97c64bd4-09f0-4524-bd6c-5385bf61ca72", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "13c0b732-60b5-4deb-822d-7fc3a0f584e6", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "74ead062-eb6b-4d34-bc98-cc193e6e3c0f", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "f6c7df0b-714d-443e-82e7-4ee60942fccb", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "7fac6d7a-da25-4d8f-b4f6-935d1130696c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "1115fc5b-e3f1-489b-8c06-9e1a124e8e3b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "12cb4185-9e13-4748-bbf5-e01d552397db", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "601e198d-2d71-4545-bd70-7ad00472d046", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "9ecde173-5de2-4691-a3c6-422b982fa081", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "1474f368-bbeb-43cc-ab9e-c994ce927d66", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "4c95ad46-99d3-4fbc-ab90-fb3330d71352", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "e0cacf90-4fb8-4cd5-a81a-6ef1ff4d166a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "69f5625a-aa24-4acb-ab0d-ea0c02b3e071", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "4ccc4b0a-14dd-45a6-a83b-be43d8e55193", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "8389f15a-2e43-4524-8aff-d646492fbba7", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "0b56f10d-a02e-4ed5-b1f8-4f80a188fd22", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "da99d0e9-e2b3-4c3c-b1d4-087d0305c3c8", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "81aa659b-fad2-4a24-a97b-c07689db1f9c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "ffd795f1-6027-44af-9a4c-9f1383c15775", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "79c63404-fde1-47ae-a6e8-813c56ad5f57", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "e7cf2fc3-0a65-451a-9abb-4b43e5f69fd9", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "4547772f-e85f-4074-972b-618609033bc8", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "744372a0-65b7-415b-8651-f40021ba1c78", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "38b7d0a4-5447-4c13-8b0c-64f5b2bb8e42", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "95d44f7c-a140-40b8-80ba-fbf343ded659", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "064b1481-400f-45de-aa2e-f46bf68ece94", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "52fb7ed5-4f8f-4bfe-a763-9c4c6d59853b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "039cbcbb-54ac-4e51-9a36-e431ff791917", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "7b3a30e9-aa06-4827-ab66-8475ece01472", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "859df95d-4b4d-434c-bb4b-ecd7ef35755c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "c6c64f30-2f54-4350-9030-3630a47a87ea", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "4fe85acf-69b3-4244-a116-80d2ea36592b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "78debfcb-e5b2-40f4-8a65-1d7f911ced05", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "c4d22d53-5028-4a8f-a43a-210df0a5c8e4", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "c295bdee-94a4-4af2-a6f6-330b724271ac", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "054a9445-9c7f-4fdd-a95e-6504f804c68b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "10990262-5357-4a5c-9286-1eb712cb2be1", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "90c86390-bbd1-4683-a66e-6065d6d843d1", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "7b6c3969-94dc-42ae-b940-780b1328fcab", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "1d85f4c3-c124-4790-bd1a-a5f13ce04106", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "e279da8a-dcef-43bf-99fb-fbddb5f5743e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "861f1d86-33b4-426b-b395-e97c21279c26", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "cbb1752b-6a3f-4269-b317-8ae9924b7551", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "3691fe2b-644c-4a1b-a29d-c93386175126", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "5e76fdbf-7653-4b6c-a691-1846d8b7706e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "4ec35611-6b2e-41c0-a965-c74413394ccc", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "0ae3bce0-d5c3-48e9-9eef-c33935e1938d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "199eb4a3-91d5-4be8-9e6d-f8c922ee798f", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "d4078b98-d09e-4b1f-9d8e-7bf8b7d65688", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "cabcc5f6-55b1-4ffe-8f87-c1bb9ebbac06", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "43a1c77d-02d4-49da-9b97-854f8cea310c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "04ef7780-fad7-46c8-ad17-91c4fbd2996e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "54f7968c-0a7f-4ec8-be9b-5d70deff41ee", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "998601e8-03d1-4061-9a69-e2b23b3bff8c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "6356ec63-f11d-4f11-a7db-afc75ad8cfdd", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "1e1d9256-c82f-45dc-bc6f-7b2406040f32", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "15fd77d6-ce09-4834-ad6e-3cb32f3559b9", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "27f481f7-530b-4ae8-9df2-63769c301973", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "f8142647-9f05-4579-bede-01f0733718b1", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "67ca6374-3eba-452b-8487-2a8050ee7ce1", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "06b06cc9-ed37-43e7-898e-8f1efe13c1f4", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "3e604404-a092-42b1-af68-b4b70d4e11aa", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "6570bf89-22fb-4658-b6b1-24d18312e207", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "1d47db63-17b1-4b11-ba9f-36531519824a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "6ece4f50-6fb2-4fe3-add2-a24f3bec9aa9", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "2f12a63e-ae04-4d36-a058-ae020d908e6c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "64fe14f0-a9bc-4c5b-8d4f-062556ae6f55", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "fc5fe03e-0530-4fc6-911c-2bfeb955500d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "0d816fec-93fd-4296-a80a-1ae98177efbd", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "7927e664-e0b9-4cbb-9901-cafe957ca73a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "13d435dd-d414-4f20-8f57-cb98462b0a83", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "eb0dbe80-4493-4ffe-9a3f-d83dd3dac5b8", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "0d4b5798-029a-4d0a-b1f8-113f6f6a10b1", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "615cf9a4-03d5-4103-8928-de26fb90eb4e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "f94caef0-3f98-4d66-ade7-a59e242b8282", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "a309f682-2a51-4b20-b7ac-d00c00995d19", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "915b4d0c-4d5a-456f-9761-1378d783b24d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "a3146647-98d8-4e9d-9195-4780b5e7eb2f", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "97576001-6ad8-4f83-b44d-2789094b4f25", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "7869c912-62da-494a-b62c-c578207084c1", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "e8ee2b8b-7db6-4dea-83b7-f09fdbd0b298", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "e130472c-c3a3-4ad2-88b3-89d53e43e264", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b5a5d891-0b75-430c-9b22-8e921adbbd8f", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "007f660c-5bc3-4904-b0f4-148edf9a483f", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "c3caebe2-ae60-49cd-840c-2ed7b4e249a3", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "dd639815-cc89-482d-b09a-ef7ee1785b5c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "d2965af3-587e-49be-aeec-007fb506eb2d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "48872e08-1c10-465d-a5be-5848be908a62", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "4f3fda8a-333a-4f11-9ec2-6296609d6ead", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "9e2ff753-ed1b-4618-bc85-80b17fe2fca9", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "52c6d5da-0015-4056-b222-956bd900626c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "1341105c-fed9-471f-86d9-afe4ce5fd06b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "dc9ea0ab-7e68-4f0e-abfb-b01b74442343", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "6eec68de-cf7d-4692-97a1-64899170d5bb", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "c7d11308-fdde-4b6e-9a21-1b2c8e40d576", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "e0985350-2f77-430d-bbb6-4acb92966a8c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "5536ab73-b062-403d-b4c8-574b9cc93af3", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "c890d07a-3ae0-44cf-a5db-6d2035293887", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "db7a9db2-19ee-413e-9be3-5115a2593856", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "a3287553-3d57-499f-8d9c-741fb7b4943d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "8cbcbebe-ea13-4625-8add-71fd3ea7460d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "ac903df6-6eb7-43a5-aa90-280ac0fea0e1", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b280bcec-dd66-4762-bd0f-db8e4438018b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "e8afc77b-548c-48b6-8282-c806dbe84674", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "1e2f9bb6-c998-426c-8d09-b13772029025", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "7b4f83dd-7c58-43e4-9fed-0454d9aabc0f", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "df3e17f8-70cf-4803-bc5e-635168c70d57", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "522a9470-85bd-49ec-b125-9848ae5f269c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "a7ffd3de-081c-4a50-a8b1-d8f7e06ad9be", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "0a3e857e-1ce6-4de6-a3d9-7d26d46ee932", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "ccce4dce-f250-4b9f-a9ed-711db0510e3b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "046ea81c-9d29-41c8-ae6e-94aeeb7fc831", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "2d70e19a-1070-4608-afa4-e07903de28ef", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "aaf39940-4f32-421a-87c2-1b2a6b577ec0", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "9de81ea6-7dcf-4cec-9a48-e1da349465fe", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "a7ff5181-b228-4f71-b45d-c7a9e0b10b1f", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "21a1404d-347d-4ebc-8d58-d7e97e8652bb", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "0b1c5178-88e4-49f1-aef2-21754c820a90", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "ba2f8ae3-d48e-45fc-847e-41c45a56de9e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "ddfb9840-ff36-4a03-8a70-db9373a8ce8b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "16c072e1-b88b-4542-a62a-1fb1f3fa2278", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "ac88e0fe-15f5-4bd3-bc9b-ad4cfd7fd68c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "76ed5738-0a1c-4192-96e0-797aec9d61ab", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "951612b4-df65-46a4-a71f-b480a74f6346", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "018aca5b-c022-4123-983a-52c1d8cf76f2", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "8ae25a4c-744a-4323-86e1-7f90545b49aa", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "bc00a0bc-64e7-4af8-b7b6-d695d7cc2477", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "4bc88f53-ccf2-49cb-bcfd-e2febb4b474e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "2721d4dd-b18d-4dfa-b2cf-be610d1cd34d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "0ab46b8e-0706-4faf-bc05-de08e5088596", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "66b98987-9a1e-43e1-b485-3ba5a86679f3", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "a4c4a7fc-65e0-4862-b595-c99cef0d11b5", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "2f49c0e2-1fea-4738-8c77-c9bc38e0a300", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "53451c10-b977-43d5-b5d8-49fa2215ce7b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "085fd450-b1e9-4a28-9d1f-d5ed28be53c0", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "133c0be7-3362-4e1b-8936-c00a8a9f0592", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "86128e48-9e3a-4b04-8fa9-522f22ecc960", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "e54da266-10f8-4e35-b72f-15f5c1708678", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "7390cde2-e8f8-4d06-bf4f-a4b56f7cb5ba", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "73b6a552-16ce-4da8-bae8-a322d604854f", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "69f270fa-8eea-4e56-a7df-3aed67958e42", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "062bb761-d9d1-4214-8d48-78f7ef450f6f", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "12b9e65a-2a20-47bc-8500-9bf61683dbe8", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "320af8b8-2d0d-4ae1-9f31-b5d733d1d4a5", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "c6b4759d-1519-4802-b599-db9162fa6dce", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "58026ef8-017d-426d-bc5d-c00a20a12b7a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b9733c71-8877-4ae1-b65c-c83aa2d641f4", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "483d7e86-5c87-4cd4-84c0-383b5b3ad4d2", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "e28ae597-0bba-48ab-912c-357c17c2e180", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "70f7d3cf-2d51-46ca-b6e4-ada861c4e186", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "8d5006ea-c308-47b8-b062-6cc2848f60f4", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "c1cd8ce9-6d86-4321-a9c8-95b94be2d8f2", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "df811357-3072-4719-9c0a-b270047bd2bd", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "c7588801-53ea-4eae-bee6-4f5082d29fe0", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "038f4c9a-6491-4a86-99fd-a51ed0447efe", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "eb4f5c9f-740e-4074-8f16-389b5f15270c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "c539b8b8-ba62-44b0-8edb-d62b04c4d3c4", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "7fe120a9-a024-4f91-95e0-364e8c6818b8", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "199de7ce-561d-490f-99d1-877e9cb8661c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "d3e2379f-1688-40e6-9171-12065ac5e815", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "4740a8ec-7b2b-4f81-abe9-3bc5a7cd9f0c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "90af81c0-cdd6-4788-b613-66b950551978", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "6d891daf-43f1-483b-92b5-00a7f96400db", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "31869138-3302-42b5-9d91-02973f0b125e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "8c7d74f8-bc96-4b45-bfdd-2bcb83230bb6", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b5863d80-b1a0-4218-a879-c82c997f4b9a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "29229c27-527b-435e-9383-107754c779a5", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "d69f93d6-f434-4536-b56c-eb4163806b8f", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "9d69b4bc-9a94-4f91-9b5c-1c1ac346d335", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "f751c932-24f7-4828-8d08-93c7c7217e96", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "7b155959-78dc-47ec-b6ab-edd87e24d805", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "4f1d7439-fddc-4cfc-9d0f-5cdc16a1b732", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b0bdff69-a36d-4682-8a55-df48fcbb81d3", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b3faa8d6-cac9-4bd9-a981-f803e30af70b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "84c9f6ea-8e02-44ab-a53f-40564b5d8160", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "c6765fd9-80a9-470e-b47b-250831d895be", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "52f66dc9-f11e-46e9-9a22-acf5c4d034c6", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "0fc93254-7482-4115-bb41-00804adf9e66", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "3b598e23-c948-42fe-8e4b-8157ff4fa700", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "825a39e2-b6ce-4869-8a3d-719af192dc27", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "ae91457f-ad93-45cd-9508-2c06202581c0", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "755f6c0c-5988-46b4-bd88-08eb830a0681", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "ea3e05ec-a748-4449-b6a8-e271f0eda0de", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "f787c927-1ca3-458c-8d90-965901ed1051", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b5a1ed52-7609-42bb-8143-772d23016fb6", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "48272865-6049-44ce-a784-2a41934c1d09", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "11353411-3eed-4e8b-b339-1a47b5ded816", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "ffbd2a42-280d-440d-a778-77276c192642", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "1d76bd8f-9935-4bac-95dd-e41d5093e937", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "0ddabeae-d38c-42a6-bdb7-4673125d8d89", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "26757fa7-e4c7-4be8-8784-be2a513e88f3", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "734aa647-8889-45f0-98d7-dd36ea7d6e6d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "38e66bc7-e2e4-44f9-9705-d9c62367b0af", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "6c4f7a72-d68d-4a78-9471-c574cf33fad1", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "96e32aa1-0714-4e7d-b4fa-ffa52b5fdbb3", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "18068472-c02e-4309-9868-83a5ce34f7bd", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "a3c5a734-3a07-40b4-a69d-196331de49cc", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "8b60b0f0-2a06-4abb-a63b-b254081265ae", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "1c12bad9-6da9-4bb9-895d-9cc17bf1a49b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "6e67335e-4328-4919-ba20-cf5b2840daf5", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "0142b8aa-0eed-473f-be01-b5bf83df65e8", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "3ca68ecd-9293-4e5e-88d2-c2ade37738c1", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "01659232-f63e-4a1e-b670-9a98a1c80760", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "7003047b-bf86-4306-b96e-c186e0399808", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "21aa3323-5d59-4c26-b8bf-153220686fc3", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "e5c6ec68-2868-4510-8606-417644b7284b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "e86c23ef-f3e3-42f0-a91e-55db4467ac41", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "a129d775-bac6-4b38-99fe-acc06f8853dc", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "1facd996-e12c-483b-85bc-cc40afce8d16", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "4cb1016a-1929-4651-9c0f-afebc17c5e18", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "f148e20f-e66e-4d33-b422-519ecb07b2fd", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "13d6b35f-ca28-499f-9e8b-f8f33b9e6f86", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "7d19b2a9-06f8-4551-8fd6-f04bea9a0078", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "eacc131b-64cc-4b7b-b2fd-7a27a4ca2893", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "4eaecc90-240c-4700-bee5-a6d0dad66135", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "4f15521c-a8d2-481a-9415-3e4ee8dacda5", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "243df18f-568b-4334-bbed-c9bd973aad82", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "43428290-a5f4-4010-8982-2f1434e4e823", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "cb81695c-a66b-4eba-868c-0032c40ee17b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "a23b4f26-70cb-48d4-8b63-ae7a3235ebbd", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "8629855a-0fd4-413a-985b-adee00af4cbc", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "00350871-c1d5-420a-9177-c51a60f0c2ea", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "ae83db35-f6e8-4578-aeb4-794f223ed37c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "fb0abe2d-fa17-4371-a153-d6d7d2455baf", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "ee9fa836-7209-4f2b-92b1-6b33c4ac7467", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "68b3b46a-6cb0-4b71-a7ba-091ceb63c647", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "95f9742c-876d-4d9e-b75a-0a79f8d140c0", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "739ac32d-cc86-4624-ae73-13443e0d7809", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "532a11a4-c141-4a61-acf0-712019a0ac0f", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "197a0308-4975-447c-a8f7-31122c622fb1", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "6ed5f241-0d77-470a-9ceb-872b2914b371", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "ac6fd527-d93e-4098-a49b-f2e57a0047bc", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b8530620-56d3-480d-bf02-1971606c0b8e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "0b86b4a6-855f-4c33-8b33-ffb17f434b28", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "6bf663a3-50fb-4bc8-81e4-c99bc8f0a0bd", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "48142910-7a23-4e3e-affc-106710e16b2e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "45b17efc-6fe6-4dba-9c1a-0eb4f5750dc3", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "df9360eb-0568-4ca7-ad0d-09dba2591b61", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "e0d8de9e-bcd8-4c18-9fae-19c7e750803e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "c051e879-d3e7-403d-a7c0-9fc4fc9915ba", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "4b3abc37-c034-444d-bbbf-055a13397587", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "23adf2d0-a1f5-4471-bf82-785d2864df9b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "36dc61f1-6bcc-4e92-a716-c32a3d4ac647", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "c0e3aa63-56d7-44d1-b48d-2f7e91d3f413", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "323f1c94-ec50-48c5-b941-ab6d10397e73", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "56f98cab-ef4c-478f-92f9-0a1df657a83e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "dd98a238-8259-47fc-88b4-efa1c335c76e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "9e9d0166-26ea-4804-a270-6ef02a2286cb", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "54f1295d-4b3d-483a-aeb7-eaee19a94e11", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "0f72cf54-bda1-4d1f-9707-58ccad24ef2c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "a2fec028-62b5-4c05-b8f2-13467e42e349", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "c730d4b3-9c0d-4935-91e0-cc79bbc5e46a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "2e7a5ec7-39fe-42dd-900a-826ea39af0b2", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "9151222c-a584-4ade-b380-f6ec35fd01b6", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "f787412b-ea11-4e7e-9417-dca7a62c28da", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "1752bff3-5ce7-497a-83f3-e0eaaf5ac0d4", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "4162cce4-20fe-4cbb-8eff-b132713bab72", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "d2cbf3bf-8747-4d24-8813-10c0f58da427", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b8d7f200-3643-4a93-be28-7c7fd9b6edcc", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "d698b0ed-efa0-4d49-b302-fc09b6436a74", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "ac49743c-1cb6-4318-a20c-3cfd0678935f", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "265ed417-e64f-4216-a46f-d13218cdedda", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "1b55e6c2-e14a-4a01-96f7-152953f3cf69", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "25da5f19-62e8-41a9-8020-1fc6a006374c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "9db12984-1fdc-4821-b43a-c2162863c19e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "7c34adf5-30c5-4950-bc62-dade6c741c32", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "2d4fc684-27bb-46c6-850a-c565b51b8b45", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "50d86988-4f7f-47d3-8dab-c1715819a931", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "68e3f55d-66ba-4112-8c84-f2cf5d2b4fcd", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "3b0619ef-89bd-4403-a9bd-55bdfde3b897", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "6a3ec6a3-c637-408a-843c-8cdce6f0ae53", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "966dcdc4-477f-4de4-844c-eef7fcaba9b2", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "94bfa256-36c1-48c8-9bb8-3fd9169774fe", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "1630085d-0882-42ac-bf3b-36bd0ad7fa5d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "de6bfb62-75f4-426e-883a-276665358b1a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "eb0cf9b3-5d9e-49d9-82a9-803ca22dbfc3", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "92d7324b-8e1f-4bcf-9305-7e628b059832", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "1cd30962-ffb7-4c73-8b83-b9098a14f96c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "a239182e-5889-41ee-a4c4-20950702b2fc", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "1ac73fb9-bddd-4678-a6d4-030bf6daebd3", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "50a5c390-bded-4480-8e74-2778fb003de4", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "71304650-62c2-416a-98a1-46dc9c3eb430", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "4d7f6037-5221-4e77-9766-bc3774d7c456", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "87853e1a-e977-48b5-ac74-e441bcf055a6", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "83dd22e1-bf9e-42e9-b99f-d1c3185b443b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "c90df090-2367-452b-9c53-a24937b5a9e2", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "34d41ce9-6365-4bc4-a54a-b5f702764508", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "6c091fe3-f828-49a8-bc1b-f451655463c7", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "71ddd3a2-556f-44bf-965d-01d85c62138d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "e55d6c9e-53b6-4583-b3da-b0d5aa9b5cf1", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "21068c60-d79f-43c8-aa45-b4b1661def8e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "e52e83a8-dc56-4223-984c-09f593a05319", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "e0876e20-b042-4f77-a762-6cf998676431", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "be0092cc-0475-4d82-8f68-e956fb1d6c61", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "7bc040c9-af2a-4e70-98db-ad994f1df8bb", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "c6e108fb-0bcd-4d4f-a335-213ec4413003", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "6bdce928-248f-465e-9892-fa703adbffbf", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "78556ef7-2fd1-4fd4-8502-b95ef664cff2", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "58cbbb7c-df09-4c24-92b0-34407c5d6161", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "4182c6b7-265d-4ad9-8080-98a25c4e869f", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "85732ec2-7c90-4888-a53f-2163352f4804", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "4a521c29-e8a9-48ee-a5ec-ca45e1c9b066", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "997b4960-a02f-4f1f-a3ef-776f4dcf64ed", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "e3342340-6f3d-421d-8df5-840f13310e0e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "0fb4570d-0130-4e35-9ea1-8ffc889eedde", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b52084db-a20a-45d9-87df-58b4fba8623d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "ede2bf44-938e-47c1-9c5d-caeed041adef", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "5f9c2f98-add0-4f7e-b450-20c84b818bd3", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "566fce30-3fc9-44bd-9587-09e864b42109", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "c1775363-d8b4-4c79-801b-75894330b30e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "33b87190-5ec0-44a4-9cd0-2505f3719db2", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b1892b4b-da71-4de4-9b75-c9e7f79ef3a1", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "e7e07fd3-a160-47bd-9ef9-917e716960f0", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "2a8e0f7d-c134-4dbd-b78c-84479e132d6d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "3fa96681-40ee-4002-8759-1ff9c129541d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "26067a7e-78c9-457d-b5a0-6bb93848542c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "51b87b17-76cd-4e2c-9154-edb8ebc09c10", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "613a2f21-8753-4f8b-bf05-842da9e7bd6e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "5639bb22-3c8f-459d-94f0-2772ea2b9002", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "9e455aaa-6a58-4b0e-9356-2f7da2dbb247", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "e61d7dbf-e6c3-4e1e-8aae-70d3ffd578af", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "99a1bc56-5258-4597-b496-7e31e8630c09", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "9e8af14a-701c-40a6-a5df-47a0284ca120", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b1a4c0fa-dce5-442e-b584-8372ecc21b71", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "c6c79f07-fca3-44ac-bc7a-bf5fbd17f72f", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "8c0111cd-7370-481a-9a9d-5dc923c6170a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "2a5de641-27b6-4720-9a32-104c2980aa84", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "43f7049f-4345-4c5d-b46c-3d699d792703", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b296b965-f4c7-4f63-9b8d-6eb7f248de80", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "73e79cff-4574-45c8-a74e-dc025c2d5f14", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "cfda979a-1494-4f24-af84-376ced4e3a4a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "738ab4fa-990c-4893-bdec-fcd474c70054", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "8f9d8a1d-df37-4b01-9d65-769e633432c5", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "4a794435-4b40-484a-8d64-a5247f2579f6", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "9bb171a7-8b40-41dc-96a5-7d71545e3f50", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "6568ef50-ef83-46e5-9724-551c01905e7f", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "773819c8-b69b-40cb-a3b2-b7e3d5eb8c0b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "813c9ab5-c809-473c-9834-bac15cb8efe2", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b91040c7-50af-409e-9f5d-2417f70f7fc5", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "81ab9d58-c49d-40a7-8f0c-f697f874b4af", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "5dfa428a-0fbd-4207-96e0-e800166daa0d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "ce4c3eae-c332-4575-a344-dca4b62a54c4", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "42caac29-6296-4e90-ab94-7f5b8dd09941", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "5d9c2140-e92d-47a0-8ed7-be9d13739336", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "dfb89f11-02f4-44e2-89f1-ab6dc902cf10", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "1d67c1c3-fe38-431d-8240-0af6861ffa80", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "02b6113b-f706-4be4-b5e6-efd6328b4948", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "221df7ef-0020-49d9-94bb-8ea4c79ce86a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "3109e028-0817-484b-8be4-33d280f35529", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "680068f6-ae74-4729-a4ee-26ceaf6eeb0d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "fae6af9a-0241-4f2b-8522-43ca0fb170a8", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "3be70b4d-6cf8-4420-8c69-b56f0ec9e500", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "de5b2c9c-6a2d-4a42-b343-d587af108234", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "48d2f4ca-c80f-4cc5-9bce-faec203b8faf", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "ce425c77-231e-4a59-bf1c-c0c140015a72", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "1b5877e3-0481-47a9-ad2e-acf678f22354", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "64fe0313-575b-4840-a6b8-158652d78bf1", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "22595704-f725-448b-82b6-ce50cb49d8a8", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "d919c1f2-6bd4-4aa9-b040-7f5798bccfa8", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "55b67ba0-3dc8-4ad0-af48-18469138658e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "09a1acfb-1b84-4b90-af4d-faf6314c90fb", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "82a599d5-f68d-41cb-a962-f710b8181dbd", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "caae6e26-f625-4cd2-873f-0f3a973b1393", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "d3424fb3-135d-4778-b380-5e2cc8c0ffdf", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "aa383a41-96b6-4e46-a19a-d29c90828b10", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "d6da138b-b563-47d7-87fc-9fe34fe6403c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "bc2355f0-a774-438b-bd29-2f2f634e8b90", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "78deb406-5057-4635-bf8b-d357cf754153", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b764eeae-5569-4cd9-83ff-3fd673b5a0bf", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "e56f00e6-b44b-4bdd-9f74-76eff9ee1513", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "4a17817f-bc30-465f-9366-df70be7122b7", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b54c5771-cd60-4bd5-a8d2-74f8bae6ae3f", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "ebfc601a-2048-4aa3-8461-349e4370dcde", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "22f7d3be-391b-47b0-8e64-dd14f455a29c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "9443e8f2-e4f5-4c0a-97fc-3f2261f127f3", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "0f9d02a6-c1d2-4ce9-99cb-c67b1b2660f2", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "17818b5c-954c-4487-bf74-97e5dd7a12a1", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "a7d8a996-261c-4ad0-bcff-eacd6fc20024", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "f3489563-8241-4497-96fc-e64fb9c2c15d", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "c7d4e058-08a0-4b54-84b7-d356a53f7009", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "7710501d-8d81-4b3b-8d8d-0fcd139396e1", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "e7ba6391-ad7f-481c-9427-729330db1c3c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "f174bea3-e1c1-4e3e-8ac2-8fc1e06acd71", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "3b04c105-c2a8-4506-b915-e13e67ef39e0", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "14ca2a90-4341-45a3-97dd-8dca32918ec3", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "29a0df92-be05-4615-a97b-cfd013241da1", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "39778789-5b79-4557-a261-e6c963b52154", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "08646c91-9cd5-4137-9a9d-df293f1c63fd", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "7ae21568-e5d4-448b-a4bb-746a35e70b06", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "9a46132a-86ac-4bd8-bfdd-6b6f91636d12", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "609b2e9a-227d-4db7-95db-fdabdd257482", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b53bb5fb-0396-41d4-a7ae-eb6480f14566", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "90e8daf2-472b-4fd2-bbfe-1a12fab35f8e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "bfe8f4e2-c324-45af-a712-6251b3ea6d6e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "ab6767dc-d73b-47a5-b53b-7cd7e817ec10", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "760a0029-aff1-4bd7-b7ef-be4150ebd67e", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "8f28c26a-8555-477e-8eb3-7c30b496d6c9", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "c65cb4fe-1bdf-47d4-9d7f-8a8f459e6da9", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "a7238dc1-cd2f-47ff-a134-a1ed32bb756b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "33bd6961-15bb-438e-8348-a9d933cbeb19", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "ed103d3b-322d-4414-a282-700d06ff9b50", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "cecc1a88-2eed-4936-acee-dc3fb95ede8b", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "6e55e460-3cab-48cc-b844-bf14b6fe297a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "5042c1cd-1d3c-4064-93ea-7d8213da8e31", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "e71bb626-bed5-4cac-a756-f6662288188f", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "79be5e6b-a681-4678-be5e-56a06fe48387", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "797d2b5c-986a-4cab-bf00-094f32b691a1", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b7db8e5b-7a6e-4f6a-b1e2-39f441f00e10", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "7deb199b-71a9-415a-8c26-7d39f00d930c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b987cc97-4c16-4cc6-90db-84e3af870450", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "1dccd6be-5c21-49eb-8400-dd139e324a58", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "c339ea41-0a7d-4c24-919b-90263ec2fbbb", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "928bf190-7521-4e31-9544-ffcdb3315439", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "b2625d35-725f-4921-8b5e-434be8083e76", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "12bd7037-f853-4fcf-818c-2e7a246a5d0a", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "ff3a827a-d657-4e01-9e95-e0fca8bd0779", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "bce4d453-22dd-4398-b17a-9249995ffc01", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "06a06471-ef8f-437c-90fd-dca570fe139c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "3238bfcd-8105-40c7-9518-cb5c6537eeb0", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "f7c79721-13f9-4862-b778-221a893ce05c", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + }, + { + "id": "9ed06546-c0c2-48ab-889d-da13dcd732a8", + "is_deleted": false, + "trip_update": { + "trip": { + "trip_id": "", + "start_date": "", + "route_id": "" + }, + "stop_time_update": [] + } + } + ] +} \ No newline at end of file diff --git a/data/output/json_file/with_trip_update.json b/data/output/json_file/with_trip_update.json new file mode 100644 index 0000000..256850f --- /dev/null +++ b/data/output/json_file/with_trip_update.json @@ -0,0 +1 @@ +{"entity": [{"id": "47323735-0555-464b-8c87-84612a960b31", "tripUpdate": {"trip": {"tripId": "6580c01a-a-701ff27f-2", "startTime": "15:02:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "540", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 49, "arrival": {"time": "1694888663"}, "stopId": "15-13"}, {"stopSequence": 50, "arrival": {"time": "1694889285"}, "stopId": "15-Oct"}, {"stopSequence": 51, "arrival": {"time": "1694889555"}, "stopId": "15-Aug"}, {"stopSequence": 52, "arrival": {"time": "1694889651"}, "stopId": "15-Jun"}, {"stopSequence": 53, "arrival": {"time": "1694889694"}, "stopId": "15-Apr"}, {"stopSequence": 54, "arrival": {"time": "1694890567"}, "stopId": "16-Aug"}, {"stopSequence": 55, "arrival": {"time": "1694890698"}, "stopId": "16-May"}, {"stopSequence": 56, "arrival": {"time": "1694890756"}, "stopId": "16-Mar"}, {"stopSequence": 57, "arrival": {"time": "1694890809"}, "stopId": "16-Jan"}, {"stopSequence": 58, "arrival": {"time": "1694890909"}, "stopId": "27-Jan"}, {"stopSequence": 59, "arrival": {"time": "1694890954"}, "stopId": "17-Jan"}, {"stopSequence": 60, "arrival": {"time": "1694891205"}, "stopId": "18-Feb"}, {"stopSequence": 61, "arrival": {"time": "1694891538"}, "stopId": "19-Feb"}, {"stopSequence": 62, "arrival": {"time": "1694891680"}, "stopId": "20-Feb"}, {"stopSequence": 63, "arrival": {"time": "1694891719"}, "stopId": "20-Mar"}, {"stopSequence": 64, "arrival": {"time": "1694891798"}, "stopId": "20-Jun"}, {"stopSequence": 65, "arrival": {"time": "1694891880"}, "stopId": "20-Sep"}, {"stopSequence": 66, "arrival": {"time": "1694892011"}, "stopId": "20-Dec"}], "vehicle": {"licensePlate": "DSSY17"}, "timestamp": "1694888636"}, "vehicle": {"trip": {"tripId": "6580c01a-a-701ff27f-2", "startTime": "15:02:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "540", "directionId": 1}, "position": {"latitude": -36.70524, "longitude": -72.9758, "bearing": 2.0, "odometer": 0.0, "speed": 9.444445}, "timestamp": "1694888636", "vehicle": {"licensePlate": "DSSY17"}}}, {"id": "8e20884f-b099-465b-941b-f0682817d7ef", "tripUpdate": {"trip": {"tripId": "5b492c06-9-701ff27f-2", "startTime": "16:02:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "540", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 7, "arrival": {"time": "1694889032"}, "stopId": "3-Mar"}, {"stopSequence": 8, "arrival": {"time": "1694889092"}, "stopId": "50031"}, {"stopSequence": 9, "arrival": {"time": "1694889144"}, "stopId": "50032"}, {"stopSequence": 10, "arrival": {"time": "1694889181"}, "stopId": "39495"}, {"stopSequence": 11, "arrival": {"time": "1694889278"}, "stopId": "50033"}, {"stopSequence": 12, "arrival": {"time": "1694889315"}, "stopId": "39497"}, {"stopSequence": 13, "arrival": {"time": "1694889346"}, "stopId": "49407"}, {"stopSequence": 14, "arrival": {"time": "1694889400"}, "stopId": "50034"}, {"stopSequence": 15, "arrival": {"time": "1694889442"}, "stopId": "40903"}, {"stopSequence": 16, "arrival": {"time": "1694889497"}, "stopId": "50035"}, {"stopSequence": 17, "arrival": {"time": "1694889547"}, "stopId": "50036"}, {"stopSequence": 18, "arrival": {"time": "1694889772"}, "stopId": "50037"}, {"stopSequence": 19, "arrival": {"time": "1694889912"}, "stopId": "50038"}, {"stopSequence": 20, "arrival": {"time": "1694889979"}, "stopId": "50039"}, {"stopSequence": 21, "arrival": {"time": "1694890040"}, "stopId": "50040"}, {"stopSequence": 22, "arrival": {"time": "1694890123"}, "stopId": "50041"}, {"stopSequence": 23, "arrival": {"time": "1694890263"}, "stopId": "Jun-15"}, {"stopSequence": 24, "arrival": {"time": "1694890349"}, "stopId": "Jun-13"}, {"stopSequence": 25, "arrival": {"time": "1694890550"}, "stopId": "6-Oct"}, {"stopSequence": 26, "arrival": {"time": "1694890602"}, "stopId": "6-Aug"}, {"stopSequence": 27, "arrival": {"time": "1694890759"}, "stopId": "6-Jun"}, {"stopSequence": 28, "arrival": {"time": "1694890889"}, "stopId": "6-Feb"}, {"stopSequence": 29, "arrival": {"time": "1694891031"}, "stopId": "7-Jul"}, {"stopSequence": 30, "arrival": {"time": "1694891105"}, "stopId": "7-May"}, {"stopSequence": 31, "arrival": {"time": "1694891150"}, "stopId": "1508142"}, {"stopSequence": 32, "arrival": {"time": "1694891257"}, "stopId": "7-Feb"}, {"stopSequence": 33, "arrival": {"time": "1694891322"}, "stopId": "8-Jan"}, {"stopSequence": 34, "arrival": {"time": "1694891368"}, "stopId": "9-Jan"}, {"stopSequence": 35, "arrival": {"time": "1694891405"}, "stopId": "10-Apr"}, {"stopSequence": 36, "arrival": {"time": "1694891481"}, "stopId": "10-Jan"}, {"stopSequence": 37, "arrival": {"time": "1694891524"}, "stopId": "44863"}, {"stopSequence": 38, "arrival": {"time": "1694891569"}, "stopId": "10-Mar"}, {"stopSequence": 39, "arrival": {"time": "1694891626"}, "stopId": "11-Jan"}, {"stopSequence": 40, "arrival": {"time": "1694891801"}, "stopId": "14-17"}, {"stopSequence": 41, "arrival": {"time": "1694891969"}, "stopId": "14-14"}, {"stopSequence": 42, "arrival": {"time": "1694892024"}, "stopId": "14-11"}, {"stopSequence": 43, "arrival": {"time": "1694892077"}, "stopId": "91162"}, {"stopSequence": 44, "arrival": {"time": "1694892196"}, "stopId": "50023"}, {"stopSequence": 45, "arrival": {"time": "1694892324"}, "stopId": "14-Jul"}, {"stopSequence": 46, "arrival": {"time": "1694892382"}, "stopId": "14-Apr"}, {"stopSequence": 47, "arrival": {"time": "1694892498"}, "stopId": "14-Mar"}, {"stopSequence": 48, "arrival": {"time": "1694892584"}, "stopId": "38151"}, {"stopSequence": 49, "arrival": {"time": "1694892816"}, "stopId": "15-13"}, {"stopSequence": 50, "arrival": {"time": "1694893990"}, "stopId": "15-Oct"}, {"stopSequence": 51, "arrival": {"time": "1694894669"}, "stopId": "15-Aug"}, {"stopSequence": 52, "arrival": {"time": "1694894943"}, "stopId": "15-Jun"}, {"stopSequence": 53, "arrival": {"time": "1694895072"}, "stopId": "15-Apr"}, {"stopSequence": 54, "arrival": {"time": "1694898851"}, "stopId": "16-Aug"}, {"stopSequence": 55, "arrival": {"time": "1694899690"}, "stopId": "16-May"}, {"stopSequence": 56, "arrival": {"time": "1694900099"}, "stopId": "16-Mar"}, {"stopSequence": 57, "arrival": {"time": "1694900492"}, "stopId": "16-Jan"}, {"stopSequence": 58, "arrival": {"time": "1694901287"}, "stopId": "27-Jan"}, {"stopSequence": 59, "arrival": {"time": "1694901671"}, "stopId": "17-Jan"}, {"stopSequence": 60, "arrival": {"time": "1694904190"}, "stopId": "18-Feb"}, {"stopSequence": 61, "arrival": {"time": "1694908919"}, "stopId": "19-Feb"}, {"stopSequence": 62, "arrival": {"time": "1694911675"}, "stopId": "20-Feb"}, {"stopSequence": 63, "arrival": {"time": "1694912564"}, "stopId": "20-Mar"}, {"stopSequence": 64, "arrival": {"time": "1694914488"}, "stopId": "20-Jun"}, {"stopSequence": 65, "arrival": {"time": "1694916813"}, "stopId": "20-Sep"}, {"stopSequence": 66, "arrival": {"time": "1694921300"}, "stopId": "20-Dec"}], "vehicle": {"licensePlate": "DTDZ72"}, "timestamp": "1694888988"}, "vehicle": {"trip": {"tripId": "5b492c06-9-701ff27f-2", "startTime": "16:02:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "540", "directionId": 1}, "position": {"latitude": -36.830944, "longitude": -73.04876, "bearing": 60.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888988", "vehicle": {"licensePlate": "DTDZ72"}}}, {"id": "2e56463c-9cd8-4ef0-bdc0-767603d6f010", "tripUpdate": {"trip": {"tripId": "052d899d-c-701ff27f-2", "startTime": "14:50:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "540", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 14, "arrival": {"time": "1694889046"}, "stopId": "19-Apr"}, {"stopSequence": 15, "arrival": {"time": "1694889172"}, "stopId": "18-Jan"}, {"stopSequence": 16, "arrival": {"time": "1694889236"}, "stopId": "18-Feb"}, {"stopSequence": 17, "arrival": {"time": "1694889289"}, "stopId": "18-Mar"}, {"stopSequence": 18, "arrival": {"time": "1694889352"}, "stopId": "50042"}, {"stopSequence": 19, "arrival": {"time": "1694889471"}, "stopId": "16-Feb"}, {"stopSequence": 20, "arrival": {"time": "1694889525"}, "stopId": "16-4"}, {"stopSequence": 21, "arrival": {"time": "1694889621"}, "stopId": "16-Jun"}, {"stopSequence": 22, "arrival": {"time": "1694889679"}, "stopId": "16-Jul"}, {"stopSequence": 23, "arrival": {"time": "1694889720"}, "stopId": "15-Jan"}, {"stopSequence": 24, "arrival": {"time": "1694890363"}, "stopId": "15-Feb"}, {"stopSequence": 25, "arrival": {"time": "1694890499"}, "stopId": "15-Mar"}, {"stopSequence": 26, "arrival": {"time": "1694890534"}, "stopId": "15-May"}, {"stopSequence": 27, "arrival": {"time": "1694890589"}, "stopId": "15-Jul"}, {"stopSequence": 28, "arrival": {"time": "1694890676"}, "stopId": "15-Sep"}, {"stopSequence": 29, "arrival": {"time": "1694891492"}, "stopId": "15-Dec"}, {"stopSequence": 30, "arrival": {"time": "1694891668"}, "stopId": "38149"}, {"stopSequence": 31, "arrival": {"time": "1694891743"}, "stopId": "14-Feb"}, {"stopSequence": 32, "arrival": {"time": "1694891854"}, "stopId": "14-May"}, {"stopSequence": 33, "arrival": {"time": "1694891903"}, "stopId": "14-Jun"}, {"stopSequence": 34, "arrival": {"time": "1694891977"}, "stopId": "14-Aug"}, {"stopSequence": 35, "arrival": {"time": "1694892026"}, "stopId": "50024"}, {"stopSequence": 36, "arrival": {"time": "1694892201"}, "stopId": "14-12"}, {"stopSequence": 37, "arrival": {"time": "1694892231"}, "stopId": "14-13"}, {"stopSequence": 38, "arrival": {"time": "1694892361"}, "stopId": "14-15"}, {"stopSequence": 39, "arrival": {"time": "1694892389"}, "stopId": "14-16"}, {"stopSequence": 40, "arrival": {"time": "1694892462"}, "stopId": "14-18"}, {"stopSequence": 41, "arrival": {"time": "1694892607"}, "stopId": "13-Jan"}, {"stopSequence": 42, "arrival": {"time": "1694892675"}, "stopId": "13-Feb"}, {"stopSequence": 43, "arrival": {"time": "1694892715"}, "stopId": "28-Jan"}, {"stopSequence": 44, "arrival": {"time": "1694892795"}, "stopId": "12-3"}, {"stopSequence": 45, "arrival": {"time": "1694892930"}, "stopId": "12-Jan"}, {"stopSequence": 46, "arrival": {"time": "1694892995"}, "stopId": "12-Feb"}, {"stopSequence": 47, "arrival": {"time": "1694893095"}, "stopId": "7-Jan"}, {"stopSequence": 48, "arrival": {"time": "1694893187"}, "stopId": "7-Mar"}, {"stopSequence": 49, "arrival": {"time": "1694893445"}, "stopId": "7-Jun"}, {"stopSequence": 50, "arrival": {"time": "1694893569"}, "stopId": "7-Aug"}, {"stopSequence": 51, "arrival": {"time": "1694893717"}, "stopId": "6-Jan"}, {"stopSequence": 52, "arrival": {"time": "1694893874"}, "stopId": "6-Mar"}, {"stopSequence": 53, "arrival": {"time": "1694894108"}, "stopId": "6-May"}, {"stopSequence": 54, "arrival": {"time": "1694894476"}, "stopId": "6-Jul"}, {"stopSequence": 55, "arrival": {"time": "1694894624"}, "stopId": "6-Sep"}, {"stopSequence": 56, "arrival": {"time": "1694894888"}, "stopId": "6-Nov"}, {"stopSequence": 57, "arrival": {"time": "1694895176"}, "stopId": "6-Dec"}, {"stopSequence": 58, "arrival": {"time": "1694895448"}, "stopId": "Jun-14"}, {"stopSequence": 59, "arrival": {"time": "1694895979"}, "stopId": "Jun-17"}, {"stopSequence": 60, "arrival": {"time": "1694896286"}, "stopId": "Jun-19"}, {"stopSequence": 61, "arrival": {"time": "1694896504"}, "stopId": "Jun-20"}, {"stopSequence": 62, "arrival": {"time": "1694896752"}, "stopId": "Jun-22"}, {"stopSequence": 63, "arrival": {"time": "1694897029"}, "stopId": "Jun-24"}, {"stopSequence": 64, "arrival": {"time": "1694897444"}, "stopId": "Jun-25"}, {"stopSequence": 65, "arrival": {"time": "1694898765"}, "stopId": "5-Feb"}, {"stopSequence": 66, "arrival": {"time": "1694899349"}, "stopId": "1-Feb"}, {"stopSequence": 67, "arrival": {"time": "1694899716"}, "stopId": "1-Mar"}, {"stopSequence": 68, "arrival": {"time": "1694900074"}, "stopId": "1-Apr"}, {"stopSequence": 69, "arrival": {"time": "1694900386"}, "stopId": "1-May"}, {"stopSequence": 70, "arrival": {"time": "1694900786"}, "stopId": "1-Jun"}, {"stopSequence": 71, "arrival": {"time": "1694901309"}, "stopId": "1-Jul"}, {"stopSequence": 72, "arrival": {"time": "1694901642"}, "stopId": "1-Aug"}, {"stopSequence": 73, "arrival": {"time": "1694902031"}, "stopId": "1-Sep"}, {"stopSequence": 74, "arrival": {"time": "1694902701"}, "stopId": "1-Oct"}, {"stopSequence": 75, "arrival": {"time": "1694903288"}, "stopId": "1-Nov"}], "vehicle": {"licensePlate": "FXVS53"}, "timestamp": "1694889037"}, "vehicle": {"trip": {"tripId": "052d899d-c-701ff27f-2", "startTime": "14:50:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "540", "directionId": 0}, "position": {"latitude": -36.605938, "longitude": -72.95518, "bearing": 216.0, "odometer": 0.0, "speed": 8.611111}, "timestamp": "1694889037", "vehicle": {"licensePlate": "FXVS53"}}}, {"id": "a3c8567d-4b28-49c3-be81-ea3eef681053", "tripUpdate": {"trip": {"tripId": "4a1e454c-e-701ff27f-2", "startTime": "14:52:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "540", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 60, "arrival": {"time": "1694888997"}, "stopId": "18-Feb"}, {"stopSequence": 61, "arrival": {"time": "1694889276"}, "stopId": "19-Feb"}, {"stopSequence": 62, "arrival": {"time": "1694889385"}, "stopId": "20-Feb"}, {"stopSequence": 63, "arrival": {"time": "1694889414"}, "stopId": "20-Mar"}, {"stopSequence": 64, "arrival": {"time": "1694889472"}, "stopId": "20-Jun"}, {"stopSequence": 65, "arrival": {"time": "1694889530"}, "stopId": "20-Sep"}, {"stopSequence": 66, "arrival": {"time": "1694889620"}, "stopId": "20-Dec"}], "vehicle": {"licensePlate": "FYDV52"}, "timestamp": "1694888954"}, "vehicle": {"trip": {"tripId": "4a1e454c-e-701ff27f-2", "startTime": "14:52:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "540", "directionId": 1}, "position": {"latitude": -36.612465, "longitude": -72.955086, "bearing": 24.0, "odometer": 0.0, "speed": 0.2777778}, "timestamp": "1694889002", "vehicle": {"licensePlate": "FYDV52"}}}, {"id": "08173482-8a5a-4c8d-9c9e-40137cf5f92d", "tripUpdate": {"trip": {"tripId": "b6530c23-0-701ff27f-2", "startTime": "14:30:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "540", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 65, "arrival": {"time": "1694889169"}, "stopId": "5-Feb"}, {"stopSequence": 66, "arrival": {"time": "1694889262"}, "stopId": "1-Feb"}, {"stopSequence": 67, "arrival": {"time": "1694889315"}, "stopId": "1-Mar"}, {"stopSequence": 68, "arrival": {"time": "1694889364"}, "stopId": "1-Apr"}, {"stopSequence": 69, "arrival": {"time": "1694889403"}, "stopId": "1-May"}, {"stopSequence": 70, "arrival": {"time": "1694889452"}, "stopId": "1-Jun"}, {"stopSequence": 71, "arrival": {"time": "1694889510"}, "stopId": "1-Jul"}, {"stopSequence": 72, "arrival": {"time": "1694889544"}, "stopId": "1-Aug"}, {"stopSequence": 73, "arrival": {"time": "1694889583"}, "stopId": "1-Sep"}, {"stopSequence": 74, "arrival": {"time": "1694889644"}, "stopId": "1-Oct"}, {"stopSequence": 75, "arrival": {"time": "1694889693"}, "stopId": "1-Nov"}], "vehicle": {"licensePlate": "HWHR12"}, "timestamp": "1694889012"}, "vehicle": {"trip": {"tripId": "b6530c23-0-701ff27f-2", "startTime": "14:30:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "540", "directionId": 0}, "position": {"latitude": -36.807575, "longitude": -73.02449, "bearing": 206.0, "odometer": 0.0, "speed": 18.88889}, "timestamp": "1694889012", "vehicle": {"licensePlate": "HWHR12"}}}, {"id": "194a87e2-fbcc-485c-a999-8c8668671ef8", "tripUpdate": {"trip": {"tripId": "97523aa1-7-701ff27f-2", "startTime": "15:32:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "540", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 32, "arrival": {"time": "1694889031"}, "stopId": "7-Feb"}, {"stopSequence": 33, "arrival": {"time": "1694889093"}, "stopId": "8-Jan"}, {"stopSequence": 34, "arrival": {"time": "1694889135"}, "stopId": "9-Jan"}, {"stopSequence": 35, "arrival": {"time": "1694889169"}, "stopId": "10-Apr"}, {"stopSequence": 36, "arrival": {"time": "1694889237"}, "stopId": "10-Jan"}, {"stopSequence": 37, "arrival": {"time": "1694889274"}, "stopId": "44863"}, {"stopSequence": 38, "arrival": {"time": "1694889313"}, "stopId": "10-Mar"}, {"stopSequence": 39, "arrival": {"time": "1694889360"}, "stopId": "11-Jan"}, {"stopSequence": 40, "arrival": {"time": "1694889503"}, "stopId": "14-17"}, {"stopSequence": 41, "arrival": {"time": "1694889632"}, "stopId": "14-14"}, {"stopSequence": 42, "arrival": {"time": "1694889673"}, "stopId": "14-11"}, {"stopSequence": 43, "arrival": {"time": "1694889711"}, "stopId": "91162"}, {"stopSequence": 44, "arrival": {"time": "1694889796"}, "stopId": "50023"}, {"stopSequence": 45, "arrival": {"time": "1694889883"}, "stopId": "14-Jul"}, {"stopSequence": 46, "arrival": {"time": "1694889922"}, "stopId": "14-Apr"}, {"stopSequence": 47, "arrival": {"time": "1694889997"}, "stopId": "14-Mar"}, {"stopSequence": 48, "arrival": {"time": "1694890052"}, "stopId": "38151"}, {"stopSequence": 49, "arrival": {"time": "1694890192"}, "stopId": "15-13"}, {"stopSequence": 50, "arrival": {"time": "1694890799"}, "stopId": "15-Oct"}, {"stopSequence": 51, "arrival": {"time": "1694891091"}, "stopId": "15-Aug"}, {"stopSequence": 52, "arrival": {"time": "1694891198"}, "stopId": "15-Jun"}, {"stopSequence": 53, "arrival": {"time": "1694891248"}, "stopId": "15-Apr"}, {"stopSequence": 54, "arrival": {"time": "1694892349"}, "stopId": "16-Aug"}, {"stopSequence": 55, "arrival": {"time": "1694892532"}, "stopId": "16-May"}, {"stopSequence": 56, "arrival": {"time": "1694892615"}, "stopId": "16-Mar"}, {"stopSequence": 57, "arrival": {"time": "1694892691"}, "stopId": "16-Jan"}, {"stopSequence": 58, "arrival": {"time": "1694892837"}, "stopId": "27-Jan"}, {"stopSequence": 59, "arrival": {"time": "1694892904"}, "stopId": "17-Jan"}, {"stopSequence": 60, "arrival": {"time": "1694893286"}, "stopId": "18-Feb"}, {"stopSequence": 61, "arrival": {"time": "1694893823"}, "stopId": "19-Feb"}, {"stopSequence": 62, "arrival": {"time": "1694894061"}, "stopId": "20-Feb"}, {"stopSequence": 63, "arrival": {"time": "1694894129"}, "stopId": "20-Mar"}, {"stopSequence": 64, "arrival": {"time": "1694894265"}, "stopId": "20-Jun"}, {"stopSequence": 65, "arrival": {"time": "1694894410"}, "stopId": "20-Sep"}, {"stopSequence": 66, "arrival": {"time": "1694894644"}, "stopId": "20-Dec"}], "vehicle": {"licensePlate": "HYHP83"}, "timestamp": "1694889006"}, "vehicle": {"trip": {"tripId": "97523aa1-7-701ff27f-2", "startTime": "15:32:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "540", "directionId": 1}, "position": {"latitude": -36.744164, "longitude": -73.002365, "bearing": 22.0, "odometer": 0.0, "speed": 16.944445}, "timestamp": "1694889006", "vehicle": {"licensePlate": "HYHP83"}}}, {"id": "5dbda519-b60b-4a72-82e8-23c4828d20c9", "tripUpdate": {"trip": {"tripId": "619ce6ab-8-701ff27f-2", "startTime": "15:10:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "540", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 35, "arrival": {"time": "1694889000"}, "stopId": "50024"}, {"stopSequence": 36, "arrival": {"time": "1694889137"}, "stopId": "14-12"}, {"stopSequence": 37, "arrival": {"time": "1694889160"}, "stopId": "14-13"}, {"stopSequence": 38, "arrival": {"time": "1694889255"}, "stopId": "14-15"}, {"stopSequence": 39, "arrival": {"time": "1694889274"}, "stopId": "14-16"}, {"stopSequence": 40, "arrival": {"time": "1694889325"}, "stopId": "14-18"}, {"stopSequence": 41, "arrival": {"time": "1694889422"}, "stopId": "13-Jan"}, {"stopSequence": 42, "arrival": {"time": "1694889466"}, "stopId": "13-Feb"}, {"stopSequence": 43, "arrival": {"time": "1694889491"}, "stopId": "28-Jan"}, {"stopSequence": 44, "arrival": {"time": "1694889541"}, "stopId": "12-3"}, {"stopSequence": 45, "arrival": {"time": "1694889622"}, "stopId": "12-Jan"}, {"stopSequence": 46, "arrival": {"time": "1694889660"}, "stopId": "12-Feb"}, {"stopSequence": 47, "arrival": {"time": "1694889716"}, "stopId": "7-Jan"}, {"stopSequence": 48, "arrival": {"time": "1694889767"}, "stopId": "7-Mar"}, {"stopSequence": 49, "arrival": {"time": "1694889901"}, "stopId": "7-Jun"}, {"stopSequence": 50, "arrival": {"time": "1694889962"}, "stopId": "7-Aug"}, {"stopSequence": 51, "arrival": {"time": "1694890033"}, "stopId": "6-Jan"}, {"stopSequence": 52, "arrival": {"time": "1694890105"}, "stopId": "6-Mar"}, {"stopSequence": 53, "arrival": {"time": "1694890207"}, "stopId": "6-May"}, {"stopSequence": 54, "arrival": {"time": "1694890357"}, "stopId": "6-Jul"}, {"stopSequence": 55, "arrival": {"time": "1694890414"}, "stopId": "6-Sep"}, {"stopSequence": 56, "arrival": {"time": "1694890511"}, "stopId": "6-Nov"}, {"stopSequence": 57, "arrival": {"time": "1694890610"}, "stopId": "6-Dec"}, {"stopSequence": 58, "arrival": {"time": "1694890700"}, "stopId": "Jun-14"}, {"stopSequence": 59, "arrival": {"time": "1694890861"}, "stopId": "Jun-17"}, {"stopSequence": 60, "arrival": {"time": "1694890948"}, "stopId": "Jun-19"}, {"stopSequence": 61, "arrival": {"time": "1694891007"}, "stopId": "Jun-20"}, {"stopSequence": 62, "arrival": {"time": "1694891071"}, "stopId": "Jun-22"}, {"stopSequence": 63, "arrival": {"time": "1694891140"}, "stopId": "Jun-24"}, {"stopSequence": 64, "arrival": {"time": "1694891238"}, "stopId": "Jun-25"}, {"stopSequence": 65, "arrival": {"time": "1694891514"}, "stopId": "5-Feb"}, {"stopSequence": 66, "arrival": {"time": "1694891621"}, "stopId": "1-Feb"}, {"stopSequence": 67, "arrival": {"time": "1694891684"}, "stopId": "1-Mar"}, {"stopSequence": 68, "arrival": {"time": "1694891743"}, "stopId": "1-Apr"}, {"stopSequence": 69, "arrival": {"time": "1694891793"}, "stopId": "1-May"}, {"stopSequence": 70, "arrival": {"time": "1694891854"}, "stopId": "1-Jun"}, {"stopSequence": 71, "arrival": {"time": "1694891929"}, "stopId": "1-Jul"}, {"stopSequence": 72, "arrival": {"time": "1694891975"}, "stopId": "1-Aug"}, {"stopSequence": 73, "arrival": {"time": "1694892027"}, "stopId": "1-Sep"}, {"stopSequence": 74, "arrival": {"time": "1694892111"}, "stopId": "1-Oct"}, {"stopSequence": 75, "arrival": {"time": "1694892180"}, "stopId": "1-Nov"}], "vehicle": {"licensePlate": "JJJC68"}, "timestamp": "1694888982"}, "vehicle": {"trip": {"tripId": "619ce6ab-8-701ff27f-2", "startTime": "15:10:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "540", "directionId": 0}, "position": {"latitude": -36.719738, "longitude": -72.97504, "bearing": 206.0, "odometer": 0.0, "speed": 3.8888888}, "timestamp": "1694888982", "vehicle": {"licensePlate": "JJJC68"}}}, {"id": "0ed9a4b9-0622-40c5-bfc2-fcf366410395", "tripUpdate": {"trip": {"tripId": "9e911196-b-701ff27f-2", "startTime": "15:30:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "540", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 24, "arrival": {"time": "1694889567"}, "stopId": "15-Feb"}, {"stopSequence": 25, "arrival": {"time": "1694889702"}, "stopId": "15-Mar"}, {"stopSequence": 26, "arrival": {"time": "1694889736"}, "stopId": "15-May"}, {"stopSequence": 27, "arrival": {"time": "1694889791"}, "stopId": "15-Jul"}, {"stopSequence": 28, "arrival": {"time": "1694889875"}, "stopId": "15-Sep"}, {"stopSequence": 29, "arrival": {"time": "1694890619"}, "stopId": "15-Dec"}, {"stopSequence": 30, "arrival": {"time": "1694890770"}, "stopId": "38149"}, {"stopSequence": 31, "arrival": {"time": "1694890833"}, "stopId": "14-Feb"}, {"stopSequence": 32, "arrival": {"time": "1694890926"}, "stopId": "14-May"}, {"stopSequence": 33, "arrival": {"time": "1694890966"}, "stopId": "14-Jun"}, {"stopSequence": 34, "arrival": {"time": "1694891027"}, "stopId": "14-Aug"}, {"stopSequence": 35, "arrival": {"time": "1694891067"}, "stopId": "50024"}, {"stopSequence": 36, "arrival": {"time": "1694891209"}, "stopId": "14-12"}, {"stopSequence": 37, "arrival": {"time": "1694891233"}, "stopId": "14-13"}, {"stopSequence": 38, "arrival": {"time": "1694891336"}, "stopId": "14-15"}, {"stopSequence": 39, "arrival": {"time": "1694891358"}, "stopId": "14-16"}, {"stopSequence": 40, "arrival": {"time": "1694891416"}, "stopId": "14-18"}, {"stopSequence": 41, "arrival": {"time": "1694891528"}, "stopId": "13-Jan"}, {"stopSequence": 42, "arrival": {"time": "1694891580"}, "stopId": "13-Feb"}, {"stopSequence": 43, "arrival": {"time": "1694891611"}, "stopId": "28-Jan"}, {"stopSequence": 44, "arrival": {"time": "1694891672"}, "stopId": "12-3"}, {"stopSequence": 45, "arrival": {"time": "1694891773"}, "stopId": "12-Jan"}, {"stopSequence": 46, "arrival": {"time": "1694891823"}, "stopId": "12-Feb"}, {"stopSequence": 47, "arrival": {"time": "1694891896"}, "stopId": "7-Jan"}, {"stopSequence": 48, "arrival": {"time": "1694891964"}, "stopId": "7-Mar"}, {"stopSequence": 49, "arrival": {"time": "1694892152"}, "stopId": "7-Jun"}, {"stopSequence": 50, "arrival": {"time": "1694892240"}, "stopId": "7-Aug"}, {"stopSequence": 51, "arrival": {"time": "1694892344"}, "stopId": "6-Jan"}, {"stopSequence": 52, "arrival": {"time": "1694892454"}, "stopId": "6-Mar"}, {"stopSequence": 53, "arrival": {"time": "1694892615"}, "stopId": "6-May"}, {"stopSequence": 54, "arrival": {"time": "1694892863"}, "stopId": "6-Jul"}, {"stopSequence": 55, "arrival": {"time": "1694892960"}, "stopId": "6-Sep"}, {"stopSequence": 56, "arrival": {"time": "1694893132"}, "stopId": "6-Nov"}, {"stopSequence": 57, "arrival": {"time": "1694893316"}, "stopId": "6-Dec"}, {"stopSequence": 58, "arrival": {"time": "1694893486"}, "stopId": "Jun-14"}, {"stopSequence": 59, "arrival": {"time": "1694893810"}, "stopId": "Jun-17"}, {"stopSequence": 60, "arrival": {"time": "1694893992"}, "stopId": "Jun-19"}, {"stopSequence": 61, "arrival": {"time": "1694894119"}, "stopId": "Jun-20"}, {"stopSequence": 62, "arrival": {"time": "1694894262"}, "stopId": "Jun-22"}, {"stopSequence": 63, "arrival": {"time": "1694894418"}, "stopId": "Jun-24"}, {"stopSequence": 64, "arrival": {"time": "1694894648"}, "stopId": "Jun-25"}, {"stopSequence": 65, "arrival": {"time": "1694895343"}, "stopId": "5-Feb"}, {"stopSequence": 66, "arrival": {"time": "1694895634"}, "stopId": "1-Feb"}, {"stopSequence": 67, "arrival": {"time": "1694895812"}, "stopId": "1-Mar"}, {"stopSequence": 68, "arrival": {"time": "1694895982"}, "stopId": "1-Apr"}, {"stopSequence": 69, "arrival": {"time": "1694896128"}, "stopId": "1-May"}, {"stopSequence": 70, "arrival": {"time": "1694896311"}, "stopId": "1-Jun"}, {"stopSequence": 71, "arrival": {"time": "1694896544"}, "stopId": "1-Jul"}, {"stopSequence": 72, "arrival": {"time": "1694896689"}, "stopId": "1-Aug"}, {"stopSequence": 73, "arrival": {"time": "1694896857"}, "stopId": "1-Sep"}, {"stopSequence": 74, "arrival": {"time": "1694897136"}, "stopId": "1-Oct"}, {"stopSequence": 75, "arrival": {"time": "1694897373"}, "stopId": "1-Nov"}], "vehicle": {"licensePlate": "JRZZ57"}, "timestamp": "1694888984"}, "vehicle": {"trip": {"tripId": "9e911196-b-701ff27f-2", "startTime": "15:30:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "540", "directionId": 0}, "position": {"latitude": -36.638794, "longitude": -72.959206, "bearing": 192.0, "odometer": 0.0, "speed": 11.111111}, "timestamp": "1694888984", "vehicle": {"licensePlate": "JRZZ57"}}}, {"id": "20b39c49-c387-4ca5-b8ed-4e1bad57d901", "tripUpdate": {"trip": {"tripId": "7d76082a-c-701ff27f-2", "startTime": "15:22:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "540", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 41, "arrival": {"time": "1694889054"}, "stopId": "14-14"}, {"stopSequence": 42, "arrival": {"time": "1694889098"}, "stopId": "14-11"}, {"stopSequence": 43, "arrival": {"time": "1694889139"}, "stopId": "91162"}, {"stopSequence": 44, "arrival": {"time": "1694889230"}, "stopId": "50023"}, {"stopSequence": 45, "arrival": {"time": "1694889322"}, "stopId": "14-Jul"}, {"stopSequence": 46, "arrival": {"time": "1694889362"}, "stopId": "14-Apr"}, {"stopSequence": 47, "arrival": {"time": "1694889441"}, "stopId": "14-Mar"}, {"stopSequence": 48, "arrival": {"time": "1694889497"}, "stopId": "38151"}, {"stopSequence": 49, "arrival": {"time": "1694889641"}, "stopId": "15-13"}, {"stopSequence": 50, "arrival": {"time": "1694890234"}, "stopId": "15-Oct"}, {"stopSequence": 51, "arrival": {"time": "1694890506"}, "stopId": "15-Aug"}, {"stopSequence": 52, "arrival": {"time": "1694890605"}, "stopId": "15-Jun"}, {"stopSequence": 53, "arrival": {"time": "1694890650"}, "stopId": "15-Apr"}, {"stopSequence": 54, "arrival": {"time": "1694891604"}, "stopId": "16-Aug"}, {"stopSequence": 55, "arrival": {"time": "1694891755"}, "stopId": "16-May"}, {"stopSequence": 56, "arrival": {"time": "1694891822"}, "stopId": "16-Mar"}, {"stopSequence": 57, "arrival": {"time": "1694891885"}, "stopId": "16-Jan"}, {"stopSequence": 58, "arrival": {"time": "1694892002"}, "stopId": "27-Jan"}, {"stopSequence": 59, "arrival": {"time": "1694892056"}, "stopId": "17-Jan"}, {"stopSequence": 60, "arrival": {"time": "1694892358"}, "stopId": "18-Feb"}, {"stopSequence": 61, "arrival": {"time": "1694892769"}, "stopId": "19-Feb"}, {"stopSequence": 62, "arrival": {"time": "1694892948"}, "stopId": "20-Feb"}, {"stopSequence": 63, "arrival": {"time": "1694892998"}, "stopId": "20-Mar"}, {"stopSequence": 64, "arrival": {"time": "1694893099"}, "stopId": "20-Jun"}, {"stopSequence": 65, "arrival": {"time": "1694893205"}, "stopId": "20-Sep"}, {"stopSequence": 66, "arrival": {"time": "1694893375"}, "stopId": "20-Dec"}], "vehicle": {"licensePlate": "JXFY19"}, "timestamp": "1694889004"}, "vehicle": {"trip": {"tripId": "7d76082a-c-701ff27f-2", "startTime": "15:22:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "540", "directionId": 1}, "position": {"latitude": -36.72918, "longitude": -72.98026, "bearing": 40.0, "odometer": 0.0, "speed": 12.777778}, "timestamp": "1694889004", "vehicle": {"licensePlate": "JXFY19"}}}, {"id": "fde89fcf-e11d-4728-9aed-56ebc3e54c20", "tripUpdate": {"trip": {"tripId": "90ec6b89-b-701ff27f-2", "startTime": "15:42:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "540", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 23, "arrival": {"time": "1694889054"}, "stopId": "Jun-15"}, {"stopSequence": 24, "arrival": {"time": "1694889147"}, "stopId": "Jun-13"}, {"stopSequence": 25, "arrival": {"time": "1694889356"}, "stopId": "6-Oct"}, {"stopSequence": 26, "arrival": {"time": "1694889408"}, "stopId": "6-Aug"}, {"stopSequence": 27, "arrival": {"time": "1694889563"}, "stopId": "6-Jun"}, {"stopSequence": 28, "arrival": {"time": "1694889687"}, "stopId": "6-Feb"}, {"stopSequence": 29, "arrival": {"time": "1694889818"}, "stopId": "7-Jul"}, {"stopSequence": 30, "arrival": {"time": "1694889884"}, "stopId": "7-May"}, {"stopSequence": 31, "arrival": {"time": "1694889924"}, "stopId": "1508142"}, {"stopSequence": 32, "arrival": {"time": "1694890018"}, "stopId": "7-Feb"}, {"stopSequence": 33, "arrival": {"time": "1694890075"}, "stopId": "8-Jan"}, {"stopSequence": 34, "arrival": {"time": "1694890114"}, "stopId": "9-Jan"}, {"stopSequence": 35, "arrival": {"time": "1694890145"}, "stopId": "10-Apr"}, {"stopSequence": 36, "arrival": {"time": "1694890209"}, "stopId": "10-Jan"}, {"stopSequence": 37, "arrival": {"time": "1694890244"}, "stopId": "44863"}, {"stopSequence": 38, "arrival": {"time": "1694890280"}, "stopId": "10-Mar"}, {"stopSequence": 39, "arrival": {"time": "1694890326"}, "stopId": "11-Jan"}, {"stopSequence": 40, "arrival": {"time": "1694890466"}, "stopId": "14-17"}, {"stopSequence": 41, "arrival": {"time": "1694890596"}, "stopId": "14-14"}, {"stopSequence": 42, "arrival": {"time": "1694890637"}, "stopId": "14-11"}, {"stopSequence": 43, "arrival": {"time": "1694890676"}, "stopId": "91162"}, {"stopSequence": 44, "arrival": {"time": "1694890765"}, "stopId": "50023"}, {"stopSequence": 45, "arrival": {"time": "1694890858"}, "stopId": "14-Jul"}, {"stopSequence": 46, "arrival": {"time": "1694890899"}, "stopId": "14-Apr"}, {"stopSequence": 47, "arrival": {"time": "1694890981"}, "stopId": "14-Mar"}, {"stopSequence": 48, "arrival": {"time": "1694891041"}, "stopId": "38151"}, {"stopSequence": 49, "arrival": {"time": "1694891198"}, "stopId": "15-13"}, {"stopSequence": 50, "arrival": {"time": "1694891925"}, "stopId": "15-Oct"}, {"stopSequence": 51, "arrival": {"time": "1694892302"}, "stopId": "15-Aug"}, {"stopSequence": 52, "arrival": {"time": "1694892447"}, "stopId": "15-Jun"}, {"stopSequence": 53, "arrival": {"time": "1694892514"}, "stopId": "15-Apr"}, {"stopSequence": 54, "arrival": {"time": "1694894151"}, "stopId": "16-Aug"}, {"stopSequence": 55, "arrival": {"time": "1694894449"}, "stopId": "16-May"}, {"stopSequence": 56, "arrival": {"time": "1694894588"}, "stopId": "16-Mar"}, {"stopSequence": 57, "arrival": {"time": "1694894717"}, "stopId": "16-Jan"}, {"stopSequence": 58, "arrival": {"time": "1694894968"}, "stopId": "27-Jan"}, {"stopSequence": 59, "arrival": {"time": "1694895084"}, "stopId": "17-Jan"}, {"stopSequence": 60, "arrival": {"time": "1694895775"}, "stopId": "18-Feb"}, {"stopSequence": 61, "arrival": {"time": "1694896811"}, "stopId": "19-Feb"}, {"stopSequence": 62, "arrival": {"time": "1694897300"}, "stopId": "20-Feb"}, {"stopSequence": 63, "arrival": {"time": "1694897443"}, "stopId": "20-Mar"}, {"stopSequence": 64, "arrival": {"time": "1694897732"}, "stopId": "20-Jun"}, {"stopSequence": 65, "arrival": {"time": "1694898048"}, "stopId": "20-Sep"}, {"stopSequence": 66, "arrival": {"time": "1694898572"}, "stopId": "20-Dec"}], "vehicle": {"licensePlate": "JXFY20"}, "timestamp": "1694889004"}, "vehicle": {"trip": {"tripId": "90ec6b89-b-701ff27f-2", "startTime": "15:42:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "540", "directionId": 1}, "position": {"latitude": -36.78393, "longitude": -73.02169, "bearing": 18.0, "odometer": 0.0, "speed": 12.5}, "timestamp": "1694889004", "vehicle": {"licensePlate": "JXFY20"}}}, {"id": "41bfefdf-262e-4480-8d4a-a36bb393505e", "tripUpdate": {"trip": {"tripId": "2557141d-1-701ff27f-2", "startTime": "15:20:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "540", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 29, "arrival": {"time": "1694889716"}, "stopId": "15-Dec"}, {"stopSequence": 30, "arrival": {"time": "1694889861"}, "stopId": "38149"}, {"stopSequence": 31, "arrival": {"time": "1694889921"}, "stopId": "14-Feb"}, {"stopSequence": 32, "arrival": {"time": "1694890007"}, "stopId": "14-May"}, {"stopSequence": 33, "arrival": {"time": "1694890044"}, "stopId": "14-Jun"}, {"stopSequence": 34, "arrival": {"time": "1694890099"}, "stopId": "14-Aug"}, {"stopSequence": 35, "arrival": {"time": "1694890136"}, "stopId": "50024"}, {"stopSequence": 36, "arrival": {"time": "1694890261"}, "stopId": "14-12"}, {"stopSequence": 37, "arrival": {"time": "1694890282"}, "stopId": "14-13"}, {"stopSequence": 38, "arrival": {"time": "1694890372"}, "stopId": "14-15"}, {"stopSequence": 39, "arrival": {"time": "1694890391"}, "stopId": "14-16"}, {"stopSequence": 40, "arrival": {"time": "1694890441"}, "stopId": "14-18"}, {"stopSequence": 41, "arrival": {"time": "1694890536"}, "stopId": "13-Jan"}, {"stopSequence": 42, "arrival": {"time": "1694890579"}, "stopId": "13-Feb"}, {"stopSequence": 43, "arrival": {"time": "1694890605"}, "stopId": "28-Jan"}, {"stopSequence": 44, "arrival": {"time": "1694890655"}, "stopId": "12-3"}, {"stopSequence": 45, "arrival": {"time": "1694890738"}, "stopId": "12-Jan"}, {"stopSequence": 46, "arrival": {"time": "1694890778"}, "stopId": "12-Feb"}, {"stopSequence": 47, "arrival": {"time": "1694890837"}, "stopId": "7-Jan"}, {"stopSequence": 48, "arrival": {"time": "1694890891"}, "stopId": "7-Mar"}, {"stopSequence": 49, "arrival": {"time": "1694891037"}, "stopId": "7-Jun"}, {"stopSequence": 50, "arrival": {"time": "1694891105"}, "stopId": "7-Aug"}, {"stopSequence": 51, "arrival": {"time": "1694891184"}, "stopId": "6-Jan"}, {"stopSequence": 52, "arrival": {"time": "1694891266"}, "stopId": "6-Mar"}, {"stopSequence": 53, "arrival": {"time": "1694891385"}, "stopId": "6-May"}, {"stopSequence": 54, "arrival": {"time": "1694891563"}, "stopId": "6-Jul"}, {"stopSequence": 55, "arrival": {"time": "1694891632"}, "stopId": "6-Sep"}, {"stopSequence": 56, "arrival": {"time": "1694891752"}, "stopId": "6-Nov"}, {"stopSequence": 57, "arrival": {"time": "1694891878"}, "stopId": "6-Dec"}, {"stopSequence": 58, "arrival": {"time": "1694891993"}, "stopId": "Jun-14"}, {"stopSequence": 59, "arrival": {"time": "1694892206"}, "stopId": "Jun-17"}, {"stopSequence": 60, "arrival": {"time": "1694892323"}, "stopId": "Jun-19"}, {"stopSequence": 61, "arrival": {"time": "1694892403"}, "stopId": "Jun-20"}, {"stopSequence": 62, "arrival": {"time": "1694892492"}, "stopId": "Jun-22"}, {"stopSequence": 63, "arrival": {"time": "1694892589"}, "stopId": "Jun-24"}, {"stopSequence": 64, "arrival": {"time": "1694892728"}, "stopId": "Jun-25"}, {"stopSequence": 65, "arrival": {"time": "1694893134"}, "stopId": "5-Feb"}, {"stopSequence": 66, "arrival": {"time": "1694893297"}, "stopId": "1-Feb"}, {"stopSequence": 67, "arrival": {"time": "1694893395"}, "stopId": "1-Mar"}, {"stopSequence": 68, "arrival": {"time": "1694893488"}, "stopId": "1-Apr"}, {"stopSequence": 69, "arrival": {"time": "1694893566"}, "stopId": "1-May"}, {"stopSequence": 70, "arrival": {"time": "1694893663"}, "stopId": "1-Jun"}, {"stopSequence": 71, "arrival": {"time": "1694893785"}, "stopId": "1-Jul"}, {"stopSequence": 72, "arrival": {"time": "1694893860"}, "stopId": "1-Aug"}, {"stopSequence": 73, "arrival": {"time": "1694893945"}, "stopId": "1-Sep"}, {"stopSequence": 74, "arrival": {"time": "1694894084"}, "stopId": "1-Oct"}, {"stopSequence": 75, "arrival": {"time": "1694894201"}, "stopId": "1-Nov"}], "vehicle": {"licensePlate": "LBKD68"}, "timestamp": "1694889010"}, "vehicle": {"trip": {"tripId": "2557141d-1-701ff27f-2", "startTime": "15:20:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "540", "directionId": 0}, "position": {"latitude": -36.675457, "longitude": -72.95802, "bearing": 188.0, "odometer": 0.0, "speed": 11.388889}, "timestamp": "1694889010", "vehicle": {"licensePlate": "LBKD68"}}}, {"id": "e385a63b-95ad-4618-9b72-0dfda2d59291", "tripUpdate": {"trip": {"tripId": "6c343838-d-701ff27f-2", "startTime": "15:12:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "540", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 51, "arrival": {"time": "1694889243"}, "stopId": "15-Aug"}, {"stopSequence": 52, "arrival": {"time": "1694889344"}, "stopId": "15-Jun"}, {"stopSequence": 53, "arrival": {"time": "1694889389"}, "stopId": "15-Apr"}, {"stopSequence": 54, "arrival": {"time": "1694890246"}, "stopId": "16-Aug"}, {"stopSequence": 55, "arrival": {"time": "1694890366"}, "stopId": "16-May"}, {"stopSequence": 56, "arrival": {"time": "1694890420"}, "stopId": "16-Mar"}, {"stopSequence": 57, "arrival": {"time": "1694890468"}, "stopId": "16-Jan"}, {"stopSequence": 58, "arrival": {"time": "1694890557"}, "stopId": "27-Jan"}, {"stopSequence": 59, "arrival": {"time": "1694890597"}, "stopId": "17-Jan"}, {"stopSequence": 60, "arrival": {"time": "1694890817"}, "stopId": "18-Feb"}, {"stopSequence": 61, "arrival": {"time": "1694891100"}, "stopId": "19-Feb"}, {"stopSequence": 62, "arrival": {"time": "1694891217"}, "stopId": "20-Feb"}, {"stopSequence": 63, "arrival": {"time": "1694891250"}, "stopId": "20-Mar"}, {"stopSequence": 64, "arrival": {"time": "1694891315"}, "stopId": "20-Jun"}, {"stopSequence": 65, "arrival": {"time": "1694891382"}, "stopId": "20-Sep"}, {"stopSequence": 66, "arrival": {"time": "1694891487"}, "stopId": "20-Dec"}], "vehicle": {"licensePlate": "LJKK10"}, "timestamp": "1694889006"}, "vehicle": {"trip": {"tripId": "6c343838-d-701ff27f-2", "startTime": "15:12:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "540", "directionId": 1}, "position": {"latitude": -36.682274, "longitude": -72.95948, "bearing": 358.0, "odometer": 0.0, "speed": 11.944445}, "timestamp": "1694889006", "vehicle": {"licensePlate": "LJKK10"}}}, {"id": "a4e6b9ec-2795-4d15-998d-dfc3eaf47637", "tripUpdate": {"trip": {"tripId": "f4b6a532-2-701ff27f-2", "startTime": "15:52:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "540", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 11, "arrival": {"time": "1694889016"}, "stopId": "50033"}, {"stopSequence": 12, "arrival": {"time": "1694889055"}, "stopId": "39497"}, {"stopSequence": 13, "arrival": {"time": "1694889088"}, "stopId": "49407"}, {"stopSequence": 14, "arrival": {"time": "1694889144"}, "stopId": "50034"}, {"stopSequence": 15, "arrival": {"time": "1694889187"}, "stopId": "40903"}, {"stopSequence": 16, "arrival": {"time": "1694889245"}, "stopId": "50035"}, {"stopSequence": 17, "arrival": {"time": "1694889297"}, "stopId": "50036"}, {"stopSequence": 18, "arrival": {"time": "1694889528"}, "stopId": "50037"}, {"stopSequence": 19, "arrival": {"time": "1694889670"}, "stopId": "50038"}, {"stopSequence": 20, "arrival": {"time": "1694889738"}, "stopId": "50039"}, {"stopSequence": 21, "arrival": {"time": "1694889799"}, "stopId": "50040"}, {"stopSequence": 22, "arrival": {"time": "1694889882"}, "stopId": "50041"}, {"stopSequence": 23, "arrival": {"time": "1694890022"}, "stopId": "Jun-15"}, {"stopSequence": 24, "arrival": {"time": "1694890107"}, "stopId": "Jun-13"}, {"stopSequence": 25, "arrival": {"time": "1694890305"}, "stopId": "6-Oct"}, {"stopSequence": 26, "arrival": {"time": "1694890355"}, "stopId": "6-Aug"}, {"stopSequence": 27, "arrival": {"time": "1694890508"}, "stopId": "6-Jun"}, {"stopSequence": 28, "arrival": {"time": "1694890633"}, "stopId": "6-Feb"}, {"stopSequence": 29, "arrival": {"time": "1694890769"}, "stopId": "7-Jul"}, {"stopSequence": 30, "arrival": {"time": "1694890840"}, "stopId": "7-May"}, {"stopSequence": 31, "arrival": {"time": "1694890883"}, "stopId": "1508142"}, {"stopSequence": 32, "arrival": {"time": "1694890984"}, "stopId": "7-Feb"}, {"stopSequence": 33, "arrival": {"time": "1694891046"}, "stopId": "8-Jan"}, {"stopSequence": 34, "arrival": {"time": "1694891089"}, "stopId": "9-Jan"}, {"stopSequence": 35, "arrival": {"time": "1694891124"}, "stopId": "10-Apr"}, {"stopSequence": 36, "arrival": {"time": "1694891195"}, "stopId": "10-Jan"}, {"stopSequence": 37, "arrival": {"time": "1694891235"}, "stopId": "44863"}, {"stopSequence": 38, "arrival": {"time": "1694891277"}, "stopId": "10-Mar"}, {"stopSequence": 39, "arrival": {"time": "1694891330"}, "stopId": "11-Jan"}, {"stopSequence": 40, "arrival": {"time": "1694891493"}, "stopId": "14-17"}, {"stopSequence": 41, "arrival": {"time": "1694891648"}, "stopId": "14-14"}, {"stopSequence": 42, "arrival": {"time": "1694891699"}, "stopId": "14-11"}, {"stopSequence": 43, "arrival": {"time": "1694891746"}, "stopId": "91162"}, {"stopSequence": 44, "arrival": {"time": "1694891856"}, "stopId": "50023"}, {"stopSequence": 45, "arrival": {"time": "1694891972"}, "stopId": "14-Jul"}, {"stopSequence": 46, "arrival": {"time": "1694892024"}, "stopId": "14-Apr"}, {"stopSequence": 47, "arrival": {"time": "1694892129"}, "stopId": "14-Mar"}, {"stopSequence": 48, "arrival": {"time": "1694892207"}, "stopId": "38151"}, {"stopSequence": 49, "arrival": {"time": "1694892414"}, "stopId": "15-13"}, {"stopSequence": 50, "arrival": {"time": "1694893441"}, "stopId": "15-Oct"}, {"stopSequence": 51, "arrival": {"time": "1694894020"}, "stopId": "15-Aug"}, {"stopSequence": 52, "arrival": {"time": "1694894250"}, "stopId": "15-Jun"}, {"stopSequence": 53, "arrival": {"time": "1694894358"}, "stopId": "15-Apr"}, {"stopSequence": 54, "arrival": {"time": "1694897356"}, "stopId": "16-Aug"}, {"stopSequence": 55, "arrival": {"time": "1694897983"}, "stopId": "16-May"}, {"stopSequence": 56, "arrival": {"time": "1694898285"}, "stopId": "16-Mar"}, {"stopSequence": 57, "arrival": {"time": "1694898571"}, "stopId": "16-Jan"}, {"stopSequence": 58, "arrival": {"time": "1694899142"}, "stopId": "27-Jan"}, {"stopSequence": 59, "arrival": {"time": "1694899415"}, "stopId": "17-Jan"}, {"stopSequence": 60, "arrival": {"time": "1694901140"}, "stopId": "18-Feb"}, {"stopSequence": 61, "arrival": {"time": "1694904123"}, "stopId": "19-Feb"}, {"stopSequence": 62, "arrival": {"time": "1694905725"}, "stopId": "20-Feb"}, {"stopSequence": 63, "arrival": {"time": "1694906221"}, "stopId": "20-Mar"}, {"stopSequence": 64, "arrival": {"time": "1694907266"}, "stopId": "20-Jun"}, {"stopSequence": 65, "arrival": {"time": "1694908473"}, "stopId": "20-Sep"}, {"stopSequence": 66, "arrival": {"time": "1694910652"}, "stopId": "20-Dec"}], "vehicle": {"licensePlate": "LJKK11"}, "timestamp": "1694889014"}, "vehicle": {"trip": {"tripId": "f4b6a532-2-701ff27f-2", "startTime": "15:52:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "540", "directionId": 1}, "position": {"latitude": -36.824, "longitude": -73.03664, "bearing": 12.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889014", "vehicle": {"licensePlate": "LJKK11"}}}, {"id": "36071446-42b7-4a20-a63d-e286f01b1fa2", "tripUpdate": {"trip": {"tripId": "101b6e55-5-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "540", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 45, "arrival": {"time": "1694888995"}, "stopId": "12-Jan"}, {"stopSequence": 46, "arrival": {"time": "1694889037"}, "stopId": "12-Feb"}, {"stopSequence": 47, "arrival": {"time": "1694889098"}, "stopId": "7-Jan"}, {"stopSequence": 48, "arrival": {"time": "1694889152"}, "stopId": "7-Mar"}, {"stopSequence": 49, "arrival": {"time": "1694889295"}, "stopId": "7-Jun"}, {"stopSequence": 50, "arrival": {"time": "1694889360"}, "stopId": "7-Aug"}, {"stopSequence": 51, "arrival": {"time": "1694889433"}, "stopId": "6-Jan"}, {"stopSequence": 52, "arrival": {"time": "1694889507"}, "stopId": "6-Mar"}, {"stopSequence": 53, "arrival": {"time": "1694889611"}, "stopId": "6-May"}, {"stopSequence": 54, "arrival": {"time": "1694889761"}, "stopId": "6-Jul"}, {"stopSequence": 55, "arrival": {"time": "1694889817"}, "stopId": "6-Sep"}, {"stopSequence": 56, "arrival": {"time": "1694889912"}, "stopId": "6-Nov"}, {"stopSequence": 57, "arrival": {"time": "1694890009"}, "stopId": "6-Dec"}, {"stopSequence": 58, "arrival": {"time": "1694890094"}, "stopId": "Jun-14"}, {"stopSequence": 59, "arrival": {"time": "1694890247"}, "stopId": "Jun-17"}, {"stopSequence": 60, "arrival": {"time": "1694890328"}, "stopId": "Jun-19"}, {"stopSequence": 61, "arrival": {"time": "1694890382"}, "stopId": "Jun-20"}, {"stopSequence": 62, "arrival": {"time": "1694890441"}, "stopId": "Jun-22"}, {"stopSequence": 63, "arrival": {"time": "1694890504"}, "stopId": "Jun-24"}, {"stopSequence": 64, "arrival": {"time": "1694890593"}, "stopId": "Jun-25"}, {"stopSequence": 65, "arrival": {"time": "1694890837"}, "stopId": "5-Feb"}, {"stopSequence": 66, "arrival": {"time": "1694890931"}, "stopId": "1-Feb"}, {"stopSequence": 67, "arrival": {"time": "1694890985"}, "stopId": "1-Mar"}, {"stopSequence": 68, "arrival": {"time": "1694891036"}, "stopId": "1-Apr"}, {"stopSequence": 69, "arrival": {"time": "1694891079"}, "stopId": "1-May"}, {"stopSequence": 70, "arrival": {"time": "1694891130"}, "stopId": "1-Jun"}, {"stopSequence": 71, "arrival": {"time": "1694891194"}, "stopId": "1-Jul"}, {"stopSequence": 72, "arrival": {"time": "1694891233"}, "stopId": "1-Aug"}, {"stopSequence": 73, "arrival": {"time": "1694891276"}, "stopId": "1-Sep"}, {"stopSequence": 74, "arrival": {"time": "1694891346"}, "stopId": "1-Oct"}, {"stopSequence": 75, "arrival": {"time": "1694891403"}, "stopId": "1-Nov"}], "vehicle": {"licensePlate": "LJKK45"}, "timestamp": "1694888994"}, "vehicle": {"trip": {"tripId": "101b6e55-5-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "540", "directionId": 0}, "position": {"latitude": -36.73823, "longitude": -72.99746, "bearing": 246.0, "odometer": 0.0, "speed": 10.277778}, "timestamp": "1694888994", "vehicle": {"licensePlate": "LJKK45"}}}, {"id": "6bb13bc0-1071-488d-929d-8f63b7d1ceff", "tripUpdate": {"trip": {"tripId": "b1e159c9-2-701ff27f-2", "startTime": "14:32:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "540", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 17, "arrival": {"time": "1694889029"}, "stopId": "50036"}, {"stopSequence": 18, "arrival": {"time": "1694889269"}, "stopId": "50037"}, {"stopSequence": 19, "arrival": {"time": "1694889415"}, "stopId": "50038"}, {"stopSequence": 20, "arrival": {"time": "1694889484"}, "stopId": "50039"}, {"stopSequence": 21, "arrival": {"time": "1694889546"}, "stopId": "50040"}, {"stopSequence": 22, "arrival": {"time": "1694889631"}, "stopId": "50041"}, {"stopSequence": 23, "arrival": {"time": "1694889772"}, "stopId": "Jun-15"}, {"stopSequence": 24, "arrival": {"time": "1694889857"}, "stopId": "Jun-13"}, {"stopSequence": 25, "arrival": {"time": "1694890054"}, "stopId": "6-Oct"}, {"stopSequence": 26, "arrival": {"time": "1694890104"}, "stopId": "6-Aug"}, {"stopSequence": 27, "arrival": {"time": "1694890255"}, "stopId": "6-Jun"}, {"stopSequence": 28, "arrival": {"time": "1694890378"}, "stopId": "6-Feb"}, {"stopSequence": 29, "arrival": {"time": "1694890510"}, "stopId": "7-Jul"}, {"stopSequence": 30, "arrival": {"time": "1694890579"}, "stopId": "7-May"}, {"stopSequence": 31, "arrival": {"time": "1694890620"}, "stopId": "1508142"}, {"stopSequence": 32, "arrival": {"time": "1694890719"}, "stopId": "7-Feb"}, {"stopSequence": 33, "arrival": {"time": "1694890778"}, "stopId": "8-Jan"}, {"stopSequence": 34, "arrival": {"time": "1694890819"}, "stopId": "9-Jan"}, {"stopSequence": 35, "arrival": {"time": "1694890853"}, "stopId": "10-Apr"}, {"stopSequence": 36, "arrival": {"time": "1694890921"}, "stopId": "10-Jan"}, {"stopSequence": 37, "arrival": {"time": "1694890959"}, "stopId": "44863"}, {"stopSequence": 38, "arrival": {"time": "1694890999"}, "stopId": "10-Mar"}, {"stopSequence": 39, "arrival": {"time": "1694891050"}, "stopId": "11-Jan"}, {"stopSequence": 40, "arrival": {"time": "1694891204"}, "stopId": "14-17"}, {"stopSequence": 41, "arrival": {"time": "1694891351"}, "stopId": "14-14"}, {"stopSequence": 42, "arrival": {"time": "1694891398"}, "stopId": "14-11"}, {"stopSequence": 43, "arrival": {"time": "1694891443"}, "stopId": "91162"}, {"stopSequence": 44, "arrival": {"time": "1694891545"}, "stopId": "50023"}, {"stopSequence": 45, "arrival": {"time": "1694891654"}, "stopId": "14-Jul"}, {"stopSequence": 46, "arrival": {"time": "1694891703"}, "stopId": "14-Apr"}, {"stopSequence": 47, "arrival": {"time": "1694891800"}, "stopId": "14-Mar"}, {"stopSequence": 48, "arrival": {"time": "1694891872"}, "stopId": "38151"}, {"stopSequence": 49, "arrival": {"time": "1694892063"}, "stopId": "15-13"}, {"stopSequence": 50, "arrival": {"time": "1694892992"}, "stopId": "15-Oct"}, {"stopSequence": 51, "arrival": {"time": "1694893505"}, "stopId": "15-Aug"}, {"stopSequence": 52, "arrival": {"time": "1694893707"}, "stopId": "15-Jun"}, {"stopSequence": 53, "arrival": {"time": "1694893801"}, "stopId": "15-Apr"}, {"stopSequence": 54, "arrival": {"time": "1694896327"}, "stopId": "16-Aug"}, {"stopSequence": 55, "arrival": {"time": "1694896835"}, "stopId": "16-May"}, {"stopSequence": 56, "arrival": {"time": "1694897076"}, "stopId": "16-Mar"}, {"stopSequence": 57, "arrival": {"time": "1694897303"}, "stopId": "16-Jan"}, {"stopSequence": 58, "arrival": {"time": "1694897754"}, "stopId": "27-Jan"}, {"stopSequence": 59, "arrival": {"time": "1694897967"}, "stopId": "17-Jan"}, {"stopSequence": 60, "arrival": {"time": "1694899287"}, "stopId": "18-Feb"}, {"stopSequence": 61, "arrival": {"time": "1694901462"}, "stopId": "19-Feb"}, {"stopSequence": 62, "arrival": {"time": "1694902577"}, "stopId": "20-Feb"}, {"stopSequence": 63, "arrival": {"time": "1694902916"}, "stopId": "20-Mar"}, {"stopSequence": 64, "arrival": {"time": "1694903617"}, "stopId": "20-Jun"}, {"stopSequence": 65, "arrival": {"time": "1694904411"}, "stopId": "20-Sep"}, {"stopSequence": 66, "arrival": {"time": "1694905798"}, "stopId": "20-Dec"}], "vehicle": {"licensePlate": "RVXG36"}, "timestamp": "1694888988"}, "vehicle": {"trip": {"tripId": "b1e159c9-2-701ff27f-2", "startTime": "14:32:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "540", "directionId": 1}, "position": {"latitude": -36.814827, "longitude": -73.03091, "bearing": 40.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888988", "vehicle": {"licensePlate": "RVXG36"}}}, {"id": "1f90e88d-c378-4383-b26f-04a5819a8173", "tripUpdate": {"trip": {"tripId": "7d120aea-c-701ff27f-2", "startTime": "15:40:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "540", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 18, "arrival": {"time": "1694888915"}, "stopId": "50042"}, {"stopSequence": 19, "arrival": {"time": "1694889039"}, "stopId": "16-Feb"}, {"stopSequence": 20, "arrival": {"time": "1694889096"}, "stopId": "16-4"}, {"stopSequence": 21, "arrival": {"time": "1694889196"}, "stopId": "16-Jun"}, {"stopSequence": 22, "arrival": {"time": "1694889256"}, "stopId": "16-Jul"}, {"stopSequence": 23, "arrival": {"time": "1694889298"}, "stopId": "15-Jan"}, {"stopSequence": 24, "arrival": {"time": "1694889946"}, "stopId": "15-Feb"}, {"stopSequence": 25, "arrival": {"time": "1694890080"}, "stopId": "15-Mar"}, {"stopSequence": 26, "arrival": {"time": "1694890114"}, "stopId": "15-May"}, {"stopSequence": 27, "arrival": {"time": "1694890169"}, "stopId": "15-Jul"}, {"stopSequence": 28, "arrival": {"time": "1694890254"}, "stopId": "15-Sep"}, {"stopSequence": 29, "arrival": {"time": "1694891032"}, "stopId": "15-Dec"}, {"stopSequence": 30, "arrival": {"time": "1694891196"}, "stopId": "38149"}, {"stopSequence": 31, "arrival": {"time": "1694891266"}, "stopId": "14-Feb"}, {"stopSequence": 32, "arrival": {"time": "1694891369"}, "stopId": "14-May"}, {"stopSequence": 33, "arrival": {"time": "1694891414"}, "stopId": "14-Jun"}, {"stopSequence": 34, "arrival": {"time": "1694891482"}, "stopId": "14-Aug"}, {"stopSequence": 35, "arrival": {"time": "1694891527"}, "stopId": "50024"}, {"stopSequence": 36, "arrival": {"time": "1694891686"}, "stopId": "14-12"}, {"stopSequence": 37, "arrival": {"time": "1694891714"}, "stopId": "14-13"}, {"stopSequence": 38, "arrival": {"time": "1694891832"}, "stopId": "14-15"}, {"stopSequence": 39, "arrival": {"time": "1694891857"}, "stopId": "14-16"}, {"stopSequence": 40, "arrival": {"time": "1694891923"}, "stopId": "14-18"}, {"stopSequence": 41, "arrival": {"time": "1694892054"}, "stopId": "13-Jan"}, {"stopSequence": 42, "arrival": {"time": "1694892115"}, "stopId": "13-Feb"}, {"stopSequence": 43, "arrival": {"time": "1694892150"}, "stopId": "28-Jan"}, {"stopSequence": 44, "arrival": {"time": "1694892222"}, "stopId": "12-3"}, {"stopSequence": 45, "arrival": {"time": "1694892341"}, "stopId": "12-Jan"}, {"stopSequence": 46, "arrival": {"time": "1694892400"}, "stopId": "12-Feb"}, {"stopSequence": 47, "arrival": {"time": "1694892488"}, "stopId": "7-Jan"}, {"stopSequence": 48, "arrival": {"time": "1694892569"}, "stopId": "7-Mar"}, {"stopSequence": 49, "arrival": {"time": "1694892795"}, "stopId": "7-Jun"}, {"stopSequence": 50, "arrival": {"time": "1694892903"}, "stopId": "7-Aug"}, {"stopSequence": 51, "arrival": {"time": "1694893031"}, "stopId": "6-Jan"}, {"stopSequence": 52, "arrival": {"time": "1694893167"}, "stopId": "6-Mar"}, {"stopSequence": 53, "arrival": {"time": "1694893367"}, "stopId": "6-May"}, {"stopSequence": 54, "arrival": {"time": "1694893681"}, "stopId": "6-Jul"}, {"stopSequence": 55, "arrival": {"time": "1694893805"}, "stopId": "6-Sep"}, {"stopSequence": 56, "arrival": {"time": "1694894027"}, "stopId": "6-Nov"}, {"stopSequence": 57, "arrival": {"time": "1694894267"}, "stopId": "6-Dec"}, {"stopSequence": 58, "arrival": {"time": "1694894491"}, "stopId": "Jun-14"}, {"stopSequence": 59, "arrival": {"time": "1694894925"}, "stopId": "Jun-17"}, {"stopSequence": 60, "arrival": {"time": "1694895173"}, "stopId": "Jun-19"}, {"stopSequence": 61, "arrival": {"time": "1694895347"}, "stopId": "Jun-20"}, {"stopSequence": 62, "arrival": {"time": "1694895545"}, "stopId": "Jun-22"}, {"stopSequence": 63, "arrival": {"time": "1694895764"}, "stopId": "Jun-24"}, {"stopSequence": 64, "arrival": {"time": "1694896090"}, "stopId": "Jun-25"}, {"stopSequence": 65, "arrival": {"time": "1694897102"}, "stopId": "5-Feb"}, {"stopSequence": 66, "arrival": {"time": "1694897539"}, "stopId": "1-Feb"}, {"stopSequence": 67, "arrival": {"time": "1694897810"}, "stopId": "1-Mar"}, {"stopSequence": 68, "arrival": {"time": "1694898072"}, "stopId": "1-Apr"}, {"stopSequence": 69, "arrival": {"time": "1694898299"}, "stopId": "1-May"}, {"stopSequence": 70, "arrival": {"time": "1694898587"}, "stopId": "1-Jun"}, {"stopSequence": 71, "arrival": {"time": "1694898959"}, "stopId": "1-Jul"}, {"stopSequence": 72, "arrival": {"time": "1694899193"}, "stopId": "1-Aug"}, {"stopSequence": 73, "arrival": {"time": "1694899465"}, "stopId": "1-Sep"}, {"stopSequence": 74, "arrival": {"time": "1694899927"}, "stopId": "1-Oct"}, {"stopSequence": 75, "arrival": {"time": "1694900325"}, "stopId": "1-Nov"}], "vehicle": {"licensePlate": "SKZP29"}, "timestamp": "1694888894"}, "vehicle": {"trip": {"tripId": "7d120aea-c-701ff27f-2", "startTime": "15:40:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "540", "directionId": 0}, "position": {"latitude": -36.61756, "longitude": -72.958084, "bearing": 170.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888894", "vehicle": {"licensePlate": "SKZP29"}}}, {"id": "5ec13397-2b9a-48a9-b05d-d549de9badea", "tripUpdate": {"trip": {"tripId": "94761076-e-701ff27f-2", "startTime": "14:02:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "541", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 60, "arrival": {"time": "1694889407"}, "stopId": "23-Jan"}, {"stopSequence": 61, "arrival": {"time": "1694889645"}, "stopId": "24-14"}, {"stopSequence": 62, "arrival": {"time": "1694890527"}, "stopId": "24-May"}, {"stopSequence": 63, "arrival": {"time": "1694890606"}, "stopId": "24-Apr"}, {"stopSequence": 64, "arrival": {"time": "1694890828"}, "stopId": "24-Feb"}, {"stopSequence": 65, "arrival": {"time": "1694890907"}, "stopId": "24-Jan"}, {"stopSequence": 66, "arrival": {"time": "1694890970"}, "stopId": "25-2"}, {"stopSequence": 67, "arrival": {"time": "1694891009"}, "stopId": "29-9"}, {"stopSequence": 68, "arrival": {"time": "1694891046"}, "stopId": "30-1"}, {"stopSequence": 69, "arrival": {"time": "1694891141"}, "stopId": "26-Jan"}, {"stopSequence": 70, "arrival": {"time": "1694891264"}, "stopId": "26-Feb"}, {"stopSequence": 71, "arrival": {"time": "1694891305"}, "stopId": "26-3"}, {"stopSequence": 72, "arrival": {"time": "1694891340"}, "stopId": "29-6"}, {"stopSequence": 73, "arrival": {"time": "1694891417"}, "stopId": "29-7"}, {"stopSequence": 74, "arrival": {"time": "1694891564"}, "stopId": "29-8"}], "vehicle": {"licensePlate": "HYCZ74"}, "timestamp": "1694888924"}, "vehicle": {"trip": {"tripId": "94761076-e-701ff27f-2", "startTime": "14:02:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "541", "directionId": 1}, "position": {"latitude": -36.618504, "longitude": -72.95585, "bearing": 72.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888924", "vehicle": {"licensePlate": "HYCZ74"}}}, {"id": "3b838b19-462f-4d97-aafe-e8012ed9305d", "tripUpdate": {"trip": {"tripId": "d3f89e8a-6-701ff27f-2", "startTime": "16:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "541", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 18, "arrival": {"time": "1694888988"}, "stopId": "24-13"}, {"stopSequence": 19, "arrival": {"time": "1694889406"}, "stopId": "22-Jan"}, {"stopSequence": 20, "arrival": {"time": "1694889648"}, "stopId": "18-Feb"}, {"stopSequence": 21, "arrival": {"time": "1694889698"}, "stopId": "18-Mar"}, {"stopSequence": 22, "arrival": {"time": "1694889758"}, "stopId": "50042"}, {"stopSequence": 23, "arrival": {"time": "1694889872"}, "stopId": "16-Feb"}, {"stopSequence": 24, "arrival": {"time": "1694889925"}, "stopId": "16-4"}, {"stopSequence": 25, "arrival": {"time": "1694890019"}, "stopId": "16-Jun"}, {"stopSequence": 26, "arrival": {"time": "1694890073"}, "stopId": "16-Jul"}, {"stopSequence": 27, "arrival": {"time": "1694890116"}, "stopId": "15-Jan"}, {"stopSequence": 28, "arrival": {"time": "1694890776"}, "stopId": "15-Feb"}, {"stopSequence": 29, "arrival": {"time": "1694890925"}, "stopId": "15-Mar"}, {"stopSequence": 30, "arrival": {"time": "1694890954"}, "stopId": "15-May"}, {"stopSequence": 31, "arrival": {"time": "1694891005"}, "stopId": "15-Jul"}, {"stopSequence": 32, "arrival": {"time": "1694891100"}, "stopId": "15-Sep"}, {"stopSequence": 33, "arrival": {"time": "1694892015"}, "stopId": "15-Dec"}, {"stopSequence": 34, "arrival": {"time": "1694892217"}, "stopId": "38149"}, {"stopSequence": 35, "arrival": {"time": "1694892305"}, "stopId": "14-Feb"}, {"stopSequence": 36, "arrival": {"time": "1694892434"}, "stopId": "14-May"}, {"stopSequence": 37, "arrival": {"time": "1694892492"}, "stopId": "14-Jun"}, {"stopSequence": 38, "arrival": {"time": "1694892580"}, "stopId": "14-Aug"}, {"stopSequence": 39, "arrival": {"time": "1694892637"}, "stopId": "50024"}, {"stopSequence": 40, "arrival": {"time": "1694892847"}, "stopId": "14-12"}, {"stopSequence": 41, "arrival": {"time": "1694892883"}, "stopId": "14-13"}, {"stopSequence": 42, "arrival": {"time": "1694893041"}, "stopId": "14-15"}, {"stopSequence": 43, "arrival": {"time": "1694893075"}, "stopId": "14-16"}, {"stopSequence": 44, "arrival": {"time": "1694893174"}, "stopId": "14-18"}, {"stopSequence": 45, "arrival": {"time": "1694893343"}, "stopId": "13-Jan"}, {"stopSequence": 46, "arrival": {"time": "1694893442"}, "stopId": "13-Feb"}, {"stopSequence": 47, "arrival": {"time": "1694893476"}, "stopId": "28-Jan"}, {"stopSequence": 48, "arrival": {"time": "1694893577"}, "stopId": "12-3"}, {"stopSequence": 49, "arrival": {"time": "1694893745"}, "stopId": "12-Jan"}, {"stopSequence": 50, "arrival": {"time": "1694893839"}, "stopId": "12-Feb"}, {"stopSequence": 51, "arrival": {"time": "1694893955"}, "stopId": "7-Jan"}, {"stopSequence": 52, "arrival": {"time": "1694894073"}, "stopId": "7-Mar"}, {"stopSequence": 53, "arrival": {"time": "1694894407"}, "stopId": "7-Jun"}, {"stopSequence": 54, "arrival": {"time": "1694894566"}, "stopId": "7-Aug"}, {"stopSequence": 55, "arrival": {"time": "1694894761"}, "stopId": "6-Jan"}, {"stopSequence": 56, "arrival": {"time": "1694894970"}, "stopId": "6-Mar"}, {"stopSequence": 57, "arrival": {"time": "1694895284"}, "stopId": "6-May"}, {"stopSequence": 58, "arrival": {"time": "1694895789"}, "stopId": "6-Jul"}, {"stopSequence": 59, "arrival": {"time": "1694895994"}, "stopId": "6-Sep"}, {"stopSequence": 60, "arrival": {"time": "1694896343"}, "stopId": "6-Nov"}, {"stopSequence": 61, "arrival": {"time": "1694896805"}, "stopId": "6-Dec"}, {"stopSequence": 62, "arrival": {"time": "1694897217"}, "stopId": "Jun-14"}, {"stopSequence": 63, "arrival": {"time": "1694897966"}, "stopId": "Jun-17"}, {"stopSequence": 64, "arrival": {"time": "1694898480"}, "stopId": "Jun-19"}, {"stopSequence": 65, "arrival": {"time": "1694898797"}, "stopId": "Jun-20"}, {"stopSequence": 66, "arrival": {"time": "1694899196"}, "stopId": "Jun-22"}, {"stopSequence": 67, "arrival": {"time": "1694899658"}, "stopId": "Jun-24"}, {"stopSequence": 68, "arrival": {"time": "1694900345"}, "stopId": "Jun-25"}, {"stopSequence": 69, "arrival": {"time": "1694902557"}, "stopId": "5-Feb"}, {"stopSequence": 70, "arrival": {"time": "1694903626"}, "stopId": "1-Feb"}, {"stopSequence": 71, "arrival": {"time": "1694904320"}, "stopId": "1-Mar"}, {"stopSequence": 72, "arrival": {"time": "1694905011"}, "stopId": "1-Apr"}, {"stopSequence": 73, "arrival": {"time": "1694905629"}, "stopId": "1-May"}, {"stopSequence": 74, "arrival": {"time": "1694906439"}, "stopId": "1-Jun"}, {"stopSequence": 75, "arrival": {"time": "1694907531"}, "stopId": "1-Jul"}, {"stopSequence": 76, "arrival": {"time": "1694908245"}, "stopId": "1-Aug"}, {"stopSequence": 77, "arrival": {"time": "1694909106"}, "stopId": "1-Sep"}, {"stopSequence": 78, "arrival": {"time": "1694910641"}, "stopId": "1-Oct"}, {"stopSequence": 79, "arrival": {"time": "1694912049"}, "stopId": "1-Nov"}], "vehicle": {"licensePlate": "JJJC37"}, "timestamp": "1694888978"}, "vehicle": {"trip": {"tripId": "d3f89e8a-6-701ff27f-2", "startTime": "16:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "541", "directionId": 0}, "position": {"latitude": -36.596355, "longitude": -72.95232, "bearing": 158.0, "odometer": 0.0, "speed": 10.555555}, "timestamp": "1694888978", "vehicle": {"licensePlate": "JJJC37"}}}, {"id": "f32ebfb3-31bb-44f9-8f81-0506217d7149", "tripUpdate": {"trip": {"tripId": "e07d182b-0-701ff27f-2", "startTime": "15:02:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "541", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 4, "arrival": {"time": "1694889075"}, "stopId": "2-Apr"}, {"stopSequence": 5, "arrival": {"time": "1694889210"}, "stopId": "3-1"}, {"stopSequence": 6, "arrival": {"time": "1694889262"}, "stopId": "50030"}, {"stopSequence": 7, "arrival": {"time": "1694889314"}, "stopId": "3-Mar"}, {"stopSequence": 8, "arrival": {"time": "1694889364"}, "stopId": "50031"}, {"stopSequence": 9, "arrival": {"time": "1694889414"}, "stopId": "50032"}, {"stopSequence": 10, "arrival": {"time": "1694889450"}, "stopId": "39495"}, {"stopSequence": 11, "arrival": {"time": "1694889543"}, "stopId": "50033"}, {"stopSequence": 12, "arrival": {"time": "1694889580"}, "stopId": "39497"}, {"stopSequence": 13, "arrival": {"time": "1694889610"}, "stopId": "49407"}, {"stopSequence": 14, "arrival": {"time": "1694889662"}, "stopId": "50034"}, {"stopSequence": 15, "arrival": {"time": "1694889703"}, "stopId": "40903"}, {"stopSequence": 16, "arrival": {"time": "1694889757"}, "stopId": "50035"}, {"stopSequence": 17, "arrival": {"time": "1694889806"}, "stopId": "50036"}, {"stopSequence": 18, "arrival": {"time": "1694890029"}, "stopId": "50037"}, {"stopSequence": 19, "arrival": {"time": "1694890169"}, "stopId": "50038"}, {"stopSequence": 20, "arrival": {"time": "1694890236"}, "stopId": "50039"}, {"stopSequence": 21, "arrival": {"time": "1694890297"}, "stopId": "50040"}, {"stopSequence": 22, "arrival": {"time": "1694890381"}, "stopId": "50041"}, {"stopSequence": 23, "arrival": {"time": "1694890523"}, "stopId": "Jun-15"}, {"stopSequence": 24, "arrival": {"time": "1694890611"}, "stopId": "Jun-13"}, {"stopSequence": 25, "arrival": {"time": "1694890818"}, "stopId": "6-Oct"}, {"stopSequence": 26, "arrival": {"time": "1694890871"}, "stopId": "6-Aug"}, {"stopSequence": 27, "arrival": {"time": "1694891034"}, "stopId": "6-Jun"}, {"stopSequence": 28, "arrival": {"time": "1694891170"}, "stopId": "6-Feb"}, {"stopSequence": 29, "arrival": {"time": "1694891319"}, "stopId": "7-Jul"}, {"stopSequence": 30, "arrival": {"time": "1694891397"}, "stopId": "7-May"}, {"stopSequence": 31, "arrival": {"time": "1694891444"}, "stopId": "1508142"}, {"stopSequence": 32, "arrival": {"time": "1694891558"}, "stopId": "7-Feb"}, {"stopSequence": 33, "arrival": {"time": "1694891628"}, "stopId": "8-Jan"}, {"stopSequence": 34, "arrival": {"time": "1694891676"}, "stopId": "9-Jan"}, {"stopSequence": 35, "arrival": {"time": "1694891716"}, "stopId": "10-Apr"}, {"stopSequence": 36, "arrival": {"time": "1694891798"}, "stopId": "10-Jan"}, {"stopSequence": 37, "arrival": {"time": "1694891843"}, "stopId": "44863"}, {"stopSequence": 38, "arrival": {"time": "1694891891"}, "stopId": "10-Mar"}, {"stopSequence": 39, "arrival": {"time": "1694891955"}, "stopId": "11-Jan"}, {"stopSequence": 40, "arrival": {"time": "1694892141"}, "stopId": "14-17"}, {"stopSequence": 41, "arrival": {"time": "1694892324"}, "stopId": "14-14"}, {"stopSequence": 42, "arrival": {"time": "1694892385"}, "stopId": "14-11"}, {"stopSequence": 43, "arrival": {"time": "1694892442"}, "stopId": "91162"}, {"stopSequence": 44, "arrival": {"time": "1694892573"}, "stopId": "50023"}, {"stopSequence": 45, "arrival": {"time": "1694892714"}, "stopId": "14-Jul"}, {"stopSequence": 46, "arrival": {"time": "1694892788"}, "stopId": "14-Apr"}, {"stopSequence": 47, "arrival": {"time": "1694892908"}, "stopId": "14-Mar"}, {"stopSequence": 48, "arrival": {"time": "1694893002"}, "stopId": "38151"}, {"stopSequence": 49, "arrival": {"time": "1694893261"}, "stopId": "15-13"}, {"stopSequence": 50, "arrival": {"time": "1694894600"}, "stopId": "15-Oct"}, {"stopSequence": 51, "arrival": {"time": "1694895427"}, "stopId": "15-Aug"}, {"stopSequence": 52, "arrival": {"time": "1694895722"}, "stopId": "15-Jun"}, {"stopSequence": 53, "arrival": {"time": "1694895877"}, "stopId": "15-Apr"}, {"stopSequence": 54, "arrival": {"time": "1694900660"}, "stopId": "16-Aug"}, {"stopSequence": 55, "arrival": {"time": "1694901794"}, "stopId": "16-May"}, {"stopSequence": 56, "arrival": {"time": "1694902357"}, "stopId": "16-Mar"}, {"stopSequence": 57, "arrival": {"time": "1694902904"}, "stopId": "16-Jan"}, {"stopSequence": 58, "arrival": {"time": "1694903993"}, "stopId": "27-Jan"}, {"stopSequence": 59, "arrival": {"time": "1694904586"}, "stopId": "17-Jan"}, {"stopSequence": 60, "arrival": {"time": "1694917153"}, "stopId": "23-Jan"}, {"stopSequence": 61, "arrival": {"time": "1694933588"}, "stopId": "24-14"}], "vehicle": {"licensePlate": "KKPV70"}, "timestamp": "1694889008"}, "vehicle": {"trip": {"tripId": "e07d182b-0-701ff27f-2", "startTime": "15:02:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "541", "directionId": 1}, "position": {"latitude": -36.83165, "longitude": -73.05986, "bearing": 150.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889008", "vehicle": {"licensePlate": "KKPV70"}}}, {"id": "73c96ce6-6dbb-4538-be78-6b4beea55466", "tripUpdate": {"trip": {"tripId": "15469-701ff27f-2", "startTime": "15:32:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "546", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 22, "arrival": {"time": "1694888799"}, "stopId": "40947"}, {"stopSequence": 23, "arrival": {"time": "1694888945"}, "stopId": "42853"}, {"stopSequence": 24, "arrival": {"time": "1694889040"}, "stopId": "42854"}, {"stopSequence": 25, "arrival": {"time": "1694889092"}, "stopId": "42855"}, {"stopSequence": 26, "arrival": {"time": "1694889122"}, "stopId": "38562"}, {"stopSequence": 27, "arrival": {"time": "1694889154"}, "stopId": "42857"}, {"stopSequence": 28, "arrival": {"time": "1694889194"}, "stopId": "38697"}, {"stopSequence": 29, "arrival": {"time": "1694889232"}, "stopId": "38646"}, {"stopSequence": 30, "arrival": {"time": "1694889269"}, "stopId": "38632"}, {"stopSequence": 31, "arrival": {"time": "1694889338"}, "stopId": "38767"}, {"stopSequence": 32, "arrival": {"time": "1694889415"}, "stopId": "38768"}, {"stopSequence": 33, "arrival": {"time": "1694889453"}, "stopId": "38769"}, {"stopSequence": 34, "arrival": {"time": "1694889488"}, "stopId": "49357"}, {"stopSequence": 35, "arrival": {"time": "1694889530"}, "stopId": "38771"}, {"stopSequence": 36, "arrival": {"time": "1694889570"}, "stopId": "38668"}, {"stopSequence": 37, "arrival": {"time": "1694889672"}, "stopId": "38661"}, {"stopSequence": 38, "arrival": {"time": "1694889750"}, "stopId": "38657"}, {"stopSequence": 39, "arrival": {"time": "1694889814"}, "stopId": "38743"}, {"stopSequence": 40, "arrival": {"time": "1694889878"}, "stopId": "38652"}, {"stopSequence": 41, "arrival": {"time": "1694889940"}, "stopId": "38721"}, {"stopSequence": 42, "arrival": {"time": "1694889993"}, "stopId": "38659"}, {"stopSequence": 43, "arrival": {"time": "1694890077"}, "stopId": "38674"}, {"stopSequence": 44, "arrival": {"time": "1694890149"}, "stopId": "38649"}, {"stopSequence": 45, "arrival": {"time": "1694890217"}, "stopId": "38718"}, {"stopSequence": 46, "arrival": {"time": "1694890283"}, "stopId": "38735"}, {"stopSequence": 47, "arrival": {"time": "1694890337"}, "stopId": "42270"}, {"stopSequence": 48, "arrival": {"time": "1694890383"}, "stopId": "42271"}, {"stopSequence": 49, "arrival": {"time": "1694890451"}, "stopId": "4838438"}, {"stopSequence": 50, "arrival": {"time": "1694890587"}, "stopId": "38688"}, {"stopSequence": 51, "arrival": {"time": "1694890717"}, "stopId": "39785"}, {"stopSequence": 52, "arrival": {"time": "1694890758"}, "stopId": "38664"}, {"stopSequence": 53, "arrival": {"time": "1694890815"}, "stopId": "38702"}, {"stopSequence": 54, "arrival": {"time": "1694890862"}, "stopId": "39787"}, {"stopSequence": 55, "arrival": {"time": "1694890907"}, "stopId": "38501"}, {"stopSequence": 56, "arrival": {"time": "1694890970"}, "stopId": "38692"}, {"stopSequence": 57, "arrival": {"time": "1694891059"}, "stopId": "38714"}, {"stopSequence": 58, "arrival": {"time": "1694891112"}, "stopId": "39791"}, {"stopSequence": 59, "arrival": {"time": "1694891135"}, "stopId": "49329"}, {"stopSequence": 60, "arrival": {"time": "1694891204"}, "stopId": "49330"}, {"stopSequence": 61, "arrival": {"time": "1694891252"}, "stopId": "39652"}, {"stopSequence": 62, "arrival": {"time": "1694891313"}, "stopId": "36683"}, {"stopSequence": 63, "arrival": {"time": "1694891357"}, "stopId": "37428"}, {"stopSequence": 64, "arrival": {"time": "1694891405"}, "stopId": "37429"}, {"stopSequence": 65, "arrival": {"time": "1694891552"}, "stopId": "36641"}, {"stopSequence": 66, "arrival": {"time": "1694891645"}, "stopId": "32571"}, {"stopSequence": 67, "arrival": {"time": "1694891676"}, "stopId": "32576"}, {"stopSequence": 68, "arrival": {"time": "1694891722"}, "stopId": "40259"}, {"stopSequence": 69, "arrival": {"time": "1694891801"}, "stopId": "40257"}, {"stopSequence": 70, "arrival": {"time": "1694891842"}, "stopId": "36690"}, {"stopSequence": 71, "arrival": {"time": "1694891916"}, "stopId": "36691"}, {"stopSequence": 72, "arrival": {"time": "1694891964"}, "stopId": "36692"}, {"stopSequence": 73, "arrival": {"time": "1694891992"}, "stopId": "36693"}, {"stopSequence": 74, "arrival": {"time": "1694892050"}, "stopId": "40036"}, {"stopSequence": 75, "arrival": {"time": "1694892133"}, "stopId": "36695"}, {"stopSequence": 76, "arrival": {"time": "1694892204"}, "stopId": "36696"}, {"stopSequence": 77, "arrival": {"time": "1694892294"}, "stopId": "39229"}, {"stopSequence": 78, "arrival": {"time": "1694892351"}, "stopId": "32587"}, {"stopSequence": 79, "arrival": {"time": "1694892392"}, "stopId": "39230"}, {"stopSequence": 80, "arrival": {"time": "1694892421"}, "stopId": "36703"}, {"stopSequence": 81, "arrival": {"time": "1694892486"}, "stopId": "39688"}, {"stopSequence": 82, "arrival": {"time": "1694892541"}, "stopId": "36754"}, {"stopSequence": 83, "arrival": {"time": "1694892559"}, "stopId": "39686"}, {"stopSequence": 84, "arrival": {"time": "1694892638"}, "stopId": "36931"}, {"stopSequence": 85, "arrival": {"time": "1694892711"}, "stopId": "36932"}, {"stopSequence": 86, "arrival": {"time": "1694892758"}, "stopId": "39666"}, {"stopSequence": 87, "arrival": {"time": "1694892804"}, "stopId": "39667"}, {"stopSequence": 88, "arrival": {"time": "1694893008"}, "stopId": "49342"}, {"stopSequence": 89, "arrival": {"time": "1694893179"}, "stopId": "49343"}], "vehicle": {"licensePlate": "LRBY43"}, "timestamp": "1694888796"}, "vehicle": {"trip": {"tripId": "15469-701ff27f-2", "startTime": "15:32:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "546", "directionId": 1}, "position": {"latitude": -36.72443, "longitude": -73.11891, "bearing": 130.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889020", "vehicle": {"licensePlate": "LRBY43"}}}, {"id": "0d2aa157-745c-4ee2-a26b-f76bd53ed1a5", "tripUpdate": {"trip": {"tripId": "15468-701ff27f-2", "startTime": "15:02:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "546", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 38, "arrival": {"time": "1694889056"}, "stopId": "38657"}, {"stopSequence": 39, "arrival": {"time": "1694889125"}, "stopId": "38743"}, {"stopSequence": 40, "arrival": {"time": "1694889195"}, "stopId": "38652"}, {"stopSequence": 41, "arrival": {"time": "1694889261"}, "stopId": "38721"}, {"stopSequence": 42, "arrival": {"time": "1694889317"}, "stopId": "38659"}, {"stopSequence": 43, "arrival": {"time": "1694889405"}, "stopId": "38674"}, {"stopSequence": 44, "arrival": {"time": "1694889479"}, "stopId": "38649"}, {"stopSequence": 45, "arrival": {"time": "1694889547"}, "stopId": "38718"}, {"stopSequence": 46, "arrival": {"time": "1694889614"}, "stopId": "38735"}, {"stopSequence": 47, "arrival": {"time": "1694889667"}, "stopId": "42270"}, {"stopSequence": 48, "arrival": {"time": "1694889712"}, "stopId": "42271"}, {"stopSequence": 49, "arrival": {"time": "1694889778"}, "stopId": "4838438"}, {"stopSequence": 50, "arrival": {"time": "1694889908"}, "stopId": "38688"}, {"stopSequence": 51, "arrival": {"time": "1694890030"}, "stopId": "39785"}, {"stopSequence": 52, "arrival": {"time": "1694890067"}, "stopId": "38664"}, {"stopSequence": 53, "arrival": {"time": "1694890119"}, "stopId": "38702"}, {"stopSequence": 54, "arrival": {"time": "1694890162"}, "stopId": "39787"}, {"stopSequence": 55, "arrival": {"time": "1694890203"}, "stopId": "38501"}, {"stopSequence": 56, "arrival": {"time": "1694890258"}, "stopId": "38692"}, {"stopSequence": 57, "arrival": {"time": "1694890337"}, "stopId": "38714"}, {"stopSequence": 58, "arrival": {"time": "1694890383"}, "stopId": "39791"}, {"stopSequence": 59, "arrival": {"time": "1694890403"}, "stopId": "49329"}, {"stopSequence": 60, "arrival": {"time": "1694890463"}, "stopId": "49330"}, {"stopSequence": 61, "arrival": {"time": "1694890504"}, "stopId": "39652"}, {"stopSequence": 62, "arrival": {"time": "1694890556"}, "stopId": "36683"}, {"stopSequence": 63, "arrival": {"time": "1694890592"}, "stopId": "37428"}, {"stopSequence": 64, "arrival": {"time": "1694890633"}, "stopId": "37429"}, {"stopSequence": 65, "arrival": {"time": "1694890754"}, "stopId": "36641"}, {"stopSequence": 66, "arrival": {"time": "1694890830"}, "stopId": "32571"}, {"stopSequence": 67, "arrival": {"time": "1694890855"}, "stopId": "32576"}, {"stopSequence": 68, "arrival": {"time": "1694890892"}, "stopId": "40259"}, {"stopSequence": 69, "arrival": {"time": "1694890955"}, "stopId": "40257"}, {"stopSequence": 70, "arrival": {"time": "1694890988"}, "stopId": "36690"}, {"stopSequence": 71, "arrival": {"time": "1694891045"}, "stopId": "36691"}, {"stopSequence": 72, "arrival": {"time": "1694891083"}, "stopId": "36692"}, {"stopSequence": 73, "arrival": {"time": "1694891105"}, "stopId": "36693"}, {"stopSequence": 74, "arrival": {"time": "1694891149"}, "stopId": "40036"}, {"stopSequence": 75, "arrival": {"time": "1694891213"}, "stopId": "36695"}, {"stopSequence": 76, "arrival": {"time": "1694891267"}, "stopId": "36696"}, {"stopSequence": 77, "arrival": {"time": "1694891334"}, "stopId": "39229"}, {"stopSequence": 78, "arrival": {"time": "1694891377"}, "stopId": "32587"}, {"stopSequence": 79, "arrival": {"time": "1694891408"}, "stopId": "39230"}, {"stopSequence": 80, "arrival": {"time": "1694891429"}, "stopId": "36703"}, {"stopSequence": 81, "arrival": {"time": "1694891477"}, "stopId": "39688"}, {"stopSequence": 82, "arrival": {"time": "1694891517"}, "stopId": "36754"}, {"stopSequence": 83, "arrival": {"time": "1694891530"}, "stopId": "39686"}, {"stopSequence": 84, "arrival": {"time": "1694891587"}, "stopId": "36931"}, {"stopSequence": 85, "arrival": {"time": "1694891640"}, "stopId": "36932"}, {"stopSequence": 86, "arrival": {"time": "1694891673"}, "stopId": "39666"}, {"stopSequence": 87, "arrival": {"time": "1694891706"}, "stopId": "39667"}, {"stopSequence": 88, "arrival": {"time": "1694891850"}, "stopId": "49342"}, {"stopSequence": 89, "arrival": {"time": "1694891967"}, "stopId": "49343"}], "vehicle": {"licensePlate": "RFSC37"}, "timestamp": "1694889016"}, "vehicle": {"trip": {"tripId": "15468-701ff27f-2", "startTime": "15:02:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "546", "directionId": 1}, "position": {"latitude": -36.733746, "longitude": -73.106865, "bearing": 140.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889016", "vehicle": {"licensePlate": "RFSC37"}}}, {"id": "94ca679e-f259-4c80-8c29-ca3d9a5d1ce0", "tripUpdate": {"trip": {"tripId": "15470-701ff27f-2", "startTime": "16:02:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "546", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 5, "arrival": {"time": "1694888659"}, "stopId": "40349"}, {"stopSequence": 6, "arrival": {"time": "1694888701"}, "stopId": "40350"}, {"stopSequence": 7, "arrival": {"time": "1694888762"}, "stopId": "40351"}, {"stopSequence": 8, "arrival": {"time": "1694888854"}, "stopId": "40352"}, {"stopSequence": 9, "arrival": {"time": "1694888940"}, "stopId": "41970"}, {"stopSequence": 10, "arrival": {"time": "1694889015"}, "stopId": "32500"}, {"stopSequence": 11, "arrival": {"time": "1694889059"}, "stopId": "32501"}, {"stopSequence": 12, "arrival": {"time": "1694889123"}, "stopId": "38397"}, {"stopSequence": 13, "arrival": {"time": "1694889181"}, "stopId": "38491"}, {"stopSequence": 14, "arrival": {"time": "1694889249"}, "stopId": "38498"}, {"stopSequence": 15, "arrival": {"time": "1694889295"}, "stopId": "38495"}, {"stopSequence": 16, "arrival": {"time": "1694889439"}, "stopId": "40928"}, {"stopSequence": 17, "arrival": {"time": "1694889470"}, "stopId": "38572"}, {"stopSequence": 18, "arrival": {"time": "1694889525"}, "stopId": "38571"}, {"stopSequence": 19, "arrival": {"time": "1694889539"}, "stopId": "37447"}, {"stopSequence": 20, "arrival": {"time": "1694889560"}, "stopId": "40929"}, {"stopSequence": 21, "arrival": {"time": "1694889622"}, "stopId": "40946"}, {"stopSequence": 22, "arrival": {"time": "1694889671"}, "stopId": "40947"}, {"stopSequence": 23, "arrival": {"time": "1694889805"}, "stopId": "42853"}, {"stopSequence": 24, "arrival": {"time": "1694889893"}, "stopId": "42854"}, {"stopSequence": 25, "arrival": {"time": "1694889943"}, "stopId": "42855"}, {"stopSequence": 26, "arrival": {"time": "1694889972"}, "stopId": "38562"}, {"stopSequence": 27, "arrival": {"time": "1694890003"}, "stopId": "42857"}, {"stopSequence": 28, "arrival": {"time": "1694890041"}, "stopId": "38697"}, {"stopSequence": 29, "arrival": {"time": "1694890079"}, "stopId": "38646"}, {"stopSequence": 30, "arrival": {"time": "1694890115"}, "stopId": "38632"}, {"stopSequence": 31, "arrival": {"time": "1694890184"}, "stopId": "38767"}, {"stopSequence": 32, "arrival": {"time": "1694890262"}, "stopId": "38768"}, {"stopSequence": 33, "arrival": {"time": "1694890301"}, "stopId": "38769"}, {"stopSequence": 34, "arrival": {"time": "1694890337"}, "stopId": "49357"}, {"stopSequence": 35, "arrival": {"time": "1694890381"}, "stopId": "38771"}, {"stopSequence": 36, "arrival": {"time": "1694890423"}, "stopId": "38668"}, {"stopSequence": 37, "arrival": {"time": "1694890532"}, "stopId": "38661"}, {"stopSequence": 38, "arrival": {"time": "1694890616"}, "stopId": "38657"}, {"stopSequence": 39, "arrival": {"time": "1694890686"}, "stopId": "38743"}, {"stopSequence": 40, "arrival": {"time": "1694890758"}, "stopId": "38652"}, {"stopSequence": 41, "arrival": {"time": "1694890828"}, "stopId": "38721"}, {"stopSequence": 42, "arrival": {"time": "1694890888"}, "stopId": "38659"}, {"stopSequence": 43, "arrival": {"time": "1694890986"}, "stopId": "38674"}, {"stopSequence": 44, "arrival": {"time": "1694891070"}, "stopId": "38649"}, {"stopSequence": 45, "arrival": {"time": "1694891150"}, "stopId": "38718"}, {"stopSequence": 46, "arrival": {"time": "1694891230"}, "stopId": "38735"}, {"stopSequence": 47, "arrival": {"time": "1694891296"}, "stopId": "42270"}, {"stopSequence": 48, "arrival": {"time": "1694891351"}, "stopId": "42271"}, {"stopSequence": 49, "arrival": {"time": "1694891436"}, "stopId": "4838438"}, {"stopSequence": 50, "arrival": {"time": "1694891608"}, "stopId": "38688"}, {"stopSequence": 51, "arrival": {"time": "1694891777"}, "stopId": "39785"}, {"stopSequence": 52, "arrival": {"time": "1694891830"}, "stopId": "38664"}, {"stopSequence": 53, "arrival": {"time": "1694891906"}, "stopId": "38702"}, {"stopSequence": 54, "arrival": {"time": "1694891969"}, "stopId": "39787"}, {"stopSequence": 55, "arrival": {"time": "1694892030"}, "stopId": "38501"}, {"stopSequence": 56, "arrival": {"time": "1694892115"}, "stopId": "38692"}, {"stopSequence": 57, "arrival": {"time": "1694892237"}, "stopId": "38714"}, {"stopSequence": 58, "arrival": {"time": "1694892312"}, "stopId": "39791"}, {"stopSequence": 59, "arrival": {"time": "1694892344"}, "stopId": "49329"}, {"stopSequence": 60, "arrival": {"time": "1694892441"}, "stopId": "49330"}, {"stopSequence": 61, "arrival": {"time": "1694892510"}, "stopId": "39652"}, {"stopSequence": 62, "arrival": {"time": "1694892599"}, "stopId": "36683"}, {"stopSequence": 63, "arrival": {"time": "1694892662"}, "stopId": "37428"}, {"stopSequence": 64, "arrival": {"time": "1694892733"}, "stopId": "37429"}, {"stopSequence": 65, "arrival": {"time": "1694892951"}, "stopId": "36641"}, {"stopSequence": 66, "arrival": {"time": "1694893093"}, "stopId": "32571"}, {"stopSequence": 67, "arrival": {"time": "1694893140"}, "stopId": "32576"}, {"stopSequence": 68, "arrival": {"time": "1694893212"}, "stopId": "40259"}, {"stopSequence": 69, "arrival": {"time": "1694893334"}, "stopId": "40257"}, {"stopSequence": 70, "arrival": {"time": "1694893400"}, "stopId": "36690"}, {"stopSequence": 71, "arrival": {"time": "1694893516"}, "stopId": "36691"}, {"stopSequence": 72, "arrival": {"time": "1694893594"}, "stopId": "36692"}, {"stopSequence": 73, "arrival": {"time": "1694893639"}, "stopId": "36693"}, {"stopSequence": 74, "arrival": {"time": "1694893733"}, "stopId": "40036"}, {"stopSequence": 75, "arrival": {"time": "1694893869"}, "stopId": "36695"}, {"stopSequence": 76, "arrival": {"time": "1694893987"}, "stopId": "36696"}, {"stopSequence": 77, "arrival": {"time": "1694894138"}, "stopId": "39229"}, {"stopSequence": 78, "arrival": {"time": "1694894235"}, "stopId": "32587"}, {"stopSequence": 79, "arrival": {"time": "1694894307"}, "stopId": "39230"}, {"stopSequence": 80, "arrival": {"time": "1694894356"}, "stopId": "36703"}, {"stopSequence": 81, "arrival": {"time": "1694894469"}, "stopId": "39688"}, {"stopSequence": 82, "arrival": {"time": "1694894567"}, "stopId": "36754"}, {"stopSequence": 83, "arrival": {"time": "1694894598"}, "stopId": "39686"}, {"stopSequence": 84, "arrival": {"time": "1694894738"}, "stopId": "36931"}, {"stopSequence": 85, "arrival": {"time": "1694894870"}, "stopId": "36932"}, {"stopSequence": 86, "arrival": {"time": "1694894955"}, "stopId": "39666"}, {"stopSequence": 87, "arrival": {"time": "1694895039"}, "stopId": "39667"}, {"stopSequence": 88, "arrival": {"time": "1694895421"}, "stopId": "49342"}, {"stopSequence": 89, "arrival": {"time": "1694895748"}, "stopId": "49343"}], "vehicle": {"licensePlate": "YR1499"}, "timestamp": "1694888637"}, "vehicle": {"trip": {"tripId": "15470-701ff27f-2", "startTime": "16:02:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "546", "directionId": 1}, "position": {"latitude": -36.718693, "longitude": -73.14687, "bearing": 203.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889014", "vehicle": {"licensePlate": "YR1499"}}}, {"id": "19339e66-0208-4097-804f-7f8ca3d5f05b", "tripUpdate": {"trip": {"tripId": "15535-701ff27f-2", "startTime": "15:31:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "547", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 3, "arrival": {"time": "1694889269"}, "stopId": "42426"}, {"stopSequence": 4, "arrival": {"time": "1694889324"}, "stopId": "42427"}, {"stopSequence": 5, "arrival": {"time": "1694889354"}, "stopId": "42428"}, {"stopSequence": 6, "arrival": {"time": "1694889393"}, "stopId": "37042"}, {"stopSequence": 7, "arrival": {"time": "1694889412"}, "stopId": "36935"}, {"stopSequence": 8, "arrival": {"time": "1694889431"}, "stopId": "37043"}, {"stopSequence": 9, "arrival": {"time": "1694889473"}, "stopId": "37044"}, {"stopSequence": 10, "arrival": {"time": "1694889517"}, "stopId": "37045"}, {"stopSequence": 11, "arrival": {"time": "1694889525"}, "stopId": "36932"}, {"stopSequence": 12, "arrival": {"time": "1694889552"}, "stopId": "37099"}, {"stopSequence": 13, "arrival": {"time": "1694889564"}, "stopId": "36931"}, {"stopSequence": 14, "arrival": {"time": "1694889589"}, "stopId": "36929"}, {"stopSequence": 15, "arrival": {"time": "1694889629"}, "stopId": "39687"}, {"stopSequence": 16, "arrival": {"time": "1694889653"}, "stopId": "8606050"}, {"stopSequence": 17, "arrival": {"time": "1694889687"}, "stopId": "39689"}, {"stopSequence": 18, "arrival": {"time": "1694889781"}, "stopId": "39140"}, {"stopSequence": 19, "arrival": {"time": "1694889843"}, "stopId": "39141"}, {"stopSequence": 20, "arrival": {"time": "1694889898"}, "stopId": "39082"}, {"stopSequence": 21, "arrival": {"time": "1694889928"}, "stopId": "40252"}, {"stopSequence": 22, "arrival": {"time": "1694890006"}, "stopId": "32731"}, {"stopSequence": 23, "arrival": {"time": "1694890040"}, "stopId": "36691"}, {"stopSequence": 24, "arrival": {"time": "1694890087"}, "stopId": "36690"}, {"stopSequence": 25, "arrival": {"time": "1694890121"}, "stopId": "40257"}, {"stopSequence": 26, "arrival": {"time": "1694890148"}, "stopId": "40258"}, {"stopSequence": 27, "arrival": {"time": "1694890203"}, "stopId": "32734"}, {"stopSequence": 28, "arrival": {"time": "1694890305"}, "stopId": "32736"}, {"stopSequence": 29, "arrival": {"time": "1694890411"}, "stopId": "37588"}, {"stopSequence": 30, "arrival": {"time": "1694890461"}, "stopId": "37589"}, {"stopSequence": 31, "arrival": {"time": "1694890537"}, "stopId": "37840"}, {"stopSequence": 32, "arrival": {"time": "1694890567"}, "stopId": "49140"}, {"stopSequence": 33, "arrival": {"time": "1694890607"}, "stopId": "49141"}, {"stopSequence": 34, "arrival": {"time": "1694890641"}, "stopId": "49142"}, {"stopSequence": 35, "arrival": {"time": "1694890681"}, "stopId": "49143"}, {"stopSequence": 36, "arrival": {"time": "1694890688"}, "stopId": "45112"}, {"stopSequence": 37, "arrival": {"time": "1694890745"}, "stopId": "45113"}, {"stopSequence": 38, "arrival": {"time": "1694890818"}, "stopId": "37490"}, {"stopSequence": 39, "arrival": {"time": "1694890884"}, "stopId": "45115"}, {"stopSequence": 40, "arrival": {"time": "1694890910"}, "stopId": "45116"}, {"stopSequence": 41, "arrival": {"time": "1694890984"}, "stopId": "45118"}, {"stopSequence": 42, "arrival": {"time": "1694891065"}, "stopId": "45119"}, {"stopSequence": 43, "arrival": {"time": "1694891113"}, "stopId": "45120"}, {"stopSequence": 44, "arrival": {"time": "1694891173"}, "stopId": "45121"}, {"stopSequence": 45, "arrival": {"time": "1694891220"}, "stopId": "38535"}, {"stopSequence": 46, "arrival": {"time": "1694891306"}, "stopId": "38536"}, {"stopSequence": 47, "arrival": {"time": "1694891337"}, "stopId": "4838437"}, {"stopSequence": 48, "arrival": {"time": "1694891406"}, "stopId": "45085"}, {"stopSequence": 49, "arrival": {"time": "1694891496"}, "stopId": "45086"}, {"stopSequence": 50, "arrival": {"time": "1694891560"}, "stopId": "38539"}, {"stopSequence": 51, "arrival": {"time": "1694891641"}, "stopId": "38540"}, {"stopSequence": 52, "arrival": {"time": "1694891728"}, "stopId": "38544"}, {"stopSequence": 53, "arrival": {"time": "1694891814"}, "stopId": "38545"}, {"stopSequence": 54, "arrival": {"time": "1694891940"}, "stopId": "38546"}, {"stopSequence": 55, "arrival": {"time": "1694892102"}, "stopId": "38548"}, {"stopSequence": 56, "arrival": {"time": "1694892193"}, "stopId": "38549"}, {"stopSequence": 57, "arrival": {"time": "1694892276"}, "stopId": "38550"}, {"stopSequence": 58, "arrival": {"time": "1694892416"}, "stopId": "38551"}, {"stopSequence": 59, "arrival": {"time": "1694892545"}, "stopId": "38552"}, {"stopSequence": 60, "arrival": {"time": "1694892670"}, "stopId": "49359"}, {"stopSequence": 61, "arrival": {"time": "1694892754"}, "stopId": "49360"}, {"stopSequence": 62, "arrival": {"time": "1694892942"}, "stopId": "49361"}, {"stopSequence": 63, "arrival": {"time": "1694892987"}, "stopId": "49362"}, {"stopSequence": 64, "arrival": {"time": "1694893071"}, "stopId": "49363"}, {"stopSequence": 65, "arrival": {"time": "1694893156"}, "stopId": "49364"}, {"stopSequence": 66, "arrival": {"time": "1694893239"}, "stopId": "49365"}, {"stopSequence": 67, "arrival": {"time": "1694893352"}, "stopId": "38560"}, {"stopSequence": 68, "arrival": {"time": "1694893415"}, "stopId": "38561"}, {"stopSequence": 69, "arrival": {"time": "1694893476"}, "stopId": "38562"}, {"stopSequence": 70, "arrival": {"time": "1694893558"}, "stopId": "38563"}, {"stopSequence": 71, "arrival": {"time": "1694893644"}, "stopId": "42854"}, {"stopSequence": 72, "arrival": {"time": "1694893843"}, "stopId": "38565"}, {"stopSequence": 73, "arrival": {"time": "1694893948"}, "stopId": "40932"}, {"stopSequence": 74, "arrival": {"time": "1694894044"}, "stopId": "38566"}, {"stopSequence": 75, "arrival": {"time": "1694894118"}, "stopId": "38567"}, {"stopSequence": 76, "arrival": {"time": "1694894216"}, "stopId": "38568"}, {"stopSequence": 77, "arrival": {"time": "1694894297"}, "stopId": "38569"}, {"stopSequence": 78, "arrival": {"time": "1694894401"}, "stopId": "38570"}, {"stopSequence": 79, "arrival": {"time": "1694894544"}, "stopId": "38571"}, {"stopSequence": 80, "arrival": {"time": "1694894683"}, "stopId": "38572"}, {"stopSequence": 81, "arrival": {"time": "1694895177"}, "stopId": "38393"}, {"stopSequence": 82, "arrival": {"time": "1694895320"}, "stopId": "38394"}, {"stopSequence": 83, "arrival": {"time": "1694895471"}, "stopId": "38424"}, {"stopSequence": 84, "arrival": {"time": "1694895579"}, "stopId": "38396"}, {"stopSequence": 85, "arrival": {"time": "1694896001"}, "stopId": "41928"}, {"stopSequence": 86, "arrival": {"time": "1694896159"}, "stopId": "41929"}, {"stopSequence": 87, "arrival": {"time": "1694896721"}, "stopId": "40543"}, {"stopSequence": 88, "arrival": {"time": "1694896777"}, "stopId": "41969"}, {"stopSequence": 89, "arrival": {"time": "1694897224"}, "stopId": "40544"}, {"stopSequence": 90, "arrival": {"time": "1694897309"}, "stopId": "16705477"}, {"stopSequence": 91, "arrival": {"time": "1694897529"}, "stopId": "40545"}, {"stopSequence": 92, "arrival": {"time": "1694897785"}, "stopId": "40546"}, {"stopSequence": 93, "arrival": {"time": "1694897963"}, "stopId": "40547"}, {"stopSequence": 94, "arrival": {"time": "1694898225"}, "stopId": "40548"}, {"stopSequence": 95, "arrival": {"time": "1694898358"}, "stopId": "40549"}, {"stopSequence": 96, "arrival": {"time": "1694898564"}, "stopId": "40550"}, {"stopSequence": 97, "arrival": {"time": "1694898849"}, "stopId": "40551"}, {"stopSequence": 98, "arrival": {"time": "1694899510"}, "stopId": "40552"}, {"stopSequence": 99, "arrival": {"time": "1694899850"}, "stopId": "40553"}, {"stopSequence": 100, "arrival": {"time": "1694900281"}, "stopId": "40554"}], "vehicle": {"licensePlate": "FXRZ35"}, "timestamp": "1694888968"}, "vehicle": {"trip": {"tripId": "15535-701ff27f-2", "startTime": "15:31:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "547", "directionId": 0}, "position": {"latitude": -36.762825, "longitude": -73.117966, "bearing": 215.0, "odometer": 0.0, "speed": 5.0}, "timestamp": "1694888968", "vehicle": {"licensePlate": "FXRZ35"}}}, {"id": "46abe55c-a3a6-4144-9559-d0a088e35f3f", "tripUpdate": {"trip": {"tripId": "15534-701ff27f-2", "startTime": "15:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "547", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 40, "arrival": {"time": "1694889001"}, "stopId": "45116"}, {"stopSequence": 41, "arrival": {"time": "1694889077"}, "stopId": "45118"}, {"stopSequence": 42, "arrival": {"time": "1694889155"}, "stopId": "45119"}, {"stopSequence": 43, "arrival": {"time": "1694889202"}, "stopId": "45120"}, {"stopSequence": 44, "arrival": {"time": "1694889258"}, "stopId": "45121"}, {"stopSequence": 45, "arrival": {"time": "1694889301"}, "stopId": "38535"}, {"stopSequence": 46, "arrival": {"time": "1694889379"}, "stopId": "38536"}, {"stopSequence": 47, "arrival": {"time": "1694889406"}, "stopId": "4838437"}, {"stopSequence": 48, "arrival": {"time": "1694889467"}, "stopId": "45085"}, {"stopSequence": 49, "arrival": {"time": "1694889543"}, "stopId": "45086"}, {"stopSequence": 50, "arrival": {"time": "1694889596"}, "stopId": "38539"}, {"stopSequence": 51, "arrival": {"time": "1694889661"}, "stopId": "38540"}, {"stopSequence": 52, "arrival": {"time": "1694889731"}, "stopId": "38544"}, {"stopSequence": 53, "arrival": {"time": "1694889797"}, "stopId": "38545"}, {"stopSequence": 54, "arrival": {"time": "1694889891"}, "stopId": "38546"}, {"stopSequence": 55, "arrival": {"time": "1694890008"}, "stopId": "38548"}, {"stopSequence": 56, "arrival": {"time": "1694890072"}, "stopId": "38549"}, {"stopSequence": 57, "arrival": {"time": "1694890129"}, "stopId": "38550"}, {"stopSequence": 58, "arrival": {"time": "1694890222"}, "stopId": "38551"}, {"stopSequence": 59, "arrival": {"time": "1694890305"}, "stopId": "38552"}, {"stopSequence": 60, "arrival": {"time": "1694890383"}, "stopId": "49359"}, {"stopSequence": 61, "arrival": {"time": "1694890435"}, "stopId": "49360"}, {"stopSequence": 62, "arrival": {"time": "1694890546"}, "stopId": "49361"}, {"stopSequence": 63, "arrival": {"time": "1694890572"}, "stopId": "49362"}, {"stopSequence": 64, "arrival": {"time": "1694890620"}, "stopId": "49363"}, {"stopSequence": 65, "arrival": {"time": "1694890668"}, "stopId": "49364"}, {"stopSequence": 66, "arrival": {"time": "1694890714"}, "stopId": "49365"}, {"stopSequence": 67, "arrival": {"time": "1694890775"}, "stopId": "38560"}, {"stopSequence": 68, "arrival": {"time": "1694890809"}, "stopId": "38561"}, {"stopSequence": 69, "arrival": {"time": "1694890841"}, "stopId": "38562"}, {"stopSequence": 70, "arrival": {"time": "1694890884"}, "stopId": "38563"}, {"stopSequence": 71, "arrival": {"time": "1694890928"}, "stopId": "42854"}, {"stopSequence": 72, "arrival": {"time": "1694891027"}, "stopId": "38565"}, {"stopSequence": 73, "arrival": {"time": "1694891078"}, "stopId": "40932"}, {"stopSequence": 74, "arrival": {"time": "1694891124"}, "stopId": "38566"}, {"stopSequence": 75, "arrival": {"time": "1694891159"}, "stopId": "38567"}, {"stopSequence": 76, "arrival": {"time": "1694891204"}, "stopId": "38568"}, {"stopSequence": 77, "arrival": {"time": "1694891242"}, "stopId": "38569"}, {"stopSequence": 78, "arrival": {"time": "1694891288"}, "stopId": "38570"}, {"stopSequence": 79, "arrival": {"time": "1694891352"}, "stopId": "38571"}, {"stopSequence": 80, "arrival": {"time": "1694891412"}, "stopId": "38572"}, {"stopSequence": 81, "arrival": {"time": "1694891616"}, "stopId": "38393"}, {"stopSequence": 82, "arrival": {"time": "1694891672"}, "stopId": "38394"}, {"stopSequence": 83, "arrival": {"time": "1694891731"}, "stopId": "38424"}, {"stopSequence": 84, "arrival": {"time": "1694891771"}, "stopId": "38396"}, {"stopSequence": 85, "arrival": {"time": "1694891926"}, "stopId": "41928"}, {"stopSequence": 86, "arrival": {"time": "1694891981"}, "stopId": "41929"}, {"stopSequence": 87, "arrival": {"time": "1694892171"}, "stopId": "40543"}, {"stopSequence": 88, "arrival": {"time": "1694892189"}, "stopId": "41969"}, {"stopSequence": 89, "arrival": {"time": "1694892329"}, "stopId": "40544"}, {"stopSequence": 90, "arrival": {"time": "1694892355"}, "stopId": "16705477"}, {"stopSequence": 91, "arrival": {"time": "1694892421"}, "stopId": "40545"}, {"stopSequence": 92, "arrival": {"time": "1694892496"}, "stopId": "40546"}, {"stopSequence": 93, "arrival": {"time": "1694892546"}, "stopId": "40547"}, {"stopSequence": 94, "arrival": {"time": "1694892619"}, "stopId": "40548"}, {"stopSequence": 95, "arrival": {"time": "1694892655"}, "stopId": "40549"}, {"stopSequence": 96, "arrival": {"time": "1694892710"}, "stopId": "40550"}, {"stopSequence": 97, "arrival": {"time": "1694892784"}, "stopId": "40551"}, {"stopSequence": 98, "arrival": {"time": "1694892948"}, "stopId": "40552"}, {"stopSequence": 99, "arrival": {"time": "1694893028"}, "stopId": "40553"}, {"stopSequence": 100, "arrival": {"time": "1694893125"}, "stopId": "40554"}], "vehicle": {"licensePlate": "FXZX83"}, "timestamp": "1694888988"}, "vehicle": {"trip": {"tripId": "15534-701ff27f-2", "startTime": "15:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "547", "directionId": 0}, "position": {"latitude": -36.78111, "longitude": -73.08677, "bearing": 6.0, "odometer": 0.0, "speed": 1.1111112}, "timestamp": "1694888988", "vehicle": {"licensePlate": "FXZX83"}}}, {"id": "4c599e09-658c-4832-95af-ee3e2d9007c8", "tripUpdate": {"trip": {"tripId": "15533-701ff27f-2", "startTime": "14:31:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "547", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 74, "arrival": {"time": "1694888987"}, "stopId": "38566"}, {"stopSequence": 75, "arrival": {"time": "1694889021"}, "stopId": "38567"}, {"stopSequence": 76, "arrival": {"time": "1694889065"}, "stopId": "38568"}, {"stopSequence": 77, "arrival": {"time": "1694889101"}, "stopId": "38569"}, {"stopSequence": 78, "arrival": {"time": "1694889145"}, "stopId": "38570"}, {"stopSequence": 79, "arrival": {"time": "1694889203"}, "stopId": "38571"}, {"stopSequence": 80, "arrival": {"time": "1694889257"}, "stopId": "38572"}, {"stopSequence": 81, "arrival": {"time": "1694889431"}, "stopId": "38393"}, {"stopSequence": 82, "arrival": {"time": "1694889478"}, "stopId": "38394"}, {"stopSequence": 83, "arrival": {"time": "1694889525"}, "stopId": "38424"}, {"stopSequence": 84, "arrival": {"time": "1694889557"}, "stopId": "38396"}, {"stopSequence": 85, "arrival": {"time": "1694889676"}, "stopId": "41928"}, {"stopSequence": 86, "arrival": {"time": "1694889717"}, "stopId": "41929"}, {"stopSequence": 87, "arrival": {"time": "1694889853"}, "stopId": "40543"}, {"stopSequence": 88, "arrival": {"time": "1694889866"}, "stopId": "41969"}, {"stopSequence": 89, "arrival": {"time": "1694889962"}, "stopId": "40544"}, {"stopSequence": 90, "arrival": {"time": "1694889979"}, "stopId": "16705477"}, {"stopSequence": 91, "arrival": {"time": "1694890023"}, "stopId": "40545"}, {"stopSequence": 92, "arrival": {"time": "1694890071"}, "stopId": "40546"}, {"stopSequence": 93, "arrival": {"time": "1694890103"}, "stopId": "40547"}, {"stopSequence": 94, "arrival": {"time": "1694890149"}, "stopId": "40548"}, {"stopSequence": 95, "arrival": {"time": "1694890171"}, "stopId": "40549"}, {"stopSequence": 96, "arrival": {"time": "1694890204"}, "stopId": "40550"}, {"stopSequence": 97, "arrival": {"time": "1694890249"}, "stopId": "40551"}, {"stopSequence": 98, "arrival": {"time": "1694890345"}, "stopId": "40552"}, {"stopSequence": 99, "arrival": {"time": "1694890390"}, "stopId": "40553"}, {"stopSequence": 100, "arrival": {"time": "1694890445"}, "stopId": "40554"}], "vehicle": {"licensePlate": "FYBB70"}, "timestamp": "1694888984"}, "vehicle": {"trip": {"tripId": "15533-701ff27f-2", "startTime": "14:31:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "547", "directionId": 0}, "position": {"latitude": -36.72487, "longitude": -73.11778, "bearing": 266.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888984", "vehicle": {"licensePlate": "FYBB70"}}}, {"id": "18659654-c65f-4c0e-aa1d-845dc29e9b8e", "tripUpdate": {"trip": {"tripId": "15500-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "547", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 33, "arrival": {"time": "1694889056"}, "stopId": "38646"}, {"stopSequence": 34, "arrival": {"time": "1694889097"}, "stopId": "38632"}, {"stopSequence": 35, "arrival": {"time": "1694889172"}, "stopId": "38767"}, {"stopSequence": 36, "arrival": {"time": "1694889241"}, "stopId": "38768"}, {"stopSequence": 37, "arrival": {"time": "1694889286"}, "stopId": "38769"}, {"stopSequence": 38, "arrival": {"time": "1694889332"}, "stopId": "49357"}, {"stopSequence": 39, "arrival": {"time": "1694889373"}, "stopId": "38771"}, {"stopSequence": 40, "arrival": {"time": "1694889414"}, "stopId": "38668"}, {"stopSequence": 41, "arrival": {"time": "1694889516"}, "stopId": "38661"}, {"stopSequence": 42, "arrival": {"time": "1694889602"}, "stopId": "38657"}, {"stopSequence": 43, "arrival": {"time": "1694889662"}, "stopId": "38743"}, {"stopSequence": 44, "arrival": {"time": "1694889719"}, "stopId": "38652"}, {"stopSequence": 45, "arrival": {"time": "1694889790"}, "stopId": "38721"}, {"stopSequence": 46, "arrival": {"time": "1694889845"}, "stopId": "38659"}, {"stopSequence": 47, "arrival": {"time": "1694889928"}, "stopId": "38674"}, {"stopSequence": 48, "arrival": {"time": "1694889990"}, "stopId": "38649"}, {"stopSequence": 49, "arrival": {"time": "1694890122"}, "stopId": "38735"}, {"stopSequence": 50, "arrival": {"time": "1694890177"}, "stopId": "42270"}, {"stopSequence": 51, "arrival": {"time": "1694890228"}, "stopId": "42271"}, {"stopSequence": 52, "arrival": {"time": "1694890424"}, "stopId": "38688"}, {"stopSequence": 53, "arrival": {"time": "1694890473"}, "stopId": "38673"}, {"stopSequence": 54, "arrival": {"time": "1694890549"}, "stopId": "39785"}, {"stopSequence": 55, "arrival": {"time": "1694890588"}, "stopId": "38664"}, {"stopSequence": 56, "arrival": {"time": "1694890636"}, "stopId": "32631"}, {"stopSequence": 57, "arrival": {"time": "1694890702"}, "stopId": "32697"}, {"stopSequence": 58, "arrival": {"time": "1694890876"}, "stopId": "32699"}, {"stopSequence": 59, "arrival": {"time": "1694890933"}, "stopId": "42606"}, {"stopSequence": 60, "arrival": {"time": "1694890973"}, "stopId": "42607"}, {"stopSequence": 61, "arrival": {"time": "1694891032"}, "stopId": "42608"}, {"stopSequence": 62, "arrival": {"time": "1694891080"}, "stopId": "49335"}, {"stopSequence": 63, "arrival": {"time": "1694891132"}, "stopId": "49336"}, {"stopSequence": 64, "arrival": {"time": "1694891175"}, "stopId": "4831075"}, {"stopSequence": 65, "arrival": {"time": "1694891232"}, "stopId": "37437"}, {"stopSequence": 66, "arrival": {"time": "1694891282"}, "stopId": "49337"}, {"stopSequence": 67, "arrival": {"time": "1694891323"}, "stopId": "39661"}, {"stopSequence": 68, "arrival": {"time": "1694891367"}, "stopId": "39662"}, {"stopSequence": 69, "arrival": {"time": "1694891430"}, "stopId": "39663"}, {"stopSequence": 70, "arrival": {"time": "1694891482"}, "stopId": "39664"}, {"stopSequence": 71, "arrival": {"time": "1694891532"}, "stopId": "39665"}, {"stopSequence": 72, "arrival": {"time": "1694891624"}, "stopId": "42522"}, {"stopSequence": 73, "arrival": {"time": "1694891644"}, "stopId": "42523"}, {"stopSequence": 74, "arrival": {"time": "1694891682"}, "stopId": "42524"}, {"stopSequence": 75, "arrival": {"time": "1694891774"}, "stopId": "42525"}, {"stopSequence": 76, "arrival": {"time": "1694891813"}, "stopId": "32700"}, {"stopSequence": 77, "arrival": {"time": "1694891869"}, "stopId": "36699"}, {"stopSequence": 78, "arrival": {"time": "1694891899"}, "stopId": "36700"}, {"stopSequence": 79, "arrival": {"time": "1694891939"}, "stopId": "36701"}, {"stopSequence": 80, "arrival": {"time": "1694891966"}, "stopId": "36702"}, {"stopSequence": 81, "arrival": {"time": "1694891983"}, "stopId": "36703"}, {"stopSequence": 82, "arrival": {"time": "1694892023"}, "stopId": "36704"}, {"stopSequence": 83, "arrival": {"time": "1694892060"}, "stopId": "36754"}, {"stopSequence": 84, "arrival": {"time": "1694892249"}, "stopId": "39666"}, {"stopSequence": 85, "arrival": {"time": "1694892299"}, "stopId": "39667"}, {"stopSequence": 86, "arrival": {"time": "1694892425"}, "stopId": "36936"}, {"stopSequence": 87, "arrival": {"time": "1694892590"}, "stopId": "49343"}], "vehicle": {"licensePlate": "RTZB58"}, "timestamp": "1694889016"}, "vehicle": {"trip": {"tripId": "15500-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "547", "directionId": 1}, "position": {"latitude": -36.712307, "longitude": -73.11486, "bearing": 134.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889016", "vehicle": {"licensePlate": "RTZB58"}}}, {"id": "abfd2798-82f7-48ba-867f-a4cfaf8dd07a", "tripUpdate": {"trip": {"tripId": "15501-701ff27f-2", "startTime": "15:30:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "547", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 16, "arrival": {"time": "1694889007"}, "stopId": "38397"}, {"stopSequence": 17, "arrival": {"time": "1694889068"}, "stopId": "38491"}, {"stopSequence": 18, "arrival": {"time": "1694889099"}, "stopId": "38424"}, {"stopSequence": 19, "arrival": {"time": "1694889151"}, "stopId": "38498"}, {"stopSequence": 20, "arrival": {"time": "1694889191"}, "stopId": "38393"}, {"stopSequence": 21, "arrival": {"time": "1694889341"}, "stopId": "40928"}, {"stopSequence": 22, "arrival": {"time": "1694889382"}, "stopId": "38572"}, {"stopSequence": 23, "arrival": {"time": "1694889441"}, "stopId": "38571"}, {"stopSequence": 24, "arrival": {"time": "1694889455"}, "stopId": "37447"}, {"stopSequence": 25, "arrival": {"time": "1694889476"}, "stopId": "40929"}, {"stopSequence": 26, "arrival": {"time": "1694889540"}, "stopId": "40946"}, {"stopSequence": 27, "arrival": {"time": "1694889595"}, "stopId": "40947"}, {"stopSequence": 28, "arrival": {"time": "1694889725"}, "stopId": "42853"}, {"stopSequence": 29, "arrival": {"time": "1694889855"}, "stopId": "42855"}, {"stopSequence": 30, "arrival": {"time": "1694889888"}, "stopId": "41975"}, {"stopSequence": 31, "arrival": {"time": "1694889917"}, "stopId": "42857"}, {"stopSequence": 32, "arrival": {"time": "1694889948"}, "stopId": "38697"}, {"stopSequence": 33, "arrival": {"time": "1694889991"}, "stopId": "38646"}, {"stopSequence": 34, "arrival": {"time": "1694890029"}, "stopId": "38632"}, {"stopSequence": 35, "arrival": {"time": "1694890098"}, "stopId": "38767"}, {"stopSequence": 36, "arrival": {"time": "1694890162"}, "stopId": "38768"}, {"stopSequence": 37, "arrival": {"time": "1694890205"}, "stopId": "38769"}, {"stopSequence": 38, "arrival": {"time": "1694890248"}, "stopId": "49357"}, {"stopSequence": 39, "arrival": {"time": "1694890289"}, "stopId": "38771"}, {"stopSequence": 40, "arrival": {"time": "1694890328"}, "stopId": "38668"}, {"stopSequence": 41, "arrival": {"time": "1694890428"}, "stopId": "38661"}, {"stopSequence": 42, "arrival": {"time": "1694890514"}, "stopId": "38657"}, {"stopSequence": 43, "arrival": {"time": "1694890575"}, "stopId": "38743"}, {"stopSequence": 44, "arrival": {"time": "1694890634"}, "stopId": "38652"}, {"stopSequence": 45, "arrival": {"time": "1694890707"}, "stopId": "38721"}, {"stopSequence": 46, "arrival": {"time": "1694890765"}, "stopId": "38659"}, {"stopSequence": 47, "arrival": {"time": "1694890854"}, "stopId": "38674"}, {"stopSequence": 48, "arrival": {"time": "1694890920"}, "stopId": "38649"}, {"stopSequence": 49, "arrival": {"time": "1694891066"}, "stopId": "38735"}, {"stopSequence": 50, "arrival": {"time": "1694891128"}, "stopId": "42270"}, {"stopSequence": 51, "arrival": {"time": "1694891185"}, "stopId": "42271"}, {"stopSequence": 52, "arrival": {"time": "1694891412"}, "stopId": "38688"}, {"stopSequence": 53, "arrival": {"time": "1694891470"}, "stopId": "38673"}, {"stopSequence": 54, "arrival": {"time": "1694891561"}, "stopId": "39785"}, {"stopSequence": 55, "arrival": {"time": "1694891607"}, "stopId": "38664"}, {"stopSequence": 56, "arrival": {"time": "1694891666"}, "stopId": "32631"}, {"stopSequence": 57, "arrival": {"time": "1694891748"}, "stopId": "32697"}, {"stopSequence": 58, "arrival": {"time": "1694891966"}, "stopId": "32699"}, {"stopSequence": 59, "arrival": {"time": "1694892039"}, "stopId": "42606"}, {"stopSequence": 60, "arrival": {"time": "1694892091"}, "stopId": "42607"}, {"stopSequence": 61, "arrival": {"time": "1694892167"}, "stopId": "42608"}, {"stopSequence": 62, "arrival": {"time": "1694892229"}, "stopId": "49335"}, {"stopSequence": 63, "arrival": {"time": "1694892298"}, "stopId": "49336"}, {"stopSequence": 64, "arrival": {"time": "1694892356"}, "stopId": "4831075"}, {"stopSequence": 65, "arrival": {"time": "1694892433"}, "stopId": "37437"}, {"stopSequence": 66, "arrival": {"time": "1694892500"}, "stopId": "49337"}, {"stopSequence": 67, "arrival": {"time": "1694892556"}, "stopId": "39661"}, {"stopSequence": 68, "arrival": {"time": "1694892617"}, "stopId": "39662"}, {"stopSequence": 69, "arrival": {"time": "1694892705"}, "stopId": "39663"}, {"stopSequence": 70, "arrival": {"time": "1694892776"}, "stopId": "39664"}, {"stopSequence": 71, "arrival": {"time": "1694892847"}, "stopId": "39665"}, {"stopSequence": 72, "arrival": {"time": "1694892978"}, "stopId": "42522"}, {"stopSequence": 73, "arrival": {"time": "1694893007"}, "stopId": "42523"}, {"stopSequence": 74, "arrival": {"time": "1694893063"}, "stopId": "42524"}, {"stopSequence": 75, "arrival": {"time": "1694893197"}, "stopId": "42525"}, {"stopSequence": 76, "arrival": {"time": "1694893254"}, "stopId": "32700"}, {"stopSequence": 77, "arrival": {"time": "1694893337"}, "stopId": "36699"}, {"stopSequence": 78, "arrival": {"time": "1694893381"}, "stopId": "36700"}, {"stopSequence": 79, "arrival": {"time": "1694893442"}, "stopId": "36701"}, {"stopSequence": 80, "arrival": {"time": "1694893483"}, "stopId": "36702"}, {"stopSequence": 81, "arrival": {"time": "1694893509"}, "stopId": "36703"}, {"stopSequence": 82, "arrival": {"time": "1694893569"}, "stopId": "36704"}, {"stopSequence": 83, "arrival": {"time": "1694893626"}, "stopId": "36754"}, {"stopSequence": 84, "arrival": {"time": "1694893920"}, "stopId": "39666"}, {"stopSequence": 85, "arrival": {"time": "1694893999"}, "stopId": "39667"}, {"stopSequence": 86, "arrival": {"time": "1694894202"}, "stopId": "36936"}, {"stopSequence": 87, "arrival": {"time": "1694894472"}, "stopId": "49343"}], "vehicle": {"licensePlate": "WE9167"}, "timestamp": "1694888974"}, "vehicle": {"trip": {"tripId": "15501-701ff27f-2", "startTime": "15:30:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "547", "directionId": 1}, "position": {"latitude": -36.716713, "longitude": -73.13235, "bearing": 188.0, "odometer": 0.0, "speed": 5.2777777}, "timestamp": "1694888974", "vehicle": {"licensePlate": "WE9167"}}}, {"id": "59d66b85-062b-4a2f-8419-9a21d2afe8fa", "tripUpdate": {"trip": {"tripId": "15579-701ff27f-2", "startTime": "15:22:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "549", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 4, "arrival": {"time": "1694889030"}, "stopId": "40347"}, {"stopSequence": 5, "arrival": {"time": "1694889085"}, "stopId": "40348"}, {"stopSequence": 6, "arrival": {"time": "1694889140"}, "stopId": "40349"}, {"stopSequence": 7, "arrival": {"time": "1694889266"}, "stopId": "32500"}, {"stopSequence": 8, "arrival": {"time": "1694889322"}, "stopId": "32501"}, {"stopSequence": 9, "arrival": {"time": "1694889373"}, "stopId": "32503"}, {"stopSequence": 10, "arrival": {"time": "1694889438"}, "stopId": "38491"}, {"stopSequence": 11, "arrival": {"time": "1694889476"}, "stopId": "38424"}, {"stopSequence": 12, "arrival": {"time": "1694889518"}, "stopId": "38498"}, {"stopSequence": 13, "arrival": {"time": "1694889556"}, "stopId": "38495"}, {"stopSequence": 14, "arrival": {"time": "1694889689"}, "stopId": "40928"}, {"stopSequence": 15, "arrival": {"time": "1694889736"}, "stopId": "37446"}, {"stopSequence": 16, "arrival": {"time": "1694889808"}, "stopId": "37447"}, {"stopSequence": 17, "arrival": {"time": "1694889828"}, "stopId": "40929"}, {"stopSequence": 18, "arrival": {"time": "1694889889"}, "stopId": "40946"}, {"stopSequence": 19, "arrival": {"time": "1694889941"}, "stopId": "40947"}, {"stopSequence": 20, "arrival": {"time": "1694890014"}, "stopId": "40932"}, {"stopSequence": 21, "arrival": {"time": "1694890073"}, "stopId": "42853"}, {"stopSequence": 22, "arrival": {"time": "1694890150"}, "stopId": "42854"}, {"stopSequence": 23, "arrival": {"time": "1694890194"}, "stopId": "38563"}, {"stopSequence": 24, "arrival": {"time": "1694890211"}, "stopId": "42855"}, {"stopSequence": 25, "arrival": {"time": "1694890243"}, "stopId": "41975"}, {"stopSequence": 26, "arrival": {"time": "1694890261"}, "stopId": "42857"}, {"stopSequence": 27, "arrival": {"time": "1694890307"}, "stopId": "38697"}, {"stopSequence": 28, "arrival": {"time": "1694890343"}, "stopId": "38646"}, {"stopSequence": 29, "arrival": {"time": "1694890379"}, "stopId": "38632"}, {"stopSequence": 30, "arrival": {"time": "1694890454"}, "stopId": "38767"}, {"stopSequence": 31, "arrival": {"time": "1694890523"}, "stopId": "38768"}, {"stopSequence": 32, "arrival": {"time": "1694890565"}, "stopId": "38769"}, {"stopSequence": 33, "arrival": {"time": "1694890600"}, "stopId": "49357"}, {"stopSequence": 34, "arrival": {"time": "1694890645"}, "stopId": "38771"}, {"stopSequence": 35, "arrival": {"time": "1694890690"}, "stopId": "38668"}, {"stopSequence": 36, "arrival": {"time": "1694890790"}, "stopId": "38661"}, {"stopSequence": 37, "arrival": {"time": "1694890867"}, "stopId": "38657"}, {"stopSequence": 38, "arrival": {"time": "1694890939"}, "stopId": "38743"}, {"stopSequence": 39, "arrival": {"time": "1694891002"}, "stopId": "38652"}, {"stopSequence": 40, "arrival": {"time": "1694891077"}, "stopId": "38721"}, {"stopSequence": 41, "arrival": {"time": "1694891139"}, "stopId": "38659"}, {"stopSequence": 42, "arrival": {"time": "1694891230"}, "stopId": "38674"}, {"stopSequence": 43, "arrival": {"time": "1694891302"}, "stopId": "38649"}, {"stopSequence": 44, "arrival": {"time": "1694891392"}, "stopId": "38718"}, {"stopSequence": 45, "arrival": {"time": "1694891459"}, "stopId": "38735"}, {"stopSequence": 46, "arrival": {"time": "1694891523"}, "stopId": "42270"}, {"stopSequence": 47, "arrival": {"time": "1694891586"}, "stopId": "42271"}, {"stopSequence": 48, "arrival": {"time": "1694891663"}, "stopId": "4838438"}, {"stopSequence": 49, "arrival": {"time": "1694891847"}, "stopId": "44896"}, {"stopSequence": 50, "arrival": {"time": "1694891908"}, "stopId": "44897"}, {"stopSequence": 51, "arrival": {"time": "1694892004"}, "stopId": "44898"}, {"stopSequence": 52, "arrival": {"time": "1694892235"}, "stopId": "40993"}, {"stopSequence": 53, "arrival": {"time": "1694892996"}, "stopId": "40995"}, {"stopSequence": 54, "arrival": {"time": "1694893144"}, "stopId": "40996"}, {"stopSequence": 55, "arrival": {"time": "1694893277"}, "stopId": "40997"}, {"stopSequence": 56, "arrival": {"time": "1694893387"}, "stopId": "39614"}, {"stopSequence": 57, "arrival": {"time": "1694893479"}, "stopId": "39615"}, {"stopSequence": 58, "arrival": {"time": "1694893576"}, "stopId": "39616"}, {"stopSequence": 59, "arrival": {"time": "1694893687"}, "stopId": "39617"}, {"stopSequence": 60, "arrival": {"time": "1694893808"}, "stopId": "39618"}, {"stopSequence": 61, "arrival": {"time": "1694893906"}, "stopId": "39619"}, {"stopSequence": 62, "arrival": {"time": "1694893991"}, "stopId": "39620"}, {"stopSequence": 63, "arrival": {"time": "1694894150"}, "stopId": "39621"}, {"stopSequence": 64, "arrival": {"time": "1694894264"}, "stopId": "38281"}, {"stopSequence": 65, "arrival": {"time": "1694894399"}, "stopId": "37506"}, {"stopSequence": 66, "arrival": {"time": "1694894500"}, "stopId": "45068"}, {"stopSequence": 67, "arrival": {"time": "1694894806"}, "stopId": "37480"}, {"stopSequence": 68, "arrival": {"time": "1694894978"}, "stopId": "37477"}, {"stopSequence": 69, "arrival": {"time": "1694895189"}, "stopId": "40848"}, {"stopSequence": 70, "arrival": {"time": "1694895452"}, "stopId": "2-Apr"}, {"stopSequence": 71, "arrival": {"time": "1694895642"}, "stopId": "39728"}, {"stopSequence": 72, "arrival": {"time": "1694895985"}, "stopId": "39729"}, {"stopSequence": 73, "arrival": {"time": "1694896055"}, "stopId": "39730"}, {"stopSequence": 74, "arrival": {"time": "1694896472"}, "stopId": "42200"}, {"stopSequence": 75, "arrival": {"time": "1694896650"}, "stopId": "42203"}, {"stopSequence": 76, "arrival": {"time": "1694896905"}, "stopId": "42204"}, {"stopSequence": 77, "arrival": {"time": "1694897049"}, "stopId": "42205"}, {"stopSequence": 78, "arrival": {"time": "1694897353"}, "stopId": "42201"}, {"stopSequence": 79, "arrival": {"time": "1694898719"}, "stopId": "42206"}, {"stopSequence": 80, "arrival": {"time": "1694899077"}, "stopId": "42207"}, {"stopSequence": 81, "arrival": {"time": "1694899520"}, "stopId": "42208"}, {"stopSequence": 82, "arrival": {"time": "1694900444"}, "stopId": "42564"}, {"stopSequence": 83, "arrival": {"time": "1694901372"}, "stopId": "42214"}, {"stopSequence": 84, "arrival": {"time": "1694902515"}, "stopId": "42209"}, {"stopSequence": 85, "arrival": {"time": "1694903939"}, "stopId": "42210"}, {"stopSequence": 86, "arrival": {"time": "1694906833"}, "stopId": "42215"}, {"stopSequence": 87, "arrival": {"time": "1694907414"}, "stopId": "42216"}, {"stopSequence": 88, "arrival": {"time": "1694908251"}, "stopId": "42217"}, {"stopSequence": 89, "arrival": {"time": "1694909970"}, "stopId": "42218"}, {"stopSequence": 90, "arrival": {"time": "1694910878"}, "stopId": "42219"}, {"stopSequence": 91, "arrival": {"time": "1694913948"}, "stopId": "42220"}, {"stopSequence": 92, "arrival": {"time": "1694915578"}, "stopId": "42221"}, {"stopSequence": 93, "arrival": {"time": "1694918530"}, "stopId": "42222"}, {"stopSequence": 94, "arrival": {"time": "1694922565"}, "stopId": "42223"}, {"stopSequence": 95, "arrival": {"time": "1694924107"}, "stopId": "42224"}, {"stopSequence": 96, "arrival": {"time": "1694930159"}, "stopId": "42225"}, {"stopSequence": 97, "arrival": {"time": "1694936912"}, "stopId": "42226"}, {"stopSequence": 98, "arrival": {"time": "1694944919"}, "stopId": "42227"}, {"stopSequence": 99, "arrival": {"time": "1694960811"}, "stopId": "42228"}, {"stopSequence": 100, "arrival": {"time": "1694974810"}, "stopId": "42229"}, {"stopSequence": 101, "arrival": {"time": "1695028960"}, "stopId": "42230"}, {"stopSequence": 102, "arrival": {"time": "1695089636"}, "stopId": "42231"}, {"stopSequence": 103, "arrival": {"time": "1696041280"}, "stopId": "42232"}], "vehicle": {"licensePlate": "CDSZ14"}, "timestamp": "1694889030"}, "vehicle": {"trip": {"tripId": "15579-701ff27f-2", "startTime": "15:22:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "549", "directionId": 1}, "position": {"latitude": -36.711826, "longitude": -73.13815, "bearing": 136.0, "odometer": 0.0, "speed": 4.0}, "timestamp": "1694889030", "vehicle": {"licensePlate": "CDSZ14"}}}, {"id": "50c3aba5-0be9-4791-98b4-8b95f05d81ae", "tripUpdate": {"trip": {"tripId": "15578-701ff27f-2", "startTime": "15:02:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "549", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 20, "arrival": {"time": "1694889018"}, "stopId": "40932"}, {"stopSequence": 21, "arrival": {"time": "1694889082"}, "stopId": "42853"}, {"stopSequence": 22, "arrival": {"time": "1694889164"}, "stopId": "42854"}, {"stopSequence": 23, "arrival": {"time": "1694889211"}, "stopId": "38563"}, {"stopSequence": 24, "arrival": {"time": "1694889229"}, "stopId": "42855"}, {"stopSequence": 25, "arrival": {"time": "1694889263"}, "stopId": "41975"}, {"stopSequence": 26, "arrival": {"time": "1694889282"}, "stopId": "42857"}, {"stopSequence": 27, "arrival": {"time": "1694889329"}, "stopId": "38697"}, {"stopSequence": 28, "arrival": {"time": "1694889366"}, "stopId": "38646"}, {"stopSequence": 29, "arrival": {"time": "1694889403"}, "stopId": "38632"}, {"stopSequence": 30, "arrival": {"time": "1694889479"}, "stopId": "38767"}, {"stopSequence": 31, "arrival": {"time": "1694889548"}, "stopId": "38768"}, {"stopSequence": 32, "arrival": {"time": "1694889590"}, "stopId": "38769"}, {"stopSequence": 33, "arrival": {"time": "1694889624"}, "stopId": "49357"}, {"stopSequence": 34, "arrival": {"time": "1694889668"}, "stopId": "38771"}, {"stopSequence": 35, "arrival": {"time": "1694889711"}, "stopId": "38668"}, {"stopSequence": 36, "arrival": {"time": "1694889807"}, "stopId": "38661"}, {"stopSequence": 37, "arrival": {"time": "1694889880"}, "stopId": "38657"}, {"stopSequence": 38, "arrival": {"time": "1694889947"}, "stopId": "38743"}, {"stopSequence": 39, "arrival": {"time": "1694890005"}, "stopId": "38652"}, {"stopSequence": 40, "arrival": {"time": "1694890074"}, "stopId": "38721"}, {"stopSequence": 41, "arrival": {"time": "1694890129"}, "stopId": "38659"}, {"stopSequence": 42, "arrival": {"time": "1694890211"}, "stopId": "38674"}, {"stopSequence": 43, "arrival": {"time": "1694890273"}, "stopId": "38649"}, {"stopSequence": 44, "arrival": {"time": "1694890352"}, "stopId": "38718"}, {"stopSequence": 45, "arrival": {"time": "1694890409"}, "stopId": "38735"}, {"stopSequence": 46, "arrival": {"time": "1694890464"}, "stopId": "42270"}, {"stopSequence": 47, "arrival": {"time": "1694890517"}, "stopId": "42271"}, {"stopSequence": 48, "arrival": {"time": "1694890582"}, "stopId": "4838438"}, {"stopSequence": 49, "arrival": {"time": "1694890733"}, "stopId": "44896"}, {"stopSequence": 50, "arrival": {"time": "1694890783"}, "stopId": "44897"}, {"stopSequence": 51, "arrival": {"time": "1694890859"}, "stopId": "44898"}, {"stopSequence": 52, "arrival": {"time": "1694891041"}, "stopId": "40993"}, {"stopSequence": 53, "arrival": {"time": "1694891606"}, "stopId": "40995"}, {"stopSequence": 54, "arrival": {"time": "1694891711"}, "stopId": "40996"}, {"stopSequence": 55, "arrival": {"time": "1694891804"}, "stopId": "40997"}, {"stopSequence": 56, "arrival": {"time": "1694891880"}, "stopId": "39614"}, {"stopSequence": 57, "arrival": {"time": "1694891943"}, "stopId": "39615"}, {"stopSequence": 58, "arrival": {"time": "1694892008"}, "stopId": "39616"}, {"stopSequence": 59, "arrival": {"time": "1694892083"}, "stopId": "39617"}, {"stopSequence": 60, "arrival": {"time": "1694892163"}, "stopId": "39618"}, {"stopSequence": 61, "arrival": {"time": "1694892228"}, "stopId": "39619"}, {"stopSequence": 62, "arrival": {"time": "1694892283"}, "stopId": "39620"}, {"stopSequence": 63, "arrival": {"time": "1694892386"}, "stopId": "39621"}, {"stopSequence": 64, "arrival": {"time": "1694892458"}, "stopId": "38281"}, {"stopSequence": 65, "arrival": {"time": "1694892543"}, "stopId": "37506"}, {"stopSequence": 66, "arrival": {"time": "1694892607"}, "stopId": "45068"}, {"stopSequence": 67, "arrival": {"time": "1694892795"}, "stopId": "37480"}, {"stopSequence": 68, "arrival": {"time": "1694892898"}, "stopId": "37477"}, {"stopSequence": 69, "arrival": {"time": "1694893023"}, "stopId": "40848"}, {"stopSequence": 70, "arrival": {"time": "1694893176"}, "stopId": "2-Apr"}, {"stopSequence": 71, "arrival": {"time": "1694893285"}, "stopId": "39728"}, {"stopSequence": 72, "arrival": {"time": "1694893478"}, "stopId": "39729"}, {"stopSequence": 73, "arrival": {"time": "1694893516"}, "stopId": "39730"}, {"stopSequence": 74, "arrival": {"time": "1694893743"}, "stopId": "42200"}, {"stopSequence": 75, "arrival": {"time": "1694893837"}, "stopId": "42203"}, {"stopSequence": 76, "arrival": {"time": "1694893970"}, "stopId": "42204"}, {"stopSequence": 77, "arrival": {"time": "1694894045"}, "stopId": "42205"}, {"stopSequence": 78, "arrival": {"time": "1694894199"}, "stopId": "42201"}, {"stopSequence": 79, "arrival": {"time": "1694894855"}, "stopId": "42206"}, {"stopSequence": 80, "arrival": {"time": "1694895017"}, "stopId": "42207"}, {"stopSequence": 81, "arrival": {"time": "1694895213"}, "stopId": "42208"}, {"stopSequence": 82, "arrival": {"time": "1694895605"}, "stopId": "42564"}, {"stopSequence": 83, "arrival": {"time": "1694895977"}, "stopId": "42214"}, {"stopSequence": 84, "arrival": {"time": "1694896408"}, "stopId": "42209"}, {"stopSequence": 85, "arrival": {"time": "1694896907"}, "stopId": "42210"}, {"stopSequence": 86, "arrival": {"time": "1694897813"}, "stopId": "42215"}, {"stopSequence": 87, "arrival": {"time": "1694897979"}, "stopId": "42216"}, {"stopSequence": 88, "arrival": {"time": "1694898210"}, "stopId": "42217"}, {"stopSequence": 89, "arrival": {"time": "1694898657"}, "stopId": "42218"}, {"stopSequence": 90, "arrival": {"time": "1694898879"}, "stopId": "42219"}, {"stopSequence": 91, "arrival": {"time": "1694899566"}, "stopId": "42220"}, {"stopSequence": 92, "arrival": {"time": "1694899895"}, "stopId": "42221"}, {"stopSequence": 93, "arrival": {"time": "1694900440"}, "stopId": "42222"}, {"stopSequence": 94, "arrival": {"time": "1694901091"}, "stopId": "42223"}, {"stopSequence": 95, "arrival": {"time": "1694901315"}, "stopId": "42224"}, {"stopSequence": 96, "arrival": {"time": "1694902092"}, "stopId": "42225"}, {"stopSequence": 97, "arrival": {"time": "1694902800"}, "stopId": "42226"}, {"stopSequence": 98, "arrival": {"time": "1694903482"}, "stopId": "42227"}, {"stopSequence": 99, "arrival": {"time": "1694904492"}, "stopId": "42228"}, {"stopSequence": 100, "arrival": {"time": "1694905136"}, "stopId": "42229"}, {"stopSequence": 101, "arrival": {"time": "1694906582"}, "stopId": "42230"}, {"stopSequence": 102, "arrival": {"time": "1694907369"}, "stopId": "42231"}, {"stopSequence": 103, "arrival": {"time": "1694909074"}, "stopId": "42232"}, {"stopSequence": 104, "arrival": {"time": "1694911310"}, "stopId": "42233"}, {"stopSequence": 105, "arrival": {"time": "1694912515"}, "stopId": "42234"}, {"stopSequence": 106, "arrival": {"time": "1694916128"}, "stopId": "42211"}, {"stopSequence": 107, "arrival": {"time": "1694919817"}, "stopId": "91142"}, {"stopSequence": 108, "arrival": {"time": "1694923581"}, "stopId": "91143"}, {"stopSequence": 109, "arrival": {"time": "1694927882"}, "stopId": "91144"}, {"stopSequence": 110, "arrival": {"time": "1694935303"}, "stopId": "91145"}, {"stopSequence": 111, "arrival": {"time": "1694944797"}, "stopId": "34560"}, {"stopSequence": 112, "arrival": {"time": "1694952398"}, "stopId": "42273"}, {"stopSequence": 113, "arrival": {"time": "1694954086"}, "stopId": "34415"}, {"stopSequence": 114, "arrival": {"time": "1694985795"}, "stopId": "42077"}], "vehicle": {"licensePlate": "DFGG76"}, "timestamp": "1694888939"}, "vehicle": {"trip": {"tripId": "15578-701ff27f-2", "startTime": "15:02:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "549", "directionId": 1}, "position": {"latitude": -36.724133, "longitude": -73.11953, "bearing": 120.0, "odometer": 0.0, "speed": 4.0}, "timestamp": "1694889029", "vehicle": {"licensePlate": "DFGG76"}}}, {"id": "260ad30b-cfbc-4479-ae1d-547c95996440", "tripUpdate": {"trip": {"tripId": "15576-701ff27f-2", "startTime": "14:22:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "549", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 63, "arrival": {"time": "1694889063"}, "stopId": "39621"}, {"stopSequence": 64, "arrival": {"time": "1694889114"}, "stopId": "38281"}, {"stopSequence": 65, "arrival": {"time": "1694889173"}, "stopId": "37506"}, {"stopSequence": 66, "arrival": {"time": "1694889215"}, "stopId": "45068"}, {"stopSequence": 67, "arrival": {"time": "1694889334"}, "stopId": "37480"}, {"stopSequence": 68, "arrival": {"time": "1694889397"}, "stopId": "37477"}, {"stopSequence": 69, "arrival": {"time": "1694889469"}, "stopId": "40848"}, {"stopSequence": 70, "arrival": {"time": "1694889554"}, "stopId": "2-Apr"}, {"stopSequence": 71, "arrival": {"time": "1694889612"}, "stopId": "39728"}, {"stopSequence": 72, "arrival": {"time": "1694889709"}, "stopId": "39729"}, {"stopSequence": 73, "arrival": {"time": "1694889728"}, "stopId": "39730"}, {"stopSequence": 74, "arrival": {"time": "1694889834"}, "stopId": "42200"}, {"stopSequence": 75, "arrival": {"time": "1694889877"}, "stopId": "42203"}, {"stopSequence": 76, "arrival": {"time": "1694889935"}, "stopId": "42204"}, {"stopSequence": 77, "arrival": {"time": "1694889966"}, "stopId": "42205"}, {"stopSequence": 78, "arrival": {"time": "1694890030"}, "stopId": "42201"}, {"stopSequence": 79, "arrival": {"time": "1694890273"}, "stopId": "42206"}, {"stopSequence": 80, "arrival": {"time": "1694890328"}, "stopId": "42207"}, {"stopSequence": 81, "arrival": {"time": "1694890392"}, "stopId": "42208"}, {"stopSequence": 82, "arrival": {"time": "1694890511"}, "stopId": "42564"}, {"stopSequence": 83, "arrival": {"time": "1694890617"}, "stopId": "42214"}, {"stopSequence": 84, "arrival": {"time": "1694890730"}, "stopId": "42209"}, {"stopSequence": 85, "arrival": {"time": "1694890850"}, "stopId": "42210"}, {"stopSequence": 86, "arrival": {"time": "1694891045"}, "stopId": "42215"}, {"stopSequence": 87, "arrival": {"time": "1694891078"}, "stopId": "42216"}, {"stopSequence": 88, "arrival": {"time": "1694891122"}, "stopId": "42217"}, {"stopSequence": 89, "arrival": {"time": "1694891204"}, "stopId": "42218"}, {"stopSequence": 90, "arrival": {"time": "1694891243"}, "stopId": "42219"}, {"stopSequence": 91, "arrival": {"time": "1694891355"}, "stopId": "42220"}, {"stopSequence": 92, "arrival": {"time": "1694891406"}, "stopId": "42221"}, {"stopSequence": 93, "arrival": {"time": "1694891484"}, "stopId": "42222"}, {"stopSequence": 94, "arrival": {"time": "1694891572"}, "stopId": "42223"}, {"stopSequence": 95, "arrival": {"time": "1694891601"}, "stopId": "42224"}, {"stopSequence": 96, "arrival": {"time": "1694891695"}, "stopId": "42225"}, {"stopSequence": 97, "arrival": {"time": "1694891774"}, "stopId": "42226"}, {"stopSequence": 98, "arrival": {"time": "1694891844"}, "stopId": "42227"}, {"stopSequence": 99, "arrival": {"time": "1694891941"}, "stopId": "42228"}, {"stopSequence": 100, "arrival": {"time": "1694891997"}, "stopId": "42229"}, {"stopSequence": 101, "arrival": {"time": "1694892113"}, "stopId": "42230"}, {"stopSequence": 102, "arrival": {"time": "1694892170"}, "stopId": "42231"}, {"stopSequence": 103, "arrival": {"time": "1694892282"}, "stopId": "42232"}, {"stopSequence": 104, "arrival": {"time": "1694892408"}, "stopId": "42233"}, {"stopSequence": 105, "arrival": {"time": "1694892468"}, "stopId": "42234"}, {"stopSequence": 106, "arrival": {"time": "1694892622"}, "stopId": "42211"}, {"stopSequence": 107, "arrival": {"time": "1694892748"}, "stopId": "91142"}, {"stopSequence": 108, "arrival": {"time": "1694892852"}, "stopId": "91143"}, {"stopSequence": 109, "arrival": {"time": "1694892951"}, "stopId": "91144"}, {"stopSequence": 110, "arrival": {"time": "1694893083"}, "stopId": "91145"}, {"stopSequence": 111, "arrival": {"time": "1694893206"}, "stopId": "34560"}, {"stopSequence": 112, "arrival": {"time": "1694893280"}, "stopId": "42273"}, {"stopSequence": 113, "arrival": {"time": "1694893294"}, "stopId": "34415"}, {"stopSequence": 114, "arrival": {"time": "1694893477"}, "stopId": "42077"}], "vehicle": {"licensePlate": "DTRK63"}, "timestamp": "1694889027"}, "vehicle": {"trip": {"tripId": "15576-701ff27f-2", "startTime": "14:22:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "549", "directionId": 1}, "position": {"latitude": -36.82024, "longitude": -73.0442, "bearing": 156.0, "odometer": 0.0, "speed": 37.0}, "timestamp": "1694889027", "vehicle": {"licensePlate": "DTRK63"}}}, {"id": "8330168b-afaf-4925-8963-c50c5715f42a", "tripUpdate": {"trip": {"tripId": "15630-701ff27f-2", "startTime": "14:15:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "549", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 96, "arrival": {"time": "1694889054"}, "stopId": "42857"}, {"stopSequence": 97, "arrival": {"time": "1694889087"}, "stopId": "38562"}, {"stopSequence": 98, "arrival": {"time": "1694889136"}, "stopId": "38563"}, {"stopSequence": 99, "arrival": {"time": "1694889176"}, "stopId": "38564"}, {"stopSequence": 100, "arrival": {"time": "1694889273"}, "stopId": "38565"}, {"stopSequence": 101, "arrival": {"time": "1694889336"}, "stopId": "37448"}, {"stopSequence": 102, "arrival": {"time": "1694889367"}, "stopId": "38566"}, {"stopSequence": 103, "arrival": {"time": "1694889399"}, "stopId": "38567"}, {"stopSequence": 104, "arrival": {"time": "1694889446"}, "stopId": "38568"}, {"stopSequence": 105, "arrival": {"time": "1694889475"}, "stopId": "38569"}, {"stopSequence": 106, "arrival": {"time": "1694889517"}, "stopId": "38570"}, {"stopSequence": 107, "arrival": {"time": "1694889571"}, "stopId": "38571"}, {"stopSequence": 108, "arrival": {"time": "1694889623"}, "stopId": "38572"}, {"stopSequence": 109, "arrival": {"time": "1694889787"}, "stopId": "38393"}, {"stopSequence": 110, "arrival": {"time": "1694889877"}, "stopId": "38395"}, {"stopSequence": 111, "arrival": {"time": "1694889912"}, "stopId": "38396"}, {"stopSequence": 112, "arrival": {"time": "1694889971"}, "stopId": "38397"}, {"stopSequence": 113, "arrival": {"time": "1694890025"}, "stopId": "41928"}, {"stopSequence": 114, "arrival": {"time": "1694890070"}, "stopId": "41929"}, {"stopSequence": 115, "arrival": {"time": "1694890161"}, "stopId": "40545"}, {"stopSequence": 116, "arrival": {"time": "1694890218"}, "stopId": "40546"}, {"stopSequence": 117, "arrival": {"time": "1694890246"}, "stopId": "40547"}, {"stopSequence": 118, "arrival": {"time": "1694890294"}, "stopId": "40548"}, {"stopSequence": 119, "arrival": {"time": "1694890342"}, "stopId": "40589"}, {"stopSequence": 120, "arrival": {"time": "1694890369"}, "stopId": "40590"}, {"stopSequence": 121, "arrival": {"time": "1694890489"}, "stopId": "40592"}, {"stopSequence": 122, "arrival": {"time": "1694890648"}, "stopId": "41947"}], "vehicle": {"licensePlate": "FXRL44"}, "timestamp": "1694889028"}, "vehicle": {"trip": {"tripId": "15630-701ff27f-2", "startTime": "14:15:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "549", "directionId": 0}, "position": {"latitude": -36.71184, "longitude": -73.11503, "bearing": 206.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889028", "vehicle": {"licensePlate": "FXRL44"}}}, {"id": "f108f547-1656-4d46-8fbd-d88f7a0b5fc5", "tripUpdate": {"trip": {"tripId": "15633-701ff27f-2", "startTime": "15:15:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "549", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 22, "arrival": {"time": "1694889095"}, "stopId": "42285"}, {"stopSequence": 23, "arrival": {"time": "1694889188"}, "stopId": "42286"}, {"stopSequence": 24, "arrival": {"time": "1694889205"}, "stopId": "42287"}, {"stopSequence": 25, "arrival": {"time": "1694889263"}, "stopId": "42288"}, {"stopSequence": 26, "arrival": {"time": "1694889300"}, "stopId": "42289"}, {"stopSequence": 27, "arrival": {"time": "1694889377"}, "stopId": "42290"}, {"stopSequence": 28, "arrival": {"time": "1694889435"}, "stopId": "42291"}, {"stopSequence": 29, "arrival": {"time": "1694889520"}, "stopId": "42292"}, {"stopSequence": 30, "arrival": {"time": "1694889592"}, "stopId": "42293"}, {"stopSequence": 31, "arrival": {"time": "1694889765"}, "stopId": "42294"}, {"stopSequence": 32, "arrival": {"time": "1694889884"}, "stopId": "42295"}, {"stopSequence": 33, "arrival": {"time": "1694889992"}, "stopId": "42296"}, {"stopSequence": 34, "arrival": {"time": "1694890127"}, "stopId": "42297"}, {"stopSequence": 35, "arrival": {"time": "1694890218"}, "stopId": "42298"}, {"stopSequence": 36, "arrival": {"time": "1694890443"}, "stopId": "49296"}, {"stopSequence": 37, "arrival": {"time": "1694890528"}, "stopId": "49297"}, {"stopSequence": 38, "arrival": {"time": "1694890563"}, "stopId": "49298"}, {"stopSequence": 39, "arrival": {"time": "1694890632"}, "stopId": "49299"}, {"stopSequence": 40, "arrival": {"time": "1694890673"}, "stopId": "49300"}, {"stopSequence": 41, "arrival": {"time": "1694890760"}, "stopId": "49301"}, {"stopSequence": 42, "arrival": {"time": "1694890830"}, "stopId": "49302"}, {"stopSequence": 43, "arrival": {"time": "1694890876"}, "stopId": "49303"}, {"stopSequence": 44, "arrival": {"time": "1694890930"}, "stopId": "49304"}, {"stopSequence": 45, "arrival": {"time": "1694890959"}, "stopId": "49305"}, {"stopSequence": 46, "arrival": {"time": "1694891019"}, "stopId": "49306"}, {"stopSequence": 47, "arrival": {"time": "1694891062"}, "stopId": "49307"}, {"stopSequence": 48, "arrival": {"time": "1694891080"}, "stopId": "49308"}, {"stopSequence": 49, "arrival": {"time": "1694891107"}, "stopId": "49309"}, {"stopSequence": 50, "arrival": {"time": "1694891144"}, "stopId": "42315"}, {"stopSequence": 51, "arrival": {"time": "1694891162"}, "stopId": "42316"}, {"stopSequence": 52, "arrival": {"time": "1694891225"}, "stopId": "42317"}, {"stopSequence": 53, "arrival": {"time": "1694891274"}, "stopId": "42318"}, {"stopSequence": 54, "arrival": {"time": "1694891359"}, "stopId": "8606396"}, {"stopSequence": 55, "arrival": {"time": "1694891446"}, "stopId": "38514"}, {"stopSequence": 56, "arrival": {"time": "1694891495"}, "stopId": "38516"}, {"stopSequence": 57, "arrival": {"time": "1694891563"}, "stopId": "38518"}, {"stopSequence": 58, "arrival": {"time": "1694891684"}, "stopId": "38520"}, {"stopSequence": 59, "arrival": {"time": "1694891733"}, "stopId": "38521"}, {"stopSequence": 60, "arrival": {"time": "1694891794"}, "stopId": "38522"}, {"stopSequence": 61, "arrival": {"time": "1694891858"}, "stopId": "38523"}, {"stopSequence": 62, "arrival": {"time": "1694891925"}, "stopId": "38524"}, {"stopSequence": 63, "arrival": {"time": "1694891989"}, "stopId": "38525"}, {"stopSequence": 64, "arrival": {"time": "1694892058"}, "stopId": "38526"}, {"stopSequence": 65, "arrival": {"time": "1694892123"}, "stopId": "38527"}, {"stopSequence": 66, "arrival": {"time": "1694892238"}, "stopId": "38528"}, {"stopSequence": 67, "arrival": {"time": "1694892409"}, "stopId": "38529"}, {"stopSequence": 68, "arrival": {"time": "1694892751"}, "stopId": "16005209"}, {"stopSequence": 69, "arrival": {"time": "1694893150"}, "stopId": "38531"}, {"stopSequence": 70, "arrival": {"time": "1694893250"}, "stopId": "8921285"}, {"stopSequence": 71, "arrival": {"time": "1694893455"}, "stopId": "38532"}, {"stopSequence": 72, "arrival": {"time": "1694893564"}, "stopId": "38533"}, {"stopSequence": 73, "arrival": {"time": "1694893661"}, "stopId": "38534"}, {"stopSequence": 74, "arrival": {"time": "1694893754"}, "stopId": "38535"}, {"stopSequence": 75, "arrival": {"time": "1694893913"}, "stopId": "38536"}, {"stopSequence": 76, "arrival": {"time": "1694893974"}, "stopId": "4838437"}, {"stopSequence": 77, "arrival": {"time": "1694894110"}, "stopId": "45085"}, {"stopSequence": 78, "arrival": {"time": "1694894290"}, "stopId": "45086"}, {"stopSequence": 79, "arrival": {"time": "1694894421"}, "stopId": "38539"}, {"stopSequence": 80, "arrival": {"time": "1694894591"}, "stopId": "38540"}, {"stopSequence": 81, "arrival": {"time": "1694894782"}, "stopId": "38544"}, {"stopSequence": 82, "arrival": {"time": "1694894968"}, "stopId": "38545"}, {"stopSequence": 83, "arrival": {"time": "1694895255"}, "stopId": "38546"}, {"stopSequence": 84, "arrival": {"time": "1694895640"}, "stopId": "38548"}, {"stopSequence": 85, "arrival": {"time": "1694895864"}, "stopId": "38549"}, {"stopSequence": 86, "arrival": {"time": "1694896074"}, "stopId": "38550"}, {"stopSequence": 87, "arrival": {"time": "1694896439"}, "stopId": "38551"}, {"stopSequence": 88, "arrival": {"time": "1694896791"}, "stopId": "38552"}, {"stopSequence": 89, "arrival": {"time": "1694897145"}, "stopId": "49359"}, {"stopSequence": 90, "arrival": {"time": "1694897389"}, "stopId": "49360"}, {"stopSequence": 91, "arrival": {"time": "1694897954"}, "stopId": "49361"}, {"stopSequence": 92, "arrival": {"time": "1694898382"}, "stopId": "49363"}, {"stopSequence": 93, "arrival": {"time": "1694898665"}, "stopId": "49364"}, {"stopSequence": 94, "arrival": {"time": "1694898946"}, "stopId": "49365"}, {"stopSequence": 95, "arrival": {"time": "1694899360"}, "stopId": "38560"}, {"stopSequence": 96, "arrival": {"time": "1694899596"}, "stopId": "42857"}, {"stopSequence": 97, "arrival": {"time": "1694899824"}, "stopId": "38562"}, {"stopSequence": 98, "arrival": {"time": "1694900176"}, "stopId": "38563"}, {"stopSequence": 99, "arrival": {"time": "1694900483"}, "stopId": "38564"}, {"stopSequence": 100, "arrival": {"time": "1694901302"}, "stopId": "38565"}, {"stopSequence": 101, "arrival": {"time": "1694901895"}, "stopId": "37448"}, {"stopSequence": 102, "arrival": {"time": "1694902218"}, "stopId": "38566"}, {"stopSequence": 103, "arrival": {"time": "1694902559"}, "stopId": "38567"}, {"stopSequence": 104, "arrival": {"time": "1694903093"}, "stopId": "38568"}, {"stopSequence": 105, "arrival": {"time": "1694903438"}, "stopId": "38569"}, {"stopSequence": 106, "arrival": {"time": "1694903979"}, "stopId": "38570"}, {"stopSequence": 107, "arrival": {"time": "1694904748"}, "stopId": "38571"}, {"stopSequence": 108, "arrival": {"time": "1694905547"}, "stopId": "38572"}, {"stopSequence": 109, "arrival": {"time": "1694908673"}, "stopId": "38393"}, {"stopSequence": 110, "arrival": {"time": "1694910957"}, "stopId": "38395"}, {"stopSequence": 111, "arrival": {"time": "1694911949"}, "stopId": "38396"}, {"stopSequence": 112, "arrival": {"time": "1694913898"}, "stopId": "38397"}, {"stopSequence": 113, "arrival": {"time": "1694915986"}, "stopId": "41928"}, {"stopSequence": 114, "arrival": {"time": "1694917953"}, "stopId": "41929"}, {"stopSequence": 115, "arrival": {"time": "1694922995"}, "stopId": "40545"}, {"stopSequence": 116, "arrival": {"time": "1694927175"}, "stopId": "40546"}, {"stopSequence": 117, "arrival": {"time": "1694929545"}, "stopId": "40547"}, {"stopSequence": 118, "arrival": {"time": "1694934411"}, "stopId": "40548"}, {"stopSequence": 119, "arrival": {"time": "1694940494"}, "stopId": "40589"}, {"stopSequence": 120, "arrival": {"time": "1694944764"}, "stopId": "40590"}, {"stopSequence": 121, "arrival": {"time": "1694975632"}, "stopId": "40592"}, {"stopSequence": 122, "arrival": {"time": "1695195524"}, "stopId": "41947"}], "vehicle": {"licensePlate": "YS3102"}, "timestamp": "1694889030"}, "vehicle": {"trip": {"tripId": "15633-701ff27f-2", "startTime": "15:15:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "549", "directionId": 0}, "position": {"latitude": -36.922283, "longitude": -73.02663, "bearing": 346.0, "odometer": 0.0, "speed": 26.0}, "timestamp": "1694889030", "vehicle": {"licensePlate": "YS3102"}}}, {"id": "a5752e7e-5dd3-4158-a68a-cc46f75e457f", "tripUpdate": {"trip": {"tripId": "15744-701ff27f-2", "startTime": "15:20:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "550", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 3, "arrival": {"time": "1694889082"}, "stopId": "38511"}, {"stopSequence": 4, "arrival": {"time": "1694889128"}, "stopId": "38482"}, {"stopSequence": 5, "arrival": {"time": "1694889154"}, "stopId": "38440"}, {"stopSequence": 6, "arrival": {"time": "1694889184"}, "stopId": "38446"}, {"stopSequence": 7, "arrival": {"time": "1694889247"}, "stopId": "38491"}, {"stopSequence": 8, "arrival": {"time": "1694889285"}, "stopId": "38424"}, {"stopSequence": 9, "arrival": {"time": "1694889330"}, "stopId": "38394"}, {"stopSequence": 10, "arrival": {"time": "1694889366"}, "stopId": "38495"}, {"stopSequence": 11, "arrival": {"time": "1694889501"}, "stopId": "40928"}, {"stopSequence": 12, "arrival": {"time": "1694889549"}, "stopId": "37446"}, {"stopSequence": 13, "arrival": {"time": "1694889621"}, "stopId": "37447"}, {"stopSequence": 14, "arrival": {"time": "1694889642"}, "stopId": "40929"}, {"stopSequence": 15, "arrival": {"time": "1694889704"}, "stopId": "40946"}, {"stopSequence": 16, "arrival": {"time": "1694889756"}, "stopId": "40947"}, {"stopSequence": 17, "arrival": {"time": "1694889886"}, "stopId": "49356"}, {"stopSequence": 18, "arrival": {"time": "1694889951"}, "stopId": "49357"}, {"stopSequence": 19, "arrival": {"time": "1694889990"}, "stopId": "38771"}, {"stopSequence": 20, "arrival": {"time": "1694890032"}, "stopId": "38668"}, {"stopSequence": 21, "arrival": {"time": "1694890128"}, "stopId": "38661"}, {"stopSequence": 22, "arrival": {"time": "1694890201"}, "stopId": "38657"}, {"stopSequence": 23, "arrival": {"time": "1694890268"}, "stopId": "38743"}, {"stopSequence": 24, "arrival": {"time": "1694890325"}, "stopId": "38652"}, {"stopSequence": 25, "arrival": {"time": "1694890396"}, "stopId": "38721"}, {"stopSequence": 26, "arrival": {"time": "1694890452"}, "stopId": "38659"}, {"stopSequence": 27, "arrival": {"time": "1694890532"}, "stopId": "38674"}, {"stopSequence": 28, "arrival": {"time": "1694890599"}, "stopId": "38649"}, {"stopSequence": 29, "arrival": {"time": "1694890679"}, "stopId": "38718"}, {"stopSequence": 30, "arrival": {"time": "1694890738"}, "stopId": "38735"}, {"stopSequence": 31, "arrival": {"time": "1694890794"}, "stopId": "42270"}, {"stopSequence": 32, "arrival": {"time": "1694890849"}, "stopId": "42271"}, {"stopSequence": 33, "arrival": {"time": "1694890916"}, "stopId": "4838438"}, {"stopSequence": 34, "arrival": {"time": "1694891072"}, "stopId": "44896"}, {"stopSequence": 35, "arrival": {"time": "1694891124"}, "stopId": "44897"}, {"stopSequence": 36, "arrival": {"time": "1694891204"}, "stopId": "44898"}, {"stopSequence": 37, "arrival": {"time": "1694891386"}, "stopId": "40993"}, {"stopSequence": 38, "arrival": {"time": "1694891997"}, "stopId": "40995"}, {"stopSequence": 39, "arrival": {"time": "1694892105"}, "stopId": "40996"}, {"stopSequence": 40, "arrival": {"time": "1694892211"}, "stopId": "40997"}, {"stopSequence": 41, "arrival": {"time": "1694892293"}, "stopId": "39614"}, {"stopSequence": 42, "arrival": {"time": "1694892361"}, "stopId": "39615"}, {"stopSequence": 43, "arrival": {"time": "1694892433"}, "stopId": "39616"}, {"stopSequence": 44, "arrival": {"time": "1694892514"}, "stopId": "39617"}, {"stopSequence": 45, "arrival": {"time": "1694892602"}, "stopId": "39618"}, {"stopSequence": 46, "arrival": {"time": "1694892644"}, "stopId": "38521"}, {"stopSequence": 47, "arrival": {"time": "1694892671"}, "stopId": "39619"}, {"stopSequence": 48, "arrival": {"time": "1694892736"}, "stopId": "39620"}, {"stopSequence": 49, "arrival": {"time": "1694892847"}, "stopId": "39621"}, {"stopSequence": 50, "arrival": {"time": "1694892927"}, "stopId": "38281"}, {"stopSequence": 51, "arrival": {"time": "1694893021"}, "stopId": "37506"}, {"stopSequence": 52, "arrival": {"time": "1694893092"}, "stopId": "45068"}, {"stopSequence": 53, "arrival": {"time": "1694893308"}, "stopId": "37480"}, {"stopSequence": 54, "arrival": {"time": "1694893436"}, "stopId": "37477"}, {"stopSequence": 55, "arrival": {"time": "1694893569"}, "stopId": "40848"}, {"stopSequence": 56, "arrival": {"time": "1694893743"}, "stopId": "2-Apr"}, {"stopSequence": 57, "arrival": {"time": "1694893854"}, "stopId": "39728"}, {"stopSequence": 58, "arrival": {"time": "1694894075"}, "stopId": "39729"}, {"stopSequence": 59, "arrival": {"time": "1694894131"}, "stopId": "39730"}, {"stopSequence": 60, "arrival": {"time": "1694894387"}, "stopId": "42200"}, {"stopSequence": 61, "arrival": {"time": "1694894494"}, "stopId": "42203"}, {"stopSequence": 62, "arrival": {"time": "1694894774"}, "stopId": "49301"}, {"stopSequence": 63, "arrival": {"time": "1694895202"}, "stopId": "42204"}, {"stopSequence": 64, "arrival": {"time": "1694895302"}, "stopId": "42205"}, {"stopSequence": 65, "arrival": {"time": "1694895492"}, "stopId": "42201"}, {"stopSequence": 66, "arrival": {"time": "1694896362"}, "stopId": "42206"}, {"stopSequence": 67, "arrival": {"time": "1694896614"}, "stopId": "42207"}, {"stopSequence": 68, "arrival": {"time": "1694896867"}, "stopId": "42208"}, {"stopSequence": 69, "arrival": {"time": "1694897469"}, "stopId": "42564"}, {"stopSequence": 70, "arrival": {"time": "1694897968"}, "stopId": "42214"}, {"stopSequence": 71, "arrival": {"time": "1694898607"}, "stopId": "42209"}, {"stopSequence": 72, "arrival": {"time": "1694899313"}, "stopId": "42210"}, {"stopSequence": 73, "arrival": {"time": "1694900706"}, "stopId": "40951"}, {"stopSequence": 74, "arrival": {"time": "1694901303"}, "stopId": "40952"}, {"stopSequence": 75, "arrival": {"time": "1694901876"}, "stopId": "40953"}, {"stopSequence": 76, "arrival": {"time": "1694902338"}, "stopId": "40954"}, {"stopSequence": 77, "arrival": {"time": "1694903155"}, "stopId": "40955"}, {"stopSequence": 78, "arrival": {"time": "1694903625"}, "stopId": "40956"}, {"stopSequence": 79, "arrival": {"time": "1694904399"}, "stopId": "40957"}, {"stopSequence": 80, "arrival": {"time": "1694905178"}, "stopId": "40958"}, {"stopSequence": 81, "arrival": {"time": "1694905598"}, "stopId": "40959"}, {"stopSequence": 82, "arrival": {"time": "1694906818"}, "stopId": "42223"}, {"stopSequence": 83, "arrival": {"time": "1694907347"}, "stopId": "42224"}, {"stopSequence": 84, "arrival": {"time": "1694908935"}, "stopId": "42225"}, {"stopSequence": 85, "arrival": {"time": "1694910502"}, "stopId": "42226"}, {"stopSequence": 86, "arrival": {"time": "1694911971"}, "stopId": "42227"}, {"stopSequence": 87, "arrival": {"time": "1694914718"}, "stopId": "42228"}, {"stopSequence": 88, "arrival": {"time": "1694916240"}, "stopId": "42229"}, {"stopSequence": 89, "arrival": {"time": "1694920059"}, "stopId": "42230"}, {"stopSequence": 90, "arrival": {"time": "1694922423"}, "stopId": "42231"}, {"stopSequence": 91, "arrival": {"time": "1694928085"}, "stopId": "42232"}, {"stopSequence": 92, "arrival": {"time": "1694935695"}, "stopId": "20540229"}, {"stopSequence": 93, "arrival": {"time": "1694940389"}, "stopId": "20540230"}, {"stopSequence": 94, "arrival": {"time": "1694945128"}, "stopId": "20540231"}, {"stopSequence": 95, "arrival": {"time": "1694957796"}, "stopId": "20554362"}, {"stopSequence": 96, "arrival": {"time": "1695011020"}, "stopId": "34871"}, {"stopSequence": 97, "arrival": {"time": "1695030324"}, "stopId": "34872"}, {"stopSequence": 98, "arrival": {"time": "1695202053"}, "stopId": "34873"}, {"stopSequence": 99, "arrival": {"time": "1696564142"}, "stopId": "42077"}], "vehicle": {"licensePlate": "CLYB54"}, "timestamp": "1694889030"}, "vehicle": {"trip": {"tripId": "15744-701ff27f-2", "startTime": "15:20:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "550", "directionId": 1}, "position": {"latitude": -36.719856, "longitude": -73.14017, "bearing": 72.0, "odometer": 0.0, "speed": 8.0}, "timestamp": "1694889030", "vehicle": {"licensePlate": "CLYB54"}}}, {"id": "ca76a482-11fd-4346-baed-b803c28b32c7", "tripUpdate": {"trip": {"tripId": "15685-701ff27f-2", "startTime": "14:40:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "550", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 67, "arrival": {"time": "1694889040"}, "stopId": "16005209"}, {"stopSequence": 68, "arrival": {"time": "1694889288"}, "stopId": "38531"}, {"stopSequence": 69, "arrival": {"time": "1694889344"}, "stopId": "8921285"}, {"stopSequence": 70, "arrival": {"time": "1694889454"}, "stopId": "38532"}, {"stopSequence": 71, "arrival": {"time": "1694889510"}, "stopId": "38533"}, {"stopSequence": 72, "arrival": {"time": "1694889558"}, "stopId": "38534"}, {"stopSequence": 73, "arrival": {"time": "1694889602"}, "stopId": "38535"}, {"stopSequence": 74, "arrival": {"time": "1694889676"}, "stopId": "38536"}, {"stopSequence": 75, "arrival": {"time": "1694889703"}, "stopId": "4838437"}, {"stopSequence": 76, "arrival": {"time": "1694889762"}, "stopId": "45085"}, {"stopSequence": 77, "arrival": {"time": "1694889834"}, "stopId": "45086"}, {"stopSequence": 78, "arrival": {"time": "1694889898"}, "stopId": "38539"}, {"stopSequence": 79, "arrival": {"time": "1694890031"}, "stopId": "38544"}, {"stopSequence": 80, "arrival": {"time": "1694890089"}, "stopId": "38545"}, {"stopSequence": 81, "arrival": {"time": "1694890187"}, "stopId": "38546"}, {"stopSequence": 82, "arrival": {"time": "1694890302"}, "stopId": "38548"}, {"stopSequence": 83, "arrival": {"time": "1694890366"}, "stopId": "38549"}, {"stopSequence": 84, "arrival": {"time": "1694890424"}, "stopId": "38550"}, {"stopSequence": 85, "arrival": {"time": "1694890517"}, "stopId": "38551"}, {"stopSequence": 86, "arrival": {"time": "1694890611"}, "stopId": "38552"}, {"stopSequence": 87, "arrival": {"time": "1694890684"}, "stopId": "49359"}, {"stopSequence": 88, "arrival": {"time": "1694890735"}, "stopId": "49360"}, {"stopSequence": 89, "arrival": {"time": "1694890850"}, "stopId": "49361"}, {"stopSequence": 90, "arrival": {"time": "1694890877"}, "stopId": "49362"}, {"stopSequence": 91, "arrival": {"time": "1694890926"}, "stopId": "49363"}, {"stopSequence": 92, "arrival": {"time": "1694890975"}, "stopId": "49364"}, {"stopSequence": 93, "arrival": {"time": "1694891023"}, "stopId": "49365"}, {"stopSequence": 94, "arrival": {"time": "1694891089"}, "stopId": "38560"}, {"stopSequence": 95, "arrival": {"time": "1694891125"}, "stopId": "42857"}, {"stopSequence": 96, "arrival": {"time": "1694891159"}, "stopId": "38562"}, {"stopSequence": 97, "arrival": {"time": "1694891210"}, "stopId": "38563"}, {"stopSequence": 98, "arrival": {"time": "1694891252"}, "stopId": "38564"}, {"stopSequence": 99, "arrival": {"time": "1694891356"}, "stopId": "38565"}, {"stopSequence": 100, "arrival": {"time": "1694891426"}, "stopId": "37448"}, {"stopSequence": 101, "arrival": {"time": "1694891458"}, "stopId": "38566"}, {"stopSequence": 102, "arrival": {"time": "1694891493"}, "stopId": "38567"}, {"stopSequence": 103, "arrival": {"time": "1694891548"}, "stopId": "38568"}, {"stopSequence": 104, "arrival": {"time": "1694891579"}, "stopId": "38569"}, {"stopSequence": 105, "arrival": {"time": "1694891630"}, "stopId": "38570"}, {"stopSequence": 106, "arrival": {"time": "1694891697"}, "stopId": "38571"}, {"stopSequence": 107, "arrival": {"time": "1694891750"}, "stopId": "38572"}, {"stopSequence": 108, "arrival": {"time": "1694891976"}, "stopId": "38393"}, {"stopSequence": 109, "arrival": {"time": "1694892100"}, "stopId": "38395"}, {"stopSequence": 110, "arrival": {"time": "1694892148"}, "stopId": "38396"}, {"stopSequence": 111, "arrival": {"time": "1694892232"}, "stopId": "38397"}, {"stopSequence": 112, "arrival": {"time": "1694892265"}, "stopId": "38398"}, {"stopSequence": 113, "arrival": {"time": "1694892300"}, "stopId": "38399"}, {"stopSequence": 114, "arrival": {"time": "1694892392"}, "stopId": "38400"}, {"stopSequence": 115, "arrival": {"time": "1694892455"}, "stopId": "38401"}, {"stopSequence": 116, "arrival": {"time": "1694892528"}, "stopId": "38402"}], "vehicle": {"licensePlate": "FWJX76"}, "timestamp": "1694889028"}, "vehicle": {"trip": {"tripId": "15685-701ff27f-2", "startTime": "14:40:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "550", "directionId": 0}, "position": {"latitude": -36.79159, "longitude": -73.07006, "bearing": 336.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889028", "vehicle": {"licensePlate": "FWJX76"}}}, {"id": "80c14e4b-6ee3-44e6-b764-5fd495a3348d", "tripUpdate": {"trip": {"tripId": "15686-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "550", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 28, "arrival": {"time": "1694889092"}, "stopId": "42294"}, {"stopSequence": 29, "arrival": {"time": "1694889220"}, "stopId": "42295"}, {"stopSequence": 30, "arrival": {"time": "1694889335"}, "stopId": "42296"}, {"stopSequence": 31, "arrival": {"time": "1694889476"}, "stopId": "42297"}, {"stopSequence": 32, "arrival": {"time": "1694889569"}, "stopId": "42298"}, {"stopSequence": 33, "arrival": {"time": "1694889666"}, "stopId": "49295"}, {"stopSequence": 34, "arrival": {"time": "1694889789"}, "stopId": "49296"}, {"stopSequence": 35, "arrival": {"time": "1694889874"}, "stopId": "49297"}, {"stopSequence": 36, "arrival": {"time": "1694889906"}, "stopId": "49298"}, {"stopSequence": 37, "arrival": {"time": "1694889970"}, "stopId": "49299"}, {"stopSequence": 38, "arrival": {"time": "1694890020"}, "stopId": "49300"}, {"stopSequence": 39, "arrival": {"time": "1694890096"}, "stopId": "49301"}, {"stopSequence": 40, "arrival": {"time": "1694890165"}, "stopId": "49302"}, {"stopSequence": 41, "arrival": {"time": "1694890211"}, "stopId": "49303"}, {"stopSequence": 42, "arrival": {"time": "1694890256"}, "stopId": "49304"}, {"stopSequence": 43, "arrival": {"time": "1694890289"}, "stopId": "49305"}, {"stopSequence": 44, "arrival": {"time": "1694890343"}, "stopId": "49306"}, {"stopSequence": 45, "arrival": {"time": "1694890383"}, "stopId": "49307"}, {"stopSequence": 46, "arrival": {"time": "1694890400"}, "stopId": "49308"}, {"stopSequence": 47, "arrival": {"time": "1694890425"}, "stopId": "49309"}, {"stopSequence": 48, "arrival": {"time": "1694890459"}, "stopId": "42315"}, {"stopSequence": 49, "arrival": {"time": "1694890475"}, "stopId": "42316"}, {"stopSequence": 50, "arrival": {"time": "1694890532"}, "stopId": "42317"}, {"stopSequence": 51, "arrival": {"time": "1694890576"}, "stopId": "42318"}, {"stopSequence": 52, "arrival": {"time": "1694890652"}, "stopId": "8606396"}, {"stopSequence": 53, "arrival": {"time": "1694890729"}, "stopId": "38514"}, {"stopSequence": 54, "arrival": {"time": "1694890772"}, "stopId": "38516"}, {"stopSequence": 55, "arrival": {"time": "1694890831"}, "stopId": "38518"}, {"stopSequence": 56, "arrival": {"time": "1694890932"}, "stopId": "38520"}, {"stopSequence": 57, "arrival": {"time": "1694890976"}, "stopId": "38521"}, {"stopSequence": 58, "arrival": {"time": "1694891026"}, "stopId": "38522"}, {"stopSequence": 59, "arrival": {"time": "1694891080"}, "stopId": "38523"}, {"stopSequence": 60, "arrival": {"time": "1694891135"}, "stopId": "38524"}, {"stopSequence": 61, "arrival": {"time": "1694891194"}, "stopId": "38525"}, {"stopSequence": 62, "arrival": {"time": "1694891252"}, "stopId": "38526"}, {"stopSequence": 63, "arrival": {"time": "1694891306"}, "stopId": "38527"}, {"stopSequence": 64, "arrival": {"time": "1694891400"}, "stopId": "38528"}, {"stopSequence": 65, "arrival": {"time": "1694891539"}, "stopId": "38529"}, {"stopSequence": 66, "arrival": {"time": "1694891787"}, "stopId": "38530"}, {"stopSequence": 67, "arrival": {"time": "1694891810"}, "stopId": "16005209"}, {"stopSequence": 68, "arrival": {"time": "1694892118"}, "stopId": "38531"}, {"stopSequence": 69, "arrival": {"time": "1694892193"}, "stopId": "8921285"}, {"stopSequence": 70, "arrival": {"time": "1694892347"}, "stopId": "38532"}, {"stopSequence": 71, "arrival": {"time": "1694892427"}, "stopId": "38533"}, {"stopSequence": 72, "arrival": {"time": "1694892499"}, "stopId": "38534"}, {"stopSequence": 73, "arrival": {"time": "1694892567"}, "stopId": "38535"}, {"stopSequence": 74, "arrival": {"time": "1694892682"}, "stopId": "38536"}, {"stopSequence": 75, "arrival": {"time": "1694892726"}, "stopId": "4838437"}, {"stopSequence": 76, "arrival": {"time": "1694892823"}, "stopId": "45085"}, {"stopSequence": 77, "arrival": {"time": "1694892947"}, "stopId": "45086"}, {"stopSequence": 78, "arrival": {"time": "1694893059"}, "stopId": "38539"}, {"stopSequence": 79, "arrival": {"time": "1694893306"}, "stopId": "38544"}, {"stopSequence": 80, "arrival": {"time": "1694893419"}, "stopId": "38545"}, {"stopSequence": 81, "arrival": {"time": "1694893619"}, "stopId": "38546"}, {"stopSequence": 82, "arrival": {"time": "1694893865"}, "stopId": "38548"}, {"stopSequence": 83, "arrival": {"time": "1694894010"}, "stopId": "38549"}, {"stopSequence": 84, "arrival": {"time": "1694894144"}, "stopId": "38550"}, {"stopSequence": 85, "arrival": {"time": "1694894370"}, "stopId": "38551"}, {"stopSequence": 86, "arrival": {"time": "1694894609"}, "stopId": "38552"}, {"stopSequence": 87, "arrival": {"time": "1694894801"}, "stopId": "49359"}, {"stopSequence": 88, "arrival": {"time": "1694894942"}, "stopId": "49360"}, {"stopSequence": 89, "arrival": {"time": "1694895272"}, "stopId": "49361"}, {"stopSequence": 90, "arrival": {"time": "1694895352"}, "stopId": "49362"}, {"stopSequence": 91, "arrival": {"time": "1694895502"}, "stopId": "49363"}, {"stopSequence": 92, "arrival": {"time": "1694895658"}, "stopId": "49364"}, {"stopSequence": 93, "arrival": {"time": "1694895811"}, "stopId": "49365"}, {"stopSequence": 94, "arrival": {"time": "1694896032"}, "stopId": "38560"}, {"stopSequence": 95, "arrival": {"time": "1694896156"}, "stopId": "42857"}, {"stopSequence": 96, "arrival": {"time": "1694896275"}, "stopId": "38562"}, {"stopSequence": 97, "arrival": {"time": "1694896455"}, "stopId": "38563"}, {"stopSequence": 98, "arrival": {"time": "1694896609"}, "stopId": "38564"}, {"stopSequence": 99, "arrival": {"time": "1694897011"}, "stopId": "38565"}, {"stopSequence": 100, "arrival": {"time": "1694897293"}, "stopId": "37448"}, {"stopSequence": 101, "arrival": {"time": "1694897427"}, "stopId": "38566"}, {"stopSequence": 102, "arrival": {"time": "1694897575"}, "stopId": "38567"}, {"stopSequence": 103, "arrival": {"time": "1694897813"}, "stopId": "38568"}, {"stopSequence": 104, "arrival": {"time": "1694897952"}, "stopId": "38569"}, {"stopSequence": 105, "arrival": {"time": "1694898186"}, "stopId": "38570"}, {"stopSequence": 106, "arrival": {"time": "1694898509"}, "stopId": "38571"}, {"stopSequence": 107, "arrival": {"time": "1694898771"}, "stopId": "38572"}, {"stopSequence": 108, "arrival": {"time": "1694899997"}, "stopId": "38393"}, {"stopSequence": 109, "arrival": {"time": "1694900754"}, "stopId": "38395"}, {"stopSequence": 110, "arrival": {"time": "1694901063"}, "stopId": "38396"}, {"stopSequence": 111, "arrival": {"time": "1694901636"}, "stopId": "38397"}, {"stopSequence": 112, "arrival": {"time": "1694901868"}, "stopId": "38398"}, {"stopSequence": 113, "arrival": {"time": "1694902125"}, "stopId": "38399"}, {"stopSequence": 114, "arrival": {"time": "1694902828"}, "stopId": "38400"}, {"stopSequence": 115, "arrival": {"time": "1694903332"}, "stopId": "38401"}, {"stopSequence": 116, "arrival": {"time": "1694903962"}, "stopId": "38402"}], "vehicle": {"licensePlate": "HBSR22"}, "timestamp": "1694889028"}, "vehicle": {"trip": {"tripId": "15686-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "550", "directionId": 0}, "position": {"latitude": -36.89311, "longitude": -73.03474, "bearing": 310.0, "odometer": 0.0, "speed": 48.0}, "timestamp": "1694889028", "vehicle": {"licensePlate": "HBSR22"}}}, {"id": "756dcfcb-fba2-4c09-8cff-d5fc1a5e571b", "tripUpdate": {"trip": {"tripId": "15683-701ff27f-2", "startTime": "14:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "550", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 95, "arrival": {"time": "1694889053"}, "stopId": "42857"}, {"stopSequence": 96, "arrival": {"time": "1694889087"}, "stopId": "38562"}, {"stopSequence": 97, "arrival": {"time": "1694889135"}, "stopId": "38563"}, {"stopSequence": 98, "arrival": {"time": "1694889175"}, "stopId": "38564"}, {"stopSequence": 99, "arrival": {"time": "1694889273"}, "stopId": "38565"}, {"stopSequence": 100, "arrival": {"time": "1694889335"}, "stopId": "37448"}, {"stopSequence": 101, "arrival": {"time": "1694889364"}, "stopId": "38566"}, {"stopSequence": 102, "arrival": {"time": "1694889394"}, "stopId": "38567"}, {"stopSequence": 103, "arrival": {"time": "1694889441"}, "stopId": "38568"}, {"stopSequence": 104, "arrival": {"time": "1694889467"}, "stopId": "38569"}, {"stopSequence": 105, "arrival": {"time": "1694889510"}, "stopId": "38570"}, {"stopSequence": 106, "arrival": {"time": "1694889565"}, "stopId": "38571"}, {"stopSequence": 107, "arrival": {"time": "1694889608"}, "stopId": "38572"}, {"stopSequence": 108, "arrival": {"time": "1694889782"}, "stopId": "38393"}, {"stopSequence": 109, "arrival": {"time": "1694889873"}, "stopId": "38395"}, {"stopSequence": 110, "arrival": {"time": "1694889907"}, "stopId": "38396"}, {"stopSequence": 111, "arrival": {"time": "1694889967"}, "stopId": "38397"}, {"stopSequence": 112, "arrival": {"time": "1694889989"}, "stopId": "38398"}, {"stopSequence": 113, "arrival": {"time": "1694890013"}, "stopId": "38399"}, {"stopSequence": 114, "arrival": {"time": "1694890076"}, "stopId": "38400"}, {"stopSequence": 115, "arrival": {"time": "1694890117"}, "stopId": "38401"}, {"stopSequence": 116, "arrival": {"time": "1694890164"}, "stopId": "38402"}], "vehicle": {"licensePlate": "XR7697"}, "timestamp": "1694889028"}, "vehicle": {"trip": {"tripId": "15683-701ff27f-2", "startTime": "14:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "550", "directionId": 0}, "position": {"latitude": -36.711826, "longitude": -73.115105, "bearing": 214.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889028", "vehicle": {"licensePlate": "XR7697"}}}, {"id": "d0f61a9a-6682-471e-aa21-2e8ebdc1a417", "tripUpdate": {"trip": {"tripId": "15740-701ff27f-2", "startTime": "14:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "550", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 96, "arrival": {"time": "1694889127"}, "stopId": "34871"}, {"stopSequence": 97, "arrival": {"time": "1694889149"}, "stopId": "34872"}, {"stopSequence": 98, "arrival": {"time": "1694889228"}, "stopId": "34873"}, {"stopSequence": 99, "arrival": {"time": "1694889280"}, "stopId": "42077"}], "vehicle": {"licensePlate": "ZT3808"}, "timestamp": "1694889022"}, "vehicle": {"trip": {"tripId": "15740-701ff27f-2", "startTime": "14:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "550", "directionId": 1}, "position": {"latitude": -36.949017, "longitude": -73.02423, "bearing": 244.0, "odometer": 0.0, "speed": 11.0}, "timestamp": "1694889022", "vehicle": {"licensePlate": "ZT3808"}}}, {"id": "ed608ff5-e6a0-4ae2-8759-8e0f71d5d492", "tripUpdate": {"trip": {"tripId": "15854-701ff27f-2", "startTime": "14:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "551", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 121, "arrival": {"time": "1694888952"}, "stopId": "34560"}, {"stopSequence": 122, "arrival": {"time": "1694888996"}, "stopId": "42273"}, {"stopSequence": 123, "arrival": {"time": "1694889004"}, "stopId": "34415"}, {"stopSequence": 124, "arrival": {"time": "1694889105"}, "stopId": "42077"}], "vehicle": {"licensePlate": "CDSZ11"}, "timestamp": "1694888939"}, "vehicle": {"trip": {"tripId": "15854-701ff27f-2", "startTime": "14:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "551", "directionId": 1}, "position": {"latitude": -36.95435, "longitude": -73.02051, "bearing": 52.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888939", "vehicle": {"licensePlate": "CDSZ11"}}}, {"id": "d2f12613-b5df-4a18-9c62-7ffb16db5c4f", "tripUpdate": {"trip": {"tripId": "15799-701ff27f-2", "startTime": "14:41:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "551", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 60, "arrival": {"time": "1694889130"}, "stopId": "38520"}, {"stopSequence": 61, "arrival": {"time": "1694889177"}, "stopId": "38521"}, {"stopSequence": 62, "arrival": {"time": "1694889228"}, "stopId": "38522"}, {"stopSequence": 63, "arrival": {"time": "1694889280"}, "stopId": "38523"}, {"stopSequence": 64, "arrival": {"time": "1694889334"}, "stopId": "38524"}, {"stopSequence": 65, "arrival": {"time": "1694889384"}, "stopId": "38525"}, {"stopSequence": 66, "arrival": {"time": "1694889436"}, "stopId": "38526"}, {"stopSequence": 67, "arrival": {"time": "1694889485"}, "stopId": "38527"}, {"stopSequence": 68, "arrival": {"time": "1694889573"}, "stopId": "38528"}, {"stopSequence": 69, "arrival": {"time": "1694889685"}, "stopId": "38529"}, {"stopSequence": 70, "arrival": {"time": "1694889891"}, "stopId": "38530"}, {"stopSequence": 71, "arrival": {"time": "1694889904"}, "stopId": "16005209"}, {"stopSequence": 72, "arrival": {"time": "1694890133"}, "stopId": "38531"}, {"stopSequence": 73, "arrival": {"time": "1694890187"}, "stopId": "8921285"}, {"stopSequence": 74, "arrival": {"time": "1694890295"}, "stopId": "38532"}, {"stopSequence": 75, "arrival": {"time": "1694890346"}, "stopId": "38533"}, {"stopSequence": 76, "arrival": {"time": "1694890400"}, "stopId": "38534"}, {"stopSequence": 77, "arrival": {"time": "1694890447"}, "stopId": "38535"}, {"stopSequence": 78, "arrival": {"time": "1694890507"}, "stopId": "38536"}, {"stopSequence": 79, "arrival": {"time": "1694890547"}, "stopId": "4838437"}, {"stopSequence": 80, "arrival": {"time": "1694890600"}, "stopId": "45085"}, {"stopSequence": 81, "arrival": {"time": "1694890682"}, "stopId": "45086"}, {"stopSequence": 82, "arrival": {"time": "1694890741"}, "stopId": "38539"}, {"stopSequence": 83, "arrival": {"time": "1694890799"}, "stopId": "38540"}, {"stopSequence": 84, "arrival": {"time": "1694890882"}, "stopId": "38544"}, {"stopSequence": 85, "arrival": {"time": "1694890944"}, "stopId": "38545"}, {"stopSequence": 86, "arrival": {"time": "1694891051"}, "stopId": "38546"}, {"stopSequence": 87, "arrival": {"time": "1694891120"}, "stopId": "38547"}, {"stopSequence": 88, "arrival": {"time": "1694891314"}, "stopId": "38550"}, {"stopSequence": 89, "arrival": {"time": "1694891525"}, "stopId": "38552"}, {"stopSequence": 90, "arrival": {"time": "1694891620"}, "stopId": "49359"}, {"stopSequence": 91, "arrival": {"time": "1694891681"}, "stopId": "49360"}, {"stopSequence": 92, "arrival": {"time": "1694891820"}, "stopId": "49361"}, {"stopSequence": 93, "arrival": {"time": "1694891852"}, "stopId": "49362"}, {"stopSequence": 94, "arrival": {"time": "1694891910"}, "stopId": "49363"}, {"stopSequence": 95, "arrival": {"time": "1694891975"}, "stopId": "49364"}, {"stopSequence": 96, "arrival": {"time": "1694892034"}, "stopId": "49365"}, {"stopSequence": 97, "arrival": {"time": "1694892117"}, "stopId": "38560"}, {"stopSequence": 98, "arrival": {"time": "1694892163"}, "stopId": "42857"}, {"stopSequence": 99, "arrival": {"time": "1694892206"}, "stopId": "38562"}, {"stopSequence": 100, "arrival": {"time": "1694892270"}, "stopId": "38563"}, {"stopSequence": 101, "arrival": {"time": "1694892325"}, "stopId": "38564"}, {"stopSequence": 102, "arrival": {"time": "1694892461"}, "stopId": "38565"}, {"stopSequence": 103, "arrival": {"time": "1694892552"}, "stopId": "37448"}, {"stopSequence": 104, "arrival": {"time": "1694892600"}, "stopId": "38566"}, {"stopSequence": 105, "arrival": {"time": "1694892649"}, "stopId": "38567"}, {"stopSequence": 106, "arrival": {"time": "1694892722"}, "stopId": "38568"}, {"stopSequence": 107, "arrival": {"time": "1694892767"}, "stopId": "38569"}, {"stopSequence": 108, "arrival": {"time": "1694892836"}, "stopId": "38570"}, {"stopSequence": 109, "arrival": {"time": "1694892927"}, "stopId": "38571"}, {"stopSequence": 110, "arrival": {"time": "1694893016"}, "stopId": "38572"}, {"stopSequence": 111, "arrival": {"time": "1694893317"}, "stopId": "38393"}, {"stopSequence": 112, "arrival": {"time": "1694893495"}, "stopId": "38395"}, {"stopSequence": 113, "arrival": {"time": "1694893565"}, "stopId": "38396"}, {"stopSequence": 114, "arrival": {"time": "1694893688"}, "stopId": "38397"}, {"stopSequence": 115, "arrival": {"time": "1694893806"}, "stopId": "41928"}, {"stopSequence": 116, "arrival": {"time": "1694893904"}, "stopId": "41929"}, {"stopSequence": 117, "arrival": {"time": "1694894248"}, "stopId": "40543"}, {"stopSequence": 118, "arrival": {"time": "1694894266"}, "stopId": "41943"}, {"stopSequence": 119, "arrival": {"time": "1694894859"}, "stopId": "42046"}, {"stopSequence": 120, "arrival": {"time": "1694894988"}, "stopId": "42047"}, {"stopSequence": 121, "arrival": {"time": "1694895297"}, "stopId": "42049"}, {"stopSequence": 122, "arrival": {"time": "1694895417"}, "stopId": "42050"}, {"stopSequence": 123, "arrival": {"time": "1694895767"}, "stopId": "42052"}, {"stopSequence": 124, "arrival": {"time": "1694895993"}, "stopId": "42053"}, {"stopSequence": 125, "arrival": {"time": "1694896137"}, "stopId": "42054"}, {"stopSequence": 126, "arrival": {"time": "1694896435"}, "stopId": "42055"}, {"stopSequence": 127, "arrival": {"time": "1694896595"}, "stopId": "42056"}], "vehicle": {"licensePlate": "DRFP53"}, "timestamp": "1694889028"}, "vehicle": {"trip": {"tripId": "15799-701ff27f-2", "startTime": "14:41:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "551", "directionId": 0}, "position": {"latitude": -36.822674, "longitude": -73.04256, "bearing": 338.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889028", "vehicle": {"licensePlate": "DRFP53"}}}, {"id": "63f616d3-d706-45b6-a1a7-dfb62f33e963", "tripUpdate": {"trip": {"tripId": "15796-701ff27f-2", "startTime": "13:41:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "551", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 117, "arrival": {"time": "1694889125"}, "stopId": "40543"}, {"stopSequence": 118, "arrival": {"time": "1694889133"}, "stopId": "41943"}, {"stopSequence": 119, "arrival": {"time": "1694889371"}, "stopId": "42046"}, {"stopSequence": 120, "arrival": {"time": "1694889418"}, "stopId": "42047"}, {"stopSequence": 121, "arrival": {"time": "1694889522"}, "stopId": "42049"}, {"stopSequence": 122, "arrival": {"time": "1694889560"}, "stopId": "42050"}, {"stopSequence": 123, "arrival": {"time": "1694889665"}, "stopId": "42052"}, {"stopSequence": 124, "arrival": {"time": "1694889727"}, "stopId": "42053"}, {"stopSequence": 125, "arrival": {"time": "1694889766"}, "stopId": "42054"}, {"stopSequence": 126, "arrival": {"time": "1694889841"}, "stopId": "42055"}, {"stopSequence": 127, "arrival": {"time": "1694889880"}, "stopId": "42056"}], "vehicle": {"licensePlate": "DRFP70"}, "timestamp": "1694889028"}, "vehicle": {"trip": {"tripId": "15796-701ff27f-2", "startTime": "13:41:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "551", "directionId": 0}, "position": {"latitude": -36.713978, "longitude": -73.12668, "bearing": 128.0, "odometer": 0.0, "speed": 26.0}, "timestamp": "1694889028", "vehicle": {"licensePlate": "DRFP70"}}}, {"id": "8ef64122-708c-43fa-b6da-6de529a4cf81", "tripUpdate": {"trip": {"tripId": "15855-701ff27f-2", "startTime": "14:21:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "551", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 73, "arrival": {"time": "1694889027"}, "stopId": "45068"}, {"stopSequence": 74, "arrival": {"time": "1694889154"}, "stopId": "37480"}, {"stopSequence": 75, "arrival": {"time": "1694889218"}, "stopId": "37477"}, {"stopSequence": 76, "arrival": {"time": "1694889288"}, "stopId": "40848"}, {"stopSequence": 77, "arrival": {"time": "1694889374"}, "stopId": "2-Apr"}, {"stopSequence": 78, "arrival": {"time": "1694889432"}, "stopId": "39728"}, {"stopSequence": 79, "arrival": {"time": "1694889530"}, "stopId": "39729"}, {"stopSequence": 80, "arrival": {"time": "1694889554"}, "stopId": "39730"}, {"stopSequence": 81, "arrival": {"time": "1694889656"}, "stopId": "42200"}, {"stopSequence": 82, "arrival": {"time": "1694889700"}, "stopId": "42203"}, {"stopSequence": 83, "arrival": {"time": "1694889754"}, "stopId": "42204"}, {"stopSequence": 84, "arrival": {"time": "1694889795"}, "stopId": "42205"}, {"stopSequence": 85, "arrival": {"time": "1694889854"}, "stopId": "42201"}, {"stopSequence": 86, "arrival": {"time": "1694890091"}, "stopId": "42206"}, {"stopSequence": 87, "arrival": {"time": "1694890152"}, "stopId": "42207"}, {"stopSequence": 88, "arrival": {"time": "1694890210"}, "stopId": "42208"}, {"stopSequence": 89, "arrival": {"time": "1694890333"}, "stopId": "42564"}, {"stopSequence": 90, "arrival": {"time": "1694890437"}, "stopId": "42214"}, {"stopSequence": 91, "arrival": {"time": "1694890542"}, "stopId": "42209"}, {"stopSequence": 92, "arrival": {"time": "1694890660"}, "stopId": "42210"}, {"stopSequence": 93, "arrival": {"time": "1694890850"}, "stopId": "42215"}, {"stopSequence": 94, "arrival": {"time": "1694890881"}, "stopId": "42216"}, {"stopSequence": 95, "arrival": {"time": "1694890924"}, "stopId": "42217"}, {"stopSequence": 96, "arrival": {"time": "1694891003"}, "stopId": "42218"}, {"stopSequence": 97, "arrival": {"time": "1694891040"}, "stopId": "42219"}, {"stopSequence": 98, "arrival": {"time": "1694891158"}, "stopId": "42220"}, {"stopSequence": 99, "arrival": {"time": "1694891207"}, "stopId": "42221"}, {"stopSequence": 100, "arrival": {"time": "1694891281"}, "stopId": "42222"}, {"stopSequence": 101, "arrival": {"time": "1694891357"}, "stopId": "42223"}, {"stopSequence": 102, "arrival": {"time": "1694891389"}, "stopId": "42224"}, {"stopSequence": 103, "arrival": {"time": "1694891476"}, "stopId": "42225"}, {"stopSequence": 104, "arrival": {"time": "1694891556"}, "stopId": "42226"}, {"stopSequence": 105, "arrival": {"time": "1694891615"}, "stopId": "42227"}, {"stopSequence": 106, "arrival": {"time": "1694891716"}, "stopId": "42228"}, {"stopSequence": 107, "arrival": {"time": "1694891768"}, "stopId": "42229"}, {"stopSequence": 108, "arrival": {"time": "1694891868"}, "stopId": "42230"}, {"stopSequence": 109, "arrival": {"time": "1694891922"}, "stopId": "42231"}, {"stopSequence": 110, "arrival": {"time": "1694892027"}, "stopId": "42232"}, {"stopSequence": 111, "arrival": {"time": "1694892144"}, "stopId": "42233"}, {"stopSequence": 112, "arrival": {"time": "1694892200"}, "stopId": "42234"}, {"stopSequence": 113, "arrival": {"time": "1694892299"}, "stopId": "42235"}, {"stopSequence": 114, "arrival": {"time": "1694892342"}, "stopId": "42211"}, {"stopSequence": 115, "arrival": {"time": "1694892419"}, "stopId": "49203"}, {"stopSequence": 116, "arrival": {"time": "1694892499"}, "stopId": "49204"}, {"stopSequence": 117, "arrival": {"time": "1694892514"}, "stopId": "42503"}, {"stopSequence": 118, "arrival": {"time": "1694892591"}, "stopId": "91151"}, {"stopSequence": 119, "arrival": {"time": "1694892683"}, "stopId": "91150"}, {"stopSequence": 120, "arrival": {"time": "1694892776"}, "stopId": "91145"}, {"stopSequence": 121, "arrival": {"time": "1694892889"}, "stopId": "34560"}, {"stopSequence": 122, "arrival": {"time": "1694892957"}, "stopId": "42273"}, {"stopSequence": 123, "arrival": {"time": "1694892971"}, "stopId": "34415"}, {"stopSequence": 124, "arrival": {"time": "1694893137"}, "stopId": "42077"}], "vehicle": {"licensePlate": "DWVP19"}, "timestamp": "1694889027"}, "vehicle": {"trip": {"tripId": "15855-701ff27f-2", "startTime": "14:21:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "551", "directionId": 1}, "position": {"latitude": -36.826, "longitude": -73.04618, "bearing": 238.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889027", "vehicle": {"licensePlate": "DWVP19"}}}, {"id": "8d00f8c6-c89a-4106-92ad-2e1552cabeaa", "tripUpdate": {"trip": {"tripId": "16066-701ff27f-2", "startTime": "15:02:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "553", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 19, "arrival": {"time": "1694889030"}, "stopId": "49357"}, {"stopSequence": 20, "arrival": {"time": "1694889074"}, "stopId": "38771"}, {"stopSequence": 21, "arrival": {"time": "1694889116"}, "stopId": "38668"}, {"stopSequence": 22, "arrival": {"time": "1694889217"}, "stopId": "38661"}, {"stopSequence": 23, "arrival": {"time": "1694889311"}, "stopId": "38657"}, {"stopSequence": 24, "arrival": {"time": "1694889373"}, "stopId": "38743"}, {"stopSequence": 25, "arrival": {"time": "1694889440"}, "stopId": "38652"}, {"stopSequence": 26, "arrival": {"time": "1694889504"}, "stopId": "38721"}, {"stopSequence": 27, "arrival": {"time": "1694889561"}, "stopId": "38659"}, {"stopSequence": 28, "arrival": {"time": "1694889649"}, "stopId": "38674"}, {"stopSequence": 29, "arrival": {"time": "1694889716"}, "stopId": "38649"}, {"stopSequence": 30, "arrival": {"time": "1694889777"}, "stopId": "38718"}, {"stopSequence": 31, "arrival": {"time": "1694889849"}, "stopId": "38735"}, {"stopSequence": 32, "arrival": {"time": "1694889901"}, "stopId": "42270"}, {"stopSequence": 33, "arrival": {"time": "1694889946"}, "stopId": "42271"}, {"stopSequence": 34, "arrival": {"time": "1694890012"}, "stopId": "4838438"}, {"stopSequence": 35, "arrival": {"time": "1694890151"}, "stopId": "44896"}, {"stopSequence": 36, "arrival": {"time": "1694890198"}, "stopId": "44897"}, {"stopSequence": 37, "arrival": {"time": "1694890270"}, "stopId": "44898"}, {"stopSequence": 38, "arrival": {"time": "1694890437"}, "stopId": "40993"}, {"stopSequence": 39, "arrival": {"time": "1694890683"}, "stopId": "16005188"}, {"stopSequence": 40, "arrival": {"time": "1694890943"}, "stopId": "40995"}, {"stopSequence": 41, "arrival": {"time": "1694891021"}, "stopId": "40996"}, {"stopSequence": 42, "arrival": {"time": "1694891104"}, "stopId": "40997"}, {"stopSequence": 43, "arrival": {"time": "1694891167"}, "stopId": "39614"}, {"stopSequence": 44, "arrival": {"time": "1694891220"}, "stopId": "39615"}, {"stopSequence": 45, "arrival": {"time": "1694891274"}, "stopId": "39616"}, {"stopSequence": 46, "arrival": {"time": "1694891335"}, "stopId": "39617"}, {"stopSequence": 47, "arrival": {"time": "1694891401"}, "stopId": "39618"}, {"stopSequence": 48, "arrival": {"time": "1694891453"}, "stopId": "39619"}, {"stopSequence": 49, "arrival": {"time": "1694891498"}, "stopId": "39620"}, {"stopSequence": 50, "arrival": {"time": "1694891580"}, "stopId": "39621"}, {"stopSequence": 51, "arrival": {"time": "1694891638"}, "stopId": "38281"}, {"stopSequence": 52, "arrival": {"time": "1694891705"}, "stopId": "37506"}, {"stopSequence": 53, "arrival": {"time": "1694891765"}, "stopId": "45068"}, {"stopSequence": 54, "arrival": {"time": "1694891915"}, "stopId": "37480"}, {"stopSequence": 55, "arrival": {"time": "1694891995"}, "stopId": "37477"}, {"stopSequence": 56, "arrival": {"time": "1694892085"}, "stopId": "40848"}, {"stopSequence": 57, "arrival": {"time": "1694892207"}, "stopId": "2-Apr"}, {"stopSequence": 58, "arrival": {"time": "1694892281"}, "stopId": "39728"}, {"stopSequence": 59, "arrival": {"time": "1694892423"}, "stopId": "39729"}, {"stopSequence": 60, "arrival": {"time": "1694892459"}, "stopId": "39730"}, {"stopSequence": 61, "arrival": {"time": "1694892612"}, "stopId": "42200"}, {"stopSequence": 62, "arrival": {"time": "1694892686"}, "stopId": "42203"}, {"stopSequence": 63, "arrival": {"time": "1694892788"}, "stopId": "42204"}, {"stopSequence": 64, "arrival": {"time": "1694892841"}, "stopId": "42205"}, {"stopSequence": 65, "arrival": {"time": "1694893382"}, "stopId": "42206"}, {"stopSequence": 66, "arrival": {"time": "1694893503"}, "stopId": "42207"}, {"stopSequence": 67, "arrival": {"time": "1694893620"}, "stopId": "42208"}, {"stopSequence": 68, "arrival": {"time": "1694893888"}, "stopId": "42564"}, {"stopSequence": 69, "arrival": {"time": "1694894128"}, "stopId": "42214"}, {"stopSequence": 70, "arrival": {"time": "1694894373"}, "stopId": "42209"}, {"stopSequence": 71, "arrival": {"time": "1694894678"}, "stopId": "42210"}, {"stopSequence": 72, "arrival": {"time": "1694895209"}, "stopId": "42215"}, {"stopSequence": 73, "arrival": {"time": "1694895302"}, "stopId": "42216"}, {"stopSequence": 74, "arrival": {"time": "1694895431"}, "stopId": "42217"}, {"stopSequence": 75, "arrival": {"time": "1694895675"}, "stopId": "42218"}, {"stopSequence": 76, "arrival": {"time": "1694895825"}, "stopId": "42219"}, {"stopSequence": 77, "arrival": {"time": "1694896186"}, "stopId": "42220"}, {"stopSequence": 78, "arrival": {"time": "1694896358"}, "stopId": "42221"}, {"stopSequence": 79, "arrival": {"time": "1694896627"}, "stopId": "42222"}, {"stopSequence": 80, "arrival": {"time": "1694896917"}, "stopId": "42223"}, {"stopSequence": 81, "arrival": {"time": "1694897042"}, "stopId": "42224"}, {"stopSequence": 82, "arrival": {"time": "1694897396"}, "stopId": "42225"}, {"stopSequence": 83, "arrival": {"time": "1694897717"}, "stopId": "42226"}, {"stopSequence": 84, "arrival": {"time": "1694897997"}, "stopId": "42227"}, {"stopSequence": 85, "arrival": {"time": "1694898469"}, "stopId": "42228"}, {"stopSequence": 86, "arrival": {"time": "1694898721"}, "stopId": "42229"}, {"stopSequence": 87, "arrival": {"time": "1694899237"}, "stopId": "42230"}, {"stopSequence": 88, "arrival": {"time": "1694899526"}, "stopId": "42231"}, {"stopSequence": 89, "arrival": {"time": "1694900122"}, "stopId": "42232"}, {"stopSequence": 90, "arrival": {"time": "1694901208"}, "stopId": "42234"}, {"stopSequence": 91, "arrival": {"time": "1694901883"}, "stopId": "42235"}, {"stopSequence": 92, "arrival": {"time": "1694902197"}, "stopId": "42211"}, {"stopSequence": 93, "arrival": {"time": "1694903104"}, "stopId": "91142"}, {"stopSequence": 94, "arrival": {"time": "1694904665"}, "stopId": "91144"}, {"stopSequence": 95, "arrival": {"time": "1694904772"}, "stopId": "91150"}, {"stopSequence": 96, "arrival": {"time": "1694905910"}, "stopId": "91145"}, {"stopSequence": 97, "arrival": {"time": "1694907133"}, "stopId": "34560"}, {"stopSequence": 98, "arrival": {"time": "1694907933"}, "stopId": "42273"}, {"stopSequence": 99, "arrival": {"time": "1694908093"}, "stopId": "34415"}, {"stopSequence": 100, "arrival": {"time": "1694910357"}, "stopId": "42077"}], "vehicle": {"licensePlate": "BBZF96"}, "timestamp": "1694889030"}, "vehicle": {"trip": {"tripId": "16066-701ff27f-2", "startTime": "15:02:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "553", "directionId": 1}, "position": {"latitude": -36.72433, "longitude": -73.10995, "bearing": 184.0, "odometer": 0.0, "speed": 34.0}, "timestamp": "1694889030", "vehicle": {"licensePlate": "BBZF96"}}}, {"id": "394a4f8b-4ea6-4e85-800f-244b753e460d", "tripUpdate": {"trip": {"tripId": "16065-701ff27f-2", "startTime": "14:42:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "553", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 46, "arrival": {"time": "1694888995"}, "stopId": "39617"}, {"stopSequence": 47, "arrival": {"time": "1694889056"}, "stopId": "39618"}, {"stopSequence": 48, "arrival": {"time": "1694889105"}, "stopId": "39619"}, {"stopSequence": 49, "arrival": {"time": "1694889145"}, "stopId": "39620"}, {"stopSequence": 50, "arrival": {"time": "1694889218"}, "stopId": "39621"}, {"stopSequence": 51, "arrival": {"time": "1694889268"}, "stopId": "38281"}, {"stopSequence": 52, "arrival": {"time": "1694889324"}, "stopId": "37506"}, {"stopSequence": 53, "arrival": {"time": "1694889373"}, "stopId": "45068"}, {"stopSequence": 54, "arrival": {"time": "1694889492"}, "stopId": "37480"}, {"stopSequence": 55, "arrival": {"time": "1694889553"}, "stopId": "37477"}, {"stopSequence": 56, "arrival": {"time": "1694889621"}, "stopId": "40848"}, {"stopSequence": 57, "arrival": {"time": "1694889708"}, "stopId": "2-Apr"}, {"stopSequence": 58, "arrival": {"time": "1694889760"}, "stopId": "39728"}, {"stopSequence": 59, "arrival": {"time": "1694889856"}, "stopId": "39729"}, {"stopSequence": 60, "arrival": {"time": "1694889879"}, "stopId": "39730"}, {"stopSequence": 61, "arrival": {"time": "1694889977"}, "stopId": "42200"}, {"stopSequence": 62, "arrival": {"time": "1694890023"}, "stopId": "42203"}, {"stopSequence": 63, "arrival": {"time": "1694890085"}, "stopId": "42204"}, {"stopSequence": 64, "arrival": {"time": "1694890116"}, "stopId": "42205"}, {"stopSequence": 65, "arrival": {"time": "1694890416"}, "stopId": "42206"}, {"stopSequence": 66, "arrival": {"time": "1694890478"}, "stopId": "42207"}, {"stopSequence": 67, "arrival": {"time": "1694890537"}, "stopId": "42208"}, {"stopSequence": 68, "arrival": {"time": "1694890665"}, "stopId": "42564"}, {"stopSequence": 69, "arrival": {"time": "1694890774"}, "stopId": "42214"}, {"stopSequence": 70, "arrival": {"time": "1694890881"}, "stopId": "42209"}, {"stopSequence": 71, "arrival": {"time": "1694891007"}, "stopId": "42210"}, {"stopSequence": 72, "arrival": {"time": "1694891210"}, "stopId": "42215"}, {"stopSequence": 73, "arrival": {"time": "1694891244"}, "stopId": "42216"}, {"stopSequence": 74, "arrival": {"time": "1694891290"}, "stopId": "42217"}, {"stopSequence": 75, "arrival": {"time": "1694891375"}, "stopId": "42218"}, {"stopSequence": 76, "arrival": {"time": "1694891426"}, "stopId": "42219"}, {"stopSequence": 77, "arrival": {"time": "1694891543"}, "stopId": "42220"}, {"stopSequence": 78, "arrival": {"time": "1694891596"}, "stopId": "42221"}, {"stopSequence": 79, "arrival": {"time": "1694891677"}, "stopId": "42222"}, {"stopSequence": 80, "arrival": {"time": "1694891762"}, "stopId": "42223"}, {"stopSequence": 81, "arrival": {"time": "1694891797"}, "stopId": "42224"}, {"stopSequence": 82, "arrival": {"time": "1694891894"}, "stopId": "42225"}, {"stopSequence": 83, "arrival": {"time": "1694891978"}, "stopId": "42226"}, {"stopSequence": 84, "arrival": {"time": "1694892049"}, "stopId": "42227"}, {"stopSequence": 85, "arrival": {"time": "1694892163"}, "stopId": "42228"}, {"stopSequence": 86, "arrival": {"time": "1694892221"}, "stopId": "42229"}, {"stopSequence": 87, "arrival": {"time": "1694892335"}, "stopId": "42230"}, {"stopSequence": 88, "arrival": {"time": "1694892396"}, "stopId": "42231"}, {"stopSequence": 89, "arrival": {"time": "1694892516"}, "stopId": "42232"}, {"stopSequence": 90, "arrival": {"time": "1694892716"}, "stopId": "42234"}, {"stopSequence": 91, "arrival": {"time": "1694892830"}, "stopId": "42235"}, {"stopSequence": 92, "arrival": {"time": "1694892880"}, "stopId": "42211"}, {"stopSequence": 93, "arrival": {"time": "1694893018"}, "stopId": "91142"}, {"stopSequence": 94, "arrival": {"time": "1694893231"}, "stopId": "91144"}, {"stopSequence": 95, "arrival": {"time": "1694893245"}, "stopId": "91150"}, {"stopSequence": 96, "arrival": {"time": "1694893382"}, "stopId": "91145"}, {"stopSequence": 97, "arrival": {"time": "1694893517"}, "stopId": "34560"}, {"stopSequence": 98, "arrival": {"time": "1694893598"}, "stopId": "42273"}, {"stopSequence": 99, "arrival": {"time": "1694893614"}, "stopId": "34415"}, {"stopSequence": 100, "arrival": {"time": "1694893819"}, "stopId": "42077"}], "vehicle": {"licensePlate": "DRFP68"}, "timestamp": "1694888992"}, "vehicle": {"trip": {"tripId": "16065-701ff27f-2", "startTime": "14:42:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "553", "directionId": 1}, "position": {"latitude": -36.812904, "longitude": -73.04892, "bearing": 150.0, "odometer": 0.0, "speed": 54.0}, "timestamp": "1694888992", "vehicle": {"licensePlate": "DRFP68"}}}, {"id": "7513505f-8562-49f0-8820-0a0ddced614d", "tripUpdate": {"trip": {"tripId": "16068-701ff27f-2", "startTime": "15:42:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "553", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 6, "arrival": {"time": "1694889017"}, "stopId": "40349"}, {"stopSequence": 7, "arrival": {"time": "1694889053"}, "stopId": "40350"}, {"stopSequence": 8, "arrival": {"time": "1694889111"}, "stopId": "40351"}, {"stopSequence": 9, "arrival": {"time": "1694889205"}, "stopId": "40352"}, {"stopSequence": 10, "arrival": {"time": "1694889320"}, "stopId": "42082"}, {"stopSequence": 11, "arrival": {"time": "1694889480"}, "stopId": "49107"}, {"stopSequence": 12, "arrival": {"time": "1694889546"}, "stopId": "38560"}, {"stopSequence": 13, "arrival": {"time": "1694889570"}, "stopId": "38697"}, {"stopSequence": 14, "arrival": {"time": "1694889599"}, "stopId": "38646"}, {"stopSequence": 15, "arrival": {"time": "1694889643"}, "stopId": "38632"}, {"stopSequence": 16, "arrival": {"time": "1694889719"}, "stopId": "38767"}, {"stopSequence": 17, "arrival": {"time": "1694889781"}, "stopId": "38768"}, {"stopSequence": 18, "arrival": {"time": "1694889828"}, "stopId": "38769"}, {"stopSequence": 19, "arrival": {"time": "1694889865"}, "stopId": "49357"}, {"stopSequence": 20, "arrival": {"time": "1694889905"}, "stopId": "38771"}, {"stopSequence": 21, "arrival": {"time": "1694889944"}, "stopId": "38668"}, {"stopSequence": 22, "arrival": {"time": "1694890037"}, "stopId": "38661"}, {"stopSequence": 23, "arrival": {"time": "1694890125"}, "stopId": "38657"}, {"stopSequence": 24, "arrival": {"time": "1694890184"}, "stopId": "38743"}, {"stopSequence": 25, "arrival": {"time": "1694890248"}, "stopId": "38652"}, {"stopSequence": 26, "arrival": {"time": "1694890311"}, "stopId": "38721"}, {"stopSequence": 27, "arrival": {"time": "1694890367"}, "stopId": "38659"}, {"stopSequence": 28, "arrival": {"time": "1694890455"}, "stopId": "38674"}, {"stopSequence": 29, "arrival": {"time": "1694890522"}, "stopId": "38649"}, {"stopSequence": 30, "arrival": {"time": "1694890584"}, "stopId": "38718"}, {"stopSequence": 31, "arrival": {"time": "1694890659"}, "stopId": "38735"}, {"stopSequence": 32, "arrival": {"time": "1694890714"}, "stopId": "42270"}, {"stopSequence": 33, "arrival": {"time": "1694890760"}, "stopId": "42271"}, {"stopSequence": 34, "arrival": {"time": "1694890830"}, "stopId": "4838438"}, {"stopSequence": 35, "arrival": {"time": "1694890981"}, "stopId": "44896"}, {"stopSequence": 36, "arrival": {"time": "1694891032"}, "stopId": "44897"}, {"stopSequence": 37, "arrival": {"time": "1694891112"}, "stopId": "44898"}, {"stopSequence": 38, "arrival": {"time": "1694891300"}, "stopId": "40993"}, {"stopSequence": 39, "arrival": {"time": "1694891587"}, "stopId": "16005188"}, {"stopSequence": 40, "arrival": {"time": "1694891902"}, "stopId": "40995"}, {"stopSequence": 41, "arrival": {"time": "1694891999"}, "stopId": "40996"}, {"stopSequence": 42, "arrival": {"time": "1694892103"}, "stopId": "40997"}, {"stopSequence": 43, "arrival": {"time": "1694892183"}, "stopId": "39614"}, {"stopSequence": 44, "arrival": {"time": "1694892251"}, "stopId": "39615"}, {"stopSequence": 45, "arrival": {"time": "1694892320"}, "stopId": "39616"}, {"stopSequence": 46, "arrival": {"time": "1694892400"}, "stopId": "39617"}, {"stopSequence": 47, "arrival": {"time": "1694892486"}, "stopId": "39618"}, {"stopSequence": 48, "arrival": {"time": "1694892555"}, "stopId": "39619"}, {"stopSequence": 49, "arrival": {"time": "1694892614"}, "stopId": "39620"}, {"stopSequence": 50, "arrival": {"time": "1694892725"}, "stopId": "39621"}, {"stopSequence": 51, "arrival": {"time": "1694892804"}, "stopId": "38281"}, {"stopSequence": 52, "arrival": {"time": "1694892896"}, "stopId": "37506"}, {"stopSequence": 53, "arrival": {"time": "1694892978"}, "stopId": "45068"}, {"stopSequence": 54, "arrival": {"time": "1694893187"}, "stopId": "37480"}, {"stopSequence": 55, "arrival": {"time": "1694893301"}, "stopId": "37477"}, {"stopSequence": 56, "arrival": {"time": "1694893431"}, "stopId": "40848"}, {"stopSequence": 57, "arrival": {"time": "1694893607"}, "stopId": "2-Apr"}, {"stopSequence": 58, "arrival": {"time": "1694893717"}, "stopId": "39728"}, {"stopSequence": 59, "arrival": {"time": "1694893929"}, "stopId": "39729"}, {"stopSequence": 60, "arrival": {"time": "1694893983"}, "stopId": "39730"}, {"stopSequence": 61, "arrival": {"time": "1694894216"}, "stopId": "42200"}, {"stopSequence": 62, "arrival": {"time": "1694894332"}, "stopId": "42203"}, {"stopSequence": 63, "arrival": {"time": "1694894491"}, "stopId": "42204"}, {"stopSequence": 64, "arrival": {"time": "1694894575"}, "stopId": "42205"}, {"stopSequence": 65, "arrival": {"time": "1694895464"}, "stopId": "42206"}, {"stopSequence": 66, "arrival": {"time": "1694895671"}, "stopId": "42207"}, {"stopSequence": 67, "arrival": {"time": "1694895875"}, "stopId": "42208"}, {"stopSequence": 68, "arrival": {"time": "1694896353"}, "stopId": "42564"}, {"stopSequence": 69, "arrival": {"time": "1694896793"}, "stopId": "42214"}, {"stopSequence": 70, "arrival": {"time": "1694897258"}, "stopId": "42209"}, {"stopSequence": 71, "arrival": {"time": "1694897856"}, "stopId": "42210"}, {"stopSequence": 72, "arrival": {"time": "1694898954"}, "stopId": "42215"}, {"stopSequence": 73, "arrival": {"time": "1694899157"}, "stopId": "42216"}, {"stopSequence": 74, "arrival": {"time": "1694899439"}, "stopId": "42217"}, {"stopSequence": 75, "arrival": {"time": "1694899986"}, "stopId": "42218"}, {"stopSequence": 76, "arrival": {"time": "1694900331"}, "stopId": "42219"}, {"stopSequence": 77, "arrival": {"time": "1694901193"}, "stopId": "42220"}, {"stopSequence": 78, "arrival": {"time": "1694901618"}, "stopId": "42221"}, {"stopSequence": 79, "arrival": {"time": "1694902306"}, "stopId": "42222"}, {"stopSequence": 80, "arrival": {"time": "1694903077"}, "stopId": "42223"}, {"stopSequence": 81, "arrival": {"time": "1694903420"}, "stopId": "42224"}, {"stopSequence": 82, "arrival": {"time": "1694904425"}, "stopId": "42225"}, {"stopSequence": 83, "arrival": {"time": "1694905386"}, "stopId": "42226"}, {"stopSequence": 84, "arrival": {"time": "1694906260"}, "stopId": "42227"}, {"stopSequence": 85, "arrival": {"time": "1694907828"}, "stopId": "42228"}, {"stopSequence": 86, "arrival": {"time": "1694908716"}, "stopId": "42229"}, {"stopSequence": 87, "arrival": {"time": "1694910654"}, "stopId": "42230"}, {"stopSequence": 88, "arrival": {"time": "1694911819"}, "stopId": "42231"}, {"stopSequence": 89, "arrival": {"time": "1694914419"}, "stopId": "42232"}, {"stopSequence": 90, "arrival": {"time": "1694919992"}, "stopId": "42234"}, {"stopSequence": 91, "arrival": {"time": "1694924144"}, "stopId": "42235"}, {"stopSequence": 92, "arrival": {"time": "1694926300"}, "stopId": "42211"}, {"stopSequence": 93, "arrival": {"time": "1694933513"}, "stopId": "91142"}, {"stopSequence": 94, "arrival": {"time": "1694950945"}, "stopId": "91144"}, {"stopSequence": 95, "arrival": {"time": "1694952474"}, "stopId": "91150"}, {"stopSequence": 96, "arrival": {"time": "1694972874"}, "stopId": "91145"}, {"stopSequence": 97, "arrival": {"time": "1695009031"}, "stopId": "34560"}, {"stopSequence": 98, "arrival": {"time": "1695049515"}, "stopId": "42273"}, {"stopSequence": 99, "arrival": {"time": "1695060545"}, "stopId": "34415"}, {"stopSequence": 100, "arrival": {"time": "1696124773"}, "stopId": "42077"}], "vehicle": {"licensePlate": "GWYY48"}, "timestamp": "1694888999"}, "vehicle": {"trip": {"tripId": "16068-701ff27f-2", "startTime": "15:42:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "553", "directionId": 1}, "position": {"latitude": -36.712456, "longitude": -73.13611, "bearing": 286.0, "odometer": 0.0, "speed": 45.0}, "timestamp": "1694889029", "vehicle": {"licensePlate": "GWYY48"}}}, {"id": "1e3659a7-3924-43c4-a494-8b01fb5fcc70", "tripUpdate": {"trip": {"tripId": "16009-701ff27f-2", "startTime": "14:59:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "553", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 59, "arrival": {"time": "1694889107"}, "stopId": "38514"}, {"stopSequence": 60, "arrival": {"time": "1694889139"}, "stopId": "38516"}, {"stopSequence": 61, "arrival": {"time": "1694889201"}, "stopId": "38518"}, {"stopSequence": 62, "arrival": {"time": "1694889305"}, "stopId": "38520"}, {"stopSequence": 63, "arrival": {"time": "1694889346"}, "stopId": "38521"}, {"stopSequence": 64, "arrival": {"time": "1694889397"}, "stopId": "38522"}, {"stopSequence": 65, "arrival": {"time": "1694889447"}, "stopId": "38523"}, {"stopSequence": 66, "arrival": {"time": "1694889500"}, "stopId": "38524"}, {"stopSequence": 67, "arrival": {"time": "1694889549"}, "stopId": "38525"}, {"stopSequence": 68, "arrival": {"time": "1694889600"}, "stopId": "38526"}, {"stopSequence": 69, "arrival": {"time": "1694889648"}, "stopId": "38527"}, {"stopSequence": 70, "arrival": {"time": "1694889734"}, "stopId": "38528"}, {"stopSequence": 71, "arrival": {"time": "1694889851"}, "stopId": "38529"}, {"stopSequence": 72, "arrival": {"time": "1694890051"}, "stopId": "38530"}, {"stopSequence": 73, "arrival": {"time": "1694890063"}, "stopId": "16005209"}, {"stopSequence": 74, "arrival": {"time": "1694890293"}, "stopId": "38531"}, {"stopSequence": 75, "arrival": {"time": "1694890347"}, "stopId": "8921285"}, {"stopSequence": 76, "arrival": {"time": "1694890456"}, "stopId": "38532"}, {"stopSequence": 77, "arrival": {"time": "1694890508"}, "stopId": "38533"}, {"stopSequence": 78, "arrival": {"time": "1694890562"}, "stopId": "38534"}, {"stopSequence": 79, "arrival": {"time": "1694890611"}, "stopId": "38535"}, {"stopSequence": 80, "arrival": {"time": "1694890676"}, "stopId": "38536"}, {"stopSequence": 81, "arrival": {"time": "1694890712"}, "stopId": "4838437"}, {"stopSequence": 82, "arrival": {"time": "1694890773"}, "stopId": "45085"}, {"stopSequence": 83, "arrival": {"time": "1694890849"}, "stopId": "45086"}, {"stopSequence": 84, "arrival": {"time": "1694890906"}, "stopId": "38539"}, {"stopSequence": 85, "arrival": {"time": "1694890970"}, "stopId": "38540"}, {"stopSequence": 86, "arrival": {"time": "1694891046"}, "stopId": "38544"}, {"stopSequence": 87, "arrival": {"time": "1694891117"}, "stopId": "38545"}, {"stopSequence": 88, "arrival": {"time": "1694891223"}, "stopId": "38546"}, {"stopSequence": 89, "arrival": {"time": "1694891358"}, "stopId": "38548"}, {"stopSequence": 90, "arrival": {"time": "1694891433"}, "stopId": "38549"}, {"stopSequence": 91, "arrival": {"time": "1694891501"}, "stopId": "38550"}, {"stopSequence": 92, "arrival": {"time": "1694891610"}, "stopId": "38551"}, {"stopSequence": 93, "arrival": {"time": "1694891717"}, "stopId": "38552"}, {"stopSequence": 94, "arrival": {"time": "1694891816"}, "stopId": "49359"}, {"stopSequence": 95, "arrival": {"time": "1694891882"}, "stopId": "49360"}, {"stopSequence": 96, "arrival": {"time": "1694892026"}, "stopId": "49361"}, {"stopSequence": 97, "arrival": {"time": "1694892053"}, "stopId": "49362"}, {"stopSequence": 98, "arrival": {"time": "1694892126"}, "stopId": "49363"}, {"stopSequence": 99, "arrival": {"time": "1694892191"}, "stopId": "49364"}, {"stopSequence": 100, "arrival": {"time": "1694892251"}, "stopId": "49365"}, {"stopSequence": 101, "arrival": {"time": "1694892590"}, "stopId": "41942"}, {"stopSequence": 102, "arrival": {"time": "1694892771"}, "stopId": "41943"}, {"stopSequence": 103, "arrival": {"time": "1694892936"}, "stopId": "40544"}, {"stopSequence": 104, "arrival": {"time": "1694893047"}, "stopId": "40545"}, {"stopSequence": 105, "arrival": {"time": "1694893133"}, "stopId": "40546"}, {"stopSequence": 106, "arrival": {"time": "1694893193"}, "stopId": "40547"}, {"stopSequence": 107, "arrival": {"time": "1694893278"}, "stopId": "40548"}, {"stopSequence": 108, "arrival": {"time": "1694893371"}, "stopId": "40589"}, {"stopSequence": 109, "arrival": {"time": "1694893405"}, "stopId": "40590"}, {"stopSequence": 110, "arrival": {"time": "1694893931"}, "stopId": "41947"}], "vehicle": {"licensePlate": "GZRC61"}, "timestamp": "1694889029"}, "vehicle": {"trip": {"tripId": "16009-701ff27f-2", "startTime": "14:59:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "553", "directionId": 0}, "position": {"latitude": -36.827347, "longitude": -73.04623, "bearing": 60.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889029", "vehicle": {"licensePlate": "GZRC61"}}}, {"id": "e1043ea8-d2ff-4c04-8d8a-d85b537e7e29", "tripUpdate": {"trip": {"tripId": "16064-701ff27f-2", "startTime": "14:22:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "553", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 76, "arrival": {"time": "1694889068"}, "stopId": "42219"}, {"stopSequence": 77, "arrival": {"time": "1694889173"}, "stopId": "42220"}, {"stopSequence": 78, "arrival": {"time": "1694889220"}, "stopId": "42221"}, {"stopSequence": 79, "arrival": {"time": "1694889289"}, "stopId": "42222"}, {"stopSequence": 80, "arrival": {"time": "1694889359"}, "stopId": "42223"}, {"stopSequence": 81, "arrival": {"time": "1694889387"}, "stopId": "42224"}, {"stopSequence": 82, "arrival": {"time": "1694889464"}, "stopId": "42225"}, {"stopSequence": 83, "arrival": {"time": "1694889528"}, "stopId": "42226"}, {"stopSequence": 84, "arrival": {"time": "1694889581"}, "stopId": "42227"}, {"stopSequence": 85, "arrival": {"time": "1694889663"}, "stopId": "42228"}, {"stopSequence": 86, "arrival": {"time": "1694889704"}, "stopId": "42229"}, {"stopSequence": 87, "arrival": {"time": "1694889782"}, "stopId": "42230"}, {"stopSequence": 88, "arrival": {"time": "1694889823"}, "stopId": "42231"}, {"stopSequence": 89, "arrival": {"time": "1694889901"}, "stopId": "42232"}, {"stopSequence": 90, "arrival": {"time": "1694890026"}, "stopId": "42234"}, {"stopSequence": 91, "arrival": {"time": "1694890093"}, "stopId": "42235"}, {"stopSequence": 92, "arrival": {"time": "1694890123"}, "stopId": "42211"}, {"stopSequence": 93, "arrival": {"time": "1694890201"}, "stopId": "91142"}, {"stopSequence": 94, "arrival": {"time": "1694890317"}, "stopId": "91144"}, {"stopSequence": 95, "arrival": {"time": "1694890324"}, "stopId": "91150"}, {"stopSequence": 96, "arrival": {"time": "1694890396"}, "stopId": "91145"}, {"stopSequence": 97, "arrival": {"time": "1694890464"}, "stopId": "34560"}, {"stopSequence": 98, "arrival": {"time": "1694890504"}, "stopId": "42273"}, {"stopSequence": 99, "arrival": {"time": "1694890511"}, "stopId": "34415"}, {"stopSequence": 100, "arrival": {"time": "1694890609"}, "stopId": "42077"}], "vehicle": {"licensePlate": "HYYX52"}, "timestamp": "1694889030"}, "vehicle": {"trip": {"tripId": "16064-701ff27f-2", "startTime": "14:22:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "553", "directionId": 1}, "position": {"latitude": -36.90515, "longitude": -73.03143, "bearing": 190.0, "odometer": 0.0, "speed": 44.0}, "timestamp": "1694889030", "vehicle": {"licensePlate": "HYYX52"}}}, {"id": "598b4344-9f2a-4555-8c96-ca3a40316942", "tripUpdate": {"trip": {"tripId": "16062-701ff27f-2", "startTime": "13:42:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "553", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 94, "arrival": {"time": "1694888637"}, "stopId": "91144"}, {"stopSequence": 95, "arrival": {"time": "1694888645"}, "stopId": "91150"}, {"stopSequence": 96, "arrival": {"time": "1694888721"}, "stopId": "91145"}, {"stopSequence": 97, "arrival": {"time": "1694888793"}, "stopId": "34560"}, {"stopSequence": 98, "arrival": {"time": "1694888835"}, "stopId": "42273"}, {"stopSequence": 99, "arrival": {"time": "1694888842"}, "stopId": "34415"}, {"stopSequence": 100, "arrival": {"time": "1694888942"}, "stopId": "42077"}], "vehicle": {"licensePlate": "HYYX75"}, "timestamp": "1694888550"}, "vehicle": {"trip": {"tripId": "16062-701ff27f-2", "startTime": "13:42:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "553", "directionId": 1}, "position": {"latitude": -36.95525, "longitude": -73.01733, "bearing": 252.0, "odometer": 0.0, "speed": 13.0}, "timestamp": "1694888550", "vehicle": {"licensePlate": "HYYX75"}}}, {"id": "c24af2bb-43de-48bc-99e3-e4b49c834c09", "tripUpdate": {"trip": {"tripId": "16067-701ff27f-2", "startTime": "15:22:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "553", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 4, "arrival": {"time": "1694889041"}, "stopId": "40347"}, {"stopSequence": 5, "arrival": {"time": "1694889097"}, "stopId": "40348"}, {"stopSequence": 6, "arrival": {"time": "1694889149"}, "stopId": "40349"}, {"stopSequence": 7, "arrival": {"time": "1694889184"}, "stopId": "40350"}, {"stopSequence": 8, "arrival": {"time": "1694889241"}, "stopId": "40351"}, {"stopSequence": 9, "arrival": {"time": "1694889334"}, "stopId": "40352"}, {"stopSequence": 10, "arrival": {"time": "1694889447"}, "stopId": "42082"}, {"stopSequence": 11, "arrival": {"time": "1694889605"}, "stopId": "49107"}, {"stopSequence": 12, "arrival": {"time": "1694889670"}, "stopId": "38560"}, {"stopSequence": 13, "arrival": {"time": "1694889695"}, "stopId": "38697"}, {"stopSequence": 14, "arrival": {"time": "1694889723"}, "stopId": "38646"}, {"stopSequence": 15, "arrival": {"time": "1694889767"}, "stopId": "38632"}, {"stopSequence": 16, "arrival": {"time": "1694889842"}, "stopId": "38767"}, {"stopSequence": 17, "arrival": {"time": "1694889904"}, "stopId": "38768"}, {"stopSequence": 18, "arrival": {"time": "1694889951"}, "stopId": "38769"}, {"stopSequence": 19, "arrival": {"time": "1694889988"}, "stopId": "49357"}, {"stopSequence": 20, "arrival": {"time": "1694890028"}, "stopId": "38771"}, {"stopSequence": 21, "arrival": {"time": "1694890067"}, "stopId": "38668"}, {"stopSequence": 22, "arrival": {"time": "1694890160"}, "stopId": "38661"}, {"stopSequence": 23, "arrival": {"time": "1694890248"}, "stopId": "38657"}, {"stopSequence": 24, "arrival": {"time": "1694890308"}, "stopId": "38743"}, {"stopSequence": 25, "arrival": {"time": "1694890372"}, "stopId": "38652"}, {"stopSequence": 26, "arrival": {"time": "1694890435"}, "stopId": "38721"}, {"stopSequence": 27, "arrival": {"time": "1694890491"}, "stopId": "38659"}, {"stopSequence": 28, "arrival": {"time": "1694890580"}, "stopId": "38674"}, {"stopSequence": 29, "arrival": {"time": "1694890648"}, "stopId": "38649"}, {"stopSequence": 30, "arrival": {"time": "1694890711"}, "stopId": "38718"}, {"stopSequence": 31, "arrival": {"time": "1694890786"}, "stopId": "38735"}, {"stopSequence": 32, "arrival": {"time": "1694890842"}, "stopId": "42270"}, {"stopSequence": 33, "arrival": {"time": "1694890889"}, "stopId": "42271"}, {"stopSequence": 34, "arrival": {"time": "1694890960"}, "stopId": "4838438"}, {"stopSequence": 35, "arrival": {"time": "1694891113"}, "stopId": "44896"}, {"stopSequence": 36, "arrival": {"time": "1694891166"}, "stopId": "44897"}, {"stopSequence": 37, "arrival": {"time": "1694891246"}, "stopId": "44898"}, {"stopSequence": 38, "arrival": {"time": "1694891439"}, "stopId": "40993"}, {"stopSequence": 39, "arrival": {"time": "1694891733"}, "stopId": "16005188"}, {"stopSequence": 40, "arrival": {"time": "1694892057"}, "stopId": "40995"}, {"stopSequence": 41, "arrival": {"time": "1694892158"}, "stopId": "40996"}, {"stopSequence": 42, "arrival": {"time": "1694892265"}, "stopId": "40997"}, {"stopSequence": 43, "arrival": {"time": "1694892348"}, "stopId": "39614"}, {"stopSequence": 44, "arrival": {"time": "1694892419"}, "stopId": "39615"}, {"stopSequence": 45, "arrival": {"time": "1694892490"}, "stopId": "39616"}, {"stopSequence": 46, "arrival": {"time": "1694892573"}, "stopId": "39617"}, {"stopSequence": 47, "arrival": {"time": "1694892662"}, "stopId": "39618"}, {"stopSequence": 48, "arrival": {"time": "1694892734"}, "stopId": "39619"}, {"stopSequence": 49, "arrival": {"time": "1694892796"}, "stopId": "39620"}, {"stopSequence": 50, "arrival": {"time": "1694892912"}, "stopId": "39621"}, {"stopSequence": 51, "arrival": {"time": "1694892994"}, "stopId": "38281"}, {"stopSequence": 52, "arrival": {"time": "1694893089"}, "stopId": "37506"}, {"stopSequence": 53, "arrival": {"time": "1694893175"}, "stopId": "45068"}, {"stopSequence": 54, "arrival": {"time": "1694893395"}, "stopId": "37480"}, {"stopSequence": 55, "arrival": {"time": "1694893514"}, "stopId": "37477"}, {"stopSequence": 56, "arrival": {"time": "1694893650"}, "stopId": "40848"}, {"stopSequence": 57, "arrival": {"time": "1694893836"}, "stopId": "2-Apr"}, {"stopSequence": 58, "arrival": {"time": "1694893952"}, "stopId": "39728"}, {"stopSequence": 59, "arrival": {"time": "1694894176"}, "stopId": "39729"}, {"stopSequence": 60, "arrival": {"time": "1694894233"}, "stopId": "39730"}, {"stopSequence": 61, "arrival": {"time": "1694894480"}, "stopId": "42200"}, {"stopSequence": 62, "arrival": {"time": "1694894603"}, "stopId": "42203"}, {"stopSequence": 63, "arrival": {"time": "1694894772"}, "stopId": "42204"}, {"stopSequence": 64, "arrival": {"time": "1694894861"}, "stopId": "42205"}, {"stopSequence": 65, "arrival": {"time": "1694895813"}, "stopId": "42206"}, {"stopSequence": 66, "arrival": {"time": "1694896035"}, "stopId": "42207"}, {"stopSequence": 67, "arrival": {"time": "1694896255"}, "stopId": "42208"}, {"stopSequence": 68, "arrival": {"time": "1694896772"}, "stopId": "42564"}, {"stopSequence": 69, "arrival": {"time": "1694897250"}, "stopId": "42214"}, {"stopSequence": 70, "arrival": {"time": "1694897758"}, "stopId": "42209"}, {"stopSequence": 71, "arrival": {"time": "1694898416"}, "stopId": "42210"}, {"stopSequence": 72, "arrival": {"time": "1694899633"}, "stopId": "42215"}, {"stopSequence": 73, "arrival": {"time": "1694899859"}, "stopId": "42216"}, {"stopSequence": 74, "arrival": {"time": "1694900174"}, "stopId": "42217"}, {"stopSequence": 75, "arrival": {"time": "1694900789"}, "stopId": "42218"}, {"stopSequence": 76, "arrival": {"time": "1694901179"}, "stopId": "42219"}, {"stopSequence": 77, "arrival": {"time": "1694902157"}, "stopId": "42220"}, {"stopSequence": 78, "arrival": {"time": "1694902644"}, "stopId": "42221"}, {"stopSequence": 79, "arrival": {"time": "1694903435"}, "stopId": "42222"}, {"stopSequence": 80, "arrival": {"time": "1694904329"}, "stopId": "42223"}, {"stopSequence": 81, "arrival": {"time": "1694904727"}, "stopId": "42224"}, {"stopSequence": 82, "arrival": {"time": "1694905908"}, "stopId": "42225"}, {"stopSequence": 83, "arrival": {"time": "1694907048"}, "stopId": "42226"}, {"stopSequence": 84, "arrival": {"time": "1694908095"}, "stopId": "42227"}, {"stopSequence": 85, "arrival": {"time": "1694909998"}, "stopId": "42228"}, {"stopSequence": 86, "arrival": {"time": "1694911089"}, "stopId": "42229"}, {"stopSequence": 87, "arrival": {"time": "1694913508"}, "stopId": "42230"}, {"stopSequence": 88, "arrival": {"time": "1694914987"}, "stopId": "42231"}, {"stopSequence": 89, "arrival": {"time": "1694918358"}, "stopId": "42232"}, {"stopSequence": 90, "arrival": {"time": "1694925920"}, "stopId": "42234"}, {"stopSequence": 91, "arrival": {"time": "1694931876"}, "stopId": "42235"}, {"stopSequence": 92, "arrival": {"time": "1694935085"}, "stopId": "42211"}, {"stopSequence": 93, "arrival": {"time": "1694946443"}, "stopId": "91142"}, {"stopSequence": 94, "arrival": {"time": "1694978607"}, "stopId": "91144"}, {"stopSequence": 95, "arrival": {"time": "1694981805"}, "stopId": "91150"}, {"stopSequence": 96, "arrival": {"time": "1695032159"}, "stopId": "91145"}, {"stopSequence": 97, "arrival": {"time": "1695180431"}, "stopId": "34560"}, {"stopSequence": 98, "arrival": {"time": "1695628987"}, "stopId": "42273"}, {"stopSequence": 99, "arrival": {"time": "1695936360"}, "stopId": "34415"}], "vehicle": {"licensePlate": "WW2795"}, "timestamp": "1694889030"}, "vehicle": {"trip": {"tripId": "16067-701ff27f-2", "startTime": "15:22:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "553", "directionId": 1}, "position": {"latitude": -36.711475, "longitude": -73.138565, "bearing": 136.0, "odometer": 0.0, "speed": 35.0}, "timestamp": "1694889030", "vehicle": {"licensePlate": "WW2795"}}}, {"id": "9e5591f3-20bb-46c8-a339-bf88c6a1ad84", "tripUpdate": {"trip": {"tripId": "16177-701ff27f-2", "startTime": "14:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "554", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 102, "arrival": {"time": "1694888956"}, "stopId": "42047"}, {"stopSequence": 103, "arrival": {"time": "1694889011"}, "stopId": "42048"}, {"stopSequence": 104, "arrival": {"time": "1694889066"}, "stopId": "42049"}, {"stopSequence": 105, "arrival": {"time": "1694889114"}, "stopId": "42050"}, {"stopSequence": 106, "arrival": {"time": "1694889193"}, "stopId": "42051"}, {"stopSequence": 107, "arrival": {"time": "1694889215"}, "stopId": "42052"}, {"stopSequence": 108, "arrival": {"time": "1694889278"}, "stopId": "42053"}, {"stopSequence": 109, "arrival": {"time": "1694889319"}, "stopId": "42054"}, {"stopSequence": 110, "arrival": {"time": "1694889396"}, "stopId": "42055"}, {"stopSequence": 111, "arrival": {"time": "1694889435"}, "stopId": "42056"}, {"stopSequence": 112, "arrival": {"time": "1694889576"}, "stopId": "42057"}, {"stopSequence": 113, "arrival": {"time": "1694890469"}, "stopId": "42127"}, {"stopSequence": 114, "arrival": {"time": "1694890520"}, "stopId": "42128"}, {"stopSequence": 115, "arrival": {"time": "1694890534"}, "stopId": "42129"}, {"stopSequence": 116, "arrival": {"time": "1694890575"}, "stopId": "41950"}], "vehicle": {"licensePlate": "DSJL30"}, "timestamp": "1694888915"}, "vehicle": {"trip": {"tripId": "16177-701ff27f-2", "startTime": "14:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "554", "directionId": 0}, "position": {"latitude": -36.700905, "longitude": -73.11989, "bearing": 18.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888915", "vehicle": {"licensePlate": "DSJL30"}}}, {"id": "8103c0e9-d46c-4695-bdec-c5495222ebe9", "tripUpdate": {"trip": {"tripId": "16178-701ff27f-2", "startTime": "14:21:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "554", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 80, "arrival": {"time": "1694889074"}, "stopId": "45085"}, {"stopSequence": 81, "arrival": {"time": "1694889155"}, "stopId": "45086"}, {"stopSequence": 82, "arrival": {"time": "1694889211"}, "stopId": "38539"}, {"stopSequence": 83, "arrival": {"time": "1694889280"}, "stopId": "38540"}, {"stopSequence": 84, "arrival": {"time": "1694889354"}, "stopId": "38544"}, {"stopSequence": 85, "arrival": {"time": "1694889421"}, "stopId": "38545"}, {"stopSequence": 86, "arrival": {"time": "1694889519"}, "stopId": "38546"}, {"stopSequence": 87, "arrival": {"time": "1694889639"}, "stopId": "38548"}, {"stopSequence": 88, "arrival": {"time": "1694889703"}, "stopId": "38549"}, {"stopSequence": 89, "arrival": {"time": "1694889759"}, "stopId": "38550"}, {"stopSequence": 90, "arrival": {"time": "1694889854"}, "stopId": "38551"}, {"stopSequence": 91, "arrival": {"time": "1694889937"}, "stopId": "38552"}, {"stopSequence": 92, "arrival": {"time": "1694890015"}, "stopId": "49359"}, {"stopSequence": 93, "arrival": {"time": "1694890065"}, "stopId": "49360"}, {"stopSequence": 94, "arrival": {"time": "1694890174"}, "stopId": "49361"}, {"stopSequence": 95, "arrival": {"time": "1694890199"}, "stopId": "49362"}, {"stopSequence": 96, "arrival": {"time": "1694890245"}, "stopId": "49363"}, {"stopSequence": 97, "arrival": {"time": "1694890291"}, "stopId": "49364"}, {"stopSequence": 98, "arrival": {"time": "1694890336"}, "stopId": "49365"}, {"stopSequence": 99, "arrival": {"time": "1694890561"}, "stopId": "41942"}, {"stopSequence": 100, "arrival": {"time": "1694890662"}, "stopId": "42045"}, {"stopSequence": 101, "arrival": {"time": "1694890736"}, "stopId": "42046"}, {"stopSequence": 102, "arrival": {"time": "1694890783"}, "stopId": "42047"}, {"stopSequence": 103, "arrival": {"time": "1694890836"}, "stopId": "42048"}, {"stopSequence": 104, "arrival": {"time": "1694890890"}, "stopId": "42049"}, {"stopSequence": 105, "arrival": {"time": "1694890938"}, "stopId": "42050"}, {"stopSequence": 106, "arrival": {"time": "1694891018"}, "stopId": "42051"}, {"stopSequence": 107, "arrival": {"time": "1694891042"}, "stopId": "42052"}, {"stopSequence": 108, "arrival": {"time": "1694891109"}, "stopId": "42053"}, {"stopSequence": 109, "arrival": {"time": "1694891152"}, "stopId": "42054"}, {"stopSequence": 110, "arrival": {"time": "1694891236"}, "stopId": "42055"}, {"stopSequence": 111, "arrival": {"time": "1694891280"}, "stopId": "42056"}, {"stopSequence": 112, "arrival": {"time": "1694891441"}, "stopId": "42057"}, {"stopSequence": 113, "arrival": {"time": "1694892657"}, "stopId": "42127"}, {"stopSequence": 114, "arrival": {"time": "1694892739"}, "stopId": "42128"}, {"stopSequence": 115, "arrival": {"time": "1694892760"}, "stopId": "42129"}, {"stopSequence": 116, "arrival": {"time": "1694892826"}, "stopId": "41950"}], "vehicle": {"licensePlate": "JWTR88"}, "timestamp": "1694889029"}, "vehicle": {"trip": {"tripId": "16178-701ff27f-2", "startTime": "14:21:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "554", "directionId": 0}, "position": {"latitude": -36.76355, "longitude": -73.08718, "bearing": 332.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889029", "vehicle": {"licensePlate": "JWTR88"}}}, {"id": "c48093f8-696d-4227-a3d0-0d50b1560d17", "tripUpdate": {"trip": {"tripId": "16121-701ff27f-2", "startTime": "14:21:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "554", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 71, "arrival": {"time": "1694889073"}, "stopId": "39729"}, {"stopSequence": 72, "arrival": {"time": "1694889099"}, "stopId": "39730"}, {"stopSequence": 73, "arrival": {"time": "1694889213"}, "stopId": "42200"}, {"stopSequence": 74, "arrival": {"time": "1694889246"}, "stopId": "42203"}, {"stopSequence": 75, "arrival": {"time": "1694889353"}, "stopId": "42205"}, {"stopSequence": 76, "arrival": {"time": "1694889409"}, "stopId": "42201"}, {"stopSequence": 77, "arrival": {"time": "1694889668"}, "stopId": "42206"}, {"stopSequence": 78, "arrival": {"time": "1694889715"}, "stopId": "42207"}, {"stopSequence": 79, "arrival": {"time": "1694889777"}, "stopId": "42208"}, {"stopSequence": 80, "arrival": {"time": "1694889902"}, "stopId": "42564"}, {"stopSequence": 81, "arrival": {"time": "1694890005"}, "stopId": "42214"}, {"stopSequence": 82, "arrival": {"time": "1694890108"}, "stopId": "42209"}, {"stopSequence": 83, "arrival": {"time": "1694890223"}, "stopId": "42210"}, {"stopSequence": 84, "arrival": {"time": "1694890405"}, "stopId": "42215"}, {"stopSequence": 85, "arrival": {"time": "1694890432"}, "stopId": "42216"}, {"stopSequence": 86, "arrival": {"time": "1694890476"}, "stopId": "42217"}, {"stopSequence": 87, "arrival": {"time": "1694890543"}, "stopId": "42218"}, {"stopSequence": 88, "arrival": {"time": "1694890587"}, "stopId": "42219"}, {"stopSequence": 89, "arrival": {"time": "1694890687"}, "stopId": "42220"}, {"stopSequence": 90, "arrival": {"time": "1694890732"}, "stopId": "42221"}, {"stopSequence": 91, "arrival": {"time": "1694890802"}, "stopId": "42222"}, {"stopSequence": 92, "arrival": {"time": "1694890880"}, "stopId": "42223"}, {"stopSequence": 93, "arrival": {"time": "1694890913"}, "stopId": "42224"}, {"stopSequence": 94, "arrival": {"time": "1694890985"}, "stopId": "42225"}, {"stopSequence": 95, "arrival": {"time": "1694891057"}, "stopId": "42226"}, {"stopSequence": 96, "arrival": {"time": "1694891114"}, "stopId": "42227"}, {"stopSequence": 97, "arrival": {"time": "1694891205"}, "stopId": "42228"}, {"stopSequence": 98, "arrival": {"time": "1694891251"}, "stopId": "42229"}, {"stopSequence": 99, "arrival": {"time": "1694891340"}, "stopId": "42230"}, {"stopSequence": 100, "arrival": {"time": "1694891387"}, "stopId": "42231"}, {"stopSequence": 101, "arrival": {"time": "1694891480"}, "stopId": "42232"}, {"stopSequence": 102, "arrival": {"time": "1694891584"}, "stopId": "42233"}, {"stopSequence": 103, "arrival": {"time": "1694891631"}, "stopId": "42234"}, {"stopSequence": 104, "arrival": {"time": "1694891716"}, "stopId": "42235"}, {"stopSequence": 105, "arrival": {"time": "1694891754"}, "stopId": "42211"}, {"stopSequence": 106, "arrival": {"time": "1694891820"}, "stopId": "49203"}, {"stopSequence": 107, "arrival": {"time": "1694891883"}, "stopId": "49204"}, {"stopSequence": 108, "arrival": {"time": "1694891911"}, "stopId": "42503"}, {"stopSequence": 109, "arrival": {"time": "1694892213"}, "stopId": "42272"}, {"stopSequence": 110, "arrival": {"time": "1694892420"}, "stopId": "42077"}], "vehicle": {"licensePlate": "KCFB60"}, "timestamp": "1694889028"}, "vehicle": {"trip": {"tripId": "16121-701ff27f-2", "startTime": "14:21:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "554", "directionId": 1}, "position": {"latitude": -36.838905, "longitude": -73.05533, "bearing": 156.0, "odometer": 0.0, "speed": 66.0}, "timestamp": "1694889028", "vehicle": {"licensePlate": "KCFB60"}}}, {"id": "d2f6da68-d849-45af-960a-96ccba5531ab", "tripUpdate": {"trip": {"tripId": "16123-701ff27f-2", "startTime": "15:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "554", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 3, "arrival": {"time": "1694889721"}, "stopId": "41957"}, {"stopSequence": 4, "arrival": {"time": "1694889758"}, "stopId": "41958"}, {"stopSequence": 5, "arrival": {"time": "1694889841"}, "stopId": "41959"}, {"stopSequence": 6, "arrival": {"time": "1694889868"}, "stopId": "41960"}, {"stopSequence": 7, "arrival": {"time": "1694889937"}, "stopId": "41961"}, {"stopSequence": 8, "arrival": {"time": "1694889962"}, "stopId": "41962"}, {"stopSequence": 9, "arrival": {"time": "1694890035"}, "stopId": "41963"}, {"stopSequence": 10, "arrival": {"time": "1694890079"}, "stopId": "41964"}, {"stopSequence": 11, "arrival": {"time": "1694890120"}, "stopId": "41965"}, {"stopSequence": 12, "arrival": {"time": "1694890176"}, "stopId": "41966"}, {"stopSequence": 13, "arrival": {"time": "1694890223"}, "stopId": "41967"}, {"stopSequence": 14, "arrival": {"time": "1694890304"}, "stopId": "41968"}, {"stopSequence": 15, "arrival": {"time": "1694890540"}, "stopId": "41970"}, {"stopSequence": 16, "arrival": {"time": "1694890550"}, "stopId": "40542"}, {"stopSequence": 17, "arrival": {"time": "1694890565"}, "stopId": "41971"}, {"stopSequence": 18, "arrival": {"time": "1694890596"}, "stopId": "40541"}, {"stopSequence": 19, "arrival": {"time": "1694890603"}, "stopId": "41972"}, {"stopSequence": 20, "arrival": {"time": "1694890628"}, "stopId": "40540"}, {"stopSequence": 21, "arrival": {"time": "1694890681"}, "stopId": "40539"}, {"stopSequence": 22, "arrival": {"time": "1694890748"}, "stopId": "42855"}, {"stopSequence": 23, "arrival": {"time": "1694890790"}, "stopId": "41975"}, {"stopSequence": 24, "arrival": {"time": "1694890812"}, "stopId": "42857"}, {"stopSequence": 25, "arrival": {"time": "1694890846"}, "stopId": "38697"}, {"stopSequence": 26, "arrival": {"time": "1694890894"}, "stopId": "38646"}, {"stopSequence": 27, "arrival": {"time": "1694890933"}, "stopId": "38632"}, {"stopSequence": 28, "arrival": {"time": "1694891029"}, "stopId": "38767"}, {"stopSequence": 29, "arrival": {"time": "1694891098"}, "stopId": "38768"}, {"stopSequence": 30, "arrival": {"time": "1694891157"}, "stopId": "38769"}, {"stopSequence": 31, "arrival": {"time": "1694891196"}, "stopId": "49357"}, {"stopSequence": 32, "arrival": {"time": "1694891252"}, "stopId": "38771"}, {"stopSequence": 33, "arrival": {"time": "1694891305"}, "stopId": "38668"}, {"stopSequence": 34, "arrival": {"time": "1694891417"}, "stopId": "38661"}, {"stopSequence": 35, "arrival": {"time": "1694891518"}, "stopId": "38657"}, {"stopSequence": 36, "arrival": {"time": "1694891596"}, "stopId": "38743"}, {"stopSequence": 37, "arrival": {"time": "1694891684"}, "stopId": "38652"}, {"stopSequence": 38, "arrival": {"time": "1694891772"}, "stopId": "38721"}, {"stopSequence": 39, "arrival": {"time": "1694891851"}, "stopId": "38659"}, {"stopSequence": 40, "arrival": {"time": "1694891977"}, "stopId": "38674"}, {"stopSequence": 41, "arrival": {"time": "1694892075"}, "stopId": "38649"}, {"stopSequence": 42, "arrival": {"time": "1694892181"}, "stopId": "38718"}, {"stopSequence": 43, "arrival": {"time": "1694892281"}, "stopId": "38735"}, {"stopSequence": 44, "arrival": {"time": "1694892370"}, "stopId": "42270"}, {"stopSequence": 45, "arrival": {"time": "1694892441"}, "stopId": "42271"}, {"stopSequence": 46, "arrival": {"time": "1694892557"}, "stopId": "4838438"}, {"stopSequence": 47, "arrival": {"time": "1694892816"}, "stopId": "44896"}, {"stopSequence": 48, "arrival": {"time": "1694892904"}, "stopId": "44897"}, {"stopSequence": 49, "arrival": {"time": "1694893026"}, "stopId": "44898"}, {"stopSequence": 50, "arrival": {"time": "1694893380"}, "stopId": "40993"}, {"stopSequence": 51, "arrival": {"time": "1694893932"}, "stopId": "16005188"}, {"stopSequence": 52, "arrival": {"time": "1694894569"}, "stopId": "40995"}, {"stopSequence": 53, "arrival": {"time": "1694894802"}, "stopId": "40996"}, {"stopSequence": 54, "arrival": {"time": "1694895037"}, "stopId": "40997"}, {"stopSequence": 55, "arrival": {"time": "1694895213"}, "stopId": "39614"}, {"stopSequence": 56, "arrival": {"time": "1694895380"}, "stopId": "39615"}, {"stopSequence": 57, "arrival": {"time": "1694895558"}, "stopId": "39616"}, {"stopSequence": 58, "arrival": {"time": "1694895748"}, "stopId": "39617"}, {"stopSequence": 59, "arrival": {"time": "1694895969"}, "stopId": "39618"}, {"stopSequence": 60, "arrival": {"time": "1694896139"}, "stopId": "39619"}, {"stopSequence": 61, "arrival": {"time": "1694896311"}, "stopId": "39620"}, {"stopSequence": 62, "arrival": {"time": "1694896611"}, "stopId": "39621"}, {"stopSequence": 63, "arrival": {"time": "1694896830"}, "stopId": "38281"}, {"stopSequence": 64, "arrival": {"time": "1694897093"}, "stopId": "37506"}, {"stopSequence": 65, "arrival": {"time": "1694897295"}, "stopId": "45068"}, {"stopSequence": 66, "arrival": {"time": "1694897970"}, "stopId": "37480"}, {"stopSequence": 67, "arrival": {"time": "1694898337"}, "stopId": "37477"}, {"stopSequence": 68, "arrival": {"time": "1694898734"}, "stopId": "40848"}, {"stopSequence": 69, "arrival": {"time": "1694899403"}, "stopId": "2-Apr"}, {"stopSequence": 70, "arrival": {"time": "1694899791"}, "stopId": "39728"}, {"stopSequence": 71, "arrival": {"time": "1694900626"}, "stopId": "39729"}, {"stopSequence": 72, "arrival": {"time": "1694900847"}, "stopId": "39730"}, {"stopSequence": 73, "arrival": {"time": "1694901924"}, "stopId": "42200"}, {"stopSequence": 74, "arrival": {"time": "1694902270"}, "stopId": "42203"}, {"stopSequence": 75, "arrival": {"time": "1694903533"}, "stopId": "42205"}, {"stopSequence": 76, "arrival": {"time": "1694904292"}, "stopId": "42201"}, {"stopSequence": 77, "arrival": {"time": "1694909093"}, "stopId": "42206"}, {"stopSequence": 78, "arrival": {"time": "1694910312"}, "stopId": "42207"}, {"stopSequence": 79, "arrival": {"time": "1694912123"}, "stopId": "42208"}, {"stopSequence": 80, "arrival": {"time": "1694916803"}, "stopId": "42564"}, {"stopSequence": 81, "arrival": {"time": "1694922311"}, "stopId": "42214"}, {"stopSequence": 82, "arrival": {"time": "1694930370"}, "stopId": "42209"}, {"stopSequence": 83, "arrival": {"time": "1694945165"}, "stopId": "42210"}, {"stopSequence": 84, "arrival": {"time": "1695015042"}, "stopId": "42215"}, {"stopSequence": 85, "arrival": {"time": "1695042904"}, "stopId": "42216"}, {"stopSequence": 86, "arrival": {"time": "1695127161"}, "stopId": "42217"}, {"stopSequence": 87, "arrival": {"time": "1696251148"}, "stopId": "42218"}], "vehicle": {"licensePlate": "TX3525"}, "timestamp": "1694888687"}, "vehicle": {"trip": {"tripId": "16123-701ff27f-2", "startTime": "15:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "554", "directionId": 1}, "position": {"latitude": -36.64417, "longitude": -73.09711, "bearing": 234.0, "odometer": 0.0, "speed": 20.0}, "timestamp": "1694888687", "vehicle": {"licensePlate": "TX3525"}}}, {"id": "0b9ff009-f097-48bf-96dd-9224e5d905b9", "tripUpdate": {"trip": {"tripId": "16124-701ff27f-2", "startTime": "15:21:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "554", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 28, "arrival": {"time": "1694889116"}, "stopId": "38767"}, {"stopSequence": 29, "arrival": {"time": "1694889179"}, "stopId": "38768"}, {"stopSequence": 30, "arrival": {"time": "1694889233"}, "stopId": "38769"}, {"stopSequence": 31, "arrival": {"time": "1694889267"}, "stopId": "49357"}, {"stopSequence": 32, "arrival": {"time": "1694889316"}, "stopId": "38771"}, {"stopSequence": 33, "arrival": {"time": "1694889361"}, "stopId": "38668"}, {"stopSequence": 34, "arrival": {"time": "1694889453"}, "stopId": "38661"}, {"stopSequence": 35, "arrival": {"time": "1694889534"}, "stopId": "38657"}, {"stopSequence": 36, "arrival": {"time": "1694889594"}, "stopId": "38743"}, {"stopSequence": 37, "arrival": {"time": "1694889660"}, "stopId": "38652"}, {"stopSequence": 38, "arrival": {"time": "1694889725"}, "stopId": "38721"}, {"stopSequence": 39, "arrival": {"time": "1694889781"}, "stopId": "38659"}, {"stopSequence": 40, "arrival": {"time": "1694889868"}, "stopId": "38674"}, {"stopSequence": 41, "arrival": {"time": "1694889934"}, "stopId": "38649"}, {"stopSequence": 42, "arrival": {"time": "1694890003"}, "stopId": "38718"}, {"stopSequence": 43, "arrival": {"time": "1694890067"}, "stopId": "38735"}, {"stopSequence": 44, "arrival": {"time": "1694890122"}, "stopId": "42270"}, {"stopSequence": 45, "arrival": {"time": "1694890165"}, "stopId": "42271"}, {"stopSequence": 46, "arrival": {"time": "1694890234"}, "stopId": "4838438"}, {"stopSequence": 47, "arrival": {"time": "1694890380"}, "stopId": "44896"}, {"stopSequence": 48, "arrival": {"time": "1694890428"}, "stopId": "44897"}, {"stopSequence": 49, "arrival": {"time": "1694890493"}, "stopId": "44898"}, {"stopSequence": 50, "arrival": {"time": "1694890671"}, "stopId": "40993"}, {"stopSequence": 51, "arrival": {"time": "1694890924"}, "stopId": "16005188"}, {"stopSequence": 52, "arrival": {"time": "1694891186"}, "stopId": "40995"}, {"stopSequence": 53, "arrival": {"time": "1694891275"}, "stopId": "40996"}, {"stopSequence": 54, "arrival": {"time": "1694891362"}, "stopId": "40997"}, {"stopSequence": 55, "arrival": {"time": "1694891424"}, "stopId": "39614"}, {"stopSequence": 56, "arrival": {"time": "1694891482"}, "stopId": "39615"}, {"stopSequence": 57, "arrival": {"time": "1694891542"}, "stopId": "39616"}, {"stopSequence": 58, "arrival": {"time": "1694891605"}, "stopId": "39617"}, {"stopSequence": 59, "arrival": {"time": "1694891675"}, "stopId": "39618"}, {"stopSequence": 60, "arrival": {"time": "1694891728"}, "stopId": "39619"}, {"stopSequence": 61, "arrival": {"time": "1694891780"}, "stopId": "39620"}, {"stopSequence": 62, "arrival": {"time": "1694891868"}, "stopId": "39621"}, {"stopSequence": 63, "arrival": {"time": "1694891931"}, "stopId": "38281"}, {"stopSequence": 64, "arrival": {"time": "1694892003"}, "stopId": "37506"}, {"stopSequence": 65, "arrival": {"time": "1694892057"}, "stopId": "45068"}, {"stopSequence": 66, "arrival": {"time": "1694892227"}, "stopId": "37480"}, {"stopSequence": 67, "arrival": {"time": "1694892315"}, "stopId": "37477"}, {"stopSequence": 68, "arrival": {"time": "1694892405"}, "stopId": "40848"}, {"stopSequence": 69, "arrival": {"time": "1694892548"}, "stopId": "2-Apr"}, {"stopSequence": 70, "arrival": {"time": "1694892627"}, "stopId": "39728"}, {"stopSequence": 71, "arrival": {"time": "1694892786"}, "stopId": "39729"}, {"stopSequence": 72, "arrival": {"time": "1694892826"}, "stopId": "39730"}, {"stopSequence": 73, "arrival": {"time": "1694893008"}, "stopId": "42200"}, {"stopSequence": 74, "arrival": {"time": "1694893063"}, "stopId": "42203"}, {"stopSequence": 75, "arrival": {"time": "1694893249"}, "stopId": "42205"}, {"stopSequence": 76, "arrival": {"time": "1694893352"}, "stopId": "42201"}, {"stopSequence": 77, "arrival": {"time": "1694893877"}, "stopId": "42206"}, {"stopSequence": 78, "arrival": {"time": "1694893984"}, "stopId": "42207"}, {"stopSequence": 79, "arrival": {"time": "1694894128"}, "stopId": "42208"}, {"stopSequence": 80, "arrival": {"time": "1694894435"}, "stopId": "42564"}, {"stopSequence": 81, "arrival": {"time": "1694894710"}, "stopId": "42214"}, {"stopSequence": 82, "arrival": {"time": "1694895006"}, "stopId": "42209"}, {"stopSequence": 83, "arrival": {"time": "1694895359"}, "stopId": "42210"}, {"stopSequence": 84, "arrival": {"time": "1694895986"}, "stopId": "42215"}, {"stopSequence": 85, "arrival": {"time": "1694896087"}, "stopId": "42216"}, {"stopSequence": 86, "arrival": {"time": "1694896254"}, "stopId": "42217"}, {"stopSequence": 87, "arrival": {"time": "1694896519"}, "stopId": "42218"}, {"stopSequence": 88, "arrival": {"time": "1694896699"}, "stopId": "42219"}, {"stopSequence": 89, "arrival": {"time": "1694897140"}, "stopId": "42220"}, {"stopSequence": 90, "arrival": {"time": "1694897347"}, "stopId": "42221"}, {"stopSequence": 91, "arrival": {"time": "1694897686"}, "stopId": "42222"}, {"stopSequence": 92, "arrival": {"time": "1694898088"}, "stopId": "42223"}, {"stopSequence": 93, "arrival": {"time": "1694898269"}, "stopId": "42224"}, {"stopSequence": 94, "arrival": {"time": "1694898673"}, "stopId": "42225"}, {"stopSequence": 95, "arrival": {"time": "1694899104"}, "stopId": "42226"}, {"stopSequence": 96, "arrival": {"time": "1694899464"}, "stopId": "42227"}, {"stopSequence": 97, "arrival": {"time": "1694900079"}, "stopId": "42228"}, {"stopSequence": 98, "arrival": {"time": "1694900411"}, "stopId": "42229"}, {"stopSequence": 99, "arrival": {"time": "1694901097"}, "stopId": "42230"}, {"stopSequence": 100, "arrival": {"time": "1694901486"}, "stopId": "42231"}, {"stopSequence": 101, "arrival": {"time": "1694902298"}, "stopId": "42232"}, {"stopSequence": 102, "arrival": {"time": "1694903313"}, "stopId": "42233"}, {"stopSequence": 103, "arrival": {"time": "1694903815"}, "stopId": "42234"}, {"stopSequence": 104, "arrival": {"time": "1694904782"}, "stopId": "42235"}, {"stopSequence": 105, "arrival": {"time": "1694905239"}, "stopId": "42211"}, {"stopSequence": 106, "arrival": {"time": "1694906102"}, "stopId": "49203"}, {"stopSequence": 107, "arrival": {"time": "1694906980"}, "stopId": "49204"}, {"stopSequence": 108, "arrival": {"time": "1694907390"}, "stopId": "42503"}, {"stopSequence": 109, "arrival": {"time": "1694913058"}, "stopId": "42272"}, {"stopSequence": 110, "arrival": {"time": "1694918806"}, "stopId": "42077"}], "vehicle": {"licensePlate": "ZR8471"}, "timestamp": "1694889028"}, "vehicle": {"trip": {"tripId": "16124-701ff27f-2", "startTime": "15:21:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "554", "directionId": 1}, "position": {"latitude": -36.71439, "longitude": -73.11178, "bearing": 126.0, "odometer": 0.0, "speed": 30.0}, "timestamp": "1694889028", "vehicle": {"licensePlate": "ZR8471"}}}, {"id": "837ea09a-a33e-4452-a194-017ef047d161", "tripUpdate": {"trip": {"tripId": "16371-701ff27f-2", "startTime": "15:20:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "556", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 40, "arrival": {"time": "1694888999"}, "stopId": "44897"}, {"stopSequence": 41, "arrival": {"time": "1694889077"}, "stopId": "44898"}, {"stopSequence": 42, "arrival": {"time": "1694889255"}, "stopId": "40993"}, {"stopSequence": 43, "arrival": {"time": "1694889504"}, "stopId": "16005188"}, {"stopSequence": 44, "arrival": {"time": "1694889749"}, "stopId": "40995"}, {"stopSequence": 45, "arrival": {"time": "1694889824"}, "stopId": "40996"}, {"stopSequence": 46, "arrival": {"time": "1694889899"}, "stopId": "40997"}, {"stopSequence": 47, "arrival": {"time": "1694889956"}, "stopId": "39614"}, {"stopSequence": 48, "arrival": {"time": "1694890002"}, "stopId": "39615"}, {"stopSequence": 49, "arrival": {"time": "1694890050"}, "stopId": "39616"}, {"stopSequence": 50, "arrival": {"time": "1694890103"}, "stopId": "39617"}, {"stopSequence": 51, "arrival": {"time": "1694890159"}, "stopId": "39618"}, {"stopSequence": 52, "arrival": {"time": "1694890203"}, "stopId": "39619"}, {"stopSequence": 53, "arrival": {"time": "1694890241"}, "stopId": "39620"}, {"stopSequence": 54, "arrival": {"time": "1694890309"}, "stopId": "39621"}, {"stopSequence": 55, "arrival": {"time": "1694890357"}, "stopId": "38281"}, {"stopSequence": 56, "arrival": {"time": "1694890411"}, "stopId": "37506"}, {"stopSequence": 57, "arrival": {"time": "1694890451"}, "stopId": "45068"}, {"stopSequence": 58, "arrival": {"time": "1694890576"}, "stopId": "37480"}, {"stopSequence": 59, "arrival": {"time": "1694890638"}, "stopId": "37477"}, {"stopSequence": 60, "arrival": {"time": "1694890707"}, "stopId": "40848"}, {"stopSequence": 61, "arrival": {"time": "1694890793"}, "stopId": "2-Apr"}, {"stopSequence": 62, "arrival": {"time": "1694890852"}, "stopId": "39728"}, {"stopSequence": 63, "arrival": {"time": "1694890954"}, "stopId": "39729"}, {"stopSequence": 64, "arrival": {"time": "1694890980"}, "stopId": "39730"}, {"stopSequence": 65, "arrival": {"time": "1694891091"}, "stopId": "42200"}, {"stopSequence": 66, "arrival": {"time": "1694891140"}, "stopId": "42203"}, {"stopSequence": 67, "arrival": {"time": "1694891200"}, "stopId": "42204"}, {"stopSequence": 68, "arrival": {"time": "1694891246"}, "stopId": "42205"}, {"stopSequence": 69, "arrival": {"time": "1694891314"}, "stopId": "42201"}, {"stopSequence": 70, "arrival": {"time": "1694891610"}, "stopId": "42206"}, {"stopSequence": 71, "arrival": {"time": "1694891676"}, "stopId": "42207"}, {"stopSequence": 72, "arrival": {"time": "1694891750"}, "stopId": "42208"}, {"stopSequence": 73, "arrival": {"time": "1694891911"}, "stopId": "42564"}, {"stopSequence": 74, "arrival": {"time": "1694892050"}, "stopId": "42214"}, {"stopSequence": 75, "arrival": {"time": "1694892196"}, "stopId": "42209"}, {"stopSequence": 76, "arrival": {"time": "1694892365"}, "stopId": "42210"}, {"stopSequence": 77, "arrival": {"time": "1694892648"}, "stopId": "42215"}, {"stopSequence": 78, "arrival": {"time": "1694892697"}, "stopId": "42216"}, {"stopSequence": 79, "arrival": {"time": "1694892763"}, "stopId": "42217"}, {"stopSequence": 80, "arrival": {"time": "1694892887"}, "stopId": "42218"}, {"stopSequence": 81, "arrival": {"time": "1694892961"}, "stopId": "42219"}, {"stopSequence": 82, "arrival": {"time": "1694893134"}, "stopId": "42220"}, {"stopSequence": 83, "arrival": {"time": "1694893217"}, "stopId": "42221"}, {"stopSequence": 84, "arrival": {"time": "1694893342"}, "stopId": "42222"}, {"stopSequence": 85, "arrival": {"time": "1694893473"}, "stopId": "42223"}, {"stopSequence": 86, "arrival": {"time": "1694893529"}, "stopId": "42224"}, {"stopSequence": 87, "arrival": {"time": "1694893684"}, "stopId": "42225"}, {"stopSequence": 88, "arrival": {"time": "1694893820"}, "stopId": "42226"}, {"stopSequence": 89, "arrival": {"time": "1694893936"}, "stopId": "42227"}, {"stopSequence": 90, "arrival": {"time": "1694894126"}, "stopId": "42228"}, {"stopSequence": 91, "arrival": {"time": "1694894224"}, "stopId": "42229"}, {"stopSequence": 92, "arrival": {"time": "1694894420"}, "stopId": "42230"}, {"stopSequence": 93, "arrival": {"time": "1694894527"}, "stopId": "42231"}, {"stopSequence": 94, "arrival": {"time": "1694894739"}, "stopId": "42232"}, {"stopSequence": 95, "arrival": {"time": "1694894985"}, "stopId": "42233"}, {"stopSequence": 96, "arrival": {"time": "1694895104"}, "stopId": "42234"}, {"stopSequence": 97, "arrival": {"time": "1694895317"}, "stopId": "42235"}, {"stopSequence": 98, "arrival": {"time": "1694895413"}, "stopId": "42211"}, {"stopSequence": 99, "arrival": {"time": "1694895680"}, "stopId": "91142"}, {"stopSequence": 100, "arrival": {"time": "1694895996"}, "stopId": "41937"}, {"stopSequence": 101, "arrival": {"time": "1694896242"}, "stopId": "91144"}, {"stopSequence": 102, "arrival": {"time": "1694896286"}, "stopId": "91150"}, {"stopSequence": 103, "arrival": {"time": "1694896546"}, "stopId": "91145"}], "vehicle": {"licensePlate": "BDJS40"}, "timestamp": "1694888990"}, "vehicle": {"trip": {"tripId": "16371-701ff27f-2", "startTime": "15:20:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "556", "directionId": 1}, "position": {"latitude": -36.771255, "longitude": -73.08268, "bearing": 154.0, "odometer": 0.0, "speed": 17.222221}, "timestamp": "1694888990", "vehicle": {"licensePlate": "BDJS40"}}}, {"id": "a452108d-b340-4511-a86e-be19fc1a3385", "tripUpdate": {"trip": {"tripId": "16312-701ff27f-2", "startTime": "14:41:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "556", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 69, "arrival": {"time": "1694889064"}, "stopId": "38528"}, {"stopSequence": 70, "arrival": {"time": "1694889191"}, "stopId": "38529"}, {"stopSequence": 71, "arrival": {"time": "1694889401"}, "stopId": "38530"}, {"stopSequence": 72, "arrival": {"time": "1694889414"}, "stopId": "16005209"}, {"stopSequence": 73, "arrival": {"time": "1694889649"}, "stopId": "38531"}, {"stopSequence": 74, "arrival": {"time": "1694889702"}, "stopId": "8921285"}, {"stopSequence": 75, "arrival": {"time": "1694889808"}, "stopId": "38532"}, {"stopSequence": 76, "arrival": {"time": "1694889862"}, "stopId": "38533"}, {"stopSequence": 77, "arrival": {"time": "1694889915"}, "stopId": "38534"}, {"stopSequence": 78, "arrival": {"time": "1694890040"}, "stopId": "42382"}, {"stopSequence": 79, "arrival": {"time": "1694890108"}, "stopId": "42383"}, {"stopSequence": 80, "arrival": {"time": "1694890165"}, "stopId": "42384"}, {"stopSequence": 81, "arrival": {"time": "1694890204"}, "stopId": "43339"}, {"stopSequence": 82, "arrival": {"time": "1694890252"}, "stopId": "43207"}, {"stopSequence": 83, "arrival": {"time": "1694890297"}, "stopId": "43208"}, {"stopSequence": 84, "arrival": {"time": "1694890361"}, "stopId": "43209"}, {"stopSequence": 85, "arrival": {"time": "1694890383"}, "stopId": "43210"}, {"stopSequence": 86, "arrival": {"time": "1694890447"}, "stopId": "42389"}, {"stopSequence": 87, "arrival": {"time": "1694890466"}, "stopId": "42390"}, {"stopSequence": 88, "arrival": {"time": "1694890496"}, "stopId": "42391"}, {"stopSequence": 89, "arrival": {"time": "1694890553"}, "stopId": "42392"}, {"stopSequence": 90, "arrival": {"time": "1694890580"}, "stopId": "42393"}, {"stopSequence": 91, "arrival": {"time": "1694890618"}, "stopId": "42394"}, {"stopSequence": 92, "arrival": {"time": "1694890666"}, "stopId": "42395"}, {"stopSequence": 93, "arrival": {"time": "1694890730"}, "stopId": "42396"}, {"stopSequence": 94, "arrival": {"time": "1694890749"}, "stopId": "42397"}, {"stopSequence": 95, "arrival": {"time": "1694890800"}, "stopId": "42398"}, {"stopSequence": 96, "arrival": {"time": "1694890840"}, "stopId": "42399"}, {"stopSequence": 97, "arrival": {"time": "1694890900"}, "stopId": "42400"}, {"stopSequence": 98, "arrival": {"time": "1694891141"}, "stopId": "38550"}, {"stopSequence": 99, "arrival": {"time": "1694891354"}, "stopId": "38552"}, {"stopSequence": 100, "arrival": {"time": "1694891436"}, "stopId": "49359"}, {"stopSequence": 101, "arrival": {"time": "1694891495"}, "stopId": "49360"}, {"stopSequence": 102, "arrival": {"time": "1694891629"}, "stopId": "49361"}, {"stopSequence": 103, "arrival": {"time": "1694891660"}, "stopId": "49362"}, {"stopSequence": 104, "arrival": {"time": "1694891716"}, "stopId": "49363"}, {"stopSequence": 105, "arrival": {"time": "1694891777"}, "stopId": "49364"}, {"stopSequence": 106, "arrival": {"time": "1694891835"}, "stopId": "49365"}], "vehicle": {"licensePlate": "FXRR90"}, "timestamp": "1694889002"}, "vehicle": {"trip": {"tripId": "16312-701ff27f-2", "startTime": "14:41:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "556", "directionId": 0}, "position": {"latitude": -36.803566, "longitude": -73.05495, "bearing": 332.0, "odometer": 0.0, "speed": 14.166667}, "timestamp": "1694889002", "vehicle": {"licensePlate": "FXRR90"}}}, {"id": "3438b825-8f86-45de-9831-08a29e5488c0", "tripUpdate": {"trip": {"tripId": "16370-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "556", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 57, "arrival": {"time": "1694889010"}, "stopId": "45068"}, {"stopSequence": 58, "arrival": {"time": "1694889143"}, "stopId": "37480"}, {"stopSequence": 59, "arrival": {"time": "1694889207"}, "stopId": "37477"}, {"stopSequence": 60, "arrival": {"time": "1694889277"}, "stopId": "40848"}, {"stopSequence": 61, "arrival": {"time": "1694889363"}, "stopId": "2-Apr"}, {"stopSequence": 62, "arrival": {"time": "1694889420"}, "stopId": "39728"}, {"stopSequence": 63, "arrival": {"time": "1694889518"}, "stopId": "39729"}, {"stopSequence": 64, "arrival": {"time": "1694889542"}, "stopId": "39730"}, {"stopSequence": 65, "arrival": {"time": "1694889644"}, "stopId": "42200"}, {"stopSequence": 66, "arrival": {"time": "1694889688"}, "stopId": "42203"}, {"stopSequence": 67, "arrival": {"time": "1694889742"}, "stopId": "42204"}, {"stopSequence": 68, "arrival": {"time": "1694889783"}, "stopId": "42205"}, {"stopSequence": 69, "arrival": {"time": "1694889842"}, "stopId": "42201"}, {"stopSequence": 70, "arrival": {"time": "1694890087"}, "stopId": "42206"}, {"stopSequence": 71, "arrival": {"time": "1694890140"}, "stopId": "42207"}, {"stopSequence": 72, "arrival": {"time": "1694890198"}, "stopId": "42208"}, {"stopSequence": 73, "arrival": {"time": "1694890321"}, "stopId": "42564"}, {"stopSequence": 74, "arrival": {"time": "1694890425"}, "stopId": "42214"}, {"stopSequence": 75, "arrival": {"time": "1694890530"}, "stopId": "42209"}, {"stopSequence": 76, "arrival": {"time": "1694890649"}, "stopId": "42210"}, {"stopSequence": 77, "arrival": {"time": "1694890839"}, "stopId": "42215"}, {"stopSequence": 78, "arrival": {"time": "1694890871"}, "stopId": "42216"}, {"stopSequence": 79, "arrival": {"time": "1694890914"}, "stopId": "42217"}, {"stopSequence": 80, "arrival": {"time": "1694890993"}, "stopId": "42218"}, {"stopSequence": 81, "arrival": {"time": "1694891040"}, "stopId": "42219"}, {"stopSequence": 82, "arrival": {"time": "1694891146"}, "stopId": "42220"}, {"stopSequence": 83, "arrival": {"time": "1694891197"}, "stopId": "42221"}, {"stopSequence": 84, "arrival": {"time": "1694891271"}, "stopId": "42222"}, {"stopSequence": 85, "arrival": {"time": "1694891348"}, "stopId": "42223"}, {"stopSequence": 86, "arrival": {"time": "1694891380"}, "stopId": "42224"}, {"stopSequence": 87, "arrival": {"time": "1694891467"}, "stopId": "42225"}, {"stopSequence": 88, "arrival": {"time": "1694891543"}, "stopId": "42226"}, {"stopSequence": 89, "arrival": {"time": "1694891607"}, "stopId": "42227"}, {"stopSequence": 90, "arrival": {"time": "1694891708"}, "stopId": "42228"}, {"stopSequence": 91, "arrival": {"time": "1694891760"}, "stopId": "42229"}, {"stopSequence": 92, "arrival": {"time": "1694891861"}, "stopId": "42230"}, {"stopSequence": 93, "arrival": {"time": "1694891915"}, "stopId": "42231"}, {"stopSequence": 94, "arrival": {"time": "1694892020"}, "stopId": "42232"}, {"stopSequence": 95, "arrival": {"time": "1694892139"}, "stopId": "42233"}, {"stopSequence": 96, "arrival": {"time": "1694892195"}, "stopId": "42234"}, {"stopSequence": 97, "arrival": {"time": "1694892294"}, "stopId": "42235"}, {"stopSequence": 98, "arrival": {"time": "1694892338"}, "stopId": "42211"}, {"stopSequence": 99, "arrival": {"time": "1694892457"}, "stopId": "91142"}, {"stopSequence": 100, "arrival": {"time": "1694892593"}, "stopId": "41937"}, {"stopSequence": 101, "arrival": {"time": "1694892697"}, "stopId": "91144"}, {"stopSequence": 102, "arrival": {"time": "1694892715"}, "stopId": "91150"}, {"stopSequence": 103, "arrival": {"time": "1694892821"}, "stopId": "91145"}], "vehicle": {"licensePlate": "HZRP10"}, "timestamp": "1694888998"}, "vehicle": {"trip": {"tripId": "16370-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "556", "directionId": 1}, "position": {"latitude": -36.82566, "longitude": -73.04529, "bearing": 246.0, "odometer": 0.0, "speed": 7.7777777}, "timestamp": "1694888998", "vehicle": {"licensePlate": "HZRP10"}}}, {"id": "191418d6-2a51-461e-8048-93fe539496d6", "tripUpdate": {"trip": {"tripId": "16314-701ff27f-2", "startTime": "15:21:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "556", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 16, "arrival": {"time": "1694889083"}, "stopId": "42278"}, {"stopSequence": 17, "arrival": {"time": "1694889127"}, "stopId": "42279"}, {"stopSequence": 18, "arrival": {"time": "1694889212"}, "stopId": "42280"}, {"stopSequence": 19, "arrival": {"time": "1694889256"}, "stopId": "42281"}, {"stopSequence": 20, "arrival": {"time": "1694889332"}, "stopId": "42282"}, {"stopSequence": 21, "arrival": {"time": "1694889389"}, "stopId": "42283"}, {"stopSequence": 22, "arrival": {"time": "1694889454"}, "stopId": "49279"}, {"stopSequence": 23, "arrival": {"time": "1694889533"}, "stopId": "42285"}, {"stopSequence": 24, "arrival": {"time": "1694889620"}, "stopId": "42286"}, {"stopSequence": 25, "arrival": {"time": "1694889636"}, "stopId": "42287"}, {"stopSequence": 26, "arrival": {"time": "1694889691"}, "stopId": "42288"}, {"stopSequence": 27, "arrival": {"time": "1694889726"}, "stopId": "42289"}, {"stopSequence": 28, "arrival": {"time": "1694889806"}, "stopId": "42290"}, {"stopSequence": 29, "arrival": {"time": "1694889856"}, "stopId": "42291"}, {"stopSequence": 30, "arrival": {"time": "1694889939"}, "stopId": "42292"}, {"stopSequence": 31, "arrival": {"time": "1694890007"}, "stopId": "42293"}, {"stopSequence": 32, "arrival": {"time": "1694890179"}, "stopId": "42294"}, {"stopSequence": 33, "arrival": {"time": "1694890300"}, "stopId": "42295"}, {"stopSequence": 34, "arrival": {"time": "1694890417"}, "stopId": "42296"}, {"stopSequence": 35, "arrival": {"time": "1694890541"}, "stopId": "42297"}, {"stopSequence": 36, "arrival": {"time": "1694890638"}, "stopId": "42298"}, {"stopSequence": 37, "arrival": {"time": "1694890702"}, "stopId": "42299"}, {"stopSequence": 38, "arrival": {"time": "1694890746"}, "stopId": "49295"}, {"stopSequence": 39, "arrival": {"time": "1694890870"}, "stopId": "49296"}, {"stopSequence": 40, "arrival": {"time": "1694890961"}, "stopId": "49297"}, {"stopSequence": 41, "arrival": {"time": "1694890998"}, "stopId": "49298"}, {"stopSequence": 42, "arrival": {"time": "1694891072"}, "stopId": "49299"}, {"stopSequence": 43, "arrival": {"time": "1694891119"}, "stopId": "49300"}, {"stopSequence": 44, "arrival": {"time": "1694891210"}, "stopId": "49301"}, {"stopSequence": 45, "arrival": {"time": "1694891286"}, "stopId": "49302"}, {"stopSequence": 46, "arrival": {"time": "1694891336"}, "stopId": "49303"}, {"stopSequence": 47, "arrival": {"time": "1694891395"}, "stopId": "49304"}, {"stopSequence": 48, "arrival": {"time": "1694891428"}, "stopId": "49305"}, {"stopSequence": 49, "arrival": {"time": "1694891494"}, "stopId": "49306"}, {"stopSequence": 50, "arrival": {"time": "1694891542"}, "stopId": "49307"}, {"stopSequence": 51, "arrival": {"time": "1694891570"}, "stopId": "49308"}, {"stopSequence": 52, "arrival": {"time": "1694891599"}, "stopId": "49309"}, {"stopSequence": 53, "arrival": {"time": "1694891633"}, "stopId": "42315"}, {"stopSequence": 54, "arrival": {"time": "1694891653"}, "stopId": "42316"}, {"stopSequence": 55, "arrival": {"time": "1694891724"}, "stopId": "42317"}, {"stopSequence": 56, "arrival": {"time": "1694891778"}, "stopId": "42318"}, {"stopSequence": 57, "arrival": {"time": "1694891881"}, "stopId": "8606396"}, {"stopSequence": 58, "arrival": {"time": "1694891975"}, "stopId": "38514"}, {"stopSequence": 59, "arrival": {"time": "1694892026"}, "stopId": "38516"}, {"stopSequence": 60, "arrival": {"time": "1694892106"}, "stopId": "38518"}, {"stopSequence": 61, "arrival": {"time": "1694892246"}, "stopId": "38520"}, {"stopSequence": 62, "arrival": {"time": "1694892303"}, "stopId": "38521"}, {"stopSequence": 63, "arrival": {"time": "1694892374"}, "stopId": "38522"}, {"stopSequence": 64, "arrival": {"time": "1694892448"}, "stopId": "38523"}, {"stopSequence": 65, "arrival": {"time": "1694892527"}, "stopId": "38524"}, {"stopSequence": 66, "arrival": {"time": "1694892603"}, "stopId": "38525"}, {"stopSequence": 67, "arrival": {"time": "1694892685"}, "stopId": "38526"}, {"stopSequence": 68, "arrival": {"time": "1694892762"}, "stopId": "38527"}, {"stopSequence": 69, "arrival": {"time": "1694892906"}, "stopId": "38528"}, {"stopSequence": 70, "arrival": {"time": "1694893114"}, "stopId": "38529"}, {"stopSequence": 71, "arrival": {"time": "1694893500"}, "stopId": "38530"}, {"stopSequence": 72, "arrival": {"time": "1694893525"}, "stopId": "16005209"}, {"stopSequence": 73, "arrival": {"time": "1694894027"}, "stopId": "38531"}, {"stopSequence": 74, "arrival": {"time": "1694894153"}, "stopId": "8921285"}, {"stopSequence": 75, "arrival": {"time": "1694894416"}, "stopId": "38532"}, {"stopSequence": 76, "arrival": {"time": "1694894557"}, "stopId": "38533"}, {"stopSequence": 77, "arrival": {"time": "1694894701"}, "stopId": "38534"}, {"stopSequence": 78, "arrival": {"time": "1694895064"}, "stopId": "42382"}, {"stopSequence": 79, "arrival": {"time": "1694895273"}, "stopId": "42383"}, {"stopSequence": 80, "arrival": {"time": "1694895459"}, "stopId": "42384"}, {"stopSequence": 81, "arrival": {"time": "1694895591"}, "stopId": "43339"}, {"stopSequence": 82, "arrival": {"time": "1694895757"}, "stopId": "43207"}, {"stopSequence": 83, "arrival": {"time": "1694895920"}, "stopId": "43208"}, {"stopSequence": 84, "arrival": {"time": "1694896157"}, "stopId": "43209"}, {"stopSequence": 85, "arrival": {"time": "1694896243"}, "stopId": "43210"}, {"stopSequence": 86, "arrival": {"time": "1694896498"}, "stopId": "42389"}, {"stopSequence": 87, "arrival": {"time": "1694896578"}, "stopId": "42390"}, {"stopSequence": 88, "arrival": {"time": "1694896704"}, "stopId": "42391"}, {"stopSequence": 89, "arrival": {"time": "1694896951"}, "stopId": "42392"}, {"stopSequence": 90, "arrival": {"time": "1694897074"}, "stopId": "42393"}, {"stopSequence": 91, "arrival": {"time": "1694897248"}, "stopId": "42394"}, {"stopSequence": 92, "arrival": {"time": "1694897481"}, "stopId": "42395"}, {"stopSequence": 93, "arrival": {"time": "1694897800"}, "stopId": "42396"}, {"stopSequence": 94, "arrival": {"time": "1694897899"}, "stopId": "42397"}, {"stopSequence": 95, "arrival": {"time": "1694898171"}, "stopId": "42398"}, {"stopSequence": 96, "arrival": {"time": "1694898394"}, "stopId": "42399"}, {"stopSequence": 97, "arrival": {"time": "1694898742"}, "stopId": "42400"}, {"stopSequence": 98, "arrival": {"time": "1694900355"}, "stopId": "38550"}, {"stopSequence": 99, "arrival": {"time": "1694902115"}, "stopId": "38552"}, {"stopSequence": 100, "arrival": {"time": "1694902912"}, "stopId": "49359"}, {"stopSequence": 101, "arrival": {"time": "1694903524"}, "stopId": "49360"}, {"stopSequence": 102, "arrival": {"time": "1694905078"}, "stopId": "49361"}, {"stopSequence": 103, "arrival": {"time": "1694905480"}, "stopId": "49362"}, {"stopSequence": 104, "arrival": {"time": "1694906229"}, "stopId": "49363"}, {"stopSequence": 105, "arrival": {"time": "1694907125"}, "stopId": "49364"}, {"stopSequence": 106, "arrival": {"time": "1694908029"}, "stopId": "49365"}], "vehicle": {"licensePlate": "LJKK61"}, "timestamp": "1694889002"}, "vehicle": {"trip": {"tripId": "16314-701ff27f-2", "startTime": "15:21:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "556", "directionId": 0}, "position": {"latitude": -36.94195, "longitude": -73.01805, "bearing": 340.0, "odometer": 0.0, "speed": 2.5}, "timestamp": "1694889002", "vehicle": {"licensePlate": "LJKK61"}}}, {"id": "718face7-7a75-4521-ac05-4cce68308b69", "tripUpdate": {"trip": {"tripId": "16313-701ff27f-2", "startTime": "15:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "556", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 58, "arrival": {"time": "1694889028"}, "stopId": "38514"}, {"stopSequence": 59, "arrival": {"time": "1694889070"}, "stopId": "38516"}, {"stopSequence": 60, "arrival": {"time": "1694889132"}, "stopId": "38518"}, {"stopSequence": 61, "arrival": {"time": "1694889237"}, "stopId": "38520"}, {"stopSequence": 62, "arrival": {"time": "1694889279"}, "stopId": "38521"}, {"stopSequence": 63, "arrival": {"time": "1694889330"}, "stopId": "38522"}, {"stopSequence": 64, "arrival": {"time": "1694889380"}, "stopId": "38523"}, {"stopSequence": 65, "arrival": {"time": "1694889433"}, "stopId": "38524"}, {"stopSequence": 66, "arrival": {"time": "1694889483"}, "stopId": "38525"}, {"stopSequence": 67, "arrival": {"time": "1694889534"}, "stopId": "38526"}, {"stopSequence": 68, "arrival": {"time": "1694889582"}, "stopId": "38527"}, {"stopSequence": 69, "arrival": {"time": "1694889668"}, "stopId": "38528"}, {"stopSequence": 70, "arrival": {"time": "1694889786"}, "stopId": "38529"}, {"stopSequence": 71, "arrival": {"time": "1694889986"}, "stopId": "38530"}, {"stopSequence": 72, "arrival": {"time": "1694889998"}, "stopId": "16005209"}, {"stopSequence": 73, "arrival": {"time": "1694890228"}, "stopId": "38531"}, {"stopSequence": 74, "arrival": {"time": "1694890281"}, "stopId": "8921285"}, {"stopSequence": 75, "arrival": {"time": "1694890387"}, "stopId": "38532"}, {"stopSequence": 76, "arrival": {"time": "1694890442"}, "stopId": "38533"}, {"stopSequence": 77, "arrival": {"time": "1694890496"}, "stopId": "38534"}, {"stopSequence": 78, "arrival": {"time": "1694890625"}, "stopId": "42382"}, {"stopSequence": 79, "arrival": {"time": "1694890695"}, "stopId": "42383"}, {"stopSequence": 80, "arrival": {"time": "1694890755"}, "stopId": "42384"}, {"stopSequence": 81, "arrival": {"time": "1694890796"}, "stopId": "43339"}, {"stopSequence": 82, "arrival": {"time": "1694890847"}, "stopId": "43207"}, {"stopSequence": 83, "arrival": {"time": "1694890895"}, "stopId": "43208"}, {"stopSequence": 84, "arrival": {"time": "1694890963"}, "stopId": "43209"}, {"stopSequence": 85, "arrival": {"time": "1694890987"}, "stopId": "43210"}, {"stopSequence": 86, "arrival": {"time": "1694891056"}, "stopId": "42389"}, {"stopSequence": 87, "arrival": {"time": "1694891077"}, "stopId": "42390"}, {"stopSequence": 88, "arrival": {"time": "1694891109"}, "stopId": "42391"}, {"stopSequence": 89, "arrival": {"time": "1694891171"}, "stopId": "42392"}, {"stopSequence": 90, "arrival": {"time": "1694891201"}, "stopId": "42393"}, {"stopSequence": 91, "arrival": {"time": "1694891243"}, "stopId": "42394"}, {"stopSequence": 92, "arrival": {"time": "1694891297"}, "stopId": "42395"}, {"stopSequence": 93, "arrival": {"time": "1694891368"}, "stopId": "42396"}, {"stopSequence": 94, "arrival": {"time": "1694891389"}, "stopId": "42397"}, {"stopSequence": 95, "arrival": {"time": "1694891446"}, "stopId": "42398"}, {"stopSequence": 96, "arrival": {"time": "1694891491"}, "stopId": "42399"}, {"stopSequence": 97, "arrival": {"time": "1694891559"}, "stopId": "42400"}, {"stopSequence": 98, "arrival": {"time": "1694891838"}, "stopId": "38550"}, {"stopSequence": 99, "arrival": {"time": "1694892087"}, "stopId": "38552"}, {"stopSequence": 100, "arrival": {"time": "1694892186"}, "stopId": "49359"}, {"stopSequence": 101, "arrival": {"time": "1694892257"}, "stopId": "49360"}, {"stopSequence": 102, "arrival": {"time": "1694892419"}, "stopId": "49361"}, {"stopSequence": 103, "arrival": {"time": "1694892457"}, "stopId": "49362"}, {"stopSequence": 104, "arrival": {"time": "1694892525"}, "stopId": "49363"}, {"stopSequence": 105, "arrival": {"time": "1694892601"}, "stopId": "49364"}, {"stopSequence": 106, "arrival": {"time": "1694892672"}, "stopId": "49365"}], "vehicle": {"licensePlate": "XV3580"}, "timestamp": "1694889008"}, "vehicle": {"trip": {"tripId": "16313-701ff27f-2", "startTime": "15:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "556", "directionId": 0}, "position": {"latitude": -36.826378, "longitude": -73.04393, "bearing": 62.0, "odometer": 0.0, "speed": 5.8333335}, "timestamp": "1694889008", "vehicle": {"licensePlate": "XV3580"}}}, {"id": "705d5a86-e96b-4c07-a0f0-3582299e7da4", "tripUpdate": {"trip": {"tripId": "16311-701ff27f-2", "startTime": "14:21:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "556", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 98, "arrival": {"time": "1694889211"}, "stopId": "38550"}, {"stopSequence": 99, "arrival": {"time": "1694889406"}, "stopId": "38552"}, {"stopSequence": 100, "arrival": {"time": "1694889478"}, "stopId": "49359"}, {"stopSequence": 101, "arrival": {"time": "1694889528"}, "stopId": "49360"}, {"stopSequence": 102, "arrival": {"time": "1694889639"}, "stopId": "49361"}, {"stopSequence": 103, "arrival": {"time": "1694889665"}, "stopId": "49362"}, {"stopSequence": 104, "arrival": {"time": "1694889709"}, "stopId": "49363"}, {"stopSequence": 105, "arrival": {"time": "1694889757"}, "stopId": "49364"}, {"stopSequence": 106, "arrival": {"time": "1694889802"}, "stopId": "49365"}], "vehicle": {"licensePlate": "XX7800"}, "timestamp": "1694889010"}, "vehicle": {"trip": {"tripId": "16311-701ff27f-2", "startTime": "14:21:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "556", "directionId": 0}, "position": {"latitude": -36.741238, "longitude": -73.098335, "bearing": 246.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889010", "vehicle": {"licensePlate": "XX7800"}}}, {"id": "215dbb79-15a5-4216-9914-774eb4c0addd", "tripUpdate": {"trip": {"tripId": "16512-701ff27f-2", "startTime": "14:47:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "557", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 34, "arrival": {"time": "1694889087"}, "stopId": "44895"}, {"stopSequence": 35, "arrival": {"time": "1694889156"}, "stopId": "42270"}, {"stopSequence": 36, "arrival": {"time": "1694889200"}, "stopId": "42271"}, {"stopSequence": 37, "arrival": {"time": "1694889268"}, "stopId": "4838438"}, {"stopSequence": 38, "arrival": {"time": "1694889421"}, "stopId": "44896"}, {"stopSequence": 39, "arrival": {"time": "1694889469"}, "stopId": "44897"}, {"stopSequence": 40, "arrival": {"time": "1694889543"}, "stopId": "44898"}, {"stopSequence": 41, "arrival": {"time": "1694889711"}, "stopId": "40993"}, {"stopSequence": 42, "arrival": {"time": "1694889951"}, "stopId": "16005188"}, {"stopSequence": 43, "arrival": {"time": "1694890196"}, "stopId": "40995"}, {"stopSequence": 44, "arrival": {"time": "1694890267"}, "stopId": "40996"}, {"stopSequence": 45, "arrival": {"time": "1694890343"}, "stopId": "40997"}, {"stopSequence": 46, "arrival": {"time": "1694890401"}, "stopId": "39614"}, {"stopSequence": 47, "arrival": {"time": "1694890448"}, "stopId": "39615"}, {"stopSequence": 48, "arrival": {"time": "1694890496"}, "stopId": "39616"}, {"stopSequence": 49, "arrival": {"time": "1694890550"}, "stopId": "39617"}, {"stopSequence": 50, "arrival": {"time": "1694890608"}, "stopId": "39618"}, {"stopSequence": 51, "arrival": {"time": "1694890654"}, "stopId": "39619"}, {"stopSequence": 52, "arrival": {"time": "1694890693"}, "stopId": "39620"}, {"stopSequence": 53, "arrival": {"time": "1694890764"}, "stopId": "39621"}, {"stopSequence": 54, "arrival": {"time": "1694890814"}, "stopId": "38281"}, {"stopSequence": 55, "arrival": {"time": "1694890871"}, "stopId": "37506"}, {"stopSequence": 56, "arrival": {"time": "1694890913"}, "stopId": "45068"}, {"stopSequence": 57, "arrival": {"time": "1694891046"}, "stopId": "37480"}, {"stopSequence": 58, "arrival": {"time": "1694891112"}, "stopId": "37477"}, {"stopSequence": 59, "arrival": {"time": "1694891186"}, "stopId": "40848"}, {"stopSequence": 60, "arrival": {"time": "1694891279"}, "stopId": "2-Apr"}, {"stopSequence": 61, "arrival": {"time": "1694891344"}, "stopId": "39728"}, {"stopSequence": 62, "arrival": {"time": "1694891456"}, "stopId": "39729"}, {"stopSequence": 63, "arrival": {"time": "1694891485"}, "stopId": "39730"}, {"stopSequence": 64, "arrival": {"time": "1694891607"}, "stopId": "42200"}, {"stopSequence": 65, "arrival": {"time": "1694891662"}, "stopId": "42203"}, {"stopSequence": 66, "arrival": {"time": "1694891740"}, "stopId": "42204"}, {"stopSequence": 67, "arrival": {"time": "1694891781"}, "stopId": "42205"}, {"stopSequence": 68, "arrival": {"time": "1694891857"}, "stopId": "42201"}, {"stopSequence": 69, "arrival": {"time": "1694892183"}, "stopId": "42206"}, {"stopSequence": 70, "arrival": {"time": "1694892271"}, "stopId": "42207"}, {"stopSequence": 71, "arrival": {"time": "1694892356"}, "stopId": "42208"}, {"stopSequence": 72, "arrival": {"time": "1694892544"}, "stopId": "42564"}, {"stopSequence": 73, "arrival": {"time": "1694892711"}, "stopId": "42214"}, {"stopSequence": 74, "arrival": {"time": "1694892882"}, "stopId": "42209"}, {"stopSequence": 75, "arrival": {"time": "1694893085"}, "stopId": "42210"}, {"stopSequence": 76, "arrival": {"time": "1694893411"}, "stopId": "40951"}, {"stopSequence": 77, "arrival": {"time": "1694893532"}, "stopId": "40952"}, {"stopSequence": 78, "arrival": {"time": "1694893652"}, "stopId": "40953"}, {"stopSequence": 79, "arrival": {"time": "1694893744"}, "stopId": "40954"}, {"stopSequence": 80, "arrival": {"time": "1694893898"}, "stopId": "40955"}, {"stopSequence": 81, "arrival": {"time": "1694893982"}, "stopId": "40956"}, {"stopSequence": 82, "arrival": {"time": "1694894114"}, "stopId": "40957"}, {"stopSequence": 83, "arrival": {"time": "1694894239"}, "stopId": "40958"}, {"stopSequence": 84, "arrival": {"time": "1694894303"}, "stopId": "40959"}, {"stopSequence": 85, "arrival": {"time": "1694894480"}, "stopId": "42223"}, {"stopSequence": 86, "arrival": {"time": "1694894552"}, "stopId": "42224"}, {"stopSequence": 87, "arrival": {"time": "1694894753"}, "stopId": "42225"}, {"stopSequence": 88, "arrival": {"time": "1694894932"}, "stopId": "42226"}, {"stopSequence": 89, "arrival": {"time": "1694895085"}, "stopId": "42227"}, {"stopSequence": 90, "arrival": {"time": "1694895339"}, "stopId": "42228"}, {"stopSequence": 91, "arrival": {"time": "1694895471"}, "stopId": "42229"}, {"stopSequence": 92, "arrival": {"time": "1694895736"}, "stopId": "42230"}, {"stopSequence": 93, "arrival": {"time": "1694895882"}, "stopId": "42231"}, {"stopSequence": 94, "arrival": {"time": "1694896175"}, "stopId": "42232"}, {"stopSequence": 95, "arrival": {"time": "1694896686"}, "stopId": "42234"}, {"stopSequence": 96, "arrival": {"time": "1694897107"}, "stopId": "42211"}, {"stopSequence": 97, "arrival": {"time": "1694897972"}, "stopId": "41937"}, {"stopSequence": 98, "arrival": {"time": "1694899746"}, "stopId": "34871"}, {"stopSequence": 99, "arrival": {"time": "1694900139"}, "stopId": "42212"}], "vehicle": {"licensePlate": "BHCL60"}, "timestamp": "1694889008"}, "vehicle": {"trip": {"tripId": "16512-701ff27f-2", "startTime": "14:47:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "557", "directionId": 1}, "position": {"latitude": -36.753967, "longitude": -73.09349, "bearing": 154.0, "odometer": 0.0, "speed": 12.222222}, "timestamp": "1694889008", "vehicle": {"licensePlate": "BHCL60"}}}, {"id": "787c564f-54c6-44f4-a6ed-f0d00688b077", "tripUpdate": {"trip": {"tripId": "16438-701ff27f-2", "startTime": "15:15:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "557", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 26, "arrival": {"time": "1694889010"}, "stopId": "49283"}, {"stopSequence": 27, "arrival": {"time": "1694889062"}, "stopId": "49284"}, {"stopSequence": 28, "arrival": {"time": "1694889124"}, "stopId": "49285"}, {"stopSequence": 29, "arrival": {"time": "1694889204"}, "stopId": "49286"}, {"stopSequence": 30, "arrival": {"time": "1694889248"}, "stopId": "49287"}, {"stopSequence": 31, "arrival": {"time": "1694889295"}, "stopId": "49288"}, {"stopSequence": 32, "arrival": {"time": "1694889347"}, "stopId": "49289"}, {"stopSequence": 33, "arrival": {"time": "1694889485"}, "stopId": "42294"}, {"stopSequence": 34, "arrival": {"time": "1694889612"}, "stopId": "42295"}, {"stopSequence": 35, "arrival": {"time": "1694889724"}, "stopId": "42296"}, {"stopSequence": 36, "arrival": {"time": "1694889847"}, "stopId": "42297"}, {"stopSequence": 37, "arrival": {"time": "1694889941"}, "stopId": "42298"}, {"stopSequence": 38, "arrival": {"time": "1694890003"}, "stopId": "42299"}, {"stopSequence": 39, "arrival": {"time": "1694890044"}, "stopId": "49295"}, {"stopSequence": 40, "arrival": {"time": "1694890160"}, "stopId": "49296"}, {"stopSequence": 41, "arrival": {"time": "1694890241"}, "stopId": "49297"}, {"stopSequence": 42, "arrival": {"time": "1694890273"}, "stopId": "49298"}, {"stopSequence": 43, "arrival": {"time": "1694890338"}, "stopId": "49299"}, {"stopSequence": 44, "arrival": {"time": "1694890389"}, "stopId": "49300"}, {"stopSequence": 45, "arrival": {"time": "1694890472"}, "stopId": "49301"}, {"stopSequence": 46, "arrival": {"time": "1694890539"}, "stopId": "49302"}, {"stopSequence": 47, "arrival": {"time": "1694890584"}, "stopId": "49303"}, {"stopSequence": 48, "arrival": {"time": "1694890636"}, "stopId": "49304"}, {"stopSequence": 49, "arrival": {"time": "1694890664"}, "stopId": "49305"}, {"stopSequence": 50, "arrival": {"time": "1694890721"}, "stopId": "49306"}, {"stopSequence": 51, "arrival": {"time": "1694890762"}, "stopId": "49307"}, {"stopSequence": 52, "arrival": {"time": "1694890787"}, "stopId": "49308"}, {"stopSequence": 53, "arrival": {"time": "1694890812"}, "stopId": "49309"}, {"stopSequence": 54, "arrival": {"time": "1694890841"}, "stopId": "42315"}, {"stopSequence": 55, "arrival": {"time": "1694890856"}, "stopId": "42316"}, {"stopSequence": 56, "arrival": {"time": "1694890918"}, "stopId": "42317"}, {"stopSequence": 57, "arrival": {"time": "1694890973"}, "stopId": "42318"}, {"stopSequence": 58, "arrival": {"time": "1694891049"}, "stopId": "8606396"}, {"stopSequence": 59, "arrival": {"time": "1694891127"}, "stopId": "38514"}, {"stopSequence": 60, "arrival": {"time": "1694891169"}, "stopId": "38516"}, {"stopSequence": 61, "arrival": {"time": "1694891235"}, "stopId": "38518"}, {"stopSequence": 62, "arrival": {"time": "1694891348"}, "stopId": "38520"}, {"stopSequence": 63, "arrival": {"time": "1694891394"}, "stopId": "38521"}, {"stopSequence": 64, "arrival": {"time": "1694891451"}, "stopId": "38522"}, {"stopSequence": 65, "arrival": {"time": "1694891509"}, "stopId": "38523"}, {"stopSequence": 66, "arrival": {"time": "1694891572"}, "stopId": "38524"}, {"stopSequence": 67, "arrival": {"time": "1694891630"}, "stopId": "38525"}, {"stopSequence": 68, "arrival": {"time": "1694891694"}, "stopId": "38526"}, {"stopSequence": 69, "arrival": {"time": "1694891753"}, "stopId": "38527"}, {"stopSequence": 70, "arrival": {"time": "1694891858"}, "stopId": "38528"}, {"stopSequence": 71, "arrival": {"time": "1694892020"}, "stopId": "38529"}, {"stopSequence": 72, "arrival": {"time": "1694892303"}, "stopId": "38530"}, {"stopSequence": 73, "arrival": {"time": "1694892322"}, "stopId": "16005209"}, {"stopSequence": 74, "arrival": {"time": "1694892678"}, "stopId": "38531"}, {"stopSequence": 75, "arrival": {"time": "1694892765"}, "stopId": "8921285"}, {"stopSequence": 76, "arrival": {"time": "1694892950"}, "stopId": "38532"}, {"stopSequence": 77, "arrival": {"time": "1694893041"}, "stopId": "38533"}, {"stopSequence": 78, "arrival": {"time": "1694893137"}, "stopId": "38534"}, {"stopSequence": 79, "arrival": {"time": "1694893224"}, "stopId": "38535"}, {"stopSequence": 80, "arrival": {"time": "1694893346"}, "stopId": "38536"}, {"stopSequence": 81, "arrival": {"time": "1694893407"}, "stopId": "4838437"}, {"stopSequence": 82, "arrival": {"time": "1694893529"}, "stopId": "45085"}, {"stopSequence": 83, "arrival": {"time": "1694893682"}, "stopId": "45086"}, {"stopSequence": 84, "arrival": {"time": "1694893886"}, "stopId": "45087"}, {"stopSequence": 85, "arrival": {"time": "1694893955"}, "stopId": "45088"}, {"stopSequence": 86, "arrival": {"time": "1694894043"}, "stopId": "45089"}, {"stopSequence": 87, "arrival": {"time": "1694894200"}, "stopId": "45090"}, {"stopSequence": 88, "arrival": {"time": "1694894286"}, "stopId": "45091"}, {"stopSequence": 89, "arrival": {"time": "1694894447"}, "stopId": "45093"}, {"stopSequence": 90, "arrival": {"time": "1694894590"}, "stopId": "45094"}, {"stopSequence": 91, "arrival": {"time": "1694894682"}, "stopId": "45095"}, {"stopSequence": 92, "arrival": {"time": "1694894799"}, "stopId": "45096"}, {"stopSequence": 93, "arrival": {"time": "1694894911"}, "stopId": "45097"}, {"stopSequence": 94, "arrival": {"time": "1694894994"}, "stopId": "45098"}, {"stopSequence": 95, "arrival": {"time": "1694895065"}, "stopId": "45099"}, {"stopSequence": 96, "arrival": {"time": "1694895144"}, "stopId": "45100"}, {"stopSequence": 97, "arrival": {"time": "1694895218"}, "stopId": "45101"}, {"stopSequence": 98, "arrival": {"time": "1694895336"}, "stopId": "45102"}, {"stopSequence": 99, "arrival": {"time": "1694895417"}, "stopId": "45103"}, {"stopSequence": 100, "arrival": {"time": "1694895495"}, "stopId": "45104"}, {"stopSequence": 101, "arrival": {"time": "1694895577"}, "stopId": "45122"}, {"stopSequence": 102, "arrival": {"time": "1694895758"}, "stopId": "38630"}, {"stopSequence": 103, "arrival": {"time": "1694896110"}, "stopId": "42365"}, {"stopSequence": 104, "arrival": {"time": "1694896590"}, "stopId": "49349"}, {"stopSequence": 105, "arrival": {"time": "1694897101"}, "stopId": "49350"}, {"stopSequence": 106, "arrival": {"time": "1694897356"}, "stopId": "49351"}, {"stopSequence": 107, "arrival": {"time": "1694897522"}, "stopId": "49352"}, {"stopSequence": 108, "arrival": {"time": "1694897719"}, "stopId": "49353"}, {"stopSequence": 109, "arrival": {"time": "1694897941"}, "stopId": "49354"}, {"stopSequence": 110, "arrival": {"time": "1694898169"}, "stopId": "49355"}, {"stopSequence": 111, "arrival": {"time": "1694898646"}, "stopId": "42244"}, {"stopSequence": 112, "arrival": {"time": "1694898717"}, "stopId": "49356"}, {"stopSequence": 113, "arrival": {"time": "1694899136"}, "stopId": "49357"}, {"stopSequence": 114, "arrival": {"time": "1694899296"}, "stopId": "49358"}, {"stopSequence": 115, "arrival": {"time": "1694899650"}, "stopId": "49359"}, {"stopSequence": 116, "arrival": {"time": "1694900027"}, "stopId": "49360"}, {"stopSequence": 117, "arrival": {"time": "1694900956"}, "stopId": "49361"}, {"stopSequence": 118, "arrival": {"time": "1694901167"}, "stopId": "49362"}, {"stopSequence": 119, "arrival": {"time": "1694901638"}, "stopId": "49363"}, {"stopSequence": 120, "arrival": {"time": "1694902118"}, "stopId": "49364"}, {"stopSequence": 121, "arrival": {"time": "1694902612"}, "stopId": "49365"}], "vehicle": {"licensePlate": "CYVP96"}, "timestamp": "1694889010"}, "vehicle": {"trip": {"tripId": "16438-701ff27f-2", "startTime": "15:15:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "557", "directionId": 0}, "position": {"latitude": -36.9105, "longitude": -73.02937, "bearing": 352.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889010", "vehicle": {"licensePlate": "CYVP96"}}}, {"id": "68215fb6-74aa-4201-b096-187c7bd9a9ee", "tripUpdate": {"trip": {"tripId": "16513-701ff27f-2", "startTime": "15:02:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "557", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 16, "arrival": {"time": "1694889014"}, "stopId": "42250"}, {"stopSequence": 17, "arrival": {"time": "1694889158"}, "stopId": "42252"}, {"stopSequence": 18, "arrival": {"time": "1694889197"}, "stopId": "42253"}, {"stopSequence": 19, "arrival": {"time": "1694889244"}, "stopId": "42254"}, {"stopSequence": 20, "arrival": {"time": "1694889276"}, "stopId": "42255"}, {"stopSequence": 21, "arrival": {"time": "1694889310"}, "stopId": "42256"}, {"stopSequence": 22, "arrival": {"time": "1694889330"}, "stopId": "42257"}, {"stopSequence": 23, "arrival": {"time": "1694889349"}, "stopId": "42258"}, {"stopSequence": 24, "arrival": {"time": "1694889377"}, "stopId": "42259"}, {"stopSequence": 25, "arrival": {"time": "1694889430"}, "stopId": "42260"}, {"stopSequence": 26, "arrival": {"time": "1694889467"}, "stopId": "42261"}, {"stopSequence": 27, "arrival": {"time": "1694889498"}, "stopId": "45094"}, {"stopSequence": 28, "arrival": {"time": "1694889553"}, "stopId": "42263"}, {"stopSequence": 29, "arrival": {"time": "1694889597"}, "stopId": "45092"}, {"stopSequence": 30, "arrival": {"time": "1694889626"}, "stopId": "45091"}, {"stopSequence": 31, "arrival": {"time": "1694889671"}, "stopId": "42266"}, {"stopSequence": 32, "arrival": {"time": "1694889726"}, "stopId": "45089"}, {"stopSequence": 33, "arrival": {"time": "1694889762"}, "stopId": "45088"}, {"stopSequence": 34, "arrival": {"time": "1694889836"}, "stopId": "44895"}, {"stopSequence": 35, "arrival": {"time": "1694889899"}, "stopId": "42270"}, {"stopSequence": 36, "arrival": {"time": "1694889940"}, "stopId": "42271"}, {"stopSequence": 37, "arrival": {"time": "1694890004"}, "stopId": "4838438"}, {"stopSequence": 38, "arrival": {"time": "1694890150"}, "stopId": "44896"}, {"stopSequence": 39, "arrival": {"time": "1694890197"}, "stopId": "44897"}, {"stopSequence": 40, "arrival": {"time": "1694890268"}, "stopId": "44898"}, {"stopSequence": 41, "arrival": {"time": "1694890435"}, "stopId": "40993"}, {"stopSequence": 42, "arrival": {"time": "1694890682"}, "stopId": "16005188"}, {"stopSequence": 43, "arrival": {"time": "1694890942"}, "stopId": "40995"}, {"stopSequence": 44, "arrival": {"time": "1694891020"}, "stopId": "40996"}, {"stopSequence": 45, "arrival": {"time": "1694891103"}, "stopId": "40997"}, {"stopSequence": 46, "arrival": {"time": "1694891167"}, "stopId": "39614"}, {"stopSequence": 47, "arrival": {"time": "1694891220"}, "stopId": "39615"}, {"stopSequence": 48, "arrival": {"time": "1694891274"}, "stopId": "39616"}, {"stopSequence": 49, "arrival": {"time": "1694891336"}, "stopId": "39617"}, {"stopSequence": 50, "arrival": {"time": "1694891402"}, "stopId": "39618"}, {"stopSequence": 51, "arrival": {"time": "1694891454"}, "stopId": "39619"}, {"stopSequence": 52, "arrival": {"time": "1694891499"}, "stopId": "39620"}, {"stopSequence": 53, "arrival": {"time": "1694891582"}, "stopId": "39621"}, {"stopSequence": 54, "arrival": {"time": "1694891640"}, "stopId": "38281"}, {"stopSequence": 55, "arrival": {"time": "1694891708"}, "stopId": "37506"}, {"stopSequence": 56, "arrival": {"time": "1694891758"}, "stopId": "45068"}, {"stopSequence": 57, "arrival": {"time": "1694891917"}, "stopId": "37480"}, {"stopSequence": 58, "arrival": {"time": "1694891998"}, "stopId": "37477"}, {"stopSequence": 59, "arrival": {"time": "1694892089"}, "stopId": "40848"}, {"stopSequence": 60, "arrival": {"time": "1694892205"}, "stopId": "2-Apr"}, {"stopSequence": 61, "arrival": {"time": "1694892286"}, "stopId": "39728"}, {"stopSequence": 62, "arrival": {"time": "1694892427"}, "stopId": "39729"}, {"stopSequence": 63, "arrival": {"time": "1694892464"}, "stopId": "39730"}, {"stopSequence": 64, "arrival": {"time": "1694892621"}, "stopId": "42200"}, {"stopSequence": 65, "arrival": {"time": "1694892692"}, "stopId": "42203"}, {"stopSequence": 66, "arrival": {"time": "1694892795"}, "stopId": "42204"}, {"stopSequence": 67, "arrival": {"time": "1694892849"}, "stopId": "42205"}, {"stopSequence": 68, "arrival": {"time": "1694892951"}, "stopId": "42201"}, {"stopSequence": 69, "arrival": {"time": "1694893393"}, "stopId": "42206"}, {"stopSequence": 70, "arrival": {"time": "1694893515"}, "stopId": "42207"}, {"stopSequence": 71, "arrival": {"time": "1694893635"}, "stopId": "42208"}, {"stopSequence": 72, "arrival": {"time": "1694893902"}, "stopId": "42564"}, {"stopSequence": 73, "arrival": {"time": "1694894145"}, "stopId": "42214"}, {"stopSequence": 74, "arrival": {"time": "1694894398"}, "stopId": "42209"}, {"stopSequence": 75, "arrival": {"time": "1694894703"}, "stopId": "42210"}, {"stopSequence": 76, "arrival": {"time": "1694895210"}, "stopId": "40951"}, {"stopSequence": 77, "arrival": {"time": "1694895402"}, "stopId": "40952"}, {"stopSequence": 78, "arrival": {"time": "1694895594"}, "stopId": "40953"}, {"stopSequence": 79, "arrival": {"time": "1694895743"}, "stopId": "40954"}, {"stopSequence": 80, "arrival": {"time": "1694895997"}, "stopId": "40955"}, {"stopSequence": 81, "arrival": {"time": "1694896137"}, "stopId": "40956"}, {"stopSequence": 82, "arrival": {"time": "1694896360"}, "stopId": "40957"}, {"stopSequence": 83, "arrival": {"time": "1694896574"}, "stopId": "40958"}, {"stopSequence": 84, "arrival": {"time": "1694896685"}, "stopId": "40959"}, {"stopSequence": 85, "arrival": {"time": "1694896994"}, "stopId": "42223"}, {"stopSequence": 86, "arrival": {"time": "1694897121"}, "stopId": "42224"}, {"stopSequence": 87, "arrival": {"time": "1694897483"}, "stopId": "42225"}, {"stopSequence": 88, "arrival": {"time": "1694897812"}, "stopId": "42226"}, {"stopSequence": 89, "arrival": {"time": "1694898098"}, "stopId": "42227"}, {"stopSequence": 90, "arrival": {"time": "1694898582"}, "stopId": "42228"}, {"stopSequence": 91, "arrival": {"time": "1694898840"}, "stopId": "42229"}, {"stopSequence": 92, "arrival": {"time": "1694899370"}, "stopId": "42230"}, {"stopSequence": 93, "arrival": {"time": "1694899667"}, "stopId": "42231"}, {"stopSequence": 94, "arrival": {"time": "1694900280"}, "stopId": "42232"}, {"stopSequence": 95, "arrival": {"time": "1694901399"}, "stopId": "42234"}, {"stopSequence": 96, "arrival": {"time": "1694902371"}, "stopId": "42211"}, {"stopSequence": 97, "arrival": {"time": "1694904530"}, "stopId": "41937"}, {"stopSequence": 98, "arrival": {"time": "1694909782"}, "stopId": "34871"}, {"stopSequence": 99, "arrival": {"time": "1694911125"}, "stopId": "42212"}], "vehicle": {"licensePlate": "DPZZ34"}, "timestamp": "1694889004"}, "vehicle": {"trip": {"tripId": "16513-701ff27f-2", "startTime": "15:02:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "557", "directionId": 1}, "position": {"latitude": -36.73786, "longitude": -73.114716, "bearing": 50.0, "odometer": 0.0, "speed": 3.8888888}, "timestamp": "1694889004", "vehicle": {"licensePlate": "DPZZ34"}}}, {"id": "929c24a1-0ff5-43dc-8860-a4401522fc4a", "tripUpdate": {"trip": {"tripId": "16434-701ff27f-2", "startTime": "14:15:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "557", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 107, "arrival": {"time": "1694889024"}, "stopId": "49352"}, {"stopSequence": 108, "arrival": {"time": "1694889065"}, "stopId": "49353"}, {"stopSequence": 109, "arrival": {"time": "1694889110"}, "stopId": "49354"}, {"stopSequence": 110, "arrival": {"time": "1694889153"}, "stopId": "49355"}, {"stopSequence": 111, "arrival": {"time": "1694889237"}, "stopId": "42244"}, {"stopSequence": 112, "arrival": {"time": "1694889249"}, "stopId": "49356"}, {"stopSequence": 113, "arrival": {"time": "1694889316"}, "stopId": "49357"}, {"stopSequence": 114, "arrival": {"time": "1694889340"}, "stopId": "49358"}, {"stopSequence": 115, "arrival": {"time": "1694889391"}, "stopId": "49359"}, {"stopSequence": 116, "arrival": {"time": "1694889441"}, "stopId": "49360"}, {"stopSequence": 117, "arrival": {"time": "1694889553"}, "stopId": "49361"}, {"stopSequence": 118, "arrival": {"time": "1694889576"}, "stopId": "49362"}, {"stopSequence": 119, "arrival": {"time": "1694889625"}, "stopId": "49363"}, {"stopSequence": 120, "arrival": {"time": "1694889672"}, "stopId": "49364"}, {"stopSequence": 121, "arrival": {"time": "1694889716"}, "stopId": "49365"}], "vehicle": {"licensePlate": "DTRP73"}, "timestamp": "1694888988"}, "vehicle": {"trip": {"tripId": "16434-701ff27f-2", "startTime": "14:15:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "557", "directionId": 0}, "position": {"latitude": -36.732082, "longitude": -73.1186, "bearing": 14.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888988", "vehicle": {"licensePlate": "DTRP73"}}}, {"id": "d2ebd741-021c-4857-9560-76a7706237a1", "tripUpdate": {"trip": {"tripId": "16511-701ff27f-2", "startTime": "14:32:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "557", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 41, "arrival": {"time": "1694889002"}, "stopId": "40993"}, {"stopSequence": 42, "arrival": {"time": "1694889261"}, "stopId": "16005188"}, {"stopSequence": 43, "arrival": {"time": "1694889516"}, "stopId": "40995"}, {"stopSequence": 44, "arrival": {"time": "1694889589"}, "stopId": "40996"}, {"stopSequence": 45, "arrival": {"time": "1694889665"}, "stopId": "40997"}, {"stopSequence": 46, "arrival": {"time": "1694889722"}, "stopId": "39614"}, {"stopSequence": 47, "arrival": {"time": "1694889770"}, "stopId": "39615"}, {"stopSequence": 48, "arrival": {"time": "1694889817"}, "stopId": "39616"}, {"stopSequence": 49, "arrival": {"time": "1694889870"}, "stopId": "39617"}, {"stopSequence": 50, "arrival": {"time": "1694889926"}, "stopId": "39618"}, {"stopSequence": 51, "arrival": {"time": "1694889970"}, "stopId": "39619"}, {"stopSequence": 52, "arrival": {"time": "1694890007"}, "stopId": "39620"}, {"stopSequence": 53, "arrival": {"time": "1694890075"}, "stopId": "39621"}, {"stopSequence": 54, "arrival": {"time": "1694890122"}, "stopId": "38281"}, {"stopSequence": 55, "arrival": {"time": "1694890176"}, "stopId": "37506"}, {"stopSequence": 56, "arrival": {"time": "1694890215"}, "stopId": "45068"}, {"stopSequence": 57, "arrival": {"time": "1694890338"}, "stopId": "37480"}, {"stopSequence": 58, "arrival": {"time": "1694890398"}, "stopId": "37477"}, {"stopSequence": 59, "arrival": {"time": "1694890465"}, "stopId": "40848"}, {"stopSequence": 60, "arrival": {"time": "1694890549"}, "stopId": "2-Apr"}, {"stopSequence": 61, "arrival": {"time": "1694890606"}, "stopId": "39728"}, {"stopSequence": 62, "arrival": {"time": "1694890705"}, "stopId": "39729"}, {"stopSequence": 63, "arrival": {"time": "1694890730"}, "stopId": "39730"}, {"stopSequence": 64, "arrival": {"time": "1694890835"}, "stopId": "42200"}, {"stopSequence": 65, "arrival": {"time": "1694890882"}, "stopId": "42203"}, {"stopSequence": 66, "arrival": {"time": "1694890950"}, "stopId": "42204"}, {"stopSequence": 67, "arrival": {"time": "1694890984"}, "stopId": "42205"}, {"stopSequence": 68, "arrival": {"time": "1694891048"}, "stopId": "42201"}, {"stopSequence": 69, "arrival": {"time": "1694891318"}, "stopId": "42206"}, {"stopSequence": 70, "arrival": {"time": "1694891389"}, "stopId": "42207"}, {"stopSequence": 71, "arrival": {"time": "1694891458"}, "stopId": "42208"}, {"stopSequence": 72, "arrival": {"time": "1694891607"}, "stopId": "42564"}, {"stopSequence": 73, "arrival": {"time": "1694891738"}, "stopId": "42214"}, {"stopSequence": 74, "arrival": {"time": "1694891870"}, "stopId": "42209"}, {"stopSequence": 75, "arrival": {"time": "1694892025"}, "stopId": "42210"}, {"stopSequence": 76, "arrival": {"time": "1694892268"}, "stopId": "40951"}, {"stopSequence": 77, "arrival": {"time": "1694892357"}, "stopId": "40952"}, {"stopSequence": 78, "arrival": {"time": "1694892444"}, "stopId": "40953"}, {"stopSequence": 79, "arrival": {"time": "1694892510"}, "stopId": "40954"}, {"stopSequence": 80, "arrival": {"time": "1694892621"}, "stopId": "40955"}, {"stopSequence": 81, "arrival": {"time": "1694892680"}, "stopId": "40956"}, {"stopSequence": 82, "arrival": {"time": "1694892774"}, "stopId": "40957"}, {"stopSequence": 83, "arrival": {"time": "1694892861"}, "stopId": "40958"}, {"stopSequence": 84, "arrival": {"time": "1694892906"}, "stopId": "40959"}, {"stopSequence": 85, "arrival": {"time": "1694893027"}, "stopId": "42223"}, {"stopSequence": 86, "arrival": {"time": "1694893077"}, "stopId": "42224"}, {"stopSequence": 87, "arrival": {"time": "1694893213"}, "stopId": "42225"}, {"stopSequence": 88, "arrival": {"time": "1694893333"}, "stopId": "42226"}, {"stopSequence": 89, "arrival": {"time": "1694893434"}, "stopId": "42227"}, {"stopSequence": 90, "arrival": {"time": "1694893599"}, "stopId": "42228"}, {"stopSequence": 91, "arrival": {"time": "1694893685"}, "stopId": "42229"}, {"stopSequence": 92, "arrival": {"time": "1694893854"}, "stopId": "42230"}, {"stopSequence": 93, "arrival": {"time": "1694893946"}, "stopId": "42231"}, {"stopSequence": 94, "arrival": {"time": "1694894128"}, "stopId": "42232"}, {"stopSequence": 95, "arrival": {"time": "1694894439"}, "stopId": "42234"}, {"stopSequence": 96, "arrival": {"time": "1694894687"}, "stopId": "42211"}, {"stopSequence": 97, "arrival": {"time": "1694895180"}, "stopId": "41937"}, {"stopSequence": 98, "arrival": {"time": "1694896124"}, "stopId": "34871"}, {"stopSequence": 99, "arrival": {"time": "1694896321"}, "stopId": "42212"}], "vehicle": {"licensePlate": "HTRK89"}, "timestamp": "1694889002"}, "vehicle": {"trip": {"tripId": "16511-701ff27f-2", "startTime": "14:32:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "557", "directionId": 1}, "position": {"latitude": -36.78172, "longitude": -73.0765, "bearing": 152.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889002", "vehicle": {"licensePlate": "HTRK89"}}}, {"id": "9a34828c-f3ec-4e6a-9232-438ad15da776", "tripUpdate": {"trip": {"tripId": "16436-701ff27f-2", "startTime": "14:45:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "557", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 80, "arrival": {"time": "1694889040"}, "stopId": "38536"}, {"stopSequence": 81, "arrival": {"time": "1694889074"}, "stopId": "4838437"}, {"stopSequence": 82, "arrival": {"time": "1694889140"}, "stopId": "45085"}, {"stopSequence": 83, "arrival": {"time": "1694889218"}, "stopId": "45086"}, {"stopSequence": 84, "arrival": {"time": "1694889316"}, "stopId": "45087"}, {"stopSequence": 85, "arrival": {"time": "1694889348"}, "stopId": "45088"}, {"stopSequence": 86, "arrival": {"time": "1694889388"}, "stopId": "45089"}, {"stopSequence": 87, "arrival": {"time": "1694889456"}, "stopId": "45090"}, {"stopSequence": 88, "arrival": {"time": "1694889492"}, "stopId": "45091"}, {"stopSequence": 89, "arrival": {"time": "1694889556"}, "stopId": "45093"}, {"stopSequence": 90, "arrival": {"time": "1694889611"}, "stopId": "45094"}, {"stopSequence": 91, "arrival": {"time": "1694889645"}, "stopId": "45095"}, {"stopSequence": 92, "arrival": {"time": "1694889688"}, "stopId": "45096"}, {"stopSequence": 93, "arrival": {"time": "1694889727"}, "stopId": "45097"}, {"stopSequence": 94, "arrival": {"time": "1694889755"}, "stopId": "45098"}, {"stopSequence": 95, "arrival": {"time": "1694889779"}, "stopId": "45099"}, {"stopSequence": 96, "arrival": {"time": "1694889805"}, "stopId": "45100"}, {"stopSequence": 97, "arrival": {"time": "1694889829"}, "stopId": "45101"}, {"stopSequence": 98, "arrival": {"time": "1694889866"}, "stopId": "45102"}, {"stopSequence": 99, "arrival": {"time": "1694889891"}, "stopId": "45103"}, {"stopSequence": 100, "arrival": {"time": "1694889915"}, "stopId": "45104"}, {"stopSequence": 101, "arrival": {"time": "1694889939"}, "stopId": "45122"}, {"stopSequence": 102, "arrival": {"time": "1694889991"}, "stopId": "38630"}, {"stopSequence": 103, "arrival": {"time": "1694890087"}, "stopId": "42365"}, {"stopSequence": 104, "arrival": {"time": "1694890206"}, "stopId": "49349"}, {"stopSequence": 105, "arrival": {"time": "1694890321"}, "stopId": "49350"}, {"stopSequence": 106, "arrival": {"time": "1694890374"}, "stopId": "49351"}, {"stopSequence": 107, "arrival": {"time": "1694890407"}, "stopId": "49352"}, {"stopSequence": 108, "arrival": {"time": "1694890446"}, "stopId": "49353"}, {"stopSequence": 109, "arrival": {"time": "1694890487"}, "stopId": "49354"}, {"stopSequence": 110, "arrival": {"time": "1694890529"}, "stopId": "49355"}, {"stopSequence": 111, "arrival": {"time": "1694890610"}, "stopId": "42244"}, {"stopSequence": 112, "arrival": {"time": "1694890622"}, "stopId": "49356"}, {"stopSequence": 113, "arrival": {"time": "1694890688"}, "stopId": "49357"}, {"stopSequence": 114, "arrival": {"time": "1694890712"}, "stopId": "49358"}, {"stopSequence": 115, "arrival": {"time": "1694890763"}, "stopId": "49359"}, {"stopSequence": 116, "arrival": {"time": "1694890815"}, "stopId": "49360"}, {"stopSequence": 117, "arrival": {"time": "1694890933"}, "stopId": "49361"}, {"stopSequence": 118, "arrival": {"time": "1694890957"}, "stopId": "49362"}, {"stopSequence": 119, "arrival": {"time": "1694891010"}, "stopId": "49363"}, {"stopSequence": 120, "arrival": {"time": "1694891061"}, "stopId": "49364"}, {"stopSequence": 121, "arrival": {"time": "1694891111"}, "stopId": "49365"}], "vehicle": {"licensePlate": "WR8693"}, "timestamp": "1694888978"}, "vehicle": {"trip": {"tripId": "16436-701ff27f-2", "startTime": "14:45:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "557", "directionId": 0}, "position": {"latitude": -36.76787, "longitude": -73.08462, "bearing": 334.0, "odometer": 0.0, "speed": 12.222222}, "timestamp": "1694888978", "vehicle": {"licensePlate": "WR8693"}}}, {"id": "8749b690-c21d-41c0-8a4a-4e2345863c04", "tripUpdate": {"trip": {"tripId": "1684-c36b9237-d", "startTime": "15:47:00", "startDate": "20230915", "scheduleRelationship": "SCHEDULED", "routeId": "558", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 97, "arrival": {"time": "1694888646"}, "stopId": "42503"}, {"stopSequence": 98, "arrival": {"time": "1694888745"}, "stopId": "49267"}, {"stopSequence": 99, "arrival": {"time": "1694888810"}, "stopId": "20540210"}, {"stopSequence": 100, "arrival": {"time": "1694888832"}, "stopId": "20540222"}, {"stopSequence": 101, "arrival": {"time": "1694888890"}, "stopId": "20540211"}, {"stopSequence": 102, "arrival": {"time": "1694888937"}, "stopId": "20540212"}, {"stopSequence": 103, "arrival": {"time": "1694888995"}, "stopId": "20540213"}, {"stopSequence": 104, "arrival": {"time": "1694889018"}, "stopId": "20540214"}, {"stopSequence": 105, "arrival": {"time": "1694889063"}, "stopId": "20540215"}, {"stopSequence": 106, "arrival": {"time": "1694889080"}, "stopId": "20540216"}, {"stopSequence": 107, "arrival": {"time": "1694889098"}, "stopId": "20540228"}, {"stopSequence": 108, "arrival": {"time": "1694889106"}, "stopId": "20540229"}, {"stopSequence": 109, "arrival": {"time": "1694889170"}, "stopId": "20540207"}, {"stopSequence": 110, "arrival": {"time": "1694889205"}, "stopId": "91147"}], "vehicle": {"licensePlate": "DTCB53"}, "timestamp": "1694888639"}, "vehicle": {"trip": {"tripId": "1684-c36b9237-d", "startTime": "15:47:00", "startDate": "20230915", "scheduleRelationship": "SCHEDULED", "routeId": "558", "directionId": 1}, "position": {"latitude": -36.95775, "longitude": -73.01251, "bearing": 164.0, "odometer": 0.0, "speed": 32.0}, "timestamp": "1694888639", "vehicle": {"licensePlate": "DTCB53"}}}, {"id": "7146d8fc-6443-4d4b-a5d2-c38dbbb0d58e", "tripUpdate": {"trip": {"tripId": "16635-701ff27f-2", "startTime": "14:42:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "558", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 53, "arrival": {"time": "1694888999"}, "stopId": "35695"}, {"stopSequence": 54, "arrival": {"time": "1694889050"}, "stopId": "35696"}, {"stopSequence": 55, "arrival": {"time": "1694889229"}, "stopId": "35697"}, {"stopSequence": 56, "arrival": {"time": "1694889328"}, "stopId": "2-Jan"}, {"stopSequence": 57, "arrival": {"time": "1694889364"}, "stopId": "42460"}, {"stopSequence": 58, "arrival": {"time": "1694889416"}, "stopId": "39726"}, {"stopSequence": 59, "arrival": {"time": "1694889438"}, "stopId": "2-Mar"}, {"stopSequence": 60, "arrival": {"time": "1694889520"}, "stopId": "2-Apr"}, {"stopSequence": 61, "arrival": {"time": "1694889573"}, "stopId": "39728"}, {"stopSequence": 62, "arrival": {"time": "1694889673"}, "stopId": "39729"}, {"stopSequence": 63, "arrival": {"time": "1694889697"}, "stopId": "39730"}, {"stopSequence": 64, "arrival": {"time": "1694889798"}, "stopId": "42200"}, {"stopSequence": 65, "arrival": {"time": "1694889841"}, "stopId": "42203"}, {"stopSequence": 66, "arrival": {"time": "1694889894"}, "stopId": "42204"}, {"stopSequence": 67, "arrival": {"time": "1694889935"}, "stopId": "42205"}, {"stopSequence": 68, "arrival": {"time": "1694889994"}, "stopId": "42201"}, {"stopSequence": 69, "arrival": {"time": "1694890232"}, "stopId": "42206"}, {"stopSequence": 70, "arrival": {"time": "1694890293"}, "stopId": "42207"}, {"stopSequence": 71, "arrival": {"time": "1694890351"}, "stopId": "42208"}, {"stopSequence": 72, "arrival": {"time": "1694890475"}, "stopId": "42564"}, {"stopSequence": 73, "arrival": {"time": "1694890580"}, "stopId": "42214"}, {"stopSequence": 74, "arrival": {"time": "1694890688"}, "stopId": "42209"}, {"stopSequence": 75, "arrival": {"time": "1694890808"}, "stopId": "42210"}, {"stopSequence": 76, "arrival": {"time": "1694891004"}, "stopId": "42215"}, {"stopSequence": 77, "arrival": {"time": "1694891030"}, "stopId": "42216"}, {"stopSequence": 78, "arrival": {"time": "1694891081"}, "stopId": "42217"}, {"stopSequence": 79, "arrival": {"time": "1694891162"}, "stopId": "42218"}, {"stopSequence": 80, "arrival": {"time": "1694891210"}, "stopId": "42219"}, {"stopSequence": 81, "arrival": {"time": "1694891322"}, "stopId": "42220"}, {"stopSequence": 82, "arrival": {"time": "1694891372"}, "stopId": "42221"}, {"stopSequence": 83, "arrival": {"time": "1694891450"}, "stopId": "42222"}, {"stopSequence": 84, "arrival": {"time": "1694891529"}, "stopId": "42223"}, {"stopSequence": 85, "arrival": {"time": "1694891563"}, "stopId": "42224"}, {"stopSequence": 86, "arrival": {"time": "1694891654"}, "stopId": "42225"}, {"stopSequence": 87, "arrival": {"time": "1694891733"}, "stopId": "42226"}, {"stopSequence": 88, "arrival": {"time": "1694891800"}, "stopId": "42227"}, {"stopSequence": 89, "arrival": {"time": "1694891906"}, "stopId": "42228"}, {"stopSequence": 90, "arrival": {"time": "1694891961"}, "stopId": "42229"}, {"stopSequence": 91, "arrival": {"time": "1694892067"}, "stopId": "42230"}, {"stopSequence": 92, "arrival": {"time": "1694892124"}, "stopId": "42231"}, {"stopSequence": 93, "arrival": {"time": "1694892244"}, "stopId": "42232"}, {"stopSequence": 94, "arrival": {"time": "1694892424"}, "stopId": "42234"}, {"stopSequence": 95, "arrival": {"time": "1694892570"}, "stopId": "42211"}, {"stopSequence": 96, "arrival": {"time": "1694892731"}, "stopId": "49204"}, {"stopSequence": 97, "arrival": {"time": "1694892766"}, "stopId": "42503"}, {"stopSequence": 98, "arrival": {"time": "1694892921"}, "stopId": "49267"}, {"stopSequence": 99, "arrival": {"time": "1694893026"}, "stopId": "20540210"}, {"stopSequence": 100, "arrival": {"time": "1694893064"}, "stopId": "20540222"}, {"stopSequence": 101, "arrival": {"time": "1694893164"}, "stopId": "20540211"}, {"stopSequence": 102, "arrival": {"time": "1694893248"}, "stopId": "20540212"}, {"stopSequence": 103, "arrival": {"time": "1694893354"}, "stopId": "20540213"}, {"stopSequence": 104, "arrival": {"time": "1694893397"}, "stopId": "20540214"}, {"stopSequence": 105, "arrival": {"time": "1694893484"}, "stopId": "20540215"}, {"stopSequence": 106, "arrival": {"time": "1694893519"}, "stopId": "20540216"}, {"stopSequence": 107, "arrival": {"time": "1694893553"}, "stopId": "20540228"}, {"stopSequence": 108, "arrival": {"time": "1694893570"}, "stopId": "20540229"}, {"stopSequence": 109, "arrival": {"time": "1694893702"}, "stopId": "20540207"}, {"stopSequence": 110, "arrival": {"time": "1694893775"}, "stopId": "91147"}], "vehicle": {"licensePlate": "HDBZ53"}, "timestamp": "1694888999"}, "vehicle": {"trip": {"tripId": "16635-701ff27f-2", "startTime": "14:42:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "558", "directionId": 1}, "position": {"latitude": -36.81344, "longitude": -73.06895, "bearing": 142.0, "odometer": 0.0, "speed": 49.0}, "timestamp": "1694888999", "vehicle": {"licensePlate": "HDBZ53"}}}, {"id": "70fd59ab-426b-45f5-81ec-69b0ec35f0c6", "tripUpdate": {"trip": {"tripId": "16750-701ff27f-2", "startTime": "15:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "559", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 26, "arrival": {"time": "1694889065"}, "stopId": "49285"}, {"stopSequence": 27, "arrival": {"time": "1694889146"}, "stopId": "49286"}, {"stopSequence": 28, "arrival": {"time": "1694889191"}, "stopId": "49287"}, {"stopSequence": 29, "arrival": {"time": "1694889239"}, "stopId": "49288"}, {"stopSequence": 30, "arrival": {"time": "1694889291"}, "stopId": "49289"}, {"stopSequence": 31, "arrival": {"time": "1694889430"}, "stopId": "42294"}, {"stopSequence": 32, "arrival": {"time": "1694889671"}, "stopId": "42296"}, {"stopSequence": 33, "arrival": {"time": "1694889793"}, "stopId": "42297"}, {"stopSequence": 34, "arrival": {"time": "1694889888"}, "stopId": "42298"}, {"stopSequence": 35, "arrival": {"time": "1694889950"}, "stopId": "42299"}, {"stopSequence": 36, "arrival": {"time": "1694889991"}, "stopId": "49295"}, {"stopSequence": 37, "arrival": {"time": "1694890108"}, "stopId": "49296"}, {"stopSequence": 38, "arrival": {"time": "1694890195"}, "stopId": "49297"}, {"stopSequence": 39, "arrival": {"time": "1694890224"}, "stopId": "49298"}, {"stopSequence": 40, "arrival": {"time": "1694890294"}, "stopId": "49299"}, {"stopSequence": 41, "arrival": {"time": "1694890329"}, "stopId": "49300"}, {"stopSequence": 42, "arrival": {"time": "1694890422"}, "stopId": "49301"}, {"stopSequence": 43, "arrival": {"time": "1694890485"}, "stopId": "49302"}, {"stopSequence": 44, "arrival": {"time": "1694890529"}, "stopId": "49303"}, {"stopSequence": 45, "arrival": {"time": "1694890581"}, "stopId": "49304"}, {"stopSequence": 46, "arrival": {"time": "1694890615"}, "stopId": "49305"}, {"stopSequence": 47, "arrival": {"time": "1694890666"}, "stopId": "49306"}, {"stopSequence": 48, "arrival": {"time": "1694890715"}, "stopId": "49307"}, {"stopSequence": 49, "arrival": {"time": "1694890731"}, "stopId": "49308"}, {"stopSequence": 50, "arrival": {"time": "1694890755"}, "stopId": "49309"}, {"stopSequence": 51, "arrival": {"time": "1694890825"}, "stopId": "49310"}, {"stopSequence": 52, "arrival": {"time": "1694890858"}, "stopId": "49311"}, {"stopSequence": 53, "arrival": {"time": "1694890883"}, "stopId": "39633"}, {"stopSequence": 54, "arrival": {"time": "1694890916"}, "stopId": "39634"}, {"stopSequence": 55, "arrival": {"time": "1694890942"}, "stopId": "39635"}, {"stopSequence": 56, "arrival": {"time": "1694890991"}, "stopId": "39636"}, {"stopSequence": 57, "arrival": {"time": "1694891185"}, "stopId": "39637"}, {"stopSequence": 58, "arrival": {"time": "1694891240"}, "stopId": "49317"}, {"stopSequence": 59, "arrival": {"time": "1694891275"}, "stopId": "49318"}, {"stopSequence": 60, "arrival": {"time": "1694891349"}, "stopId": "49319"}, {"stopSequence": 61, "arrival": {"time": "1694891421"}, "stopId": "39641"}, {"stopSequence": 62, "arrival": {"time": "1694891463"}, "stopId": "39642"}, {"stopSequence": 63, "arrival": {"time": "1694891769"}, "stopId": "39795"}, {"stopSequence": 64, "arrival": {"time": "1694891841"}, "stopId": "42642"}, {"stopSequence": 65, "arrival": {"time": "1694891883"}, "stopId": "42643"}, {"stopSequence": 66, "arrival": {"time": "1694891918"}, "stopId": "42644"}, {"stopSequence": 67, "arrival": {"time": "1694891945"}, "stopId": "42645"}, {"stopSequence": 68, "arrival": {"time": "1694892175"}, "stopId": "37430"}, {"stopSequence": 69, "arrival": {"time": "1694892218"}, "stopId": "37431"}, {"stopSequence": 70, "arrival": {"time": "1694892259"}, "stopId": "37432"}, {"stopSequence": 71, "arrival": {"time": "1694892356"}, "stopId": "40720"}, {"stopSequence": 72, "arrival": {"time": "1694892374"}, "stopId": "40721"}, {"stopSequence": 73, "arrival": {"time": "1694892433"}, "stopId": "40722"}, {"stopSequence": 74, "arrival": {"time": "1694892441"}, "stopId": "40723"}, {"stopSequence": 75, "arrival": {"time": "1694892608"}, "stopId": "42653"}, {"stopSequence": 76, "arrival": {"time": "1694892657"}, "stopId": "42654"}, {"stopSequence": 77, "arrival": {"time": "1694892801"}, "stopId": "42655"}, {"stopSequence": 78, "arrival": {"time": "1694892877"}, "stopId": "49342"}, {"stopSequence": 79, "arrival": {"time": "1694893034"}, "stopId": "49343"}, {"stopSequence": 80, "arrival": {"time": "1694893368"}, "stopId": "49344"}, {"stopSequence": 81, "arrival": {"time": "1694893651"}, "stopId": "49345"}, {"stopSequence": 82, "arrival": {"time": "1694894011"}, "stopId": "49346"}, {"stopSequence": 83, "arrival": {"time": "1694894131"}, "stopId": "49347"}, {"stopSequence": 84, "arrival": {"time": "1694894673"}, "stopId": "49348"}, {"stopSequence": 85, "arrival": {"time": "1694894960"}, "stopId": "49349"}, {"stopSequence": 86, "arrival": {"time": "1694895331"}, "stopId": "49350"}, {"stopSequence": 87, "arrival": {"time": "1694895481"}, "stopId": "49351"}, {"stopSequence": 88, "arrival": {"time": "1694895591"}, "stopId": "49352"}, {"stopSequence": 89, "arrival": {"time": "1694895722"}, "stopId": "49353"}, {"stopSequence": 90, "arrival": {"time": "1694896015"}, "stopId": "49355"}, {"stopSequence": 91, "arrival": {"time": "1694896320"}, "stopId": "42244"}, {"stopSequence": 92, "arrival": {"time": "1694896365"}, "stopId": "49356"}, {"stopSequence": 93, "arrival": {"time": "1694896628"}, "stopId": "49357"}, {"stopSequence": 94, "arrival": {"time": "1694896732"}, "stopId": "49358"}, {"stopSequence": 95, "arrival": {"time": "1694896945"}, "stopId": "49359"}, {"stopSequence": 96, "arrival": {"time": "1694897173"}, "stopId": "49360"}, {"stopSequence": 97, "arrival": {"time": "1694897721"}, "stopId": "49361"}, {"stopSequence": 98, "arrival": {"time": "1694897856"}, "stopId": "49362"}, {"stopSequence": 99, "arrival": {"time": "1694898112"}, "stopId": "49363"}, {"stopSequence": 100, "arrival": {"time": "1694898381"}, "stopId": "49364"}, {"stopSequence": 101, "arrival": {"time": "1694898638"}, "stopId": "49365"}], "vehicle": {"licensePlate": "RBXL11"}, "timestamp": "1694889024"}, "vehicle": {"trip": {"tripId": "16750-701ff27f-2", "startTime": "15:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "559", "directionId": 0}, "position": {"latitude": -36.907356, "longitude": -73.02963, "bearing": 352.0, "odometer": 0.0, "speed": 50.0}, "timestamp": "1694889024", "vehicle": {"licensePlate": "RBXL11"}}}, {"id": "833c2481-5a3f-485b-8179-ef0a28e9bd37", "tripUpdate": {"trip": {"tripId": "1731-c36b9237-d", "startTime": "08:32:00", "startDate": "20230914", "scheduleRelationship": "SCHEDULED", "routeId": "559", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 11, "arrival": {"time": "1694889036"}, "stopId": "38779"}, {"stopSequence": 12, "arrival": {"time": "1694889085"}, "stopId": "42247"}, {"stopSequence": 13, "arrival": {"time": "1694889134"}, "stopId": "42248"}, {"stopSequence": 14, "arrival": {"time": "1694889166"}, "stopId": "38782"}, {"stopSequence": 15, "arrival": {"time": "1694889280"}, "stopId": "42249"}, {"stopSequence": 16, "arrival": {"time": "1694889398"}, "stopId": "42421"}, {"stopSequence": 17, "arrival": {"time": "1694889599"}, "stopId": "42422"}, {"stopSequence": 18, "arrival": {"time": "1694889675"}, "stopId": "42423"}, {"stopSequence": 19, "arrival": {"time": "1694889784"}, "stopId": "42424"}, {"stopSequence": 20, "arrival": {"time": "1694889967"}, "stopId": "42425"}, {"stopSequence": 21, "arrival": {"time": "1694890143"}, "stopId": "42426"}, {"stopSequence": 22, "arrival": {"time": "1694890196"}, "stopId": "42427"}, {"stopSequence": 23, "arrival": {"time": "1694890225"}, "stopId": "42428"}, {"stopSequence": 24, "arrival": {"time": "1694890255"}, "stopId": "42429"}, {"stopSequence": 25, "arrival": {"time": "1694890347"}, "stopId": "42521"}, {"stopSequence": 26, "arrival": {"time": "1694890376"}, "stopId": "42522"}, {"stopSequence": 27, "arrival": {"time": "1694890432"}, "stopId": "42524"}, {"stopSequence": 28, "arrival": {"time": "1694890506"}, "stopId": "42525"}, {"stopSequence": 29, "arrival": {"time": "1694890509"}, "stopId": "42526"}, {"stopSequence": 30, "arrival": {"time": "1694890543"}, "stopId": "40721"}, {"stopSequence": 31, "arrival": {"time": "1694890583"}, "stopId": "42528"}, {"stopSequence": 32, "arrival": {"time": "1694890629"}, "stopId": "37585"}, {"stopSequence": 33, "arrival": {"time": "1694890666"}, "stopId": "37586"}, {"stopSequence": 34, "arrival": {"time": "1694890691"}, "stopId": "37587"}, {"stopSequence": 35, "arrival": {"time": "1694890795"}, "stopId": "36641"}, {"stopSequence": 36, "arrival": {"time": "1694890849"}, "stopId": "42533"}, {"stopSequence": 37, "arrival": {"time": "1694890909"}, "stopId": "42534"}, {"stopSequence": 38, "arrival": {"time": "1694890950"}, "stopId": "42535"}, {"stopSequence": 39, "arrival": {"time": "1694891035"}, "stopId": "38502"}, {"stopSequence": 40, "arrival": {"time": "1694891107"}, "stopId": "38503"}, {"stopSequence": 41, "arrival": {"time": "1694891280"}, "stopId": "35691"}, {"stopSequence": 42, "arrival": {"time": "1694891326"}, "stopId": "35692"}, {"stopSequence": 43, "arrival": {"time": "1694891388"}, "stopId": "35693"}, {"stopSequence": 44, "arrival": {"time": "1694891455"}, "stopId": "35694"}, {"stopSequence": 45, "arrival": {"time": "1694891502"}, "stopId": "35695"}, {"stopSequence": 46, "arrival": {"time": "1694891558"}, "stopId": "35696"}, {"stopSequence": 47, "arrival": {"time": "1694891772"}, "stopId": "35697"}, {"stopSequence": 48, "arrival": {"time": "1694891904"}, "stopId": "2-Jan"}, {"stopSequence": 49, "arrival": {"time": "1694891933"}, "stopId": "42460"}, {"stopSequence": 50, "arrival": {"time": "1694892009"}, "stopId": "39726"}, {"stopSequence": 51, "arrival": {"time": "1694892038"}, "stopId": "2-Mar"}, {"stopSequence": 52, "arrival": {"time": "1694892145"}, "stopId": "2-Apr"}, {"stopSequence": 53, "arrival": {"time": "1694892229"}, "stopId": "39728"}, {"stopSequence": 54, "arrival": {"time": "1694892369"}, "stopId": "39729"}, {"stopSequence": 55, "arrival": {"time": "1694892405"}, "stopId": "39730"}, {"stopSequence": 56, "arrival": {"time": "1694892560"}, "stopId": "42200"}, {"stopSequence": 57, "arrival": {"time": "1694892630"}, "stopId": "42203"}, {"stopSequence": 58, "arrival": {"time": "1694892731"}, "stopId": "42204"}, {"stopSequence": 59, "arrival": {"time": "1694892784"}, "stopId": "42205"}, {"stopSequence": 60, "arrival": {"time": "1694892884"}, "stopId": "42201"}, {"stopSequence": 61, "arrival": {"time": "1694893318"}, "stopId": "42206"}, {"stopSequence": 62, "arrival": {"time": "1694893438"}, "stopId": "42207"}, {"stopSequence": 63, "arrival": {"time": "1694893556"}, "stopId": "42208"}, {"stopSequence": 64, "arrival": {"time": "1694893817"}, "stopId": "42564"}, {"stopSequence": 65, "arrival": {"time": "1694894055"}, "stopId": "42214"}, {"stopSequence": 66, "arrival": {"time": "1694894302"}, "stopId": "42209"}, {"stopSequence": 67, "arrival": {"time": "1694894600"}, "stopId": "42210"}, {"stopSequence": 68, "arrival": {"time": "1694895093"}, "stopId": "40951"}, {"stopSequence": 69, "arrival": {"time": "1694895281"}, "stopId": "40952"}, {"stopSequence": 70, "arrival": {"time": "1694895467"}, "stopId": "40953"}, {"stopSequence": 71, "arrival": {"time": "1694895612"}, "stopId": "40954"}, {"stopSequence": 72, "arrival": {"time": "1694895859"}, "stopId": "40955"}, {"stopSequence": 73, "arrival": {"time": "1694895995"}, "stopId": "40956"}, {"stopSequence": 74, "arrival": {"time": "1694896223"}, "stopId": "40957"}, {"stopSequence": 75, "arrival": {"time": "1694896431"}, "stopId": "40958"}, {"stopSequence": 76, "arrival": {"time": "1694896539"}, "stopId": "40959"}, {"stopSequence": 77, "arrival": {"time": "1694896838"}, "stopId": "42223"}, {"stopSequence": 78, "arrival": {"time": "1694896962"}, "stopId": "42224"}, {"stopSequence": 79, "arrival": {"time": "1694897313"}, "stopId": "42225"}, {"stopSequence": 80, "arrival": {"time": "1694897631"}, "stopId": "42226"}, {"stopSequence": 81, "arrival": {"time": "1694897907"}, "stopId": "42227"}, {"stopSequence": 82, "arrival": {"time": "1694898374"}, "stopId": "42228"}, {"stopSequence": 83, "arrival": {"time": "1694898594"}, "stopId": "42229"}, {"stopSequence": 84, "arrival": {"time": "1694899132"}, "stopId": "42230"}, {"stopSequence": 85, "arrival": {"time": "1694899418"}, "stopId": "42231"}, {"stopSequence": 86, "arrival": {"time": "1694900006"}, "stopId": "42232"}, {"stopSequence": 87, "arrival": {"time": "1694901099"}, "stopId": "42234"}, {"stopSequence": 88, "arrival": {"time": "1694901820"}, "stopId": "42235"}, {"stopSequence": 89, "arrival": {"time": "1694902049"}, "stopId": "42211"}, {"stopSequence": 90, "arrival": {"time": "1694902669"}, "stopId": "42501"}, {"stopSequence": 91, "arrival": {"time": "1694903259"}, "stopId": "49204"}, {"stopSequence": 92, "arrival": {"time": "1694903365"}, "stopId": "42503"}, {"stopSequence": 93, "arrival": {"time": "1694904028"}, "stopId": "49266"}, {"stopSequence": 94, "arrival": {"time": "1694905661"}, "stopId": "20540210"}, {"stopSequence": 95, "arrival": {"time": "1694906160"}, "stopId": "20540222"}, {"stopSequence": 96, "arrival": {"time": "1694907116"}, "stopId": "20540211"}, {"stopSequence": 97, "arrival": {"time": "1694907933"}, "stopId": "20540212"}, {"stopSequence": 98, "arrival": {"time": "1694909166"}, "stopId": "20540213"}, {"stopSequence": 99, "arrival": {"time": "1694909935"}, "stopId": "20540214"}, {"stopSequence": 100, "arrival": {"time": "1694910836"}, "stopId": "20540215"}, {"stopSequence": 101, "arrival": {"time": "1694911893"}, "stopId": "20540228"}, {"stopSequence": 102, "arrival": {"time": "1694912219"}, "stopId": "20540229"}, {"stopSequence": 103, "arrival": {"time": "1694914328"}, "stopId": "20540207"}, {"stopSequence": 104, "arrival": {"time": "1694915442"}, "stopId": "91147"}, {"stopSequence": 105, "arrival": {"time": "1694916648"}, "stopId": "20554362"}], "vehicle": {"licensePlate": "RLYS70"}, "timestamp": "1694889001"}, "vehicle": {"trip": {"tripId": "1731-c36b9237-d", "startTime": "08:32:00", "startDate": "20230914", "scheduleRelationship": "SCHEDULED", "routeId": "559", "directionId": 1}, "position": {"latitude": -36.72743, "longitude": -73.116905, "bearing": 196.0, "odometer": 0.0, "speed": 40.0}, "timestamp": "1694889001", "vehicle": {"licensePlate": "RLYS70"}}}, {"id": "e28c238b-5501-4a8e-8a45-841f07e19160", "tripUpdate": {"trip": {"tripId": "16691-701ff27f-2", "startTime": "14:22:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "559", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 50, "arrival": {"time": "1694888957"}, "stopId": "39726"}, {"stopSequence": 51, "arrival": {"time": "1694888980"}, "stopId": "2-Mar"}, {"stopSequence": 52, "arrival": {"time": "1694889064"}, "stopId": "2-Apr"}, {"stopSequence": 53, "arrival": {"time": "1694889127"}, "stopId": "39728"}, {"stopSequence": 54, "arrival": {"time": "1694889228"}, "stopId": "39729"}, {"stopSequence": 55, "arrival": {"time": "1694889253"}, "stopId": "39730"}, {"stopSequence": 56, "arrival": {"time": "1694889357"}, "stopId": "42200"}, {"stopSequence": 57, "arrival": {"time": "1694889403"}, "stopId": "42203"}, {"stopSequence": 58, "arrival": {"time": "1694889466"}, "stopId": "42204"}, {"stopSequence": 59, "arrival": {"time": "1694889499"}, "stopId": "42205"}, {"stopSequence": 60, "arrival": {"time": "1694889558"}, "stopId": "42201"}, {"stopSequence": 61, "arrival": {"time": "1694889798"}, "stopId": "42206"}, {"stopSequence": 62, "arrival": {"time": "1694889859"}, "stopId": "42207"}, {"stopSequence": 63, "arrival": {"time": "1694889917"}, "stopId": "42208"}, {"stopSequence": 64, "arrival": {"time": "1694890039"}, "stopId": "42564"}, {"stopSequence": 65, "arrival": {"time": "1694890143"}, "stopId": "42214"}, {"stopSequence": 66, "arrival": {"time": "1694890245"}, "stopId": "42209"}, {"stopSequence": 67, "arrival": {"time": "1694890361"}, "stopId": "42210"}, {"stopSequence": 68, "arrival": {"time": "1694890537"}, "stopId": "40951"}, {"stopSequence": 69, "arrival": {"time": "1694890599"}, "stopId": "40952"}, {"stopSequence": 70, "arrival": {"time": "1694890659"}, "stopId": "40953"}, {"stopSequence": 71, "arrival": {"time": "1694890705"}, "stopId": "40954"}, {"stopSequence": 72, "arrival": {"time": "1694890779"}, "stopId": "40955"}, {"stopSequence": 73, "arrival": {"time": "1694890818"}, "stopId": "40956"}, {"stopSequence": 74, "arrival": {"time": "1694890882"}, "stopId": "40957"}, {"stopSequence": 75, "arrival": {"time": "1694890938"}, "stopId": "40958"}, {"stopSequence": 76, "arrival": {"time": "1694890967"}, "stopId": "40959"}, {"stopSequence": 77, "arrival": {"time": "1694891043"}, "stopId": "42223"}, {"stopSequence": 78, "arrival": {"time": "1694891074"}, "stopId": "42224"}, {"stopSequence": 79, "arrival": {"time": "1694891157"}, "stopId": "42225"}, {"stopSequence": 80, "arrival": {"time": "1694891229"}, "stopId": "42226"}, {"stopSequence": 81, "arrival": {"time": "1694891289"}, "stopId": "42227"}, {"stopSequence": 82, "arrival": {"time": "1694891385"}, "stopId": "42228"}, {"stopSequence": 83, "arrival": {"time": "1694891428"}, "stopId": "42229"}, {"stopSequence": 84, "arrival": {"time": "1694891528"}, "stopId": "42230"}, {"stopSequence": 85, "arrival": {"time": "1694891578"}, "stopId": "42231"}, {"stopSequence": 86, "arrival": {"time": "1694891677"}, "stopId": "42232"}, {"stopSequence": 87, "arrival": {"time": "1694891843"}, "stopId": "42234"}, {"stopSequence": 88, "arrival": {"time": "1694891941"}, "stopId": "42235"}, {"stopSequence": 89, "arrival": {"time": "1694891971"}, "stopId": "42211"}, {"stopSequence": 90, "arrival": {"time": "1694892048"}, "stopId": "42501"}, {"stopSequence": 91, "arrival": {"time": "1694892117"}, "stopId": "49204"}, {"stopSequence": 92, "arrival": {"time": "1694892129"}, "stopId": "42503"}, {"stopSequence": 93, "arrival": {"time": "1694892201"}, "stopId": "49266"}, {"stopSequence": 94, "arrival": {"time": "1694892361"}, "stopId": "20540210"}, {"stopSequence": 95, "arrival": {"time": "1694892406"}, "stopId": "20540222"}, {"stopSequence": 96, "arrival": {"time": "1694892486"}, "stopId": "20540211"}, {"stopSequence": 97, "arrival": {"time": "1694892550"}, "stopId": "20540212"}, {"stopSequence": 98, "arrival": {"time": "1694892639"}, "stopId": "20540213"}, {"stopSequence": 99, "arrival": {"time": "1694892690"}, "stopId": "20540214"}, {"stopSequence": 100, "arrival": {"time": "1694892747"}, "stopId": "20540215"}, {"stopSequence": 101, "arrival": {"time": "1694892809"}, "stopId": "20540228"}, {"stopSequence": 102, "arrival": {"time": "1694892827"}, "stopId": "20540229"}, {"stopSequence": 103, "arrival": {"time": "1694892936"}, "stopId": "20540207"}, {"stopSequence": 104, "arrival": {"time": "1694892988"}, "stopId": "91147"}, {"stopSequence": 105, "arrival": {"time": "1694893041"}, "stopId": "20554362"}], "vehicle": {"licensePlate": "RTXW79"}, "timestamp": "1694888940"}, "vehicle": {"trip": {"tripId": "16691-701ff27f-2", "startTime": "14:22:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "559", "directionId": 1}, "position": {"latitude": -36.829533, "longitude": -73.0612, "bearing": 154.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888940", "vehicle": {"licensePlate": "RTXW79"}}}, {"id": "0c102e4c-3434-42e6-a4fb-c80682b55542", "tripUpdate": {"trip": {"tripId": "16815-701ff27f-2", "startTime": "14:20:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "560", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 31, "arrival": {"time": "1694888939"}, "stopId": "49297"}, {"stopSequence": 32, "arrival": {"time": "1694888974"}, "stopId": "49298"}, {"stopSequence": 33, "arrival": {"time": "1694889037"}, "stopId": "49299"}, {"stopSequence": 34, "arrival": {"time": "1694889092"}, "stopId": "49300"}, {"stopSequence": 35, "arrival": {"time": "1694889179"}, "stopId": "49301"}, {"stopSequence": 36, "arrival": {"time": "1694889248"}, "stopId": "49302"}, {"stopSequence": 37, "arrival": {"time": "1694889294"}, "stopId": "49303"}, {"stopSequence": 38, "arrival": {"time": "1694889346"}, "stopId": "49304"}, {"stopSequence": 39, "arrival": {"time": "1694889374"}, "stopId": "49305"}, {"stopSequence": 40, "arrival": {"time": "1694889431"}, "stopId": "49306"}, {"stopSequence": 41, "arrival": {"time": "1694889470"}, "stopId": "49307"}, {"stopSequence": 42, "arrival": {"time": "1694889494"}, "stopId": "49308"}, {"stopSequence": 43, "arrival": {"time": "1694889518"}, "stopId": "49309"}, {"stopSequence": 44, "arrival": {"time": "1694889546"}, "stopId": "42315"}, {"stopSequence": 45, "arrival": {"time": "1694889569"}, "stopId": "42316"}, {"stopSequence": 46, "arrival": {"time": "1694889619"}, "stopId": "42317"}, {"stopSequence": 47, "arrival": {"time": "1694889670"}, "stopId": "42318"}, {"stopSequence": 48, "arrival": {"time": "1694889734"}, "stopId": "8606396"}, {"stopSequence": 49, "arrival": {"time": "1694889811"}, "stopId": "38514"}, {"stopSequence": 50, "arrival": {"time": "1694889848"}, "stopId": "38516"}, {"stopSequence": 51, "arrival": {"time": "1694889906"}, "stopId": "38518"}, {"stopSequence": 52, "arrival": {"time": "1694890000"}, "stopId": "38520"}, {"stopSequence": 53, "arrival": {"time": "1694890043"}, "stopId": "38521"}, {"stopSequence": 54, "arrival": {"time": "1694890091"}, "stopId": "38522"}, {"stopSequence": 55, "arrival": {"time": "1694890139"}, "stopId": "38523"}, {"stopSequence": 56, "arrival": {"time": "1694890191"}, "stopId": "38524"}, {"stopSequence": 57, "arrival": {"time": "1694890238"}, "stopId": "38525"}, {"stopSequence": 58, "arrival": {"time": "1694890289"}, "stopId": "38526"}, {"stopSequence": 59, "arrival": {"time": "1694890337"}, "stopId": "38527"}, {"stopSequence": 60, "arrival": {"time": "1694890423"}, "stopId": "38528"}, {"stopSequence": 61, "arrival": {"time": "1694890538"}, "stopId": "38529"}, {"stopSequence": 62, "arrival": {"time": "1694890752"}, "stopId": "38530"}, {"stopSequence": 63, "arrival": {"time": "1694890766"}, "stopId": "16005209"}, {"stopSequence": 64, "arrival": {"time": "1694891015"}, "stopId": "38531"}, {"stopSequence": 65, "arrival": {"time": "1694891075"}, "stopId": "8921285"}, {"stopSequence": 66, "arrival": {"time": "1694891199"}, "stopId": "38532"}, {"stopSequence": 67, "arrival": {"time": "1694891258"}, "stopId": "38533"}, {"stopSequence": 68, "arrival": {"time": "1694891320"}, "stopId": "38534"}, {"stopSequence": 69, "arrival": {"time": "1694891375"}, "stopId": "38535"}, {"stopSequence": 70, "arrival": {"time": "1694891451"}, "stopId": "38536"}, {"stopSequence": 71, "arrival": {"time": "1694891494"}, "stopId": "4838437"}, {"stopSequence": 72, "arrival": {"time": "1694891560"}, "stopId": "45085"}, {"stopSequence": 73, "arrival": {"time": "1694891657"}, "stopId": "45086"}, {"stopSequence": 74, "arrival": {"time": "1694891807"}, "stopId": "38540"}, {"stopSequence": 75, "arrival": {"time": "1694891902"}, "stopId": "38544"}, {"stopSequence": 76, "arrival": {"time": "1694892118"}, "stopId": "38546"}, {"stopSequence": 77, "arrival": {"time": "1694892289"}, "stopId": "38548"}, {"stopSequence": 78, "arrival": {"time": "1694892386"}, "stopId": "38549"}, {"stopSequence": 79, "arrival": {"time": "1694892470"}, "stopId": "38550"}, {"stopSequence": 80, "arrival": {"time": "1694892619"}, "stopId": "38551"}, {"stopSequence": 81, "arrival": {"time": "1694892756"}, "stopId": "38552"}, {"stopSequence": 82, "arrival": {"time": "1694892894"}, "stopId": "49359"}, {"stopSequence": 83, "arrival": {"time": "1694892975"}, "stopId": "49360"}, {"stopSequence": 84, "arrival": {"time": "1694893178"}, "stopId": "49361"}, {"stopSequence": 85, "arrival": {"time": "1694893228"}, "stopId": "49362"}, {"stopSequence": 86, "arrival": {"time": "1694893317"}, "stopId": "49363"}, {"stopSequence": 87, "arrival": {"time": "1694893411"}, "stopId": "49364"}, {"stopSequence": 88, "arrival": {"time": "1694893496"}, "stopId": "49365"}], "vehicle": {"licensePlate": "DPZZ21"}, "timestamp": "1694888934"}, "vehicle": {"trip": {"tripId": "16815-701ff27f-2", "startTime": "14:20:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "560", "directionId": 0}, "position": {"latitude": -36.85768, "longitude": -73.04948, "bearing": 348.0, "odometer": 0.0, "speed": 42.1}, "timestamp": "1694888934", "vehicle": {"licensePlate": "DPZZ21"}}}, {"id": "aa725d0e-9478-4d35-b6fb-9f357a259951", "tripUpdate": {"trip": {"tripId": "16892-701ff27f-2", "startTime": "14:47:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "560", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 18, "arrival": {"time": "1694889390"}, "stopId": "40995"}, {"stopSequence": 19, "arrival": {"time": "1694889470"}, "stopId": "40996"}, {"stopSequence": 20, "arrival": {"time": "1694889546"}, "stopId": "40997"}, {"stopSequence": 21, "arrival": {"time": "1694889600"}, "stopId": "39614"}, {"stopSequence": 22, "arrival": {"time": "1694889649"}, "stopId": "39615"}, {"stopSequence": 23, "arrival": {"time": "1694889698"}, "stopId": "39616"}, {"stopSequence": 24, "arrival": {"time": "1694889749"}, "stopId": "39617"}, {"stopSequence": 25, "arrival": {"time": "1694889806"}, "stopId": "39618"}, {"stopSequence": 26, "arrival": {"time": "1694889851"}, "stopId": "39619"}, {"stopSequence": 27, "arrival": {"time": "1694889892"}, "stopId": "39620"}, {"stopSequence": 28, "arrival": {"time": "1694889957"}, "stopId": "39621"}, {"stopSequence": 29, "arrival": {"time": "1694890004"}, "stopId": "38281"}, {"stopSequence": 30, "arrival": {"time": "1694890057"}, "stopId": "37506"}, {"stopSequence": 31, "arrival": {"time": "1694890097"}, "stopId": "45068"}, {"stopSequence": 32, "arrival": {"time": "1694890219"}, "stopId": "37480"}, {"stopSequence": 33, "arrival": {"time": "1694890280"}, "stopId": "37477"}, {"stopSequence": 34, "arrival": {"time": "1694890347"}, "stopId": "40848"}, {"stopSequence": 35, "arrival": {"time": "1694890430"}, "stopId": "2-Apr"}, {"stopSequence": 36, "arrival": {"time": "1694890488"}, "stopId": "39728"}, {"stopSequence": 37, "arrival": {"time": "1694890579"}, "stopId": "39729"}, {"stopSequence": 38, "arrival": {"time": "1694890611"}, "stopId": "39730"}, {"stopSequence": 39, "arrival": {"time": "1694890717"}, "stopId": "42200"}, {"stopSequence": 40, "arrival": {"time": "1694890764"}, "stopId": "42203"}, {"stopSequence": 41, "arrival": {"time": "1694890821"}, "stopId": "42204"}, {"stopSequence": 42, "arrival": {"time": "1694890865"}, "stopId": "42205"}, {"stopSequence": 43, "arrival": {"time": "1694890930"}, "stopId": "42201"}, {"stopSequence": 44, "arrival": {"time": "1694891199"}, "stopId": "42206"}, {"stopSequence": 45, "arrival": {"time": "1694891270"}, "stopId": "42207"}, {"stopSequence": 46, "arrival": {"time": "1694891339"}, "stopId": "42208"}, {"stopSequence": 47, "arrival": {"time": "1694891493"}, "stopId": "42564"}, {"stopSequence": 48, "arrival": {"time": "1694891619"}, "stopId": "42214"}, {"stopSequence": 49, "arrival": {"time": "1694891752"}, "stopId": "42209"}, {"stopSequence": 50, "arrival": {"time": "1694891906"}, "stopId": "42210"}, {"stopSequence": 51, "arrival": {"time": "1694892161"}, "stopId": "42215"}, {"stopSequence": 52, "arrival": {"time": "1694892205"}, "stopId": "42216"}, {"stopSequence": 53, "arrival": {"time": "1694892265"}, "stopId": "42217"}, {"stopSequence": 54, "arrival": {"time": "1694892376"}, "stopId": "42218"}, {"stopSequence": 55, "arrival": {"time": "1694892430"}, "stopId": "42219"}, {"stopSequence": 56, "arrival": {"time": "1694892600"}, "stopId": "42220"}, {"stopSequence": 57, "arrival": {"time": "1694892671"}, "stopId": "42221"}, {"stopSequence": 58, "arrival": {"time": "1694892782"}, "stopId": "42222"}, {"stopSequence": 59, "arrival": {"time": "1694892898"}, "stopId": "42223"}, {"stopSequence": 60, "arrival": {"time": "1694892948"}, "stopId": "42224"}, {"stopSequence": 61, "arrival": {"time": "1694893083"}, "stopId": "42225"}, {"stopSequence": 62, "arrival": {"time": "1694893203"}, "stopId": "42226"}, {"stopSequence": 63, "arrival": {"time": "1694893304"}, "stopId": "42227"}, {"stopSequence": 64, "arrival": {"time": "1694893469"}, "stopId": "42228"}, {"stopSequence": 65, "arrival": {"time": "1694893554"}, "stopId": "42229"}, {"stopSequence": 66, "arrival": {"time": "1694893723"}, "stopId": "42230"}, {"stopSequence": 67, "arrival": {"time": "1694893814"}, "stopId": "42231"}, {"stopSequence": 68, "arrival": {"time": "1694893996"}, "stopId": "42232"}, {"stopSequence": 69, "arrival": {"time": "1694894305"}, "stopId": "42234"}, {"stopSequence": 70, "arrival": {"time": "1694894485"}, "stopId": "42235"}, {"stopSequence": 71, "arrival": {"time": "1694894565"}, "stopId": "42211"}, {"stopSequence": 72, "arrival": {"time": "1694894710"}, "stopId": "49203"}, {"stopSequence": 73, "arrival": {"time": "1694894863"}, "stopId": "49204"}, {"stopSequence": 74, "arrival": {"time": "1694894891"}, "stopId": "42503"}, {"stopSequence": 75, "arrival": {"time": "1694894928"}, "stopId": "49264"}], "vehicle": {"licensePlate": "FDCB32"}, "timestamp": "1694888883"}, "vehicle": {"trip": {"tripId": "16892-701ff27f-2", "startTime": "14:47:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "560", "directionId": 1}, "position": {"latitude": -36.781715, "longitude": -73.07647, "bearing": 155.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888883", "vehicle": {"licensePlate": "FDCB32"}}}, {"id": "d0ae1b85-c93a-4213-bf59-5f0f14b21eeb", "tripUpdate": {"trip": {"tripId": "16890-701ff27f-2", "startTime": "14:17:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "560", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 18, "arrival": {"time": "1694889167"}, "stopId": "40995"}, {"stopSequence": 19, "arrival": {"time": "1694889250"}, "stopId": "40996"}, {"stopSequence": 20, "arrival": {"time": "1694889328"}, "stopId": "40997"}, {"stopSequence": 21, "arrival": {"time": "1694889383"}, "stopId": "39614"}, {"stopSequence": 22, "arrival": {"time": "1694889433"}, "stopId": "39615"}, {"stopSequence": 23, "arrival": {"time": "1694889484"}, "stopId": "39616"}, {"stopSequence": 24, "arrival": {"time": "1694889536"}, "stopId": "39617"}, {"stopSequence": 25, "arrival": {"time": "1694889594"}, "stopId": "39618"}, {"stopSequence": 26, "arrival": {"time": "1694889639"}, "stopId": "39619"}, {"stopSequence": 27, "arrival": {"time": "1694889681"}, "stopId": "39620"}, {"stopSequence": 28, "arrival": {"time": "1694889745"}, "stopId": "39621"}, {"stopSequence": 29, "arrival": {"time": "1694889792"}, "stopId": "38281"}, {"stopSequence": 30, "arrival": {"time": "1694889846"}, "stopId": "37506"}, {"stopSequence": 31, "arrival": {"time": "1694889885"}, "stopId": "45068"}, {"stopSequence": 32, "arrival": {"time": "1694890007"}, "stopId": "37480"}, {"stopSequence": 33, "arrival": {"time": "1694890067"}, "stopId": "37477"}, {"stopSequence": 34, "arrival": {"time": "1694890133"}, "stopId": "40848"}, {"stopSequence": 35, "arrival": {"time": "1694890214"}, "stopId": "2-Apr"}, {"stopSequence": 36, "arrival": {"time": "1694890271"}, "stopId": "39728"}, {"stopSequence": 37, "arrival": {"time": "1694890360"}, "stopId": "39729"}, {"stopSequence": 38, "arrival": {"time": "1694890391"}, "stopId": "39730"}, {"stopSequence": 39, "arrival": {"time": "1694890493"}, "stopId": "42200"}, {"stopSequence": 40, "arrival": {"time": "1694890538"}, "stopId": "42203"}, {"stopSequence": 41, "arrival": {"time": "1694890593"}, "stopId": "42204"}, {"stopSequence": 42, "arrival": {"time": "1694890636"}, "stopId": "42205"}, {"stopSequence": 43, "arrival": {"time": "1694890697"}, "stopId": "42201"}, {"stopSequence": 44, "arrival": {"time": "1694890952"}, "stopId": "42206"}, {"stopSequence": 45, "arrival": {"time": "1694891019"}, "stopId": "42207"}, {"stopSequence": 46, "arrival": {"time": "1694891084"}, "stopId": "42208"}, {"stopSequence": 47, "arrival": {"time": "1694891228"}, "stopId": "42564"}, {"stopSequence": 48, "arrival": {"time": "1694891345"}, "stopId": "42214"}, {"stopSequence": 49, "arrival": {"time": "1694891467"}, "stopId": "42209"}, {"stopSequence": 50, "arrival": {"time": "1694891608"}, "stopId": "42210"}, {"stopSequence": 51, "arrival": {"time": "1694891841"}, "stopId": "42215"}, {"stopSequence": 52, "arrival": {"time": "1694891881"}, "stopId": "42216"}, {"stopSequence": 53, "arrival": {"time": "1694891935"}, "stopId": "42217"}, {"stopSequence": 54, "arrival": {"time": "1694892035"}, "stopId": "42218"}, {"stopSequence": 55, "arrival": {"time": "1694892083"}, "stopId": "42219"}, {"stopSequence": 56, "arrival": {"time": "1694892235"}, "stopId": "42220"}, {"stopSequence": 57, "arrival": {"time": "1694892299"}, "stopId": "42221"}, {"stopSequence": 58, "arrival": {"time": "1694892397"}, "stopId": "42222"}, {"stopSequence": 59, "arrival": {"time": "1694892500"}, "stopId": "42223"}, {"stopSequence": 60, "arrival": {"time": "1694892544"}, "stopId": "42224"}, {"stopSequence": 61, "arrival": {"time": "1694892663"}, "stopId": "42225"}, {"stopSequence": 62, "arrival": {"time": "1694892768"}, "stopId": "42226"}, {"stopSequence": 63, "arrival": {"time": "1694892856"}, "stopId": "42227"}, {"stopSequence": 64, "arrival": {"time": "1694892999"}, "stopId": "42228"}, {"stopSequence": 65, "arrival": {"time": "1694893073"}, "stopId": "42229"}, {"stopSequence": 66, "arrival": {"time": "1694893219"}, "stopId": "42230"}, {"stopSequence": 67, "arrival": {"time": "1694893297"}, "stopId": "42231"}, {"stopSequence": 68, "arrival": {"time": "1694893452"}, "stopId": "42232"}, {"stopSequence": 69, "arrival": {"time": "1694893715"}, "stopId": "42234"}, {"stopSequence": 70, "arrival": {"time": "1694893866"}, "stopId": "42235"}, {"stopSequence": 71, "arrival": {"time": "1694893934"}, "stopId": "42211"}, {"stopSequence": 72, "arrival": {"time": "1694894056"}, "stopId": "49203"}, {"stopSequence": 73, "arrival": {"time": "1694894183"}, "stopId": "49204"}, {"stopSequence": 74, "arrival": {"time": "1694894206"}, "stopId": "42503"}, {"stopSequence": 75, "arrival": {"time": "1694894237"}, "stopId": "49264"}], "vehicle": {"licensePlate": "FSYW10"}, "timestamp": "1694888947"}, "vehicle": {"trip": {"tripId": "16890-701ff27f-2", "startTime": "14:17:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "560", "directionId": 1}, "position": {"latitude": -36.793392, "longitude": -73.069374, "bearing": 145.0, "odometer": 0.0, "speed": 22.7}, "timestamp": "1694888947", "vehicle": {"licensePlate": "FSYW10"}}}, {"id": "e5031ff9-0a55-4df2-8351-1382c61bbf49", "tripUpdate": {"trip": {"tripId": "16816-701ff27f-2", "startTime": "14:35:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "560", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 25, "arrival": {"time": "1694888910"}, "stopId": "42296"}, {"stopSequence": 26, "arrival": {"time": "1694889043"}, "stopId": "42297"}, {"stopSequence": 27, "arrival": {"time": "1694889143"}, "stopId": "42298"}, {"stopSequence": 28, "arrival": {"time": "1694889209"}, "stopId": "42299"}, {"stopSequence": 29, "arrival": {"time": "1694889252"}, "stopId": "49295"}, {"stopSequence": 30, "arrival": {"time": "1694889373"}, "stopId": "49296"}, {"stopSequence": 31, "arrival": {"time": "1694889462"}, "stopId": "49297"}, {"stopSequence": 32, "arrival": {"time": "1694889494"}, "stopId": "49298"}, {"stopSequence": 33, "arrival": {"time": "1694889554"}, "stopId": "49299"}, {"stopSequence": 34, "arrival": {"time": "1694889605"}, "stopId": "49300"}, {"stopSequence": 35, "arrival": {"time": "1694889686"}, "stopId": "49301"}, {"stopSequence": 36, "arrival": {"time": "1694889752"}, "stopId": "49302"}, {"stopSequence": 37, "arrival": {"time": "1694889796"}, "stopId": "49303"}, {"stopSequence": 38, "arrival": {"time": "1694889846"}, "stopId": "49304"}, {"stopSequence": 39, "arrival": {"time": "1694889873"}, "stopId": "49305"}, {"stopSequence": 40, "arrival": {"time": "1694889928"}, "stopId": "49306"}, {"stopSequence": 41, "arrival": {"time": "1694889967"}, "stopId": "49307"}, {"stopSequence": 42, "arrival": {"time": "1694889990"}, "stopId": "49308"}, {"stopSequence": 43, "arrival": {"time": "1694890014"}, "stopId": "49309"}, {"stopSequence": 44, "arrival": {"time": "1694890041"}, "stopId": "42315"}, {"stopSequence": 45, "arrival": {"time": "1694890063"}, "stopId": "42316"}, {"stopSequence": 46, "arrival": {"time": "1694890113"}, "stopId": "42317"}, {"stopSequence": 47, "arrival": {"time": "1694890164"}, "stopId": "42318"}, {"stopSequence": 48, "arrival": {"time": "1694890228"}, "stopId": "8606396"}, {"stopSequence": 49, "arrival": {"time": "1694890305"}, "stopId": "38514"}, {"stopSequence": 50, "arrival": {"time": "1694890343"}, "stopId": "38516"}, {"stopSequence": 51, "arrival": {"time": "1694890402"}, "stopId": "38518"}, {"stopSequence": 52, "arrival": {"time": "1694890499"}, "stopId": "38520"}, {"stopSequence": 53, "arrival": {"time": "1694890544"}, "stopId": "38521"}, {"stopSequence": 54, "arrival": {"time": "1694890594"}, "stopId": "38522"}, {"stopSequence": 55, "arrival": {"time": "1694890645"}, "stopId": "38523"}, {"stopSequence": 56, "arrival": {"time": "1694890698"}, "stopId": "38524"}, {"stopSequence": 57, "arrival": {"time": "1694890749"}, "stopId": "38525"}, {"stopSequence": 58, "arrival": {"time": "1694890803"}, "stopId": "38526"}, {"stopSequence": 59, "arrival": {"time": "1694890854"}, "stopId": "38527"}, {"stopSequence": 60, "arrival": {"time": "1694890947"}, "stopId": "38528"}, {"stopSequence": 61, "arrival": {"time": "1694891072"}, "stopId": "38529"}, {"stopSequence": 62, "arrival": {"time": "1694891309"}, "stopId": "38530"}, {"stopSequence": 63, "arrival": {"time": "1694891324"}, "stopId": "16005209"}, {"stopSequence": 64, "arrival": {"time": "1694891606"}, "stopId": "38531"}, {"stopSequence": 65, "arrival": {"time": "1694891674"}, "stopId": "8921285"}, {"stopSequence": 66, "arrival": {"time": "1694891817"}, "stopId": "38532"}, {"stopSequence": 67, "arrival": {"time": "1694891886"}, "stopId": "38533"}, {"stopSequence": 68, "arrival": {"time": "1694891958"}, "stopId": "38534"}, {"stopSequence": 69, "arrival": {"time": "1694892024"}, "stopId": "38535"}, {"stopSequence": 70, "arrival": {"time": "1694892114"}, "stopId": "38536"}, {"stopSequence": 71, "arrival": {"time": "1694892165"}, "stopId": "4838437"}, {"stopSequence": 72, "arrival": {"time": "1694892243"}, "stopId": "45085"}, {"stopSequence": 73, "arrival": {"time": "1694892359"}, "stopId": "45086"}, {"stopSequence": 74, "arrival": {"time": "1694892542"}, "stopId": "38540"}, {"stopSequence": 75, "arrival": {"time": "1694892659"}, "stopId": "38544"}, {"stopSequence": 76, "arrival": {"time": "1694892927"}, "stopId": "38546"}, {"stopSequence": 77, "arrival": {"time": "1694893143"}, "stopId": "38548"}, {"stopSequence": 78, "arrival": {"time": "1694893267"}, "stopId": "38549"}, {"stopSequence": 79, "arrival": {"time": "1694893374"}, "stopId": "38550"}, {"stopSequence": 80, "arrival": {"time": "1694893567"}, "stopId": "38551"}, {"stopSequence": 81, "arrival": {"time": "1694893746"}, "stopId": "38552"}, {"stopSequence": 82, "arrival": {"time": "1694893928"}, "stopId": "49359"}, {"stopSequence": 83, "arrival": {"time": "1694894036"}, "stopId": "49360"}, {"stopSequence": 84, "arrival": {"time": "1694894310"}, "stopId": "49361"}, {"stopSequence": 85, "arrival": {"time": "1694894378"}, "stopId": "49362"}, {"stopSequence": 86, "arrival": {"time": "1694894499"}, "stopId": "49363"}, {"stopSequence": 87, "arrival": {"time": "1694894628"}, "stopId": "49364"}, {"stopSequence": 88, "arrival": {"time": "1694894747"}, "stopId": "49365"}], "vehicle": {"licensePlate": "FYBD36"}, "timestamp": "1694888899"}, "vehicle": {"trip": {"tripId": "16816-701ff27f-2", "startTime": "14:35:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "560", "directionId": 0}, "position": {"latitude": -36.88016, "longitude": -73.03792, "bearing": 356.0, "odometer": 0.0, "speed": 20.0}, "timestamp": "1694888899", "vehicle": {"licensePlate": "FYBD36"}}}, {"id": "174c719a-c537-4701-870f-34da21e74333", "tripUpdate": {"trip": {"tripId": "16893-701ff27f-2", "startTime": "15:02:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "560", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 2, "arrival": {"time": "1694889215"}, "stopId": "49357"}, {"stopSequence": 3, "arrival": {"time": "1694889256"}, "stopId": "38771"}, {"stopSequence": 4, "arrival": {"time": "1694889300"}, "stopId": "38668"}, {"stopSequence": 5, "arrival": {"time": "1694889671"}, "stopId": "38721"}, {"stopSequence": 6, "arrival": {"time": "1694889726"}, "stopId": "38659"}, {"stopSequence": 7, "arrival": {"time": "1694889808"}, "stopId": "38674"}, {"stopSequence": 8, "arrival": {"time": "1694889870"}, "stopId": "38649"}, {"stopSequence": 9, "arrival": {"time": "1694889947"}, "stopId": "38718"}, {"stopSequence": 10, "arrival": {"time": "1694890004"}, "stopId": "38735"}, {"stopSequence": 11, "arrival": {"time": "1694890057"}, "stopId": "42270"}, {"stopSequence": 12, "arrival": {"time": "1694890109"}, "stopId": "42271"}, {"stopSequence": 13, "arrival": {"time": "1694890172"}, "stopId": "4838438"}, {"stopSequence": 14, "arrival": {"time": "1694890317"}, "stopId": "44896"}, {"stopSequence": 15, "arrival": {"time": "1694890364"}, "stopId": "44897"}, {"stopSequence": 16, "arrival": {"time": "1694890437"}, "stopId": "44898"}, {"stopSequence": 17, "arrival": {"time": "1694890608"}, "stopId": "40993"}, {"stopSequence": 18, "arrival": {"time": "1694891128"}, "stopId": "40995"}, {"stopSequence": 19, "arrival": {"time": "1694891218"}, "stopId": "40996"}, {"stopSequence": 20, "arrival": {"time": "1694891306"}, "stopId": "40997"}, {"stopSequence": 21, "arrival": {"time": "1694891369"}, "stopId": "39614"}, {"stopSequence": 22, "arrival": {"time": "1694891428"}, "stopId": "39615"}, {"stopSequence": 23, "arrival": {"time": "1694891488"}, "stopId": "39616"}, {"stopSequence": 24, "arrival": {"time": "1694891552"}, "stopId": "39617"}, {"stopSequence": 25, "arrival": {"time": "1694891623"}, "stopId": "39618"}, {"stopSequence": 26, "arrival": {"time": "1694891680"}, "stopId": "39619"}, {"stopSequence": 27, "arrival": {"time": "1694891734"}, "stopId": "39620"}, {"stopSequence": 28, "arrival": {"time": "1694891819"}, "stopId": "39621"}, {"stopSequence": 29, "arrival": {"time": "1694891882"}, "stopId": "38281"}, {"stopSequence": 30, "arrival": {"time": "1694891955"}, "stopId": "37506"}, {"stopSequence": 31, "arrival": {"time": "1694892010"}, "stopId": "45068"}, {"stopSequence": 32, "arrival": {"time": "1694892184"}, "stopId": "37480"}, {"stopSequence": 33, "arrival": {"time": "1694892272"}, "stopId": "37477"}, {"stopSequence": 34, "arrival": {"time": "1694892372"}, "stopId": "40848"}, {"stopSequence": 35, "arrival": {"time": "1694892500"}, "stopId": "2-Apr"}, {"stopSequence": 36, "arrival": {"time": "1694892589"}, "stopId": "39728"}, {"stopSequence": 37, "arrival": {"time": "1694892736"}, "stopId": "39729"}, {"stopSequence": 38, "arrival": {"time": "1694892788"}, "stopId": "39730"}, {"stopSequence": 39, "arrival": {"time": "1694892964"}, "stopId": "42200"}, {"stopSequence": 40, "arrival": {"time": "1694893044"}, "stopId": "42203"}, {"stopSequence": 41, "arrival": {"time": "1694893143"}, "stopId": "42204"}, {"stopSequence": 42, "arrival": {"time": "1694893220"}, "stopId": "42205"}, {"stopSequence": 43, "arrival": {"time": "1694893336"}, "stopId": "42201"}, {"stopSequence": 44, "arrival": {"time": "1694893841"}, "stopId": "42206"}, {"stopSequence": 45, "arrival": {"time": "1694893982"}, "stopId": "42207"}, {"stopSequence": 46, "arrival": {"time": "1694894122"}, "stopId": "42208"}, {"stopSequence": 47, "arrival": {"time": "1694894443"}, "stopId": "42564"}, {"stopSequence": 48, "arrival": {"time": "1694894718"}, "stopId": "42214"}, {"stopSequence": 49, "arrival": {"time": "1694895017"}, "stopId": "42209"}, {"stopSequence": 50, "arrival": {"time": "1694895381"}, "stopId": "42210"}, {"stopSequence": 51, "arrival": {"time": "1694896024"}, "stopId": "42215"}, {"stopSequence": 52, "arrival": {"time": "1694896140"}, "stopId": "42216"}, {"stopSequence": 53, "arrival": {"time": "1694896300"}, "stopId": "42217"}, {"stopSequence": 54, "arrival": {"time": "1694896606"}, "stopId": "42218"}, {"stopSequence": 55, "arrival": {"time": "1694896756"}, "stopId": "42219"}, {"stopSequence": 56, "arrival": {"time": "1694897253"}, "stopId": "42220"}, {"stopSequence": 57, "arrival": {"time": "1694897471"}, "stopId": "42221"}, {"stopSequence": 58, "arrival": {"time": "1694897818"}, "stopId": "42222"}, {"stopSequence": 59, "arrival": {"time": "1694898195"}, "stopId": "42223"}, {"stopSequence": 60, "arrival": {"time": "1694898358"}, "stopId": "42224"}, {"stopSequence": 61, "arrival": {"time": "1694898826"}, "stopId": "42225"}, {"stopSequence": 62, "arrival": {"time": "1694899255"}, "stopId": "42226"}, {"stopSequence": 63, "arrival": {"time": "1694899631"}, "stopId": "42227"}, {"stopSequence": 64, "arrival": {"time": "1694900276"}, "stopId": "42228"}, {"stopSequence": 65, "arrival": {"time": "1694900624"}, "stopId": "42229"}, {"stopSequence": 66, "arrival": {"time": "1694901346"}, "stopId": "42230"}, {"stopSequence": 67, "arrival": {"time": "1694901756"}, "stopId": "42231"}, {"stopSequence": 68, "arrival": {"time": "1694902615"}, "stopId": "42232"}, {"stopSequence": 69, "arrival": {"time": "1694904225"}, "stopId": "42234"}, {"stopSequence": 70, "arrival": {"time": "1694905257"}, "stopId": "42235"}, {"stopSequence": 71, "arrival": {"time": "1694905746"}, "stopId": "42211"}, {"stopSequence": 72, "arrival": {"time": "1694906673"}, "stopId": "49203"}, {"stopSequence": 73, "arrival": {"time": "1694907711"}, "stopId": "49204"}, {"stopSequence": 74, "arrival": {"time": "1694907910"}, "stopId": "42503"}, {"stopSequence": 75, "arrival": {"time": "1694908176"}, "stopId": "49264"}], "vehicle": {"licensePlate": "FYDV10"}, "timestamp": "1694888918"}, "vehicle": {"trip": {"tripId": "16893-701ff27f-2", "startTime": "15:02:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "560", "directionId": 1}, "position": {"latitude": -36.712963, "longitude": -73.113945, "bearing": 132.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888918", "vehicle": {"licensePlate": "FYDV10"}}}, {"id": "6e4bf60d-1fe4-4908-87aa-6a9c511d2f3c", "tripUpdate": {"trip": {"tripId": "16819-701ff27f-2", "startTime": "15:20:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "560", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 64, "arrival": {"time": "1694888973"}, "stopId": "38531"}, {"stopSequence": 65, "arrival": {"time": "1694889031"}, "stopId": "8921285"}, {"stopSequence": 66, "arrival": {"time": "1694889149"}, "stopId": "38532"}, {"stopSequence": 67, "arrival": {"time": "1694889203"}, "stopId": "38533"}, {"stopSequence": 68, "arrival": {"time": "1694889259"}, "stopId": "38534"}, {"stopSequence": 69, "arrival": {"time": "1694889308"}, "stopId": "38535"}, {"stopSequence": 70, "arrival": {"time": "1694889374"}, "stopId": "38536"}, {"stopSequence": 71, "arrival": {"time": "1694889410"}, "stopId": "4838437"}, {"stopSequence": 72, "arrival": {"time": "1694889464"}, "stopId": "45085"}, {"stopSequence": 73, "arrival": {"time": "1694889543"}, "stopId": "45086"}, {"stopSequence": 74, "arrival": {"time": "1694889660"}, "stopId": "38540"}, {"stopSequence": 75, "arrival": {"time": "1694889732"}, "stopId": "38544"}, {"stopSequence": 76, "arrival": {"time": "1694889887"}, "stopId": "38546"}, {"stopSequence": 77, "arrival": {"time": "1694890004"}, "stopId": "38548"}, {"stopSequence": 78, "arrival": {"time": "1694890068"}, "stopId": "38549"}, {"stopSequence": 79, "arrival": {"time": "1694890122"}, "stopId": "38550"}, {"stopSequence": 80, "arrival": {"time": "1694890215"}, "stopId": "38551"}, {"stopSequence": 81, "arrival": {"time": "1694890298"}, "stopId": "38552"}, {"stopSequence": 82, "arrival": {"time": "1694890378"}, "stopId": "49359"}, {"stopSequence": 83, "arrival": {"time": "1694890425"}, "stopId": "49360"}, {"stopSequence": 84, "arrival": {"time": "1694890538"}, "stopId": "49361"}, {"stopSequence": 85, "arrival": {"time": "1694890565"}, "stopId": "49362"}, {"stopSequence": 86, "arrival": {"time": "1694890612"}, "stopId": "49363"}, {"stopSequence": 87, "arrival": {"time": "1694890661"}, "stopId": "49364"}, {"stopSequence": 88, "arrival": {"time": "1694890705"}, "stopId": "49365"}], "vehicle": {"licensePlate": "HYCZ31"}, "timestamp": "1694888957"}, "vehicle": {"trip": {"tripId": "16819-701ff27f-2", "startTime": "15:20:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "560", "directionId": 0}, "position": {"latitude": -36.78204, "longitude": -73.076065, "bearing": 334.0, "odometer": 0.0, "speed": 38.3}, "timestamp": "1694888957", "vehicle": {"licensePlate": "HYCZ31"}}}, {"id": "6899bd37-d5e1-4b9b-951d-1850842ca8c0", "tripUpdate": {"trip": {"tripId": "16886-701ff27f-2", "startTime": "13:17:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "560", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 5, "arrival": {"time": "1694889232"}, "stopId": "38721"}, {"stopSequence": 6, "arrival": {"time": "1694889289"}, "stopId": "38659"}, {"stopSequence": 7, "arrival": {"time": "1694889374"}, "stopId": "38674"}, {"stopSequence": 8, "arrival": {"time": "1694889438"}, "stopId": "38649"}, {"stopSequence": 9, "arrival": {"time": "1694889517"}, "stopId": "38718"}, {"stopSequence": 10, "arrival": {"time": "1694889574"}, "stopId": "38735"}, {"stopSequence": 11, "arrival": {"time": "1694889628"}, "stopId": "42270"}, {"stopSequence": 12, "arrival": {"time": "1694889681"}, "stopId": "42271"}, {"stopSequence": 13, "arrival": {"time": "1694889743"}, "stopId": "4838438"}, {"stopSequence": 14, "arrival": {"time": "1694889887"}, "stopId": "44896"}, {"stopSequence": 15, "arrival": {"time": "1694889934"}, "stopId": "44897"}, {"stopSequence": 16, "arrival": {"time": "1694890005"}, "stopId": "44898"}, {"stopSequence": 17, "arrival": {"time": "1694890171"}, "stopId": "40993"}, {"stopSequence": 18, "arrival": {"time": "1694890660"}, "stopId": "40995"}, {"stopSequence": 19, "arrival": {"time": "1694890743"}, "stopId": "40996"}, {"stopSequence": 20, "arrival": {"time": "1694890823"}, "stopId": "40997"}, {"stopSequence": 21, "arrival": {"time": "1694890881"}, "stopId": "39614"}, {"stopSequence": 22, "arrival": {"time": "1694890934"}, "stopId": "39615"}, {"stopSequence": 23, "arrival": {"time": "1694890989"}, "stopId": "39616"}, {"stopSequence": 24, "arrival": {"time": "1694891045"}, "stopId": "39617"}, {"stopSequence": 25, "arrival": {"time": "1694891110"}, "stopId": "39618"}, {"stopSequence": 26, "arrival": {"time": "1694891160"}, "stopId": "39619"}, {"stopSequence": 27, "arrival": {"time": "1694891208"}, "stopId": "39620"}, {"stopSequence": 28, "arrival": {"time": "1694891283"}, "stopId": "39621"}, {"stopSequence": 29, "arrival": {"time": "1694891339"}, "stopId": "38281"}, {"stopSequence": 30, "arrival": {"time": "1694891403"}, "stopId": "37506"}, {"stopSequence": 31, "arrival": {"time": "1694891451"}, "stopId": "45068"}, {"stopSequence": 32, "arrival": {"time": "1694891601"}, "stopId": "37480"}, {"stopSequence": 33, "arrival": {"time": "1694891678"}, "stopId": "37477"}, {"stopSequence": 34, "arrival": {"time": "1694891763"}, "stopId": "40848"}, {"stopSequence": 35, "arrival": {"time": "1694891872"}, "stopId": "2-Apr"}, {"stopSequence": 36, "arrival": {"time": "1694891947"}, "stopId": "39728"}, {"stopSequence": 37, "arrival": {"time": "1694892071"}, "stopId": "39729"}, {"stopSequence": 38, "arrival": {"time": "1694892114"}, "stopId": "39730"}, {"stopSequence": 39, "arrival": {"time": "1694892260"}, "stopId": "42200"}, {"stopSequence": 40, "arrival": {"time": "1694892326"}, "stopId": "42203"}, {"stopSequence": 41, "arrival": {"time": "1694892407"}, "stopId": "42204"}, {"stopSequence": 42, "arrival": {"time": "1694892471"}, "stopId": "42205"}, {"stopSequence": 43, "arrival": {"time": "1694892565"}, "stopId": "42201"}, {"stopSequence": 44, "arrival": {"time": "1694892971"}, "stopId": "42206"}, {"stopSequence": 45, "arrival": {"time": "1694893082"}, "stopId": "42207"}, {"stopSequence": 46, "arrival": {"time": "1694893191"}, "stopId": "42208"}, {"stopSequence": 47, "arrival": {"time": "1694893441"}, "stopId": "42564"}, {"stopSequence": 48, "arrival": {"time": "1694893652"}, "stopId": "42214"}, {"stopSequence": 49, "arrival": {"time": "1694893878"}, "stopId": "42209"}, {"stopSequence": 50, "arrival": {"time": "1694894150"}, "stopId": "42210"}, {"stopSequence": 51, "arrival": {"time": "1694894620"}, "stopId": "42215"}, {"stopSequence": 52, "arrival": {"time": "1694894703"}, "stopId": "42216"}, {"stopSequence": 53, "arrival": {"time": "1694894818"}, "stopId": "42217"}, {"stopSequence": 54, "arrival": {"time": "1694895035"}, "stopId": "42218"}, {"stopSequence": 55, "arrival": {"time": "1694895140"}, "stopId": "42219"}, {"stopSequence": 56, "arrival": {"time": "1694895484"}, "stopId": "42220"}, {"stopSequence": 57, "arrival": {"time": "1694895634"}, "stopId": "42221"}, {"stopSequence": 58, "arrival": {"time": "1694895868"}, "stopId": "42222"}, {"stopSequence": 59, "arrival": {"time": "1694896120"}, "stopId": "42223"}, {"stopSequence": 60, "arrival": {"time": "1694896228"}, "stopId": "42224"}, {"stopSequence": 61, "arrival": {"time": "1694896533"}, "stopId": "42225"}, {"stopSequence": 62, "arrival": {"time": "1694896808"}, "stopId": "42226"}, {"stopSequence": 63, "arrival": {"time": "1694897046"}, "stopId": "42227"}, {"stopSequence": 64, "arrival": {"time": "1694897446"}, "stopId": "42228"}, {"stopSequence": 65, "arrival": {"time": "1694897658"}, "stopId": "42229"}, {"stopSequence": 66, "arrival": {"time": "1694898089"}, "stopId": "42230"}, {"stopSequence": 67, "arrival": {"time": "1694898330"}, "stopId": "42231"}, {"stopSequence": 68, "arrival": {"time": "1694898822"}, "stopId": "42232"}, {"stopSequence": 69, "arrival": {"time": "1694899706"}, "stopId": "42234"}, {"stopSequence": 70, "arrival": {"time": "1694900249"}, "stopId": "42235"}, {"stopSequence": 71, "arrival": {"time": "1694900499"}, "stopId": "42211"}, {"stopSequence": 72, "arrival": {"time": "1694900963"}, "stopId": "49203"}, {"stopSequence": 73, "arrival": {"time": "1694901467"}, "stopId": "49204"}, {"stopSequence": 74, "arrival": {"time": "1694901562"}, "stopId": "42503"}, {"stopSequence": 75, "arrival": {"time": "1694901688"}, "stopId": "49264"}], "vehicle": {"licensePlate": "HYCZ63"}, "timestamp": "1694888922"}, "vehicle": {"trip": {"tripId": "16886-701ff27f-2", "startTime": "13:17:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "560", "directionId": 1}, "position": {"latitude": -36.731503, "longitude": -73.10901, "bearing": 145.0, "odometer": 0.0, "speed": 11.3}, "timestamp": "1694888922", "vehicle": {"licensePlate": "HYCZ63"}}}, {"id": "cd79de73-7aed-4e8a-afa9-6d1ddc81cfda", "tripUpdate": {"trip": {"tripId": "16887-701ff27f-2", "startTime": "13:32:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "560", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 54, "arrival": {"time": "1694888928"}, "stopId": "42218"}, {"stopSequence": 55, "arrival": {"time": "1694888965"}, "stopId": "42219"}, {"stopSequence": 56, "arrival": {"time": "1694889079"}, "stopId": "42220"}, {"stopSequence": 57, "arrival": {"time": "1694889125"}, "stopId": "42221"}, {"stopSequence": 58, "arrival": {"time": "1694889194"}, "stopId": "42222"}, {"stopSequence": 59, "arrival": {"time": "1694889263"}, "stopId": "42223"}, {"stopSequence": 60, "arrival": {"time": "1694889292"}, "stopId": "42224"}, {"stopSequence": 61, "arrival": {"time": "1694889368"}, "stopId": "42225"}, {"stopSequence": 62, "arrival": {"time": "1694889432"}, "stopId": "42226"}, {"stopSequence": 63, "arrival": {"time": "1694889485"}, "stopId": "42227"}, {"stopSequence": 64, "arrival": {"time": "1694889567"}, "stopId": "42228"}, {"stopSequence": 65, "arrival": {"time": "1694889607"}, "stopId": "42229"}, {"stopSequence": 66, "arrival": {"time": "1694889685"}, "stopId": "42230"}, {"stopSequence": 67, "arrival": {"time": "1694889726"}, "stopId": "42231"}, {"stopSequence": 68, "arrival": {"time": "1694889804"}, "stopId": "42232"}, {"stopSequence": 69, "arrival": {"time": "1694889928"}, "stopId": "42234"}, {"stopSequence": 70, "arrival": {"time": "1694889996"}, "stopId": "42235"}, {"stopSequence": 71, "arrival": {"time": "1694890026"}, "stopId": "42211"}, {"stopSequence": 72, "arrival": {"time": "1694890077"}, "stopId": "49203"}, {"stopSequence": 73, "arrival": {"time": "1694890130"}, "stopId": "49204"}, {"stopSequence": 74, "arrival": {"time": "1694890139"}, "stopId": "42503"}, {"stopSequence": 75, "arrival": {"time": "1694890152"}, "stopId": "49264"}], "vehicle": {"licensePlate": "JRZZ98"}, "timestamp": "1694888895"}, "vehicle": {"trip": {"tripId": "16887-701ff27f-2", "startTime": "13:32:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "560", "directionId": 1}, "position": {"latitude": -36.90338, "longitude": -73.03125, "bearing": 181.0, "odometer": 0.0, "speed": 20.0}, "timestamp": "1694888895", "vehicle": {"licensePlate": "JRZZ98"}}}, {"id": "2fc7625b-9256-49d5-840c-b1f4089ad5e7", "tripUpdate": {"trip": {"tripId": "16889-701ff27f-2", "startTime": "14:02:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "560", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 37, "arrival": {"time": "1694888932"}, "stopId": "39729"}, {"stopSequence": 38, "arrival": {"time": "1694888965"}, "stopId": "39730"}, {"stopSequence": 39, "arrival": {"time": "1694889074"}, "stopId": "42200"}, {"stopSequence": 40, "arrival": {"time": "1694889121"}, "stopId": "42203"}, {"stopSequence": 41, "arrival": {"time": "1694889178"}, "stopId": "42204"}, {"stopSequence": 42, "arrival": {"time": "1694889221"}, "stopId": "42205"}, {"stopSequence": 43, "arrival": {"time": "1694889282"}, "stopId": "42201"}, {"stopSequence": 44, "arrival": {"time": "1694889527"}, "stopId": "42206"}, {"stopSequence": 45, "arrival": {"time": "1694889588"}, "stopId": "42207"}, {"stopSequence": 46, "arrival": {"time": "1694889647"}, "stopId": "42208"}, {"stopSequence": 47, "arrival": {"time": "1694889773"}, "stopId": "42564"}, {"stopSequence": 48, "arrival": {"time": "1694889873"}, "stopId": "42214"}, {"stopSequence": 49, "arrival": {"time": "1694889975"}, "stopId": "42209"}, {"stopSequence": 50, "arrival": {"time": "1694890089"}, "stopId": "42210"}, {"stopSequence": 51, "arrival": {"time": "1694890270"}, "stopId": "42215"}, {"stopSequence": 52, "arrival": {"time": "1694890301"}, "stopId": "42216"}, {"stopSequence": 53, "arrival": {"time": "1694890341"}, "stopId": "42217"}, {"stopSequence": 54, "arrival": {"time": "1694890415"}, "stopId": "42218"}, {"stopSequence": 55, "arrival": {"time": "1694890450"}, "stopId": "42219"}, {"stopSequence": 56, "arrival": {"time": "1694890559"}, "stopId": "42220"}, {"stopSequence": 57, "arrival": {"time": "1694890604"}, "stopId": "42221"}, {"stopSequence": 58, "arrival": {"time": "1694890672"}, "stopId": "42222"}, {"stopSequence": 59, "arrival": {"time": "1694890742"}, "stopId": "42223"}, {"stopSequence": 60, "arrival": {"time": "1694890771"}, "stopId": "42224"}, {"stopSequence": 61, "arrival": {"time": "1694890850"}, "stopId": "42225"}, {"stopSequence": 62, "arrival": {"time": "1694890918"}, "stopId": "42226"}, {"stopSequence": 63, "arrival": {"time": "1694890975"}, "stopId": "42227"}, {"stopSequence": 64, "arrival": {"time": "1694891065"}, "stopId": "42228"}, {"stopSequence": 65, "arrival": {"time": "1694891111"}, "stopId": "42229"}, {"stopSequence": 66, "arrival": {"time": "1694891200"}, "stopId": "42230"}, {"stopSequence": 67, "arrival": {"time": "1694891247"}, "stopId": "42231"}, {"stopSequence": 68, "arrival": {"time": "1694891339"}, "stopId": "42232"}, {"stopSequence": 69, "arrival": {"time": "1694891489"}, "stopId": "42234"}, {"stopSequence": 70, "arrival": {"time": "1694891574"}, "stopId": "42235"}, {"stopSequence": 71, "arrival": {"time": "1694891611"}, "stopId": "42211"}, {"stopSequence": 72, "arrival": {"time": "1694891677"}, "stopId": "49203"}, {"stopSequence": 73, "arrival": {"time": "1694891745"}, "stopId": "49204"}, {"stopSequence": 74, "arrival": {"time": "1694891757"}, "stopId": "42503"}, {"stopSequence": 75, "arrival": {"time": "1694891773"}, "stopId": "49264"}], "vehicle": {"licensePlate": "KHGP41"}, "timestamp": "1694888917"}, "vehicle": {"trip": {"tripId": "16889-701ff27f-2", "startTime": "14:02:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "560", "directionId": 1}, "position": {"latitude": -36.83981, "longitude": -73.05493, "bearing": 167.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888917", "vehicle": {"licensePlate": "KHGP41"}}}, {"id": "db4a4ddf-fbe6-4c19-b328-71ad064a2a8f", "tripUpdate": {"trip": {"tripId": "16818-701ff27f-2", "startTime": "15:05:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "560", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 76, "arrival": {"time": "1694889054"}, "stopId": "38546"}, {"stopSequence": 77, "arrival": {"time": "1694889179"}, "stopId": "38548"}, {"stopSequence": 78, "arrival": {"time": "1694889247"}, "stopId": "38549"}, {"stopSequence": 79, "arrival": {"time": "1694889303"}, "stopId": "38550"}, {"stopSequence": 80, "arrival": {"time": "1694889399"}, "stopId": "38551"}, {"stopSequence": 81, "arrival": {"time": "1694889483"}, "stopId": "38552"}, {"stopSequence": 82, "arrival": {"time": "1694889565"}, "stopId": "49359"}, {"stopSequence": 83, "arrival": {"time": "1694889611"}, "stopId": "49360"}, {"stopSequence": 84, "arrival": {"time": "1694889721"}, "stopId": "49361"}, {"stopSequence": 85, "arrival": {"time": "1694889748"}, "stopId": "49362"}, {"stopSequence": 86, "arrival": {"time": "1694889793"}, "stopId": "49363"}, {"stopSequence": 87, "arrival": {"time": "1694889840"}, "stopId": "49364"}, {"stopSequence": 88, "arrival": {"time": "1694889882"}, "stopId": "49365"}], "vehicle": {"licensePlate": "KHSW75"}, "timestamp": "1694888922"}, "vehicle": {"trip": {"tripId": "16818-701ff27f-2", "startTime": "15:05:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "560", "directionId": 0}, "position": {"latitude": -36.748554, "longitude": -73.094055, "bearing": 339.0, "odometer": 0.0, "speed": 26.5}, "timestamp": "1694888922", "vehicle": {"licensePlate": "KHSW75"}}}, {"id": "d9920f88-62c5-4861-97fd-fdbad6dbfc82", "tripUpdate": {"trip": {"tripId": "16891-701ff27f-2", "startTime": "14:32:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "560", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 26, "arrival": {"time": "1694888993"}, "stopId": "39619"}, {"stopSequence": 27, "arrival": {"time": "1694889039"}, "stopId": "39620"}, {"stopSequence": 28, "arrival": {"time": "1694889108"}, "stopId": "39621"}, {"stopSequence": 29, "arrival": {"time": "1694889159"}, "stopId": "38281"}, {"stopSequence": 30, "arrival": {"time": "1694889216"}, "stopId": "37506"}, {"stopSequence": 31, "arrival": {"time": "1694889257"}, "stopId": "45068"}, {"stopSequence": 32, "arrival": {"time": "1694889384"}, "stopId": "37480"}, {"stopSequence": 33, "arrival": {"time": "1694889446"}, "stopId": "37477"}, {"stopSequence": 34, "arrival": {"time": "1694889513"}, "stopId": "40848"}, {"stopSequence": 35, "arrival": {"time": "1694889596"}, "stopId": "2-Apr"}, {"stopSequence": 36, "arrival": {"time": "1694889652"}, "stopId": "39728"}, {"stopSequence": 37, "arrival": {"time": "1694889741"}, "stopId": "39729"}, {"stopSequence": 38, "arrival": {"time": "1694889772"}, "stopId": "39730"}, {"stopSequence": 39, "arrival": {"time": "1694889872"}, "stopId": "42200"}, {"stopSequence": 40, "arrival": {"time": "1694889915"}, "stopId": "42203"}, {"stopSequence": 41, "arrival": {"time": "1694889968"}, "stopId": "42204"}, {"stopSequence": 42, "arrival": {"time": "1694890009"}, "stopId": "42205"}, {"stopSequence": 43, "arrival": {"time": "1694890068"}, "stopId": "42201"}, {"stopSequence": 44, "arrival": {"time": "1694890307"}, "stopId": "42206"}, {"stopSequence": 45, "arrival": {"time": "1694890368"}, "stopId": "42207"}, {"stopSequence": 46, "arrival": {"time": "1694890427"}, "stopId": "42208"}, {"stopSequence": 47, "arrival": {"time": "1694890557"}, "stopId": "42564"}, {"stopSequence": 48, "arrival": {"time": "1694890661"}, "stopId": "42214"}, {"stopSequence": 49, "arrival": {"time": "1694890768"}, "stopId": "42209"}, {"stopSequence": 50, "arrival": {"time": "1694890891"}, "stopId": "42210"}, {"stopSequence": 51, "arrival": {"time": "1694891090"}, "stopId": "42215"}, {"stopSequence": 52, "arrival": {"time": "1694891124"}, "stopId": "42216"}, {"stopSequence": 53, "arrival": {"time": "1694891169"}, "stopId": "42217"}, {"stopSequence": 54, "arrival": {"time": "1694891253"}, "stopId": "42218"}, {"stopSequence": 55, "arrival": {"time": "1694891292"}, "stopId": "42219"}, {"stopSequence": 56, "arrival": {"time": "1694891418"}, "stopId": "42220"}, {"stopSequence": 57, "arrival": {"time": "1694891470"}, "stopId": "42221"}, {"stopSequence": 58, "arrival": {"time": "1694891549"}, "stopId": "42222"}, {"stopSequence": 59, "arrival": {"time": "1694891632"}, "stopId": "42223"}, {"stopSequence": 60, "arrival": {"time": "1694891667"}, "stopId": "42224"}, {"stopSequence": 61, "arrival": {"time": "1694891762"}, "stopId": "42225"}, {"stopSequence": 62, "arrival": {"time": "1694891844"}, "stopId": "42226"}, {"stopSequence": 63, "arrival": {"time": "1694891913"}, "stopId": "42227"}, {"stopSequence": 64, "arrival": {"time": "1694892024"}, "stopId": "42228"}, {"stopSequence": 65, "arrival": {"time": "1694892081"}, "stopId": "42229"}, {"stopSequence": 66, "arrival": {"time": "1694892192"}, "stopId": "42230"}, {"stopSequence": 67, "arrival": {"time": "1694892251"}, "stopId": "42231"}, {"stopSequence": 68, "arrival": {"time": "1694892368"}, "stopId": "42232"}, {"stopSequence": 69, "arrival": {"time": "1694892563"}, "stopId": "42234"}, {"stopSequence": 70, "arrival": {"time": "1694892673"}, "stopId": "42235"}, {"stopSequence": 71, "arrival": {"time": "1694892722"}, "stopId": "42211"}, {"stopSequence": 72, "arrival": {"time": "1694892810"}, "stopId": "49203"}, {"stopSequence": 73, "arrival": {"time": "1694892901"}, "stopId": "49204"}, {"stopSequence": 74, "arrival": {"time": "1694892917"}, "stopId": "42503"}, {"stopSequence": 75, "arrival": {"time": "1694892939"}, "stopId": "49264"}], "vehicle": {"licensePlate": "LCTH12"}, "timestamp": "1694888948"}, "vehicle": {"trip": {"tripId": "16891-701ff27f-2", "startTime": "14:32:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "560", "directionId": 1}, "position": {"latitude": -36.815426, "longitude": -73.04723, "bearing": 153.0, "odometer": 0.0, "speed": 2.7}, "timestamp": "1694888948", "vehicle": {"licensePlate": "LCTH12"}}}, {"id": "1f477b16-663d-4171-baa6-ff00be7a30cc", "tripUpdate": {"trip": {"tripId": "16888-701ff27f-2", "startTime": "13:47:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "560", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 51, "arrival": {"time": "1694889083"}, "stopId": "42215"}, {"stopSequence": 52, "arrival": {"time": "1694889115"}, "stopId": "42216"}, {"stopSequence": 53, "arrival": {"time": "1694889158"}, "stopId": "42217"}, {"stopSequence": 54, "arrival": {"time": "1694889235"}, "stopId": "42218"}, {"stopSequence": 55, "arrival": {"time": "1694889271"}, "stopId": "42219"}, {"stopSequence": 56, "arrival": {"time": "1694889380"}, "stopId": "42220"}, {"stopSequence": 57, "arrival": {"time": "1694889425"}, "stopId": "42221"}, {"stopSequence": 58, "arrival": {"time": "1694889491"}, "stopId": "42222"}, {"stopSequence": 59, "arrival": {"time": "1694889559"}, "stopId": "42223"}, {"stopSequence": 60, "arrival": {"time": "1694889586"}, "stopId": "42224"}, {"stopSequence": 61, "arrival": {"time": "1694889661"}, "stopId": "42225"}, {"stopSequence": 62, "arrival": {"time": "1694889724"}, "stopId": "42226"}, {"stopSequence": 63, "arrival": {"time": "1694889775"}, "stopId": "42227"}, {"stopSequence": 64, "arrival": {"time": "1694889856"}, "stopId": "42228"}, {"stopSequence": 65, "arrival": {"time": "1694889896"}, "stopId": "42229"}, {"stopSequence": 66, "arrival": {"time": "1694889974"}, "stopId": "42230"}, {"stopSequence": 67, "arrival": {"time": "1694890014"}, "stopId": "42231"}, {"stopSequence": 68, "arrival": {"time": "1694890092"}, "stopId": "42232"}, {"stopSequence": 69, "arrival": {"time": "1694890217"}, "stopId": "42234"}, {"stopSequence": 70, "arrival": {"time": "1694890286"}, "stopId": "42235"}, {"stopSequence": 71, "arrival": {"time": "1694890315"}, "stopId": "42211"}, {"stopSequence": 72, "arrival": {"time": "1694890368"}, "stopId": "49203"}, {"stopSequence": 73, "arrival": {"time": "1694890421"}, "stopId": "49204"}, {"stopSequence": 74, "arrival": {"time": "1694890431"}, "stopId": "42503"}, {"stopSequence": 75, "arrival": {"time": "1694890443"}, "stopId": "49264"}], "vehicle": {"licensePlate": "WV6705"}, "timestamp": "1694888936"}, "vehicle": {"trip": {"tripId": "16888-701ff27f-2", "startTime": "13:47:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "560", "directionId": 1}, "position": {"latitude": -36.892338, "longitude": -73.035614, "bearing": 157.0, "odometer": 0.0, "speed": 40.5}, "timestamp": "1694888936", "vehicle": {"licensePlate": "WV6705"}}}, {"id": "40f6c9b1-7fae-40dd-b7d9-6fd7834cb315", "tripUpdate": {"trip": {"tripId": "16820-701ff27f-2", "startTime": "15:35:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "560", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 53, "arrival": {"time": "1694888988"}, "stopId": "38521"}, {"stopSequence": 54, "arrival": {"time": "1694889040"}, "stopId": "38522"}, {"stopSequence": 55, "arrival": {"time": "1694889093"}, "stopId": "38523"}, {"stopSequence": 56, "arrival": {"time": "1694889148"}, "stopId": "38524"}, {"stopSequence": 57, "arrival": {"time": "1694889199"}, "stopId": "38525"}, {"stopSequence": 58, "arrival": {"time": "1694889252"}, "stopId": "38526"}, {"stopSequence": 59, "arrival": {"time": "1694889301"}, "stopId": "38527"}, {"stopSequence": 60, "arrival": {"time": "1694889389"}, "stopId": "38528"}, {"stopSequence": 61, "arrival": {"time": "1694889504"}, "stopId": "38529"}, {"stopSequence": 62, "arrival": {"time": "1694889711"}, "stopId": "38530"}, {"stopSequence": 63, "arrival": {"time": "1694889723"}, "stopId": "16005209"}, {"stopSequence": 64, "arrival": {"time": "1694889953"}, "stopId": "38531"}, {"stopSequence": 65, "arrival": {"time": "1694890006"}, "stopId": "8921285"}, {"stopSequence": 66, "arrival": {"time": "1694890115"}, "stopId": "38532"}, {"stopSequence": 67, "arrival": {"time": "1694890166"}, "stopId": "38533"}, {"stopSequence": 68, "arrival": {"time": "1694890219"}, "stopId": "38534"}, {"stopSequence": 69, "arrival": {"time": "1694890266"}, "stopId": "38535"}, {"stopSequence": 70, "arrival": {"time": "1694890330"}, "stopId": "38536"}, {"stopSequence": 71, "arrival": {"time": "1694890366"}, "stopId": "4838437"}, {"stopSequence": 72, "arrival": {"time": "1694890420"}, "stopId": "45085"}, {"stopSequence": 73, "arrival": {"time": "1694890498"}, "stopId": "45086"}, {"stopSequence": 74, "arrival": {"time": "1694890619"}, "stopId": "38540"}, {"stopSequence": 75, "arrival": {"time": "1694890693"}, "stopId": "38544"}, {"stopSequence": 76, "arrival": {"time": "1694890858"}, "stopId": "38546"}, {"stopSequence": 77, "arrival": {"time": "1694890985"}, "stopId": "38548"}, {"stopSequence": 78, "arrival": {"time": "1694891057"}, "stopId": "38549"}, {"stopSequence": 79, "arrival": {"time": "1694891117"}, "stopId": "38550"}, {"stopSequence": 80, "arrival": {"time": "1694891223"}, "stopId": "38551"}, {"stopSequence": 81, "arrival": {"time": "1694891319"}, "stopId": "38552"}, {"stopSequence": 82, "arrival": {"time": "1694891414"}, "stopId": "49359"}, {"stopSequence": 83, "arrival": {"time": "1694891469"}, "stopId": "49360"}, {"stopSequence": 84, "arrival": {"time": "1694891605"}, "stopId": "49361"}, {"stopSequence": 85, "arrival": {"time": "1694891638"}, "stopId": "49362"}, {"stopSequence": 86, "arrival": {"time": "1694891696"}, "stopId": "49363"}, {"stopSequence": 87, "arrival": {"time": "1694891757"}, "stopId": "49364"}, {"stopSequence": 88, "arrival": {"time": "1694891812"}, "stopId": "49365"}], "vehicle": {"licensePlate": "ZT1142"}, "timestamp": "1694888946"}, "vehicle": {"trip": {"tripId": "16820-701ff27f-2", "startTime": "15:35:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "560", "directionId": 0}, "position": {"latitude": -36.818565, "longitude": -73.0452, "bearing": 334.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888946", "vehicle": {"licensePlate": "ZT1142"}}}, {"id": "bc1656f3-417d-4b2c-a8c9-ad061d417314", "tripUpdate": {"trip": {"tripId": "16821-701ff27f-2", "startTime": "15:50:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "560", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 9, "arrival": {"time": "1694888948"}, "stopId": "42280"}, {"stopSequence": 10, "arrival": {"time": "1694888993"}, "stopId": "42281"}, {"stopSequence": 11, "arrival": {"time": "1694889072"}, "stopId": "42282"}, {"stopSequence": 12, "arrival": {"time": "1694889130"}, "stopId": "42283"}, {"stopSequence": 13, "arrival": {"time": "1694889197"}, "stopId": "49279"}, {"stopSequence": 14, "arrival": {"time": "1694889277"}, "stopId": "42285"}, {"stopSequence": 15, "arrival": {"time": "1694889365"}, "stopId": "42286"}, {"stopSequence": 16, "arrival": {"time": "1694889382"}, "stopId": "42287"}, {"stopSequence": 17, "arrival": {"time": "1694889438"}, "stopId": "42288"}, {"stopSequence": 18, "arrival": {"time": "1694889473"}, "stopId": "42289"}, {"stopSequence": 19, "arrival": {"time": "1694889546"}, "stopId": "42290"}, {"stopSequence": 20, "arrival": {"time": "1694889595"}, "stopId": "42291"}, {"stopSequence": 21, "arrival": {"time": "1694889688"}, "stopId": "42292"}, {"stopSequence": 22, "arrival": {"time": "1694889756"}, "stopId": "42293"}, {"stopSequence": 23, "arrival": {"time": "1694889928"}, "stopId": "42294"}, {"stopSequence": 24, "arrival": {"time": "1694890054"}, "stopId": "42295"}, {"stopSequence": 25, "arrival": {"time": "1694890165"}, "stopId": "42296"}, {"stopSequence": 26, "arrival": {"time": "1694890288"}, "stopId": "42297"}, {"stopSequence": 27, "arrival": {"time": "1694890383"}, "stopId": "42298"}, {"stopSequence": 28, "arrival": {"time": "1694890447"}, "stopId": "42299"}, {"stopSequence": 29, "arrival": {"time": "1694890489"}, "stopId": "49295"}, {"stopSequence": 30, "arrival": {"time": "1694890610"}, "stopId": "49296"}, {"stopSequence": 31, "arrival": {"time": "1694890702"}, "stopId": "49297"}, {"stopSequence": 32, "arrival": {"time": "1694890736"}, "stopId": "49298"}, {"stopSequence": 33, "arrival": {"time": "1694890798"}, "stopId": "49299"}, {"stopSequence": 34, "arrival": {"time": "1694890853"}, "stopId": "49300"}, {"stopSequence": 35, "arrival": {"time": "1694890941"}, "stopId": "49301"}, {"stopSequence": 36, "arrival": {"time": "1694891015"}, "stopId": "49302"}, {"stopSequence": 37, "arrival": {"time": "1694891064"}, "stopId": "49303"}, {"stopSequence": 38, "arrival": {"time": "1694891120"}, "stopId": "49304"}, {"stopSequence": 39, "arrival": {"time": "1694891152"}, "stopId": "49305"}, {"stopSequence": 40, "arrival": {"time": "1694891215"}, "stopId": "49306"}, {"stopSequence": 41, "arrival": {"time": "1694891260"}, "stopId": "49307"}, {"stopSequence": 42, "arrival": {"time": "1694891288"}, "stopId": "49308"}, {"stopSequence": 43, "arrival": {"time": "1694891316"}, "stopId": "49309"}, {"stopSequence": 44, "arrival": {"time": "1694891348"}, "stopId": "42315"}, {"stopSequence": 45, "arrival": {"time": "1694891375"}, "stopId": "42316"}, {"stopSequence": 46, "arrival": {"time": "1694891435"}, "stopId": "42317"}, {"stopSequence": 47, "arrival": {"time": "1694891497"}, "stopId": "42318"}, {"stopSequence": 48, "arrival": {"time": "1694891577"}, "stopId": "8606396"}, {"stopSequence": 49, "arrival": {"time": "1694891674"}, "stopId": "38514"}, {"stopSequence": 50, "arrival": {"time": "1694891723"}, "stopId": "38516"}, {"stopSequence": 51, "arrival": {"time": "1694891799"}, "stopId": "38518"}, {"stopSequence": 52, "arrival": {"time": "1694891926"}, "stopId": "38520"}, {"stopSequence": 53, "arrival": {"time": "1694891985"}, "stopId": "38521"}, {"stopSequence": 54, "arrival": {"time": "1694892053"}, "stopId": "38522"}, {"stopSequence": 55, "arrival": {"time": "1694892122"}, "stopId": "38523"}, {"stopSequence": 56, "arrival": {"time": "1694892197"}, "stopId": "38524"}, {"stopSequence": 57, "arrival": {"time": "1694892267"}, "stopId": "38525"}, {"stopSequence": 58, "arrival": {"time": "1694892344"}, "stopId": "38526"}, {"stopSequence": 59, "arrival": {"time": "1694892417"}, "stopId": "38527"}, {"stopSequence": 60, "arrival": {"time": "1694892551"}, "stopId": "38528"}, {"stopSequence": 61, "arrival": {"time": "1694892736"}, "stopId": "38529"}, {"stopSequence": 62, "arrival": {"time": "1694893102"}, "stopId": "38530"}, {"stopSequence": 63, "arrival": {"time": "1694893125"}, "stopId": "16005209"}, {"stopSequence": 64, "arrival": {"time": "1694893587"}, "stopId": "38531"}, {"stopSequence": 65, "arrival": {"time": "1694893702"}, "stopId": "8921285"}, {"stopSequence": 66, "arrival": {"time": "1694893949"}, "stopId": "38532"}, {"stopSequence": 67, "arrival": {"time": "1694894071"}, "stopId": "38533"}, {"stopSequence": 68, "arrival": {"time": "1694894201"}, "stopId": "38534"}, {"stopSequence": 69, "arrival": {"time": "1694894320"}, "stopId": "38535"}, {"stopSequence": 70, "arrival": {"time": "1694894487"}, "stopId": "38536"}, {"stopSequence": 71, "arrival": {"time": "1694894582"}, "stopId": "4838437"}, {"stopSequence": 72, "arrival": {"time": "1694894730"}, "stopId": "45085"}, {"stopSequence": 73, "arrival": {"time": "1694894956"}, "stopId": "45086"}, {"stopSequence": 74, "arrival": {"time": "1694895321"}, "stopId": "38540"}, {"stopSequence": 75, "arrival": {"time": "1694895560"}, "stopId": "38544"}, {"stopSequence": 76, "arrival": {"time": "1694896134"}, "stopId": "38546"}, {"stopSequence": 77, "arrival": {"time": "1694896619"}, "stopId": "38548"}, {"stopSequence": 78, "arrival": {"time": "1694896908"}, "stopId": "38549"}, {"stopSequence": 79, "arrival": {"time": "1694897164"}, "stopId": "38550"}, {"stopSequence": 80, "arrival": {"time": "1694897638"}, "stopId": "38551"}, {"stopSequence": 81, "arrival": {"time": "1694898097"}, "stopId": "38552"}, {"stopSequence": 82, "arrival": {"time": "1694898581"}, "stopId": "49359"}, {"stopSequence": 83, "arrival": {"time": "1694898878"}, "stopId": "49360"}, {"stopSequence": 84, "arrival": {"time": "1694899663"}, "stopId": "49361"}, {"stopSequence": 85, "arrival": {"time": "1694899867"}, "stopId": "49362"}, {"stopSequence": 86, "arrival": {"time": "1694900235"}, "stopId": "49363"}, {"stopSequence": 87, "arrival": {"time": "1694900639"}, "stopId": "49364"}, {"stopSequence": 88, "arrival": {"time": "1694901021"}, "stopId": "49365"}], "vehicle": {"licensePlate": "ZV8810"}, "timestamp": "1694888905"}, "vehicle": {"trip": {"tripId": "16821-701ff27f-2", "startTime": "15:50:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "560", "directionId": 0}, "position": {"latitude": -36.935074, "longitude": -73.021, "bearing": 340.0, "odometer": 0.0, "speed": 13.5}, "timestamp": "1694888905", "vehicle": {"licensePlate": "ZV8810"}}}, {"id": "f37a3d9e-2461-4cea-9191-cbf3422bb261", "tripUpdate": {"trip": {"tripId": "17072-701ff27f-2", "startTime": "14:38:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "561", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 73, "arrival": {"time": "1694889034"}, "stopId": "38527"}, {"stopSequence": 74, "arrival": {"time": "1694889127"}, "stopId": "38528"}, {"stopSequence": 75, "arrival": {"time": "1694889244"}, "stopId": "38529"}, {"stopSequence": 76, "arrival": {"time": "1694889461"}, "stopId": "38530"}, {"stopSequence": 77, "arrival": {"time": "1694889474"}, "stopId": "16005209"}, {"stopSequence": 78, "arrival": {"time": "1694889707"}, "stopId": "38531"}, {"stopSequence": 79, "arrival": {"time": "1694889761"}, "stopId": "8921285"}, {"stopSequence": 80, "arrival": {"time": "1694889870"}, "stopId": "38532"}, {"stopSequence": 81, "arrival": {"time": "1694889921"}, "stopId": "38533"}, {"stopSequence": 82, "arrival": {"time": "1694889973"}, "stopId": "38534"}, {"stopSequence": 83, "arrival": {"time": "1694890021"}, "stopId": "38535"}, {"stopSequence": 84, "arrival": {"time": "1694890079"}, "stopId": "38536"}, {"stopSequence": 85, "arrival": {"time": "1694890119"}, "stopId": "4838437"}, {"stopSequence": 86, "arrival": {"time": "1694890170"}, "stopId": "45085"}, {"stopSequence": 87, "arrival": {"time": "1694890250"}, "stopId": "45086"}, {"stopSequence": 88, "arrival": {"time": "1694890300"}, "stopId": "38539"}, {"stopSequence": 89, "arrival": {"time": "1694890364"}, "stopId": "38540"}, {"stopSequence": 90, "arrival": {"time": "1694890441"}, "stopId": "38544"}, {"stopSequence": 91, "arrival": {"time": "1694890501"}, "stopId": "38545"}, {"stopSequence": 92, "arrival": {"time": "1694890602"}, "stopId": "38546"}, {"stopSequence": 93, "arrival": {"time": "1694890723"}, "stopId": "38548"}, {"stopSequence": 94, "arrival": {"time": "1694890790"}, "stopId": "38549"}, {"stopSequence": 95, "arrival": {"time": "1694890851"}, "stopId": "38550"}, {"stopSequence": 96, "arrival": {"time": "1694890939"}, "stopId": "38551"}, {"stopSequence": 97, "arrival": {"time": "1694891038"}, "stopId": "38552"}, {"stopSequence": 98, "arrival": {"time": "1694891127"}, "stopId": "49359"}, {"stopSequence": 99, "arrival": {"time": "1694891181"}, "stopId": "49360"}, {"stopSequence": 100, "arrival": {"time": "1694891304"}, "stopId": "49361"}, {"stopSequence": 101, "arrival": {"time": "1694891335"}, "stopId": "49362"}, {"stopSequence": 102, "arrival": {"time": "1694891388"}, "stopId": "49363"}, {"stopSequence": 103, "arrival": {"time": "1694891444"}, "stopId": "49364"}, {"stopSequence": 104, "arrival": {"time": "1694891496"}, "stopId": "49365"}, {"stopSequence": 105, "arrival": {"time": "1694891570"}, "stopId": "38560"}, {"stopSequence": 106, "arrival": {"time": "1694891610"}, "stopId": "42857"}, {"stopSequence": 107, "arrival": {"time": "1694891648"}, "stopId": "38562"}, {"stopSequence": 108, "arrival": {"time": "1694891704"}, "stopId": "38563"}, {"stopSequence": 109, "arrival": {"time": "1694891751"}, "stopId": "38564"}, {"stopSequence": 110, "arrival": {"time": "1694891869"}, "stopId": "38565"}, {"stopSequence": 111, "arrival": {"time": "1694891931"}, "stopId": "40932"}, {"stopSequence": 112, "arrival": {"time": "1694892029"}, "stopId": "38567"}, {"stopSequence": 113, "arrival": {"time": "1694892091"}, "stopId": "38568"}, {"stopSequence": 114, "arrival": {"time": "1694892188"}, "stopId": "38570"}, {"stopSequence": 115, "arrival": {"time": "1694892266"}, "stopId": "38571"}, {"stopSequence": 116, "arrival": {"time": "1694892341"}, "stopId": "38572"}, {"stopSequence": 117, "arrival": {"time": "1694892393"}, "stopId": "38573"}], "vehicle": {"licensePlate": "DRTH95"}, "timestamp": "1694889002"}, "vehicle": {"trip": {"tripId": "17072-701ff27f-2", "startTime": "14:38:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "561", "directionId": 0}, "position": {"latitude": -36.805946, "longitude": -73.05335, "bearing": 334.0, "odometer": 0.0, "speed": 15.833333}, "timestamp": "1694889002", "vehicle": {"licensePlate": "DRTH95"}}}, {"id": "d94c2c3f-864c-496f-a342-2333e4fb4835", "tripUpdate": {"trip": {"tripId": "17073-701ff27f-2", "startTime": "14:50:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "561", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 40, "arrival": {"time": "1694889119"}, "stopId": "42297"}, {"stopSequence": 41, "arrival": {"time": "1694889220"}, "stopId": "42298"}, {"stopSequence": 42, "arrival": {"time": "1694889286"}, "stopId": "42299"}, {"stopSequence": 43, "arrival": {"time": "1694889329"}, "stopId": "49295"}, {"stopSequence": 44, "arrival": {"time": "1694889450"}, "stopId": "49296"}, {"stopSequence": 45, "arrival": {"time": "1694889534"}, "stopId": "49297"}, {"stopSequence": 46, "arrival": {"time": "1694889572"}, "stopId": "49298"}, {"stopSequence": 47, "arrival": {"time": "1694889631"}, "stopId": "49299"}, {"stopSequence": 48, "arrival": {"time": "1694889682"}, "stopId": "49300"}, {"stopSequence": 49, "arrival": {"time": "1694889764"}, "stopId": "49301"}, {"stopSequence": 50, "arrival": {"time": "1694889830"}, "stopId": "49302"}, {"stopSequence": 51, "arrival": {"time": "1694889874"}, "stopId": "49303"}, {"stopSequence": 52, "arrival": {"time": "1694889918"}, "stopId": "49304"}, {"stopSequence": 53, "arrival": {"time": "1694889952"}, "stopId": "49305"}, {"stopSequence": 54, "arrival": {"time": "1694890006"}, "stopId": "49306"}, {"stopSequence": 55, "arrival": {"time": "1694890045"}, "stopId": "49307"}, {"stopSequence": 56, "arrival": {"time": "1694890068"}, "stopId": "49308"}, {"stopSequence": 57, "arrival": {"time": "1694890092"}, "stopId": "49309"}, {"stopSequence": 58, "arrival": {"time": "1694890119"}, "stopId": "42315"}, {"stopSequence": 59, "arrival": {"time": "1694890141"}, "stopId": "42316"}, {"stopSequence": 60, "arrival": {"time": "1694890191"}, "stopId": "42317"}, {"stopSequence": 61, "arrival": {"time": "1694890242"}, "stopId": "42318"}, {"stopSequence": 62, "arrival": {"time": "1694890312"}, "stopId": "8606396"}, {"stopSequence": 63, "arrival": {"time": "1694890383"}, "stopId": "38514"}, {"stopSequence": 64, "arrival": {"time": "1694890421"}, "stopId": "38516"}, {"stopSequence": 65, "arrival": {"time": "1694890480"}, "stopId": "38518"}, {"stopSequence": 66, "arrival": {"time": "1694890581"}, "stopId": "38520"}, {"stopSequence": 67, "arrival": {"time": "1694890621"}, "stopId": "38521"}, {"stopSequence": 68, "arrival": {"time": "1694890671"}, "stopId": "38522"}, {"stopSequence": 69, "arrival": {"time": "1694890722"}, "stopId": "38523"}, {"stopSequence": 70, "arrival": {"time": "1694890776"}, "stopId": "38524"}, {"stopSequence": 71, "arrival": {"time": "1694890826"}, "stopId": "38525"}, {"stopSequence": 72, "arrival": {"time": "1694890880"}, "stopId": "38526"}, {"stopSequence": 73, "arrival": {"time": "1694890931"}, "stopId": "38527"}, {"stopSequence": 74, "arrival": {"time": "1694891023"}, "stopId": "38528"}, {"stopSequence": 75, "arrival": {"time": "1694891145"}, "stopId": "38529"}, {"stopSequence": 76, "arrival": {"time": "1694891384"}, "stopId": "38530"}, {"stopSequence": 77, "arrival": {"time": "1694891398"}, "stopId": "16005209"}, {"stopSequence": 78, "arrival": {"time": "1694891679"}, "stopId": "38531"}, {"stopSequence": 79, "arrival": {"time": "1694891747"}, "stopId": "8921285"}, {"stopSequence": 80, "arrival": {"time": "1694891888"}, "stopId": "38532"}, {"stopSequence": 81, "arrival": {"time": "1694891957"}, "stopId": "38533"}, {"stopSequence": 82, "arrival": {"time": "1694892029"}, "stopId": "38534"}, {"stopSequence": 83, "arrival": {"time": "1694892095"}, "stopId": "38535"}, {"stopSequence": 84, "arrival": {"time": "1694892177"}, "stopId": "38536"}, {"stopSequence": 85, "arrival": {"time": "1694892234"}, "stopId": "4838437"}, {"stopSequence": 86, "arrival": {"time": "1694892309"}, "stopId": "45085"}, {"stopSequence": 87, "arrival": {"time": "1694892430"}, "stopId": "45086"}, {"stopSequence": 88, "arrival": {"time": "1694892506"}, "stopId": "38539"}, {"stopSequence": 89, "arrival": {"time": "1694892607"}, "stopId": "38540"}, {"stopSequence": 90, "arrival": {"time": "1694892730"}, "stopId": "38544"}, {"stopSequence": 91, "arrival": {"time": "1694892828"}, "stopId": "38545"}, {"stopSequence": 92, "arrival": {"time": "1694892999"}, "stopId": "38546"}, {"stopSequence": 93, "arrival": {"time": "1694893213"}, "stopId": "38548"}, {"stopSequence": 94, "arrival": {"time": "1694893334"}, "stopId": "38549"}, {"stopSequence": 95, "arrival": {"time": "1694893449"}, "stopId": "38550"}, {"stopSequence": 96, "arrival": {"time": "1694893616"}, "stopId": "38551"}, {"stopSequence": 97, "arrival": {"time": "1694893812"}, "stopId": "38552"}, {"stopSequence": 98, "arrival": {"time": "1694893992"}, "stopId": "49359"}, {"stopSequence": 99, "arrival": {"time": "1694894105"}, "stopId": "49360"}, {"stopSequence": 100, "arrival": {"time": "1694894371"}, "stopId": "49361"}, {"stopSequence": 101, "arrival": {"time": "1694894439"}, "stopId": "49362"}, {"stopSequence": 102, "arrival": {"time": "1694894558"}, "stopId": "49363"}, {"stopSequence": 103, "arrival": {"time": "1694894686"}, "stopId": "49364"}, {"stopSequence": 104, "arrival": {"time": "1694894808"}, "stopId": "49365"}, {"stopSequence": 105, "arrival": {"time": "1694894983"}, "stopId": "38560"}, {"stopSequence": 106, "arrival": {"time": "1694895081"}, "stopId": "42857"}, {"stopSequence": 107, "arrival": {"time": "1694895174"}, "stopId": "38562"}, {"stopSequence": 108, "arrival": {"time": "1694895315"}, "stopId": "38563"}, {"stopSequence": 109, "arrival": {"time": "1694895436"}, "stopId": "38564"}, {"stopSequence": 110, "arrival": {"time": "1694895746"}, "stopId": "38565"}, {"stopSequence": 111, "arrival": {"time": "1694895915"}, "stopId": "40932"}, {"stopSequence": 112, "arrival": {"time": "1694896187"}, "stopId": "38567"}, {"stopSequence": 113, "arrival": {"time": "1694896366"}, "stopId": "38568"}, {"stopSequence": 114, "arrival": {"time": "1694896652"}, "stopId": "38570"}, {"stopSequence": 115, "arrival": {"time": "1694896891"}, "stopId": "38571"}, {"stopSequence": 116, "arrival": {"time": "1694897127"}, "stopId": "38572"}, {"stopSequence": 117, "arrival": {"time": "1694897295"}, "stopId": "38573"}], "vehicle": {"licensePlate": "FDBX25"}, "timestamp": "1694888998"}, "vehicle": {"trip": {"tripId": "17073-701ff27f-2", "startTime": "14:50:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "561", "directionId": 0}, "position": {"latitude": -36.879173, "longitude": -73.03799, "bearing": 354.0, "odometer": 0.0, "speed": 13.055555}, "timestamp": "1694888998", "vehicle": {"licensePlate": "FDBX25"}}}, {"id": "56e97065-073e-467f-8b59-d21050a2905f", "tripUpdate": {"trip": {"tripId": "17074-701ff27f-2", "startTime": "15:02:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "561", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 28, "arrival": {"time": "1694889006"}, "stopId": "42285"}, {"stopSequence": 29, "arrival": {"time": "1694889100"}, "stopId": "42286"}, {"stopSequence": 30, "arrival": {"time": "1694889117"}, "stopId": "42287"}, {"stopSequence": 31, "arrival": {"time": "1694889176"}, "stopId": "42288"}, {"stopSequence": 32, "arrival": {"time": "1694889213"}, "stopId": "42289"}, {"stopSequence": 33, "arrival": {"time": "1694889297"}, "stopId": "42290"}, {"stopSequence": 34, "arrival": {"time": "1694889349"}, "stopId": "42291"}, {"stopSequence": 35, "arrival": {"time": "1694889436"}, "stopId": "42292"}, {"stopSequence": 36, "arrival": {"time": "1694889508"}, "stopId": "42293"}, {"stopSequence": 37, "arrival": {"time": "1694889676"}, "stopId": "42294"}, {"stopSequence": 38, "arrival": {"time": "1694889809"}, "stopId": "42295"}, {"stopSequence": 39, "arrival": {"time": "1694889920"}, "stopId": "42296"}, {"stopSequence": 40, "arrival": {"time": "1694890042"}, "stopId": "42297"}, {"stopSequence": 41, "arrival": {"time": "1694890136"}, "stopId": "42298"}, {"stopSequence": 42, "arrival": {"time": "1694890198"}, "stopId": "42299"}, {"stopSequence": 43, "arrival": {"time": "1694890239"}, "stopId": "49295"}, {"stopSequence": 44, "arrival": {"time": "1694890357"}, "stopId": "49296"}, {"stopSequence": 45, "arrival": {"time": "1694890440"}, "stopId": "49297"}, {"stopSequence": 46, "arrival": {"time": "1694890478"}, "stopId": "49298"}, {"stopSequence": 47, "arrival": {"time": "1694890537"}, "stopId": "49299"}, {"stopSequence": 48, "arrival": {"time": "1694890589"}, "stopId": "49300"}, {"stopSequence": 49, "arrival": {"time": "1694890674"}, "stopId": "49301"}, {"stopSequence": 50, "arrival": {"time": "1694890743"}, "stopId": "49302"}, {"stopSequence": 51, "arrival": {"time": "1694890789"}, "stopId": "49303"}, {"stopSequence": 52, "arrival": {"time": "1694890836"}, "stopId": "49304"}, {"stopSequence": 53, "arrival": {"time": "1694890873"}, "stopId": "49305"}, {"stopSequence": 54, "arrival": {"time": "1694890931"}, "stopId": "49306"}, {"stopSequence": 55, "arrival": {"time": "1694890973"}, "stopId": "49307"}, {"stopSequence": 56, "arrival": {"time": "1694890999"}, "stopId": "49308"}, {"stopSequence": 57, "arrival": {"time": "1694891025"}, "stopId": "49309"}, {"stopSequence": 58, "arrival": {"time": "1694891055"}, "stopId": "42315"}, {"stopSequence": 59, "arrival": {"time": "1694891080"}, "stopId": "42316"}, {"stopSequence": 60, "arrival": {"time": "1694891135"}, "stopId": "42317"}, {"stopSequence": 61, "arrival": {"time": "1694891193"}, "stopId": "42318"}, {"stopSequence": 62, "arrival": {"time": "1694891273"}, "stopId": "8606396"}, {"stopSequence": 63, "arrival": {"time": "1694891355"}, "stopId": "38514"}, {"stopSequence": 64, "arrival": {"time": "1694891399"}, "stopId": "38516"}, {"stopSequence": 65, "arrival": {"time": "1694891468"}, "stopId": "38518"}, {"stopSequence": 66, "arrival": {"time": "1694891589"}, "stopId": "38520"}, {"stopSequence": 67, "arrival": {"time": "1694891637"}, "stopId": "38521"}, {"stopSequence": 68, "arrival": {"time": "1694891698"}, "stopId": "38522"}, {"stopSequence": 69, "arrival": {"time": "1694891760"}, "stopId": "38523"}, {"stopSequence": 70, "arrival": {"time": "1694891827"}, "stopId": "38524"}, {"stopSequence": 71, "arrival": {"time": "1694891890"}, "stopId": "38525"}, {"stopSequence": 72, "arrival": {"time": "1694891958"}, "stopId": "38526"}, {"stopSequence": 73, "arrival": {"time": "1694892022"}, "stopId": "38527"}, {"stopSequence": 74, "arrival": {"time": "1694892140"}, "stopId": "38528"}, {"stopSequence": 75, "arrival": {"time": "1694892299"}, "stopId": "38529"}, {"stopSequence": 76, "arrival": {"time": "1694892619"}, "stopId": "38530"}, {"stopSequence": 77, "arrival": {"time": "1694892640"}, "stopId": "16005209"}, {"stopSequence": 78, "arrival": {"time": "1694893032"}, "stopId": "38531"}, {"stopSequence": 79, "arrival": {"time": "1694893129"}, "stopId": "8921285"}, {"stopSequence": 80, "arrival": {"time": "1694893336"}, "stopId": "38532"}, {"stopSequence": 81, "arrival": {"time": "1694893437"}, "stopId": "38533"}, {"stopSequence": 82, "arrival": {"time": "1694893545"}, "stopId": "38534"}, {"stopSequence": 83, "arrival": {"time": "1694893644"}, "stopId": "38535"}, {"stopSequence": 84, "arrival": {"time": "1694893770"}, "stopId": "38536"}, {"stopSequence": 85, "arrival": {"time": "1694893858"}, "stopId": "4838437"}, {"stopSequence": 86, "arrival": {"time": "1694893975"}, "stopId": "45085"}, {"stopSequence": 87, "arrival": {"time": "1694894165"}, "stopId": "45086"}, {"stopSequence": 88, "arrival": {"time": "1694894287"}, "stopId": "38539"}, {"stopSequence": 89, "arrival": {"time": "1694894450"}, "stopId": "38540"}, {"stopSequence": 90, "arrival": {"time": "1694894653"}, "stopId": "38544"}, {"stopSequence": 91, "arrival": {"time": "1694894817"}, "stopId": "38545"}, {"stopSequence": 92, "arrival": {"time": "1694895108"}, "stopId": "38546"}, {"stopSequence": 93, "arrival": {"time": "1694895483"}, "stopId": "38548"}, {"stopSequence": 94, "arrival": {"time": "1694895700"}, "stopId": "38549"}, {"stopSequence": 95, "arrival": {"time": "1694895908"}, "stopId": "38550"}, {"stopSequence": 96, "arrival": {"time": "1694896219"}, "stopId": "38551"}, {"stopSequence": 97, "arrival": {"time": "1694896592"}, "stopId": "38552"}, {"stopSequence": 98, "arrival": {"time": "1694896946"}, "stopId": "49359"}, {"stopSequence": 99, "arrival": {"time": "1694897171"}, "stopId": "49360"}, {"stopSequence": 100, "arrival": {"time": "1694897716"}, "stopId": "49361"}, {"stopSequence": 101, "arrival": {"time": "1694897859"}, "stopId": "49362"}, {"stopSequence": 102, "arrival": {"time": "1694898115"}, "stopId": "49363"}, {"stopSequence": 103, "arrival": {"time": "1694898391"}, "stopId": "49364"}, {"stopSequence": 104, "arrival": {"time": "1694898661"}, "stopId": "49365"}, {"stopSequence": 105, "arrival": {"time": "1694899058"}, "stopId": "38560"}, {"stopSequence": 106, "arrival": {"time": "1694899284"}, "stopId": "42857"}, {"stopSequence": 107, "arrival": {"time": "1694899502"}, "stopId": "38562"}, {"stopSequence": 108, "arrival": {"time": "1694899838"}, "stopId": "38563"}, {"stopSequence": 109, "arrival": {"time": "1694900131"}, "stopId": "38564"}, {"stopSequence": 110, "arrival": {"time": "1694900911"}, "stopId": "38565"}, {"stopSequence": 111, "arrival": {"time": "1694901351"}, "stopId": "40932"}, {"stopSequence": 112, "arrival": {"time": "1694902086"}, "stopId": "38567"}, {"stopSequence": 113, "arrival": {"time": "1694902590"}, "stopId": "38568"}, {"stopSequence": 114, "arrival": {"time": "1694903421"}, "stopId": "38570"}, {"stopSequence": 115, "arrival": {"time": "1694904148"}, "stopId": "38571"}, {"stopSequence": 116, "arrival": {"time": "1694904896"}, "stopId": "38572"}, {"stopSequence": 117, "arrival": {"time": "1694905449"}, "stopId": "38573"}], "vehicle": {"licensePlate": "FHSY68"}, "timestamp": "1694888984"}, "vehicle": {"trip": {"tripId": "17074-701ff27f-2", "startTime": "15:02:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "561", "directionId": 0}, "position": {"latitude": -36.920048, "longitude": -73.02825, "bearing": 42.0, "odometer": 0.0, "speed": 9.166667}, "timestamp": "1694888984", "vehicle": {"licensePlate": "FHSY68"}}}, {"id": "7bb5090a-f651-470a-b835-fa89cd48ac4d", "tripUpdate": {"trip": {"tripId": "17075-701ff27f-2", "startTime": "15:14:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "561", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 11, "arrival": {"time": "1694889030"}, "stopId": "42950"}, {"stopSequence": 12, "arrival": {"time": "1694889076"}, "stopId": "20540195"}, {"stopSequence": 13, "arrival": {"time": "1694889119"}, "stopId": "20540196"}, {"stopSequence": 14, "arrival": {"time": "1694889196"}, "stopId": "42948"}, {"stopSequence": 15, "arrival": {"time": "1694889225"}, "stopId": "20540198"}, {"stopSequence": 16, "arrival": {"time": "1694889247"}, "stopId": "42946"}, {"stopSequence": 17, "arrival": {"time": "1694889297"}, "stopId": "42894"}, {"stopSequence": 18, "arrival": {"time": "1694889332"}, "stopId": "42893"}, {"stopSequence": 19, "arrival": {"time": "1694889353"}, "stopId": "42891"}, {"stopSequence": 20, "arrival": {"time": "1694889379"}, "stopId": "42892"}, {"stopSequence": 21, "arrival": {"time": "1694889420"}, "stopId": "42895"}, {"stopSequence": 22, "arrival": {"time": "1694889432"}, "stopId": "42896"}, {"stopSequence": 23, "arrival": {"time": "1694889473"}, "stopId": "42889"}, {"stopSequence": 24, "arrival": {"time": "1694889516"}, "stopId": "42888"}, {"stopSequence": 25, "arrival": {"time": "1694889557"}, "stopId": "42890"}, {"stopSequence": 26, "arrival": {"time": "1694889600"}, "stopId": "42886"}, {"stopSequence": 27, "arrival": {"time": "1694889621"}, "stopId": "42885"}, {"stopSequence": 28, "arrival": {"time": "1694889683"}, "stopId": "42285"}, {"stopSequence": 29, "arrival": {"time": "1694889768"}, "stopId": "42286"}, {"stopSequence": 30, "arrival": {"time": "1694889785"}, "stopId": "42287"}, {"stopSequence": 31, "arrival": {"time": "1694889839"}, "stopId": "42288"}, {"stopSequence": 32, "arrival": {"time": "1694889874"}, "stopId": "42289"}, {"stopSequence": 33, "arrival": {"time": "1694889954"}, "stopId": "42290"}, {"stopSequence": 34, "arrival": {"time": "1694890003"}, "stopId": "42291"}, {"stopSequence": 35, "arrival": {"time": "1694890087"}, "stopId": "42292"}, {"stopSequence": 36, "arrival": {"time": "1694890157"}, "stopId": "42293"}, {"stopSequence": 37, "arrival": {"time": "1694890323"}, "stopId": "42294"}, {"stopSequence": 38, "arrival": {"time": "1694890458"}, "stopId": "42295"}, {"stopSequence": 39, "arrival": {"time": "1694890571"}, "stopId": "42296"}, {"stopSequence": 40, "arrival": {"time": "1694890698"}, "stopId": "42297"}, {"stopSequence": 41, "arrival": {"time": "1694890796"}, "stopId": "42298"}, {"stopSequence": 42, "arrival": {"time": "1694890862"}, "stopId": "42299"}, {"stopSequence": 43, "arrival": {"time": "1694890906"}, "stopId": "49295"}, {"stopSequence": 44, "arrival": {"time": "1694891034"}, "stopId": "49296"}, {"stopSequence": 45, "arrival": {"time": "1694891124"}, "stopId": "49297"}, {"stopSequence": 46, "arrival": {"time": "1694891166"}, "stopId": "49298"}, {"stopSequence": 47, "arrival": {"time": "1694891232"}, "stopId": "49299"}, {"stopSequence": 48, "arrival": {"time": "1694891290"}, "stopId": "49300"}, {"stopSequence": 49, "arrival": {"time": "1694891385"}, "stopId": "49301"}, {"stopSequence": 50, "arrival": {"time": "1694891463"}, "stopId": "49302"}, {"stopSequence": 51, "arrival": {"time": "1694891516"}, "stopId": "49303"}, {"stopSequence": 52, "arrival": {"time": "1694891570"}, "stopId": "49304"}, {"stopSequence": 53, "arrival": {"time": "1694891612"}, "stopId": "49305"}, {"stopSequence": 54, "arrival": {"time": "1694891680"}, "stopId": "49306"}, {"stopSequence": 55, "arrival": {"time": "1694891729"}, "stopId": "49307"}, {"stopSequence": 56, "arrival": {"time": "1694891759"}, "stopId": "49308"}, {"stopSequence": 57, "arrival": {"time": "1694891789"}, "stopId": "49309"}, {"stopSequence": 58, "arrival": {"time": "1694891825"}, "stopId": "42315"}, {"stopSequence": 59, "arrival": {"time": "1694891854"}, "stopId": "42316"}, {"stopSequence": 60, "arrival": {"time": "1694891920"}, "stopId": "42317"}, {"stopSequence": 61, "arrival": {"time": "1694891988"}, "stopId": "42318"}, {"stopSequence": 62, "arrival": {"time": "1694892085"}, "stopId": "8606396"}, {"stopSequence": 63, "arrival": {"time": "1694892184"}, "stopId": "38514"}, {"stopSequence": 64, "arrival": {"time": "1694892238"}, "stopId": "38516"}, {"stopSequence": 65, "arrival": {"time": "1694892323"}, "stopId": "38518"}, {"stopSequence": 66, "arrival": {"time": "1694892472"}, "stopId": "38520"}, {"stopSequence": 67, "arrival": {"time": "1694892532"}, "stopId": "38521"}, {"stopSequence": 68, "arrival": {"time": "1694892608"}, "stopId": "38522"}, {"stopSequence": 69, "arrival": {"time": "1694892687"}, "stopId": "38523"}, {"stopSequence": 70, "arrival": {"time": "1694892771"}, "stopId": "38524"}, {"stopSequence": 71, "arrival": {"time": "1694892852"}, "stopId": "38525"}, {"stopSequence": 72, "arrival": {"time": "1694892939"}, "stopId": "38526"}, {"stopSequence": 73, "arrival": {"time": "1694893022"}, "stopId": "38527"}, {"stopSequence": 74, "arrival": {"time": "1694893177"}, "stopId": "38528"}, {"stopSequence": 75, "arrival": {"time": "1694893386"}, "stopId": "38529"}, {"stopSequence": 76, "arrival": {"time": "1694893820"}, "stopId": "38530"}, {"stopSequence": 77, "arrival": {"time": "1694893848"}, "stopId": "16005209"}, {"stopSequence": 78, "arrival": {"time": "1694894396"}, "stopId": "38531"}, {"stopSequence": 79, "arrival": {"time": "1694894535"}, "stopId": "8921285"}, {"stopSequence": 80, "arrival": {"time": "1694894835"}, "stopId": "38532"}, {"stopSequence": 81, "arrival": {"time": "1694894984"}, "stopId": "38533"}, {"stopSequence": 82, "arrival": {"time": "1694895143"}, "stopId": "38534"}, {"stopSequence": 83, "arrival": {"time": "1694895292"}, "stopId": "38535"}, {"stopSequence": 84, "arrival": {"time": "1694895483"}, "stopId": "38536"}, {"stopSequence": 85, "arrival": {"time": "1694895616"}, "stopId": "4838437"}, {"stopSequence": 86, "arrival": {"time": "1694895796"}, "stopId": "45085"}, {"stopSequence": 87, "arrival": {"time": "1694896093"}, "stopId": "45086"}, {"stopSequence": 88, "arrival": {"time": "1694896287"}, "stopId": "38539"}, {"stopSequence": 89, "arrival": {"time": "1694896547"}, "stopId": "38540"}, {"stopSequence": 90, "arrival": {"time": "1694896878"}, "stopId": "38544"}, {"stopSequence": 91, "arrival": {"time": "1694897150"}, "stopId": "38545"}, {"stopSequence": 92, "arrival": {"time": "1694897641"}, "stopId": "38546"}, {"stopSequence": 93, "arrival": {"time": "1694898292"}, "stopId": "38548"}, {"stopSequence": 94, "arrival": {"time": "1694898681"}, "stopId": "38549"}, {"stopSequence": 95, "arrival": {"time": "1694899059"}, "stopId": "38550"}, {"stopSequence": 96, "arrival": {"time": "1694899639"}, "stopId": "38551"}, {"stopSequence": 97, "arrival": {"time": "1694900359"}, "stopId": "38552"}, {"stopSequence": 98, "arrival": {"time": "1694901063"}, "stopId": "49359"}, {"stopSequence": 99, "arrival": {"time": "1694901525"}, "stopId": "49360"}, {"stopSequence": 100, "arrival": {"time": "1694902685"}, "stopId": "49361"}, {"stopSequence": 101, "arrival": {"time": "1694902999"}, "stopId": "49362"}, {"stopSequence": 102, "arrival": {"time": "1694903572"}, "stopId": "49363"}, {"stopSequence": 103, "arrival": {"time": "1694904210"}, "stopId": "49364"}, {"stopSequence": 104, "arrival": {"time": "1694904849"}, "stopId": "49365"}, {"stopSequence": 105, "arrival": {"time": "1694905821"}, "stopId": "38560"}, {"stopSequence": 106, "arrival": {"time": "1694906393"}, "stopId": "42857"}, {"stopSequence": 107, "arrival": {"time": "1694906959"}, "stopId": "38562"}, {"stopSequence": 108, "arrival": {"time": "1694907858"}, "stopId": "38563"}, {"stopSequence": 109, "arrival": {"time": "1694908667"}, "stopId": "38564"}, {"stopSequence": 110, "arrival": {"time": "1694910959"}, "stopId": "38565"}, {"stopSequence": 111, "arrival": {"time": "1694912344"}, "stopId": "40932"}, {"stopSequence": 112, "arrival": {"time": "1694914833"}, "stopId": "38567"}, {"stopSequence": 113, "arrival": {"time": "1694916670"}, "stopId": "38568"}, {"stopSequence": 114, "arrival": {"time": "1694919979"}, "stopId": "38570"}, {"stopSequence": 115, "arrival": {"time": "1694923195"}, "stopId": "38571"}, {"stopSequence": 116, "arrival": {"time": "1694926866"}, "stopId": "38572"}, {"stopSequence": 117, "arrival": {"time": "1694929861"}, "stopId": "38573"}], "vehicle": {"licensePlate": "FKLS63"}, "timestamp": "1694889002"}, "vehicle": {"trip": {"tripId": "17075-701ff27f-2", "startTime": "15:14:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "561", "directionId": 0}, "position": {"latitude": -36.939354, "longitude": -73.02516, "bearing": 334.0, "odometer": 0.0, "speed": 5.8333335}, "timestamp": "1694889002", "vehicle": {"licensePlate": "FKLS63"}}}, {"id": "6ff0d331-7344-41e3-ab46-ce8d3c10e16c", "tripUpdate": {"trip": {"tripId": "17071-701ff27f-2", "startTime": "14:26:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "561", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 93, "arrival": {"time": "1694889072"}, "stopId": "38548"}, {"stopSequence": 94, "arrival": {"time": "1694889141"}, "stopId": "38549"}, {"stopSequence": 95, "arrival": {"time": "1694889203"}, "stopId": "38550"}, {"stopSequence": 96, "arrival": {"time": "1694889289"}, "stopId": "38551"}, {"stopSequence": 97, "arrival": {"time": "1694889385"}, "stopId": "38552"}, {"stopSequence": 98, "arrival": {"time": "1694889468"}, "stopId": "49359"}, {"stopSequence": 99, "arrival": {"time": "1694889517"}, "stopId": "49360"}, {"stopSequence": 100, "arrival": {"time": "1694889627"}, "stopId": "49361"}, {"stopSequence": 101, "arrival": {"time": "1694889653"}, "stopId": "49362"}, {"stopSequence": 102, "arrival": {"time": "1694889699"}, "stopId": "49363"}, {"stopSequence": 103, "arrival": {"time": "1694889747"}, "stopId": "49364"}, {"stopSequence": 104, "arrival": {"time": "1694889790"}, "stopId": "49365"}, {"stopSequence": 105, "arrival": {"time": "1694889851"}, "stopId": "38560"}, {"stopSequence": 106, "arrival": {"time": "1694889884"}, "stopId": "42857"}, {"stopSequence": 107, "arrival": {"time": "1694889914"}, "stopId": "38562"}, {"stopSequence": 108, "arrival": {"time": "1694889959"}, "stopId": "38563"}, {"stopSequence": 109, "arrival": {"time": "1694889995"}, "stopId": "38564"}, {"stopSequence": 110, "arrival": {"time": "1694890086"}, "stopId": "38565"}, {"stopSequence": 111, "arrival": {"time": "1694890133"}, "stopId": "40932"}, {"stopSequence": 112, "arrival": {"time": "1694890204"}, "stopId": "38567"}, {"stopSequence": 113, "arrival": {"time": "1694890250"}, "stopId": "38568"}, {"stopSequence": 114, "arrival": {"time": "1694890318"}, "stopId": "38570"}, {"stopSequence": 115, "arrival": {"time": "1694890373"}, "stopId": "38571"}, {"stopSequence": 116, "arrival": {"time": "1694890424"}, "stopId": "38572"}, {"stopSequence": 117, "arrival": {"time": "1694890460"}, "stopId": "38573"}], "vehicle": {"licensePlate": "JGJV28"}, "timestamp": "1694889014"}, "vehicle": {"trip": {"tripId": "17071-701ff27f-2", "startTime": "14:26:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "561", "directionId": 0}, "position": {"latitude": -36.740803, "longitude": -73.09888, "bearing": 334.0, "odometer": 0.0, "speed": 2.5}, "timestamp": "1694889014", "vehicle": {"licensePlate": "JGJV28"}}}, {"id": "d39c3e57-ab09-4248-8b68-f8432cd9c851", "tripUpdate": {"trip": {"tripId": "16976-701ff27f-2", "startTime": "14:25:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "561", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 65, "arrival": {"time": "1694889053"}, "stopId": "42206"}, {"stopSequence": 66, "arrival": {"time": "1694889112"}, "stopId": "42207"}, {"stopSequence": 67, "arrival": {"time": "1694889174"}, "stopId": "42208"}, {"stopSequence": 68, "arrival": {"time": "1694889304"}, "stopId": "42564"}, {"stopSequence": 69, "arrival": {"time": "1694889412"}, "stopId": "42214"}, {"stopSequence": 70, "arrival": {"time": "1694889518"}, "stopId": "42209"}, {"stopSequence": 71, "arrival": {"time": "1694889635"}, "stopId": "42210"}, {"stopSequence": 72, "arrival": {"time": "1694889818"}, "stopId": "42215"}, {"stopSequence": 73, "arrival": {"time": "1694889848"}, "stopId": "42216"}, {"stopSequence": 74, "arrival": {"time": "1694889888"}, "stopId": "42217"}, {"stopSequence": 75, "arrival": {"time": "1694889961"}, "stopId": "42218"}, {"stopSequence": 76, "arrival": {"time": "1694890003"}, "stopId": "42219"}, {"stopSequence": 77, "arrival": {"time": "1694890100"}, "stopId": "42220"}, {"stopSequence": 78, "arrival": {"time": "1694890143"}, "stopId": "42221"}, {"stopSequence": 79, "arrival": {"time": "1694890208"}, "stopId": "42222"}, {"stopSequence": 80, "arrival": {"time": "1694890342"}, "stopId": "42897"}, {"stopSequence": 81, "arrival": {"time": "1694890410"}, "stopId": "42898"}, {"stopSequence": 82, "arrival": {"time": "1694890458"}, "stopId": "42887"}, {"stopSequence": 83, "arrival": {"time": "1694890538"}, "stopId": "42943"}, {"stopSequence": 84, "arrival": {"time": "1694890610"}, "stopId": "42944"}, {"stopSequence": 85, "arrival": {"time": "1694890666"}, "stopId": "42945"}, {"stopSequence": 86, "arrival": {"time": "1694890718"}, "stopId": "42947"}, {"stopSequence": 87, "arrival": {"time": "1694890753"}, "stopId": "42949"}, {"stopSequence": 88, "arrival": {"time": "1694890887"}, "stopId": "20540195"}, {"stopSequence": 89, "arrival": {"time": "1694890919"}, "stopId": "42951"}, {"stopSequence": 90, "arrival": {"time": "1694890962"}, "stopId": "20540194"}, {"stopSequence": 91, "arrival": {"time": "1694891025"}, "stopId": "42952"}, {"stopSequence": 92, "arrival": {"time": "1694891055"}, "stopId": "42958"}, {"stopSequence": 93, "arrival": {"time": "1694891093"}, "stopId": "42955"}, {"stopSequence": 94, "arrival": {"time": "1694891118"}, "stopId": "42983"}, {"stopSequence": 95, "arrival": {"time": "1694891163"}, "stopId": "20540192"}, {"stopSequence": 96, "arrival": {"time": "1694891196"}, "stopId": "42979"}, {"stopSequence": 97, "arrival": {"time": "1694891259"}, "stopId": "20540201"}, {"stopSequence": 98, "arrival": {"time": "1694891308"}, "stopId": "43082"}, {"stopSequence": 99, "arrival": {"time": "1694891326"}, "stopId": "20540202"}, {"stopSequence": 100, "arrival": {"time": "1694891542"}, "stopId": "42954"}, {"stopSequence": 101, "arrival": {"time": "1694891617"}, "stopId": "20540199"}, {"stopSequence": 102, "arrival": {"time": "1694891656"}, "stopId": "42957"}], "vehicle": {"licensePlate": "KFDK88"}, "timestamp": "1694889016"}, "vehicle": {"trip": {"tripId": "16976-701ff27f-2", "startTime": "14:25:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "561", "directionId": 1}, "position": {"latitude": -36.863914, "longitude": -73.044685, "bearing": 150.0, "odometer": 0.0, "speed": 19.722221}, "timestamp": "1694889016", "vehicle": {"licensePlate": "KFDK88"}}}, {"id": "b607f3db-a93c-4332-b06a-80227cc55d9e", "tripUpdate": {"trip": {"tripId": "16978-701ff27f-2", "startTime": "14:49:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "561", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 38, "arrival": {"time": "1694889013"}, "stopId": "16005188"}, {"stopSequence": 39, "arrival": {"time": "1694889278"}, "stopId": "40995"}, {"stopSequence": 40, "arrival": {"time": "1694889353"}, "stopId": "40996"}, {"stopSequence": 41, "arrival": {"time": "1694889432"}, "stopId": "40997"}, {"stopSequence": 42, "arrival": {"time": "1694889490"}, "stopId": "39614"}, {"stopSequence": 43, "arrival": {"time": "1694889538"}, "stopId": "39615"}, {"stopSequence": 44, "arrival": {"time": "1694889594"}, "stopId": "39616"}, {"stopSequence": 45, "arrival": {"time": "1694889640"}, "stopId": "39617"}, {"stopSequence": 46, "arrival": {"time": "1694889697"}, "stopId": "39618"}, {"stopSequence": 47, "arrival": {"time": "1694889742"}, "stopId": "39619"}, {"stopSequence": 48, "arrival": {"time": "1694889779"}, "stopId": "39620"}, {"stopSequence": 49, "arrival": {"time": "1694889847"}, "stopId": "39621"}, {"stopSequence": 50, "arrival": {"time": "1694889894"}, "stopId": "38281"}, {"stopSequence": 51, "arrival": {"time": "1694889948"}, "stopId": "37506"}, {"stopSequence": 52, "arrival": {"time": "1694889987"}, "stopId": "45068"}, {"stopSequence": 53, "arrival": {"time": "1694890109"}, "stopId": "37480"}, {"stopSequence": 54, "arrival": {"time": "1694890169"}, "stopId": "37477"}, {"stopSequence": 55, "arrival": {"time": "1694890235"}, "stopId": "40848"}, {"stopSequence": 56, "arrival": {"time": "1694890317"}, "stopId": "2-Apr"}, {"stopSequence": 57, "arrival": {"time": "1694890373"}, "stopId": "39728"}, {"stopSequence": 58, "arrival": {"time": "1694890469"}, "stopId": "39729"}, {"stopSequence": 59, "arrival": {"time": "1694890493"}, "stopId": "39730"}, {"stopSequence": 60, "arrival": {"time": "1694890596"}, "stopId": "42200"}, {"stopSequence": 61, "arrival": {"time": "1694890641"}, "stopId": "42203"}, {"stopSequence": 62, "arrival": {"time": "1694890697"}, "stopId": "42204"}, {"stopSequence": 63, "arrival": {"time": "1694890739"}, "stopId": "42205"}, {"stopSequence": 64, "arrival": {"time": "1694890801"}, "stopId": "42201"}, {"stopSequence": 65, "arrival": {"time": "1694891066"}, "stopId": "42206"}, {"stopSequence": 66, "arrival": {"time": "1694891126"}, "stopId": "42207"}, {"stopSequence": 67, "arrival": {"time": "1694891191"}, "stopId": "42208"}, {"stopSequence": 68, "arrival": {"time": "1694891331"}, "stopId": "42564"}, {"stopSequence": 69, "arrival": {"time": "1694891452"}, "stopId": "42214"}, {"stopSequence": 70, "arrival": {"time": "1694891578"}, "stopId": "42209"}, {"stopSequence": 71, "arrival": {"time": "1694891721"}, "stopId": "42210"}, {"stopSequence": 72, "arrival": {"time": "1694891958"}, "stopId": "42215"}, {"stopSequence": 73, "arrival": {"time": "1694891998"}, "stopId": "42216"}, {"stopSequence": 74, "arrival": {"time": "1694892053"}, "stopId": "42217"}, {"stopSequence": 75, "arrival": {"time": "1694892155"}, "stopId": "42218"}, {"stopSequence": 76, "arrival": {"time": "1694892215"}, "stopId": "42219"}, {"stopSequence": 77, "arrival": {"time": "1694892357"}, "stopId": "42220"}, {"stopSequence": 78, "arrival": {"time": "1694892422"}, "stopId": "42221"}, {"stopSequence": 79, "arrival": {"time": "1694892522"}, "stopId": "42222"}, {"stopSequence": 80, "arrival": {"time": "1694892736"}, "stopId": "42897"}, {"stopSequence": 81, "arrival": {"time": "1694892850"}, "stopId": "42898"}, {"stopSequence": 82, "arrival": {"time": "1694892931"}, "stopId": "42887"}, {"stopSequence": 83, "arrival": {"time": "1694893071"}, "stopId": "42943"}, {"stopSequence": 84, "arrival": {"time": "1694893199"}, "stopId": "42944"}, {"stopSequence": 85, "arrival": {"time": "1694893301"}, "stopId": "42945"}, {"stopSequence": 86, "arrival": {"time": "1694893399"}, "stopId": "42947"}, {"stopSequence": 87, "arrival": {"time": "1694893466"}, "stopId": "42949"}, {"stopSequence": 88, "arrival": {"time": "1694893728"}, "stopId": "20540195"}, {"stopSequence": 89, "arrival": {"time": "1694893794"}, "stopId": "42951"}, {"stopSequence": 90, "arrival": {"time": "1694893881"}, "stopId": "20540194"}, {"stopSequence": 91, "arrival": {"time": "1694894013"}, "stopId": "42952"}, {"stopSequence": 92, "arrival": {"time": "1694894076"}, "stopId": "42958"}, {"stopSequence": 93, "arrival": {"time": "1694894159"}, "stopId": "42955"}, {"stopSequence": 94, "arrival": {"time": "1694894213"}, "stopId": "42983"}, {"stopSequence": 95, "arrival": {"time": "1694894312"}, "stopId": "20540192"}, {"stopSequence": 96, "arrival": {"time": "1694894387"}, "stopId": "42979"}, {"stopSequence": 97, "arrival": {"time": "1694894532"}, "stopId": "20540201"}, {"stopSequence": 98, "arrival": {"time": "1694894645"}, "stopId": "43082"}, {"stopSequence": 99, "arrival": {"time": "1694894687"}, "stopId": "20540202"}, {"stopSequence": 100, "arrival": {"time": "1694895223"}, "stopId": "42954"}, {"stopSequence": 101, "arrival": {"time": "1694895418"}, "stopId": "20540199"}, {"stopSequence": 102, "arrival": {"time": "1694895520"}, "stopId": "42957"}], "vehicle": {"licensePlate": "KGRX98"}, "timestamp": "1694889010"}, "vehicle": {"trip": {"tripId": "16978-701ff27f-2", "startTime": "14:49:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "561", "directionId": 1}, "position": {"latitude": -36.791862, "longitude": -73.07064, "bearing": 164.0, "odometer": 0.0, "speed": 1.3888888}, "timestamp": "1694889010", "vehicle": {"licensePlate": "KGRX98"}}}, {"id": "bcbb1253-d189-4af0-94c4-18f135302f39", "tripUpdate": {"trip": {"tripId": "16977-701ff27f-2", "startTime": "14:37:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "561", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 52, "arrival": {"time": "1694889019"}, "stopId": "45068"}, {"stopSequence": 53, "arrival": {"time": "1694889151"}, "stopId": "37480"}, {"stopSequence": 54, "arrival": {"time": "1694889215"}, "stopId": "37477"}, {"stopSequence": 55, "arrival": {"time": "1694889285"}, "stopId": "40848"}, {"stopSequence": 56, "arrival": {"time": "1694889370"}, "stopId": "2-Apr"}, {"stopSequence": 57, "arrival": {"time": "1694889428"}, "stopId": "39728"}, {"stopSequence": 58, "arrival": {"time": "1694889525"}, "stopId": "39729"}, {"stopSequence": 59, "arrival": {"time": "1694889549"}, "stopId": "39730"}, {"stopSequence": 60, "arrival": {"time": "1694889651"}, "stopId": "42200"}, {"stopSequence": 61, "arrival": {"time": "1694889695"}, "stopId": "42203"}, {"stopSequence": 62, "arrival": {"time": "1694889749"}, "stopId": "42204"}, {"stopSequence": 63, "arrival": {"time": "1694889790"}, "stopId": "42205"}, {"stopSequence": 64, "arrival": {"time": "1694889848"}, "stopId": "42201"}, {"stopSequence": 65, "arrival": {"time": "1694890093"}, "stopId": "42206"}, {"stopSequence": 66, "arrival": {"time": "1694890147"}, "stopId": "42207"}, {"stopSequence": 67, "arrival": {"time": "1694890205"}, "stopId": "42208"}, {"stopSequence": 68, "arrival": {"time": "1694890328"}, "stopId": "42564"}, {"stopSequence": 69, "arrival": {"time": "1694890432"}, "stopId": "42214"}, {"stopSequence": 70, "arrival": {"time": "1694890538"}, "stopId": "42209"}, {"stopSequence": 71, "arrival": {"time": "1694890656"}, "stopId": "42210"}, {"stopSequence": 72, "arrival": {"time": "1694890848"}, "stopId": "42215"}, {"stopSequence": 73, "arrival": {"time": "1694890880"}, "stopId": "42216"}, {"stopSequence": 74, "arrival": {"time": "1694890923"}, "stopId": "42217"}, {"stopSequence": 75, "arrival": {"time": "1694891002"}, "stopId": "42218"}, {"stopSequence": 76, "arrival": {"time": "1694891049"}, "stopId": "42219"}, {"stopSequence": 77, "arrival": {"time": "1694891157"}, "stopId": "42220"}, {"stopSequence": 78, "arrival": {"time": "1694891206"}, "stopId": "42221"}, {"stopSequence": 79, "arrival": {"time": "1694891281"}, "stopId": "42222"}, {"stopSequence": 80, "arrival": {"time": "1694891438"}, "stopId": "42897"}, {"stopSequence": 81, "arrival": {"time": "1694891520"}, "stopId": "42898"}, {"stopSequence": 82, "arrival": {"time": "1694891578"}, "stopId": "42887"}, {"stopSequence": 83, "arrival": {"time": "1694891677"}, "stopId": "42943"}, {"stopSequence": 84, "arrival": {"time": "1694891765"}, "stopId": "42944"}, {"stopSequence": 85, "arrival": {"time": "1694891835"}, "stopId": "42945"}, {"stopSequence": 86, "arrival": {"time": "1694891902"}, "stopId": "42947"}, {"stopSequence": 87, "arrival": {"time": "1694891948"}, "stopId": "42949"}, {"stopSequence": 88, "arrival": {"time": "1694892121"}, "stopId": "20540195"}, {"stopSequence": 89, "arrival": {"time": "1694892165"}, "stopId": "42951"}, {"stopSequence": 90, "arrival": {"time": "1694892221"}, "stopId": "20540194"}, {"stopSequence": 91, "arrival": {"time": "1694892306"}, "stopId": "42952"}, {"stopSequence": 92, "arrival": {"time": "1694892347"}, "stopId": "42958"}, {"stopSequence": 93, "arrival": {"time": "1694892399"}, "stopId": "42955"}, {"stopSequence": 94, "arrival": {"time": "1694892433"}, "stopId": "42983"}, {"stopSequence": 95, "arrival": {"time": "1694892495"}, "stopId": "20540192"}, {"stopSequence": 96, "arrival": {"time": "1694892542"}, "stopId": "42979"}, {"stopSequence": 97, "arrival": {"time": "1694892630"}, "stopId": "20540201"}, {"stopSequence": 98, "arrival": {"time": "1694892699"}, "stopId": "43082"}, {"stopSequence": 99, "arrival": {"time": "1694892725"}, "stopId": "20540202"}, {"stopSequence": 100, "arrival": {"time": "1694893041"}, "stopId": "42954"}, {"stopSequence": 101, "arrival": {"time": "1694893152"}, "stopId": "20540199"}, {"stopSequence": 102, "arrival": {"time": "1694893210"}, "stopId": "42957"}], "vehicle": {"licensePlate": "RKVT16"}, "timestamp": "1694888982"}, "vehicle": {"trip": {"tripId": "16977-701ff27f-2", "startTime": "14:37:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "561", "directionId": 1}, "position": {"latitude": -36.825165, "longitude": -73.044106, "bearing": 242.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888982", "vehicle": {"licensePlate": "RKVT16"}}}, {"id": "8bd3b3c0-fd39-4ada-9071-31af9fb7d2b2", "tripUpdate": {"trip": {"tripId": "17070-701ff27f-2", "startTime": "14:14:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "561", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 106, "arrival": {"time": "1694888985"}, "stopId": "42857"}, {"stopSequence": 107, "arrival": {"time": "1694889018"}, "stopId": "38562"}, {"stopSequence": 108, "arrival": {"time": "1694889067"}, "stopId": "38563"}, {"stopSequence": 109, "arrival": {"time": "1694889107"}, "stopId": "38564"}, {"stopSequence": 110, "arrival": {"time": "1694889204"}, "stopId": "38565"}, {"stopSequence": 111, "arrival": {"time": "1694889254"}, "stopId": "40932"}, {"stopSequence": 112, "arrival": {"time": "1694889329"}, "stopId": "38567"}, {"stopSequence": 113, "arrival": {"time": "1694889376"}, "stopId": "38568"}, {"stopSequence": 114, "arrival": {"time": "1694889447"}, "stopId": "38570"}, {"stopSequence": 115, "arrival": {"time": "1694889502"}, "stopId": "38571"}, {"stopSequence": 116, "arrival": {"time": "1694889554"}, "stopId": "38572"}, {"stopSequence": 117, "arrival": {"time": "1694889589"}, "stopId": "38573"}], "vehicle": {"licensePlate": "WS7737"}, "timestamp": "1694888972"}, "vehicle": {"trip": {"tripId": "17070-701ff27f-2", "startTime": "14:14:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "561", "directionId": 0}, "position": {"latitude": -36.712334, "longitude": -73.11539, "bearing": 196.0, "odometer": 0.0, "speed": 6.388889}, "timestamp": "1694888972", "vehicle": {"licensePlate": "WS7737"}}}, {"id": "a9f031b0-c5f1-4b13-b5ab-481695416de7", "tripUpdate": {"trip": {"tripId": "16980-701ff27f-2", "startTime": "15:13:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "561", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 5, "arrival": {"time": "1694888942"}, "stopId": "40947"}, {"stopSequence": 6, "arrival": {"time": "1694889027"}, "stopId": "40932"}, {"stopSequence": 7, "arrival": {"time": "1694889077"}, "stopId": "42853"}, {"stopSequence": 8, "arrival": {"time": "1694889168"}, "stopId": "42854"}, {"stopSequence": 9, "arrival": {"time": "1694889227"}, "stopId": "42855"}, {"stopSequence": 10, "arrival": {"time": "1694889257"}, "stopId": "41975"}, {"stopSequence": 11, "arrival": {"time": "1694889287"}, "stopId": "42857"}, {"stopSequence": 12, "arrival": {"time": "1694889317"}, "stopId": "38697"}, {"stopSequence": 13, "arrival": {"time": "1694889366"}, "stopId": "38646"}, {"stopSequence": 14, "arrival": {"time": "1694889396"}, "stopId": "38632"}, {"stopSequence": 15, "arrival": {"time": "1694889481"}, "stopId": "38767"}, {"stopSequence": 16, "arrival": {"time": "1694889551"}, "stopId": "38768"}, {"stopSequence": 17, "arrival": {"time": "1694889593"}, "stopId": "38769"}, {"stopSequence": 18, "arrival": {"time": "1694889633"}, "stopId": "49357"}, {"stopSequence": 19, "arrival": {"time": "1694889672"}, "stopId": "38771"}, {"stopSequence": 20, "arrival": {"time": "1694889716"}, "stopId": "38668"}, {"stopSequence": 21, "arrival": {"time": "1694889811"}, "stopId": "38661"}, {"stopSequence": 22, "arrival": {"time": "1694889892"}, "stopId": "38657"}, {"stopSequence": 23, "arrival": {"time": "1694889952"}, "stopId": "38743"}, {"stopSequence": 24, "arrival": {"time": "1694890016"}, "stopId": "38652"}, {"stopSequence": 25, "arrival": {"time": "1694890075"}, "stopId": "38721"}, {"stopSequence": 26, "arrival": {"time": "1694890133"}, "stopId": "38659"}, {"stopSequence": 27, "arrival": {"time": "1694890211"}, "stopId": "38674"}, {"stopSequence": 28, "arrival": {"time": "1694890286"}, "stopId": "38649"}, {"stopSequence": 29, "arrival": {"time": "1694890348"}, "stopId": "38718"}, {"stopSequence": 30, "arrival": {"time": "1694890421"}, "stopId": "38735"}, {"stopSequence": 31, "arrival": {"time": "1694890475"}, "stopId": "42270"}, {"stopSequence": 32, "arrival": {"time": "1694890520"}, "stopId": "42271"}, {"stopSequence": 33, "arrival": {"time": "1694890589"}, "stopId": "4838438"}, {"stopSequence": 34, "arrival": {"time": "1694890736"}, "stopId": "44896"}, {"stopSequence": 35, "arrival": {"time": "1694890786"}, "stopId": "44897"}, {"stopSequence": 36, "arrival": {"time": "1694890862"}, "stopId": "44898"}, {"stopSequence": 37, "arrival": {"time": "1694891044"}, "stopId": "40993"}, {"stopSequence": 38, "arrival": {"time": "1694891319"}, "stopId": "16005188"}, {"stopSequence": 39, "arrival": {"time": "1694891617"}, "stopId": "40995"}, {"stopSequence": 40, "arrival": {"time": "1694891708"}, "stopId": "40996"}, {"stopSequence": 41, "arrival": {"time": "1694891806"}, "stopId": "40997"}, {"stopSequence": 42, "arrival": {"time": "1694891882"}, "stopId": "39614"}, {"stopSequence": 43, "arrival": {"time": "1694891945"}, "stopId": "39615"}, {"stopSequence": 44, "arrival": {"time": "1694892021"}, "stopId": "39616"}, {"stopSequence": 45, "arrival": {"time": "1694892085"}, "stopId": "39617"}, {"stopSequence": 46, "arrival": {"time": "1694892166"}, "stopId": "39618"}, {"stopSequence": 47, "arrival": {"time": "1694892231"}, "stopId": "39619"}, {"stopSequence": 48, "arrival": {"time": "1694892285"}, "stopId": "39620"}, {"stopSequence": 49, "arrival": {"time": "1694892388"}, "stopId": "39621"}, {"stopSequence": 50, "arrival": {"time": "1694892461"}, "stopId": "38281"}, {"stopSequence": 51, "arrival": {"time": "1694892546"}, "stopId": "37506"}, {"stopSequence": 52, "arrival": {"time": "1694892609"}, "stopId": "45068"}, {"stopSequence": 53, "arrival": {"time": "1694892813"}, "stopId": "37480"}, {"stopSequence": 54, "arrival": {"time": "1694892917"}, "stopId": "37477"}, {"stopSequence": 55, "arrival": {"time": "1694893036"}, "stopId": "40848"}, {"stopSequence": 56, "arrival": {"time": "1694893188"}, "stopId": "2-Apr"}, {"stopSequence": 57, "arrival": {"time": "1694893295"}, "stopId": "39728"}, {"stopSequence": 58, "arrival": {"time": "1694893486"}, "stopId": "39729"}, {"stopSequence": 59, "arrival": {"time": "1694893535"}, "stopId": "39730"}, {"stopSequence": 60, "arrival": {"time": "1694893750"}, "stopId": "42200"}, {"stopSequence": 61, "arrival": {"time": "1694893848"}, "stopId": "42203"}, {"stopSequence": 62, "arrival": {"time": "1694893970"}, "stopId": "42204"}, {"stopSequence": 63, "arrival": {"time": "1694894066"}, "stopId": "42205"}, {"stopSequence": 64, "arrival": {"time": "1694894210"}, "stopId": "42201"}, {"stopSequence": 65, "arrival": {"time": "1694894872"}, "stopId": "42206"}, {"stopSequence": 66, "arrival": {"time": "1694895031"}, "stopId": "42207"}, {"stopSequence": 67, "arrival": {"time": "1694895211"}, "stopId": "42208"}, {"stopSequence": 68, "arrival": {"time": "1694895618"}, "stopId": "42564"}, {"stopSequence": 69, "arrival": {"time": "1694895991"}, "stopId": "42214"}, {"stopSequence": 70, "arrival": {"time": "1694896401"}, "stopId": "42209"}, {"stopSequence": 71, "arrival": {"time": "1694896901"}, "stopId": "42210"}, {"stopSequence": 72, "arrival": {"time": "1694897811"}, "stopId": "42215"}, {"stopSequence": 73, "arrival": {"time": "1694897977"}, "stopId": "42216"}, {"stopSequence": 74, "arrival": {"time": "1694898208"}, "stopId": "42217"}, {"stopSequence": 75, "arrival": {"time": "1694898654"}, "stopId": "42218"}, {"stopSequence": 76, "arrival": {"time": "1694898930"}, "stopId": "42219"}, {"stopSequence": 77, "arrival": {"time": "1694899619"}, "stopId": "42220"}, {"stopSequence": 78, "arrival": {"time": "1694899952"}, "stopId": "42221"}, {"stopSequence": 79, "arrival": {"time": "1694900490"}, "stopId": "42222"}, {"stopSequence": 80, "arrival": {"time": "1694901748"}, "stopId": "42897"}, {"stopSequence": 81, "arrival": {"time": "1694902490"}, "stopId": "42898"}, {"stopSequence": 82, "arrival": {"time": "1694903047"}, "stopId": "42887"}, {"stopSequence": 83, "arrival": {"time": "1694904084"}, "stopId": "42943"}, {"stopSequence": 84, "arrival": {"time": "1694905118"}, "stopId": "42944"}, {"stopSequence": 85, "arrival": {"time": "1694906014"}, "stopId": "42945"}, {"stopSequence": 86, "arrival": {"time": "1694906938"}, "stopId": "42947"}, {"stopSequence": 87, "arrival": {"time": "1694907612"}, "stopId": "42949"}, {"stopSequence": 88, "arrival": {"time": "1694910598"}, "stopId": "20540195"}, {"stopSequence": 89, "arrival": {"time": "1694911461"}, "stopId": "42951"}, {"stopSequence": 90, "arrival": {"time": "1694912669"}, "stopId": "20540194"}, {"stopSequence": 91, "arrival": {"time": "1694914710"}, "stopId": "42952"}, {"stopSequence": 92, "arrival": {"time": "1694915775"}, "stopId": "42958"}, {"stopSequence": 93, "arrival": {"time": "1694917279"}, "stopId": "42955"}, {"stopSequence": 94, "arrival": {"time": "1694918325"}, "stopId": "42983"}, {"stopSequence": 95, "arrival": {"time": "1694920415"}, "stopId": "20540192"}, {"stopSequence": 96, "arrival": {"time": "1694922157"}, "stopId": "42979"}, {"stopSequence": 97, "arrival": {"time": "1694925964"}, "stopId": "20540201"}, {"stopSequence": 98, "arrival": {"time": "1694929468"}, "stopId": "43082"}, {"stopSequence": 99, "arrival": {"time": "1694930939"}, "stopId": "20540202"}, {"stopSequence": 100, "arrival": {"time": "1694961182"}, "stopId": "42954"}, {"stopSequence": 101, "arrival": {"time": "1694983625"}, "stopId": "20540199"}, {"stopSequence": 102, "arrival": {"time": "1695001261"}, "stopId": "42957"}], "vehicle": {"licensePlate": "YG6207"}, "timestamp": "1694888940"}, "vehicle": {"trip": {"tripId": "16980-701ff27f-2", "startTime": "15:13:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "561", "directionId": 1}, "position": {"latitude": -36.724167, "longitude": -73.11948, "bearing": 120.0, "odometer": 0.0, "speed": 2.7777777}, "timestamp": "1694889010", "vehicle": {"licensePlate": "YG6207"}}}, {"id": "7437a998-be78-4a1e-93d3-258f84b6fbc1", "tripUpdate": {"trip": {"tripId": "16975-701ff27f-2", "startTime": "14:13:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "561", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 100, "arrival": {"time": "1694889203"}, "stopId": "42954"}, {"stopSequence": 101, "arrival": {"time": "1694889268"}, "stopId": "20540199"}, {"stopSequence": 102, "arrival": {"time": "1694889300"}, "stopId": "42957"}], "vehicle": {"licensePlate": "YJ2004"}, "timestamp": "1694889020"}, "vehicle": {"trip": {"tripId": "16975-701ff27f-2", "startTime": "14:13:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "561", "directionId": 1}, "position": {"latitude": -36.944725, "longitude": -73.02027, "bearing": 336.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889020", "vehicle": {"licensePlate": "YJ2004"}}}, {"id": "39c06ba2-4b63-43a1-a59a-5a9f164acf38", "tripUpdate": {"trip": {"tripId": "d4afd7ae-f-701ff27f-2", "startTime": "15:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "562", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 31, "arrival": {"time": "1694889040"}, "stopId": "40953"}, {"stopSequence": 32, "arrival": {"time": "1694889086"}, "stopId": "40954"}, {"stopSequence": 33, "arrival": {"time": "1694889160"}, "stopId": "40955"}, {"stopSequence": 34, "arrival": {"time": "1694889194"}, "stopId": "40956"}, {"stopSequence": 35, "arrival": {"time": "1694889258"}, "stopId": "40957"}, {"stopSequence": 36, "arrival": {"time": "1694889318"}, "stopId": "40958"}, {"stopSequence": 37, "arrival": {"time": "1694889341"}, "stopId": "40959"}, {"stopSequence": 38, "arrival": {"time": "1694889486"}, "stopId": "42897"}, {"stopSequence": 39, "arrival": {"time": "1694889550"}, "stopId": "42898"}, {"stopSequence": 40, "arrival": {"time": "1694889610"}, "stopId": "91011"}, {"stopSequence": 41, "arrival": {"time": "1694889661"}, "stopId": "91012"}, {"stopSequence": 42, "arrival": {"time": "1694889754"}, "stopId": "91013"}, {"stopSequence": 43, "arrival": {"time": "1694889814"}, "stopId": "91014"}, {"stopSequence": 44, "arrival": {"time": "1694889862"}, "stopId": "42945"}, {"stopSequence": 45, "arrival": {"time": "1694889907"}, "stopId": "42947"}, {"stopSequence": 46, "arrival": {"time": "1694889948"}, "stopId": "42949"}, {"stopSequence": 47, "arrival": {"time": "1694890074"}, "stopId": "20540195"}, {"stopSequence": 48, "arrival": {"time": "1694890103"}, "stopId": "42951"}, {"stopSequence": 49, "arrival": {"time": "1694890140"}, "stopId": "20540194"}, {"stopSequence": 50, "arrival": {"time": "1694890190"}, "stopId": "42952"}, {"stopSequence": 51, "arrival": {"time": "1694890224"}, "stopId": "42958"}, {"stopSequence": 52, "arrival": {"time": "1694890254"}, "stopId": "42955"}, {"stopSequence": 53, "arrival": {"time": "1694890277"}, "stopId": "42954"}, {"stopSequence": 54, "arrival": {"time": "1694890323"}, "stopId": "20540192"}, {"stopSequence": 55, "arrival": {"time": "1694890349"}, "stopId": "42979"}, {"stopSequence": 56, "arrival": {"time": "1694890408"}, "stopId": "20540201"}, {"stopSequence": 57, "arrival": {"time": "1694890444"}, "stopId": "43082"}, {"stopSequence": 58, "arrival": {"time": "1694890466"}, "stopId": "20540202"}, {"stopSequence": 59, "arrival": {"time": "1694890497"}, "stopId": "43080"}, {"stopSequence": 60, "arrival": {"time": "1694890649"}, "stopId": "42983"}, {"stopSequence": 61, "arrival": {"time": "1694890716"}, "stopId": "20540199"}, {"stopSequence": 62, "arrival": {"time": "1694890749"}, "stopId": "42957"}], "vehicle": {"licensePlate": "FFVP21"}, "timestamp": "1694888992"}, "vehicle": {"trip": {"tripId": "d4afd7ae-f-701ff27f-2", "startTime": "15:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "562", "directionId": 1}, "position": {"latitude": -36.90045, "longitude": -73.03046, "bearing": 168.0, "odometer": 0.0, "speed": 15.277778}, "timestamp": "1694888992", "vehicle": {"licensePlate": "FFVP21"}}}, {"id": "921981e1-8c86-4c6f-8998-99be8affce50", "tripUpdate": {"trip": {"tripId": "1bc94f39-4-701ff27f-2", "startTime": "15:12:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "562", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 17, "arrival": {"time": "1694889061"}, "stopId": "42894"}, {"stopSequence": 18, "arrival": {"time": "1694889098"}, "stopId": "42893"}, {"stopSequence": 19, "arrival": {"time": "1694889119"}, "stopId": "42891"}, {"stopSequence": 20, "arrival": {"time": "1694889177"}, "stopId": "91008"}, {"stopSequence": 21, "arrival": {"time": "1694889272"}, "stopId": "91009"}, {"stopSequence": 22, "arrival": {"time": "1694889334"}, "stopId": "91010"}, {"stopSequence": 23, "arrival": {"time": "1694889389"}, "stopId": "42890"}, {"stopSequence": 24, "arrival": {"time": "1694889428"}, "stopId": "42886"}, {"stopSequence": 25, "arrival": {"time": "1694889452"}, "stopId": "42885"}, {"stopSequence": 26, "arrival": {"time": "1694889515"}, "stopId": "42285"}, {"stopSequence": 27, "arrival": {"time": "1694889611"}, "stopId": "49281"}, {"stopSequence": 28, "arrival": {"time": "1694889669"}, "stopId": "49282"}, {"stopSequence": 29, "arrival": {"time": "1694889717"}, "stopId": "49283"}, {"stopSequence": 30, "arrival": {"time": "1694889769"}, "stopId": "49284"}, {"stopSequence": 31, "arrival": {"time": "1694889829"}, "stopId": "49285"}, {"stopSequence": 32, "arrival": {"time": "1694889895"}, "stopId": "49286"}, {"stopSequence": 33, "arrival": {"time": "1694889942"}, "stopId": "49287"}, {"stopSequence": 34, "arrival": {"time": "1694889983"}, "stopId": "49288"}, {"stopSequence": 35, "arrival": {"time": "1694890031"}, "stopId": "49289"}, {"stopSequence": 36, "arrival": {"time": "1694890167"}, "stopId": "42294"}, {"stopSequence": 37, "arrival": {"time": "1694890294"}, "stopId": "42295"}, {"stopSequence": 38, "arrival": {"time": "1694890400"}, "stopId": "42296"}, {"stopSequence": 39, "arrival": {"time": "1694890536"}, "stopId": "42297"}, {"stopSequence": 40, "arrival": {"time": "1694890624"}, "stopId": "42298"}, {"stopSequence": 41, "arrival": {"time": "1694890694"}, "stopId": "42299"}, {"stopSequence": 42, "arrival": {"time": "1694890729"}, "stopId": "49295"}, {"stopSequence": 43, "arrival": {"time": "1694890859"}, "stopId": "49296"}, {"stopSequence": 44, "arrival": {"time": "1694890950"}, "stopId": "49297"}, {"stopSequence": 45, "arrival": {"time": "1694890984"}, "stopId": "49298"}, {"stopSequence": 46, "arrival": {"time": "1694891055"}, "stopId": "49299"}, {"stopSequence": 47, "arrival": {"time": "1694891110"}, "stopId": "49300"}, {"stopSequence": 48, "arrival": {"time": "1694891196"}, "stopId": "49301"}, {"stopSequence": 49, "arrival": {"time": "1694891274"}, "stopId": "49302"}, {"stopSequence": 50, "arrival": {"time": "1694891328"}, "stopId": "49303"}, {"stopSequence": 51, "arrival": {"time": "1694891381"}, "stopId": "49304"}, {"stopSequence": 52, "arrival": {"time": "1694891419"}, "stopId": "49305"}, {"stopSequence": 53, "arrival": {"time": "1694891484"}, "stopId": "49306"}, {"stopSequence": 54, "arrival": {"time": "1694891531"}, "stopId": "49307"}, {"stopSequence": 55, "arrival": {"time": "1694891552"}, "stopId": "49308"}, {"stopSequence": 56, "arrival": {"time": "1694891582"}, "stopId": "49309"}, {"stopSequence": 57, "arrival": {"time": "1694891616"}, "stopId": "42315"}, {"stopSequence": 58, "arrival": {"time": "1694891642"}, "stopId": "42316"}, {"stopSequence": 59, "arrival": {"time": "1694891713"}, "stopId": "42317"}, {"stopSequence": 60, "arrival": {"time": "1694891806"}, "stopId": "42319"}, {"stopSequence": 61, "arrival": {"time": "1694891889"}, "stopId": "42320"}, {"stopSequence": 62, "arrival": {"time": "1694891962"}, "stopId": "38514"}, {"stopSequence": 63, "arrival": {"time": "1694892037"}, "stopId": "34586"}, {"stopSequence": 64, "arrival": {"time": "1694892068"}, "stopId": "34587"}, {"stopSequence": 65, "arrival": {"time": "1694892109"}, "stopId": "34588"}, {"stopSequence": 66, "arrival": {"time": "1694892174"}, "stopId": "39497"}, {"stopSequence": 67, "arrival": {"time": "1694892217"}, "stopId": "49407"}, {"stopSequence": 68, "arrival": {"time": "1694892292"}, "stopId": "50034"}, {"stopSequence": 69, "arrival": {"time": "1694892351"}, "stopId": "40903"}, {"stopSequence": 70, "arrival": {"time": "1694892433"}, "stopId": "50035"}, {"stopSequence": 71, "arrival": {"time": "1694892507"}, "stopId": "50036"}, {"stopSequence": 72, "arrival": {"time": "1694892656"}, "stopId": "35712"}, {"stopSequence": 73, "arrival": {"time": "1694892812"}, "stopId": "35713"}], "vehicle": {"licensePlate": "FXRL27"}, "timestamp": "1694889010"}, "vehicle": {"trip": {"tripId": "1bc94f39-4-701ff27f-2", "startTime": "15:12:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "562", "directionId": 0}, "position": {"latitude": -36.93368, "longitude": -73.02919, "bearing": 340.0, "odometer": 0.0, "speed": 5.0}, "timestamp": "1694889010", "vehicle": {"licensePlate": "FXRL27"}}}, {"id": "4f66dd4d-2eac-412e-81ab-57ab04a574a7", "tripUpdate": {"trip": {"tripId": "0e8abda7-4-701ff27f-2", "startTime": "14:48:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "562", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 62, "arrival": {"time": "1694889023"}, "stopId": "38514"}, {"stopSequence": 63, "arrival": {"time": "1694889082"}, "stopId": "34586"}, {"stopSequence": 64, "arrival": {"time": "1694889107"}, "stopId": "34587"}, {"stopSequence": 65, "arrival": {"time": "1694889139"}, "stopId": "34588"}, {"stopSequence": 66, "arrival": {"time": "1694889189"}, "stopId": "39497"}, {"stopSequence": 67, "arrival": {"time": "1694889221"}, "stopId": "49407"}, {"stopSequence": 68, "arrival": {"time": "1694889276"}, "stopId": "50034"}, {"stopSequence": 69, "arrival": {"time": "1694889318"}, "stopId": "40903"}, {"stopSequence": 70, "arrival": {"time": "1694889374"}, "stopId": "50035"}, {"stopSequence": 71, "arrival": {"time": "1694889425"}, "stopId": "50036"}, {"stopSequence": 72, "arrival": {"time": "1694889521"}, "stopId": "35712"}, {"stopSequence": 73, "arrival": {"time": "1694889618"}, "stopId": "35713"}], "vehicle": {"licensePlate": "KHSW90"}, "timestamp": "1694889006"}, "vehicle": {"trip": {"tripId": "0e8abda7-4-701ff27f-2", "startTime": "14:48:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "562", "directionId": 0}, "position": {"latitude": -36.826324, "longitude": -73.04376, "bearing": 62.0, "odometer": 0.0, "speed": 6.6666665}, "timestamp": "1694889006", "vehicle": {"licensePlate": "KHSW90"}}}, {"id": "a7aea2a6-596e-4464-b680-965ad87443c8", "tripUpdate": {"trip": {"tripId": "4aa826f5-e-701ff27f-2", "startTime": "15:24:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "562", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 9, "arrival": {"time": "1694889016"}, "stopId": "43080"}, {"stopSequence": 10, "arrival": {"time": "1694889192"}, "stopId": "42953"}, {"stopSequence": 11, "arrival": {"time": "1694889292"}, "stopId": "20540193"}, {"stopSequence": 12, "arrival": {"time": "1694889346"}, "stopId": "42950"}, {"stopSequence": 13, "arrival": {"time": "1694889398"}, "stopId": "20540195"}, {"stopSequence": 14, "arrival": {"time": "1694889439"}, "stopId": "20540196"}, {"stopSequence": 15, "arrival": {"time": "1694889534"}, "stopId": "20540198"}, {"stopSequence": 16, "arrival": {"time": "1694889553"}, "stopId": "42946"}, {"stopSequence": 17, "arrival": {"time": "1694889602"}, "stopId": "42894"}, {"stopSequence": 18, "arrival": {"time": "1694889636"}, "stopId": "42893"}, {"stopSequence": 19, "arrival": {"time": "1694889656"}, "stopId": "42891"}, {"stopSequence": 20, "arrival": {"time": "1694889710"}, "stopId": "91008"}, {"stopSequence": 21, "arrival": {"time": "1694889800"}, "stopId": "91009"}, {"stopSequence": 22, "arrival": {"time": "1694889858"}, "stopId": "91010"}, {"stopSequence": 23, "arrival": {"time": "1694889911"}, "stopId": "42890"}, {"stopSequence": 24, "arrival": {"time": "1694889949"}, "stopId": "42886"}, {"stopSequence": 25, "arrival": {"time": "1694889972"}, "stopId": "42885"}, {"stopSequence": 26, "arrival": {"time": "1694890032"}, "stopId": "42285"}, {"stopSequence": 27, "arrival": {"time": "1694890127"}, "stopId": "49281"}, {"stopSequence": 28, "arrival": {"time": "1694890184"}, "stopId": "49282"}, {"stopSequence": 29, "arrival": {"time": "1694890231"}, "stopId": "49283"}, {"stopSequence": 30, "arrival": {"time": "1694890284"}, "stopId": "49284"}, {"stopSequence": 31, "arrival": {"time": "1694890344"}, "stopId": "49285"}, {"stopSequence": 32, "arrival": {"time": "1694890411"}, "stopId": "49286"}, {"stopSequence": 33, "arrival": {"time": "1694890459"}, "stopId": "49287"}, {"stopSequence": 34, "arrival": {"time": "1694890500"}, "stopId": "49288"}, {"stopSequence": 35, "arrival": {"time": "1694890550"}, "stopId": "49289"}, {"stopSequence": 36, "arrival": {"time": "1694890691"}, "stopId": "42294"}, {"stopSequence": 37, "arrival": {"time": "1694890825"}, "stopId": "42295"}, {"stopSequence": 38, "arrival": {"time": "1694890938"}, "stopId": "42296"}, {"stopSequence": 39, "arrival": {"time": "1694891085"}, "stopId": "42297"}, {"stopSequence": 40, "arrival": {"time": "1694891181"}, "stopId": "42298"}, {"stopSequence": 41, "arrival": {"time": "1694891258"}, "stopId": "42299"}, {"stopSequence": 42, "arrival": {"time": "1694891297"}, "stopId": "49295"}, {"stopSequence": 43, "arrival": {"time": "1694891441"}, "stopId": "49296"}, {"stopSequence": 44, "arrival": {"time": "1694891544"}, "stopId": "49297"}, {"stopSequence": 45, "arrival": {"time": "1694891583"}, "stopId": "49298"}, {"stopSequence": 46, "arrival": {"time": "1694891663"}, "stopId": "49299"}, {"stopSequence": 47, "arrival": {"time": "1694891727"}, "stopId": "49300"}, {"stopSequence": 48, "arrival": {"time": "1694891826"}, "stopId": "49301"}, {"stopSequence": 49, "arrival": {"time": "1694891917"}, "stopId": "49302"}, {"stopSequence": 50, "arrival": {"time": "1694891979"}, "stopId": "49303"}, {"stopSequence": 51, "arrival": {"time": "1694892041"}, "stopId": "49304"}, {"stopSequence": 52, "arrival": {"time": "1694892086"}, "stopId": "49305"}, {"stopSequence": 53, "arrival": {"time": "1694892163"}, "stopId": "49306"}, {"stopSequence": 54, "arrival": {"time": "1694892220"}, "stopId": "49307"}, {"stopSequence": 55, "arrival": {"time": "1694892244"}, "stopId": "49308"}, {"stopSequence": 56, "arrival": {"time": "1694892280"}, "stopId": "49309"}, {"stopSequence": 57, "arrival": {"time": "1694892321"}, "stopId": "42315"}, {"stopSequence": 58, "arrival": {"time": "1694892353"}, "stopId": "42316"}, {"stopSequence": 59, "arrival": {"time": "1694892438"}, "stopId": "42317"}, {"stopSequence": 60, "arrival": {"time": "1694892551"}, "stopId": "42319"}, {"stopSequence": 61, "arrival": {"time": "1694892652"}, "stopId": "42320"}, {"stopSequence": 62, "arrival": {"time": "1694892743"}, "stopId": "38514"}, {"stopSequence": 63, "arrival": {"time": "1694892835"}, "stopId": "34586"}, {"stopSequence": 64, "arrival": {"time": "1694892874"}, "stopId": "34587"}, {"stopSequence": 65, "arrival": {"time": "1694892925"}, "stopId": "34588"}, {"stopSequence": 66, "arrival": {"time": "1694893007"}, "stopId": "39497"}, {"stopSequence": 67, "arrival": {"time": "1694893061"}, "stopId": "49407"}, {"stopSequence": 68, "arrival": {"time": "1694893156"}, "stopId": "50034"}, {"stopSequence": 69, "arrival": {"time": "1694893231"}, "stopId": "40903"}, {"stopSequence": 70, "arrival": {"time": "1694893335"}, "stopId": "50035"}, {"stopSequence": 71, "arrival": {"time": "1694893431"}, "stopId": "50036"}, {"stopSequence": 72, "arrival": {"time": "1694893624"}, "stopId": "35712"}, {"stopSequence": 73, "arrival": {"time": "1694893829"}, "stopId": "35713"}], "vehicle": {"licensePlate": "KPRY88"}, "timestamp": "1694888986"}, "vehicle": {"trip": {"tripId": "4aa826f5-e-701ff27f-2", "startTime": "15:24:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "562", "directionId": 0}, "position": {"latitude": -36.94523, "longitude": -73.02003, "bearing": 156.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888986", "vehicle": {"licensePlate": "KPRY88"}}}, {"id": "7a4db7d4-3c12-4e0f-9930-ca0f7fc87b65", "tripUpdate": {"trip": {"tripId": "41c40566-f-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "562", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 31, "arrival": {"time": "1694889015"}, "stopId": "49285"}, {"stopSequence": 32, "arrival": {"time": "1694889087"}, "stopId": "49286"}, {"stopSequence": 33, "arrival": {"time": "1694889138"}, "stopId": "49287"}, {"stopSequence": 34, "arrival": {"time": "1694889182"}, "stopId": "49288"}, {"stopSequence": 35, "arrival": {"time": "1694889234"}, "stopId": "49289"}, {"stopSequence": 36, "arrival": {"time": "1694889376"}, "stopId": "42294"}, {"stopSequence": 37, "arrival": {"time": "1694889506"}, "stopId": "42295"}, {"stopSequence": 38, "arrival": {"time": "1694889614"}, "stopId": "42296"}, {"stopSequence": 39, "arrival": {"time": "1694889748"}, "stopId": "42297"}, {"stopSequence": 40, "arrival": {"time": "1694889834"}, "stopId": "42298"}, {"stopSequence": 41, "arrival": {"time": "1694889901"}, "stopId": "42299"}, {"stopSequence": 42, "arrival": {"time": "1694889935"}, "stopId": "49295"}, {"stopSequence": 43, "arrival": {"time": "1694890057"}, "stopId": "49296"}, {"stopSequence": 44, "arrival": {"time": "1694890141"}, "stopId": "49297"}, {"stopSequence": 45, "arrival": {"time": "1694890173"}, "stopId": "49298"}, {"stopSequence": 46, "arrival": {"time": "1694890238"}, "stopId": "49299"}, {"stopSequence": 47, "arrival": {"time": "1694890288"}, "stopId": "49300"}, {"stopSequence": 48, "arrival": {"time": "1694890365"}, "stopId": "49301"}, {"stopSequence": 49, "arrival": {"time": "1694890435"}, "stopId": "49302"}, {"stopSequence": 50, "arrival": {"time": "1694890482"}, "stopId": "49303"}, {"stopSequence": 51, "arrival": {"time": "1694890528"}, "stopId": "49304"}, {"stopSequence": 52, "arrival": {"time": "1694890562"}, "stopId": "49305"}, {"stopSequence": 53, "arrival": {"time": "1694890618"}, "stopId": "49306"}, {"stopSequence": 54, "arrival": {"time": "1694890659"}, "stopId": "49307"}, {"stopSequence": 55, "arrival": {"time": "1694890676"}, "stopId": "49308"}, {"stopSequence": 56, "arrival": {"time": "1694890702"}, "stopId": "49309"}, {"stopSequence": 57, "arrival": {"time": "1694890731"}, "stopId": "42315"}, {"stopSequence": 58, "arrival": {"time": "1694890753"}, "stopId": "42316"}, {"stopSequence": 59, "arrival": {"time": "1694890813"}, "stopId": "42317"}, {"stopSequence": 60, "arrival": {"time": "1694890891"}, "stopId": "42319"}, {"stopSequence": 61, "arrival": {"time": "1694890959"}, "stopId": "42320"}, {"stopSequence": 62, "arrival": {"time": "1694891020"}, "stopId": "38514"}, {"stopSequence": 63, "arrival": {"time": "1694891080"}, "stopId": "34586"}, {"stopSequence": 64, "arrival": {"time": "1694891105"}, "stopId": "34587"}, {"stopSequence": 65, "arrival": {"time": "1694891139"}, "stopId": "34588"}, {"stopSequence": 66, "arrival": {"time": "1694891191"}, "stopId": "39497"}, {"stopSequence": 67, "arrival": {"time": "1694891225"}, "stopId": "49407"}, {"stopSequence": 68, "arrival": {"time": "1694891285"}, "stopId": "50034"}, {"stopSequence": 69, "arrival": {"time": "1694891331"}, "stopId": "40903"}, {"stopSequence": 70, "arrival": {"time": "1694891395"}, "stopId": "50035"}, {"stopSequence": 71, "arrival": {"time": "1694891453"}, "stopId": "50036"}, {"stopSequence": 72, "arrival": {"time": "1694891568"}, "stopId": "35712"}, {"stopSequence": 73, "arrival": {"time": "1694891686"}, "stopId": "35713"}], "vehicle": {"licensePlate": "YT2157"}, "timestamp": "1694888976"}, "vehicle": {"trip": {"tripId": "41c40566-f-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "562", "directionId": 0}, "position": {"latitude": -36.907295, "longitude": -73.029686, "bearing": 354.0, "odometer": 0.0, "speed": 11.666667}, "timestamp": "1694888976", "vehicle": {"licensePlate": "YT2157"}}}, {"id": "a920c00a-9741-46ab-8bca-a23deb495c94", "tripUpdate": {"trip": {"tripId": "8be7751a-7-701ff27f-2", "startTime": "15:13:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "562", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 11, "arrival": {"time": "1694889051"}, "stopId": "37477"}, {"stopSequence": 12, "arrival": {"time": "1694889116"}, "stopId": "40848"}, {"stopSequence": 13, "arrival": {"time": "1694889205"}, "stopId": "2-Apr"}, {"stopSequence": 14, "arrival": {"time": "1694889264"}, "stopId": "39728"}, {"stopSequence": 15, "arrival": {"time": "1694889365"}, "stopId": "39729"}, {"stopSequence": 16, "arrival": {"time": "1694889384"}, "stopId": "39730"}, {"stopSequence": 17, "arrival": {"time": "1694889492"}, "stopId": "42200"}, {"stopSequence": 18, "arrival": {"time": "1694889536"}, "stopId": "42203"}, {"stopSequence": 19, "arrival": {"time": "1694889594"}, "stopId": "42204"}, {"stopSequence": 20, "arrival": {"time": "1694889626"}, "stopId": "42205"}, {"stopSequence": 21, "arrival": {"time": "1694889691"}, "stopId": "42201"}, {"stopSequence": 22, "arrival": {"time": "1694889935"}, "stopId": "42206"}, {"stopSequence": 23, "arrival": {"time": "1694889989"}, "stopId": "42207"}, {"stopSequence": 24, "arrival": {"time": "1694890052"}, "stopId": "42208"}, {"stopSequence": 25, "arrival": {"time": "1694890170"}, "stopId": "42564"}, {"stopSequence": 26, "arrival": {"time": "1694890273"}, "stopId": "42214"}, {"stopSequence": 27, "arrival": {"time": "1694890383"}, "stopId": "42209"}, {"stopSequence": 28, "arrival": {"time": "1694890491"}, "stopId": "42210"}, {"stopSequence": 29, "arrival": {"time": "1694890674"}, "stopId": "40951"}, {"stopSequence": 30, "arrival": {"time": "1694890738"}, "stopId": "40952"}, {"stopSequence": 31, "arrival": {"time": "1694890799"}, "stopId": "40953"}, {"stopSequence": 32, "arrival": {"time": "1694890844"}, "stopId": "40954"}, {"stopSequence": 33, "arrival": {"time": "1694890917"}, "stopId": "40955"}, {"stopSequence": 34, "arrival": {"time": "1694890953"}, "stopId": "40956"}, {"stopSequence": 35, "arrival": {"time": "1694891018"}, "stopId": "40957"}, {"stopSequence": 36, "arrival": {"time": "1694891081"}, "stopId": "40958"}, {"stopSequence": 37, "arrival": {"time": "1694891106"}, "stopId": "40959"}, {"stopSequence": 38, "arrival": {"time": "1694891265"}, "stopId": "42897"}, {"stopSequence": 39, "arrival": {"time": "1694891337"}, "stopId": "42898"}, {"stopSequence": 40, "arrival": {"time": "1694891407"}, "stopId": "91011"}, {"stopSequence": 41, "arrival": {"time": "1694891468"}, "stopId": "91012"}, {"stopSequence": 42, "arrival": {"time": "1694891581"}, "stopId": "91013"}, {"stopSequence": 43, "arrival": {"time": "1694891656"}, "stopId": "91014"}, {"stopSequence": 44, "arrival": {"time": "1694891717"}, "stopId": "42945"}, {"stopSequence": 45, "arrival": {"time": "1694891774"}, "stopId": "42947"}, {"stopSequence": 46, "arrival": {"time": "1694891828"}, "stopId": "42949"}, {"stopSequence": 47, "arrival": {"time": "1694891997"}, "stopId": "20540195"}, {"stopSequence": 48, "arrival": {"time": "1694892038"}, "stopId": "42951"}, {"stopSequence": 49, "arrival": {"time": "1694892089"}, "stopId": "20540194"}, {"stopSequence": 50, "arrival": {"time": "1694892159"}, "stopId": "42952"}, {"stopSequence": 51, "arrival": {"time": "1694892209"}, "stopId": "42958"}, {"stopSequence": 52, "arrival": {"time": "1694892253"}, "stopId": "42955"}, {"stopSequence": 53, "arrival": {"time": "1694892286"}, "stopId": "42954"}, {"stopSequence": 54, "arrival": {"time": "1694892354"}, "stopId": "20540192"}, {"stopSequence": 55, "arrival": {"time": "1694892393"}, "stopId": "42979"}, {"stopSequence": 56, "arrival": {"time": "1694892482"}, "stopId": "20540201"}, {"stopSequence": 57, "arrival": {"time": "1694892538"}, "stopId": "43082"}, {"stopSequence": 58, "arrival": {"time": "1694892573"}, "stopId": "20540202"}, {"stopSequence": 59, "arrival": {"time": "1694892622"}, "stopId": "43080"}, {"stopSequence": 60, "arrival": {"time": "1694892867"}, "stopId": "42983"}, {"stopSequence": 61, "arrival": {"time": "1694892980"}, "stopId": "20540199"}, {"stopSequence": 62, "arrival": {"time": "1694893035"}, "stopId": "42957"}], "vehicle": {"licensePlate": "YU8339"}, "timestamp": "1694888980"}, "vehicle": {"trip": {"tripId": "8be7751a-7-701ff27f-2", "startTime": "15:13:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "562", "directionId": 1}, "position": {"latitude": -36.82853, "longitude": -73.05193, "bearing": 244.0, "odometer": 0.0, "speed": 1.1111112}, "timestamp": "1694888980", "vehicle": {"licensePlate": "YU8339"}}}, {"id": "f632c6be-60bb-47ca-9afe-b9bd177374ca", "tripUpdate": {"trip": {"tripId": "17357-701ff27f-2", "startTime": "14:40:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "565", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 7, "arrival": {"time": "1694889018"}, "stopId": "13-Feb"}, {"stopSequence": 8, "arrival": {"time": "1694889047"}, "stopId": "28-Jan"}, {"stopSequence": 9, "arrival": {"time": "1694889097"}, "stopId": "12-3"}, {"stopSequence": 10, "arrival": {"time": "1694889177"}, "stopId": "12-Jan"}, {"stopSequence": 11, "arrival": {"time": "1694889222"}, "stopId": "12-Feb"}, {"stopSequence": 12, "arrival": {"time": "1694889277"}, "stopId": "7-Jan"}, {"stopSequence": 13, "arrival": {"time": "1694889332"}, "stopId": "7-Mar"}, {"stopSequence": 14, "arrival": {"time": "1694889476"}, "stopId": "7-Jun"}, {"stopSequence": 15, "arrival": {"time": "1694889536"}, "stopId": "7-Aug"}, {"stopSequence": 16, "arrival": {"time": "1694889612"}, "stopId": "6-Jan"}, {"stopSequence": 17, "arrival": {"time": "1694889679"}, "stopId": "6-Mar"}, {"stopSequence": 18, "arrival": {"time": "1694889779"}, "stopId": "6-May"}, {"stopSequence": 19, "arrival": {"time": "1694889928"}, "stopId": "6-Jul"}, {"stopSequence": 20, "arrival": {"time": "1694889993"}, "stopId": "6-Sep"}, {"stopSequence": 21, "arrival": {"time": "1694890073"}, "stopId": "6-Nov"}, {"stopSequence": 22, "arrival": {"time": "1694890181"}, "stopId": "6-Dec"}, {"stopSequence": 23, "arrival": {"time": "1694890270"}, "stopId": "Jun-14"}, {"stopSequence": 24, "arrival": {"time": "1694890417"}, "stopId": "Jun-17"}, {"stopSequence": 25, "arrival": {"time": "1694890496"}, "stopId": "Jun-19"}, {"stopSequence": 26, "arrival": {"time": "1694890555"}, "stopId": "Jun-20"}, {"stopSequence": 27, "arrival": {"time": "1694890617"}, "stopId": "Jun-22"}, {"stopSequence": 28, "arrival": {"time": "1694890682"}, "stopId": "Jun-24"}, {"stopSequence": 29, "arrival": {"time": "1694890773"}, "stopId": "Jun-25"}, {"stopSequence": 30, "arrival": {"time": "1694891074"}, "stopId": "90003"}, {"stopSequence": 31, "arrival": {"time": "1694891124"}, "stopId": "90007"}, {"stopSequence": 32, "arrival": {"time": "1694891169"}, "stopId": "40830"}, {"stopSequence": 33, "arrival": {"time": "1694891209"}, "stopId": "40831"}, {"stopSequence": 34, "arrival": {"time": "1694891302"}, "stopId": "39599"}, {"stopSequence": 35, "arrival": {"time": "1694891328"}, "stopId": "39600"}, {"stopSequence": 36, "arrival": {"time": "1694891404"}, "stopId": "37496"}, {"stopSequence": 37, "arrival": {"time": "1694891461"}, "stopId": "45064"}, {"stopSequence": 38, "arrival": {"time": "1694891548"}, "stopId": "37506"}, {"stopSequence": 39, "arrival": {"time": "1694891604"}, "stopId": "45068"}, {"stopSequence": 40, "arrival": {"time": "1694891749"}, "stopId": "37480"}, {"stopSequence": 41, "arrival": {"time": "1694891827"}, "stopId": "37477"}, {"stopSequence": 42, "arrival": {"time": "1694891914"}, "stopId": "40848"}, {"stopSequence": 43, "arrival": {"time": "1694892024"}, "stopId": "2-Apr"}, {"stopSequence": 44, "arrival": {"time": "1694892101"}, "stopId": "39728"}, {"stopSequence": 45, "arrival": {"time": "1694892236"}, "stopId": "39729"}, {"stopSequence": 46, "arrival": {"time": "1694892271"}, "stopId": "39730"}, {"stopSequence": 47, "arrival": {"time": "1694892420"}, "stopId": "42200"}, {"stopSequence": 48, "arrival": {"time": "1694892489"}, "stopId": "42203"}, {"stopSequence": 49, "arrival": {"time": "1694892585"}, "stopId": "42204"}, {"stopSequence": 50, "arrival": {"time": "1694892636"}, "stopId": "42205"}, {"stopSequence": 51, "arrival": {"time": "1694892732"}, "stopId": "42201"}, {"stopSequence": 52, "arrival": {"time": "1694893147"}, "stopId": "42206"}, {"stopSequence": 53, "arrival": {"time": "1694893262"}, "stopId": "42207"}, {"stopSequence": 54, "arrival": {"time": "1694893374"}, "stopId": "42208"}, {"stopSequence": 55, "arrival": {"time": "1694893622"}, "stopId": "42564"}, {"stopSequence": 56, "arrival": {"time": "1694893848"}, "stopId": "42214"}, {"stopSequence": 57, "arrival": {"time": "1694894081"}, "stopId": "42209"}, {"stopSequence": 58, "arrival": {"time": "1694894362"}, "stopId": "42210"}, {"stopSequence": 59, "arrival": {"time": "1694894826"}, "stopId": "40951"}, {"stopSequence": 60, "arrival": {"time": "1694895001"}, "stopId": "40952"}, {"stopSequence": 61, "arrival": {"time": "1694895175"}, "stopId": "40953"}, {"stopSequence": 62, "arrival": {"time": "1694895311"}, "stopId": "40954"}, {"stopSequence": 63, "arrival": {"time": "1694895540"}, "stopId": "40955"}, {"stopSequence": 64, "arrival": {"time": "1694895666"}, "stopId": "40956"}, {"stopSequence": 65, "arrival": {"time": "1694895867"}, "stopId": "40957"}, {"stopSequence": 66, "arrival": {"time": "1694896058"}, "stopId": "40958"}, {"stopSequence": 67, "arrival": {"time": "1694896158"}, "stopId": "40959"}, {"stopSequence": 68, "arrival": {"time": "1694896433"}, "stopId": "42223"}, {"stopSequence": 69, "arrival": {"time": "1694897830"}, "stopId": "42228"}, {"stopSequence": 70, "arrival": {"time": "1694898068"}, "stopId": "42229"}, {"stopSequence": 71, "arrival": {"time": "1694898496"}, "stopId": "42230"}, {"stopSequence": 72, "arrival": {"time": "1694898777"}, "stopId": "42231"}, {"stopSequence": 73, "arrival": {"time": "1694899285"}, "stopId": "42232"}, {"stopSequence": 74, "arrival": {"time": "1694901052"}, "stopId": "34557"}, {"stopSequence": 75, "arrival": {"time": "1694901893"}, "stopId": "42212"}, {"stopSequence": 76, "arrival": {"time": "1694902820"}, "stopId": "34560"}, {"stopSequence": 77, "arrival": {"time": "1694903238"}, "stopId": "42273"}, {"stopSequence": 78, "arrival": {"time": "1694904848"}, "stopId": "49203"}, {"stopSequence": 79, "arrival": {"time": "1694905685"}, "stopId": "49204"}, {"stopSequence": 80, "arrival": {"time": "1694905844"}, "stopId": "42503"}, {"stopSequence": 81, "arrival": {"time": "1694906057"}, "stopId": "49264"}], "vehicle": {"licensePlate": "CTKZ93"}, "timestamp": "1694889004"}, "vehicle": {"trip": {"tripId": "17357-701ff27f-2", "startTime": "14:40:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "565", "directionId": 1}, "position": {"latitude": -36.734737, "longitude": -72.99088, "bearing": 246.0, "odometer": 0.0, "speed": 9.166667}, "timestamp": "1694889004", "vehicle": {"licensePlate": "CTKZ93"}}}, {"id": "2f7035f0-f82e-42a2-a29e-4f368f82abf9", "tripUpdate": {"trip": {"tripId": "17436-701ff27f-2", "startTime": "15:04:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "565", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 40, "arrival": {"time": "1694889028"}, "stopId": "49303"}, {"stopSequence": 41, "arrival": {"time": "1694889078"}, "stopId": "49304"}, {"stopSequence": 42, "arrival": {"time": "1694889114"}, "stopId": "49305"}, {"stopSequence": 43, "arrival": {"time": "1694889173"}, "stopId": "49306"}, {"stopSequence": 44, "arrival": {"time": "1694889214"}, "stopId": "49307"}, {"stopSequence": 45, "arrival": {"time": "1694889239"}, "stopId": "49308"}, {"stopSequence": 46, "arrival": {"time": "1694889264"}, "stopId": "49309"}, {"stopSequence": 47, "arrival": {"time": "1694889334"}, "stopId": "49310"}, {"stopSequence": 48, "arrival": {"time": "1694889365"}, "stopId": "49311"}, {"stopSequence": 49, "arrival": {"time": "1694889390"}, "stopId": "39633"}, {"stopSequence": 50, "arrival": {"time": "1694889422"}, "stopId": "35796"}, {"stopSequence": 51, "arrival": {"time": "1694889470"}, "stopId": "35797"}, {"stopSequence": 52, "arrival": {"time": "1694889511"}, "stopId": "35798"}, {"stopSequence": 53, "arrival": {"time": "1694889549"}, "stopId": "35799"}, {"stopSequence": 54, "arrival": {"time": "1694889618"}, "stopId": "35800"}, {"stopSequence": 55, "arrival": {"time": "1694889666"}, "stopId": "35801"}, {"stopSequence": 56, "arrival": {"time": "1694889692"}, "stopId": "35802"}, {"stopSequence": 57, "arrival": {"time": "1694889738"}, "stopId": "35803"}, {"stopSequence": 58, "arrival": {"time": "1694889792"}, "stopId": "38507"}, {"stopSequence": 59, "arrival": {"time": "1694889841"}, "stopId": "34473"}, {"stopSequence": 60, "arrival": {"time": "1694889884"}, "stopId": "38500"}, {"stopSequence": 61, "arrival": {"time": "1694889929"}, "stopId": "35808"}, {"stopSequence": 62, "arrival": {"time": "1694889985"}, "stopId": "35710"}, {"stopSequence": 63, "arrival": {"time": "1694890028"}, "stopId": "50036"}, {"stopSequence": 64, "arrival": {"time": "1694890246"}, "stopId": "50037"}, {"stopSequence": 65, "arrival": {"time": "1694890392"}, "stopId": "50038"}, {"stopSequence": 66, "arrival": {"time": "1694890468"}, "stopId": "50039"}, {"stopSequence": 67, "arrival": {"time": "1694890524"}, "stopId": "50040"}, {"stopSequence": 68, "arrival": {"time": "1694890608"}, "stopId": "50041"}, {"stopSequence": 69, "arrival": {"time": "1694890751"}, "stopId": "Jun-15"}, {"stopSequence": 70, "arrival": {"time": "1694890854"}, "stopId": "Jun-13"}, {"stopSequence": 71, "arrival": {"time": "1694891060"}, "stopId": "6-Oct"}, {"stopSequence": 72, "arrival": {"time": "1694891116"}, "stopId": "6-Aug"}, {"stopSequence": 73, "arrival": {"time": "1694891297"}, "stopId": "6-Jun"}, {"stopSequence": 74, "arrival": {"time": "1694891438"}, "stopId": "6-Feb"}, {"stopSequence": 75, "arrival": {"time": "1694891644"}, "stopId": "44956"}, {"stopSequence": 76, "arrival": {"time": "1694891691"}, "stopId": "44957"}, {"stopSequence": 77, "arrival": {"time": "1694891825"}, "stopId": "45057"}, {"stopSequence": 78, "arrival": {"time": "1694891901"}, "stopId": "44963"}, {"stopSequence": 79, "arrival": {"time": "1694892044"}, "stopId": "34493"}, {"stopSequence": 80, "arrival": {"time": "1694892115"}, "stopId": "50019"}, {"stopSequence": 81, "arrival": {"time": "1694892237"}, "stopId": "10-Jan"}, {"stopSequence": 82, "arrival": {"time": "1694892306"}, "stopId": "44863"}, {"stopSequence": 83, "arrival": {"time": "1694892351"}, "stopId": "10-Mar"}, {"stopSequence": 84, "arrival": {"time": "1694892433"}, "stopId": "11-Jan"}, {"stopSequence": 85, "arrival": {"time": "1694892512"}, "stopId": "39943"}, {"stopSequence": 86, "arrival": {"time": "1694892552"}, "stopId": "39944"}, {"stopSequence": 87, "arrival": {"time": "1694892753"}, "stopId": "39947"}, {"stopSequence": 88, "arrival": {"time": "1694892810"}, "stopId": "39949"}, {"stopSequence": 89, "arrival": {"time": "1694892827"}, "stopId": "39950"}, {"stopSequence": 90, "arrival": {"time": "1694892912"}, "stopId": "39952"}, {"stopSequence": 91, "arrival": {"time": "1694893058"}, "stopId": "34529"}], "vehicle": {"licensePlate": "DTRV85"}, "timestamp": "1694888982"}, "vehicle": {"trip": {"tripId": "17436-701ff27f-2", "startTime": "15:04:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "565", "directionId": 0}, "position": {"latitude": -36.844116, "longitude": -73.052505, "bearing": 336.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888982", "vehicle": {"licensePlate": "DTRV85"}}}, {"id": "629206a6-5f5c-48e3-934d-577a00ed01be", "tripUpdate": {"trip": {"tripId": "17434-701ff27f-2", "startTime": "14:40:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "565", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 64, "arrival": {"time": "1694889062"}, "stopId": "50037"}, {"stopSequence": 65, "arrival": {"time": "1694889219"}, "stopId": "50038"}, {"stopSequence": 66, "arrival": {"time": "1694889298"}, "stopId": "50039"}, {"stopSequence": 67, "arrival": {"time": "1694889356"}, "stopId": "50040"}, {"stopSequence": 68, "arrival": {"time": "1694889441"}, "stopId": "50041"}, {"stopSequence": 69, "arrival": {"time": "1694889582"}, "stopId": "Jun-15"}, {"stopSequence": 70, "arrival": {"time": "1694889680"}, "stopId": "Jun-13"}, {"stopSequence": 71, "arrival": {"time": "1694889871"}, "stopId": "6-Oct"}, {"stopSequence": 72, "arrival": {"time": "1694889921"}, "stopId": "6-Aug"}, {"stopSequence": 73, "arrival": {"time": "1694890079"}, "stopId": "6-Jun"}, {"stopSequence": 74, "arrival": {"time": "1694890198"}, "stopId": "6-Feb"}, {"stopSequence": 75, "arrival": {"time": "1694890367"}, "stopId": "44956"}, {"stopSequence": 76, "arrival": {"time": "1694890404"}, "stopId": "44957"}, {"stopSequence": 77, "arrival": {"time": "1694890510"}, "stopId": "45057"}, {"stopSequence": 78, "arrival": {"time": "1694890568"}, "stopId": "44963"}, {"stopSequence": 79, "arrival": {"time": "1694890677"}, "stopId": "34493"}, {"stopSequence": 80, "arrival": {"time": "1694890729"}, "stopId": "50019"}, {"stopSequence": 81, "arrival": {"time": "1694890819"}, "stopId": "10-Jan"}, {"stopSequence": 82, "arrival": {"time": "1694890869"}, "stopId": "44863"}, {"stopSequence": 83, "arrival": {"time": "1694890901"}, "stopId": "10-Mar"}, {"stopSequence": 84, "arrival": {"time": "1694890959"}, "stopId": "11-Jan"}, {"stopSequence": 85, "arrival": {"time": "1694891015"}, "stopId": "39943"}, {"stopSequence": 86, "arrival": {"time": "1694891043"}, "stopId": "39944"}, {"stopSequence": 87, "arrival": {"time": "1694891179"}, "stopId": "39947"}, {"stopSequence": 88, "arrival": {"time": "1694891218"}, "stopId": "39949"}, {"stopSequence": 89, "arrival": {"time": "1694891229"}, "stopId": "39950"}, {"stopSequence": 90, "arrival": {"time": "1694891285"}, "stopId": "39952"}, {"stopSequence": 91, "arrival": {"time": "1694891380"}, "stopId": "34529"}], "vehicle": {"licensePlate": "FFVL86"}, "timestamp": "1694889035"}, "vehicle": {"trip": {"tripId": "17434-701ff27f-2", "startTime": "14:40:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "565", "directionId": 0}, "position": {"latitude": -36.80567, "longitude": -73.02416, "bearing": 345.0, "odometer": 0.0, "speed": 19.722221}, "timestamp": "1694889035", "vehicle": {"licensePlate": "FFVL86"}}}, {"id": "c3f27192-19ad-4426-b8da-1ccbb6f97496", "tripUpdate": {"trip": {"tripId": "17437-701ff27f-2", "startTime": "15:16:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "565", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 27, "arrival": {"time": "1694889100"}, "stopId": "42295"}, {"stopSequence": 28, "arrival": {"time": "1694889220"}, "stopId": "42296"}, {"stopSequence": 29, "arrival": {"time": "1694889349"}, "stopId": "42297"}, {"stopSequence": 30, "arrival": {"time": "1694889447"}, "stopId": "42298"}, {"stopSequence": 31, "arrival": {"time": "1694889511"}, "stopId": "42299"}, {"stopSequence": 32, "arrival": {"time": "1694889553"}, "stopId": "49295"}, {"stopSequence": 33, "arrival": {"time": "1694889673"}, "stopId": "49296"}, {"stopSequence": 34, "arrival": {"time": "1694889757"}, "stopId": "49297"}, {"stopSequence": 35, "arrival": {"time": "1694889792"}, "stopId": "49298"}, {"stopSequence": 36, "arrival": {"time": "1694889851"}, "stopId": "49299"}, {"stopSequence": 37, "arrival": {"time": "1694889902"}, "stopId": "49300"}, {"stopSequence": 38, "arrival": {"time": "1694889983"}, "stopId": "49301"}, {"stopSequence": 39, "arrival": {"time": "1694890048"}, "stopId": "49302"}, {"stopSequence": 40, "arrival": {"time": "1694890092"}, "stopId": "49303"}, {"stopSequence": 41, "arrival": {"time": "1694890138"}, "stopId": "49304"}, {"stopSequence": 42, "arrival": {"time": "1694890171"}, "stopId": "49305"}, {"stopSequence": 43, "arrival": {"time": "1694890225"}, "stopId": "49306"}, {"stopSequence": 44, "arrival": {"time": "1694890264"}, "stopId": "49307"}, {"stopSequence": 45, "arrival": {"time": "1694890288"}, "stopId": "49308"}, {"stopSequence": 46, "arrival": {"time": "1694890311"}, "stopId": "49309"}, {"stopSequence": 47, "arrival": {"time": "1694890378"}, "stopId": "49310"}, {"stopSequence": 48, "arrival": {"time": "1694890409"}, "stopId": "49311"}, {"stopSequence": 49, "arrival": {"time": "1694890433"}, "stopId": "39633"}, {"stopSequence": 50, "arrival": {"time": "1694890464"}, "stopId": "35796"}, {"stopSequence": 51, "arrival": {"time": "1694890512"}, "stopId": "35797"}, {"stopSequence": 52, "arrival": {"time": "1694890553"}, "stopId": "35798"}, {"stopSequence": 53, "arrival": {"time": "1694890591"}, "stopId": "35799"}, {"stopSequence": 54, "arrival": {"time": "1694890661"}, "stopId": "35800"}, {"stopSequence": 55, "arrival": {"time": "1694890711"}, "stopId": "35801"}, {"stopSequence": 56, "arrival": {"time": "1694890737"}, "stopId": "35802"}, {"stopSequence": 57, "arrival": {"time": "1694890785"}, "stopId": "35803"}, {"stopSequence": 58, "arrival": {"time": "1694890842"}, "stopId": "38507"}, {"stopSequence": 59, "arrival": {"time": "1694890894"}, "stopId": "34473"}, {"stopSequence": 60, "arrival": {"time": "1694890940"}, "stopId": "38500"}, {"stopSequence": 61, "arrival": {"time": "1694890989"}, "stopId": "35808"}, {"stopSequence": 62, "arrival": {"time": "1694891050"}, "stopId": "35710"}, {"stopSequence": 63, "arrival": {"time": "1694891098"}, "stopId": "50036"}, {"stopSequence": 64, "arrival": {"time": "1694891344"}, "stopId": "50037"}, {"stopSequence": 65, "arrival": {"time": "1694891516"}, "stopId": "50038"}, {"stopSequence": 66, "arrival": {"time": "1694891606"}, "stopId": "50039"}, {"stopSequence": 67, "arrival": {"time": "1694891673"}, "stopId": "50040"}, {"stopSequence": 68, "arrival": {"time": "1694891777"}, "stopId": "50041"}, {"stopSequence": 69, "arrival": {"time": "1694891956"}, "stopId": "Jun-15"}, {"stopSequence": 70, "arrival": {"time": "1694892088"}, "stopId": "Jun-13"}, {"stopSequence": 71, "arrival": {"time": "1694892358"}, "stopId": "6-Oct"}, {"stopSequence": 72, "arrival": {"time": "1694892433"}, "stopId": "6-Aug"}, {"stopSequence": 73, "arrival": {"time": "1694892681"}, "stopId": "6-Jun"}, {"stopSequence": 74, "arrival": {"time": "1694892880"}, "stopId": "6-Feb"}, {"stopSequence": 75, "arrival": {"time": "1694893178"}, "stopId": "44956"}, {"stopSequence": 76, "arrival": {"time": "1694893246"}, "stopId": "44957"}, {"stopSequence": 77, "arrival": {"time": "1694893448"}, "stopId": "45057"}, {"stopSequence": 78, "arrival": {"time": "1694893562"}, "stopId": "44963"}, {"stopSequence": 79, "arrival": {"time": "1694893785"}, "stopId": "34493"}, {"stopSequence": 80, "arrival": {"time": "1694893896"}, "stopId": "50019"}, {"stopSequence": 81, "arrival": {"time": "1694894091"}, "stopId": "10-Jan"}, {"stopSequence": 82, "arrival": {"time": "1694894203"}, "stopId": "44863"}, {"stopSequence": 83, "arrival": {"time": "1694894278"}, "stopId": "10-Mar"}, {"stopSequence": 84, "arrival": {"time": "1694894412"}, "stopId": "11-Jan"}, {"stopSequence": 85, "arrival": {"time": "1694894546"}, "stopId": "39943"}, {"stopSequence": 86, "arrival": {"time": "1694894613"}, "stopId": "39944"}, {"stopSequence": 87, "arrival": {"time": "1694894958"}, "stopId": "39947"}, {"stopSequence": 88, "arrival": {"time": "1694895059"}, "stopId": "39949"}, {"stopSequence": 89, "arrival": {"time": "1694895089"}, "stopId": "39950"}, {"stopSequence": 90, "arrival": {"time": "1694895240"}, "stopId": "39952"}, {"stopSequence": 91, "arrival": {"time": "1694895503"}, "stopId": "34529"}], "vehicle": {"licensePlate": "FYBC82"}, "timestamp": "1694889037"}, "vehicle": {"trip": {"tripId": "17437-701ff27f-2", "startTime": "15:16:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "565", "directionId": 0}, "position": {"latitude": -36.88749, "longitude": -73.03663, "bearing": 335.0, "odometer": 0.0, "speed": 17.777779}, "timestamp": "1694889037", "vehicle": {"licensePlate": "FYBC82"}}}, {"id": "257e3f37-f8e4-4c5b-8073-3c65eaea43c3", "tripUpdate": {"trip": {"tripId": "17438-701ff27f-2", "startTime": "15:28:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "565", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 3, "arrival": {"time": "1694889050"}, "stopId": "42501"}, {"stopSequence": 4, "arrival": {"time": "1694889069"}, "stopId": "49267"}, {"stopSequence": 5, "arrival": {"time": "1694889149"}, "stopId": "42274"}, {"stopSequence": 6, "arrival": {"time": "1694889230"}, "stopId": "42275"}, {"stopSequence": 7, "arrival": {"time": "1694889272"}, "stopId": "42276"}, {"stopSequence": 8, "arrival": {"time": "1694889356"}, "stopId": "42277"}, {"stopSequence": 9, "arrival": {"time": "1694889439"}, "stopId": "42278"}, {"stopSequence": 10, "arrival": {"time": "1694889480"}, "stopId": "42279"}, {"stopSequence": 11, "arrival": {"time": "1694889561"}, "stopId": "42280"}, {"stopSequence": 12, "arrival": {"time": "1694889603"}, "stopId": "42281"}, {"stopSequence": 13, "arrival": {"time": "1694889678"}, "stopId": "42282"}, {"stopSequence": 14, "arrival": {"time": "1694889732"}, "stopId": "42283"}, {"stopSequence": 15, "arrival": {"time": "1694889795"}, "stopId": "49279"}, {"stopSequence": 16, "arrival": {"time": "1694889872"}, "stopId": "42285"}, {"stopSequence": 17, "arrival": {"time": "1694889965"}, "stopId": "49281"}, {"stopSequence": 18, "arrival": {"time": "1694890026"}, "stopId": "49282"}, {"stopSequence": 19, "arrival": {"time": "1694890068"}, "stopId": "49283"}, {"stopSequence": 20, "arrival": {"time": "1694890123"}, "stopId": "49284"}, {"stopSequence": 21, "arrival": {"time": "1694890188"}, "stopId": "49285"}, {"stopSequence": 22, "arrival": {"time": "1694890255"}, "stopId": "49286"}, {"stopSequence": 23, "arrival": {"time": "1694890302"}, "stopId": "49287"}, {"stopSequence": 24, "arrival": {"time": "1694890341"}, "stopId": "49288"}, {"stopSequence": 25, "arrival": {"time": "1694890387"}, "stopId": "49289"}, {"stopSequence": 26, "arrival": {"time": "1694890520"}, "stopId": "42294"}, {"stopSequence": 27, "arrival": {"time": "1694890655"}, "stopId": "42295"}, {"stopSequence": 28, "arrival": {"time": "1694890771"}, "stopId": "42296"}, {"stopSequence": 29, "arrival": {"time": "1694890900"}, "stopId": "42297"}, {"stopSequence": 30, "arrival": {"time": "1694891002"}, "stopId": "42298"}, {"stopSequence": 31, "arrival": {"time": "1694891070"}, "stopId": "42299"}, {"stopSequence": 32, "arrival": {"time": "1694891116"}, "stopId": "49295"}, {"stopSequence": 33, "arrival": {"time": "1694891248"}, "stopId": "49296"}, {"stopSequence": 34, "arrival": {"time": "1694891344"}, "stopId": "49297"}, {"stopSequence": 35, "arrival": {"time": "1694891385"}, "stopId": "49298"}, {"stopSequence": 36, "arrival": {"time": "1694891454"}, "stopId": "49299"}, {"stopSequence": 37, "arrival": {"time": "1694891515"}, "stopId": "49300"}, {"stopSequence": 38, "arrival": {"time": "1694891614"}, "stopId": "49301"}, {"stopSequence": 39, "arrival": {"time": "1694891697"}, "stopId": "49302"}, {"stopSequence": 40, "arrival": {"time": "1694891752"}, "stopId": "49303"}, {"stopSequence": 41, "arrival": {"time": "1694891811"}, "stopId": "49304"}, {"stopSequence": 42, "arrival": {"time": "1694891854"}, "stopId": "49305"}, {"stopSequence": 43, "arrival": {"time": "1694891927"}, "stopId": "49306"}, {"stopSequence": 44, "arrival": {"time": "1694891979"}, "stopId": "49307"}, {"stopSequence": 45, "arrival": {"time": "1694892010"}, "stopId": "49308"}, {"stopSequence": 46, "arrival": {"time": "1694892043"}, "stopId": "49309"}, {"stopSequence": 47, "arrival": {"time": "1694892135"}, "stopId": "49310"}, {"stopSequence": 48, "arrival": {"time": "1694892178"}, "stopId": "49311"}, {"stopSequence": 49, "arrival": {"time": "1694892212"}, "stopId": "39633"}, {"stopSequence": 50, "arrival": {"time": "1694892256"}, "stopId": "35796"}, {"stopSequence": 51, "arrival": {"time": "1694892325"}, "stopId": "35797"}, {"stopSequence": 52, "arrival": {"time": "1694892385"}, "stopId": "35798"}, {"stopSequence": 53, "arrival": {"time": "1694892441"}, "stopId": "35799"}, {"stopSequence": 54, "arrival": {"time": "1694892546"}, "stopId": "35800"}, {"stopSequence": 55, "arrival": {"time": "1694892621"}, "stopId": "35801"}, {"stopSequence": 56, "arrival": {"time": "1694892662"}, "stopId": "35802"}, {"stopSequence": 57, "arrival": {"time": "1694892737"}, "stopId": "35803"}, {"stopSequence": 58, "arrival": {"time": "1694892827"}, "stopId": "38507"}, {"stopSequence": 59, "arrival": {"time": "1694892911"}, "stopId": "34473"}, {"stopSequence": 60, "arrival": {"time": "1694892986"}, "stopId": "38500"}, {"stopSequence": 61, "arrival": {"time": "1694893065"}, "stopId": "35808"}, {"stopSequence": 62, "arrival": {"time": "1694893168"}, "stopId": "35710"}, {"stopSequence": 63, "arrival": {"time": "1694893250"}, "stopId": "50036"}, {"stopSequence": 64, "arrival": {"time": "1694893687"}, "stopId": "50037"}, {"stopSequence": 65, "arrival": {"time": "1694894008"}, "stopId": "50038"}, {"stopSequence": 66, "arrival": {"time": "1694894184"}, "stopId": "50039"}, {"stopSequence": 67, "arrival": {"time": "1694894318"}, "stopId": "50040"}, {"stopSequence": 68, "arrival": {"time": "1694894530"}, "stopId": "50041"}, {"stopSequence": 69, "arrival": {"time": "1694894909"}, "stopId": "Jun-15"}, {"stopSequence": 70, "arrival": {"time": "1694895200"}, "stopId": "Jun-13"}, {"stopSequence": 71, "arrival": {"time": "1694895831"}, "stopId": "6-Oct"}, {"stopSequence": 72, "arrival": {"time": "1694896015"}, "stopId": "6-Aug"}, {"stopSequence": 73, "arrival": {"time": "1694896651"}, "stopId": "6-Jun"}, {"stopSequence": 74, "arrival": {"time": "1694897194"}, "stopId": "6-Feb"}, {"stopSequence": 75, "arrival": {"time": "1694898070"}, "stopId": "44956"}, {"stopSequence": 76, "arrival": {"time": "1694898282"}, "stopId": "44957"}, {"stopSequence": 77, "arrival": {"time": "1694898934"}, "stopId": "45057"}, {"stopSequence": 78, "arrival": {"time": "1694899323"}, "stopId": "44963"}, {"stopSequence": 79, "arrival": {"time": "1694900118"}, "stopId": "34493"}, {"stopSequence": 80, "arrival": {"time": "1694900537"}, "stopId": "50019"}, {"stopSequence": 81, "arrival": {"time": "1694901311"}, "stopId": "10-Jan"}, {"stopSequence": 82, "arrival": {"time": "1694901778"}, "stopId": "44863"}, {"stopSequence": 83, "arrival": {"time": "1694902100"}, "stopId": "10-Mar"}, {"stopSequence": 84, "arrival": {"time": "1694902699"}, "stopId": "11-Jan"}, {"stopSequence": 85, "arrival": {"time": "1694903324"}, "stopId": "39943"}, {"stopSequence": 86, "arrival": {"time": "1694903652"}, "stopId": "39944"}, {"stopSequence": 87, "arrival": {"time": "1694905458"}, "stopId": "39947"}, {"stopSequence": 88, "arrival": {"time": "1694906032"}, "stopId": "39949"}, {"stopSequence": 89, "arrival": {"time": "1694906207"}, "stopId": "39950"}, {"stopSequence": 90, "arrival": {"time": "1694907118"}, "stopId": "39952"}, {"stopSequence": 91, "arrival": {"time": "1694908858"}, "stopId": "34529"}], "vehicle": {"licensePlate": "GWZC84"}, "timestamp": "1694889016"}, "vehicle": {"trip": {"tripId": "17438-701ff27f-2", "startTime": "15:28:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "565", "directionId": 0}, "position": {"latitude": -36.95654, "longitude": -73.01291, "bearing": 344.0, "odometer": 0.0, "speed": 13.333333}, "timestamp": "1694889016", "vehicle": {"licensePlate": "GWZC84"}}}, {"id": "a8b92f16-796b-4029-8811-da3aac14ac43", "tripUpdate": {"trip": {"tripId": "17354-701ff27f-2", "startTime": "13:40:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "565", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 73, "arrival": {"time": "1694889050"}, "stopId": "42232"}, {"stopSequence": 74, "arrival": {"time": "1694889285"}, "stopId": "34557"}, {"stopSequence": 75, "arrival": {"time": "1694889375"}, "stopId": "42212"}, {"stopSequence": 76, "arrival": {"time": "1694889461"}, "stopId": "34560"}, {"stopSequence": 77, "arrival": {"time": "1694889496"}, "stopId": "42273"}, {"stopSequence": 78, "arrival": {"time": "1694889615"}, "stopId": "49203"}, {"stopSequence": 79, "arrival": {"time": "1694889668"}, "stopId": "49204"}, {"stopSequence": 80, "arrival": {"time": "1694889677"}, "stopId": "42503"}, {"stopSequence": 81, "arrival": {"time": "1694889690"}, "stopId": "49264"}], "vehicle": {"licensePlate": "HWDH59"}, "timestamp": "1694889008"}, "vehicle": {"trip": {"tripId": "17354-701ff27f-2", "startTime": "13:40:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "565", "directionId": 1}, "position": {"latitude": -36.9408, "longitude": -73.01864, "bearing": 160.0, "odometer": 0.0, "speed": 8.055555}, "timestamp": "1694889008", "vehicle": {"licensePlate": "HWDH59"}}}, {"id": "2c144cd9-6fe5-4fc6-91bc-adf9712d99c2", "tripUpdate": {"trip": {"tripId": "17435-701ff27f-2", "startTime": "14:52:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "565", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 58, "arrival": {"time": "1694889065"}, "stopId": "38507"}, {"stopSequence": 59, "arrival": {"time": "1694889119"}, "stopId": "34473"}, {"stopSequence": 60, "arrival": {"time": "1694889165"}, "stopId": "38500"}, {"stopSequence": 61, "arrival": {"time": "1694889213"}, "stopId": "35808"}, {"stopSequence": 62, "arrival": {"time": "1694889273"}, "stopId": "35710"}, {"stopSequence": 63, "arrival": {"time": "1694889319"}, "stopId": "50036"}, {"stopSequence": 64, "arrival": {"time": "1694889545"}, "stopId": "50037"}, {"stopSequence": 65, "arrival": {"time": "1694889693"}, "stopId": "50038"}, {"stopSequence": 66, "arrival": {"time": "1694889768"}, "stopId": "50039"}, {"stopSequence": 67, "arrival": {"time": "1694889822"}, "stopId": "50040"}, {"stopSequence": 68, "arrival": {"time": "1694889905"}, "stopId": "50041"}, {"stopSequence": 69, "arrival": {"time": "1694890041"}, "stopId": "Jun-15"}, {"stopSequence": 70, "arrival": {"time": "1694890138"}, "stopId": "Jun-13"}, {"stopSequence": 71, "arrival": {"time": "1694890327"}, "stopId": "6-Oct"}, {"stopSequence": 72, "arrival": {"time": "1694890378"}, "stopId": "6-Aug"}, {"stopSequence": 73, "arrival": {"time": "1694890539"}, "stopId": "6-Jun"}, {"stopSequence": 74, "arrival": {"time": "1694890662"}, "stopId": "6-Feb"}, {"stopSequence": 75, "arrival": {"time": "1694890838"}, "stopId": "44956"}, {"stopSequence": 76, "arrival": {"time": "1694890877"}, "stopId": "44957"}, {"stopSequence": 77, "arrival": {"time": "1694890989"}, "stopId": "45057"}, {"stopSequence": 78, "arrival": {"time": "1694891051"}, "stopId": "44963"}, {"stopSequence": 79, "arrival": {"time": "1694891168"}, "stopId": "34493"}, {"stopSequence": 80, "arrival": {"time": "1694891225"}, "stopId": "50019"}, {"stopSequence": 81, "arrival": {"time": "1694891323"}, "stopId": "10-Jan"}, {"stopSequence": 82, "arrival": {"time": "1694891377"}, "stopId": "44863"}, {"stopSequence": 83, "arrival": {"time": "1694891413"}, "stopId": "10-Mar"}, {"stopSequence": 84, "arrival": {"time": "1694891477"}, "stopId": "11-Jan"}, {"stopSequence": 85, "arrival": {"time": "1694891539"}, "stopId": "39943"}, {"stopSequence": 86, "arrival": {"time": "1694891569"}, "stopId": "39944"}, {"stopSequence": 87, "arrival": {"time": "1694891722"}, "stopId": "39947"}, {"stopSequence": 88, "arrival": {"time": "1694891766"}, "stopId": "39949"}, {"stopSequence": 89, "arrival": {"time": "1694891778"}, "stopId": "39950"}, {"stopSequence": 90, "arrival": {"time": "1694891842"}, "stopId": "39952"}, {"stopSequence": 91, "arrival": {"time": "1694891950"}, "stopId": "34529"}], "vehicle": {"licensePlate": "HYCZ71"}, "timestamp": "1694889033"}, "vehicle": {"trip": {"tripId": "17435-701ff27f-2", "startTime": "14:52:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "565", "directionId": 0}, "position": {"latitude": -36.819378, "longitude": -73.04231, "bearing": 63.0, "odometer": 0.0, "speed": 10.0}, "timestamp": "1694889033", "vehicle": {"licensePlate": "HYCZ71"}}}, {"id": "671f629f-1c90-4f9c-8961-c0774ffd9cfc", "tripUpdate": {"trip": {"tripId": "17359-701ff27f-2", "startTime": "15:20:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "565", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 51, "arrival": {"time": "1694889044"}, "stopId": "42201"}, {"stopSequence": 52, "arrival": {"time": "1694889300"}, "stopId": "42206"}, {"stopSequence": 53, "arrival": {"time": "1694889364"}, "stopId": "42207"}, {"stopSequence": 54, "arrival": {"time": "1694889424"}, "stopId": "42208"}, {"stopSequence": 55, "arrival": {"time": "1694889550"}, "stopId": "42564"}, {"stopSequence": 56, "arrival": {"time": "1694889656"}, "stopId": "42214"}, {"stopSequence": 57, "arrival": {"time": "1694889758"}, "stopId": "42209"}, {"stopSequence": 58, "arrival": {"time": "1694889873"}, "stopId": "42210"}, {"stopSequence": 59, "arrival": {"time": "1694890045"}, "stopId": "40951"}, {"stopSequence": 60, "arrival": {"time": "1694890105"}, "stopId": "40952"}, {"stopSequence": 61, "arrival": {"time": "1694890162"}, "stopId": "40953"}, {"stopSequence": 62, "arrival": {"time": "1694890205"}, "stopId": "40954"}, {"stopSequence": 63, "arrival": {"time": "1694890275"}, "stopId": "40955"}, {"stopSequence": 64, "arrival": {"time": "1694890312"}, "stopId": "40956"}, {"stopSequence": 65, "arrival": {"time": "1694890369"}, "stopId": "40957"}, {"stopSequence": 66, "arrival": {"time": "1694890421"}, "stopId": "40958"}, {"stopSequence": 67, "arrival": {"time": "1694890448"}, "stopId": "40959"}, {"stopSequence": 68, "arrival": {"time": "1694890518"}, "stopId": "42223"}, {"stopSequence": 69, "arrival": {"time": "1694890826"}, "stopId": "42228"}, {"stopSequence": 70, "arrival": {"time": "1694890872"}, "stopId": "42229"}, {"stopSequence": 71, "arrival": {"time": "1694890950"}, "stopId": "42230"}, {"stopSequence": 72, "arrival": {"time": "1694890999"}, "stopId": "42231"}, {"stopSequence": 73, "arrival": {"time": "1694891082"}, "stopId": "42232"}, {"stopSequence": 74, "arrival": {"time": "1694891330"}, "stopId": "34557"}, {"stopSequence": 75, "arrival": {"time": "1694891431"}, "stopId": "42212"}, {"stopSequence": 76, "arrival": {"time": "1694891531"}, "stopId": "34560"}, {"stopSequence": 77, "arrival": {"time": "1694891573"}, "stopId": "42273"}, {"stopSequence": 78, "arrival": {"time": "1694891718"}, "stopId": "49203"}, {"stopSequence": 79, "arrival": {"time": "1694891786"}, "stopId": "49204"}, {"stopSequence": 80, "arrival": {"time": "1694891798"}, "stopId": "42503"}, {"stopSequence": 81, "arrival": {"time": "1694891814"}, "stopId": "49264"}], "vehicle": {"licensePlate": "HYYX12"}, "timestamp": "1694889002"}, "vehicle": {"trip": {"tripId": "17359-701ff27f-2", "startTime": "15:20:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "565", "directionId": 1}, "position": {"latitude": -36.85346, "longitude": -73.050354, "bearing": 166.0, "odometer": 0.0, "speed": 15.0}, "timestamp": "1694889002", "vehicle": {"licensePlate": "HYYX12"}}}, {"id": "82261874-47cc-4a6f-bbc3-63a2f01f4385", "tripUpdate": {"trip": {"tripId": "17360-701ff27f-2", "startTime": "15:40:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "565", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 24, "arrival": {"time": "1694889161"}, "stopId": "Jun-17"}, {"stopSequence": 25, "arrival": {"time": "1694889244"}, "stopId": "Jun-19"}, {"stopSequence": 26, "arrival": {"time": "1694889305"}, "stopId": "Jun-20"}, {"stopSequence": 27, "arrival": {"time": "1694889368"}, "stopId": "Jun-22"}, {"stopSequence": 28, "arrival": {"time": "1694889433"}, "stopId": "Jun-24"}, {"stopSequence": 29, "arrival": {"time": "1694889522"}, "stopId": "Jun-25"}, {"stopSequence": 30, "arrival": {"time": "1694889804"}, "stopId": "90003"}, {"stopSequence": 31, "arrival": {"time": "1694889849"}, "stopId": "90007"}, {"stopSequence": 32, "arrival": {"time": "1694889889"}, "stopId": "40830"}, {"stopSequence": 33, "arrival": {"time": "1694889925"}, "stopId": "40831"}, {"stopSequence": 34, "arrival": {"time": "1694890005"}, "stopId": "39599"}, {"stopSequence": 35, "arrival": {"time": "1694890028"}, "stopId": "39600"}, {"stopSequence": 36, "arrival": {"time": "1694890092"}, "stopId": "37496"}, {"stopSequence": 37, "arrival": {"time": "1694890140"}, "stopId": "45064"}, {"stopSequence": 38, "arrival": {"time": "1694890212"}, "stopId": "37506"}, {"stopSequence": 39, "arrival": {"time": "1694890258"}, "stopId": "45068"}, {"stopSequence": 40, "arrival": {"time": "1694890374"}, "stopId": "37480"}, {"stopSequence": 41, "arrival": {"time": "1694890435"}, "stopId": "37477"}, {"stopSequence": 42, "arrival": {"time": "1694890502"}, "stopId": "40848"}, {"stopSequence": 43, "arrival": {"time": "1694890585"}, "stopId": "2-Apr"}, {"stopSequence": 44, "arrival": {"time": "1694890643"}, "stopId": "39728"}, {"stopSequence": 45, "arrival": {"time": "1694890742"}, "stopId": "39729"}, {"stopSequence": 46, "arrival": {"time": "1694890767"}, "stopId": "39730"}, {"stopSequence": 47, "arrival": {"time": "1694890873"}, "stopId": "42200"}, {"stopSequence": 48, "arrival": {"time": "1694890922"}, "stopId": "42203"}, {"stopSequence": 49, "arrival": {"time": "1694890988"}, "stopId": "42204"}, {"stopSequence": 50, "arrival": {"time": "1694891023"}, "stopId": "42205"}, {"stopSequence": 51, "arrival": {"time": "1694891087"}, "stopId": "42201"}, {"stopSequence": 52, "arrival": {"time": "1694891358"}, "stopId": "42206"}, {"stopSequence": 53, "arrival": {"time": "1694891430"}, "stopId": "42207"}, {"stopSequence": 54, "arrival": {"time": "1694891500"}, "stopId": "42208"}, {"stopSequence": 55, "arrival": {"time": "1694891650"}, "stopId": "42564"}, {"stopSequence": 56, "arrival": {"time": "1694891783"}, "stopId": "42214"}, {"stopSequence": 57, "arrival": {"time": "1694891916"}, "stopId": "42209"}, {"stopSequence": 58, "arrival": {"time": "1694892072"}, "stopId": "42210"}, {"stopSequence": 59, "arrival": {"time": "1694892318"}, "stopId": "40951"}, {"stopSequence": 60, "arrival": {"time": "1694892408"}, "stopId": "40952"}, {"stopSequence": 61, "arrival": {"time": "1694892496"}, "stopId": "40953"}, {"stopSequence": 62, "arrival": {"time": "1694892563"}, "stopId": "40954"}, {"stopSequence": 63, "arrival": {"time": "1694892675"}, "stopId": "40955"}, {"stopSequence": 64, "arrival": {"time": "1694892736"}, "stopId": "40956"}, {"stopSequence": 65, "arrival": {"time": "1694892830"}, "stopId": "40957"}, {"stopSequence": 66, "arrival": {"time": "1694892918"}, "stopId": "40958"}, {"stopSequence": 67, "arrival": {"time": "1694892964"}, "stopId": "40959"}, {"stopSequence": 68, "arrival": {"time": "1694893087"}, "stopId": "42223"}, {"stopSequence": 69, "arrival": {"time": "1694893667"}, "stopId": "42228"}, {"stopSequence": 70, "arrival": {"time": "1694893759"}, "stopId": "42229"}, {"stopSequence": 71, "arrival": {"time": "1694893920"}, "stopId": "42230"}, {"stopSequence": 72, "arrival": {"time": "1694894022"}, "stopId": "42231"}, {"stopSequence": 73, "arrival": {"time": "1694894202"}, "stopId": "42232"}, {"stopSequence": 74, "arrival": {"time": "1694894774"}, "stopId": "34557"}, {"stopSequence": 75, "arrival": {"time": "1694895021"}, "stopId": "42212"}, {"stopSequence": 76, "arrival": {"time": "1694895277"}, "stopId": "34560"}, {"stopSequence": 77, "arrival": {"time": "1694895387"}, "stopId": "42273"}, {"stopSequence": 78, "arrival": {"time": "1694895785"}, "stopId": "49203"}, {"stopSequence": 79, "arrival": {"time": "1694895975"}, "stopId": "49204"}, {"stopSequence": 80, "arrival": {"time": "1694896011"}, "stopId": "42503"}, {"stopSequence": 81, "arrival": {"time": "1694896057"}, "stopId": "49264"}], "vehicle": {"licensePlate": "ZT3021"}, "timestamp": "1694889008"}, "vehicle": {"trip": {"tripId": "17360-701ff27f-2", "startTime": "15:40:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "565", "directionId": 1}, "position": {"latitude": -36.781715, "longitude": -73.02084, "bearing": 202.0, "odometer": 0.0, "speed": 1.6666666}, "timestamp": "1694889008", "vehicle": {"licensePlate": "ZT3021"}}}, {"id": "a4ada7e2-e725-4d55-9322-2c0c14674227", "tripUpdate": {"trip": {"tripId": "17355-701ff27f-2", "startTime": "14:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "565", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 40, "arrival": {"time": "1694889022"}, "stopId": "37480"}, {"stopSequence": 41, "arrival": {"time": "1694889088"}, "stopId": "37477"}, {"stopSequence": 42, "arrival": {"time": "1694889159"}, "stopId": "40848"}, {"stopSequence": 43, "arrival": {"time": "1694889246"}, "stopId": "2-Apr"}, {"stopSequence": 44, "arrival": {"time": "1694889305"}, "stopId": "39728"}, {"stopSequence": 45, "arrival": {"time": "1694889404"}, "stopId": "39729"}, {"stopSequence": 46, "arrival": {"time": "1694889429"}, "stopId": "39730"}, {"stopSequence": 47, "arrival": {"time": "1694889532"}, "stopId": "42200"}, {"stopSequence": 48, "arrival": {"time": "1694889577"}, "stopId": "42203"}, {"stopSequence": 49, "arrival": {"time": "1694889640"}, "stopId": "42204"}, {"stopSequence": 50, "arrival": {"time": "1694889672"}, "stopId": "42205"}, {"stopSequence": 51, "arrival": {"time": "1694889731"}, "stopId": "42201"}, {"stopSequence": 52, "arrival": {"time": "1694889969"}, "stopId": "42206"}, {"stopSequence": 53, "arrival": {"time": "1694890030"}, "stopId": "42207"}, {"stopSequence": 54, "arrival": {"time": "1694890088"}, "stopId": "42208"}, {"stopSequence": 55, "arrival": {"time": "1694890210"}, "stopId": "42564"}, {"stopSequence": 56, "arrival": {"time": "1694890315"}, "stopId": "42214"}, {"stopSequence": 57, "arrival": {"time": "1694890418"}, "stopId": "42209"}, {"stopSequence": 58, "arrival": {"time": "1694890534"}, "stopId": "42210"}, {"stopSequence": 59, "arrival": {"time": "1694890713"}, "stopId": "40951"}, {"stopSequence": 60, "arrival": {"time": "1694890776"}, "stopId": "40952"}, {"stopSequence": 61, "arrival": {"time": "1694890837"}, "stopId": "40953"}, {"stopSequence": 62, "arrival": {"time": "1694890883"}, "stopId": "40954"}, {"stopSequence": 63, "arrival": {"time": "1694890958"}, "stopId": "40955"}, {"stopSequence": 64, "arrival": {"time": "1694890998"}, "stopId": "40956"}, {"stopSequence": 65, "arrival": {"time": "1694891060"}, "stopId": "40957"}, {"stopSequence": 66, "arrival": {"time": "1694891118"}, "stopId": "40958"}, {"stopSequence": 67, "arrival": {"time": "1694891147"}, "stopId": "40959"}, {"stopSequence": 68, "arrival": {"time": "1694891225"}, "stopId": "42223"}, {"stopSequence": 69, "arrival": {"time": "1694891574"}, "stopId": "42228"}, {"stopSequence": 70, "arrival": {"time": "1694891627"}, "stopId": "42229"}, {"stopSequence": 71, "arrival": {"time": "1694891718"}, "stopId": "42230"}, {"stopSequence": 72, "arrival": {"time": "1694891775"}, "stopId": "42231"}, {"stopSequence": 73, "arrival": {"time": "1694891874"}, "stopId": "42232"}, {"stopSequence": 74, "arrival": {"time": "1694892174"}, "stopId": "34557"}, {"stopSequence": 75, "arrival": {"time": "1694892297"}, "stopId": "42212"}, {"stopSequence": 76, "arrival": {"time": "1694892421"}, "stopId": "34560"}, {"stopSequence": 77, "arrival": {"time": "1694892474"}, "stopId": "42273"}, {"stopSequence": 78, "arrival": {"time": "1694892658"}, "stopId": "49203"}, {"stopSequence": 79, "arrival": {"time": "1694892744"}, "stopId": "49204"}, {"stopSequence": 80, "arrival": {"time": "1694892760"}, "stopId": "42503"}, {"stopSequence": 81, "arrival": {"time": "1694892780"}, "stopId": "49264"}], "vehicle": {"licensePlate": "ZV8813"}, "timestamp": "1694889004"}, "vehicle": {"trip": {"tripId": "17355-701ff27f-2", "startTime": "14:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "565", "directionId": 1}, "position": {"latitude": -36.828213, "longitude": -73.051346, "bearing": 238.0, "odometer": 0.0, "speed": 11.944445}, "timestamp": "1694889004", "vehicle": {"licensePlate": "ZV8813"}}}, {"id": "71956134-a804-403e-a81a-e2c4f3357a42", "tripUpdate": {"trip": {"tripId": "17433-701ff27f-2", "startTime": "14:28:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "565", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 75, "arrival": {"time": "1694889060"}, "stopId": "44956"}, {"stopSequence": 76, "arrival": {"time": "1694889100"}, "stopId": "44957"}, {"stopSequence": 77, "arrival": {"time": "1694889212"}, "stopId": "45057"}, {"stopSequence": 78, "arrival": {"time": "1694889272"}, "stopId": "44963"}, {"stopSequence": 79, "arrival": {"time": "1694889382"}, "stopId": "34493"}, {"stopSequence": 80, "arrival": {"time": "1694889434"}, "stopId": "50019"}, {"stopSequence": 81, "arrival": {"time": "1694889522"}, "stopId": "10-Jan"}, {"stopSequence": 82, "arrival": {"time": "1694889569"}, "stopId": "44863"}, {"stopSequence": 83, "arrival": {"time": "1694889601"}, "stopId": "10-Mar"}, {"stopSequence": 84, "arrival": {"time": "1694889655"}, "stopId": "11-Jan"}, {"stopSequence": 85, "arrival": {"time": "1694889706"}, "stopId": "39943"}, {"stopSequence": 86, "arrival": {"time": "1694889732"}, "stopId": "39944"}, {"stopSequence": 87, "arrival": {"time": "1694889855"}, "stopId": "39947"}, {"stopSequence": 88, "arrival": {"time": "1694889890"}, "stopId": "39949"}, {"stopSequence": 89, "arrival": {"time": "1694889899"}, "stopId": "39950"}, {"stopSequence": 90, "arrival": {"time": "1694889948"}, "stopId": "39952"}, {"stopSequence": 91, "arrival": {"time": "1694890030"}, "stopId": "34529"}], "vehicle": {"licensePlate": "ZY3848"}, "timestamp": "1694888978"}, "vehicle": {"trip": {"tripId": "17433-701ff27f-2", "startTime": "14:28:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "565", "directionId": 0}, "position": {"latitude": -36.753193, "longitude": -73.00054, "bearing": 18.0, "odometer": 0.0, "speed": 9.166667}, "timestamp": "1694888978", "vehicle": {"licensePlate": "ZY3848"}}}, {"id": "55dff1db-90f8-44f1-bb8c-54d3c4f22460", "tripUpdate": {"trip": {"tripId": "17501-701ff27f-2", "startTime": "15:22:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "566", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 13, "arrival": {"time": "1694889088"}, "stopId": "42283"}, {"stopSequence": 14, "arrival": {"time": "1694889157"}, "stopId": "49279"}, {"stopSequence": 15, "arrival": {"time": "1694889239"}, "stopId": "42285"}, {"stopSequence": 16, "arrival": {"time": "1694889337"}, "stopId": "49281"}, {"stopSequence": 17, "arrival": {"time": "1694889402"}, "stopId": "49282"}, {"stopSequence": 18, "arrival": {"time": "1694889445"}, "stopId": "49283"}, {"stopSequence": 19, "arrival": {"time": "1694889503"}, "stopId": "49284"}, {"stopSequence": 20, "arrival": {"time": "1694889569"}, "stopId": "49285"}, {"stopSequence": 21, "arrival": {"time": "1694889637"}, "stopId": "49286"}, {"stopSequence": 22, "arrival": {"time": "1694889684"}, "stopId": "49287"}, {"stopSequence": 23, "arrival": {"time": "1694889724"}, "stopId": "49288"}, {"stopSequence": 24, "arrival": {"time": "1694889774"}, "stopId": "49289"}, {"stopSequence": 25, "arrival": {"time": "1694889898"}, "stopId": "42294"}, {"stopSequence": 26, "arrival": {"time": "1694890032"}, "stopId": "42295"}, {"stopSequence": 27, "arrival": {"time": "1694890142"}, "stopId": "42296"}, {"stopSequence": 28, "arrival": {"time": "1694890264"}, "stopId": "42297"}, {"stopSequence": 29, "arrival": {"time": "1694890359"}, "stopId": "42298"}, {"stopSequence": 30, "arrival": {"time": "1694890421"}, "stopId": "42299"}, {"stopSequence": 31, "arrival": {"time": "1694890463"}, "stopId": "49295"}, {"stopSequence": 32, "arrival": {"time": "1694890582"}, "stopId": "49296"}, {"stopSequence": 33, "arrival": {"time": "1694890666"}, "stopId": "49297"}, {"stopSequence": 34, "arrival": {"time": "1694890705"}, "stopId": "49298"}, {"stopSequence": 35, "arrival": {"time": "1694890766"}, "stopId": "49299"}, {"stopSequence": 36, "arrival": {"time": "1694890820"}, "stopId": "49300"}, {"stopSequence": 37, "arrival": {"time": "1694890906"}, "stopId": "49301"}, {"stopSequence": 38, "arrival": {"time": "1694890977"}, "stopId": "49302"}, {"stopSequence": 39, "arrival": {"time": "1694891024"}, "stopId": "49303"}, {"stopSequence": 40, "arrival": {"time": "1694891071"}, "stopId": "49304"}, {"stopSequence": 41, "arrival": {"time": "1694891110"}, "stopId": "49305"}, {"stopSequence": 42, "arrival": {"time": "1694891171"}, "stopId": "49306"}, {"stopSequence": 43, "arrival": {"time": "1694891215"}, "stopId": "49307"}, {"stopSequence": 44, "arrival": {"time": "1694891241"}, "stopId": "49308"}, {"stopSequence": 45, "arrival": {"time": "1694891268"}, "stopId": "49309"}, {"stopSequence": 46, "arrival": {"time": "1694891344"}, "stopId": "49310"}, {"stopSequence": 47, "arrival": {"time": "1694891380"}, "stopId": "49311"}, {"stopSequence": 48, "arrival": {"time": "1694891444"}, "stopId": "35796"}, {"stopSequence": 49, "arrival": {"time": "1694891500"}, "stopId": "35797"}, {"stopSequence": 50, "arrival": {"time": "1694891548"}, "stopId": "35798"}, {"stopSequence": 51, "arrival": {"time": "1694891594"}, "stopId": "35799"}, {"stopSequence": 52, "arrival": {"time": "1694891677"}, "stopId": "35800"}, {"stopSequence": 53, "arrival": {"time": "1694891738"}, "stopId": "35801"}, {"stopSequence": 54, "arrival": {"time": "1694891769"}, "stopId": "35802"}, {"stopSequence": 55, "arrival": {"time": "1694891829"}, "stopId": "35803"}, {"stopSequence": 56, "arrival": {"time": "1694891899"}, "stopId": "38507"}, {"stopSequence": 57, "arrival": {"time": "1694891965"}, "stopId": "34473"}, {"stopSequence": 58, "arrival": {"time": "1694892022"}, "stopId": "38500"}, {"stopSequence": 59, "arrival": {"time": "1694892084"}, "stopId": "35808"}, {"stopSequence": 60, "arrival": {"time": "1694892162"}, "stopId": "35710"}, {"stopSequence": 61, "arrival": {"time": "1694892224"}, "stopId": "50036"}, {"stopSequence": 62, "arrival": {"time": "1694892548"}, "stopId": "50037"}, {"stopSequence": 63, "arrival": {"time": "1694892783"}, "stopId": "50038"}, {"stopSequence": 64, "arrival": {"time": "1694892908"}, "stopId": "50039"}, {"stopSequence": 65, "arrival": {"time": "1694893003"}, "stopId": "50040"}, {"stopSequence": 66, "arrival": {"time": "1694893151"}, "stopId": "50041"}, {"stopSequence": 67, "arrival": {"time": "1694893411"}, "stopId": "Jun-15"}, {"stopSequence": 68, "arrival": {"time": "1694893606"}, "stopId": "Jun-13"}, {"stopSequence": 69, "arrival": {"time": "1694894020"}, "stopId": "6-Oct"}, {"stopSequence": 70, "arrival": {"time": "1694894137"}, "stopId": "6-Aug"}, {"stopSequence": 71, "arrival": {"time": "1694894533"}, "stopId": "6-Jun"}, {"stopSequence": 72, "arrival": {"time": "1694894862"}, "stopId": "6-Feb"}, {"stopSequence": 73, "arrival": {"time": "1694895230"}, "stopId": "10940386"}, {"stopSequence": 74, "arrival": {"time": "1694895375"}, "stopId": "10940383"}, {"stopSequence": 75, "arrival": {"time": "1694895496"}, "stopId": "10940382"}, {"stopSequence": 76, "arrival": {"time": "1694895629"}, "stopId": "10940381"}, {"stopSequence": 77, "arrival": {"time": "1694895841"}, "stopId": "10940374"}, {"stopSequence": 78, "arrival": {"time": "1694896099"}, "stopId": "10940370"}, {"stopSequence": 79, "arrival": {"time": "1694896188"}, "stopId": "10940367"}, {"stopSequence": 80, "arrival": {"time": "1694896301"}, "stopId": "10940368"}, {"stopSequence": 81, "arrival": {"time": "1694896603"}, "stopId": "10940388"}, {"stopSequence": 82, "arrival": {"time": "1694897337"}, "stopId": "10-Apr"}, {"stopSequence": 83, "arrival": {"time": "1694897656"}, "stopId": "10-Jan"}, {"stopSequence": 84, "arrival": {"time": "1694897872"}, "stopId": "44863"}, {"stopSequence": 85, "arrival": {"time": "1694898041"}, "stopId": "10-Mar"}, {"stopSequence": 86, "arrival": {"time": "1694898342"}, "stopId": "11-Jan"}], "vehicle": {"licensePlate": "BRTG11"}, "timestamp": "1694889036"}, "vehicle": {"trip": {"tripId": "17501-701ff27f-2", "startTime": "15:22:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "566", "directionId": 0}, "position": {"latitude": -36.927998, "longitude": -73.02424, "bearing": 333.0, "odometer": 0.0, "speed": 3.8888888}, "timestamp": "1694889036", "vehicle": {"licensePlate": "BRTG11"}}}, {"id": "4f3471ad-dc7e-4f93-bcf6-d6bd4143e809", "tripUpdate": {"trip": {"tripId": "17528-701ff27f-2", "startTime": "15:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "566", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 32, "arrival": {"time": "1694889027"}, "stopId": "37496"}, {"stopSequence": 33, "arrival": {"time": "1694889080"}, "stopId": "45064"}, {"stopSequence": 34, "arrival": {"time": "1694889157"}, "stopId": "37506"}, {"stopSequence": 35, "arrival": {"time": "1694889199"}, "stopId": "45068"}, {"stopSequence": 36, "arrival": {"time": "1694889319"}, "stopId": "37480"}, {"stopSequence": 37, "arrival": {"time": "1694889381"}, "stopId": "37477"}, {"stopSequence": 38, "arrival": {"time": "1694889453"}, "stopId": "40848"}, {"stopSequence": 39, "arrival": {"time": "1694889542"}, "stopId": "2-Apr"}, {"stopSequence": 40, "arrival": {"time": "1694889599"}, "stopId": "39728"}, {"stopSequence": 41, "arrival": {"time": "1694889695"}, "stopId": "39729"}, {"stopSequence": 42, "arrival": {"time": "1694889719"}, "stopId": "39730"}, {"stopSequence": 43, "arrival": {"time": "1694889820"}, "stopId": "42200"}, {"stopSequence": 44, "arrival": {"time": "1694889865"}, "stopId": "42203"}, {"stopSequence": 45, "arrival": {"time": "1694889926"}, "stopId": "42204"}, {"stopSequence": 46, "arrival": {"time": "1694889949"}, "stopId": "42205"}, {"stopSequence": 47, "arrival": {"time": "1694890016"}, "stopId": "42201"}, {"stopSequence": 48, "arrival": {"time": "1694890261"}, "stopId": "42206"}, {"stopSequence": 49, "arrival": {"time": "1694890315"}, "stopId": "42207"}, {"stopSequence": 50, "arrival": {"time": "1694890374"}, "stopId": "42208"}, {"stopSequence": 51, "arrival": {"time": "1694890498"}, "stopId": "42564"}, {"stopSequence": 52, "arrival": {"time": "1694890603"}, "stopId": "42214"}, {"stopSequence": 53, "arrival": {"time": "1694890711"}, "stopId": "42209"}, {"stopSequence": 54, "arrival": {"time": "1694890832"}, "stopId": "42210"}, {"stopSequence": 55, "arrival": {"time": "1694891018"}, "stopId": "40951"}, {"stopSequence": 56, "arrival": {"time": "1694891085"}, "stopId": "40952"}, {"stopSequence": 57, "arrival": {"time": "1694891149"}, "stopId": "40953"}, {"stopSequence": 58, "arrival": {"time": "1694891198"}, "stopId": "40954"}, {"stopSequence": 59, "arrival": {"time": "1694891278"}, "stopId": "40955"}, {"stopSequence": 60, "arrival": {"time": "1694891320"}, "stopId": "40956"}, {"stopSequence": 61, "arrival": {"time": "1694891384"}, "stopId": "40957"}, {"stopSequence": 62, "arrival": {"time": "1694891448"}, "stopId": "40958"}, {"stopSequence": 63, "arrival": {"time": "1694891479"}, "stopId": "40959"}, {"stopSequence": 64, "arrival": {"time": "1694891563"}, "stopId": "42223"}, {"stopSequence": 65, "arrival": {"time": "1694891597"}, "stopId": "42224"}, {"stopSequence": 66, "arrival": {"time": "1694891689"}, "stopId": "42225"}, {"stopSequence": 67, "arrival": {"time": "1694891769"}, "stopId": "42226"}, {"stopSequence": 68, "arrival": {"time": "1694891836"}, "stopId": "42227"}, {"stopSequence": 69, "arrival": {"time": "1694891933"}, "stopId": "42228"}, {"stopSequence": 70, "arrival": {"time": "1694891990"}, "stopId": "42229"}, {"stopSequence": 71, "arrival": {"time": "1694892103"}, "stopId": "42230"}, {"stopSequence": 72, "arrival": {"time": "1694892162"}, "stopId": "42231"}, {"stopSequence": 73, "arrival": {"time": "1694892274"}, "stopId": "42232"}, {"stopSequence": 74, "arrival": {"time": "1694892611"}, "stopId": "34557"}, {"stopSequence": 75, "arrival": {"time": "1694892689"}, "stopId": "42242"}, {"stopSequence": 76, "arrival": {"time": "1694892750"}, "stopId": "42212"}, {"stopSequence": 77, "arrival": {"time": "1694892883"}, "stopId": "34560"}, {"stopSequence": 78, "arrival": {"time": "1694892952"}, "stopId": "42273"}, {"stopSequence": 79, "arrival": {"time": "1694893163"}, "stopId": "49203"}, {"stopSequence": 80, "arrival": {"time": "1694893261"}, "stopId": "49204"}, {"stopSequence": 81, "arrival": {"time": "1694893280"}, "stopId": "42503"}, {"stopSequence": 82, "arrival": {"time": "1694893303"}, "stopId": "49264"}], "vehicle": {"licensePlate": "HGRP51"}, "timestamp": "1694888995"}, "vehicle": {"trip": {"tripId": "17528-701ff27f-2", "startTime": "15:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "566", "directionId": 1}, "position": {"latitude": -36.821842, "longitude": -73.03613, "bearing": 219.0, "odometer": 0.0, "speed": 3.6111112}, "timestamp": "1694888995", "vehicle": {"licensePlate": "HGRP51"}}}, {"id": "baed9db0-c0f5-4cff-9670-c5a12994ab51", "tripUpdate": {"trip": {"tripId": "17567-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "567", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 54, "arrival": {"time": "1694889043"}, "stopId": "38514"}, {"stopSequence": 55, "arrival": {"time": "1694889102"}, "stopId": "34586"}, {"stopSequence": 56, "arrival": {"time": "1694889133"}, "stopId": "34587"}, {"stopSequence": 57, "arrival": {"time": "1694889158"}, "stopId": "34588"}, {"stopSequence": 58, "arrival": {"time": "1694889208"}, "stopId": "39497"}, {"stopSequence": 59, "arrival": {"time": "1694889243"}, "stopId": "49407"}, {"stopSequence": 60, "arrival": {"time": "1694889302"}, "stopId": "50034"}, {"stopSequence": 61, "arrival": {"time": "1694889342"}, "stopId": "40903"}, {"stopSequence": 62, "arrival": {"time": "1694889376"}, "stopId": "40904"}, {"stopSequence": 63, "arrival": {"time": "1694889421"}, "stopId": "35814"}, {"stopSequence": 64, "arrival": {"time": "1694889497"}, "stopId": "35815"}, {"stopSequence": 65, "arrival": {"time": "1694889523"}, "stopId": "35816"}, {"stopSequence": 66, "arrival": {"time": "1694889535"}, "stopId": "35817"}, {"stopSequence": 67, "arrival": {"time": "1694889569"}, "stopId": "35818"}, {"stopSequence": 68, "arrival": {"time": "1694889608"}, "stopId": "35819"}, {"stopSequence": 69, "arrival": {"time": "1694889794"}, "stopId": "35822"}, {"stopSequence": 70, "arrival": {"time": "1694889842"}, "stopId": "35823"}, {"stopSequence": 71, "arrival": {"time": "1694889896"}, "stopId": "35723"}, {"stopSequence": 72, "arrival": {"time": "1694889940"}, "stopId": "35722"}, {"stopSequence": 73, "arrival": {"time": "1694890021"}, "stopId": "35826"}, {"stopSequence": 74, "arrival": {"time": "1694890077"}, "stopId": "35827"}, {"stopSequence": 75, "arrival": {"time": "1694890099"}, "stopId": "35828"}, {"stopSequence": 76, "arrival": {"time": "1694890154"}, "stopId": "35829"}, {"stopSequence": 77, "arrival": {"time": "1694890272"}, "stopId": "40921"}], "vehicle": {"licensePlate": "BDCH58"}, "timestamp": "1694889007"}, "vehicle": {"trip": {"tripId": "17567-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "567", "directionId": 0}, "position": {"latitude": -36.8267, "longitude": -73.04466, "bearing": 61.0, "odometer": 0.0, "speed": 8.055555}, "timestamp": "1694889007", "vehicle": {"licensePlate": "BDCH58"}}}, {"id": "00ae4fe5-de8b-4eae-b37d-df3f12f92a70", "tripUpdate": {"trip": {"tripId": "17613-701ff27f-2", "startTime": "14:32:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "567", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 21, "arrival": {"time": "1694889073"}, "stopId": "90001"}, {"stopSequence": 22, "arrival": {"time": "1694889165"}, "stopId": "39599"}, {"stopSequence": 23, "arrival": {"time": "1694889189"}, "stopId": "39600"}, {"stopSequence": 24, "arrival": {"time": "1694889257"}, "stopId": "37496"}, {"stopSequence": 25, "arrival": {"time": "1694889308"}, "stopId": "45064"}, {"stopSequence": 26, "arrival": {"time": "1694889382"}, "stopId": "37506"}, {"stopSequence": 27, "arrival": {"time": "1694889423"}, "stopId": "45068"}, {"stopSequence": 28, "arrival": {"time": "1694889548"}, "stopId": "37480"}, {"stopSequence": 29, "arrival": {"time": "1694889609"}, "stopId": "37477"}, {"stopSequence": 30, "arrival": {"time": "1694889676"}, "stopId": "40848"}, {"stopSequence": 31, "arrival": {"time": "1694889758"}, "stopId": "2-Apr"}, {"stopSequence": 32, "arrival": {"time": "1694889814"}, "stopId": "39728"}, {"stopSequence": 33, "arrival": {"time": "1694889909"}, "stopId": "39729"}, {"stopSequence": 34, "arrival": {"time": "1694889932"}, "stopId": "39730"}, {"stopSequence": 35, "arrival": {"time": "1694890032"}, "stopId": "42200"}, {"stopSequence": 36, "arrival": {"time": "1694890076"}, "stopId": "42203"}, {"stopSequence": 37, "arrival": {"time": "1694890129"}, "stopId": "42204"}, {"stopSequence": 38, "arrival": {"time": "1694890170"}, "stopId": "42205"}, {"stopSequence": 39, "arrival": {"time": "1694890224"}, "stopId": "42201"}, {"stopSequence": 40, "arrival": {"time": "1694890532"}, "stopId": "42207"}, {"stopSequence": 41, "arrival": {"time": "1694890591"}, "stopId": "42208"}, {"stopSequence": 42, "arrival": {"time": "1694890719"}, "stopId": "42564"}, {"stopSequence": 43, "arrival": {"time": "1694890827"}, "stopId": "42214"}, {"stopSequence": 44, "arrival": {"time": "1694890938"}, "stopId": "42209"}, {"stopSequence": 45, "arrival": {"time": "1694891064"}, "stopId": "42210"}, {"stopSequence": 46, "arrival": {"time": "1694891269"}, "stopId": "42215"}, {"stopSequence": 47, "arrival": {"time": "1694891297"}, "stopId": "42216"}, {"stopSequence": 48, "arrival": {"time": "1694891351"}, "stopId": "42217"}, {"stopSequence": 49, "arrival": {"time": "1694891437"}, "stopId": "42218"}, {"stopSequence": 50, "arrival": {"time": "1694891481"}, "stopId": "42219"}, {"stopSequence": 51, "arrival": {"time": "1694891607"}, "stopId": "42220"}, {"stopSequence": 52, "arrival": {"time": "1694891661"}, "stopId": "42221"}, {"stopSequence": 53, "arrival": {"time": "1694891743"}, "stopId": "42222"}, {"stopSequence": 54, "arrival": {"time": "1694891829"}, "stopId": "42223"}, {"stopSequence": 55, "arrival": {"time": "1694891865"}, "stopId": "42224"}, {"stopSequence": 56, "arrival": {"time": "1694891964"}, "stopId": "42225"}, {"stopSequence": 57, "arrival": {"time": "1694892050"}, "stopId": "42226"}, {"stopSequence": 58, "arrival": {"time": "1694892122"}, "stopId": "42227"}, {"stopSequence": 59, "arrival": {"time": "1694892238"}, "stopId": "42228"}, {"stopSequence": 60, "arrival": {"time": "1694892287"}, "stopId": "42229"}, {"stopSequence": 61, "arrival": {"time": "1694892410"}, "stopId": "42230"}, {"stopSequence": 62, "arrival": {"time": "1694892479"}, "stopId": "42231"}, {"stopSequence": 63, "arrival": {"time": "1694892610"}, "stopId": "42232"}, {"stopSequence": 64, "arrival": {"time": "1694892741"}, "stopId": "42233"}, {"stopSequence": 65, "arrival": {"time": "1694892966"}, "stopId": "34557"}, {"stopSequence": 66, "arrival": {"time": "1694893120"}, "stopId": "42212"}, {"stopSequence": 67, "arrival": {"time": "1694893268"}, "stopId": "34560"}, {"stopSequence": 68, "arrival": {"time": "1694893344"}, "stopId": "42273"}, {"stopSequence": 69, "arrival": {"time": "1694893579"}, "stopId": "49203"}, {"stopSequence": 70, "arrival": {"time": "1694893690"}, "stopId": "49204"}, {"stopSequence": 71, "arrival": {"time": "1694893710"}, "stopId": "42503"}, {"stopSequence": 72, "arrival": {"time": "1694893737"}, "stopId": "49264"}], "vehicle": {"licensePlate": "CFTD71"}, "timestamp": "1694888988"}, "vehicle": {"trip": {"tripId": "17613-701ff27f-2", "startTime": "14:32:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "567", "directionId": 1}, "position": {"latitude": -36.815365, "longitude": -73.029884, "bearing": 246.0, "odometer": 0.0, "speed": 4.1666665}, "timestamp": "1694888988", "vehicle": {"licensePlate": "CFTD71"}}}, {"id": "fa7d7968-1a4a-4581-a394-49ad111e494f", "tripUpdate": {"trip": {"tripId": "17570-701ff27f-2", "startTime": "16:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "567", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 2, "arrival": {"time": "1694889007"}, "stopId": "42211"}, {"stopSequence": 3, "arrival": {"time": "1694889049"}, "stopId": "34868"}, {"stopSequence": 4, "arrival": {"time": "1694889075"}, "stopId": "34415"}, {"stopSequence": 5, "arrival": {"time": "1694889143"}, "stopId": "41801"}, {"stopSequence": 6, "arrival": {"time": "1694889253"}, "stopId": "42242"}, {"stopSequence": 7, "arrival": {"time": "1694889263"}, "stopId": "34871"}, {"stopSequence": 8, "arrival": {"time": "1694889297"}, "stopId": "34557"}, {"stopSequence": 9, "arrival": {"time": "1694889421"}, "stopId": "42275"}, {"stopSequence": 10, "arrival": {"time": "1694889457"}, "stopId": "42276"}, {"stopSequence": 11, "arrival": {"time": "1694889540"}, "stopId": "42277"}, {"stopSequence": 12, "arrival": {"time": "1694889619"}, "stopId": "42278"}, {"stopSequence": 13, "arrival": {"time": "1694889661"}, "stopId": "42279"}, {"stopSequence": 14, "arrival": {"time": "1694889741"}, "stopId": "42280"}, {"stopSequence": 15, "arrival": {"time": "1694889782"}, "stopId": "42281"}, {"stopSequence": 16, "arrival": {"time": "1694889855"}, "stopId": "42282"}, {"stopSequence": 17, "arrival": {"time": "1694889910"}, "stopId": "42283"}, {"stopSequence": 18, "arrival": {"time": "1694889973"}, "stopId": "49279"}, {"stopSequence": 19, "arrival": {"time": "1694890045"}, "stopId": "42285"}, {"stopSequence": 20, "arrival": {"time": "1694890134"}, "stopId": "42286"}, {"stopSequence": 21, "arrival": {"time": "1694890150"}, "stopId": "42287"}, {"stopSequence": 22, "arrival": {"time": "1694890205"}, "stopId": "42288"}, {"stopSequence": 23, "arrival": {"time": "1694890240"}, "stopId": "42289"}, {"stopSequence": 24, "arrival": {"time": "1694890320"}, "stopId": "42290"}, {"stopSequence": 25, "arrival": {"time": "1694890361"}, "stopId": "42291"}, {"stopSequence": 26, "arrival": {"time": "1694890455"}, "stopId": "42292"}, {"stopSequence": 27, "arrival": {"time": "1694890522"}, "stopId": "42293"}, {"stopSequence": 28, "arrival": {"time": "1694890703"}, "stopId": "42294"}, {"stopSequence": 29, "arrival": {"time": "1694890835"}, "stopId": "42295"}, {"stopSequence": 30, "arrival": {"time": "1694890954"}, "stopId": "42296"}, {"stopSequence": 31, "arrival": {"time": "1694891088"}, "stopId": "42297"}, {"stopSequence": 32, "arrival": {"time": "1694891193"}, "stopId": "42298"}, {"stopSequence": 33, "arrival": {"time": "1694891264"}, "stopId": "42299"}, {"stopSequence": 34, "arrival": {"time": "1694891312"}, "stopId": "49295"}, {"stopSequence": 35, "arrival": {"time": "1694891449"}, "stopId": "49296"}, {"stopSequence": 36, "arrival": {"time": "1694891552"}, "stopId": "49297"}, {"stopSequence": 37, "arrival": {"time": "1694891594"}, "stopId": "49298"}, {"stopSequence": 38, "arrival": {"time": "1694891678"}, "stopId": "49299"}, {"stopSequence": 39, "arrival": {"time": "1694891730"}, "stopId": "49300"}, {"stopSequence": 40, "arrival": {"time": "1694891835"}, "stopId": "49301"}, {"stopSequence": 41, "arrival": {"time": "1694891922"}, "stopId": "49302"}, {"stopSequence": 42, "arrival": {"time": "1694891981"}, "stopId": "49303"}, {"stopSequence": 43, "arrival": {"time": "1694892050"}, "stopId": "49304"}, {"stopSequence": 44, "arrival": {"time": "1694892088"}, "stopId": "49305"}, {"stopSequence": 45, "arrival": {"time": "1694892165"}, "stopId": "49306"}, {"stopSequence": 46, "arrival": {"time": "1694892221"}, "stopId": "49307"}, {"stopSequence": 47, "arrival": {"time": "1694892254"}, "stopId": "49308"}, {"stopSequence": 48, "arrival": {"time": "1694892289"}, "stopId": "49309"}, {"stopSequence": 49, "arrival": {"time": "1694892329"}, "stopId": "42315"}, {"stopSequence": 50, "arrival": {"time": "1694892363"}, "stopId": "42316"}, {"stopSequence": 51, "arrival": {"time": "1694892438"}, "stopId": "42317"}, {"stopSequence": 52, "arrival": {"time": "1694892537"}, "stopId": "42319"}, {"stopSequence": 53, "arrival": {"time": "1694892666"}, "stopId": "42320"}, {"stopSequence": 54, "arrival": {"time": "1694892741"}, "stopId": "38514"}, {"stopSequence": 55, "arrival": {"time": "1694892832"}, "stopId": "34586"}, {"stopSequence": 56, "arrival": {"time": "1694892880"}, "stopId": "34587"}, {"stopSequence": 57, "arrival": {"time": "1694892922"}, "stopId": "34588"}, {"stopSequence": 58, "arrival": {"time": "1694893003"}, "stopId": "39497"}, {"stopSequence": 59, "arrival": {"time": "1694893062"}, "stopId": "49407"}, {"stopSequence": 60, "arrival": {"time": "1694893163"}, "stopId": "50034"}, {"stopSequence": 61, "arrival": {"time": "1694893235"}, "stopId": "40903"}, {"stopSequence": 62, "arrival": {"time": "1694893298"}, "stopId": "40904"}, {"stopSequence": 63, "arrival": {"time": "1694893382"}, "stopId": "35814"}, {"stopSequence": 64, "arrival": {"time": "1694893529"}, "stopId": "35815"}, {"stopSequence": 65, "arrival": {"time": "1694893582"}, "stopId": "35816"}, {"stopSequence": 66, "arrival": {"time": "1694893607"}, "stopId": "35817"}, {"stopSequence": 67, "arrival": {"time": "1694893678"}, "stopId": "35818"}, {"stopSequence": 68, "arrival": {"time": "1694893758"}, "stopId": "35819"}, {"stopSequence": 69, "arrival": {"time": "1694894183"}, "stopId": "35822"}, {"stopSequence": 70, "arrival": {"time": "1694894302"}, "stopId": "35823"}, {"stopSequence": 71, "arrival": {"time": "1694894438"}, "stopId": "35723"}, {"stopSequence": 72, "arrival": {"time": "1694894553"}, "stopId": "35722"}, {"stopSequence": 73, "arrival": {"time": "1694894776"}, "stopId": "35826"}, {"stopSequence": 74, "arrival": {"time": "1694894939"}, "stopId": "35827"}, {"stopSequence": 75, "arrival": {"time": "1694895005"}, "stopId": "35828"}, {"stopSequence": 76, "arrival": {"time": "1694895170"}, "stopId": "35829"}, {"stopSequence": 77, "arrival": {"time": "1694895551"}, "stopId": "40921"}], "vehicle": {"licensePlate": "FXJS25"}, "timestamp": "1694889004"}, "vehicle": {"trip": {"tripId": "17570-701ff27f-2", "startTime": "16:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "567", "directionId": 0}, "position": {"latitude": -36.952847, "longitude": -73.013695, "bearing": 346.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889004", "vehicle": {"licensePlate": "FXJS25"}}}, {"id": "12e7bf91-bb84-47df-b84c-75a141552e6a", "tripUpdate": {"trip": {"tripId": "17569-701ff27f-2", "startTime": "15:40:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "567", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 15, "arrival": {"time": "1694889066"}, "stopId": "42281"}, {"stopSequence": 16, "arrival": {"time": "1694889145"}, "stopId": "42282"}, {"stopSequence": 17, "arrival": {"time": "1694889204"}, "stopId": "42283"}, {"stopSequence": 18, "arrival": {"time": "1694889271"}, "stopId": "49279"}, {"stopSequence": 19, "arrival": {"time": "1694889348"}, "stopId": "42285"}, {"stopSequence": 20, "arrival": {"time": "1694889441"}, "stopId": "42286"}, {"stopSequence": 21, "arrival": {"time": "1694889457"}, "stopId": "42287"}, {"stopSequence": 22, "arrival": {"time": "1694889514"}, "stopId": "42288"}, {"stopSequence": 23, "arrival": {"time": "1694889549"}, "stopId": "42289"}, {"stopSequence": 24, "arrival": {"time": "1694889630"}, "stopId": "42290"}, {"stopSequence": 25, "arrival": {"time": "1694889671"}, "stopId": "42291"}, {"stopSequence": 26, "arrival": {"time": "1694889765"}, "stopId": "42292"}, {"stopSequence": 27, "arrival": {"time": "1694889831"}, "stopId": "42293"}, {"stopSequence": 28, "arrival": {"time": "1694890006"}, "stopId": "42294"}, {"stopSequence": 29, "arrival": {"time": "1694890131"}, "stopId": "42295"}, {"stopSequence": 30, "arrival": {"time": "1694890242"}, "stopId": "42296"}, {"stopSequence": 31, "arrival": {"time": "1694890365"}, "stopId": "42297"}, {"stopSequence": 32, "arrival": {"time": "1694890460"}, "stopId": "42298"}, {"stopSequence": 33, "arrival": {"time": "1694890523"}, "stopId": "42299"}, {"stopSequence": 34, "arrival": {"time": "1694890565"}, "stopId": "49295"}, {"stopSequence": 35, "arrival": {"time": "1694890686"}, "stopId": "49296"}, {"stopSequence": 36, "arrival": {"time": "1694890775"}, "stopId": "49297"}, {"stopSequence": 37, "arrival": {"time": "1694890810"}, "stopId": "49298"}, {"stopSequence": 38, "arrival": {"time": "1694890882"}, "stopId": "49299"}, {"stopSequence": 39, "arrival": {"time": "1694890927"}, "stopId": "49300"}, {"stopSequence": 40, "arrival": {"time": "1694891015"}, "stopId": "49301"}, {"stopSequence": 41, "arrival": {"time": "1694891087"}, "stopId": "49302"}, {"stopSequence": 42, "arrival": {"time": "1694891136"}, "stopId": "49303"}, {"stopSequence": 43, "arrival": {"time": "1694891192"}, "stopId": "49304"}, {"stopSequence": 44, "arrival": {"time": "1694891223"}, "stopId": "49305"}, {"stopSequence": 45, "arrival": {"time": "1694891286"}, "stopId": "49306"}, {"stopSequence": 46, "arrival": {"time": "1694891330"}, "stopId": "49307"}, {"stopSequence": 47, "arrival": {"time": "1694891358"}, "stopId": "49308"}, {"stopSequence": 48, "arrival": {"time": "1694891385"}, "stopId": "49309"}, {"stopSequence": 49, "arrival": {"time": "1694891417"}, "stopId": "42315"}, {"stopSequence": 50, "arrival": {"time": "1694891444"}, "stopId": "42316"}, {"stopSequence": 51, "arrival": {"time": "1694891503"}, "stopId": "42317"}, {"stopSequence": 52, "arrival": {"time": "1694891581"}, "stopId": "42319"}, {"stopSequence": 53, "arrival": {"time": "1694891681"}, "stopId": "42320"}, {"stopSequence": 54, "arrival": {"time": "1694891739"}, "stopId": "38514"}, {"stopSequence": 55, "arrival": {"time": "1694891808"}, "stopId": "34586"}, {"stopSequence": 56, "arrival": {"time": "1694891845"}, "stopId": "34587"}, {"stopSequence": 57, "arrival": {"time": "1694891877"}, "stopId": "34588"}, {"stopSequence": 58, "arrival": {"time": "1694891938"}, "stopId": "39497"}, {"stopSequence": 59, "arrival": {"time": "1694891982"}, "stopId": "49407"}, {"stopSequence": 60, "arrival": {"time": "1694892058"}, "stopId": "50034"}, {"stopSequence": 61, "arrival": {"time": "1694892111"}, "stopId": "40903"}, {"stopSequence": 62, "arrival": {"time": "1694892157"}, "stopId": "40904"}, {"stopSequence": 63, "arrival": {"time": "1694892218"}, "stopId": "35814"}, {"stopSequence": 64, "arrival": {"time": "1694892325"}, "stopId": "35815"}, {"stopSequence": 65, "arrival": {"time": "1694892363"}, "stopId": "35816"}, {"stopSequence": 66, "arrival": {"time": "1694892381"}, "stopId": "35817"}, {"stopSequence": 67, "arrival": {"time": "1694892431"}, "stopId": "35818"}, {"stopSequence": 68, "arrival": {"time": "1694892489"}, "stopId": "35819"}, {"stopSequence": 69, "arrival": {"time": "1694892785"}, "stopId": "35822"}, {"stopSequence": 70, "arrival": {"time": "1694892866"}, "stopId": "35823"}, {"stopSequence": 71, "arrival": {"time": "1694892958"}, "stopId": "35723"}, {"stopSequence": 72, "arrival": {"time": "1694893036"}, "stopId": "35722"}, {"stopSequence": 73, "arrival": {"time": "1694893184"}, "stopId": "35826"}, {"stopSequence": 74, "arrival": {"time": "1694893290"}, "stopId": "35827"}, {"stopSequence": 75, "arrival": {"time": "1694893333"}, "stopId": "35828"}, {"stopSequence": 76, "arrival": {"time": "1694893440"}, "stopId": "35829"}, {"stopSequence": 77, "arrival": {"time": "1694893681"}, "stopId": "40921"}], "vehicle": {"licensePlate": "WU1086"}, "timestamp": "1694889024"}, "vehicle": {"trip": {"tripId": "17569-701ff27f-2", "startTime": "15:40:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "567", "directionId": 0}, "position": {"latitude": -36.933205, "longitude": -73.02182, "bearing": 312.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889024", "vehicle": {"licensePlate": "WU1086"}}}, {"id": "b0dada73-a90a-42db-a15d-66d86383f96d", "tripUpdate": {"trip": {"tripId": "17566-701ff27f-2", "startTime": "14:40:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "567", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 74, "arrival": {"time": "1694889063"}, "stopId": "35827"}, {"stopSequence": 75, "arrival": {"time": "1694889087"}, "stopId": "35828"}, {"stopSequence": 76, "arrival": {"time": "1694889146"}, "stopId": "35829"}, {"stopSequence": 77, "arrival": {"time": "1694889273"}, "stopId": "40921"}], "vehicle": {"licensePlate": "XC3913"}, "timestamp": "1694889037"}, "vehicle": {"trip": {"tripId": "17566-701ff27f-2", "startTime": "14:40:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "567", "directionId": 0}, "position": {"latitude": -36.832325, "longitude": -73.00562, "bearing": 173.0, "odometer": 0.0, "speed": 5.2777777}, "timestamp": "1694889037", "vehicle": {"licensePlate": "XC3913"}}}, {"id": "972eab18-e1ae-4f0f-8a9b-ba8b03022e1a", "tripUpdate": {"trip": {"tripId": "17568-701ff27f-2", "startTime": "15:20:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "567", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 38, "arrival": {"time": "1694889077"}, "stopId": "49299"}, {"stopSequence": 39, "arrival": {"time": "1694889122"}, "stopId": "49300"}, {"stopSequence": 40, "arrival": {"time": "1694889209"}, "stopId": "49301"}, {"stopSequence": 41, "arrival": {"time": "1694889279"}, "stopId": "49302"}, {"stopSequence": 42, "arrival": {"time": "1694889325"}, "stopId": "49303"}, {"stopSequence": 43, "arrival": {"time": "1694889378"}, "stopId": "49304"}, {"stopSequence": 44, "arrival": {"time": "1694889406"}, "stopId": "49305"}, {"stopSequence": 45, "arrival": {"time": "1694889463"}, "stopId": "49306"}, {"stopSequence": 46, "arrival": {"time": "1694889503"}, "stopId": "49307"}, {"stopSequence": 47, "arrival": {"time": "1694889527"}, "stopId": "49308"}, {"stopSequence": 48, "arrival": {"time": "1694889551"}, "stopId": "49309"}, {"stopSequence": 49, "arrival": {"time": "1694889579"}, "stopId": "42315"}, {"stopSequence": 50, "arrival": {"time": "1694889602"}, "stopId": "42316"}, {"stopSequence": 51, "arrival": {"time": "1694889652"}, "stopId": "42317"}, {"stopSequence": 52, "arrival": {"time": "1694889716"}, "stopId": "42319"}, {"stopSequence": 53, "arrival": {"time": "1694889798"}, "stopId": "42320"}, {"stopSequence": 54, "arrival": {"time": "1694889844"}, "stopId": "38514"}, {"stopSequence": 55, "arrival": {"time": "1694889898"}, "stopId": "34586"}, {"stopSequence": 56, "arrival": {"time": "1694889926"}, "stopId": "34587"}, {"stopSequence": 57, "arrival": {"time": "1694889950"}, "stopId": "34588"}, {"stopSequence": 58, "arrival": {"time": "1694889996"}, "stopId": "39497"}, {"stopSequence": 59, "arrival": {"time": "1694890029"}, "stopId": "49407"}, {"stopSequence": 60, "arrival": {"time": "1694890084"}, "stopId": "50034"}, {"stopSequence": 61, "arrival": {"time": "1694890122"}, "stopId": "40903"}, {"stopSequence": 62, "arrival": {"time": "1694890155"}, "stopId": "40904"}, {"stopSequence": 63, "arrival": {"time": "1694890199"}, "stopId": "35814"}, {"stopSequence": 64, "arrival": {"time": "1694890272"}, "stopId": "35815"}, {"stopSequence": 65, "arrival": {"time": "1694890298"}, "stopId": "35816"}, {"stopSequence": 66, "arrival": {"time": "1694890310"}, "stopId": "35817"}, {"stopSequence": 67, "arrival": {"time": "1694890344"}, "stopId": "35818"}, {"stopSequence": 68, "arrival": {"time": "1694890382"}, "stopId": "35819"}, {"stopSequence": 69, "arrival": {"time": "1694890570"}, "stopId": "35822"}, {"stopSequence": 70, "arrival": {"time": "1694890620"}, "stopId": "35823"}, {"stopSequence": 71, "arrival": {"time": "1694890675"}, "stopId": "35723"}, {"stopSequence": 72, "arrival": {"time": "1694890721"}, "stopId": "35722"}, {"stopSequence": 73, "arrival": {"time": "1694890807"}, "stopId": "35826"}, {"stopSequence": 74, "arrival": {"time": "1694890867"}, "stopId": "35827"}, {"stopSequence": 75, "arrival": {"time": "1694890891"}, "stopId": "35828"}, {"stopSequence": 76, "arrival": {"time": "1694890949"}, "stopId": "35829"}, {"stopSequence": 77, "arrival": {"time": "1694891078"}, "stopId": "40921"}], "vehicle": {"licensePlate": "ZT3126"}, "timestamp": "1694889006"}, "vehicle": {"trip": {"tripId": "17568-701ff27f-2", "startTime": "15:20:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "567", "directionId": 0}, "position": {"latitude": -36.855858, "longitude": -73.049644, "bearing": 356.0, "odometer": 0.0, "speed": 18.055555}, "timestamp": "1694889006", "vehicle": {"licensePlate": "ZT3126"}}}, {"id": "4279047f-791d-4a70-a84f-618708864c5c", "tripUpdate": {"trip": {"tripId": "17615-701ff27f-2", "startTime": "15:32:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "567", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 49, "arrival": {"time": "1694889015"}, "stopId": "42218"}, {"stopSequence": 50, "arrival": {"time": "1694889056"}, "stopId": "42219"}, {"stopSequence": 51, "arrival": {"time": "1694889167"}, "stopId": "42220"}, {"stopSequence": 52, "arrival": {"time": "1694889213"}, "stopId": "42221"}, {"stopSequence": 53, "arrival": {"time": "1694889282"}, "stopId": "42222"}, {"stopSequence": 54, "arrival": {"time": "1694889352"}, "stopId": "42223"}, {"stopSequence": 55, "arrival": {"time": "1694889380"}, "stopId": "42224"}, {"stopSequence": 56, "arrival": {"time": "1694889456"}, "stopId": "42225"}, {"stopSequence": 57, "arrival": {"time": "1694889521"}, "stopId": "42226"}, {"stopSequence": 58, "arrival": {"time": "1694889573"}, "stopId": "42227"}, {"stopSequence": 59, "arrival": {"time": "1694889655"}, "stopId": "42228"}, {"stopSequence": 60, "arrival": {"time": "1694889689"}, "stopId": "42229"}, {"stopSequence": 61, "arrival": {"time": "1694889772"}, "stopId": "42230"}, {"stopSequence": 62, "arrival": {"time": "1694889817"}, "stopId": "42231"}, {"stopSequence": 63, "arrival": {"time": "1694889900"}, "stopId": "42232"}, {"stopSequence": 64, "arrival": {"time": "1694889980"}, "stopId": "42233"}, {"stopSequence": 65, "arrival": {"time": "1694890111"}, "stopId": "34557"}, {"stopSequence": 66, "arrival": {"time": "1694890196"}, "stopId": "42212"}, {"stopSequence": 67, "arrival": {"time": "1694890275"}, "stopId": "34560"}, {"stopSequence": 68, "arrival": {"time": "1694890315"}, "stopId": "42273"}, {"stopSequence": 69, "arrival": {"time": "1694890432"}, "stopId": "49203"}, {"stopSequence": 70, "arrival": {"time": "1694890486"}, "stopId": "49204"}, {"stopSequence": 71, "arrival": {"time": "1694890495"}, "stopId": "42503"}, {"stopSequence": 72, "arrival": {"time": "1694890508"}, "stopId": "49264"}], "vehicle": {"licensePlate": "ZT3921"}, "timestamp": "1694889001"}, "vehicle": {"trip": {"tripId": "17615-701ff27f-2", "startTime": "15:32:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "567", "directionId": 1}, "position": {"latitude": -36.90418, "longitude": -73.031265, "bearing": 184.0, "odometer": 0.0, "speed": 17.777779}, "timestamp": "1694889001", "vehicle": {"licensePlate": "ZT3921"}}}, {"id": "23c3c037-a8f9-401a-9993-b6b487ac713b", "tripUpdate": {"trip": {"tripId": "17670-701ff27f-2", "startTime": "14:36:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "568", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 80, "arrival": {"time": "1694889071"}, "stopId": "38514"}, {"stopSequence": 81, "arrival": {"time": "1694889130"}, "stopId": "34586"}, {"stopSequence": 82, "arrival": {"time": "1694889161"}, "stopId": "34587"}, {"stopSequence": 83, "arrival": {"time": "1694889187"}, "stopId": "34588"}, {"stopSequence": 84, "arrival": {"time": "1694889236"}, "stopId": "39497"}, {"stopSequence": 85, "arrival": {"time": "1694889271"}, "stopId": "49407"}, {"stopSequence": 86, "arrival": {"time": "1694889330"}, "stopId": "50034"}, {"stopSequence": 87, "arrival": {"time": "1694889370"}, "stopId": "40903"}, {"stopSequence": 88, "arrival": {"time": "1694889405"}, "stopId": "40904"}, {"stopSequence": 89, "arrival": {"time": "1694889449"}, "stopId": "35814"}, {"stopSequence": 90, "arrival": {"time": "1694889525"}, "stopId": "35815"}, {"stopSequence": 91, "arrival": {"time": "1694889551"}, "stopId": "35816"}, {"stopSequence": 92, "arrival": {"time": "1694889563"}, "stopId": "35817"}, {"stopSequence": 93, "arrival": {"time": "1694889598"}, "stopId": "35818"}, {"stopSequence": 94, "arrival": {"time": "1694889636"}, "stopId": "35819"}, {"stopSequence": 95, "arrival": {"time": "1694889822"}, "stopId": "35822"}, {"stopSequence": 96, "arrival": {"time": "1694889899"}, "stopId": "38833"}, {"stopSequence": 97, "arrival": {"time": "1694889925"}, "stopId": "40924"}, {"stopSequence": 98, "arrival": {"time": "1694890128"}, "stopId": "38812"}, {"stopSequence": 99, "arrival": {"time": "1694890162"}, "stopId": "38813"}, {"stopSequence": 100, "arrival": {"time": "1694890219"}, "stopId": "38814"}, {"stopSequence": 101, "arrival": {"time": "1694890264"}, "stopId": "38815"}, {"stopSequence": 102, "arrival": {"time": "1694890276"}, "stopId": "38816"}, {"stopSequence": 103, "arrival": {"time": "1694890366"}, "stopId": "40565"}, {"stopSequence": 104, "arrival": {"time": "1694890422"}, "stopId": "40566"}, {"stopSequence": 105, "arrival": {"time": "1694890441"}, "stopId": "40567"}], "vehicle": {"licensePlate": "DBRD57"}, "timestamp": "1694889035"}, "vehicle": {"trip": {"tripId": "17670-701ff27f-2", "startTime": "14:36:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "568", "directionId": 0}, "position": {"latitude": -36.826714, "longitude": -73.04467, "bearing": 61.0, "odometer": 0.0, "speed": 6.6666665}, "timestamp": "1694889035", "vehicle": {"licensePlate": "DBRD57"}}}, {"id": "05a9b596-4e7d-467d-9ee4-2df73de5b433", "tripUpdate": {"trip": {"tripId": "17674-701ff27f-2", "startTime": "15:36:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "568", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 3, "arrival": {"time": "1694889034"}, "stopId": "49228"}, {"stopSequence": 4, "arrival": {"time": "1694889115"}, "stopId": "49237"}, {"stopSequence": 5, "arrival": {"time": "1694889159"}, "stopId": "49238"}, {"stopSequence": 6, "arrival": {"time": "1694889194"}, "stopId": "40966"}, {"stopSequence": 7, "arrival": {"time": "1694889236"}, "stopId": "40967"}, {"stopSequence": 8, "arrival": {"time": "1694889312"}, "stopId": "40969"}, {"stopSequence": 9, "arrival": {"time": "1694889409"}, "stopId": "40970"}, {"stopSequence": 10, "arrival": {"time": "1694889454"}, "stopId": "49250"}, {"stopSequence": 11, "arrival": {"time": "1694889479"}, "stopId": "49244"}, {"stopSequence": 12, "arrival": {"time": "1694889495"}, "stopId": "49251"}, {"stopSequence": 13, "arrival": {"time": "1694889511"}, "stopId": "49242"}, {"stopSequence": 14, "arrival": {"time": "1694889557"}, "stopId": "38054"}, {"stopSequence": 15, "arrival": {"time": "1694889626"}, "stopId": "38055"}, {"stopSequence": 16, "arrival": {"time": "1694889752"}, "stopId": "49254"}, {"stopSequence": 17, "arrival": {"time": "1694889785"}, "stopId": "49255"}, {"stopSequence": 18, "arrival": {"time": "1694889820"}, "stopId": "34810"}, {"stopSequence": 19, "arrival": {"time": "1694889840"}, "stopId": "49256"}, {"stopSequence": 20, "arrival": {"time": "1694889864"}, "stopId": "49219"}, {"stopSequence": 21, "arrival": {"time": "1694889906"}, "stopId": "49249"}, {"stopSequence": 22, "arrival": {"time": "1694889928"}, "stopId": "49218"}, {"stopSequence": 23, "arrival": {"time": "1694889951"}, "stopId": "49257"}, {"stopSequence": 24, "arrival": {"time": "1694890068"}, "stopId": "49258"}, {"stopSequence": 25, "arrival": {"time": "1694890123"}, "stopId": "49259"}, {"stopSequence": 26, "arrival": {"time": "1694890134"}, "stopId": "49260"}, {"stopSequence": 27, "arrival": {"time": "1694890295"}, "stopId": "49261"}, {"stopSequence": 28, "arrival": {"time": "1694891140"}, "stopId": "34549"}, {"stopSequence": 29, "arrival": {"time": "1694891523"}, "stopId": "49264"}, {"stopSequence": 30, "arrival": {"time": "1694891525"}, "stopId": "49265"}, {"stopSequence": 31, "arrival": {"time": "1694891572"}, "stopId": "49266"}, {"stopSequence": 32, "arrival": {"time": "1694891635"}, "stopId": "49267"}, {"stopSequence": 33, "arrival": {"time": "1694891727"}, "stopId": "42274"}, {"stopSequence": 34, "arrival": {"time": "1694891823"}, "stopId": "42275"}, {"stopSequence": 35, "arrival": {"time": "1694891873"}, "stopId": "42276"}, {"stopSequence": 36, "arrival": {"time": "1694891982"}, "stopId": "42277"}, {"stopSequence": 37, "arrival": {"time": "1694892090"}, "stopId": "42278"}, {"stopSequence": 38, "arrival": {"time": "1694892146"}, "stopId": "42279"}, {"stopSequence": 39, "arrival": {"time": "1694892259"}, "stopId": "42280"}, {"stopSequence": 40, "arrival": {"time": "1694892319"}, "stopId": "42281"}, {"stopSequence": 41, "arrival": {"time": "1694892430"}, "stopId": "42282"}, {"stopSequence": 42, "arrival": {"time": "1694892510"}, "stopId": "42283"}, {"stopSequence": 43, "arrival": {"time": "1694892610"}, "stopId": "49279"}, {"stopSequence": 44, "arrival": {"time": "1694892733"}, "stopId": "42285"}, {"stopSequence": 45, "arrival": {"time": "1694892888"}, "stopId": "49281"}, {"stopSequence": 46, "arrival": {"time": "1694892995"}, "stopId": "49282"}, {"stopSequence": 47, "arrival": {"time": "1694893069"}, "stopId": "49283"}, {"stopSequence": 48, "arrival": {"time": "1694893170"}, "stopId": "49284"}, {"stopSequence": 49, "arrival": {"time": "1694893276"}, "stopId": "49285"}, {"stopSequence": 50, "arrival": {"time": "1694893420"}, "stopId": "49286"}, {"stopSequence": 51, "arrival": {"time": "1694893502"}, "stopId": "49287"}, {"stopSequence": 52, "arrival": {"time": "1694893594"}, "stopId": "49288"}, {"stopSequence": 53, "arrival": {"time": "1694893697"}, "stopId": "49289"}, {"stopSequence": 54, "arrival": {"time": "1694893990"}, "stopId": "42294"}, {"stopSequence": 55, "arrival": {"time": "1694894287"}, "stopId": "42295"}, {"stopSequence": 56, "arrival": {"time": "1694894572"}, "stopId": "42296"}, {"stopSequence": 57, "arrival": {"time": "1694894911"}, "stopId": "42297"}, {"stopSequence": 58, "arrival": {"time": "1694895191"}, "stopId": "42298"}, {"stopSequence": 59, "arrival": {"time": "1694895387"}, "stopId": "42299"}, {"stopSequence": 60, "arrival": {"time": "1694895522"}, "stopId": "49295"}, {"stopSequence": 61, "arrival": {"time": "1694895920"}, "stopId": "49296"}, {"stopSequence": 62, "arrival": {"time": "1694896253"}, "stopId": "49297"}, {"stopSequence": 63, "arrival": {"time": "1694896389"}, "stopId": "49298"}, {"stopSequence": 64, "arrival": {"time": "1694896631"}, "stopId": "49299"}, {"stopSequence": 65, "arrival": {"time": "1694896852"}, "stopId": "49300"}, {"stopSequence": 66, "arrival": {"time": "1694897227"}, "stopId": "49301"}, {"stopSequence": 67, "arrival": {"time": "1694897555"}, "stopId": "49302"}, {"stopSequence": 68, "arrival": {"time": "1694897784"}, "stopId": "49303"}, {"stopSequence": 69, "arrival": {"time": "1694898060"}, "stopId": "49304"}, {"stopSequence": 70, "arrival": {"time": "1694898217"}, "stopId": "49305"}, {"stopSequence": 71, "arrival": {"time": "1694898545"}, "stopId": "49306"}, {"stopSequence": 72, "arrival": {"time": "1694898789"}, "stopId": "49307"}, {"stopSequence": 73, "arrival": {"time": "1694898942"}, "stopId": "49308"}, {"stopSequence": 74, "arrival": {"time": "1694899100"}, "stopId": "49309"}, {"stopSequence": 75, "arrival": {"time": "1694899288"}, "stopId": "42315"}, {"stopSequence": 76, "arrival": {"time": "1694899448"}, "stopId": "42316"}, {"stopSequence": 77, "arrival": {"time": "1694899815"}, "stopId": "42317"}, {"stopSequence": 78, "arrival": {"time": "1694900398"}, "stopId": "42319"}, {"stopSequence": 79, "arrival": {"time": "1694901031"}, "stopId": "42320"}, {"stopSequence": 80, "arrival": {"time": "1694901470"}, "stopId": "38514"}, {"stopSequence": 81, "arrival": {"time": "1694902019"}, "stopId": "34586"}, {"stopSequence": 82, "arrival": {"time": "1694902327"}, "stopId": "34587"}, {"stopSequence": 83, "arrival": {"time": "1694902597"}, "stopId": "34588"}, {"stopSequence": 84, "arrival": {"time": "1694903146"}, "stopId": "39497"}, {"stopSequence": 85, "arrival": {"time": "1694903563"}, "stopId": "49407"}, {"stopSequence": 86, "arrival": {"time": "1694904320"}, "stopId": "50034"}, {"stopSequence": 87, "arrival": {"time": "1694904882"}, "stopId": "40903"}, {"stopSequence": 88, "arrival": {"time": "1694905401"}, "stopId": "40904"}, {"stopSequence": 89, "arrival": {"time": "1694906128"}, "stopId": "35814"}, {"stopSequence": 90, "arrival": {"time": "1694907505"}, "stopId": "35815"}, {"stopSequence": 91, "arrival": {"time": "1694908038"}, "stopId": "35816"}, {"stopSequence": 92, "arrival": {"time": "1694908299"}, "stopId": "35817"}, {"stopSequence": 93, "arrival": {"time": "1694909061"}, "stopId": "35818"}, {"stopSequence": 94, "arrival": {"time": "1694909985"}, "stopId": "35819"}, {"stopSequence": 95, "arrival": {"time": "1694915996"}, "stopId": "35822"}, {"stopSequence": 96, "arrival": {"time": "1694919580"}, "stopId": "38833"}, {"stopSequence": 97, "arrival": {"time": "1694921026"}, "stopId": "40924"}, {"stopSequence": 98, "arrival": {"time": "1694939058"}, "stopId": "38812"}, {"stopSequence": 99, "arrival": {"time": "1694944222"}, "stopId": "38813"}, {"stopSequence": 100, "arrival": {"time": "1694955686"}, "stopId": "38814"}, {"stopSequence": 101, "arrival": {"time": "1694968435"}, "stopId": "38815"}, {"stopSequence": 102, "arrival": {"time": "1694972845"}, "stopId": "38816"}, {"stopSequence": 103, "arrival": {"time": "1695028449"}, "stopId": "40565"}, {"stopSequence": 104, "arrival": {"time": "1695126668"}, "stopId": "40566"}, {"stopSequence": 105, "arrival": {"time": "1695201904"}, "stopId": "40567"}], "vehicle": {"licensePlate": "DDZY48"}, "timestamp": "1694889033"}, "vehicle": {"trip": {"tripId": "17674-701ff27f-2", "startTime": "15:36:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "568", "directionId": 0}, "position": {"latitude": -36.963898, "longitude": -72.936745, "bearing": 191.0, "odometer": 0.0, "speed": 7.7777777}, "timestamp": "1694889033", "vehicle": {"licensePlate": "DDZY48"}}}, {"id": "0f7be8ee-9755-40cc-a949-0887f092a4ee", "tripUpdate": {"trip": {"tripId": "17747-701ff27f-2", "startTime": "14:48:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "568", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 33, "arrival": {"time": "1694889223"}, "stopId": "42206"}, {"stopSequence": 34, "arrival": {"time": "1694889279"}, "stopId": "42207"}, {"stopSequence": 35, "arrival": {"time": "1694889341"}, "stopId": "42208"}, {"stopSequence": 36, "arrival": {"time": "1694889468"}, "stopId": "42564"}, {"stopSequence": 37, "arrival": {"time": "1694889573"}, "stopId": "42214"}, {"stopSequence": 38, "arrival": {"time": "1694889679"}, "stopId": "42209"}, {"stopSequence": 39, "arrival": {"time": "1694889794"}, "stopId": "42210"}, {"stopSequence": 40, "arrival": {"time": "1694889967"}, "stopId": "40951"}, {"stopSequence": 41, "arrival": {"time": "1694890027"}, "stopId": "40952"}, {"stopSequence": 42, "arrival": {"time": "1694890084"}, "stopId": "40953"}, {"stopSequence": 43, "arrival": {"time": "1694890127"}, "stopId": "40954"}, {"stopSequence": 44, "arrival": {"time": "1694890197"}, "stopId": "40955"}, {"stopSequence": 45, "arrival": {"time": "1694890234"}, "stopId": "40956"}, {"stopSequence": 46, "arrival": {"time": "1694890288"}, "stopId": "40957"}, {"stopSequence": 47, "arrival": {"time": "1694890342"}, "stopId": "40958"}, {"stopSequence": 48, "arrival": {"time": "1694890368"}, "stopId": "40959"}, {"stopSequence": 49, "arrival": {"time": "1694890438"}, "stopId": "42223"}, {"stopSequence": 50, "arrival": {"time": "1694890466"}, "stopId": "42224"}, {"stopSequence": 51, "arrival": {"time": "1694890541"}, "stopId": "42225"}, {"stopSequence": 52, "arrival": {"time": "1694890605"}, "stopId": "42226"}, {"stopSequence": 53, "arrival": {"time": "1694890658"}, "stopId": "42227"}, {"stopSequence": 54, "arrival": {"time": "1694890742"}, "stopId": "42228"}, {"stopSequence": 55, "arrival": {"time": "1694890785"}, "stopId": "42229"}, {"stopSequence": 56, "arrival": {"time": "1694890867"}, "stopId": "42230"}, {"stopSequence": 57, "arrival": {"time": "1694890910"}, "stopId": "42231"}, {"stopSequence": 58, "arrival": {"time": "1694890994"}, "stopId": "42232"}, {"stopSequence": 59, "arrival": {"time": "1694891131"}, "stopId": "42234"}, {"stopSequence": 60, "arrival": {"time": "1694891207"}, "stopId": "42235"}, {"stopSequence": 61, "arrival": {"time": "1694891241"}, "stopId": "42211"}, {"stopSequence": 62, "arrival": {"time": "1694891300"}, "stopId": "49203"}, {"stopSequence": 63, "arrival": {"time": "1694891361"}, "stopId": "49204"}, {"stopSequence": 64, "arrival": {"time": "1694891386"}, "stopId": "34564"}, {"stopSequence": 65, "arrival": {"time": "1694891793"}, "stopId": "34789"}, {"stopSequence": 66, "arrival": {"time": "1694891820"}, "stopId": "49163"}, {"stopSequence": 67, "arrival": {"time": "1694892896"}, "stopId": "49208"}, {"stopSequence": 68, "arrival": {"time": "1694892938"}, "stopId": "49209"}, {"stopSequence": 69, "arrival": {"time": "1694892964"}, "stopId": "49210"}, {"stopSequence": 70, "arrival": {"time": "1694893289"}, "stopId": "49211"}, {"stopSequence": 71, "arrival": {"time": "1694893341"}, "stopId": "49212"}, {"stopSequence": 72, "arrival": {"time": "1694893447"}, "stopId": "49213"}, {"stopSequence": 73, "arrival": {"time": "1694893807"}, "stopId": "49206"}, {"stopSequence": 74, "arrival": {"time": "1694893983"}, "stopId": "49215"}, {"stopSequence": 75, "arrival": {"time": "1694894001"}, "stopId": "49216"}, {"stopSequence": 76, "arrival": {"time": "1694894050"}, "stopId": "49217"}, {"stopSequence": 77, "arrival": {"time": "1694894105"}, "stopId": "49214"}, {"stopSequence": 78, "arrival": {"time": "1694894218"}, "stopId": "49218"}, {"stopSequence": 79, "arrival": {"time": "1694894268"}, "stopId": "49219"}, {"stopSequence": 80, "arrival": {"time": "1694894382"}, "stopId": "38044"}, {"stopSequence": 81, "arrival": {"time": "1694894479"}, "stopId": "38045"}, {"stopSequence": 82, "arrival": {"time": "1694894692"}, "stopId": "34824"}, {"stopSequence": 83, "arrival": {"time": "1694894983"}, "stopId": "38091"}, {"stopSequence": 84, "arrival": {"time": "1694895102"}, "stopId": "38092"}, {"stopSequence": 85, "arrival": {"time": "1694895187"}, "stopId": "38093"}, {"stopSequence": 86, "arrival": {"time": "1694895317"}, "stopId": "38094"}, {"stopSequence": 87, "arrival": {"time": "1694895361"}, "stopId": "49243"}, {"stopSequence": 88, "arrival": {"time": "1694895485"}, "stopId": "49245"}, {"stopSequence": 89, "arrival": {"time": "1694895622"}, "stopId": "40338"}, {"stopSequence": 90, "arrival": {"time": "1694895663"}, "stopId": "40339"}, {"stopSequence": 91, "arrival": {"time": "1694895704"}, "stopId": "40340"}, {"stopSequence": 92, "arrival": {"time": "1694895732"}, "stopId": "40341"}, {"stopSequence": 93, "arrival": {"time": "1694895896"}, "stopId": "40342"}, {"stopSequence": 94, "arrival": {"time": "1694896699"}, "stopId": "49226"}, {"stopSequence": 95, "arrival": {"time": "1694896816"}, "stopId": "49227"}, {"stopSequence": 96, "arrival": {"time": "1694896945"}, "stopId": "49229"}, {"stopSequence": 97, "arrival": {"time": "1694897016"}, "stopId": "49228"}, {"stopSequence": 98, "arrival": {"time": "1694897173"}, "stopId": "49230"}, {"stopSequence": 99, "arrival": {"time": "1694897286"}, "stopId": "49231"}, {"stopSequence": 100, "arrival": {"time": "1694897345"}, "stopId": "49233"}, {"stopSequence": 101, "arrival": {"time": "1694897495"}, "stopId": "49234"}, {"stopSequence": 102, "arrival": {"time": "1694897641"}, "stopId": "49235"}], "vehicle": {"licensePlate": "DSDY44"}, "timestamp": "1694889037"}, "vehicle": {"trip": {"tripId": "17747-701ff27f-2", "startTime": "14:48:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "568", "directionId": 1}, "position": {"latitude": -36.858715, "longitude": -73.04929, "bearing": 152.0, "odometer": 0.0, "speed": 20.833334}, "timestamp": "1694889037", "vehicle": {"licensePlate": "DSDY44"}}}, {"id": "b15aaa3e-12c5-45f7-b65f-9435f4d35a11", "tripUpdate": {"trip": {"tripId": "17672-701ff27f-2", "startTime": "15:06:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "568", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 33, "arrival": {"time": "1694889019"}, "stopId": "42274"}, {"stopSequence": 34, "arrival": {"time": "1694889101"}, "stopId": "42275"}, {"stopSequence": 35, "arrival": {"time": "1694889142"}, "stopId": "42276"}, {"stopSequence": 36, "arrival": {"time": "1694889230"}, "stopId": "42277"}, {"stopSequence": 37, "arrival": {"time": "1694889314"}, "stopId": "42278"}, {"stopSequence": 38, "arrival": {"time": "1694889356"}, "stopId": "42279"}, {"stopSequence": 39, "arrival": {"time": "1694889438"}, "stopId": "42280"}, {"stopSequence": 40, "arrival": {"time": "1694889481"}, "stopId": "42281"}, {"stopSequence": 41, "arrival": {"time": "1694889557"}, "stopId": "42282"}, {"stopSequence": 42, "arrival": {"time": "1694889610"}, "stopId": "42283"}, {"stopSequence": 43, "arrival": {"time": "1694889675"}, "stopId": "49279"}, {"stopSequence": 44, "arrival": {"time": "1694889752"}, "stopId": "42285"}, {"stopSequence": 45, "arrival": {"time": "1694889844"}, "stopId": "49281"}, {"stopSequence": 46, "arrival": {"time": "1694889906"}, "stopId": "49282"}, {"stopSequence": 47, "arrival": {"time": "1694889948"}, "stopId": "49283"}, {"stopSequence": 48, "arrival": {"time": "1694890003"}, "stopId": "49284"}, {"stopSequence": 49, "arrival": {"time": "1694890059"}, "stopId": "49285"}, {"stopSequence": 50, "arrival": {"time": "1694890134"}, "stopId": "49286"}, {"stopSequence": 51, "arrival": {"time": "1694890175"}, "stopId": "49287"}, {"stopSequence": 52, "arrival": {"time": "1694890220"}, "stopId": "49288"}, {"stopSequence": 53, "arrival": {"time": "1694890269"}, "stopId": "49289"}, {"stopSequence": 54, "arrival": {"time": "1694890403"}, "stopId": "42294"}, {"stopSequence": 55, "arrival": {"time": "1694890530"}, "stopId": "42295"}, {"stopSequence": 56, "arrival": {"time": "1694890645"}, "stopId": "42296"}, {"stopSequence": 57, "arrival": {"time": "1694890772"}, "stopId": "42297"}, {"stopSequence": 58, "arrival": {"time": "1694890872"}, "stopId": "42298"}, {"stopSequence": 59, "arrival": {"time": "1694890939"}, "stopId": "42299"}, {"stopSequence": 60, "arrival": {"time": "1694890983"}, "stopId": "49295"}, {"stopSequence": 61, "arrival": {"time": "1694891109"}, "stopId": "49296"}, {"stopSequence": 62, "arrival": {"time": "1694891208"}, "stopId": "49297"}, {"stopSequence": 63, "arrival": {"time": "1694891247"}, "stopId": "49298"}, {"stopSequence": 64, "arrival": {"time": "1694891314"}, "stopId": "49299"}, {"stopSequence": 65, "arrival": {"time": "1694891373"}, "stopId": "49300"}, {"stopSequence": 66, "arrival": {"time": "1694891469"}, "stopId": "49301"}, {"stopSequence": 67, "arrival": {"time": "1694891549"}, "stopId": "49302"}, {"stopSequence": 68, "arrival": {"time": "1694891603"}, "stopId": "49303"}, {"stopSequence": 69, "arrival": {"time": "1694891665"}, "stopId": "49304"}, {"stopSequence": 70, "arrival": {"time": "1694891700"}, "stopId": "49305"}, {"stopSequence": 71, "arrival": {"time": "1694891770"}, "stopId": "49306"}, {"stopSequence": 72, "arrival": {"time": "1694891820"}, "stopId": "49307"}, {"stopSequence": 73, "arrival": {"time": "1694891851"}, "stopId": "49308"}, {"stopSequence": 74, "arrival": {"time": "1694891882"}, "stopId": "49309"}, {"stopSequence": 75, "arrival": {"time": "1694891918"}, "stopId": "42315"}, {"stopSequence": 76, "arrival": {"time": "1694891948"}, "stopId": "42316"}, {"stopSequence": 77, "arrival": {"time": "1694892015"}, "stopId": "42317"}, {"stopSequence": 78, "arrival": {"time": "1694892116"}, "stopId": "42319"}, {"stopSequence": 79, "arrival": {"time": "1694892219"}, "stopId": "42320"}, {"stopSequence": 80, "arrival": {"time": "1694892286"}, "stopId": "38514"}, {"stopSequence": 81, "arrival": {"time": "1694892365"}, "stopId": "34586"}, {"stopSequence": 82, "arrival": {"time": "1694892408"}, "stopId": "34587"}, {"stopSequence": 83, "arrival": {"time": "1694892445"}, "stopId": "34588"}, {"stopSequence": 84, "arrival": {"time": "1694892516"}, "stopId": "39497"}, {"stopSequence": 85, "arrival": {"time": "1694892567"}, "stopId": "49407"}, {"stopSequence": 86, "arrival": {"time": "1694892656"}, "stopId": "50034"}, {"stopSequence": 87, "arrival": {"time": "1694892719"}, "stopId": "40903"}, {"stopSequence": 88, "arrival": {"time": "1694892773"}, "stopId": "40904"}, {"stopSequence": 89, "arrival": {"time": "1694892846"}, "stopId": "35814"}, {"stopSequence": 90, "arrival": {"time": "1694892973"}, "stopId": "35815"}, {"stopSequence": 91, "arrival": {"time": "1694893018"}, "stopId": "35816"}, {"stopSequence": 92, "arrival": {"time": "1694893040"}, "stopId": "35817"}, {"stopSequence": 93, "arrival": {"time": "1694893101"}, "stopId": "35818"}, {"stopSequence": 94, "arrival": {"time": "1694893170"}, "stopId": "35819"}, {"stopSequence": 95, "arrival": {"time": "1694893530"}, "stopId": "35822"}, {"stopSequence": 96, "arrival": {"time": "1694893690"}, "stopId": "38833"}, {"stopSequence": 97, "arrival": {"time": "1694893747"}, "stopId": "40924"}, {"stopSequence": 98, "arrival": {"time": "1694894214"}, "stopId": "38812"}, {"stopSequence": 99, "arrival": {"time": "1694894299"}, "stopId": "38813"}, {"stopSequence": 100, "arrival": {"time": "1694894445"}, "stopId": "38814"}, {"stopSequence": 101, "arrival": {"time": "1694894562"}, "stopId": "38815"}, {"stopSequence": 102, "arrival": {"time": "1694894595"}, "stopId": "38816"}, {"stopSequence": 103, "arrival": {"time": "1694894841"}, "stopId": "40565"}, {"stopSequence": 104, "arrival": {"time": "1694895004"}, "stopId": "40566"}, {"stopSequence": 105, "arrival": {"time": "1694895061"}, "stopId": "40567"}], "vehicle": {"licensePlate": "FYBB54"}, "timestamp": "1694889006"}, "vehicle": {"trip": {"tripId": "17672-701ff27f-2", "startTime": "15:06:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "568", "directionId": 0}, "position": {"latitude": -36.951412, "longitude": -73.01397, "bearing": 344.0, "odometer": 0.0, "speed": 13.055555}, "timestamp": "1694889006", "vehicle": {"licensePlate": "FYBB54"}}}, {"id": "91ecfba2-c800-48a5-8cc7-f2b0934a21aa", "tripUpdate": {"trip": {"tripId": "17745-701ff27f-2", "startTime": "14:18:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "568", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 78, "arrival": {"time": "1694889078"}, "stopId": "49218"}, {"stopSequence": 79, "arrival": {"time": "1694889101"}, "stopId": "49219"}, {"stopSequence": 80, "arrival": {"time": "1694889150"}, "stopId": "38044"}, {"stopSequence": 81, "arrival": {"time": "1694889191"}, "stopId": "38045"}, {"stopSequence": 82, "arrival": {"time": "1694889277"}, "stopId": "34824"}, {"stopSequence": 83, "arrival": {"time": "1694889385"}, "stopId": "38091"}, {"stopSequence": 84, "arrival": {"time": "1694889426"}, "stopId": "38092"}, {"stopSequence": 85, "arrival": {"time": "1694889455"}, "stopId": "38093"}, {"stopSequence": 86, "arrival": {"time": "1694889498"}, "stopId": "38094"}, {"stopSequence": 87, "arrival": {"time": "1694889512"}, "stopId": "49243"}, {"stopSequence": 88, "arrival": {"time": "1694889551"}, "stopId": "49245"}, {"stopSequence": 89, "arrival": {"time": "1694889593"}, "stopId": "40338"}, {"stopSequence": 90, "arrival": {"time": "1694889605"}, "stopId": "40339"}, {"stopSequence": 91, "arrival": {"time": "1694889617"}, "stopId": "40340"}, {"stopSequence": 92, "arrival": {"time": "1694889625"}, "stopId": "40341"}, {"stopSequence": 93, "arrival": {"time": "1694889672"}, "stopId": "40342"}, {"stopSequence": 94, "arrival": {"time": "1694889876"}, "stopId": "49226"}, {"stopSequence": 95, "arrival": {"time": "1694889903"}, "stopId": "49227"}, {"stopSequence": 96, "arrival": {"time": "1694889931"}, "stopId": "49229"}, {"stopSequence": 97, "arrival": {"time": "1694889947"}, "stopId": "49228"}, {"stopSequence": 98, "arrival": {"time": "1694889980"}, "stopId": "49230"}, {"stopSequence": 99, "arrival": {"time": "1694890004"}, "stopId": "49231"}, {"stopSequence": 100, "arrival": {"time": "1694890016"}, "stopId": "49233"}, {"stopSequence": 101, "arrival": {"time": "1694890046"}, "stopId": "49234"}, {"stopSequence": 102, "arrival": {"time": "1694890074"}, "stopId": "49235"}], "vehicle": {"licensePlate": "LZZG48"}, "timestamp": "1694889035"}, "vehicle": {"trip": {"tripId": "17745-701ff27f-2", "startTime": "14:18:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "568", "directionId": 1}, "position": {"latitude": -36.977425, "longitude": -72.93916, "bearing": 5.0, "odometer": 0.0, "speed": 8.333333}, "timestamp": "1694889035", "vehicle": {"licensePlate": "LZZG48"}}}, {"id": "1dbdd3e5-e542-4299-afdc-9ebd70d6d322", "tripUpdate": {"trip": {"tripId": "17749-701ff27f-2", "startTime": "15:18:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "568", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 14, "arrival": {"time": "1694889038"}, "stopId": "35202"}, {"stopSequence": 15, "arrival": {"time": "1694889151"}, "stopId": "90001"}, {"stopSequence": 16, "arrival": {"time": "1694889243"}, "stopId": "39599"}, {"stopSequence": 17, "arrival": {"time": "1694889266"}, "stopId": "39600"}, {"stopSequence": 18, "arrival": {"time": "1694889335"}, "stopId": "37496"}, {"stopSequence": 19, "arrival": {"time": "1694889385"}, "stopId": "45064"}, {"stopSequence": 20, "arrival": {"time": "1694889460"}, "stopId": "37506"}, {"stopSequence": 21, "arrival": {"time": "1694889500"}, "stopId": "45068"}, {"stopSequence": 22, "arrival": {"time": "1694889616"}, "stopId": "37480"}, {"stopSequence": 23, "arrival": {"time": "1694889676"}, "stopId": "37477"}, {"stopSequence": 24, "arrival": {"time": "1694889747"}, "stopId": "40848"}, {"stopSequence": 25, "arrival": {"time": "1694889834"}, "stopId": "2-Apr"}, {"stopSequence": 26, "arrival": {"time": "1694889890"}, "stopId": "39728"}, {"stopSequence": 27, "arrival": {"time": "1694889985"}, "stopId": "39729"}, {"stopSequence": 28, "arrival": {"time": "1694890009"}, "stopId": "39730"}, {"stopSequence": 29, "arrival": {"time": "1694890109"}, "stopId": "42200"}, {"stopSequence": 30, "arrival": {"time": "1694890153"}, "stopId": "42203"}, {"stopSequence": 31, "arrival": {"time": "1694890206"}, "stopId": "42204"}, {"stopSequence": 32, "arrival": {"time": "1694890237"}, "stopId": "42205"}, {"stopSequence": 33, "arrival": {"time": "1694890555"}, "stopId": "42206"}, {"stopSequence": 34, "arrival": {"time": "1694890610"}, "stopId": "42207"}, {"stopSequence": 35, "arrival": {"time": "1694890670"}, "stopId": "42208"}, {"stopSequence": 36, "arrival": {"time": "1694890797"}, "stopId": "42564"}, {"stopSequence": 37, "arrival": {"time": "1694890906"}, "stopId": "42214"}, {"stopSequence": 38, "arrival": {"time": "1694891018"}, "stopId": "42209"}, {"stopSequence": 39, "arrival": {"time": "1694891145"}, "stopId": "42210"}, {"stopSequence": 40, "arrival": {"time": "1694891340"}, "stopId": "40951"}, {"stopSequence": 41, "arrival": {"time": "1694891410"}, "stopId": "40952"}, {"stopSequence": 42, "arrival": {"time": "1694891478"}, "stopId": "40953"}, {"stopSequence": 43, "arrival": {"time": "1694891530"}, "stopId": "40954"}, {"stopSequence": 44, "arrival": {"time": "1694891615"}, "stopId": "40955"}, {"stopSequence": 45, "arrival": {"time": "1694891661"}, "stopId": "40956"}, {"stopSequence": 46, "arrival": {"time": "1694891729"}, "stopId": "40957"}, {"stopSequence": 47, "arrival": {"time": "1694891797"}, "stopId": "40958"}, {"stopSequence": 48, "arrival": {"time": "1694891831"}, "stopId": "40959"}, {"stopSequence": 49, "arrival": {"time": "1694891921"}, "stopId": "42223"}, {"stopSequence": 50, "arrival": {"time": "1694891958"}, "stopId": "42224"}, {"stopSequence": 51, "arrival": {"time": "1694892058"}, "stopId": "42225"}, {"stopSequence": 52, "arrival": {"time": "1694892144"}, "stopId": "42226"}, {"stopSequence": 53, "arrival": {"time": "1694892217"}, "stopId": "42227"}, {"stopSequence": 54, "arrival": {"time": "1694892335"}, "stopId": "42228"}, {"stopSequence": 55, "arrival": {"time": "1694892395"}, "stopId": "42229"}, {"stopSequence": 56, "arrival": {"time": "1694892513"}, "stopId": "42230"}, {"stopSequence": 57, "arrival": {"time": "1694892576"}, "stopId": "42231"}, {"stopSequence": 58, "arrival": {"time": "1694892700"}, "stopId": "42232"}, {"stopSequence": 59, "arrival": {"time": "1694892908"}, "stopId": "42234"}, {"stopSequence": 60, "arrival": {"time": "1694893027"}, "stopId": "42235"}, {"stopSequence": 61, "arrival": {"time": "1694893080"}, "stopId": "42211"}, {"stopSequence": 62, "arrival": {"time": "1694893174"}, "stopId": "49203"}, {"stopSequence": 63, "arrival": {"time": "1694893272"}, "stopId": "49204"}, {"stopSequence": 64, "arrival": {"time": "1694893313"}, "stopId": "34564"}, {"stopSequence": 65, "arrival": {"time": "1694894011"}, "stopId": "34789"}, {"stopSequence": 66, "arrival": {"time": "1694894060"}, "stopId": "49163"}, {"stopSequence": 67, "arrival": {"time": "1694896251"}, "stopId": "49208"}, {"stopSequence": 68, "arrival": {"time": "1694896349"}, "stopId": "49209"}, {"stopSequence": 69, "arrival": {"time": "1694896410"}, "stopId": "49210"}, {"stopSequence": 70, "arrival": {"time": "1694897196"}, "stopId": "49211"}, {"stopSequence": 71, "arrival": {"time": "1694897327"}, "stopId": "49212"}, {"stopSequence": 72, "arrival": {"time": "1694897599"}, "stopId": "49213"}, {"stopSequence": 73, "arrival": {"time": "1694898577"}, "stopId": "49206"}, {"stopSequence": 74, "arrival": {"time": "1694899087"}, "stopId": "49215"}, {"stopSequence": 75, "arrival": {"time": "1694899140"}, "stopId": "49216"}, {"stopSequence": 76, "arrival": {"time": "1694899287"}, "stopId": "49217"}, {"stopSequence": 77, "arrival": {"time": "1694899454"}, "stopId": "49214"}, {"stopSequence": 78, "arrival": {"time": "1694899802"}, "stopId": "49218"}, {"stopSequence": 79, "arrival": {"time": "1694899960"}, "stopId": "49219"}, {"stopSequence": 80, "arrival": {"time": "1694900327"}, "stopId": "38044"}, {"stopSequence": 81, "arrival": {"time": "1694900650"}, "stopId": "38045"}, {"stopSequence": 82, "arrival": {"time": "1694901382"}, "stopId": "34824"}, {"stopSequence": 83, "arrival": {"time": "1694902457"}, "stopId": "38091"}, {"stopSequence": 84, "arrival": {"time": "1694902918"}, "stopId": "38092"}, {"stopSequence": 85, "arrival": {"time": "1694903258"}, "stopId": "38093"}, {"stopSequence": 86, "arrival": {"time": "1694903796"}, "stopId": "38094"}, {"stopSequence": 87, "arrival": {"time": "1694903982"}, "stopId": "49243"}, {"stopSequence": 88, "arrival": {"time": "1694904518"}, "stopId": "49245"}, {"stopSequence": 89, "arrival": {"time": "1694905136"}, "stopId": "40338"}, {"stopSequence": 90, "arrival": {"time": "1694905325"}, "stopId": "40339"}, {"stopSequence": 91, "arrival": {"time": "1694905519"}, "stopId": "40340"}, {"stopSequence": 92, "arrival": {"time": "1694905653"}, "stopId": "40341"}, {"stopSequence": 93, "arrival": {"time": "1694906451"}, "stopId": "40342"}, {"stopSequence": 94, "arrival": {"time": "1694911027"}, "stopId": "49226"}, {"stopSequence": 95, "arrival": {"time": "1694911804"}, "stopId": "49227"}, {"stopSequence": 96, "arrival": {"time": "1694912700"}, "stopId": "49229"}, {"stopSequence": 97, "arrival": {"time": "1694913213"}, "stopId": "49228"}, {"stopSequence": 98, "arrival": {"time": "1694914394"}, "stopId": "49230"}, {"stopSequence": 99, "arrival": {"time": "1694915288"}, "stopId": "49231"}, {"stopSequence": 100, "arrival": {"time": "1694915772"}, "stopId": "49233"}, {"stopSequence": 101, "arrival": {"time": "1694917045"}, "stopId": "49234"}, {"stopSequence": 102, "arrival": {"time": "1694918367"}, "stopId": "49235"}], "vehicle": {"licensePlate": "YJ3034"}, "timestamp": "1694889038"}, "vehicle": {"trip": {"tripId": "17749-701ff27f-2", "startTime": "15:18:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "568", "directionId": 1}, "position": {"latitude": -36.815414, "longitude": -73.02852, "bearing": 289.0, "odometer": 0.0, "speed": 8.611111}, "timestamp": "1694889038", "vehicle": {"licensePlate": "YJ3034"}}}, {"id": "97302e58-9e3c-47f5-940d-81a4d494bcc3", "tripUpdate": {"trip": {"tripId": "17871-701ff27f-2", "startTime": "14:59:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "572", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 44, "arrival": {"time": "1694889046"}, "stopId": "16005209"}, {"stopSequence": 45, "arrival": {"time": "1694889294"}, "stopId": "38531"}, {"stopSequence": 46, "arrival": {"time": "1694889350"}, "stopId": "8921285"}, {"stopSequence": 47, "arrival": {"time": "1694889463"}, "stopId": "38532"}, {"stopSequence": 48, "arrival": {"time": "1694889515"}, "stopId": "38533"}, {"stopSequence": 49, "arrival": {"time": "1694889570"}, "stopId": "38534"}, {"stopSequence": 50, "arrival": {"time": "1694889618"}, "stopId": "38535"}, {"stopSequence": 51, "arrival": {"time": "1694889678"}, "stopId": "38536"}, {"stopSequence": 52, "arrival": {"time": "1694889713"}, "stopId": "4838437"}, {"stopSequence": 53, "arrival": {"time": "1694889769"}, "stopId": "45085"}, {"stopSequence": 54, "arrival": {"time": "1694889846"}, "stopId": "45086"}, {"stopSequence": 55, "arrival": {"time": "1694889898"}, "stopId": "38539"}, {"stopSequence": 56, "arrival": {"time": "1694889962"}, "stopId": "38540"}, {"stopSequence": 57, "arrival": {"time": "1694890038"}, "stopId": "38544"}, {"stopSequence": 58, "arrival": {"time": "1694890104"}, "stopId": "38545"}, {"stopSequence": 59, "arrival": {"time": "1694890193"}, "stopId": "38546"}, {"stopSequence": 60, "arrival": {"time": "1694890310"}, "stopId": "38548"}, {"stopSequence": 61, "arrival": {"time": "1694890375"}, "stopId": "38549"}, {"stopSequence": 62, "arrival": {"time": "1694890429"}, "stopId": "38550"}, {"stopSequence": 63, "arrival": {"time": "1694890524"}, "stopId": "38551"}, {"stopSequence": 64, "arrival": {"time": "1694890608"}, "stopId": "38552"}, {"stopSequence": 65, "arrival": {"time": "1694890691"}, "stopId": "49359"}, {"stopSequence": 66, "arrival": {"time": "1694890741"}, "stopId": "49360"}, {"stopSequence": 67, "arrival": {"time": "1694890854"}, "stopId": "49361"}, {"stopSequence": 68, "arrival": {"time": "1694890882"}, "stopId": "49362"}, {"stopSequence": 69, "arrival": {"time": "1694890932"}, "stopId": "49363"}, {"stopSequence": 70, "arrival": {"time": "1694890982"}, "stopId": "49364"}, {"stopSequence": 71, "arrival": {"time": "1694891029"}, "stopId": "49365"}], "vehicle": {"licensePlate": "BHFL38"}, "timestamp": "1694889036"}, "vehicle": {"trip": {"tripId": "17871-701ff27f-2", "startTime": "14:59:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "572", "directionId": 0}, "position": {"latitude": -36.791508, "longitude": -73.07008, "bearing": 328.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889036", "vehicle": {"licensePlate": "BHFL38"}}}, {"id": "8c9d4199-7831-4c18-b636-c9bcb0c180bc", "tripUpdate": {"trip": {"tripId": "17872-701ff27f-2", "startTime": "15:19:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "572", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 15, "arrival": {"time": "1694889101"}, "stopId": "35787"}, {"stopSequence": 16, "arrival": {"time": "1694889168"}, "stopId": "35788"}, {"stopSequence": 17, "arrival": {"time": "1694889271"}, "stopId": "35789"}, {"stopSequence": 18, "arrival": {"time": "1694889316"}, "stopId": "35790"}, {"stopSequence": 19, "arrival": {"time": "1694889399"}, "stopId": "35791"}, {"stopSequence": 20, "arrival": {"time": "1694889446"}, "stopId": "35792"}, {"stopSequence": 21, "arrival": {"time": "1694889503"}, "stopId": "35793"}, {"stopSequence": 22, "arrival": {"time": "1694889618"}, "stopId": "91116"}, {"stopSequence": 23, "arrival": {"time": "1694890082"}, "stopId": "39545"}, {"stopSequence": 24, "arrival": {"time": "1694890246"}, "stopId": "39546"}, {"stopSequence": 25, "arrival": {"time": "1694890380"}, "stopId": "35286"}, {"stopSequence": 26, "arrival": {"time": "1694890407"}, "stopId": "35287"}, {"stopSequence": 27, "arrival": {"time": "1694890475"}, "stopId": "42317"}, {"stopSequence": 28, "arrival": {"time": "1694890527"}, "stopId": "42318"}, {"stopSequence": 29, "arrival": {"time": "1694890599"}, "stopId": "8606396"}, {"stopSequence": 30, "arrival": {"time": "1694890671"}, "stopId": "38514"}, {"stopSequence": 31, "arrival": {"time": "1694890711"}, "stopId": "38516"}, {"stopSequence": 32, "arrival": {"time": "1694890771"}, "stopId": "38518"}, {"stopSequence": 33, "arrival": {"time": "1694890875"}, "stopId": "38520"}, {"stopSequence": 34, "arrival": {"time": "1694890917"}, "stopId": "38521"}, {"stopSequence": 35, "arrival": {"time": "1694890968"}, "stopId": "38522"}, {"stopSequence": 36, "arrival": {"time": "1694891021"}, "stopId": "38523"}, {"stopSequence": 37, "arrival": {"time": "1694891078"}, "stopId": "38524"}, {"stopSequence": 38, "arrival": {"time": "1694891130"}, "stopId": "38525"}, {"stopSequence": 39, "arrival": {"time": "1694891187"}, "stopId": "38526"}, {"stopSequence": 40, "arrival": {"time": "1694891240"}, "stopId": "38527"}, {"stopSequence": 41, "arrival": {"time": "1694891338"}, "stopId": "38528"}, {"stopSequence": 42, "arrival": {"time": "1694891475"}, "stopId": "38529"}, {"stopSequence": 43, "arrival": {"time": "1694891721"}, "stopId": "38530"}, {"stopSequence": 44, "arrival": {"time": "1694891737"}, "stopId": "16005209"}, {"stopSequence": 45, "arrival": {"time": "1694892039"}, "stopId": "38531"}, {"stopSequence": 46, "arrival": {"time": "1694892113"}, "stopId": "8921285"}, {"stopSequence": 47, "arrival": {"time": "1694892266"}, "stopId": "38532"}, {"stopSequence": 48, "arrival": {"time": "1694892340"}, "stopId": "38533"}, {"stopSequence": 49, "arrival": {"time": "1694892421"}, "stopId": "38534"}, {"stopSequence": 50, "arrival": {"time": "1694892493"}, "stopId": "38535"}, {"stopSequence": 51, "arrival": {"time": "1694892584"}, "stopId": "38536"}, {"stopSequence": 52, "arrival": {"time": "1694892639"}, "stopId": "4838437"}, {"stopSequence": 53, "arrival": {"time": "1694892730"}, "stopId": "45085"}, {"stopSequence": 54, "arrival": {"time": "1694892857"}, "stopId": "45086"}, {"stopSequence": 55, "arrival": {"time": "1694892948"}, "stopId": "38539"}, {"stopSequence": 56, "arrival": {"time": "1694893060"}, "stopId": "38540"}, {"stopSequence": 57, "arrival": {"time": "1694893199"}, "stopId": "38544"}, {"stopSequence": 58, "arrival": {"time": "1694893325"}, "stopId": "38545"}, {"stopSequence": 59, "arrival": {"time": "1694893500"}, "stopId": "38546"}, {"stopSequence": 60, "arrival": {"time": "1694893744"}, "stopId": "38548"}, {"stopSequence": 61, "arrival": {"time": "1694893885"}, "stopId": "38549"}, {"stopSequence": 62, "arrival": {"time": "1694894007"}, "stopId": "38550"}, {"stopSequence": 63, "arrival": {"time": "1694894228"}, "stopId": "38551"}, {"stopSequence": 64, "arrival": {"time": "1694894434"}, "stopId": "38552"}, {"stopSequence": 65, "arrival": {"time": "1694894644"}, "stopId": "49359"}, {"stopSequence": 66, "arrival": {"time": "1694894777"}, "stopId": "49360"}, {"stopSequence": 67, "arrival": {"time": "1694895090"}, "stopId": "49361"}, {"stopSequence": 68, "arrival": {"time": "1694895170"}, "stopId": "49362"}, {"stopSequence": 69, "arrival": {"time": "1694895317"}, "stopId": "49363"}, {"stopSequence": 70, "arrival": {"time": "1694895466"}, "stopId": "49364"}, {"stopSequence": 71, "arrival": {"time": "1694895612"}, "stopId": "49365"}], "vehicle": {"licensePlate": "FYBB65"}, "timestamp": "1694889028"}, "vehicle": {"trip": {"tripId": "17872-701ff27f-2", "startTime": "15:19:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "572", "directionId": 0}, "position": {"latitude": -36.83772, "longitude": -73.11749, "bearing": 86.0, "odometer": 0.0, "speed": 1.3888888}, "timestamp": "1694889028", "vehicle": {"licensePlate": "FYBB65"}}}, {"id": "bda0be92-0f91-41a8-8ac4-e15e0e2bd0a4", "tripUpdate": {"trip": {"tripId": "17814-701ff27f-2", "startTime": "15:02:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "572", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 51, "arrival": {"time": "1694889098"}, "stopId": "35417"}, {"stopSequence": 52, "arrival": {"time": "1694889174"}, "stopId": "35755"}, {"stopSequence": 53, "arrival": {"time": "1694889398"}, "stopId": "35756"}, {"stopSequence": 54, "arrival": {"time": "1694889515"}, "stopId": "35757"}, {"stopSequence": 55, "arrival": {"time": "1694889560"}, "stopId": "35758"}, {"stopSequence": 56, "arrival": {"time": "1694889675"}, "stopId": "35508"}, {"stopSequence": 57, "arrival": {"time": "1694889713"}, "stopId": "35514"}, {"stopSequence": 58, "arrival": {"time": "1694889761"}, "stopId": "35515"}, {"stopSequence": 59, "arrival": {"time": "1694889812"}, "stopId": "35516"}, {"stopSequence": 60, "arrival": {"time": "1694889845"}, "stopId": "35517"}, {"stopSequence": 61, "arrival": {"time": "1694889872"}, "stopId": "35518"}, {"stopSequence": 62, "arrival": {"time": "1694889878"}, "stopId": "35764"}, {"stopSequence": 63, "arrival": {"time": "1694889920"}, "stopId": "35763"}, {"stopSequence": 64, "arrival": {"time": "1694889963"}, "stopId": "35762"}, {"stopSequence": 65, "arrival": {"time": "1694889981"}, "stopId": "35761"}, {"stopSequence": 66, "arrival": {"time": "1694890019"}, "stopId": "35760"}, {"stopSequence": 67, "arrival": {"time": "1694890063"}, "stopId": "35759"}, {"stopSequence": 68, "arrival": {"time": "1694890099"}, "stopId": "34960"}, {"stopSequence": 69, "arrival": {"time": "1694890126"}, "stopId": "34961"}, {"stopSequence": 70, "arrival": {"time": "1694890207"}, "stopId": "34962"}, {"stopSequence": 71, "arrival": {"time": "1694890268"}, "stopId": "34963"}, {"stopSequence": 72, "arrival": {"time": "1694890310"}, "stopId": "34964"}, {"stopSequence": 73, "arrival": {"time": "1694890362"}, "stopId": "34965"}, {"stopSequence": 74, "arrival": {"time": "1694890428"}, "stopId": "34966"}], "vehicle": {"licensePlate": "LBDS34"}, "timestamp": "1694889031"}, "vehicle": {"trip": {"tripId": "17814-701ff27f-2", "startTime": "15:02:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "572", "directionId": 1}, "position": {"latitude": -36.83789, "longitude": -73.111565, "bearing": 273.0, "odometer": 0.0, "speed": 21.666666}, "timestamp": "1694889031", "vehicle": {"licensePlate": "LBDS34"}}}, {"id": "01bc6f06-afc9-4487-a507-d572f7265155", "tripUpdate": {"trip": {"tripId": "17815-701ff27f-2", "startTime": "15:22:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "572", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 28, "arrival": {"time": "1694889330"}, "stopId": "40995"}, {"stopSequence": 29, "arrival": {"time": "1694889412"}, "stopId": "40996"}, {"stopSequence": 30, "arrival": {"time": "1694889490"}, "stopId": "40997"}, {"stopSequence": 31, "arrival": {"time": "1694889544"}, "stopId": "39614"}, {"stopSequence": 32, "arrival": {"time": "1694889594"}, "stopId": "39615"}, {"stopSequence": 33, "arrival": {"time": "1694889644"}, "stopId": "39616"}, {"stopSequence": 34, "arrival": {"time": "1694889696"}, "stopId": "39617"}, {"stopSequence": 35, "arrival": {"time": "1694889752"}, "stopId": "39618"}, {"stopSequence": 36, "arrival": {"time": "1694889798"}, "stopId": "39619"}, {"stopSequence": 37, "arrival": {"time": "1694889846"}, "stopId": "39620"}, {"stopSequence": 38, "arrival": {"time": "1694889888"}, "stopId": "1-Jul"}, {"stopSequence": 39, "arrival": {"time": "1694889920"}, "stopId": "1-Aug"}, {"stopSequence": 40, "arrival": {"time": "1694889966"}, "stopId": "1-Sep"}, {"stopSequence": 41, "arrival": {"time": "1694890017"}, "stopId": "1-Oct"}, {"stopSequence": 42, "arrival": {"time": "1694890066"}, "stopId": "1-Nov"}, {"stopSequence": 43, "arrival": {"time": "1694890119"}, "stopId": "35745"}, {"stopSequence": 44, "arrival": {"time": "1694890144"}, "stopId": "15879953"}, {"stopSequence": 45, "arrival": {"time": "1694890165"}, "stopId": "35746"}, {"stopSequence": 46, "arrival": {"time": "1694890741"}, "stopId": "35748"}, {"stopSequence": 47, "arrival": {"time": "1694890800"}, "stopId": "35749"}, {"stopSequence": 48, "arrival": {"time": "1694890858"}, "stopId": "35750"}, {"stopSequence": 49, "arrival": {"time": "1694890938"}, "stopId": "35751"}, {"stopSequence": 50, "arrival": {"time": "1694891058"}, "stopId": "35752"}, {"stopSequence": 51, "arrival": {"time": "1694891209"}, "stopId": "35417"}, {"stopSequence": 52, "arrival": {"time": "1694891288"}, "stopId": "35755"}, {"stopSequence": 53, "arrival": {"time": "1694891538"}, "stopId": "35756"}, {"stopSequence": 54, "arrival": {"time": "1694891676"}, "stopId": "35757"}, {"stopSequence": 55, "arrival": {"time": "1694891731"}, "stopId": "35758"}, {"stopSequence": 56, "arrival": {"time": "1694891877"}, "stopId": "35508"}, {"stopSequence": 57, "arrival": {"time": "1694891926"}, "stopId": "35514"}, {"stopSequence": 58, "arrival": {"time": "1694891991"}, "stopId": "35515"}, {"stopSequence": 59, "arrival": {"time": "1694892059"}, "stopId": "35516"}, {"stopSequence": 60, "arrival": {"time": "1694892104"}, "stopId": "35517"}, {"stopSequence": 61, "arrival": {"time": "1694892142"}, "stopId": "35518"}, {"stopSequence": 62, "arrival": {"time": "1694892151"}, "stopId": "35764"}, {"stopSequence": 63, "arrival": {"time": "1694892210"}, "stopId": "35763"}, {"stopSequence": 64, "arrival": {"time": "1694892272"}, "stopId": "35762"}, {"stopSequence": 65, "arrival": {"time": "1694892298"}, "stopId": "35761"}, {"stopSequence": 66, "arrival": {"time": "1694892355"}, "stopId": "35760"}, {"stopSequence": 67, "arrival": {"time": "1694892420"}, "stopId": "35759"}, {"stopSequence": 68, "arrival": {"time": "1694892475"}, "stopId": "34960"}, {"stopSequence": 69, "arrival": {"time": "1694892516"}, "stopId": "34961"}, {"stopSequence": 70, "arrival": {"time": "1694892644"}, "stopId": "34962"}, {"stopSequence": 71, "arrival": {"time": "1694892742"}, "stopId": "34963"}, {"stopSequence": 72, "arrival": {"time": "1694892811"}, "stopId": "34964"}, {"stopSequence": 73, "arrival": {"time": "1694892899"}, "stopId": "34965"}, {"stopSequence": 74, "arrival": {"time": "1694893013"}, "stopId": "34966"}], "vehicle": {"licensePlate": "SWSZ60"}, "timestamp": "1694889038"}, "vehicle": {"trip": {"tripId": "17815-701ff27f-2", "startTime": "15:22:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "572", "directionId": 1}, "position": {"latitude": -36.790558, "longitude": -73.071304, "bearing": 154.0, "odometer": 0.0, "speed": 10.833333}, "timestamp": "1694889038", "vehicle": {"licensePlate": "SWSZ60"}}}, {"id": "80ac2753-5fed-4458-bbea-1ae8d6f973c5", "tripUpdate": {"trip": {"tripId": "17816-701ff27f-2", "startTime": "15:42:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "572", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 3, "arrival": {"time": "1694888998"}, "stopId": "38646"}, {"stopSequence": 4, "arrival": {"time": "1694889038"}, "stopId": "38632"}, {"stopSequence": 5, "arrival": {"time": "1694889120"}, "stopId": "38767"}, {"stopSequence": 6, "arrival": {"time": "1694889185"}, "stopId": "38768"}, {"stopSequence": 7, "arrival": {"time": "1694889235"}, "stopId": "38769"}, {"stopSequence": 8, "arrival": {"time": "1694889277"}, "stopId": "49357"}, {"stopSequence": 9, "arrival": {"time": "1694889318"}, "stopId": "38771"}, {"stopSequence": 10, "arrival": {"time": "1694889362"}, "stopId": "38668"}, {"stopSequence": 11, "arrival": {"time": "1694889460"}, "stopId": "38661"}, {"stopSequence": 12, "arrival": {"time": "1694889543"}, "stopId": "38657"}, {"stopSequence": 13, "arrival": {"time": "1694889603"}, "stopId": "38743"}, {"stopSequence": 14, "arrival": {"time": "1694889668"}, "stopId": "38652"}, {"stopSequence": 15, "arrival": {"time": "1694889728"}, "stopId": "38721"}, {"stopSequence": 16, "arrival": {"time": "1694889786"}, "stopId": "38659"}, {"stopSequence": 17, "arrival": {"time": "1694889868"}, "stopId": "38674"}, {"stopSequence": 18, "arrival": {"time": "1694889940"}, "stopId": "38649"}, {"stopSequence": 19, "arrival": {"time": "1694890009"}, "stopId": "38718"}, {"stopSequence": 20, "arrival": {"time": "1694890068"}, "stopId": "38735"}, {"stopSequence": 21, "arrival": {"time": "1694890125"}, "stopId": "42270"}, {"stopSequence": 22, "arrival": {"time": "1694890172"}, "stopId": "42271"}, {"stopSequence": 23, "arrival": {"time": "1694890234"}, "stopId": "4838438"}, {"stopSequence": 24, "arrival": {"time": "1694890379"}, "stopId": "44896"}, {"stopSequence": 25, "arrival": {"time": "1694890427"}, "stopId": "44897"}, {"stopSequence": 26, "arrival": {"time": "1694890500"}, "stopId": "44898"}, {"stopSequence": 27, "arrival": {"time": "1694890671"}, "stopId": "40993"}, {"stopSequence": 28, "arrival": {"time": "1694891192"}, "stopId": "40995"}, {"stopSequence": 29, "arrival": {"time": "1694891282"}, "stopId": "40996"}, {"stopSequence": 30, "arrival": {"time": "1694891370"}, "stopId": "40997"}, {"stopSequence": 31, "arrival": {"time": "1694891433"}, "stopId": "39614"}, {"stopSequence": 32, "arrival": {"time": "1694891492"}, "stopId": "39615"}, {"stopSequence": 33, "arrival": {"time": "1694891553"}, "stopId": "39616"}, {"stopSequence": 34, "arrival": {"time": "1694891616"}, "stopId": "39617"}, {"stopSequence": 35, "arrival": {"time": "1694891686"}, "stopId": "39618"}, {"stopSequence": 36, "arrival": {"time": "1694891745"}, "stopId": "39619"}, {"stopSequence": 37, "arrival": {"time": "1694891806"}, "stopId": "39620"}, {"stopSequence": 38, "arrival": {"time": "1694891862"}, "stopId": "1-Jul"}, {"stopSequence": 39, "arrival": {"time": "1694891904"}, "stopId": "1-Aug"}, {"stopSequence": 40, "arrival": {"time": "1694891967"}, "stopId": "1-Sep"}, {"stopSequence": 41, "arrival": {"time": "1694892037"}, "stopId": "1-Oct"}, {"stopSequence": 42, "arrival": {"time": "1694892105"}, "stopId": "1-Nov"}, {"stopSequence": 43, "arrival": {"time": "1694892181"}, "stopId": "35745"}, {"stopSequence": 44, "arrival": {"time": "1694892218"}, "stopId": "15879953"}, {"stopSequence": 45, "arrival": {"time": "1694892248"}, "stopId": "35746"}, {"stopSequence": 46, "arrival": {"time": "1694893185"}, "stopId": "35748"}, {"stopSequence": 47, "arrival": {"time": "1694893293"}, "stopId": "35749"}, {"stopSequence": 48, "arrival": {"time": "1694893400"}, "stopId": "35750"}, {"stopSequence": 49, "arrival": {"time": "1694893553"}, "stopId": "35751"}, {"stopSequence": 50, "arrival": {"time": "1694893790"}, "stopId": "35752"}, {"stopSequence": 51, "arrival": {"time": "1694894101"}, "stopId": "35417"}, {"stopSequence": 52, "arrival": {"time": "1694894272"}, "stopId": "35755"}, {"stopSequence": 53, "arrival": {"time": "1694894841"}, "stopId": "35756"}, {"stopSequence": 54, "arrival": {"time": "1694895178"}, "stopId": "35757"}, {"stopSequence": 55, "arrival": {"time": "1694895319"}, "stopId": "35758"}, {"stopSequence": 56, "arrival": {"time": "1694895702"}, "stopId": "35508"}, {"stopSequence": 57, "arrival": {"time": "1694895833"}, "stopId": "35514"}, {"stopSequence": 58, "arrival": {"time": "1694896013"}, "stopId": "35515"}, {"stopSequence": 59, "arrival": {"time": "1694896207"}, "stopId": "35516"}, {"stopSequence": 60, "arrival": {"time": "1694896338"}, "stopId": "35517"}, {"stopSequence": 61, "arrival": {"time": "1694896449"}, "stopId": "35518"}, {"stopSequence": 62, "arrival": {"time": "1694896475"}, "stopId": "35764"}, {"stopSequence": 63, "arrival": {"time": "1694896652"}, "stopId": "35763"}, {"stopSequence": 64, "arrival": {"time": "1694896844"}, "stopId": "35762"}, {"stopSequence": 65, "arrival": {"time": "1694896926"}, "stopId": "35761"}, {"stopSequence": 66, "arrival": {"time": "1694897104"}, "stopId": "35760"}, {"stopSequence": 67, "arrival": {"time": "1694897316"}, "stopId": "35759"}, {"stopSequence": 68, "arrival": {"time": "1694897500"}, "stopId": "34960"}, {"stopSequence": 69, "arrival": {"time": "1694897638"}, "stopId": "34961"}, {"stopSequence": 70, "arrival": {"time": "1694898086"}, "stopId": "34962"}, {"stopSequence": 71, "arrival": {"time": "1694898443"}, "stopId": "34963"}, {"stopSequence": 72, "arrival": {"time": "1694898706"}, "stopId": "34964"}, {"stopSequence": 73, "arrival": {"time": "1694899049"}, "stopId": "34965"}, {"stopSequence": 74, "arrival": {"time": "1694899509"}, "stopId": "34966"}], "vehicle": {"licensePlate": "YU8533"}, "timestamp": "1694888974"}, "vehicle": {"trip": {"tripId": "17816-701ff27f-2", "startTime": "15:42:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "572", "directionId": 1}, "position": {"latitude": -36.712772, "longitude": -73.11417, "bearing": 134.0, "odometer": 0.0, "speed": 7.7777777}, "timestamp": "1694888974", "vehicle": {"licensePlate": "YU8533"}}}, {"id": "c5f50aea-60c3-4a33-a83d-b480a7d416c7", "tripUpdate": {"trip": {"tripId": "17985-701ff27f-2", "startTime": "15:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "573", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 31, "arrival": {"time": "1694889067"}, "stopId": "35791"}, {"stopSequence": 32, "arrival": {"time": "1694889117"}, "stopId": "35792"}, {"stopSequence": 33, "arrival": {"time": "1694889176"}, "stopId": "35793"}, {"stopSequence": 34, "arrival": {"time": "1694889296"}, "stopId": "91116"}, {"stopSequence": 35, "arrival": {"time": "1694889762"}, "stopId": "35794"}, {"stopSequence": 36, "arrival": {"time": "1694889853"}, "stopId": "35796"}, {"stopSequence": 37, "arrival": {"time": "1694889901"}, "stopId": "35797"}, {"stopSequence": 38, "arrival": {"time": "1694889941"}, "stopId": "35798"}, {"stopSequence": 39, "arrival": {"time": "1694889978"}, "stopId": "35799"}, {"stopSequence": 40, "arrival": {"time": "1694890045"}, "stopId": "35800"}, {"stopSequence": 41, "arrival": {"time": "1694890093"}, "stopId": "35801"}, {"stopSequence": 42, "arrival": {"time": "1694890118"}, "stopId": "35802"}, {"stopSequence": 43, "arrival": {"time": "1694890190"}, "stopId": "38520"}, {"stopSequence": 44, "arrival": {"time": "1694890234"}, "stopId": "38521"}, {"stopSequence": 45, "arrival": {"time": "1694890282"}, "stopId": "38522"}, {"stopSequence": 46, "arrival": {"time": "1694890331"}, "stopId": "38523"}, {"stopSequence": 47, "arrival": {"time": "1694890382"}, "stopId": "38524"}, {"stopSequence": 48, "arrival": {"time": "1694890431"}, "stopId": "38525"}, {"stopSequence": 49, "arrival": {"time": "1694890482"}, "stopId": "38526"}, {"stopSequence": 50, "arrival": {"time": "1694890530"}, "stopId": "38527"}, {"stopSequence": 51, "arrival": {"time": "1694890613"}, "stopId": "38528"}, {"stopSequence": 52, "arrival": {"time": "1694890739"}, "stopId": "38529"}, {"stopSequence": 53, "arrival": {"time": "1694890952"}, "stopId": "38530"}, {"stopSequence": 54, "arrival": {"time": "1694890966"}, "stopId": "16005209"}, {"stopSequence": 55, "arrival": {"time": "1694891221"}, "stopId": "38531"}, {"stopSequence": 56, "arrival": {"time": "1694891283"}, "stopId": "8921285"}, {"stopSequence": 57, "arrival": {"time": "1694891409"}, "stopId": "38532"}, {"stopSequence": 58, "arrival": {"time": "1694891470"}, "stopId": "38533"}, {"stopSequence": 59, "arrival": {"time": "1694891534"}, "stopId": "38534"}, {"stopSequence": 60, "arrival": {"time": "1694891591"}, "stopId": "38535"}, {"stopSequence": 61, "arrival": {"time": "1694891664"}, "stopId": "38536"}, {"stopSequence": 62, "arrival": {"time": "1694891714"}, "stopId": "4838437"}, {"stopSequence": 63, "arrival": {"time": "1694891779"}, "stopId": "45085"}, {"stopSequence": 64, "arrival": {"time": "1694891879"}, "stopId": "45086"}, {"stopSequence": 65, "arrival": {"time": "1694891947"}, "stopId": "38539"}, {"stopSequence": 66, "arrival": {"time": "1694892034"}, "stopId": "38540"}, {"stopSequence": 67, "arrival": {"time": "1694892140"}, "stopId": "38544"}, {"stopSequence": 68, "arrival": {"time": "1694892223"}, "stopId": "38545"}, {"stopSequence": 69, "arrival": {"time": "1694892368"}, "stopId": "38546"}, {"stopSequence": 70, "arrival": {"time": "1694892461"}, "stopId": "38547"}, {"stopSequence": 71, "arrival": {"time": "1694892547"}, "stopId": "38548"}, {"stopSequence": 72, "arrival": {"time": "1694892650"}, "stopId": "38549"}, {"stopSequence": 73, "arrival": {"time": "1694892738"}, "stopId": "38550"}, {"stopSequence": 74, "arrival": {"time": "1694892895"}, "stopId": "38551"}, {"stopSequence": 75, "arrival": {"time": "1694893040"}, "stopId": "38552"}, {"stopSequence": 76, "arrival": {"time": "1694893186"}, "stopId": "49359"}, {"stopSequence": 77, "arrival": {"time": "1694893277"}, "stopId": "49360"}, {"stopSequence": 78, "arrival": {"time": "1694893489"}, "stopId": "49361"}, {"stopSequence": 79, "arrival": {"time": "1694893543"}, "stopId": "49362"}, {"stopSequence": 80, "arrival": {"time": "1694893637"}, "stopId": "49363"}, {"stopSequence": 81, "arrival": {"time": "1694893738"}, "stopId": "49364"}, {"stopSequence": 82, "arrival": {"time": "1694893830"}, "stopId": "49365"}], "vehicle": {"licensePlate": "FCBR15"}, "timestamp": "1694889004"}, "vehicle": {"trip": {"tripId": "17985-701ff27f-2", "startTime": "15:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "573", "directionId": 0}, "position": {"latitude": -36.838665, "longitude": -73.10061, "bearing": 96.0, "odometer": 0.0, "speed": 11.944445}, "timestamp": "1694889004", "vehicle": {"licensePlate": "FCBR15"}}}, {"id": "43f1e128-2e62-4ce4-9c59-e4ed352f18a5", "tripUpdate": {"trip": {"tripId": "17927-701ff27f-2", "startTime": "14:40:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "573", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 43, "arrival": {"time": "1694889013"}, "stopId": "37477"}, {"stopSequence": 44, "arrival": {"time": "1694889045"}, "stopId": "91118"}, {"stopSequence": 45, "arrival": {"time": "1694889111"}, "stopId": "35223"}, {"stopSequence": 46, "arrival": {"time": "1694889159"}, "stopId": "39547"}, {"stopSequence": 47, "arrival": {"time": "1694889239"}, "stopId": "35224"}, {"stopSequence": 48, "arrival": {"time": "1694889416"}, "stopId": "35225"}, {"stopSequence": 49, "arrival": {"time": "1694889971"}, "stopId": "35748"}, {"stopSequence": 50, "arrival": {"time": "1694890036"}, "stopId": "35749"}, {"stopSequence": 51, "arrival": {"time": "1694890081"}, "stopId": "35750"}, {"stopSequence": 52, "arrival": {"time": "1694890156"}, "stopId": "35751"}, {"stopSequence": 53, "arrival": {"time": "1694890270"}, "stopId": "35752"}, {"stopSequence": 54, "arrival": {"time": "1694890403"}, "stopId": "35417"}, {"stopSequence": 55, "arrival": {"time": "1694890474"}, "stopId": "35755"}, {"stopSequence": 56, "arrival": {"time": "1694890686"}, "stopId": "35864"}, {"stopSequence": 57, "arrival": {"time": "1694890808"}, "stopId": "91039"}, {"stopSequence": 58, "arrival": {"time": "1694890954"}, "stopId": "35866"}, {"stopSequence": 59, "arrival": {"time": "1694890996"}, "stopId": "91040"}, {"stopSequence": 60, "arrival": {"time": "1694891038"}, "stopId": "35867"}, {"stopSequence": 61, "arrival": {"time": "1694891076"}, "stopId": "91085"}, {"stopSequence": 62, "arrival": {"time": "1694891125"}, "stopId": "35862"}, {"stopSequence": 63, "arrival": {"time": "1694891205"}, "stopId": "91045"}, {"stopSequence": 64, "arrival": {"time": "1694891235"}, "stopId": "91089"}, {"stopSequence": 65, "arrival": {"time": "1694891267"}, "stopId": "35645"}, {"stopSequence": 66, "arrival": {"time": "1694891323"}, "stopId": "35646"}, {"stopSequence": 67, "arrival": {"time": "1694891373"}, "stopId": "35475"}, {"stopSequence": 68, "arrival": {"time": "1694891521"}, "stopId": "35476"}, {"stopSequence": 69, "arrival": {"time": "1694891784"}, "stopId": "7084047"}, {"stopSequence": 70, "arrival": {"time": "1694891882"}, "stopId": "7084048"}, {"stopSequence": 71, "arrival": {"time": "1694891958"}, "stopId": "34961"}, {"stopSequence": 72, "arrival": {"time": "1694892426"}, "stopId": "34962"}, {"stopSequence": 73, "arrival": {"time": "1694892518"}, "stopId": "34963"}, {"stopSequence": 74, "arrival": {"time": "1694892584"}, "stopId": "34964"}], "vehicle": {"licensePlate": "FJYR11"}, "timestamp": "1694889012"}, "vehicle": {"trip": {"tripId": "17927-701ff27f-2", "startTime": "14:40:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "573", "directionId": 1}, "position": {"latitude": -36.829815, "longitude": -73.05526, "bearing": 242.0, "odometer": 0.0, "speed": 10.555555}, "timestamp": "1694889012", "vehicle": {"licensePlate": "FJYR11"}}}, {"id": "5448fae1-bfa4-4f44-be37-eb1c1c0e186f", "tripUpdate": {"trip": {"tripId": "17928-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "573", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 28, "arrival": {"time": "1694889187"}, "stopId": "40995"}, {"stopSequence": 29, "arrival": {"time": "1694889271"}, "stopId": "40996"}, {"stopSequence": 30, "arrival": {"time": "1694889350"}, "stopId": "40997"}, {"stopSequence": 31, "arrival": {"time": "1694889410"}, "stopId": "39614"}, {"stopSequence": 32, "arrival": {"time": "1694889458"}, "stopId": "39615"}, {"stopSequence": 33, "arrival": {"time": "1694889507"}, "stopId": "39616"}, {"stopSequence": 34, "arrival": {"time": "1694889561"}, "stopId": "39617"}, {"stopSequence": 35, "arrival": {"time": "1694889619"}, "stopId": "39618"}, {"stopSequence": 36, "arrival": {"time": "1694889663"}, "stopId": "39619"}, {"stopSequence": 37, "arrival": {"time": "1694889705"}, "stopId": "39620"}, {"stopSequence": 38, "arrival": {"time": "1694889770"}, "stopId": "39621"}, {"stopSequence": 39, "arrival": {"time": "1694889817"}, "stopId": "38281"}, {"stopSequence": 40, "arrival": {"time": "1694889871"}, "stopId": "37506"}, {"stopSequence": 41, "arrival": {"time": "1694889963"}, "stopId": "37520"}, {"stopSequence": 42, "arrival": {"time": "1694890067"}, "stopId": "37470"}, {"stopSequence": 43, "arrival": {"time": "1694890091"}, "stopId": "37477"}, {"stopSequence": 44, "arrival": {"time": "1694890120"}, "stopId": "91118"}, {"stopSequence": 45, "arrival": {"time": "1694890181"}, "stopId": "35223"}, {"stopSequence": 46, "arrival": {"time": "1694890225"}, "stopId": "39547"}, {"stopSequence": 47, "arrival": {"time": "1694890299"}, "stopId": "35224"}, {"stopSequence": 48, "arrival": {"time": "1694890470"}, "stopId": "35225"}, {"stopSequence": 49, "arrival": {"time": "1694891045"}, "stopId": "35748"}, {"stopSequence": 50, "arrival": {"time": "1694891118"}, "stopId": "35749"}, {"stopSequence": 51, "arrival": {"time": "1694891168"}, "stopId": "35750"}, {"stopSequence": 52, "arrival": {"time": "1694891253"}, "stopId": "35751"}, {"stopSequence": 53, "arrival": {"time": "1694891385"}, "stopId": "35752"}, {"stopSequence": 54, "arrival": {"time": "1694891542"}, "stopId": "35417"}, {"stopSequence": 55, "arrival": {"time": "1694891627"}, "stopId": "35755"}, {"stopSequence": 56, "arrival": {"time": "1694891890"}, "stopId": "35864"}, {"stopSequence": 57, "arrival": {"time": "1694892045"}, "stopId": "91039"}, {"stopSequence": 58, "arrival": {"time": "1694892237"}, "stopId": "35866"}, {"stopSequence": 59, "arrival": {"time": "1694892293"}, "stopId": "91040"}, {"stopSequence": 60, "arrival": {"time": "1694892349"}, "stopId": "35867"}, {"stopSequence": 61, "arrival": {"time": "1694892400"}, "stopId": "91085"}, {"stopSequence": 62, "arrival": {"time": "1694892467"}, "stopId": "35862"}, {"stopSequence": 63, "arrival": {"time": "1694892577"}, "stopId": "91045"}, {"stopSequence": 64, "arrival": {"time": "1694892619"}, "stopId": "91089"}, {"stopSequence": 65, "arrival": {"time": "1694892663"}, "stopId": "35645"}, {"stopSequence": 66, "arrival": {"time": "1694892742"}, "stopId": "35646"}, {"stopSequence": 67, "arrival": {"time": "1694892813"}, "stopId": "35475"}, {"stopSequence": 68, "arrival": {"time": "1694893027"}, "stopId": "35476"}, {"stopSequence": 69, "arrival": {"time": "1694893421"}, "stopId": "7084047"}, {"stopSequence": 70, "arrival": {"time": "1694893572"}, "stopId": "7084048"}, {"stopSequence": 71, "arrival": {"time": "1694893691"}, "stopId": "34961"}, {"stopSequence": 72, "arrival": {"time": "1694894457"}, "stopId": "34962"}, {"stopSequence": 73, "arrival": {"time": "1694894615"}, "stopId": "34963"}, {"stopSequence": 74, "arrival": {"time": "1694894730"}, "stopId": "34964"}], "vehicle": {"licensePlate": "GXYZ31"}, "timestamp": "1694889035"}, "vehicle": {"trip": {"tripId": "17928-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "573", "directionId": 1}, "position": {"latitude": -36.795437, "longitude": -73.06667, "bearing": 120.0, "odometer": 0.0, "speed": 17.5}, "timestamp": "1694889035", "vehicle": {"licensePlate": "GXYZ31"}}}, {"id": "5964d228-191a-45dc-82dd-855d66a437b8", "tripUpdate": {"trip": {"tripId": "17929-701ff27f-2", "startTime": "15:20:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "573", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 14, "arrival": {"time": "1694888904"}, "stopId": "38652"}, {"stopSequence": 15, "arrival": {"time": "1694888973"}, "stopId": "38721"}, {"stopSequence": 16, "arrival": {"time": "1694889033"}, "stopId": "38659"}, {"stopSequence": 17, "arrival": {"time": "1694889120"}, "stopId": "38674"}, {"stopSequence": 18, "arrival": {"time": "1694889186"}, "stopId": "38649"}, {"stopSequence": 19, "arrival": {"time": "1694889267"}, "stopId": "38718"}, {"stopSequence": 20, "arrival": {"time": "1694889326"}, "stopId": "38735"}, {"stopSequence": 21, "arrival": {"time": "1694889380"}, "stopId": "42270"}, {"stopSequence": 22, "arrival": {"time": "1694889434"}, "stopId": "42271"}, {"stopSequence": 23, "arrival": {"time": "1694889497"}, "stopId": "4838438"}, {"stopSequence": 24, "arrival": {"time": "1694889642"}, "stopId": "44896"}, {"stopSequence": 25, "arrival": {"time": "1694889690"}, "stopId": "44897"}, {"stopSequence": 26, "arrival": {"time": "1694889761"}, "stopId": "44898"}, {"stopSequence": 27, "arrival": {"time": "1694889926"}, "stopId": "40993"}, {"stopSequence": 28, "arrival": {"time": "1694890408"}, "stopId": "40995"}, {"stopSequence": 29, "arrival": {"time": "1694890489"}, "stopId": "40996"}, {"stopSequence": 30, "arrival": {"time": "1694890567"}, "stopId": "40997"}, {"stopSequence": 31, "arrival": {"time": "1694890627"}, "stopId": "39614"}, {"stopSequence": 32, "arrival": {"time": "1694890676"}, "stopId": "39615"}, {"stopSequence": 33, "arrival": {"time": "1694890726"}, "stopId": "39616"}, {"stopSequence": 34, "arrival": {"time": "1694890783"}, "stopId": "39617"}, {"stopSequence": 35, "arrival": {"time": "1694890844"}, "stopId": "39618"}, {"stopSequence": 36, "arrival": {"time": "1694890892"}, "stopId": "39619"}, {"stopSequence": 37, "arrival": {"time": "1694890937"}, "stopId": "39620"}, {"stopSequence": 38, "arrival": {"time": "1694891008"}, "stopId": "39621"}, {"stopSequence": 39, "arrival": {"time": "1694891061"}, "stopId": "38281"}, {"stopSequence": 40, "arrival": {"time": "1694891122"}, "stopId": "37506"}, {"stopSequence": 41, "arrival": {"time": "1694891230"}, "stopId": "37520"}, {"stopSequence": 42, "arrival": {"time": "1694891353"}, "stopId": "37470"}, {"stopSequence": 43, "arrival": {"time": "1694891382"}, "stopId": "37477"}, {"stopSequence": 44, "arrival": {"time": "1694891416"}, "stopId": "91118"}, {"stopSequence": 45, "arrival": {"time": "1694891491"}, "stopId": "35223"}, {"stopSequence": 46, "arrival": {"time": "1694891546"}, "stopId": "39547"}, {"stopSequence": 47, "arrival": {"time": "1694891641"}, "stopId": "35224"}, {"stopSequence": 48, "arrival": {"time": "1694891864"}, "stopId": "35225"}, {"stopSequence": 49, "arrival": {"time": "1694892690"}, "stopId": "35748"}, {"stopSequence": 50, "arrival": {"time": "1694892804"}, "stopId": "35749"}, {"stopSequence": 51, "arrival": {"time": "1694892882"}, "stopId": "35750"}, {"stopSequence": 52, "arrival": {"time": "1694893018"}, "stopId": "35751"}, {"stopSequence": 53, "arrival": {"time": "1694893235"}, "stopId": "35752"}, {"stopSequence": 54, "arrival": {"time": "1694893502"}, "stopId": "35417"}, {"stopSequence": 55, "arrival": {"time": "1694893651"}, "stopId": "35755"}, {"stopSequence": 56, "arrival": {"time": "1694894129"}, "stopId": "35864"}, {"stopSequence": 57, "arrival": {"time": "1694894426"}, "stopId": "91039"}, {"stopSequence": 58, "arrival": {"time": "1694894807"}, "stopId": "35866"}, {"stopSequence": 59, "arrival": {"time": "1694894921"}, "stopId": "91040"}, {"stopSequence": 60, "arrival": {"time": "1694895037"}, "stopId": "35867"}, {"stopSequence": 61, "arrival": {"time": "1694895145"}, "stopId": "91085"}, {"stopSequence": 62, "arrival": {"time": "1694895288"}, "stopId": "35862"}, {"stopSequence": 63, "arrival": {"time": "1694895526"}, "stopId": "91045"}, {"stopSequence": 64, "arrival": {"time": "1694895618"}, "stopId": "91089"}, {"stopSequence": 65, "arrival": {"time": "1694895718"}, "stopId": "35645"}, {"stopSequence": 66, "arrival": {"time": "1694895897"}, "stopId": "35646"}, {"stopSequence": 67, "arrival": {"time": "1694896059"}, "stopId": "35475"}, {"stopSequence": 68, "arrival": {"time": "1694896571"}, "stopId": "35476"}, {"stopSequence": 69, "arrival": {"time": "1694897579"}, "stopId": "7084047"}, {"stopSequence": 70, "arrival": {"time": "1694897993"}, "stopId": "7084048"}, {"stopSequence": 71, "arrival": {"time": "1694898331"}, "stopId": "34961"}, {"stopSequence": 72, "arrival": {"time": "1694900761"}, "stopId": "34962"}, {"stopSequence": 73, "arrival": {"time": "1694901330"}, "stopId": "34963"}, {"stopSequence": 74, "arrival": {"time": "1694901755"}, "stopId": "34964"}], "vehicle": {"licensePlate": "HDSB17"}, "timestamp": "1694888885"}, "vehicle": {"trip": {"tripId": "17929-701ff27f-2", "startTime": "15:20:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "573", "directionId": 1}, "position": {"latitude": -36.738647, "longitude": -73.10079, "bearing": 318.0, "odometer": 0.0, "speed": 10.555555}, "timestamp": "1694888885", "vehicle": {"licensePlate": "HDSB17"}}}, {"id": "9f9a4789-0aa3-435c-b9bd-cd4a87dc450a", "tripUpdate": {"trip": {"tripId": "17984-701ff27f-2", "startTime": "14:41:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "573", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 49, "arrival": {"time": "1694889026"}, "stopId": "38526"}, {"stopSequence": 50, "arrival": {"time": "1694889078"}, "stopId": "38527"}, {"stopSequence": 51, "arrival": {"time": "1694889165"}, "stopId": "38528"}, {"stopSequence": 52, "arrival": {"time": "1694889293"}, "stopId": "38529"}, {"stopSequence": 53, "arrival": {"time": "1694889500"}, "stopId": "38530"}, {"stopSequence": 54, "arrival": {"time": "1694889513"}, "stopId": "16005209"}, {"stopSequence": 55, "arrival": {"time": "1694889745"}, "stopId": "38531"}, {"stopSequence": 56, "arrival": {"time": "1694889799"}, "stopId": "8921285"}, {"stopSequence": 57, "arrival": {"time": "1694889907"}, "stopId": "38532"}, {"stopSequence": 58, "arrival": {"time": "1694889958"}, "stopId": "38533"}, {"stopSequence": 59, "arrival": {"time": "1694890011"}, "stopId": "38534"}, {"stopSequence": 60, "arrival": {"time": "1694890057"}, "stopId": "38535"}, {"stopSequence": 61, "arrival": {"time": "1694890116"}, "stopId": "38536"}, {"stopSequence": 62, "arrival": {"time": "1694890155"}, "stopId": "4838437"}, {"stopSequence": 63, "arrival": {"time": "1694890206"}, "stopId": "45085"}, {"stopSequence": 64, "arrival": {"time": "1694890283"}, "stopId": "45086"}, {"stopSequence": 65, "arrival": {"time": "1694890335"}, "stopId": "38539"}, {"stopSequence": 66, "arrival": {"time": "1694890399"}, "stopId": "38540"}, {"stopSequence": 67, "arrival": {"time": "1694890476"}, "stopId": "38544"}, {"stopSequence": 68, "arrival": {"time": "1694890536"}, "stopId": "38545"}, {"stopSequence": 69, "arrival": {"time": "1694890638"}, "stopId": "38546"}, {"stopSequence": 70, "arrival": {"time": "1694890702"}, "stopId": "38547"}, {"stopSequence": 71, "arrival": {"time": "1694890760"}, "stopId": "38548"}, {"stopSequence": 72, "arrival": {"time": "1694890829"}, "stopId": "38549"}, {"stopSequence": 73, "arrival": {"time": "1694890887"}, "stopId": "38550"}, {"stopSequence": 74, "arrival": {"time": "1694890988"}, "stopId": "38551"}, {"stopSequence": 75, "arrival": {"time": "1694891078"}, "stopId": "38552"}, {"stopSequence": 76, "arrival": {"time": "1694891168"}, "stopId": "49359"}, {"stopSequence": 77, "arrival": {"time": "1694891223"}, "stopId": "49360"}, {"stopSequence": 78, "arrival": {"time": "1694891348"}, "stopId": "49361"}, {"stopSequence": 79, "arrival": {"time": "1694891379"}, "stopId": "49362"}, {"stopSequence": 80, "arrival": {"time": "1694891433"}, "stopId": "49363"}, {"stopSequence": 81, "arrival": {"time": "1694891489"}, "stopId": "49364"}, {"stopSequence": 82, "arrival": {"time": "1694891541"}, "stopId": "49365"}], "vehicle": {"licensePlate": "RVGV79"}, "timestamp": "1694888980"}, "vehicle": {"trip": {"tripId": "17984-701ff27f-2", "startTime": "14:41:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "573", "directionId": 0}, "position": {"latitude": -36.808437, "longitude": -73.0517, "bearing": 334.0, "odometer": 0.0, "speed": 7.2222223}, "timestamp": "1694888980", "vehicle": {"licensePlate": "RVGV79"}}}, {"id": "eb13feac-0b69-466c-b65c-dc6d71f13e86", "tripUpdate": {"trip": {"tripId": "17986-701ff27f-2", "startTime": "15:21:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "573", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 6, "arrival": {"time": "1694889103"}, "stopId": "91031"}, {"stopSequence": 7, "arrival": {"time": "1694889205"}, "stopId": "7084050"}, {"stopSequence": 8, "arrival": {"time": "1694889243"}, "stopId": "91032"}, {"stopSequence": 9, "arrival": {"time": "1694889302"}, "stopId": "91033"}, {"stopSequence": 10, "arrival": {"time": "1694889361"}, "stopId": "91034"}, {"stopSequence": 11, "arrival": {"time": "1694889422"}, "stopId": "91035"}, {"stopSequence": 12, "arrival": {"time": "1694889477"}, "stopId": "91036"}, {"stopSequence": 13, "arrival": {"time": "1694889510"}, "stopId": "35607"}, {"stopSequence": 14, "arrival": {"time": "1694889576"}, "stopId": "91037"}, {"stopSequence": 15, "arrival": {"time": "1694889610"}, "stopId": "35483"}, {"stopSequence": 16, "arrival": {"time": "1694889628"}, "stopId": "35484"}, {"stopSequence": 17, "arrival": {"time": "1694889689"}, "stopId": "7175655"}, {"stopSequence": 18, "arrival": {"time": "1694889720"}, "stopId": "35639"}, {"stopSequence": 19, "arrival": {"time": "1694889791"}, "stopId": "35640"}, {"stopSequence": 20, "arrival": {"time": "1694889815"}, "stopId": "35781"}, {"stopSequence": 21, "arrival": {"time": "1694889845"}, "stopId": "35782"}, {"stopSequence": 22, "arrival": {"time": "1694889891"}, "stopId": "91038"}, {"stopSequence": 23, "arrival": {"time": "1694889998"}, "stopId": "35783"}, {"stopSequence": 24, "arrival": {"time": "1694890031"}, "stopId": "31013"}, {"stopSequence": 25, "arrival": {"time": "1694890147"}, "stopId": "35785"}, {"stopSequence": 26, "arrival": {"time": "1694890375"}, "stopId": "35786"}, {"stopSequence": 27, "arrival": {"time": "1694890444"}, "stopId": "35787"}, {"stopSequence": 28, "arrival": {"time": "1694890504"}, "stopId": "35788"}, {"stopSequence": 29, "arrival": {"time": "1694890611"}, "stopId": "35789"}, {"stopSequence": 30, "arrival": {"time": "1694890653"}, "stopId": "35790"}, {"stopSequence": 31, "arrival": {"time": "1694890738"}, "stopId": "35791"}, {"stopSequence": 32, "arrival": {"time": "1694890787"}, "stopId": "35792"}, {"stopSequence": 33, "arrival": {"time": "1694890846"}, "stopId": "35793"}, {"stopSequence": 34, "arrival": {"time": "1694890967"}, "stopId": "91116"}, {"stopSequence": 35, "arrival": {"time": "1694891489"}, "stopId": "35794"}, {"stopSequence": 36, "arrival": {"time": "1694891600"}, "stopId": "35796"}, {"stopSequence": 37, "arrival": {"time": "1694891660"}, "stopId": "35797"}, {"stopSequence": 38, "arrival": {"time": "1694891711"}, "stopId": "35798"}, {"stopSequence": 39, "arrival": {"time": "1694891758"}, "stopId": "35799"}, {"stopSequence": 40, "arrival": {"time": "1694891846"}, "stopId": "35800"}, {"stopSequence": 41, "arrival": {"time": "1694891910"}, "stopId": "35801"}, {"stopSequence": 42, "arrival": {"time": "1694891943"}, "stopId": "35802"}, {"stopSequence": 43, "arrival": {"time": "1694892043"}, "stopId": "38520"}, {"stopSequence": 44, "arrival": {"time": "1694892103"}, "stopId": "38521"}, {"stopSequence": 45, "arrival": {"time": "1694892171"}, "stopId": "38522"}, {"stopSequence": 46, "arrival": {"time": "1694892241"}, "stopId": "38523"}, {"stopSequence": 47, "arrival": {"time": "1694892316"}, "stopId": "38524"}, {"stopSequence": 48, "arrival": {"time": "1694892388"}, "stopId": "38525"}, {"stopSequence": 49, "arrival": {"time": "1694892465"}, "stopId": "38526"}, {"stopSequence": 50, "arrival": {"time": "1694892539"}, "stopId": "38527"}, {"stopSequence": 51, "arrival": {"time": "1694892669"}, "stopId": "38528"}, {"stopSequence": 52, "arrival": {"time": "1694892872"}, "stopId": "38529"}, {"stopSequence": 53, "arrival": {"time": "1694893233"}, "stopId": "38530"}, {"stopSequence": 54, "arrival": {"time": "1694893258"}, "stopId": "16005209"}, {"stopSequence": 55, "arrival": {"time": "1694893725"}, "stopId": "38531"}, {"stopSequence": 56, "arrival": {"time": "1694893842"}, "stopId": "8921285"}, {"stopSequence": 57, "arrival": {"time": "1694894092"}, "stopId": "38532"}, {"stopSequence": 58, "arrival": {"time": "1694894216"}, "stopId": "38533"}, {"stopSequence": 59, "arrival": {"time": "1694894348"}, "stopId": "38534"}, {"stopSequence": 60, "arrival": {"time": "1694894469"}, "stopId": "38535"}, {"stopSequence": 61, "arrival": {"time": "1694894625"}, "stopId": "38536"}, {"stopSequence": 62, "arrival": {"time": "1694894735"}, "stopId": "4838437"}, {"stopSequence": 63, "arrival": {"time": "1694894881"}, "stopId": "45085"}, {"stopSequence": 64, "arrival": {"time": "1694895109"}, "stopId": "45086"}, {"stopSequence": 65, "arrival": {"time": "1694895269"}, "stopId": "38539"}, {"stopSequence": 66, "arrival": {"time": "1694895476"}, "stopId": "38540"}, {"stopSequence": 67, "arrival": {"time": "1694895738"}, "stopId": "38544"}, {"stopSequence": 68, "arrival": {"time": "1694895950"}, "stopId": "38545"}, {"stopSequence": 69, "arrival": {"time": "1694896331"}, "stopId": "38546"}, {"stopSequence": 70, "arrival": {"time": "1694896586"}, "stopId": "38547"}, {"stopSequence": 71, "arrival": {"time": "1694896828"}, "stopId": "38548"}, {"stopSequence": 72, "arrival": {"time": "1694897125"}, "stopId": "38549"}, {"stopSequence": 73, "arrival": {"time": "1694897389"}, "stopId": "38550"}, {"stopSequence": 74, "arrival": {"time": "1694897877"}, "stopId": "38551"}, {"stopSequence": 75, "arrival": {"time": "1694898350"}, "stopId": "38552"}, {"stopSequence": 76, "arrival": {"time": "1694898850"}, "stopId": "49359"}, {"stopSequence": 77, "arrival": {"time": "1694899174"}, "stopId": "49360"}, {"stopSequence": 78, "arrival": {"time": "1694899970"}, "stopId": "49361"}, {"stopSequence": 79, "arrival": {"time": "1694900182"}, "stopId": "49362"}, {"stopSequence": 80, "arrival": {"time": "1694900564"}, "stopId": "49363"}, {"stopSequence": 81, "arrival": {"time": "1694900984"}, "stopId": "49364"}, {"stopSequence": 82, "arrival": {"time": "1694901384"}, "stopId": "49365"}], "vehicle": {"licensePlate": "YJ2006"}, "timestamp": "1694888984"}, "vehicle": {"trip": {"tripId": "17986-701ff27f-2", "startTime": "15:21:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "573", "directionId": 0}, "position": {"latitude": -36.832306, "longitude": -73.138885, "bearing": 166.0, "odometer": 0.0, "speed": 12.222222}, "timestamp": "1694888984", "vehicle": {"licensePlate": "YJ2006"}}}, {"id": "47d51281-8a1f-42e6-ba0b-22e88a4cf1f9", "tripUpdate": {"trip": {"tripId": "18098-701ff27f-2", "startTime": "14:41:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "574", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 27, "arrival": {"time": "1694889068"}, "stopId": "35797"}, {"stopSequence": 28, "arrival": {"time": "1694889112"}, "stopId": "35798"}, {"stopSequence": 29, "arrival": {"time": "1694889153"}, "stopId": "35799"}, {"stopSequence": 30, "arrival": {"time": "1694889225"}, "stopId": "35800"}, {"stopSequence": 31, "arrival": {"time": "1694889276"}, "stopId": "35801"}, {"stopSequence": 32, "arrival": {"time": "1694889303"}, "stopId": "35802"}, {"stopSequence": 33, "arrival": {"time": "1694889379"}, "stopId": "38520"}, {"stopSequence": 34, "arrival": {"time": "1694889424"}, "stopId": "38521"}, {"stopSequence": 35, "arrival": {"time": "1694889474"}, "stopId": "38522"}, {"stopSequence": 36, "arrival": {"time": "1694889524"}, "stopId": "38523"}, {"stopSequence": 37, "arrival": {"time": "1694889576"}, "stopId": "38524"}, {"stopSequence": 38, "arrival": {"time": "1694889624"}, "stopId": "38525"}, {"stopSequence": 39, "arrival": {"time": "1694889676"}, "stopId": "38526"}, {"stopSequence": 40, "arrival": {"time": "1694889723"}, "stopId": "38527"}, {"stopSequence": 41, "arrival": {"time": "1694889809"}, "stopId": "38528"}, {"stopSequence": 42, "arrival": {"time": "1694889925"}, "stopId": "38529"}, {"stopSequence": 43, "arrival": {"time": "1694890125"}, "stopId": "38530"}, {"stopSequence": 44, "arrival": {"time": "1694890138"}, "stopId": "16005209"}, {"stopSequence": 45, "arrival": {"time": "1694890368"}, "stopId": "38531"}, {"stopSequence": 46, "arrival": {"time": "1694890422"}, "stopId": "8921285"}, {"stopSequence": 47, "arrival": {"time": "1694890532"}, "stopId": "38532"}, {"stopSequence": 48, "arrival": {"time": "1694890585"}, "stopId": "38533"}, {"stopSequence": 49, "arrival": {"time": "1694890639"}, "stopId": "38534"}, {"stopSequence": 50, "arrival": {"time": "1694890688"}, "stopId": "38535"}, {"stopSequence": 51, "arrival": {"time": "1694890745"}, "stopId": "38536"}, {"stopSequence": 52, "arrival": {"time": "1694890790"}, "stopId": "4838437"}, {"stopSequence": 53, "arrival": {"time": "1694890846"}, "stopId": "45085"}, {"stopSequence": 54, "arrival": {"time": "1694890927"}, "stopId": "45086"}, {"stopSequence": 55, "arrival": {"time": "1694890980"}, "stopId": "38539"}, {"stopSequence": 56, "arrival": {"time": "1694891050"}, "stopId": "38540"}, {"stopSequence": 57, "arrival": {"time": "1694891134"}, "stopId": "38544"}, {"stopSequence": 58, "arrival": {"time": "1694891209"}, "stopId": "38545"}, {"stopSequence": 59, "arrival": {"time": "1694891310"}, "stopId": "38546"}, {"stopSequence": 60, "arrival": {"time": "1694891446"}, "stopId": "38548"}, {"stopSequence": 61, "arrival": {"time": "1694891523"}, "stopId": "38549"}, {"stopSequence": 62, "arrival": {"time": "1694891589"}, "stopId": "38550"}, {"stopSequence": 63, "arrival": {"time": "1694891704"}, "stopId": "38551"}, {"stopSequence": 64, "arrival": {"time": "1694891809"}, "stopId": "38552"}, {"stopSequence": 65, "arrival": {"time": "1694891913"}, "stopId": "49359"}, {"stopSequence": 66, "arrival": {"time": "1694891977"}, "stopId": "49360"}, {"stopSequence": 67, "arrival": {"time": "1694892125"}, "stopId": "49361"}, {"stopSequence": 68, "arrival": {"time": "1694892162"}, "stopId": "49362"}, {"stopSequence": 69, "arrival": {"time": "1694892227"}, "stopId": "49363"}, {"stopSequence": 70, "arrival": {"time": "1694892295"}, "stopId": "49364"}, {"stopSequence": 71, "arrival": {"time": "1694892356"}, "stopId": "49365"}], "vehicle": {"licensePlate": "BLYD48"}, "timestamp": "1694889033"}, "vehicle": {"trip": {"tripId": "18098-701ff27f-2", "startTime": "14:41:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "574", "directionId": 0}, "position": {"latitude": -36.826256, "longitude": -73.058846, "bearing": 64.0, "odometer": 0.0, "speed": 8.055555}, "timestamp": "1694889033", "vehicle": {"licensePlate": "BLYD48"}}}, {"id": "bff55ba6-ac13-41ce-b583-54e0d3f39d28", "tripUpdate": {"trip": {"tripId": "18044-701ff27f-2", "startTime": "15:40:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "574", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 27, "arrival": {"time": "1694889072"}, "stopId": "40993"}, {"stopSequence": 28, "arrival": {"time": "1694889573"}, "stopId": "40995"}, {"stopSequence": 29, "arrival": {"time": "1694889652"}, "stopId": "40996"}, {"stopSequence": 30, "arrival": {"time": "1694889728"}, "stopId": "40997"}, {"stopSequence": 31, "arrival": {"time": "1694889785"}, "stopId": "39614"}, {"stopSequence": 32, "arrival": {"time": "1694889832"}, "stopId": "39615"}, {"stopSequence": 33, "arrival": {"time": "1694889879"}, "stopId": "39616"}, {"stopSequence": 34, "arrival": {"time": "1694889932"}, "stopId": "39617"}, {"stopSequence": 35, "arrival": {"time": "1694889988"}, "stopId": "39618"}, {"stopSequence": 36, "arrival": {"time": "1694890032"}, "stopId": "39619"}, {"stopSequence": 37, "arrival": {"time": "1694890070"}, "stopId": "39620"}, {"stopSequence": 38, "arrival": {"time": "1694890138"}, "stopId": "39621"}, {"stopSequence": 39, "arrival": {"time": "1694890185"}, "stopId": "38281"}, {"stopSequence": 40, "arrival": {"time": "1694890239"}, "stopId": "37506"}, {"stopSequence": 41, "arrival": {"time": "1694890332"}, "stopId": "37520"}, {"stopSequence": 42, "arrival": {"time": "1694890438"}, "stopId": "37470"}, {"stopSequence": 43, "arrival": {"time": "1694890462"}, "stopId": "37477"}, {"stopSequence": 44, "arrival": {"time": "1694890491"}, "stopId": "91118"}, {"stopSequence": 45, "arrival": {"time": "1694890554"}, "stopId": "35223"}, {"stopSequence": 46, "arrival": {"time": "1694890599"}, "stopId": "39547"}, {"stopSequence": 47, "arrival": {"time": "1694890676"}, "stopId": "35224"}, {"stopSequence": 48, "arrival": {"time": "1694890856"}, "stopId": "35225"}, {"stopSequence": 49, "arrival": {"time": "1694891477"}, "stopId": "35748"}, {"stopSequence": 50, "arrival": {"time": "1694891557"}, "stopId": "35749"}, {"stopSequence": 51, "arrival": {"time": "1694891613"}, "stopId": "35750"}, {"stopSequence": 52, "arrival": {"time": "1694891708"}, "stopId": "35751"}, {"stopSequence": 53, "arrival": {"time": "1694891782"}, "stopId": "35789"}, {"stopSequence": 54, "arrival": {"time": "1694891851"}, "stopId": "35752"}, {"stopSequence": 55, "arrival": {"time": "1694892035"}, "stopId": "35417"}, {"stopSequence": 56, "arrival": {"time": "1694892132"}, "stopId": "35755"}, {"stopSequence": 57, "arrival": {"time": "1694892446"}, "stopId": "35756"}, {"stopSequence": 58, "arrival": {"time": "1694892623"}, "stopId": "35757"}, {"stopSequence": 59, "arrival": {"time": "1694892695"}, "stopId": "35758"}, {"stopSequence": 60, "arrival": {"time": "1694892708"}, "stopId": "35759"}, {"stopSequence": 61, "arrival": {"time": "1694892794"}, "stopId": "35522"}, {"stopSequence": 62, "arrival": {"time": "1694892888"}, "stopId": "35508"}, {"stopSequence": 63, "arrival": {"time": "1694892952"}, "stopId": "35514"}, {"stopSequence": 64, "arrival": {"time": "1694893039"}, "stopId": "35515"}, {"stopSequence": 65, "arrival": {"time": "1694893131"}, "stopId": "35516"}, {"stopSequence": 66, "arrival": {"time": "1694893192"}, "stopId": "35517"}, {"stopSequence": 67, "arrival": {"time": "1694893336"}, "stopId": "35763"}, {"stopSequence": 68, "arrival": {"time": "1694893458"}, "stopId": "35761"}, {"stopSequence": 69, "arrival": {"time": "1694893550"}, "stopId": "35760"}, {"stopSequence": 70, "arrival": {"time": "1694893622"}, "stopId": "35523"}, {"stopSequence": 71, "arrival": {"time": "1694893706"}, "stopId": "34960"}, {"stopSequence": 72, "arrival": {"time": "1694893764"}, "stopId": "34961"}, {"stopSequence": 73, "arrival": {"time": "1694893947"}, "stopId": "34962"}, {"stopSequence": 74, "arrival": {"time": "1694894088"}, "stopId": "34963"}, {"stopSequence": 75, "arrival": {"time": "1694894190"}, "stopId": "34964"}, {"stopSequence": 76, "arrival": {"time": "1694894319"}, "stopId": "34965"}, {"stopSequence": 77, "arrival": {"time": "1694894491"}, "stopId": "34966"}], "vehicle": {"licensePlate": "CZZL74"}, "timestamp": "1694888976"}, "vehicle": {"trip": {"tripId": "18044-701ff27f-2", "startTime": "15:40:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "574", "directionId": 1}, "position": {"latitude": -36.777954, "longitude": -73.07869, "bearing": 154.0, "odometer": 0.0, "speed": 18.61111}, "timestamp": "1694888976", "vehicle": {"licensePlate": "CZZL74"}}}, {"id": "caecf9f1-c916-4b66-ac7b-2a7e5d6e2fc0", "tripUpdate": {"trip": {"tripId": "18101-701ff27f-2", "startTime": "15:41:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "574", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 2, "arrival": {"time": "1694889157"}, "stopId": "34971"}, {"stopSequence": 3, "arrival": {"time": "1694889187"}, "stopId": "34972"}, {"stopSequence": 4, "arrival": {"time": "1694889224"}, "stopId": "34973"}, {"stopSequence": 5, "arrival": {"time": "1694889258"}, "stopId": "34974"}, {"stopSequence": 6, "arrival": {"time": "1694889345"}, "stopId": "34961"}, {"stopSequence": 7, "arrival": {"time": "1694889529"}, "stopId": "35762"}, {"stopSequence": 8, "arrival": {"time": "1694889610"}, "stopId": "35764"}, {"stopSequence": 9, "arrival": {"time": "1694889665"}, "stopId": "35766"}, {"stopSequence": 10, "arrival": {"time": "1694889721"}, "stopId": "35767"}, {"stopSequence": 11, "arrival": {"time": "1694889779"}, "stopId": "35398"}, {"stopSequence": 12, "arrival": {"time": "1694889873"}, "stopId": "35760"}, {"stopSequence": 13, "arrival": {"time": "1694889915"}, "stopId": "35759"}, {"stopSequence": 14, "arrival": {"time": "1694889980"}, "stopId": "35524"}, {"stopSequence": 15, "arrival": {"time": "1694890074"}, "stopId": "35525"}, {"stopSequence": 16, "arrival": {"time": "1694890337"}, "stopId": "35786"}, {"stopSequence": 17, "arrival": {"time": "1694890394"}, "stopId": "35787"}, {"stopSequence": 18, "arrival": {"time": "1694890458"}, "stopId": "35788"}, {"stopSequence": 19, "arrival": {"time": "1694890563"}, "stopId": "35789"}, {"stopSequence": 20, "arrival": {"time": "1694890607"}, "stopId": "35790"}, {"stopSequence": 21, "arrival": {"time": "1694890689"}, "stopId": "35791"}, {"stopSequence": 22, "arrival": {"time": "1694890742"}, "stopId": "35792"}, {"stopSequence": 23, "arrival": {"time": "1694890795"}, "stopId": "35793"}, {"stopSequence": 24, "arrival": {"time": "1694890915"}, "stopId": "91116"}, {"stopSequence": 25, "arrival": {"time": "1694891428"}, "stopId": "35794"}, {"stopSequence": 26, "arrival": {"time": "1694891537"}, "stopId": "35796"}, {"stopSequence": 27, "arrival": {"time": "1694891596"}, "stopId": "35797"}, {"stopSequence": 28, "arrival": {"time": "1694891645"}, "stopId": "35798"}, {"stopSequence": 29, "arrival": {"time": "1694891692"}, "stopId": "35799"}, {"stopSequence": 30, "arrival": {"time": "1694891778"}, "stopId": "35800"}, {"stopSequence": 31, "arrival": {"time": "1694891840"}, "stopId": "35801"}, {"stopSequence": 32, "arrival": {"time": "1694891873"}, "stopId": "35802"}, {"stopSequence": 33, "arrival": {"time": "1694891970"}, "stopId": "38520"}, {"stopSequence": 34, "arrival": {"time": "1694892028"}, "stopId": "38521"}, {"stopSequence": 35, "arrival": {"time": "1694892095"}, "stopId": "38522"}, {"stopSequence": 36, "arrival": {"time": "1694892163"}, "stopId": "38523"}, {"stopSequence": 37, "arrival": {"time": "1694892236"}, "stopId": "38524"}, {"stopSequence": 38, "arrival": {"time": "1694892306"}, "stopId": "38525"}, {"stopSequence": 39, "arrival": {"time": "1694892381"}, "stopId": "38526"}, {"stopSequence": 40, "arrival": {"time": "1694892452"}, "stopId": "38527"}, {"stopSequence": 41, "arrival": {"time": "1694892585"}, "stopId": "38528"}, {"stopSequence": 42, "arrival": {"time": "1694892775"}, "stopId": "38529"}, {"stopSequence": 43, "arrival": {"time": "1694893124"}, "stopId": "38530"}, {"stopSequence": 44, "arrival": {"time": "1694893147"}, "stopId": "16005209"}, {"stopSequence": 45, "arrival": {"time": "1694893597"}, "stopId": "38531"}, {"stopSequence": 46, "arrival": {"time": "1694893711"}, "stopId": "8921285"}, {"stopSequence": 47, "arrival": {"time": "1694893950"}, "stopId": "38532"}, {"stopSequence": 48, "arrival": {"time": "1694894069"}, "stopId": "38533"}, {"stopSequence": 49, "arrival": {"time": "1694894195"}, "stopId": "38534"}, {"stopSequence": 50, "arrival": {"time": "1694894311"}, "stopId": "38535"}, {"stopSequence": 51, "arrival": {"time": "1694894452"}, "stopId": "38536"}, {"stopSequence": 52, "arrival": {"time": "1694894565"}, "stopId": "4838437"}, {"stopSequence": 53, "arrival": {"time": "1694894709"}, "stopId": "45085"}, {"stopSequence": 54, "arrival": {"time": "1694894923"}, "stopId": "45086"}, {"stopSequence": 55, "arrival": {"time": "1694895070"}, "stopId": "38539"}, {"stopSequence": 56, "arrival": {"time": "1694895266"}, "stopId": "38540"}, {"stopSequence": 57, "arrival": {"time": "1694895514"}, "stopId": "38544"}, {"stopSequence": 58, "arrival": {"time": "1694895744"}, "stopId": "38545"}, {"stopSequence": 59, "arrival": {"time": "1694896067"}, "stopId": "38546"}, {"stopSequence": 60, "arrival": {"time": "1694896534"}, "stopId": "38548"}, {"stopSequence": 61, "arrival": {"time": "1694896811"}, "stopId": "38549"}, {"stopSequence": 62, "arrival": {"time": "1694897057"}, "stopId": "38550"}, {"stopSequence": 63, "arrival": {"time": "1694897511"}, "stopId": "38551"}, {"stopSequence": 64, "arrival": {"time": "1694897949"}, "stopId": "38552"}, {"stopSequence": 65, "arrival": {"time": "1694898411"}, "stopId": "49359"}, {"stopSequence": 66, "arrival": {"time": "1694898709"}, "stopId": "49360"}, {"stopSequence": 67, "arrival": {"time": "1694899439"}, "stopId": "49361"}, {"stopSequence": 68, "arrival": {"time": "1694899632"}, "stopId": "49362"}, {"stopSequence": 69, "arrival": {"time": "1694899980"}, "stopId": "49363"}, {"stopSequence": 70, "arrival": {"time": "1694900361"}, "stopId": "49364"}, {"stopSequence": 71, "arrival": {"time": "1694900721"}, "stopId": "49365"}], "vehicle": {"licensePlate": "FPKV41"}, "timestamp": "1694889010"}, "vehicle": {"trip": {"tripId": "18101-701ff27f-2", "startTime": "15:41:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "574", "directionId": 0}, "position": {"latitude": -36.826057, "longitude": -73.14741, "bearing": 48.0, "odometer": 0.0, "speed": 4.4444447}, "timestamp": "1694889010", "vehicle": {"licensePlate": "FPKV41"}}}, {"id": "bf4b68b7-a613-4eae-8bd7-88de69ed8f94", "tripUpdate": {"trip": {"tripId": "18100-701ff27f-2", "startTime": "15:21:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "574", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 10, "arrival": {"time": "1694888936"}, "stopId": "35767"}, {"stopSequence": 11, "arrival": {"time": "1694888999"}, "stopId": "35398"}, {"stopSequence": 12, "arrival": {"time": "1694889100"}, "stopId": "35760"}, {"stopSequence": 13, "arrival": {"time": "1694889144"}, "stopId": "35759"}, {"stopSequence": 14, "arrival": {"time": "1694889213"}, "stopId": "35524"}, {"stopSequence": 15, "arrival": {"time": "1694889311"}, "stopId": "35525"}, {"stopSequence": 16, "arrival": {"time": "1694889579"}, "stopId": "35786"}, {"stopSequence": 17, "arrival": {"time": "1694889635"}, "stopId": "35787"}, {"stopSequence": 18, "arrival": {"time": "1694889699"}, "stopId": "35788"}, {"stopSequence": 19, "arrival": {"time": "1694889802"}, "stopId": "35789"}, {"stopSequence": 20, "arrival": {"time": "1694889844"}, "stopId": "35790"}, {"stopSequence": 21, "arrival": {"time": "1694889923"}, "stopId": "35791"}, {"stopSequence": 22, "arrival": {"time": "1694889974"}, "stopId": "35792"}, {"stopSequence": 23, "arrival": {"time": "1694890024"}, "stopId": "35793"}, {"stopSequence": 24, "arrival": {"time": "1694890136"}, "stopId": "91116"}, {"stopSequence": 25, "arrival": {"time": "1694890601"}, "stopId": "35794"}, {"stopSequence": 26, "arrival": {"time": "1694890697"}, "stopId": "35796"}, {"stopSequence": 27, "arrival": {"time": "1694890748"}, "stopId": "35797"}, {"stopSequence": 28, "arrival": {"time": "1694890791"}, "stopId": "35798"}, {"stopSequence": 29, "arrival": {"time": "1694890831"}, "stopId": "35799"}, {"stopSequence": 30, "arrival": {"time": "1694890905"}, "stopId": "35800"}, {"stopSequence": 31, "arrival": {"time": "1694890958"}, "stopId": "35801"}, {"stopSequence": 32, "arrival": {"time": "1694890985"}, "stopId": "35802"}, {"stopSequence": 33, "arrival": {"time": "1694891067"}, "stopId": "38520"}, {"stopSequence": 34, "arrival": {"time": "1694891116"}, "stopId": "38521"}, {"stopSequence": 35, "arrival": {"time": "1694891171"}, "stopId": "38522"}, {"stopSequence": 36, "arrival": {"time": "1694891227"}, "stopId": "38523"}, {"stopSequence": 37, "arrival": {"time": "1694891287"}, "stopId": "38524"}, {"stopSequence": 38, "arrival": {"time": "1694891344"}, "stopId": "38525"}, {"stopSequence": 39, "arrival": {"time": "1694891405"}, "stopId": "38526"}, {"stopSequence": 40, "arrival": {"time": "1694891463"}, "stopId": "38527"}, {"stopSequence": 41, "arrival": {"time": "1694891568"}, "stopId": "38528"}, {"stopSequence": 42, "arrival": {"time": "1694891718"}, "stopId": "38529"}, {"stopSequence": 43, "arrival": {"time": "1694891989"}, "stopId": "38530"}, {"stopSequence": 44, "arrival": {"time": "1694892007"}, "stopId": "16005209"}, {"stopSequence": 45, "arrival": {"time": "1694892344"}, "stopId": "38531"}, {"stopSequence": 46, "arrival": {"time": "1694892428"}, "stopId": "8921285"}, {"stopSequence": 47, "arrival": {"time": "1694892602"}, "stopId": "38532"}, {"stopSequence": 48, "arrival": {"time": "1694892687"}, "stopId": "38533"}, {"stopSequence": 49, "arrival": {"time": "1694892777"}, "stopId": "38534"}, {"stopSequence": 50, "arrival": {"time": "1694892859"}, "stopId": "38535"}, {"stopSequence": 51, "arrival": {"time": "1694892958"}, "stopId": "38536"}, {"stopSequence": 52, "arrival": {"time": "1694893037"}, "stopId": "4838437"}, {"stopSequence": 53, "arrival": {"time": "1694893136"}, "stopId": "45085"}, {"stopSequence": 54, "arrival": {"time": "1694893282"}, "stopId": "45086"}, {"stopSequence": 55, "arrival": {"time": "1694893381"}, "stopId": "38539"}, {"stopSequence": 56, "arrival": {"time": "1694893513"}, "stopId": "38540"}, {"stopSequence": 57, "arrival": {"time": "1694893676"}, "stopId": "38544"}, {"stopSequence": 58, "arrival": {"time": "1694893826"}, "stopId": "38545"}, {"stopSequence": 59, "arrival": {"time": "1694894033"}, "stopId": "38546"}, {"stopSequence": 60, "arrival": {"time": "1694894325"}, "stopId": "38548"}, {"stopSequence": 61, "arrival": {"time": "1694894496"}, "stopId": "38549"}, {"stopSequence": 62, "arrival": {"time": "1694894644"}, "stopId": "38550"}, {"stopSequence": 63, "arrival": {"time": "1694894914"}, "stopId": "38551"}, {"stopSequence": 64, "arrival": {"time": "1694895168"}, "stopId": "38552"}, {"stopSequence": 65, "arrival": {"time": "1694895430"}, "stopId": "49359"}, {"stopSequence": 66, "arrival": {"time": "1694895595"}, "stopId": "49360"}, {"stopSequence": 67, "arrival": {"time": "1694895990"}, "stopId": "49361"}, {"stopSequence": 68, "arrival": {"time": "1694896092"}, "stopId": "49362"}, {"stopSequence": 69, "arrival": {"time": "1694896274"}, "stopId": "49363"}, {"stopSequence": 70, "arrival": {"time": "1694896470"}, "stopId": "49364"}, {"stopSequence": 71, "arrival": {"time": "1694896651"}, "stopId": "49365"}], "vehicle": {"licensePlate": "RXFF50"}, "timestamp": "1694888886"}, "vehicle": {"trip": {"tripId": "18100-701ff27f-2", "startTime": "15:21:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "574", "directionId": 0}, "position": {"latitude": -36.83755, "longitude": -73.14907, "bearing": 4.0, "odometer": 0.0, "speed": 7.7777777}, "timestamp": "1694888988", "vehicle": {"licensePlate": "RXFF50"}}}, {"id": "6b0b6c77-d360-4d24-9593-c452febf3cc0", "tripUpdate": {"trip": {"tripId": "18097-701ff27f-2", "startTime": "14:21:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "574", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 57, "arrival": {"time": "1694889105"}, "stopId": "38544"}, {"stopSequence": 58, "arrival": {"time": "1694889177"}, "stopId": "38545"}, {"stopSequence": 59, "arrival": {"time": "1694889272"}, "stopId": "38546"}, {"stopSequence": 60, "arrival": {"time": "1694889395"}, "stopId": "38548"}, {"stopSequence": 61, "arrival": {"time": "1694889461"}, "stopId": "38549"}, {"stopSequence": 62, "arrival": {"time": "1694889517"}, "stopId": "38550"}, {"stopSequence": 63, "arrival": {"time": "1694889612"}, "stopId": "38551"}, {"stopSequence": 64, "arrival": {"time": "1694889695"}, "stopId": "38552"}, {"stopSequence": 65, "arrival": {"time": "1694889776"}, "stopId": "49359"}, {"stopSequence": 66, "arrival": {"time": "1694889824"}, "stopId": "49360"}, {"stopSequence": 67, "arrival": {"time": "1694889932"}, "stopId": "49361"}, {"stopSequence": 68, "arrival": {"time": "1694889958"}, "stopId": "49362"}, {"stopSequence": 69, "arrival": {"time": "1694890004"}, "stopId": "49363"}, {"stopSequence": 70, "arrival": {"time": "1694890050"}, "stopId": "49364"}, {"stopSequence": 71, "arrival": {"time": "1694890092"}, "stopId": "49365"}], "vehicle": {"licensePlate": "WK6953"}, "timestamp": "1694889032"}, "vehicle": {"trip": {"tripId": "18097-701ff27f-2", "startTime": "14:21:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "574", "directionId": 0}, "position": {"latitude": -36.75305, "longitude": -73.09233, "bearing": 352.0, "odometer": 0.0, "speed": 8.611111}, "timestamp": "1694889032", "vehicle": {"licensePlate": "WK6953"}}}, {"id": "966a99a6-4dde-4759-8fd3-b6f66b9356da", "tripUpdate": {"trip": {"tripId": "18043-701ff27f-2", "startTime": "15:20:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "574", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 49, "arrival": {"time": "1694889279"}, "stopId": "35748"}, {"stopSequence": 50, "arrival": {"time": "1694889348"}, "stopId": "35749"}, {"stopSequence": 51, "arrival": {"time": "1694889395"}, "stopId": "35750"}, {"stopSequence": 52, "arrival": {"time": "1694889472"}, "stopId": "35751"}, {"stopSequence": 53, "arrival": {"time": "1694889531"}, "stopId": "35789"}, {"stopSequence": 54, "arrival": {"time": "1694889585"}, "stopId": "35752"}, {"stopSequence": 55, "arrival": {"time": "1694889722"}, "stopId": "35417"}, {"stopSequence": 56, "arrival": {"time": "1694889793"}, "stopId": "35755"}, {"stopSequence": 57, "arrival": {"time": "1694890004"}, "stopId": "35756"}, {"stopSequence": 58, "arrival": {"time": "1694890116"}, "stopId": "35757"}, {"stopSequence": 59, "arrival": {"time": "1694890161"}, "stopId": "35758"}, {"stopSequence": 60, "arrival": {"time": "1694890169"}, "stopId": "35759"}, {"stopSequence": 61, "arrival": {"time": "1694890220"}, "stopId": "35522"}, {"stopSequence": 62, "arrival": {"time": "1694890274"}, "stopId": "35508"}, {"stopSequence": 63, "arrival": {"time": "1694890311"}, "stopId": "35514"}, {"stopSequence": 64, "arrival": {"time": "1694890360"}, "stopId": "35515"}, {"stopSequence": 65, "arrival": {"time": "1694890411"}, "stopId": "35516"}, {"stopSequence": 66, "arrival": {"time": "1694890444"}, "stopId": "35517"}, {"stopSequence": 67, "arrival": {"time": "1694890521"}, "stopId": "35763"}, {"stopSequence": 68, "arrival": {"time": "1694890584"}, "stopId": "35761"}, {"stopSequence": 69, "arrival": {"time": "1694890630"}, "stopId": "35760"}, {"stopSequence": 70, "arrival": {"time": "1694890666"}, "stopId": "35523"}, {"stopSequence": 71, "arrival": {"time": "1694890707"}, "stopId": "34960"}, {"stopSequence": 72, "arrival": {"time": "1694890735"}, "stopId": "34961"}, {"stopSequence": 73, "arrival": {"time": "1694890821"}, "stopId": "34962"}, {"stopSequence": 74, "arrival": {"time": "1694890885"}, "stopId": "34963"}, {"stopSequence": 75, "arrival": {"time": "1694890930"}, "stopId": "34964"}, {"stopSequence": 76, "arrival": {"time": "1694890987"}, "stopId": "34965"}, {"stopSequence": 77, "arrival": {"time": "1694891059"}, "stopId": "34966"}], "vehicle": {"licensePlate": "YU5015"}, "timestamp": "1694889007"}, "vehicle": {"trip": {"tripId": "18043-701ff27f-2", "startTime": "15:20:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "574", "directionId": 1}, "position": {"latitude": -36.83329, "longitude": -73.07676, "bearing": 244.0, "odometer": 0.0, "speed": 22.222221}, "timestamp": "1694889007", "vehicle": {"licensePlate": "YU5015"}}}, {"id": "d9bfe7af-94fb-4f51-af2c-fa635479ae30", "tripUpdate": {"trip": {"tripId": "18214-701ff27f-2", "startTime": "15:21:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "575", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 4, "arrival": {"time": "1694889124"}, "stopId": "34961"}, {"stopSequence": 5, "arrival": {"time": "1694889196"}, "stopId": "35759"}, {"stopSequence": 6, "arrival": {"time": "1694889247"}, "stopId": "35760"}, {"stopSequence": 7, "arrival": {"time": "1694889314"}, "stopId": "35762"}, {"stopSequence": 8, "arrival": {"time": "1694889359"}, "stopId": "91032"}, {"stopSequence": 9, "arrival": {"time": "1694889412"}, "stopId": "91033"}, {"stopSequence": 10, "arrival": {"time": "1694889535"}, "stopId": "35876"}, {"stopSequence": 11, "arrival": {"time": "1694889611"}, "stopId": "35874"}, {"stopSequence": 12, "arrival": {"time": "1694889652"}, "stopId": "35873"}, {"stopSequence": 13, "arrival": {"time": "1694889687"}, "stopId": "35872"}, {"stopSequence": 14, "arrival": {"time": "1694889721"}, "stopId": "35871"}, {"stopSequence": 15, "arrival": {"time": "1694889766"}, "stopId": "35484"}, {"stopSequence": 16, "arrival": {"time": "1694889826"}, "stopId": "7175655"}, {"stopSequence": 17, "arrival": {"time": "1694889849"}, "stopId": "35776"}, {"stopSequence": 18, "arrival": {"time": "1694889884"}, "stopId": "35868"}, {"stopSequence": 19, "arrival": {"time": "1694889914"}, "stopId": "35778"}, {"stopSequence": 20, "arrival": {"time": "1694889957"}, "stopId": "35779"}, {"stopSequence": 21, "arrival": {"time": "1694889995"}, "stopId": "35867"}, {"stopSequence": 22, "arrival": {"time": "1694890005"}, "stopId": "35781"}, {"stopSequence": 23, "arrival": {"time": "1694890034"}, "stopId": "35782"}, {"stopSequence": 24, "arrival": {"time": "1694890080"}, "stopId": "91038"}, {"stopSequence": 25, "arrival": {"time": "1694890187"}, "stopId": "35783"}, {"stopSequence": 26, "arrival": {"time": "1694890220"}, "stopId": "31013"}, {"stopSequence": 27, "arrival": {"time": "1694890336"}, "stopId": "35785"}, {"stopSequence": 28, "arrival": {"time": "1694890578"}, "stopId": "35786"}, {"stopSequence": 29, "arrival": {"time": "1694890644"}, "stopId": "35787"}, {"stopSequence": 30, "arrival": {"time": "1694890708"}, "stopId": "35788"}, {"stopSequence": 31, "arrival": {"time": "1694890809"}, "stopId": "35789"}, {"stopSequence": 32, "arrival": {"time": "1694890854"}, "stopId": "35790"}, {"stopSequence": 33, "arrival": {"time": "1694890939"}, "stopId": "35791"}, {"stopSequence": 34, "arrival": {"time": "1694890988"}, "stopId": "35792"}, {"stopSequence": 35, "arrival": {"time": "1694891048"}, "stopId": "35793"}, {"stopSequence": 36, "arrival": {"time": "1694891166"}, "stopId": "91116"}, {"stopSequence": 37, "arrival": {"time": "1694891714"}, "stopId": "35794"}, {"stopSequence": 38, "arrival": {"time": "1694891830"}, "stopId": "35796"}, {"stopSequence": 39, "arrival": {"time": "1694891892"}, "stopId": "35797"}, {"stopSequence": 40, "arrival": {"time": "1694891946"}, "stopId": "35798"}, {"stopSequence": 41, "arrival": {"time": "1694891995"}, "stopId": "35799"}, {"stopSequence": 42, "arrival": {"time": "1694892088"}, "stopId": "35800"}, {"stopSequence": 43, "arrival": {"time": "1694892155"}, "stopId": "35801"}, {"stopSequence": 44, "arrival": {"time": "1694892190"}, "stopId": "35802"}, {"stopSequence": 45, "arrival": {"time": "1694892295"}, "stopId": "38520"}, {"stopSequence": 46, "arrival": {"time": "1694892358"}, "stopId": "38521"}, {"stopSequence": 47, "arrival": {"time": "1694892430"}, "stopId": "38522"}, {"stopSequence": 48, "arrival": {"time": "1694892505"}, "stopId": "38523"}, {"stopSequence": 49, "arrival": {"time": "1694892584"}, "stopId": "38524"}, {"stopSequence": 50, "arrival": {"time": "1694892660"}, "stopId": "38525"}, {"stopSequence": 51, "arrival": {"time": "1694892743"}, "stopId": "38526"}, {"stopSequence": 52, "arrival": {"time": "1694892821"}, "stopId": "38527"}, {"stopSequence": 53, "arrival": {"time": "1694892967"}, "stopId": "38528"}, {"stopSequence": 54, "arrival": {"time": "1694893176"}, "stopId": "38529"}, {"stopSequence": 55, "arrival": {"time": "1694893566"}, "stopId": "38530"}, {"stopSequence": 56, "arrival": {"time": "1694893592"}, "stopId": "16005209"}, {"stopSequence": 57, "arrival": {"time": "1694894099"}, "stopId": "38531"}, {"stopSequence": 58, "arrival": {"time": "1694894209"}, "stopId": "8921285"}, {"stopSequence": 59, "arrival": {"time": "1694894499"}, "stopId": "38532"}, {"stopSequence": 60, "arrival": {"time": "1694894636"}, "stopId": "38533"}, {"stopSequence": 61, "arrival": {"time": "1694894781"}, "stopId": "38534"}, {"stopSequence": 62, "arrival": {"time": "1694894914"}, "stopId": "38535"}, {"stopSequence": 63, "arrival": {"time": "1694895102"}, "stopId": "38536"}, {"stopSequence": 64, "arrival": {"time": "1694895209"}, "stopId": "4838437"}, {"stopSequence": 65, "arrival": {"time": "1694895377"}, "stopId": "45085"}, {"stopSequence": 66, "arrival": {"time": "1694895633"}, "stopId": "45086"}, {"stopSequence": 67, "arrival": {"time": "1694895807"}, "stopId": "38539"}, {"stopSequence": 68, "arrival": {"time": "1694896040"}, "stopId": "38540"}, {"stopSequence": 69, "arrival": {"time": "1694896334"}, "stopId": "38544"}, {"stopSequence": 70, "arrival": {"time": "1694896610"}, "stopId": "38545"}, {"stopSequence": 71, "arrival": {"time": "1694897001"}, "stopId": "38546"}, {"stopSequence": 72, "arrival": {"time": "1694897287"}, "stopId": "38547"}, {"stopSequence": 73, "arrival": {"time": "1694897570"}, "stopId": "38548"}, {"stopSequence": 74, "arrival": {"time": "1694897911"}, "stopId": "38549"}, {"stopSequence": 75, "arrival": {"time": "1694898216"}, "stopId": "38550"}, {"stopSequence": 76, "arrival": {"time": "1694898785"}, "stopId": "38551"}, {"stopSequence": 77, "arrival": {"time": "1694899339"}, "stopId": "38552"}, {"stopSequence": 78, "arrival": {"time": "1694899905"}, "stopId": "49359"}, {"stopSequence": 79, "arrival": {"time": "1694900317"}, "stopId": "49360"}, {"stopSequence": 80, "arrival": {"time": "1694901275"}, "stopId": "49361"}, {"stopSequence": 81, "arrival": {"time": "1694901532"}, "stopId": "49362"}, {"stopSequence": 82, "arrival": {"time": "1694901998"}, "stopId": "49363"}, {"stopSequence": 83, "arrival": {"time": "1694902513"}, "stopId": "49364"}, {"stopSequence": 84, "arrival": {"time": "1694903033"}, "stopId": "49365"}], "vehicle": {"licensePlate": "CBKT84"}, "timestamp": "1694889029"}, "vehicle": {"trip": {"tripId": "18214-701ff27f-2", "startTime": "15:21:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "575", "directionId": 0}, "position": {"latitude": -36.83048, "longitude": -73.1403, "bearing": 301.0, "odometer": 0.0, "speed": 4.7222223}, "timestamp": "1694889029", "vehicle": {"licensePlate": "CBKT84"}}}, {"id": "6fb9e6ba-a92c-4756-9794-0b4d40818fbe", "tripUpdate": {"trip": {"tripId": "18213-701ff27f-2", "startTime": "15:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "575", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 22, "arrival": {"time": "1694889017"}, "stopId": "35781"}, {"stopSequence": 23, "arrival": {"time": "1694889049"}, "stopId": "35782"}, {"stopSequence": 24, "arrival": {"time": "1694889100"}, "stopId": "91038"}, {"stopSequence": 25, "arrival": {"time": "1694889215"}, "stopId": "35783"}, {"stopSequence": 26, "arrival": {"time": "1694889250"}, "stopId": "31013"}, {"stopSequence": 27, "arrival": {"time": "1694889372"}, "stopId": "35785"}, {"stopSequence": 28, "arrival": {"time": "1694889616"}, "stopId": "35786"}, {"stopSequence": 29, "arrival": {"time": "1694889681"}, "stopId": "35787"}, {"stopSequence": 30, "arrival": {"time": "1694889743"}, "stopId": "35788"}, {"stopSequence": 31, "arrival": {"time": "1694889840"}, "stopId": "35789"}, {"stopSequence": 32, "arrival": {"time": "1694889882"}, "stopId": "35790"}, {"stopSequence": 33, "arrival": {"time": "1694889961"}, "stopId": "35791"}, {"stopSequence": 34, "arrival": {"time": "1694890007"}, "stopId": "35792"}, {"stopSequence": 35, "arrival": {"time": "1694890062"}, "stopId": "35793"}, {"stopSequence": 36, "arrival": {"time": "1694890168"}, "stopId": "91116"}, {"stopSequence": 37, "arrival": {"time": "1694890636"}, "stopId": "35794"}, {"stopSequence": 38, "arrival": {"time": "1694890731"}, "stopId": "35796"}, {"stopSequence": 39, "arrival": {"time": "1694890781"}, "stopId": "35797"}, {"stopSequence": 40, "arrival": {"time": "1694890823"}, "stopId": "35798"}, {"stopSequence": 41, "arrival": {"time": "1694890863"}, "stopId": "35799"}, {"stopSequence": 42, "arrival": {"time": "1694890935"}, "stopId": "35800"}, {"stopSequence": 43, "arrival": {"time": "1694890987"}, "stopId": "35801"}, {"stopSequence": 44, "arrival": {"time": "1694891015"}, "stopId": "35802"}, {"stopSequence": 45, "arrival": {"time": "1694891095"}, "stopId": "38520"}, {"stopSequence": 46, "arrival": {"time": "1694891143"}, "stopId": "38521"}, {"stopSequence": 47, "arrival": {"time": "1694891197"}, "stopId": "38522"}, {"stopSequence": 48, "arrival": {"time": "1694891252"}, "stopId": "38523"}, {"stopSequence": 49, "arrival": {"time": "1694891311"}, "stopId": "38524"}, {"stopSequence": 50, "arrival": {"time": "1694891367"}, "stopId": "38525"}, {"stopSequence": 51, "arrival": {"time": "1694891427"}, "stopId": "38526"}, {"stopSequence": 52, "arrival": {"time": "1694891483"}, "stopId": "38527"}, {"stopSequence": 53, "arrival": {"time": "1694891586"}, "stopId": "38528"}, {"stopSequence": 54, "arrival": {"time": "1694891732"}, "stopId": "38529"}, {"stopSequence": 55, "arrival": {"time": "1694891995"}, "stopId": "38530"}, {"stopSequence": 56, "arrival": {"time": "1694892012"}, "stopId": "16005209"}, {"stopSequence": 57, "arrival": {"time": "1694892339"}, "stopId": "38531"}, {"stopSequence": 58, "arrival": {"time": "1694892408"}, "stopId": "8921285"}, {"stopSequence": 59, "arrival": {"time": "1694892587"}, "stopId": "38532"}, {"stopSequence": 60, "arrival": {"time": "1694892669"}, "stopId": "38533"}, {"stopSequence": 61, "arrival": {"time": "1694892756"}, "stopId": "38534"}, {"stopSequence": 62, "arrival": {"time": "1694892834"}, "stopId": "38535"}, {"stopSequence": 63, "arrival": {"time": "1694892943"}, "stopId": "38536"}, {"stopSequence": 64, "arrival": {"time": "1694893005"}, "stopId": "4838437"}, {"stopSequence": 65, "arrival": {"time": "1694893100"}, "stopId": "45085"}, {"stopSequence": 66, "arrival": {"time": "1694893243"}, "stopId": "45086"}, {"stopSequence": 67, "arrival": {"time": "1694893339"}, "stopId": "38539"}, {"stopSequence": 68, "arrival": {"time": "1694893464"}, "stopId": "38540"}, {"stopSequence": 69, "arrival": {"time": "1694893620"}, "stopId": "38544"}, {"stopSequence": 70, "arrival": {"time": "1694893763"}, "stopId": "38545"}, {"stopSequence": 71, "arrival": {"time": "1694893961"}, "stopId": "38546"}, {"stopSequence": 72, "arrival": {"time": "1694894102"}, "stopId": "38547"}, {"stopSequence": 73, "arrival": {"time": "1694894238"}, "stopId": "38548"}, {"stopSequence": 74, "arrival": {"time": "1694894399"}, "stopId": "38549"}, {"stopSequence": 75, "arrival": {"time": "1694894540"}, "stopId": "38550"}, {"stopSequence": 76, "arrival": {"time": "1694894795"}, "stopId": "38551"}, {"stopSequence": 77, "arrival": {"time": "1694895034"}, "stopId": "38552"}, {"stopSequence": 78, "arrival": {"time": "1694895269"}, "stopId": "49359"}, {"stopSequence": 79, "arrival": {"time": "1694895435"}, "stopId": "49360"}, {"stopSequence": 80, "arrival": {"time": "1694895805"}, "stopId": "49361"}, {"stopSequence": 81, "arrival": {"time": "1694895901"}, "stopId": "49362"}, {"stopSequence": 82, "arrival": {"time": "1694896070"}, "stopId": "49363"}, {"stopSequence": 83, "arrival": {"time": "1694896252"}, "stopId": "49364"}, {"stopSequence": 84, "arrival": {"time": "1694896430"}, "stopId": "49365"}], "vehicle": {"licensePlate": "KLJL10"}, "timestamp": "1694889008"}, "vehicle": {"trip": {"tripId": "18213-701ff27f-2", "startTime": "15:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "575", "directionId": 0}, "position": {"latitude": -36.854523, "longitude": -73.13568, "bearing": 166.0, "odometer": 0.0, "speed": 3.3333333}, "timestamp": "1694889008", "vehicle": {"licensePlate": "KLJL10"}}}, {"id": "01e46230-e064-47b9-ab3f-200feae5df34", "tripUpdate": {"trip": {"tripId": "18156-701ff27f-2", "startTime": "15:02:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "575", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 42, "arrival": {"time": "1694889081"}, "stopId": "1-Nov"}, {"stopSequence": 43, "arrival": {"time": "1694889139"}, "stopId": "35745"}, {"stopSequence": 44, "arrival": {"time": "1694889160"}, "stopId": "15879953"}, {"stopSequence": 45, "arrival": {"time": "1694889189"}, "stopId": "35746"}, {"stopSequence": 46, "arrival": {"time": "1694889779"}, "stopId": "35748"}, {"stopSequence": 47, "arrival": {"time": "1694889840"}, "stopId": "35749"}, {"stopSequence": 48, "arrival": {"time": "1694889885"}, "stopId": "35750"}, {"stopSequence": 49, "arrival": {"time": "1694889960"}, "stopId": "35751"}, {"stopSequence": 50, "arrival": {"time": "1694890072"}, "stopId": "35752"}, {"stopSequence": 51, "arrival": {"time": "1694890205"}, "stopId": "35417"}, {"stopSequence": 52, "arrival": {"time": "1694890275"}, "stopId": "35755"}, {"stopSequence": 53, "arrival": {"time": "1694890483"}, "stopId": "35864"}, {"stopSequence": 54, "arrival": {"time": "1694890745"}, "stopId": "35866"}, {"stopSequence": 55, "arrival": {"time": "1694890824"}, "stopId": "35867"}, {"stopSequence": 56, "arrival": {"time": "1694890906"}, "stopId": "35644"}, {"stopSequence": 57, "arrival": {"time": "1694890953"}, "stopId": "35868"}, {"stopSequence": 58, "arrival": {"time": "1694890979"}, "stopId": "35869"}, {"stopSequence": 59, "arrival": {"time": "1694891006"}, "stopId": "35870"}, {"stopSequence": 60, "arrival": {"time": "1694891042"}, "stopId": "91045"}, {"stopSequence": 61, "arrival": {"time": "1694891071"}, "stopId": "91089"}, {"stopSequence": 62, "arrival": {"time": "1694891102"}, "stopId": "35645"}, {"stopSequence": 63, "arrival": {"time": "1694891154"}, "stopId": "91090"}, {"stopSequence": 64, "arrival": {"time": "1694891208"}, "stopId": "91091"}, {"stopSequence": 65, "arrival": {"time": "1694891247"}, "stopId": "91092"}, {"stopSequence": 66, "arrival": {"time": "1694891294"}, "stopId": "35875"}, {"stopSequence": 67, "arrival": {"time": "1694891594"}, "stopId": "35762"}, {"stopSequence": 68, "arrival": {"time": "1694891616"}, "stopId": "35761"}, {"stopSequence": 69, "arrival": {"time": "1694891663"}, "stopId": "35760"}, {"stopSequence": 70, "arrival": {"time": "1694891715"}, "stopId": "35523"}, {"stopSequence": 71, "arrival": {"time": "1694891765"}, "stopId": "34960"}, {"stopSequence": 72, "arrival": {"time": "1694891799"}, "stopId": "34961"}, {"stopSequence": 73, "arrival": {"time": "1694892253"}, "stopId": "34962"}, {"stopSequence": 74, "arrival": {"time": "1694892341"}, "stopId": "34963"}, {"stopSequence": 75, "arrival": {"time": "1694892404"}, "stopId": "34964"}], "vehicle": {"licensePlate": "LJKK14"}, "timestamp": "1694889030"}, "vehicle": {"trip": {"tripId": "18156-701ff27f-2", "startTime": "15:02:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "575", "directionId": 1}, "position": {"latitude": -36.823486, "longitude": -73.05265, "bearing": 229.0, "odometer": 0.0, "speed": 1.1111112}, "timestamp": "1694889030", "vehicle": {"licensePlate": "LJKK14"}}}, {"id": "524f4891-b855-4304-a0b8-1c7971239aa8", "tripUpdate": {"trip": {"tripId": "18157-701ff27f-2", "startTime": "15:22:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "575", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 28, "arrival": {"time": "1694889276"}, "stopId": "40995"}, {"stopSequence": 29, "arrival": {"time": "1694889359"}, "stopId": "40996"}, {"stopSequence": 30, "arrival": {"time": "1694889436"}, "stopId": "40997"}, {"stopSequence": 31, "arrival": {"time": "1694889495"}, "stopId": "39614"}, {"stopSequence": 32, "arrival": {"time": "1694889543"}, "stopId": "39615"}, {"stopSequence": 33, "arrival": {"time": "1694889592"}, "stopId": "39616"}, {"stopSequence": 34, "arrival": {"time": "1694889646"}, "stopId": "39617"}, {"stopSequence": 35, "arrival": {"time": "1694889703"}, "stopId": "39618"}, {"stopSequence": 36, "arrival": {"time": "1694889746"}, "stopId": "39619"}, {"stopSequence": 37, "arrival": {"time": "1694889785"}, "stopId": "39620"}, {"stopSequence": 38, "arrival": {"time": "1694889836"}, "stopId": "1-Jul"}, {"stopSequence": 39, "arrival": {"time": "1694889868"}, "stopId": "1-Aug"}, {"stopSequence": 40, "arrival": {"time": "1694889914"}, "stopId": "1-Sep"}, {"stopSequence": 41, "arrival": {"time": "1694889965"}, "stopId": "1-Oct"}, {"stopSequence": 42, "arrival": {"time": "1694890014"}, "stopId": "1-Nov"}, {"stopSequence": 43, "arrival": {"time": "1694890067"}, "stopId": "35745"}, {"stopSequence": 44, "arrival": {"time": "1694890086"}, "stopId": "15879953"}, {"stopSequence": 45, "arrival": {"time": "1694890113"}, "stopId": "35746"}, {"stopSequence": 46, "arrival": {"time": "1694890693"}, "stopId": "35748"}, {"stopSequence": 47, "arrival": {"time": "1694890756"}, "stopId": "35749"}, {"stopSequence": 48, "arrival": {"time": "1694890803"}, "stopId": "35750"}, {"stopSequence": 49, "arrival": {"time": "1694890883"}, "stopId": "35751"}, {"stopSequence": 50, "arrival": {"time": "1694891005"}, "stopId": "35752"}, {"stopSequence": 51, "arrival": {"time": "1694891153"}, "stopId": "35417"}, {"stopSequence": 52, "arrival": {"time": "1694891231"}, "stopId": "35755"}, {"stopSequence": 53, "arrival": {"time": "1694891472"}, "stopId": "35864"}, {"stopSequence": 54, "arrival": {"time": "1694891787"}, "stopId": "35866"}, {"stopSequence": 55, "arrival": {"time": "1694891886"}, "stopId": "35867"}, {"stopSequence": 56, "arrival": {"time": "1694891988"}, "stopId": "35644"}, {"stopSequence": 57, "arrival": {"time": "1694892048"}, "stopId": "35868"}, {"stopSequence": 58, "arrival": {"time": "1694892080"}, "stopId": "35869"}, {"stopSequence": 59, "arrival": {"time": "1694892115"}, "stopId": "35870"}, {"stopSequence": 60, "arrival": {"time": "1694892162"}, "stopId": "91045"}, {"stopSequence": 61, "arrival": {"time": "1694892199"}, "stopId": "91089"}, {"stopSequence": 62, "arrival": {"time": "1694892240"}, "stopId": "35645"}, {"stopSequence": 63, "arrival": {"time": "1694892307"}, "stopId": "91090"}, {"stopSequence": 64, "arrival": {"time": "1694892379"}, "stopId": "91091"}, {"stopSequence": 65, "arrival": {"time": "1694892431"}, "stopId": "91092"}, {"stopSequence": 66, "arrival": {"time": "1694892493"}, "stopId": "35875"}, {"stopSequence": 67, "arrival": {"time": "1694892906"}, "stopId": "35762"}, {"stopSequence": 68, "arrival": {"time": "1694892937"}, "stopId": "35761"}, {"stopSequence": 69, "arrival": {"time": "1694893004"}, "stopId": "35760"}, {"stopSequence": 70, "arrival": {"time": "1694893078"}, "stopId": "35523"}, {"stopSequence": 71, "arrival": {"time": "1694893149"}, "stopId": "34960"}, {"stopSequence": 72, "arrival": {"time": "1694893199"}, "stopId": "34961"}, {"stopSequence": 73, "arrival": {"time": "1694893881"}, "stopId": "34962"}, {"stopSequence": 74, "arrival": {"time": "1694894017"}, "stopId": "34963"}, {"stopSequence": 75, "arrival": {"time": "1694894117"}, "stopId": "34964"}], "vehicle": {"licensePlate": "LRJF78"}, "timestamp": "1694889016"}, "vehicle": {"trip": {"tripId": "18157-701ff27f-2", "startTime": "15:22:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "575", "directionId": 1}, "position": {"latitude": -36.791843, "longitude": -73.070496, "bearing": 154.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889016", "vehicle": {"licensePlate": "LRJF78"}}}, {"id": "6395bab2-04eb-473e-a9ce-cfb2f72887ba", "tripUpdate": {"trip": {"tripId": "18212-701ff27f-2", "startTime": "14:41:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "575", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 52, "arrival": {"time": "1694889016"}, "stopId": "38527"}, {"stopSequence": 53, "arrival": {"time": "1694889109"}, "stopId": "38528"}, {"stopSequence": 54, "arrival": {"time": "1694889234"}, "stopId": "38529"}, {"stopSequence": 55, "arrival": {"time": "1694889442"}, "stopId": "38530"}, {"stopSequence": 56, "arrival": {"time": "1694889455"}, "stopId": "16005209"}, {"stopSequence": 57, "arrival": {"time": "1694889689"}, "stopId": "38531"}, {"stopSequence": 58, "arrival": {"time": "1694889735"}, "stopId": "8921285"}, {"stopSequence": 59, "arrival": {"time": "1694889851"}, "stopId": "38532"}, {"stopSequence": 60, "arrival": {"time": "1694889902"}, "stopId": "38533"}, {"stopSequence": 61, "arrival": {"time": "1694889955"}, "stopId": "38534"}, {"stopSequence": 62, "arrival": {"time": "1694890001"}, "stopId": "38535"}, {"stopSequence": 63, "arrival": {"time": "1694890064"}, "stopId": "38536"}, {"stopSequence": 64, "arrival": {"time": "1694890099"}, "stopId": "4838437"}, {"stopSequence": 65, "arrival": {"time": "1694890152"}, "stopId": "45085"}, {"stopSequence": 66, "arrival": {"time": "1694890229"}, "stopId": "45086"}, {"stopSequence": 67, "arrival": {"time": "1694890279"}, "stopId": "38539"}, {"stopSequence": 68, "arrival": {"time": "1694890343"}, "stopId": "38540"}, {"stopSequence": 69, "arrival": {"time": "1694890420"}, "stopId": "38544"}, {"stopSequence": 70, "arrival": {"time": "1694890488"}, "stopId": "38545"}, {"stopSequence": 71, "arrival": {"time": "1694890579"}, "stopId": "38546"}, {"stopSequence": 72, "arrival": {"time": "1694890642"}, "stopId": "38547"}, {"stopSequence": 73, "arrival": {"time": "1694890701"}, "stopId": "38548"}, {"stopSequence": 74, "arrival": {"time": "1694890768"}, "stopId": "38549"}, {"stopSequence": 75, "arrival": {"time": "1694890826"}, "stopId": "38550"}, {"stopSequence": 76, "arrival": {"time": "1694890925"}, "stopId": "38551"}, {"stopSequence": 77, "arrival": {"time": "1694891015"}, "stopId": "38552"}, {"stopSequence": 78, "arrival": {"time": "1694891100"}, "stopId": "49359"}, {"stopSequence": 79, "arrival": {"time": "1694891157"}, "stopId": "49360"}, {"stopSequence": 80, "arrival": {"time": "1694891281"}, "stopId": "49361"}, {"stopSequence": 81, "arrival": {"time": "1694891311"}, "stopId": "49362"}, {"stopSequence": 82, "arrival": {"time": "1694891364"}, "stopId": "49363"}, {"stopSequence": 83, "arrival": {"time": "1694891420"}, "stopId": "49364"}, {"stopSequence": 84, "arrival": {"time": "1694891473"}, "stopId": "49365"}], "vehicle": {"licensePlate": "RVRL31"}, "timestamp": "1694888988"}, "vehicle": {"trip": {"tripId": "18212-701ff27f-2", "startTime": "14:41:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "575", "directionId": 0}, "position": {"latitude": -36.805775, "longitude": -73.05344, "bearing": 334.0, "odometer": 0.0, "speed": 16.944445}, "timestamp": "1694888988", "vehicle": {"licensePlate": "RVRL31"}}}, {"id": "848a0443-41f7-451b-96cd-e039b18f0a67", "tripUpdate": {"trip": {"tripId": "18279-701ff27f-2", "startTime": "14:45:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "576", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 34, "arrival": {"time": "1694889085"}, "stopId": "91127"}, {"stopSequence": 35, "arrival": {"time": "1694889116"}, "stopId": "35841"}, {"stopSequence": 36, "arrival": {"time": "1694889150"}, "stopId": "35842"}, {"stopSequence": 37, "arrival": {"time": "1694889203"}, "stopId": "35843"}, {"stopSequence": 38, "arrival": {"time": "1694889239"}, "stopId": "35844"}, {"stopSequence": 39, "arrival": {"time": "1694889299"}, "stopId": "91128"}, {"stopSequence": 40, "arrival": {"time": "1694889346"}, "stopId": "35846"}, {"stopSequence": 41, "arrival": {"time": "1694889381"}, "stopId": "35847"}, {"stopSequence": 42, "arrival": {"time": "1694889412"}, "stopId": "35848"}, {"stopSequence": 43, "arrival": {"time": "1694889416"}, "stopId": "35157"}, {"stopSequence": 44, "arrival": {"time": "1694889487"}, "stopId": "35147"}, {"stopSequence": 45, "arrival": {"time": "1694889532"}, "stopId": "35148"}, {"stopSequence": 46, "arrival": {"time": "1694889565"}, "stopId": "91129"}, {"stopSequence": 47, "arrival": {"time": "1694889604"}, "stopId": "91130"}, {"stopSequence": 48, "arrival": {"time": "1694889654"}, "stopId": "91131"}, {"stopSequence": 49, "arrival": {"time": "1694889740"}, "stopId": "35669"}, {"stopSequence": 50, "arrival": {"time": "1694889816"}, "stopId": "35670"}, {"stopSequence": 51, "arrival": {"time": "1694889849"}, "stopId": "35671"}], "vehicle": {"licensePlate": "DRZJ86"}, "timestamp": "1694889014"}, "vehicle": {"trip": {"tripId": "18279-701ff27f-2", "startTime": "14:45:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "576", "directionId": 1}, "position": {"latitude": -36.834816, "longitude": -73.10208, "bearing": 92.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889014", "vehicle": {"licensePlate": "DRZJ86"}}}, {"id": "8b057e28-8f8c-49e2-b598-4b1a88e336fd", "tripUpdate": {"trip": {"tripId": "18281-701ff27f-2", "startTime": "15:15:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "576", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 11, "arrival": {"time": "1694889066"}, "stopId": "37506"}, {"stopSequence": 12, "arrival": {"time": "1694889167"}, "stopId": "37520"}, {"stopSequence": 13, "arrival": {"time": "1694889273"}, "stopId": "37470"}, {"stopSequence": 14, "arrival": {"time": "1694889305"}, "stopId": "37477"}, {"stopSequence": 15, "arrival": {"time": "1694889334"}, "stopId": "91118"}, {"stopSequence": 16, "arrival": {"time": "1694889398"}, "stopId": "35223"}, {"stopSequence": 17, "arrival": {"time": "1694889444"}, "stopId": "39547"}, {"stopSequence": 18, "arrival": {"time": "1694889520"}, "stopId": "35224"}, {"stopSequence": 19, "arrival": {"time": "1694889698"}, "stopId": "35225"}, {"stopSequence": 20, "arrival": {"time": "1694890240"}, "stopId": "35748"}, {"stopSequence": 21, "arrival": {"time": "1694890307"}, "stopId": "35749"}, {"stopSequence": 22, "arrival": {"time": "1694890352"}, "stopId": "35750"}, {"stopSequence": 23, "arrival": {"time": "1694890494"}, "stopId": "35681"}, {"stopSequence": 24, "arrival": {"time": "1694890602"}, "stopId": "35128"}, {"stopSequence": 25, "arrival": {"time": "1694890688"}, "stopId": "91121"}, {"stopSequence": 26, "arrival": {"time": "1694890741"}, "stopId": "91122"}, {"stopSequence": 27, "arrival": {"time": "1694890813"}, "stopId": "35129"}, {"stopSequence": 28, "arrival": {"time": "1694890862"}, "stopId": "91123"}, {"stopSequence": 29, "arrival": {"time": "1694890902"}, "stopId": "91124"}, {"stopSequence": 30, "arrival": {"time": "1694890945"}, "stopId": "35136"}, {"stopSequence": 31, "arrival": {"time": "1694890986"}, "stopId": "91125"}, {"stopSequence": 32, "arrival": {"time": "1694891033"}, "stopId": "35130"}, {"stopSequence": 33, "arrival": {"time": "1694891081"}, "stopId": "91126"}, {"stopSequence": 34, "arrival": {"time": "1694891178"}, "stopId": "91127"}, {"stopSequence": 35, "arrival": {"time": "1694891210"}, "stopId": "35841"}, {"stopSequence": 36, "arrival": {"time": "1694891246"}, "stopId": "35842"}, {"stopSequence": 37, "arrival": {"time": "1694891303"}, "stopId": "35843"}, {"stopSequence": 38, "arrival": {"time": "1694891342"}, "stopId": "35844"}, {"stopSequence": 39, "arrival": {"time": "1694891408"}, "stopId": "91128"}, {"stopSequence": 40, "arrival": {"time": "1694891462"}, "stopId": "35846"}, {"stopSequence": 41, "arrival": {"time": "1694891502"}, "stopId": "35847"}, {"stopSequence": 42, "arrival": {"time": "1694891538"}, "stopId": "35848"}, {"stopSequence": 43, "arrival": {"time": "1694891543"}, "stopId": "35157"}, {"stopSequence": 44, "arrival": {"time": "1694891627"}, "stopId": "35147"}, {"stopSequence": 45, "arrival": {"time": "1694891682"}, "stopId": "35148"}, {"stopSequence": 46, "arrival": {"time": "1694891723"}, "stopId": "91129"}, {"stopSequence": 47, "arrival": {"time": "1694891772"}, "stopId": "91130"}, {"stopSequence": 48, "arrival": {"time": "1694891836"}, "stopId": "91131"}, {"stopSequence": 49, "arrival": {"time": "1694891948"}, "stopId": "35669"}, {"stopSequence": 50, "arrival": {"time": "1694892050"}, "stopId": "35670"}, {"stopSequence": 51, "arrival": {"time": "1694892096"}, "stopId": "35671"}], "vehicle": {"licensePlate": "FGYS60"}, "timestamp": "1694889019"}, "vehicle": {"trip": {"tripId": "18281-701ff27f-2", "startTime": "15:15:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "576", "directionId": 1}, "position": {"latitude": -36.824127, "longitude": -73.04155, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889019", "vehicle": {"licensePlate": "FGYS60"}}}, {"id": "593f908b-c479-49ad-8680-18cf1011e4da", "tripUpdate": {"trip": {"tripId": "18357-701ff27f-2", "startTime": "15:15:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "576", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 8, "arrival": {"time": "1694889011"}, "stopId": "91135"}, {"stopSequence": 9, "arrival": {"time": "1694889042"}, "stopId": "91136"}, {"stopSequence": 10, "arrival": {"time": "1694889084"}, "stopId": "35156"}, {"stopSequence": 11, "arrival": {"time": "1694889158"}, "stopId": "91137"}, {"stopSequence": 12, "arrival": {"time": "1694889195"}, "stopId": "91138"}, {"stopSequence": 13, "arrival": {"time": "1694889245"}, "stopId": "35845"}, {"stopSequence": 14, "arrival": {"time": "1694889291"}, "stopId": "35684"}, {"stopSequence": 15, "arrival": {"time": "1694889332"}, "stopId": "35685"}, {"stopSequence": 16, "arrival": {"time": "1694889376"}, "stopId": "35686"}, {"stopSequence": 17, "arrival": {"time": "1694889433"}, "stopId": "35687"}, {"stopSequence": 18, "arrival": {"time": "1694889472"}, "stopId": "35165"}, {"stopSequence": 19, "arrival": {"time": "1694889661"}, "stopId": "35791"}, {"stopSequence": 20, "arrival": {"time": "1694889707"}, "stopId": "35792"}, {"stopSequence": 21, "arrival": {"time": "1694889762"}, "stopId": "35793"}, {"stopSequence": 22, "arrival": {"time": "1694889875"}, "stopId": "91116"}, {"stopSequence": 23, "arrival": {"time": "1694890337"}, "stopId": "39545"}, {"stopSequence": 24, "arrival": {"time": "1694890504"}, "stopId": "39546"}, {"stopSequence": 25, "arrival": {"time": "1694890641"}, "stopId": "35286"}, {"stopSequence": 26, "arrival": {"time": "1694890669"}, "stopId": "35287"}, {"stopSequence": 27, "arrival": {"time": "1694890740"}, "stopId": "42317"}, {"stopSequence": 28, "arrival": {"time": "1694890816"}, "stopId": "42319"}, {"stopSequence": 29, "arrival": {"time": "1694890884"}, "stopId": "42320"}, {"stopSequence": 30, "arrival": {"time": "1694890944"}, "stopId": "38514"}, {"stopSequence": 31, "arrival": {"time": "1694891002"}, "stopId": "34586"}, {"stopSequence": 32, "arrival": {"time": "1694891034"}, "stopId": "34587"}, {"stopSequence": 33, "arrival": {"time": "1694891060"}, "stopId": "34588"}, {"stopSequence": 34, "arrival": {"time": "1694891111"}, "stopId": "39497"}, {"stopSequence": 35, "arrival": {"time": "1694891148"}, "stopId": "49407"}, {"stopSequence": 36, "arrival": {"time": "1694891211"}, "stopId": "50034"}, {"stopSequence": 37, "arrival": {"time": "1694891254"}, "stopId": "40903"}, {"stopSequence": 38, "arrival": {"time": "1694891311"}, "stopId": "50035"}, {"stopSequence": 39, "arrival": {"time": "1694891368"}, "stopId": "50036"}, {"stopSequence": 40, "arrival": {"time": "1694891483"}, "stopId": "35712"}, {"stopSequence": 41, "arrival": {"time": "1694891595"}, "stopId": "35713"}], "vehicle": {"licensePlate": "JJBB21"}, "timestamp": "1694889006"}, "vehicle": {"trip": {"tripId": "18357-701ff27f-2", "startTime": "15:15:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "576", "directionId": 0}, "position": {"latitude": -36.835205, "longitude": -73.116066, "bearing": 352.0, "odometer": 0.0, "speed": 11.944445}, "timestamp": "1694889006", "vehicle": {"licensePlate": "JJBB21"}}}, {"id": "29a7e504-6b61-436e-b3ad-f2010a4d4e6e", "tripUpdate": {"trip": {"tripId": "18356-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "576", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 27, "arrival": {"time": "1694889024"}, "stopId": "42317"}, {"stopSequence": 28, "arrival": {"time": "1694889103"}, "stopId": "42319"}, {"stopSequence": 29, "arrival": {"time": "1694889172"}, "stopId": "42320"}, {"stopSequence": 30, "arrival": {"time": "1694889231"}, "stopId": "38514"}, {"stopSequence": 31, "arrival": {"time": "1694889288"}, "stopId": "34586"}, {"stopSequence": 32, "arrival": {"time": "1694889318"}, "stopId": "34587"}, {"stopSequence": 33, "arrival": {"time": "1694889343"}, "stopId": "34588"}, {"stopSequence": 34, "arrival": {"time": "1694889391"}, "stopId": "39497"}, {"stopSequence": 35, "arrival": {"time": "1694889425"}, "stopId": "49407"}, {"stopSequence": 36, "arrival": {"time": "1694889483"}, "stopId": "50034"}, {"stopSequence": 37, "arrival": {"time": "1694889522"}, "stopId": "40903"}, {"stopSequence": 38, "arrival": {"time": "1694889572"}, "stopId": "50035"}, {"stopSequence": 39, "arrival": {"time": "1694889622"}, "stopId": "50036"}, {"stopSequence": 40, "arrival": {"time": "1694889720"}, "stopId": "35712"}, {"stopSequence": 41, "arrival": {"time": "1694889811"}, "stopId": "35713"}], "vehicle": {"licensePlate": "KHSX95"}, "timestamp": "1694889004"}, "vehicle": {"trip": {"tripId": "18356-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "576", "directionId": 0}, "position": {"latitude": -36.830536, "longitude": -73.053856, "bearing": 62.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889004", "vehicle": {"licensePlate": "KHSX95"}}}, {"id": "3c578dfa-f49e-47f2-8dc8-3fd99d5286c5", "tripUpdate": {"trip": {"tripId": "18280-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "576", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 20, "arrival": {"time": "1694889532"}, "stopId": "35748"}, {"stopSequence": 21, "arrival": {"time": "1694889601"}, "stopId": "35749"}, {"stopSequence": 22, "arrival": {"time": "1694889646"}, "stopId": "35750"}, {"stopSequence": 23, "arrival": {"time": "1694889787"}, "stopId": "35681"}, {"stopSequence": 24, "arrival": {"time": "1694889893"}, "stopId": "35128"}, {"stopSequence": 25, "arrival": {"time": "1694889975"}, "stopId": "91121"}, {"stopSequence": 26, "arrival": {"time": "1694890026"}, "stopId": "91122"}, {"stopSequence": 27, "arrival": {"time": "1694890094"}, "stopId": "35129"}, {"stopSequence": 28, "arrival": {"time": "1694890140"}, "stopId": "91123"}, {"stopSequence": 29, "arrival": {"time": "1694890177"}, "stopId": "91124"}, {"stopSequence": 30, "arrival": {"time": "1694890218"}, "stopId": "35136"}, {"stopSequence": 31, "arrival": {"time": "1694890255"}, "stopId": "91125"}, {"stopSequence": 32, "arrival": {"time": "1694890298"}, "stopId": "35130"}, {"stopSequence": 33, "arrival": {"time": "1694890343"}, "stopId": "91126"}, {"stopSequence": 34, "arrival": {"time": "1694890431"}, "stopId": "91127"}, {"stopSequence": 35, "arrival": {"time": "1694890460"}, "stopId": "35841"}, {"stopSequence": 36, "arrival": {"time": "1694890492"}, "stopId": "35842"}, {"stopSequence": 37, "arrival": {"time": "1694890543"}, "stopId": "35843"}, {"stopSequence": 38, "arrival": {"time": "1694890577"}, "stopId": "35844"}, {"stopSequence": 39, "arrival": {"time": "1694890635"}, "stopId": "91128"}, {"stopSequence": 40, "arrival": {"time": "1694890682"}, "stopId": "35846"}, {"stopSequence": 41, "arrival": {"time": "1694890717"}, "stopId": "35847"}, {"stopSequence": 42, "arrival": {"time": "1694890748"}, "stopId": "35848"}, {"stopSequence": 43, "arrival": {"time": "1694890753"}, "stopId": "35157"}, {"stopSequence": 44, "arrival": {"time": "1694890825"}, "stopId": "35147"}, {"stopSequence": 45, "arrival": {"time": "1694890872"}, "stopId": "35148"}, {"stopSequence": 46, "arrival": {"time": "1694890907"}, "stopId": "91129"}, {"stopSequence": 47, "arrival": {"time": "1694890948"}, "stopId": "91130"}, {"stopSequence": 48, "arrival": {"time": "1694891002"}, "stopId": "91131"}, {"stopSequence": 49, "arrival": {"time": "1694891095"}, "stopId": "35669"}, {"stopSequence": 50, "arrival": {"time": "1694891180"}, "stopId": "35670"}, {"stopSequence": 51, "arrival": {"time": "1694891217"}, "stopId": "35671"}], "vehicle": {"licensePlate": "WW3020"}, "timestamp": "1694889008"}, "vehicle": {"trip": {"tripId": "18280-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "576", "directionId": 1}, "position": {"latitude": -36.830395, "longitude": -73.067314, "bearing": 312.0, "odometer": 0.0, "speed": 13.611111}, "timestamp": "1694889008", "vehicle": {"licensePlate": "WW3020"}}}, {"id": "3010e5be-f3ee-45b2-8561-697132acade5", "tripUpdate": {"trip": {"tripId": "18566-701ff27f-2", "startTime": "15:17:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "578", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 9, "arrival": {"time": "1694889004"}, "stopId": "35508"}, {"stopSequence": 10, "arrival": {"time": "1694889042"}, "stopId": "35514"}, {"stopSequence": 11, "arrival": {"time": "1694889095"}, "stopId": "35515"}, {"stopSequence": 12, "arrival": {"time": "1694889149"}, "stopId": "35516"}, {"stopSequence": 13, "arrival": {"time": "1694889184"}, "stopId": "35517"}, {"stopSequence": 14, "arrival": {"time": "1694889264"}, "stopId": "35763"}, {"stopSequence": 15, "arrival": {"time": "1694889329"}, "stopId": "35761"}, {"stopSequence": 16, "arrival": {"time": "1694889367"}, "stopId": "35522"}, {"stopSequence": 17, "arrival": {"time": "1694889481"}, "stopId": "35524"}, {"stopSequence": 18, "arrival": {"time": "1694889580"}, "stopId": "35525"}, {"stopSequence": 19, "arrival": {"time": "1694889841"}, "stopId": "35786"}, {"stopSequence": 20, "arrival": {"time": "1694889905"}, "stopId": "35787"}, {"stopSequence": 21, "arrival": {"time": "1694889966"}, "stopId": "35788"}, {"stopSequence": 22, "arrival": {"time": "1694890063"}, "stopId": "35789"}, {"stopSequence": 23, "arrival": {"time": "1694890105"}, "stopId": "35790"}, {"stopSequence": 24, "arrival": {"time": "1694890184"}, "stopId": "35791"}, {"stopSequence": 25, "arrival": {"time": "1694890230"}, "stopId": "35792"}, {"stopSequence": 26, "arrival": {"time": "1694890285"}, "stopId": "35793"}, {"stopSequence": 27, "arrival": {"time": "1694890399"}, "stopId": "91116"}, {"stopSequence": 28, "arrival": {"time": "1694890872"}, "stopId": "35794"}, {"stopSequence": 29, "arrival": {"time": "1694890971"}, "stopId": "35796"}, {"stopSequence": 30, "arrival": {"time": "1694891023"}, "stopId": "35797"}, {"stopSequence": 31, "arrival": {"time": "1694891067"}, "stopId": "35798"}, {"stopSequence": 32, "arrival": {"time": "1694891108"}, "stopId": "35799"}, {"stopSequence": 33, "arrival": {"time": "1694891184"}, "stopId": "35800"}, {"stopSequence": 34, "arrival": {"time": "1694891239"}, "stopId": "35801"}, {"stopSequence": 35, "arrival": {"time": "1694891268"}, "stopId": "35802"}, {"stopSequence": 36, "arrival": {"time": "1694891321"}, "stopId": "35803"}, {"stopSequence": 37, "arrival": {"time": "1694891383"}, "stopId": "38507"}, {"stopSequence": 38, "arrival": {"time": "1694891443"}, "stopId": "34473"}, {"stopSequence": 39, "arrival": {"time": "1694891495"}, "stopId": "38500"}, {"stopSequence": 40, "arrival": {"time": "1694891549"}, "stopId": "35808"}, {"stopSequence": 41, "arrival": {"time": "1694891651"}, "stopId": "35814"}, {"stopSequence": 42, "arrival": {"time": "1694891741"}, "stopId": "35815"}, {"stopSequence": 43, "arrival": {"time": "1694891777"}, "stopId": "35816"}, {"stopSequence": 44, "arrival": {"time": "1694891783"}, "stopId": "35817"}, {"stopSequence": 45, "arrival": {"time": "1694891837"}, "stopId": "35818"}, {"stopSequence": 46, "arrival": {"time": "1694891887"}, "stopId": "35819"}, {"stopSequence": 47, "arrival": {"time": "1694892142"}, "stopId": "35822"}, {"stopSequence": 48, "arrival": {"time": "1694892211"}, "stopId": "35823"}, {"stopSequence": 49, "arrival": {"time": "1694892289"}, "stopId": "35723"}, {"stopSequence": 50, "arrival": {"time": "1694892356"}, "stopId": "35722"}, {"stopSequence": 51, "arrival": {"time": "1694892479"}, "stopId": "35826"}, {"stopSequence": 52, "arrival": {"time": "1694892578"}, "stopId": "35548"}, {"stopSequence": 53, "arrival": {"time": "1694892716"}, "stopId": "35547"}, {"stopSequence": 54, "arrival": {"time": "1694892823"}, "stopId": "35546"}], "vehicle": {"licensePlate": "DWVX27"}, "timestamp": "1694888990"}, "vehicle": {"trip": {"tripId": "18566-701ff27f-2", "startTime": "15:17:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "578", "directionId": 0}, "position": {"latitude": -36.840187, "longitude": -73.14046, "bearing": 352.0, "odometer": 0.0, "speed": 6.388889}, "timestamp": "1694888990", "vehicle": {"licensePlate": "DWVX27"}}}, {"id": "13f06972-230a-4a9c-b482-e9d6571576e3", "tripUpdate": {"trip": {"tripId": "18630-701ff27f-2", "startTime": "14:41:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "578", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 39, "arrival": {"time": "1694889016"}, "stopId": "35417"}, {"stopSequence": 40, "arrival": {"time": "1694889092"}, "stopId": "35755"}, {"stopSequence": 41, "arrival": {"time": "1694889318"}, "stopId": "35756"}, {"stopSequence": 42, "arrival": {"time": "1694889435"}, "stopId": "35757"}, {"stopSequence": 43, "arrival": {"time": "1694889471"}, "stopId": "35758"}, {"stopSequence": 44, "arrival": {"time": "1694889489"}, "stopId": "35759"}, {"stopSequence": 45, "arrival": {"time": "1694889536"}, "stopId": "35760"}, {"stopSequence": 46, "arrival": {"time": "1694889582"}, "stopId": "35761"}, {"stopSequence": 47, "arrival": {"time": "1694889600"}, "stopId": "35762"}, {"stopSequence": 48, "arrival": {"time": "1694889644"}, "stopId": "35763"}, {"stopSequence": 49, "arrival": {"time": "1694889680"}, "stopId": "35764"}, {"stopSequence": 50, "arrival": {"time": "1694889714"}, "stopId": "35517"}, {"stopSequence": 51, "arrival": {"time": "1694889793"}, "stopId": "35767"}, {"stopSequence": 52, "arrival": {"time": "1694889851"}, "stopId": "35398"}, {"stopSequence": 53, "arrival": {"time": "1694890014"}, "stopId": "91060"}, {"stopSequence": 54, "arrival": {"time": "1694890037"}, "stopId": "35769"}], "vehicle": {"licensePlate": "KCDS84"}, "timestamp": "1694889001"}, "vehicle": {"trip": {"tripId": "18630-701ff27f-2", "startTime": "14:41:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "578", "directionId": 1}, "position": {"latitude": -36.837772, "longitude": -73.11437, "bearing": 272.0, "odometer": 0.0, "speed": 15.277779}, "timestamp": "1694889001", "vehicle": {"licensePlate": "KCDS84"}}}, {"id": "a3f155e3-bc6b-4125-9b6b-b47cc3805a4a", "tripUpdate": {"trip": {"tripId": "18632-701ff27f-2", "startTime": "15:21:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "578", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 13, "arrival": {"time": "1694889012"}, "stopId": "35726"}, {"stopSequence": 14, "arrival": {"time": "1694889096"}, "stopId": "35727"}, {"stopSequence": 15, "arrival": {"time": "1694889209"}, "stopId": "35729"}, {"stopSequence": 16, "arrival": {"time": "1694889242"}, "stopId": "35730"}, {"stopSequence": 17, "arrival": {"time": "1694889274"}, "stopId": "35731"}, {"stopSequence": 18, "arrival": {"time": "1694889340"}, "stopId": "35201"}, {"stopSequence": 19, "arrival": {"time": "1694889426"}, "stopId": "35202"}, {"stopSequence": 20, "arrival": {"time": "1694889530"}, "stopId": "90001"}, {"stopSequence": 21, "arrival": {"time": "1694889616"}, "stopId": "39599"}, {"stopSequence": 22, "arrival": {"time": "1694889639"}, "stopId": "39600"}, {"stopSequence": 23, "arrival": {"time": "1694889704"}, "stopId": "37496"}, {"stopSequence": 24, "arrival": {"time": "1694889753"}, "stopId": "45064"}, {"stopSequence": 25, "arrival": {"time": "1694889824"}, "stopId": "37506"}, {"stopSequence": 26, "arrival": {"time": "1694889917"}, "stopId": "37520"}, {"stopSequence": 27, "arrival": {"time": "1694890021"}, "stopId": "37470"}, {"stopSequence": 28, "arrival": {"time": "1694890045"}, "stopId": "37477"}, {"stopSequence": 29, "arrival": {"time": "1694890073"}, "stopId": "91118"}, {"stopSequence": 30, "arrival": {"time": "1694890134"}, "stopId": "35223"}, {"stopSequence": 31, "arrival": {"time": "1694890178"}, "stopId": "39547"}, {"stopSequence": 32, "arrival": {"time": "1694890253"}, "stopId": "35224"}, {"stopSequence": 33, "arrival": {"time": "1694890420"}, "stopId": "35225"}, {"stopSequence": 34, "arrival": {"time": "1694891007"}, "stopId": "35748"}, {"stopSequence": 35, "arrival": {"time": "1694891074"}, "stopId": "35749"}, {"stopSequence": 36, "arrival": {"time": "1694891124"}, "stopId": "35750"}, {"stopSequence": 37, "arrival": {"time": "1694891209"}, "stopId": "35751"}, {"stopSequence": 38, "arrival": {"time": "1694891336"}, "stopId": "35752"}, {"stopSequence": 39, "arrival": {"time": "1694891498"}, "stopId": "35417"}, {"stopSequence": 40, "arrival": {"time": "1694891583"}, "stopId": "35755"}, {"stopSequence": 41, "arrival": {"time": "1694891853"}, "stopId": "35756"}, {"stopSequence": 42, "arrival": {"time": "1694892004"}, "stopId": "35757"}, {"stopSequence": 43, "arrival": {"time": "1694892052"}, "stopId": "35758"}, {"stopSequence": 44, "arrival": {"time": "1694892076"}, "stopId": "35759"}, {"stopSequence": 45, "arrival": {"time": "1694892140"}, "stopId": "35760"}, {"stopSequence": 46, "arrival": {"time": "1694892204"}, "stopId": "35761"}, {"stopSequence": 47, "arrival": {"time": "1694892231"}, "stopId": "35762"}, {"stopSequence": 48, "arrival": {"time": "1694892294"}, "stopId": "35763"}, {"stopSequence": 49, "arrival": {"time": "1694892347"}, "stopId": "35764"}, {"stopSequence": 50, "arrival": {"time": "1694892398"}, "stopId": "35517"}, {"stopSequence": 51, "arrival": {"time": "1694892518"}, "stopId": "35767"}, {"stopSequence": 52, "arrival": {"time": "1694892610"}, "stopId": "35398"}, {"stopSequence": 53, "arrival": {"time": "1694892883"}, "stopId": "91060"}, {"stopSequence": 54, "arrival": {"time": "1694892923"}, "stopId": "35769"}], "vehicle": {"licensePlate": "YU1699"}, "timestamp": "1694888990"}, "vehicle": {"trip": {"tripId": "18632-701ff27f-2", "startTime": "15:21:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "578", "directionId": 1}, "position": {"latitude": -36.821934, "longitude": -73.00816, "bearing": 25.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888990", "vehicle": {"licensePlate": "YU1699"}}}, {"id": "88da9381-1a9a-4940-b480-a7c3ea5748dd", "tripUpdate": {"trip": {"tripId": "18696-701ff27f-2", "startTime": "14:35:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "579", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 45, "arrival": {"time": "1694889099"}, "stopId": "42319"}, {"stopSequence": 46, "arrival": {"time": "1694889178"}, "stopId": "42320"}, {"stopSequence": 47, "arrival": {"time": "1694889227"}, "stopId": "38514"}, {"stopSequence": 48, "arrival": {"time": "1694889284"}, "stopId": "34586"}, {"stopSequence": 49, "arrival": {"time": "1694889314"}, "stopId": "34587"}, {"stopSequence": 50, "arrival": {"time": "1694889339"}, "stopId": "34588"}, {"stopSequence": 51, "arrival": {"time": "1694889390"}, "stopId": "39497"}, {"stopSequence": 52, "arrival": {"time": "1694889422"}, "stopId": "49407"}, {"stopSequence": 53, "arrival": {"time": "1694889479"}, "stopId": "50034"}, {"stopSequence": 54, "arrival": {"time": "1694889519"}, "stopId": "40903"}, {"stopSequence": 55, "arrival": {"time": "1694889553"}, "stopId": "40904"}, {"stopSequence": 56, "arrival": {"time": "1694889597"}, "stopId": "35814"}, {"stopSequence": 57, "arrival": {"time": "1694889671"}, "stopId": "35815"}, {"stopSequence": 58, "arrival": {"time": "1694889697"}, "stopId": "35816"}, {"stopSequence": 59, "arrival": {"time": "1694889709"}, "stopId": "35817"}, {"stopSequence": 60, "arrival": {"time": "1694889743"}, "stopId": "35818"}, {"stopSequence": 61, "arrival": {"time": "1694889781"}, "stopId": "35819"}, {"stopSequence": 62, "arrival": {"time": "1694889965"}, "stopId": "35822"}], "vehicle": {"licensePlate": "DWVX30"}, "timestamp": "1694889028"}, "vehicle": {"trip": {"tripId": "18696-701ff27f-2", "startTime": "14:35:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "579", "directionId": 0}, "position": {"latitude": -36.829987, "longitude": -73.052505, "bearing": 62.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889028", "vehicle": {"licensePlate": "DWVX30"}}}, {"id": "d828d22c-debf-4676-aa4d-0c16e75199cb", "tripUpdate": {"trip": {"tripId": "18693-701ff27f-2", "startTime": "13:50:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "579", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 53, "arrival": {"time": "1694889064"}, "stopId": "50034"}, {"stopSequence": 54, "arrival": {"time": "1694889106"}, "stopId": "40903"}, {"stopSequence": 55, "arrival": {"time": "1694889142"}, "stopId": "40904"}, {"stopSequence": 56, "arrival": {"time": "1694889188"}, "stopId": "35814"}, {"stopSequence": 57, "arrival": {"time": "1694889266"}, "stopId": "35815"}, {"stopSequence": 58, "arrival": {"time": "1694889293"}, "stopId": "35816"}, {"stopSequence": 59, "arrival": {"time": "1694889306"}, "stopId": "35817"}, {"stopSequence": 60, "arrival": {"time": "1694889341"}, "stopId": "35818"}, {"stopSequence": 61, "arrival": {"time": "1694889381"}, "stopId": "35819"}, {"stopSequence": 62, "arrival": {"time": "1694889570"}, "stopId": "35822"}], "vehicle": {"licensePlate": "FSLC62"}, "timestamp": "1694889014"}, "vehicle": {"trip": {"tripId": "18693-701ff27f-2", "startTime": "13:50:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "579", "directionId": 0}, "position": {"latitude": -36.82031, "longitude": -73.03618, "bearing": 157.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889014", "vehicle": {"licensePlate": "FSLC62"}}}, {"id": "8a4473af-2e12-44d7-9c6c-c1028badd0f7", "tripUpdate": {"trip": {"tripId": "18694-701ff27f-2", "startTime": "14:05:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "579", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 62, "arrival": {"time": "1694889059"}, "stopId": "35822"}], "vehicle": {"licensePlate": "HRPG12"}, "timestamp": "1694888966"}, "vehicle": {"trip": {"tripId": "18694-701ff27f-2", "startTime": "14:05:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "579", "directionId": 0}, "position": {"latitude": -36.82037, "longitude": -73.014465, "bearing": 97.0, "odometer": 0.0, "speed": 9.444445}, "timestamp": "1694888966", "vehicle": {"licensePlate": "HRPG12"}}}, {"id": "6571f1a5-9155-4cbe-9926-47f76e98d544", "tripUpdate": {"trip": {"tripId": "18698-701ff27f-2", "startTime": "15:05:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "579", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 30, "arrival": {"time": "1694889021"}, "stopId": "35785"}, {"stopSequence": 31, "arrival": {"time": "1694889269"}, "stopId": "35786"}, {"stopSequence": 32, "arrival": {"time": "1694889336"}, "stopId": "35787"}, {"stopSequence": 33, "arrival": {"time": "1694889400"}, "stopId": "35788"}, {"stopSequence": 34, "arrival": {"time": "1694889499"}, "stopId": "35789"}, {"stopSequence": 35, "arrival": {"time": "1694889542"}, "stopId": "35790"}, {"stopSequence": 36, "arrival": {"time": "1694889622"}, "stopId": "35791"}, {"stopSequence": 37, "arrival": {"time": "1694889668"}, "stopId": "35792"}, {"stopSequence": 38, "arrival": {"time": "1694889724"}, "stopId": "35793"}, {"stopSequence": 39, "arrival": {"time": "1694889836"}, "stopId": "91116"}, {"stopSequence": 40, "arrival": {"time": "1694890299"}, "stopId": "39545"}, {"stopSequence": 41, "arrival": {"time": "1694890465"}, "stopId": "39546"}, {"stopSequence": 42, "arrival": {"time": "1694890602"}, "stopId": "35286"}, {"stopSequence": 43, "arrival": {"time": "1694890630"}, "stopId": "35287"}, {"stopSequence": 44, "arrival": {"time": "1694890700"}, "stopId": "42317"}, {"stopSequence": 45, "arrival": {"time": "1694890777"}, "stopId": "42319"}, {"stopSequence": 46, "arrival": {"time": "1694890854"}, "stopId": "42320"}, {"stopSequence": 47, "arrival": {"time": "1694890904"}, "stopId": "38514"}, {"stopSequence": 48, "arrival": {"time": "1694890962"}, "stopId": "34586"}, {"stopSequence": 49, "arrival": {"time": "1694890994"}, "stopId": "34587"}, {"stopSequence": 50, "arrival": {"time": "1694891020"}, "stopId": "34588"}, {"stopSequence": 51, "arrival": {"time": "1694891073"}, "stopId": "39497"}, {"stopSequence": 52, "arrival": {"time": "1694891108"}, "stopId": "49407"}, {"stopSequence": 53, "arrival": {"time": "1694891171"}, "stopId": "50034"}, {"stopSequence": 54, "arrival": {"time": "1694891214"}, "stopId": "40903"}, {"stopSequence": 55, "arrival": {"time": "1694891252"}, "stopId": "40904"}, {"stopSequence": 56, "arrival": {"time": "1694891302"}, "stopId": "35814"}, {"stopSequence": 57, "arrival": {"time": "1694891388"}, "stopId": "35815"}, {"stopSequence": 58, "arrival": {"time": "1694891419"}, "stopId": "35816"}, {"stopSequence": 59, "arrival": {"time": "1694891433"}, "stopId": "35817"}, {"stopSequence": 60, "arrival": {"time": "1694891474"}, "stopId": "35818"}, {"stopSequence": 61, "arrival": {"time": "1694891520"}, "stopId": "35819"}, {"stopSequence": 62, "arrival": {"time": "1694891751"}, "stopId": "35822"}], "vehicle": {"licensePlate": "HYVP99"}, "timestamp": "1694888969"}, "vehicle": {"trip": {"tripId": "18698-701ff27f-2", "startTime": "15:05:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "579", "directionId": 0}, "position": {"latitude": -36.843647, "longitude": -73.12977, "bearing": 11.0, "odometer": 0.0, "speed": 15.0}, "timestamp": "1694888969", "vehicle": {"licensePlate": "HYVP99"}}}, {"id": "b6c049fe-f56f-4da6-b691-4b872cb5fa63", "tripUpdate": {"trip": {"tripId": "18700-701ff27f-2", "startTime": "15:35:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "579", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 1, "arrival": {"time": "1694889247"}, "stopId": "35260"}, {"stopSequence": 2, "arrival": {"time": "1694889307"}, "stopId": "35261"}, {"stopSequence": 3, "arrival": {"time": "1694889353"}, "stopId": "13025566"}, {"stopSequence": 4, "arrival": {"time": "1694889384"}, "stopId": "35262"}, {"stopSequence": 5, "arrival": {"time": "1694889407"}, "stopId": "35263"}, {"stopSequence": 6, "arrival": {"time": "1694889442"}, "stopId": "13025567"}, {"stopSequence": 7, "arrival": {"time": "1694889563"}, "stopId": "35265"}, {"stopSequence": 8, "arrival": {"time": "1694889612"}, "stopId": "35266"}, {"stopSequence": 9, "arrival": {"time": "1694889627"}, "stopId": "50006"}, {"stopSequence": 10, "arrival": {"time": "1694889642"}, "stopId": "35267"}, {"stopSequence": 11, "arrival": {"time": "1694889645"}, "stopId": "50005"}, {"stopSequence": 12, "arrival": {"time": "1694889754"}, "stopId": "16263780"}, {"stopSequence": 13, "arrival": {"time": "1694889814"}, "stopId": "16263781"}, {"stopSequence": 14, "arrival": {"time": "1694889897"}, "stopId": "16263782"}, {"stopSequence": 15, "arrival": {"time": "1694889944"}, "stopId": "16263783"}, {"stopSequence": 16, "arrival": {"time": "1694889999"}, "stopId": "16263784"}, {"stopSequence": 17, "arrival": {"time": "1694890064"}, "stopId": "16258263"}, {"stopSequence": 18, "arrival": {"time": "1694890112"}, "stopId": "16258262"}, {"stopSequence": 19, "arrival": {"time": "1694890129"}, "stopId": "16258261"}, {"stopSequence": 20, "arrival": {"time": "1694890162"}, "stopId": "16258260"}, {"stopSequence": 21, "arrival": {"time": "1694890225"}, "stopId": "15360397"}, {"stopSequence": 22, "arrival": {"time": "1694890271"}, "stopId": "15360410"}, {"stopSequence": 23, "arrival": {"time": "1694890334"}, "stopId": "35268"}, {"stopSequence": 24, "arrival": {"time": "1694890366"}, "stopId": "35269"}, {"stopSequence": 25, "arrival": {"time": "1694890412"}, "stopId": "35270"}, {"stopSequence": 26, "arrival": {"time": "1694890587"}, "stopId": "35271"}, {"stopSequence": 27, "arrival": {"time": "1694890912"}, "stopId": "35272"}, {"stopSequence": 28, "arrival": {"time": "1694891091"}, "stopId": "35273"}, {"stopSequence": 29, "arrival": {"time": "1694891139"}, "stopId": "35274"}, {"stopSequence": 30, "arrival": {"time": "1694891252"}, "stopId": "35785"}, {"stopSequence": 31, "arrival": {"time": "1694891527"}, "stopId": "35786"}, {"stopSequence": 32, "arrival": {"time": "1694891606"}, "stopId": "35787"}, {"stopSequence": 33, "arrival": {"time": "1694891682"}, "stopId": "35788"}, {"stopSequence": 34, "arrival": {"time": "1694891806"}, "stopId": "35789"}, {"stopSequence": 35, "arrival": {"time": "1694891862"}, "stopId": "35790"}, {"stopSequence": 36, "arrival": {"time": "1694891968"}, "stopId": "35791"}, {"stopSequence": 37, "arrival": {"time": "1694892031"}, "stopId": "35792"}, {"stopSequence": 38, "arrival": {"time": "1694892108"}, "stopId": "35793"}, {"stopSequence": 39, "arrival": {"time": "1694892269"}, "stopId": "91116"}, {"stopSequence": 40, "arrival": {"time": "1694893018"}, "stopId": "39545"}, {"stopSequence": 41, "arrival": {"time": "1694893324"}, "stopId": "39546"}, {"stopSequence": 42, "arrival": {"time": "1694893594"}, "stopId": "35286"}, {"stopSequence": 43, "arrival": {"time": "1694893650"}, "stopId": "35287"}, {"stopSequence": 44, "arrival": {"time": "1694893796"}, "stopId": "42317"}, {"stopSequence": 45, "arrival": {"time": "1694893961"}, "stopId": "42319"}, {"stopSequence": 46, "arrival": {"time": "1694894130"}, "stopId": "42320"}, {"stopSequence": 47, "arrival": {"time": "1694894243"}, "stopId": "38514"}, {"stopSequence": 48, "arrival": {"time": "1694894379"}, "stopId": "34586"}, {"stopSequence": 49, "arrival": {"time": "1694894452"}, "stopId": "34587"}, {"stopSequence": 50, "arrival": {"time": "1694894515"}, "stopId": "34588"}, {"stopSequence": 51, "arrival": {"time": "1694894646"}, "stopId": "39497"}, {"stopSequence": 52, "arrival": {"time": "1694894731"}, "stopId": "49407"}, {"stopSequence": 53, "arrival": {"time": "1694894890"}, "stopId": "50034"}, {"stopSequence": 54, "arrival": {"time": "1694895002"}, "stopId": "40903"}, {"stopSequence": 55, "arrival": {"time": "1694895102"}, "stopId": "40904"}, {"stopSequence": 56, "arrival": {"time": "1694895236"}, "stopId": "35814"}, {"stopSequence": 57, "arrival": {"time": "1694895474"}, "stopId": "35815"}, {"stopSequence": 58, "arrival": {"time": "1694895560"}, "stopId": "35816"}, {"stopSequence": 59, "arrival": {"time": "1694895602"}, "stopId": "35817"}, {"stopSequence": 60, "arrival": {"time": "1694895718"}, "stopId": "35818"}, {"stopSequence": 61, "arrival": {"time": "1694895854"}, "stopId": "35819"}, {"stopSequence": 62, "arrival": {"time": "1694896580"}, "stopId": "35822"}], "vehicle": {"licensePlate": "YF2399"}, "timestamp": "1694888984"}, "vehicle": {"trip": {"tripId": "18700-701ff27f-2", "startTime": "15:35:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "579", "directionId": 0}, "position": {"latitude": -36.885414, "longitude": -73.1382, "bearing": 189.0, "odometer": 0.0, "speed": 3.3333335}, "timestamp": "1694888984", "vehicle": {"licensePlate": "YF2399"}}}, {"id": "e448e01f-907e-45c2-b402-828e8257ab33", "tripUpdate": {"trip": {"tripId": "18888-701ff27f-2", "startTime": "15:02:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "580", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 22, "arrival": {"time": "1694889054"}, "stopId": "35791"}, {"stopSequence": 23, "arrival": {"time": "1694889104"}, "stopId": "35792"}, {"stopSequence": 24, "arrival": {"time": "1694889163"}, "stopId": "35793"}, {"stopSequence": 25, "arrival": {"time": "1694889282"}, "stopId": "91116"}, {"stopSequence": 26, "arrival": {"time": "1694889754"}, "stopId": "39545"}, {"stopSequence": 27, "arrival": {"time": "1694889918"}, "stopId": "39546"}, {"stopSequence": 28, "arrival": {"time": "1694890052"}, "stopId": "35286"}, {"stopSequence": 29, "arrival": {"time": "1694890078"}, "stopId": "35287"}, {"stopSequence": 30, "arrival": {"time": "1694890146"}, "stopId": "42317"}, {"stopSequence": 31, "arrival": {"time": "1694890219"}, "stopId": "42319"}, {"stopSequence": 32, "arrival": {"time": "1694890291"}, "stopId": "42320"}, {"stopSequence": 33, "arrival": {"time": "1694890337"}, "stopId": "38514"}, {"stopSequence": 34, "arrival": {"time": "1694890392"}, "stopId": "34586"}, {"stopSequence": 35, "arrival": {"time": "1694890421"}, "stopId": "34587"}, {"stopSequence": 36, "arrival": {"time": "1694890445"}, "stopId": "34588"}, {"stopSequence": 37, "arrival": {"time": "1694890492"}, "stopId": "39497"}, {"stopSequence": 38, "arrival": {"time": "1694890526"}, "stopId": "49407"}, {"stopSequence": 39, "arrival": {"time": "1694890583"}, "stopId": "50034"}, {"stopSequence": 40, "arrival": {"time": "1694890623"}, "stopId": "40903"}, {"stopSequence": 41, "arrival": {"time": "1694890657"}, "stopId": "40904"}, {"stopSequence": 42, "arrival": {"time": "1694890702"}, "stopId": "35814"}, {"stopSequence": 43, "arrival": {"time": "1694890780"}, "stopId": "35815"}, {"stopSequence": 44, "arrival": {"time": "1694890807"}, "stopId": "35816"}, {"stopSequence": 45, "arrival": {"time": "1694890820"}, "stopId": "35817"}, {"stopSequence": 46, "arrival": {"time": "1694890856"}, "stopId": "35818"}, {"stopSequence": 47, "arrival": {"time": "1694890896"}, "stopId": "35819"}, {"stopSequence": 48, "arrival": {"time": "1694891099"}, "stopId": "35822"}, {"stopSequence": 49, "arrival": {"time": "1694891144"}, "stopId": "35823"}, {"stopSequence": 50, "arrival": {"time": "1694891214"}, "stopId": "35723"}, {"stopSequence": 51, "arrival": {"time": "1694891265"}, "stopId": "35722"}, {"stopSequence": 52, "arrival": {"time": "1694891360"}, "stopId": "35826"}, {"stopSequence": 53, "arrival": {"time": "1694891435"}, "stopId": "35548"}, {"stopSequence": 54, "arrival": {"time": "1694891538"}, "stopId": "35547"}, {"stopSequence": 55, "arrival": {"time": "1694891618"}, "stopId": "35546"}, {"stopSequence": 56, "arrival": {"time": "1694891699"}, "stopId": "35553"}], "vehicle": {"licensePlate": "BDZC45"}, "timestamp": "1694888973"}, "vehicle": {"trip": {"tripId": "18888-701ff27f-2", "startTime": "15:02:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "580", "directionId": 0}, "position": {"latitude": -36.838604, "longitude": -73.10159, "bearing": 134.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888973", "vehicle": {"licensePlate": "BDZC45"}}}, {"id": "beaf9df0-5a46-4e9f-bbc1-79ca258b235f", "tripUpdate": {"trip": {"tripId": "19178-701ff27f-2", "startTime": "13:42:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "582", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 27, "arrival": {"time": "1694889271"}, "stopId": "35841"}, {"stopSequence": 28, "arrival": {"time": "1694889309"}, "stopId": "35842"}, {"stopSequence": 29, "arrival": {"time": "1694889358"}, "stopId": "35843"}, {"stopSequence": 30, "arrival": {"time": "1694889389"}, "stopId": "35844"}, {"stopSequence": 31, "arrival": {"time": "1694889453"}, "stopId": "91128"}, {"stopSequence": 32, "arrival": {"time": "1694889493"}, "stopId": "35846"}, {"stopSequence": 33, "arrival": {"time": "1694889556"}, "stopId": "35848"}, {"stopSequence": 34, "arrival": {"time": "1694889648"}, "stopId": "35849"}, {"stopSequence": 35, "arrival": {"time": "1694889679"}, "stopId": "35850"}, {"stopSequence": 36, "arrival": {"time": "1694889702"}, "stopId": "35851"}, {"stopSequence": 37, "arrival": {"time": "1694889722"}, "stopId": "35852"}, {"stopSequence": 38, "arrival": {"time": "1694889748"}, "stopId": "35853"}, {"stopSequence": 39, "arrival": {"time": "1694889783"}, "stopId": "35854"}, {"stopSequence": 40, "arrival": {"time": "1694889814"}, "stopId": "35618"}, {"stopSequence": 41, "arrival": {"time": "1694889859"}, "stopId": "35855"}, {"stopSequence": 42, "arrival": {"time": "1694889936"}, "stopId": "35856"}, {"stopSequence": 43, "arrival": {"time": "1694890004"}, "stopId": "35668"}, {"stopSequence": 44, "arrival": {"time": "1694890037"}, "stopId": "35858"}, {"stopSequence": 45, "arrival": {"time": "1694890082"}, "stopId": "35859"}, {"stopSequence": 46, "arrival": {"time": "1694890103"}, "stopId": "35665"}, {"stopSequence": 47, "arrival": {"time": "1694890133"}, "stopId": "35861"}, {"stopSequence": 48, "arrival": {"time": "1694890391"}, "stopId": "35756"}, {"stopSequence": 49, "arrival": {"time": "1694890507"}, "stopId": "35757"}, {"stopSequence": 50, "arrival": {"time": "1694890553"}, "stopId": "35758"}, {"stopSequence": 51, "arrival": {"time": "1694890562"}, "stopId": "35759"}, {"stopSequence": 52, "arrival": {"time": "1694890605"}, "stopId": "35760"}, {"stopSequence": 53, "arrival": {"time": "1694890667"}, "stopId": "35762"}, {"stopSequence": 54, "arrival": {"time": "1694890752"}, "stopId": "35764"}, {"stopSequence": 55, "arrival": {"time": "1694890767"}, "stopId": "35518"}, {"stopSequence": 56, "arrival": {"time": "1694890816"}, "stopId": "35766"}, {"stopSequence": 57, "arrival": {"time": "1694890878"}, "stopId": "35767"}, {"stopSequence": 58, "arrival": {"time": "1694890941"}, "stopId": "35398"}, {"stopSequence": 59, "arrival": {"time": "1694890999"}, "stopId": "91055"}, {"stopSequence": 60, "arrival": {"time": "1694891071"}, "stopId": "91056"}, {"stopSequence": 61, "arrival": {"time": "1694891136"}, "stopId": "91057"}, {"stopSequence": 62, "arrival": {"time": "1694891170"}, "stopId": "91058"}, {"stopSequence": 63, "arrival": {"time": "1694891232"}, "stopId": "91059"}, {"stopSequence": 64, "arrival": {"time": "1694891283"}, "stopId": "91060"}, {"stopSequence": 65, "arrival": {"time": "1694891304"}, "stopId": "35769"}, {"stopSequence": 66, "arrival": {"time": "1694891332"}, "stopId": "91061"}, {"stopSequence": 67, "arrival": {"time": "1694891452"}, "stopId": "91062"}, {"stopSequence": 68, "arrival": {"time": "1694891514"}, "stopId": "91037"}, {"stopSequence": 69, "arrival": {"time": "1694891552"}, "stopId": "35483"}, {"stopSequence": 70, "arrival": {"time": "1694891586"}, "stopId": "35484"}, {"stopSequence": 71, "arrival": {"time": "1694891663"}, "stopId": "7175655"}, {"stopSequence": 72, "arrival": {"time": "1694891704"}, "stopId": "35639"}, {"stopSequence": 73, "arrival": {"time": "1694891841"}, "stopId": "35779"}, {"stopSequence": 74, "arrival": {"time": "1694891853"}, "stopId": "91084"}, {"stopSequence": 75, "arrival": {"time": "1694891891"}, "stopId": "35780"}, {"stopSequence": 76, "arrival": {"time": "1694891932"}, "stopId": "91085"}], "vehicle": {"licensePlate": "FBLB69"}, "timestamp": "1694888868"}, "vehicle": {"trip": {"tripId": "19178-701ff27f-2", "startTime": "13:42:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "582", "directionId": 1}, "position": {"latitude": -36.81917, "longitude": -73.087364, "bearing": 218.0, "odometer": 0.0, "speed": 36.2}, "timestamp": "1694888868", "vehicle": {"licensePlate": "FBLB69"}}}, {"id": "cb631e0c-b51f-4dae-9a6f-4d2eaac45851", "tripUpdate": {"trip": {"tripId": "19124-701ff27f-2", "startTime": "14:40:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "582", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 60, "arrival": {"time": "1694888991"}, "stopId": "2-Jan"}, {"stopSequence": 61, "arrival": {"time": "1694889022"}, "stopId": "42460"}, {"stopSequence": 62, "arrival": {"time": "1694889062"}, "stopId": "35690"}, {"stopSequence": 63, "arrival": {"time": "1694889168"}, "stopId": "35700"}, {"stopSequence": 64, "arrival": {"time": "1694889264"}, "stopId": "35703"}, {"stopSequence": 65, "arrival": {"time": "1694889288"}, "stopId": "35704"}, {"stopSequence": 66, "arrival": {"time": "1694889298"}, "stopId": "35705"}, {"stopSequence": 67, "arrival": {"time": "1694889321"}, "stopId": "35706"}, {"stopSequence": 68, "arrival": {"time": "1694889376"}, "stopId": "35707"}, {"stopSequence": 69, "arrival": {"time": "1694889401"}, "stopId": "35708"}, {"stopSequence": 70, "arrival": {"time": "1694889419"}, "stopId": "35709"}, {"stopSequence": 71, "arrival": {"time": "1694889496"}, "stopId": "38507"}, {"stopSequence": 72, "arrival": {"time": "1694889546"}, "stopId": "34473"}, {"stopSequence": 73, "arrival": {"time": "1694889589"}, "stopId": "38500"}, {"stopSequence": 74, "arrival": {"time": "1694889626"}, "stopId": "35808"}, {"stopSequence": 75, "arrival": {"time": "1694889690"}, "stopId": "35710"}, {"stopSequence": 76, "arrival": {"time": "1694889734"}, "stopId": "50036"}, {"stopSequence": 77, "arrival": {"time": "1694889830"}, "stopId": "35712"}, {"stopSequence": 78, "arrival": {"time": "1694889922"}, "stopId": "35713"}], "vehicle": {"licensePlate": "FHTY14"}, "timestamp": "1694888900"}, "vehicle": {"trip": {"tripId": "19124-701ff27f-2", "startTime": "14:40:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "582", "directionId": 0}, "position": {"latitude": -36.822823, "longitude": -73.06388, "bearing": 178.0, "odometer": 0.0, "speed": 1.6}, "timestamp": "1694888900", "vehicle": {"licensePlate": "FHTY14"}}}, {"id": "a2cd3a54-e1f8-4d41-908f-55e0167267f6", "tripUpdate": {"trip": {"tripId": "19176-701ff27f-2", "startTime": "13:02:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "582", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 69, "arrival": {"time": "1694888907"}, "stopId": "35483"}, {"stopSequence": 70, "arrival": {"time": "1694888936"}, "stopId": "35484"}, {"stopSequence": 71, "arrival": {"time": "1694889001"}, "stopId": "7175655"}, {"stopSequence": 72, "arrival": {"time": "1694889035"}, "stopId": "35639"}, {"stopSequence": 73, "arrival": {"time": "1694889146"}, "stopId": "35779"}, {"stopSequence": 74, "arrival": {"time": "1694889155"}, "stopId": "91084"}, {"stopSequence": 75, "arrival": {"time": "1694889184"}, "stopId": "35780"}, {"stopSequence": 76, "arrival": {"time": "1694889216"}, "stopId": "91085"}], "vehicle": {"licensePlate": "LYYL36"}, "timestamp": "1694888888"}, "vehicle": {"trip": {"tripId": "19176-701ff27f-2", "startTime": "13:02:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "582", "directionId": 1}, "position": {"latitude": -36.85138, "longitude": -73.14554, "bearing": 193.0, "odometer": 0.0, "speed": 20.0}, "timestamp": "1694888888", "vehicle": {"licensePlate": "LYYL36"}}}, {"id": "b936d236-bf72-48f8-91bd-9640718c51b2", "tripUpdate": {"trip": {"tripId": "19179-701ff27f-2", "startTime": "14:02:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "582", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 15, "arrival": {"time": "1694888919"}, "stopId": "35745"}, {"stopSequence": 16, "arrival": {"time": "1694888947"}, "stopId": "15879953"}, {"stopSequence": 17, "arrival": {"time": "1694888970"}, "stopId": "35746"}, {"stopSequence": 18, "arrival": {"time": "1694888997"}, "stopId": "39634"}, {"stopSequence": 19, "arrival": {"time": "1694889024"}, "stopId": "39635"}, {"stopSequence": 20, "arrival": {"time": "1694889072"}, "stopId": "39636"}, {"stopSequence": 21, "arrival": {"time": "1694889127"}, "stopId": "49503"}, {"stopSequence": 22, "arrival": {"time": "1694889256"}, "stopId": "39637"}, {"stopSequence": 23, "arrival": {"time": "1694889307"}, "stopId": "49317"}, {"stopSequence": 24, "arrival": {"time": "1694889338"}, "stopId": "49318"}, {"stopSequence": 25, "arrival": {"time": "1694889404"}, "stopId": "49319"}, {"stopSequence": 26, "arrival": {"time": "1694889467"}, "stopId": "39641"}, {"stopSequence": 27, "arrival": {"time": "1694890299"}, "stopId": "35841"}, {"stopSequence": 28, "arrival": {"time": "1694890336"}, "stopId": "35842"}, {"stopSequence": 29, "arrival": {"time": "1694890385"}, "stopId": "35843"}, {"stopSequence": 30, "arrival": {"time": "1694890416"}, "stopId": "35844"}, {"stopSequence": 31, "arrival": {"time": "1694890480"}, "stopId": "91128"}, {"stopSequence": 32, "arrival": {"time": "1694890521"}, "stopId": "35846"}, {"stopSequence": 33, "arrival": {"time": "1694890587"}, "stopId": "35848"}, {"stopSequence": 34, "arrival": {"time": "1694890683"}, "stopId": "35849"}, {"stopSequence": 35, "arrival": {"time": "1694890716"}, "stopId": "35850"}, {"stopSequence": 36, "arrival": {"time": "1694890740"}, "stopId": "35851"}, {"stopSequence": 37, "arrival": {"time": "1694890762"}, "stopId": "35852"}, {"stopSequence": 38, "arrival": {"time": "1694890790"}, "stopId": "35853"}, {"stopSequence": 39, "arrival": {"time": "1694890828"}, "stopId": "35854"}, {"stopSequence": 40, "arrival": {"time": "1694890862"}, "stopId": "35618"}, {"stopSequence": 41, "arrival": {"time": "1694890911"}, "stopId": "35855"}, {"stopSequence": 42, "arrival": {"time": "1694890997"}, "stopId": "35856"}, {"stopSequence": 43, "arrival": {"time": "1694891074"}, "stopId": "35668"}, {"stopSequence": 44, "arrival": {"time": "1694891110"}, "stopId": "35858"}, {"stopSequence": 45, "arrival": {"time": "1694891163"}, "stopId": "35859"}, {"stopSequence": 46, "arrival": {"time": "1694891187"}, "stopId": "35665"}, {"stopSequence": 47, "arrival": {"time": "1694891222"}, "stopId": "35861"}, {"stopSequence": 48, "arrival": {"time": "1694891531"}, "stopId": "35756"}, {"stopSequence": 49, "arrival": {"time": "1694891674"}, "stopId": "35757"}, {"stopSequence": 50, "arrival": {"time": "1694891732"}, "stopId": "35758"}, {"stopSequence": 51, "arrival": {"time": "1694891743"}, "stopId": "35759"}, {"stopSequence": 52, "arrival": {"time": "1694891798"}, "stopId": "35760"}, {"stopSequence": 53, "arrival": {"time": "1694891878"}, "stopId": "35762"}, {"stopSequence": 54, "arrival": {"time": "1694891988"}, "stopId": "35764"}, {"stopSequence": 55, "arrival": {"time": "1694892007"}, "stopId": "35518"}, {"stopSequence": 56, "arrival": {"time": "1694892073"}, "stopId": "35766"}, {"stopSequence": 57, "arrival": {"time": "1694892154"}, "stopId": "35767"}, {"stopSequence": 58, "arrival": {"time": "1694892239"}, "stopId": "35398"}, {"stopSequence": 59, "arrival": {"time": "1694892318"}, "stopId": "91055"}, {"stopSequence": 60, "arrival": {"time": "1694892418"}, "stopId": "91056"}, {"stopSequence": 61, "arrival": {"time": "1694892508"}, "stopId": "91057"}, {"stopSequence": 62, "arrival": {"time": "1694892556"}, "stopId": "91058"}, {"stopSequence": 63, "arrival": {"time": "1694892644"}, "stopId": "91059"}, {"stopSequence": 64, "arrival": {"time": "1694892717"}, "stopId": "91060"}, {"stopSequence": 65, "arrival": {"time": "1694892747"}, "stopId": "35769"}, {"stopSequence": 66, "arrival": {"time": "1694892788"}, "stopId": "91061"}, {"stopSequence": 67, "arrival": {"time": "1694892963"}, "stopId": "91062"}, {"stopSequence": 68, "arrival": {"time": "1694893055"}, "stopId": "91037"}, {"stopSequence": 69, "arrival": {"time": "1694893112"}, "stopId": "35483"}, {"stopSequence": 70, "arrival": {"time": "1694893163"}, "stopId": "35484"}, {"stopSequence": 71, "arrival": {"time": "1694893280"}, "stopId": "7175655"}, {"stopSequence": 72, "arrival": {"time": "1694893343"}, "stopId": "35639"}, {"stopSequence": 73, "arrival": {"time": "1694893558"}, "stopId": "35779"}, {"stopSequence": 74, "arrival": {"time": "1694893576"}, "stopId": "91084"}, {"stopSequence": 75, "arrival": {"time": "1694893636"}, "stopId": "35780"}, {"stopSequence": 76, "arrival": {"time": "1694893703"}, "stopId": "91085"}], "vehicle": {"licensePlate": "ZR7471"}, "timestamp": "1694888871"}, "vehicle": {"trip": {"tripId": "19179-701ff27f-2", "startTime": "14:02:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "582", "directionId": 1}, "position": {"latitude": -36.824745, "longitude": -73.05552, "bearing": 243.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888871", "vehicle": {"licensePlate": "ZR7471"}}}, {"id": "4d3288c0-a4e7-4c73-92cc-aa39ab5179b1", "tripUpdate": {"trip": {"tripId": "19125-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "582", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 22, "arrival": {"time": "1694888967"}, "stopId": "35763"}, {"stopSequence": 23, "arrival": {"time": "1694889034"}, "stopId": "35761"}, {"stopSequence": 24, "arrival": {"time": "1694889120"}, "stopId": "35523"}, {"stopSequence": 25, "arrival": {"time": "1694889192"}, "stopId": "35524"}, {"stopSequence": 26, "arrival": {"time": "1694889295"}, "stopId": "35525"}, {"stopSequence": 27, "arrival": {"time": "1694889537"}, "stopId": "35418"}, {"stopSequence": 28, "arrival": {"time": "1694889587"}, "stopId": "91051"}, {"stopSequence": 29, "arrival": {"time": "1694889623"}, "stopId": "35666"}, {"stopSequence": 30, "arrival": {"time": "1694889667"}, "stopId": "35667"}, {"stopSequence": 31, "arrival": {"time": "1694889688"}, "stopId": "35668"}, {"stopSequence": 32, "arrival": {"time": "1694889743"}, "stopId": "35669"}, {"stopSequence": 33, "arrival": {"time": "1694889805"}, "stopId": "35670"}, {"stopSequence": 34, "arrival": {"time": "1694889843"}, "stopId": "35671"}, {"stopSequence": 35, "arrival": {"time": "1694889877"}, "stopId": "91050"}, {"stopSequence": 36, "arrival": {"time": "1694889919"}, "stopId": "35672"}, {"stopSequence": 37, "arrival": {"time": "1694889959"}, "stopId": "35673"}, {"stopSequence": 38, "arrival": {"time": "1694889985"}, "stopId": "35674"}, {"stopSequence": 39, "arrival": {"time": "1694890005"}, "stopId": "35675"}, {"stopSequence": 40, "arrival": {"time": "1694890022"}, "stopId": "35676"}, {"stopSequence": 41, "arrival": {"time": "1694890054"}, "stopId": "35677"}, {"stopSequence": 42, "arrival": {"time": "1694890134"}, "stopId": "35678"}, {"stopSequence": 43, "arrival": {"time": "1694890185"}, "stopId": "91137"}, {"stopSequence": 44, "arrival": {"time": "1694890220"}, "stopId": "91138"}, {"stopSequence": 45, "arrival": {"time": "1694890261"}, "stopId": "35845"}, {"stopSequence": 46, "arrival": {"time": "1694890310"}, "stopId": "35684"}, {"stopSequence": 47, "arrival": {"time": "1694890350"}, "stopId": "35685"}, {"stopSequence": 48, "arrival": {"time": "1694890393"}, "stopId": "35686"}, {"stopSequence": 49, "arrival": {"time": "1694890448"}, "stopId": "35687"}, {"stopSequence": 50, "arrival": {"time": "1694890513"}, "stopId": "91052"}, {"stopSequence": 51, "arrival": {"time": "1694890554"}, "stopId": "91053"}, {"stopSequence": 52, "arrival": {"time": "1694890618"}, "stopId": "91054"}, {"stopSequence": 53, "arrival": {"time": "1694891343"}, "stopId": "35688"}, {"stopSequence": 54, "arrival": {"time": "1694891474"}, "stopId": "35691"}, {"stopSequence": 55, "arrival": {"time": "1694891593"}, "stopId": "35693"}, {"stopSequence": 56, "arrival": {"time": "1694891660"}, "stopId": "35694"}, {"stopSequence": 57, "arrival": {"time": "1694891710"}, "stopId": "35695"}, {"stopSequence": 58, "arrival": {"time": "1694891769"}, "stopId": "35696"}, {"stopSequence": 59, "arrival": {"time": "1694891993"}, "stopId": "35697"}, {"stopSequence": 60, "arrival": {"time": "1694892125"}, "stopId": "2-Jan"}, {"stopSequence": 61, "arrival": {"time": "1694892166"}, "stopId": "42460"}, {"stopSequence": 62, "arrival": {"time": "1694892221"}, "stopId": "35690"}, {"stopSequence": 63, "arrival": {"time": "1694892368"}, "stopId": "35700"}, {"stopSequence": 64, "arrival": {"time": "1694892511"}, "stopId": "35703"}, {"stopSequence": 65, "arrival": {"time": "1694892547"}, "stopId": "35704"}, {"stopSequence": 66, "arrival": {"time": "1694892564"}, "stopId": "35705"}, {"stopSequence": 67, "arrival": {"time": "1694892599"}, "stopId": "35706"}, {"stopSequence": 68, "arrival": {"time": "1694892687"}, "stopId": "35707"}, {"stopSequence": 69, "arrival": {"time": "1694892728"}, "stopId": "35708"}, {"stopSequence": 70, "arrival": {"time": "1694892758"}, "stopId": "35709"}, {"stopSequence": 71, "arrival": {"time": "1694892887"}, "stopId": "38507"}, {"stopSequence": 72, "arrival": {"time": "1694892974"}, "stopId": "34473"}, {"stopSequence": 73, "arrival": {"time": "1694893052"}, "stopId": "38500"}, {"stopSequence": 74, "arrival": {"time": "1694893119"}, "stopId": "35808"}, {"stopSequence": 75, "arrival": {"time": "1694893241"}, "stopId": "35710"}, {"stopSequence": 76, "arrival": {"time": "1694893327"}, "stopId": "50036"}, {"stopSequence": 77, "arrival": {"time": "1694893521"}, "stopId": "35712"}, {"stopSequence": 78, "arrival": {"time": "1694893717"}, "stopId": "35713"}], "vehicle": {"licensePlate": "ZT3909"}, "timestamp": "1694888940"}, "vehicle": {"trip": {"tripId": "19125-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "582", "directionId": 0}, "position": {"latitude": -36.837414, "longitude": -73.148094, "bearing": 85.0, "odometer": 0.0, "speed": 7.6}, "timestamp": "1694888940", "vehicle": {"licensePlate": "ZT3909"}}}, {"id": "d68deee7-5682-4b93-b748-68e017d4d629", "tripUpdate": {"trip": {"tripId": "19479-701ff27f-2", "startTime": "15:31:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "585", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 18, "arrival": {"time": "1694889152"}, "stopId": "35786"}, {"stopSequence": 19, "arrival": {"time": "1694889219"}, "stopId": "35787"}, {"stopSequence": 20, "arrival": {"time": "1694889284"}, "stopId": "35788"}, {"stopSequence": 21, "arrival": {"time": "1694889384"}, "stopId": "35789"}, {"stopSequence": 22, "arrival": {"time": "1694889428"}, "stopId": "35790"}, {"stopSequence": 23, "arrival": {"time": "1694889509"}, "stopId": "35791"}, {"stopSequence": 24, "arrival": {"time": "1694889555"}, "stopId": "35792"}, {"stopSequence": 25, "arrival": {"time": "1694889611"}, "stopId": "35793"}, {"stopSequence": 26, "arrival": {"time": "1694889724"}, "stopId": "91116"}, {"stopSequence": 27, "arrival": {"time": "1694890179"}, "stopId": "35794"}, {"stopSequence": 28, "arrival": {"time": "1694890271"}, "stopId": "35796"}, {"stopSequence": 29, "arrival": {"time": "1694890319"}, "stopId": "35797"}, {"stopSequence": 30, "arrival": {"time": "1694890359"}, "stopId": "35798"}, {"stopSequence": 31, "arrival": {"time": "1694890397"}, "stopId": "35799"}, {"stopSequence": 32, "arrival": {"time": "1694890466"}, "stopId": "35800"}, {"stopSequence": 33, "arrival": {"time": "1694890515"}, "stopId": "35801"}, {"stopSequence": 34, "arrival": {"time": "1694890541"}, "stopId": "35802"}, {"stopSequence": 35, "arrival": {"time": "1694890589"}, "stopId": "35803"}, {"stopSequence": 36, "arrival": {"time": "1694890645"}, "stopId": "38507"}, {"stopSequence": 37, "arrival": {"time": "1694890696"}, "stopId": "34473"}, {"stopSequence": 38, "arrival": {"time": "1694890742"}, "stopId": "38500"}, {"stopSequence": 39, "arrival": {"time": "1694890789"}, "stopId": "35808"}, {"stopSequence": 40, "arrival": {"time": "1694890878"}, "stopId": "35814"}, {"stopSequence": 41, "arrival": {"time": "1694890959"}, "stopId": "35815"}, {"stopSequence": 42, "arrival": {"time": "1694890987"}, "stopId": "35816"}, {"stopSequence": 43, "arrival": {"time": "1694891001"}, "stopId": "35817"}, {"stopSequence": 44, "arrival": {"time": "1694891038"}, "stopId": "35818"}, {"stopSequence": 45, "arrival": {"time": "1694891080"}, "stopId": "35819"}, {"stopSequence": 46, "arrival": {"time": "1694891291"}, "stopId": "35822"}, {"stopSequence": 47, "arrival": {"time": "1694891337"}, "stopId": "35823"}, {"stopSequence": 48, "arrival": {"time": "1694891412"}, "stopId": "35723"}, {"stopSequence": 49, "arrival": {"time": "1694891465"}, "stopId": "35722"}, {"stopSequence": 50, "arrival": {"time": "1694891565"}, "stopId": "35826"}, {"stopSequence": 51, "arrival": {"time": "1694891636"}, "stopId": "35827"}, {"stopSequence": 52, "arrival": {"time": "1694891664"}, "stopId": "35828"}], "vehicle": {"licensePlate": "BLLL15"}, "timestamp": "1694888948"}, "vehicle": {"trip": {"tripId": "19479-701ff27f-2", "startTime": "15:31:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "585", "directionId": 0}, "position": {"latitude": -36.83977, "longitude": -73.12762, "bearing": 42.0, "odometer": 0.0, "speed": 5.9}, "timestamp": "1694888948", "vehicle": {"licensePlate": "BLLL15"}}}, {"id": "9a19e68b-1c18-47b4-9cc5-65f49f0ebb0d", "tripUpdate": {"trip": {"tripId": "19475-701ff27f-2", "startTime": "14:31:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "585", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 27, "arrival": {"time": "1694889099"}, "stopId": "35794"}, {"stopSequence": 28, "arrival": {"time": "1694889196"}, "stopId": "35796"}, {"stopSequence": 29, "arrival": {"time": "1694889246"}, "stopId": "35797"}, {"stopSequence": 30, "arrival": {"time": "1694889288"}, "stopId": "35798"}, {"stopSequence": 31, "arrival": {"time": "1694889326"}, "stopId": "35799"}, {"stopSequence": 32, "arrival": {"time": "1694889396"}, "stopId": "35800"}, {"stopSequence": 33, "arrival": {"time": "1694889445"}, "stopId": "35801"}, {"stopSequence": 34, "arrival": {"time": "1694889471"}, "stopId": "35802"}, {"stopSequence": 35, "arrival": {"time": "1694889518"}, "stopId": "35803"}, {"stopSequence": 36, "arrival": {"time": "1694889573"}, "stopId": "38507"}, {"stopSequence": 37, "arrival": {"time": "1694889622"}, "stopId": "34473"}, {"stopSequence": 38, "arrival": {"time": "1694889665"}, "stopId": "38500"}, {"stopSequence": 39, "arrival": {"time": "1694889710"}, "stopId": "35808"}, {"stopSequence": 40, "arrival": {"time": "1694889793"}, "stopId": "35814"}, {"stopSequence": 41, "arrival": {"time": "1694889868"}, "stopId": "35815"}, {"stopSequence": 42, "arrival": {"time": "1694889893"}, "stopId": "35816"}, {"stopSequence": 43, "arrival": {"time": "1694889905"}, "stopId": "35817"}, {"stopSequence": 44, "arrival": {"time": "1694889939"}, "stopId": "35818"}, {"stopSequence": 45, "arrival": {"time": "1694889976"}, "stopId": "35819"}, {"stopSequence": 46, "arrival": {"time": "1694890161"}, "stopId": "35822"}, {"stopSequence": 47, "arrival": {"time": "1694890201"}, "stopId": "35823"}, {"stopSequence": 48, "arrival": {"time": "1694890263"}, "stopId": "35723"}, {"stopSequence": 49, "arrival": {"time": "1694890308"}, "stopId": "35722"}, {"stopSequence": 50, "arrival": {"time": "1694890390"}, "stopId": "35826"}, {"stopSequence": 51, "arrival": {"time": "1694890448"}, "stopId": "35827"}, {"stopSequence": 52, "arrival": {"time": "1694890471"}, "stopId": "35828"}], "vehicle": {"licensePlate": "CFTK74"}, "timestamp": "1694888927"}, "vehicle": {"trip": {"tripId": "19475-701ff27f-2", "startTime": "14:31:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "585", "directionId": 0}, "position": {"latitude": -36.831806, "longitude": -73.07276, "bearing": 64.0, "odometer": 0.0, "speed": 58.9}, "timestamp": "1694888927", "vehicle": {"licensePlate": "CFTK74"}}}, {"id": "c68195d6-c367-417d-9dbe-f93b0c466e71", "tripUpdate": {"trip": {"tripId": "19396-701ff27f-2", "startTime": "13:45:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "585", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 31, "arrival": {"time": "1694888880"}, "stopId": "35745"}, {"stopSequence": 32, "arrival": {"time": "1694888908"}, "stopId": "15879953"}, {"stopSequence": 33, "arrival": {"time": "1694888988"}, "stopId": "35746"}, {"stopSequence": 34, "arrival": {"time": "1694889580"}, "stopId": "35748"}, {"stopSequence": 35, "arrival": {"time": "1694889641"}, "stopId": "35749"}, {"stopSequence": 36, "arrival": {"time": "1694889686"}, "stopId": "35750"}, {"stopSequence": 37, "arrival": {"time": "1694889761"}, "stopId": "35751"}, {"stopSequence": 38, "arrival": {"time": "1694889871"}, "stopId": "35752"}, {"stopSequence": 39, "arrival": {"time": "1694890006"}, "stopId": "35417"}, {"stopSequence": 40, "arrival": {"time": "1694890076"}, "stopId": "35755"}, {"stopSequence": 41, "arrival": {"time": "1694890290"}, "stopId": "35756"}, {"stopSequence": 42, "arrival": {"time": "1694890404"}, "stopId": "35757"}, {"stopSequence": 43, "arrival": {"time": "1694890450"}, "stopId": "35758"}, {"stopSequence": 44, "arrival": {"time": "1694890458"}, "stopId": "35759"}, {"stopSequence": 45, "arrival": {"time": "1694890506"}, "stopId": "35760"}, {"stopSequence": 46, "arrival": {"time": "1694890571"}, "stopId": "35762"}, {"stopSequence": 47, "arrival": {"time": "1694890655"}, "stopId": "35764"}, {"stopSequence": 48, "arrival": {"time": "1694890661"}, "stopId": "35518"}, {"stopSequence": 49, "arrival": {"time": "1694890714"}, "stopId": "35766"}, {"stopSequence": 50, "arrival": {"time": "1694890774"}, "stopId": "35767"}, {"stopSequence": 51, "arrival": {"time": "1694890833"}, "stopId": "35398"}, {"stopSequence": 52, "arrival": {"time": "1694890890"}, "stopId": "91055"}, {"stopSequence": 53, "arrival": {"time": "1694890961"}, "stopId": "91056"}, {"stopSequence": 54, "arrival": {"time": "1694891025"}, "stopId": "91057"}, {"stopSequence": 55, "arrival": {"time": "1694891058"}, "stopId": "91058"}, {"stopSequence": 56, "arrival": {"time": "1694891119"}, "stopId": "91059"}, {"stopSequence": 57, "arrival": {"time": "1694891169"}, "stopId": "91060"}, {"stopSequence": 58, "arrival": {"time": "1694891196"}, "stopId": "35769"}, {"stopSequence": 59, "arrival": {"time": "1694891225"}, "stopId": "91061"}], "vehicle": {"licensePlate": "DSBZ84"}, "timestamp": "1694888856"}, "vehicle": {"trip": {"tripId": "19396-701ff27f-2", "startTime": "13:45:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "585", "directionId": 1}, "position": {"latitude": -36.82517, "longitude": -73.05669, "bearing": 241.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888856", "vehicle": {"licensePlate": "DSBZ84"}}}, {"id": "fe594a80-18f9-4d2b-9df7-00f1ff3b80ab", "tripUpdate": {"trip": {"tripId": "19400-701ff27f-2", "startTime": "14:45:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "585", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 11, "arrival": {"time": "1694888923"}, "stopId": "35726"}, {"stopSequence": 12, "arrival": {"time": "1694888997"}, "stopId": "35727"}, {"stopSequence": 13, "arrival": {"time": "1694889074"}, "stopId": "35820"}, {"stopSequence": 14, "arrival": {"time": "1694889110"}, "stopId": "35729"}, {"stopSequence": 15, "arrival": {"time": "1694889143"}, "stopId": "35730"}, {"stopSequence": 16, "arrival": {"time": "1694889175"}, "stopId": "35731"}, {"stopSequence": 17, "arrival": {"time": "1694889241"}, "stopId": "35201"}, {"stopSequence": 18, "arrival": {"time": "1694889331"}, "stopId": "35202"}, {"stopSequence": 19, "arrival": {"time": "1694889360"}, "stopId": "35203"}, {"stopSequence": 20, "arrival": {"time": "1694889426"}, "stopId": "1-Feb"}, {"stopSequence": 21, "arrival": {"time": "1694889471"}, "stopId": "1-Mar"}, {"stopSequence": 22, "arrival": {"time": "1694889482"}, "stopId": "8276831"}, {"stopSequence": 23, "arrival": {"time": "1694889518"}, "stopId": "1-Apr"}, {"stopSequence": 24, "arrival": {"time": "1694889566"}, "stopId": "1-May"}, {"stopSequence": 25, "arrival": {"time": "1694889606"}, "stopId": "1-Jun"}, {"stopSequence": 26, "arrival": {"time": "1694889668"}, "stopId": "1-Jul"}, {"stopSequence": 27, "arrival": {"time": "1694889694"}, "stopId": "1-Aug"}, {"stopSequence": 28, "arrival": {"time": "1694889741"}, "stopId": "1-Sep"}, {"stopSequence": 29, "arrival": {"time": "1694889792"}, "stopId": "1-Oct"}, {"stopSequence": 30, "arrival": {"time": "1694889841"}, "stopId": "1-Nov"}, {"stopSequence": 31, "arrival": {"time": "1694889894"}, "stopId": "35745"}, {"stopSequence": 32, "arrival": {"time": "1694889919"}, "stopId": "15879953"}, {"stopSequence": 33, "arrival": {"time": "1694889993"}, "stopId": "35746"}, {"stopSequence": 34, "arrival": {"time": "1694890573"}, "stopId": "35748"}, {"stopSequence": 35, "arrival": {"time": "1694890636"}, "stopId": "35749"}, {"stopSequence": 36, "arrival": {"time": "1694890683"}, "stopId": "35750"}, {"stopSequence": 37, "arrival": {"time": "1694890763"}, "stopId": "35751"}, {"stopSequence": 38, "arrival": {"time": "1694890882"}, "stopId": "35752"}, {"stopSequence": 39, "arrival": {"time": "1694891032"}, "stopId": "35417"}, {"stopSequence": 40, "arrival": {"time": "1694891111"}, "stopId": "35755"}, {"stopSequence": 41, "arrival": {"time": "1694891359"}, "stopId": "35756"}, {"stopSequence": 42, "arrival": {"time": "1694891496"}, "stopId": "35757"}, {"stopSequence": 43, "arrival": {"time": "1694891551"}, "stopId": "35758"}, {"stopSequence": 44, "arrival": {"time": "1694891561"}, "stopId": "35759"}, {"stopSequence": 45, "arrival": {"time": "1694891619"}, "stopId": "35760"}, {"stopSequence": 46, "arrival": {"time": "1694891700"}, "stopId": "35762"}, {"stopSequence": 47, "arrival": {"time": "1694891804"}, "stopId": "35764"}, {"stopSequence": 48, "arrival": {"time": "1694891812"}, "stopId": "35518"}, {"stopSequence": 49, "arrival": {"time": "1694891879"}, "stopId": "35766"}, {"stopSequence": 50, "arrival": {"time": "1694891956"}, "stopId": "35767"}, {"stopSequence": 51, "arrival": {"time": "1694892032"}, "stopId": "35398"}, {"stopSequence": 52, "arrival": {"time": "1694892106"}, "stopId": "91055"}, {"stopSequence": 53, "arrival": {"time": "1694892200"}, "stopId": "91056"}, {"stopSequence": 54, "arrival": {"time": "1694892285"}, "stopId": "91057"}, {"stopSequence": 55, "arrival": {"time": "1694892330"}, "stopId": "91058"}, {"stopSequence": 56, "arrival": {"time": "1694892412"}, "stopId": "91059"}, {"stopSequence": 57, "arrival": {"time": "1694892480"}, "stopId": "91060"}, {"stopSequence": 58, "arrival": {"time": "1694892517"}, "stopId": "35769"}, {"stopSequence": 59, "arrival": {"time": "1694892556"}, "stopId": "91061"}], "vehicle": {"licensePlate": "FXRL57"}, "timestamp": "1694888893"}, "vehicle": {"trip": {"tripId": "19400-701ff27f-2", "startTime": "14:45:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "585", "directionId": 1}, "position": {"latitude": -36.821827, "longitude": -73.00814, "bearing": 12.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888893", "vehicle": {"licensePlate": "FXRL57"}}}, {"id": "5eedf066-4a44-4c77-ba9f-4d182b9077e9", "tripUpdate": {"trip": {"tripId": "19478-701ff27f-2", "startTime": "15:16:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "585", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 35, "arrival": {"time": "1694889015"}, "stopId": "35803"}, {"stopSequence": 36, "arrival": {"time": "1694889074"}, "stopId": "38507"}, {"stopSequence": 37, "arrival": {"time": "1694889127"}, "stopId": "34473"}, {"stopSequence": 38, "arrival": {"time": "1694889173"}, "stopId": "38500"}, {"stopSequence": 39, "arrival": {"time": "1694889221"}, "stopId": "35808"}, {"stopSequence": 40, "arrival": {"time": "1694889308"}, "stopId": "35814"}, {"stopSequence": 41, "arrival": {"time": "1694889386"}, "stopId": "35815"}, {"stopSequence": 42, "arrival": {"time": "1694889413"}, "stopId": "35816"}, {"stopSequence": 43, "arrival": {"time": "1694889425"}, "stopId": "35817"}, {"stopSequence": 44, "arrival": {"time": "1694889460"}, "stopId": "35818"}, {"stopSequence": 45, "arrival": {"time": "1694889498"}, "stopId": "35819"}, {"stopSequence": 46, "arrival": {"time": "1694889685"}, "stopId": "35822"}, {"stopSequence": 47, "arrival": {"time": "1694889725"}, "stopId": "35823"}, {"stopSequence": 48, "arrival": {"time": "1694889788"}, "stopId": "35723"}, {"stopSequence": 49, "arrival": {"time": "1694889832"}, "stopId": "35722"}, {"stopSequence": 50, "arrival": {"time": "1694889913"}, "stopId": "35826"}, {"stopSequence": 51, "arrival": {"time": "1694889970"}, "stopId": "35827"}, {"stopSequence": 52, "arrival": {"time": "1694889992"}, "stopId": "35828"}], "vehicle": {"licensePlate": "FXRL66"}, "timestamp": "1694888979"}, "vehicle": {"trip": {"tripId": "19478-701ff27f-2", "startTime": "15:16:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "585", "directionId": 0}, "position": {"latitude": -36.820625, "longitude": -73.04506, "bearing": 138.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888979", "vehicle": {"licensePlate": "FXRL66"}}}, {"id": "7d2c80d3-f24f-4cda-bbb6-20eb760ea518", "tripUpdate": {"trip": {"tripId": "19388-701ff27f-2", "startTime": "11:45:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "585", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 56, "arrival": {"time": "1694888265"}, "stopId": "91059"}, {"stopSequence": 57, "arrival": {"time": "1694888313"}, "stopId": "91060"}, {"stopSequence": 58, "arrival": {"time": "1694888338"}, "stopId": "35769"}, {"stopSequence": 59, "arrival": {"time": "1694888364"}, "stopId": "91061"}], "vehicle": {"licensePlate": "JBTK30"}, "timestamp": "1694888247"}, "vehicle": {"trip": {"tripId": "19388-701ff27f-2", "startTime": "11:45:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "585", "directionId": 1}, "position": {"latitude": -36.84703, "longitude": -73.14399, "bearing": 178.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888912", "vehicle": {"licensePlate": "JBTK30"}}}, {"id": "9fdfc35f-f5ee-4f99-badc-b8025bbb39de", "tripUpdate": {"trip": {"tripId": "19397-701ff27f-2", "startTime": "14:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "585", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 49, "arrival": {"time": "1694888966"}, "stopId": "35766"}, {"stopSequence": 50, "arrival": {"time": "1694889028"}, "stopId": "35767"}, {"stopSequence": 51, "arrival": {"time": "1694889086"}, "stopId": "35398"}, {"stopSequence": 52, "arrival": {"time": "1694889142"}, "stopId": "91055"}, {"stopSequence": 53, "arrival": {"time": "1694889211"}, "stopId": "91056"}, {"stopSequence": 54, "arrival": {"time": "1694889270"}, "stopId": "91057"}, {"stopSequence": 55, "arrival": {"time": "1694889301"}, "stopId": "91058"}, {"stopSequence": 56, "arrival": {"time": "1694889356"}, "stopId": "91059"}, {"stopSequence": 57, "arrival": {"time": "1694889401"}, "stopId": "91060"}, {"stopSequence": 58, "arrival": {"time": "1694889425"}, "stopId": "35769"}, {"stopSequence": 59, "arrival": {"time": "1694889450"}, "stopId": "91061"}], "vehicle": {"licensePlate": "JGJX64"}, "timestamp": "1694888941"}, "vehicle": {"trip": {"tripId": "19397-701ff27f-2", "startTime": "14:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "585", "directionId": 1}, "position": {"latitude": -36.838707, "longitude": -73.14899, "bearing": 175.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888941", "vehicle": {"licensePlate": "JGJX64"}}}, {"id": "b98d234e-ac0c-4487-984b-49dcb8469a8a", "tripUpdate": {"trip": {"tripId": "19476-701ff27f-2", "startTime": "14:46:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "585", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 47, "arrival": {"time": "1694888964"}, "stopId": "35823"}, {"stopSequence": 48, "arrival": {"time": "1694889032"}, "stopId": "35723"}, {"stopSequence": 49, "arrival": {"time": "1694889080"}, "stopId": "35722"}, {"stopSequence": 50, "arrival": {"time": "1694889166"}, "stopId": "35826"}, {"stopSequence": 51, "arrival": {"time": "1694889226"}, "stopId": "35827"}, {"stopSequence": 52, "arrival": {"time": "1694889250"}, "stopId": "35828"}], "vehicle": {"licensePlate": "JKZB14"}, "timestamp": "1694888921"}, "vehicle": {"trip": {"tripId": "19476-701ff27f-2", "startTime": "14:46:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "585", "directionId": 0}, "position": {"latitude": -36.82143, "longitude": -73.00966, "bearing": 107.0, "odometer": 0.0, "speed": 37.8}, "timestamp": "1694888921", "vehicle": {"licensePlate": "JKZB14"}}}, {"id": "70b3d1f8-ff61-4e52-948a-b87ae223ee3a", "tripUpdate": {"trip": {"tripId": "19394-701ff27f-2", "startTime": "13:15:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "585", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 41, "arrival": {"time": "1694888958"}, "stopId": "35756"}, {"stopSequence": 42, "arrival": {"time": "1694889080"}, "stopId": "35757"}, {"stopSequence": 43, "arrival": {"time": "1694889128"}, "stopId": "35758"}, {"stopSequence": 44, "arrival": {"time": "1694889136"}, "stopId": "35759"}, {"stopSequence": 45, "arrival": {"time": "1694889185"}, "stopId": "35760"}, {"stopSequence": 46, "arrival": {"time": "1694889251"}, "stopId": "35762"}, {"stopSequence": 47, "arrival": {"time": "1694889334"}, "stopId": "35764"}, {"stopSequence": 48, "arrival": {"time": "1694889340"}, "stopId": "35518"}, {"stopSequence": 49, "arrival": {"time": "1694889392"}, "stopId": "35766"}, {"stopSequence": 50, "arrival": {"time": "1694889450"}, "stopId": "35767"}, {"stopSequence": 51, "arrival": {"time": "1694889505"}, "stopId": "35398"}, {"stopSequence": 52, "arrival": {"time": "1694889558"}, "stopId": "91055"}, {"stopSequence": 53, "arrival": {"time": "1694889623"}, "stopId": "91056"}, {"stopSequence": 54, "arrival": {"time": "1694889680"}, "stopId": "91057"}, {"stopSequence": 55, "arrival": {"time": "1694889710"}, "stopId": "91058"}, {"stopSequence": 56, "arrival": {"time": "1694889763"}, "stopId": "91059"}, {"stopSequence": 57, "arrival": {"time": "1694889807"}, "stopId": "91060"}, {"stopSequence": 58, "arrival": {"time": "1694889830"}, "stopId": "35769"}, {"stopSequence": 59, "arrival": {"time": "1694889854"}, "stopId": "91061"}], "vehicle": {"licensePlate": "LHFC67"}, "timestamp": "1694888948"}, "vehicle": {"trip": {"tripId": "19394-701ff27f-2", "startTime": "13:15:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "585", "directionId": 1}, "position": {"latitude": -36.84046, "longitude": -73.12934, "bearing": 323.0, "odometer": 0.0, "speed": 10.3}, "timestamp": "1694888948", "vehicle": {"licensePlate": "LHFC67"}}}, {"id": "177ba214-2aeb-4e75-b7eb-92110155b660", "tripUpdate": {"trip": {"tripId": "19399-701ff27f-2", "startTime": "14:30:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "585", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 29, "arrival": {"time": "1694888924"}, "stopId": "1-Oct"}, {"stopSequence": 30, "arrival": {"time": "1694888977"}, "stopId": "1-Nov"}, {"stopSequence": 31, "arrival": {"time": "1694889035"}, "stopId": "35745"}, {"stopSequence": 32, "arrival": {"time": "1694889063"}, "stopId": "15879953"}, {"stopSequence": 33, "arrival": {"time": "1694889142"}, "stopId": "35746"}, {"stopSequence": 34, "arrival": {"time": "1694889728"}, "stopId": "35748"}, {"stopSequence": 35, "arrival": {"time": "1694889789"}, "stopId": "35749"}, {"stopSequence": 36, "arrival": {"time": "1694889833"}, "stopId": "35750"}, {"stopSequence": 37, "arrival": {"time": "1694889908"}, "stopId": "35751"}, {"stopSequence": 38, "arrival": {"time": "1694890019"}, "stopId": "35752"}, {"stopSequence": 39, "arrival": {"time": "1694890154"}, "stopId": "35417"}, {"stopSequence": 40, "arrival": {"time": "1694890224"}, "stopId": "35755"}, {"stopSequence": 41, "arrival": {"time": "1694890439"}, "stopId": "35756"}, {"stopSequence": 42, "arrival": {"time": "1694890555"}, "stopId": "35757"}, {"stopSequence": 43, "arrival": {"time": "1694890601"}, "stopId": "35758"}, {"stopSequence": 44, "arrival": {"time": "1694890609"}, "stopId": "35759"}, {"stopSequence": 45, "arrival": {"time": "1694890657"}, "stopId": "35760"}, {"stopSequence": 46, "arrival": {"time": "1694890723"}, "stopId": "35762"}, {"stopSequence": 47, "arrival": {"time": "1694890808"}, "stopId": "35764"}, {"stopSequence": 48, "arrival": {"time": "1694890814"}, "stopId": "35518"}, {"stopSequence": 49, "arrival": {"time": "1694890867"}, "stopId": "35766"}, {"stopSequence": 50, "arrival": {"time": "1694890929"}, "stopId": "35767"}, {"stopSequence": 51, "arrival": {"time": "1694890989"}, "stopId": "35398"}, {"stopSequence": 52, "arrival": {"time": "1694891047"}, "stopId": "91055"}, {"stopSequence": 53, "arrival": {"time": "1694891119"}, "stopId": "91056"}, {"stopSequence": 54, "arrival": {"time": "1694891184"}, "stopId": "91057"}, {"stopSequence": 55, "arrival": {"time": "1694891218"}, "stopId": "91058"}, {"stopSequence": 56, "arrival": {"time": "1694891280"}, "stopId": "91059"}, {"stopSequence": 57, "arrival": {"time": "1694891331"}, "stopId": "91060"}, {"stopSequence": 58, "arrival": {"time": "1694891358"}, "stopId": "35769"}, {"stopSequence": 59, "arrival": {"time": "1694891387"}, "stopId": "91061"}], "vehicle": {"licensePlate": "PSWC29"}, "timestamp": "1694888922"}, "vehicle": {"trip": {"tripId": "19399-701ff27f-2", "startTime": "14:30:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "585", "directionId": 1}, "position": {"latitude": -36.82336, "longitude": -73.05246, "bearing": 240.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888922", "vehicle": {"licensePlate": "PSWC29"}}}, {"id": "8091a49d-e18f-47b7-819d-0bd3d870e3a9", "tripUpdate": {"trip": {"tripId": "19401-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "585", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 10, "arrival": {"time": "1694888928"}, "stopId": "35724"}, {"stopSequence": 11, "arrival": {"time": "1694889000"}, "stopId": "35726"}, {"stopSequence": 12, "arrival": {"time": "1694889073"}, "stopId": "35727"}, {"stopSequence": 13, "arrival": {"time": "1694889149"}, "stopId": "35820"}, {"stopSequence": 14, "arrival": {"time": "1694889185"}, "stopId": "35729"}, {"stopSequence": 15, "arrival": {"time": "1694889218"}, "stopId": "35730"}, {"stopSequence": 16, "arrival": {"time": "1694889250"}, "stopId": "35731"}, {"stopSequence": 17, "arrival": {"time": "1694889315"}, "stopId": "35201"}, {"stopSequence": 18, "arrival": {"time": "1694889404"}, "stopId": "35202"}, {"stopSequence": 19, "arrival": {"time": "1694889433"}, "stopId": "35203"}, {"stopSequence": 20, "arrival": {"time": "1694889499"}, "stopId": "1-Feb"}, {"stopSequence": 21, "arrival": {"time": "1694889544"}, "stopId": "1-Mar"}, {"stopSequence": 22, "arrival": {"time": "1694889555"}, "stopId": "8276831"}, {"stopSequence": 23, "arrival": {"time": "1694889591"}, "stopId": "1-Apr"}, {"stopSequence": 24, "arrival": {"time": "1694889639"}, "stopId": "1-May"}, {"stopSequence": 25, "arrival": {"time": "1694889678"}, "stopId": "1-Jun"}, {"stopSequence": 26, "arrival": {"time": "1694889740"}, "stopId": "1-Jul"}, {"stopSequence": 27, "arrival": {"time": "1694889766"}, "stopId": "1-Aug"}, {"stopSequence": 28, "arrival": {"time": "1694889813"}, "stopId": "1-Sep"}, {"stopSequence": 29, "arrival": {"time": "1694889864"}, "stopId": "1-Oct"}, {"stopSequence": 30, "arrival": {"time": "1694889913"}, "stopId": "1-Nov"}, {"stopSequence": 31, "arrival": {"time": "1694889966"}, "stopId": "35745"}, {"stopSequence": 32, "arrival": {"time": "1694889991"}, "stopId": "15879953"}, {"stopSequence": 33, "arrival": {"time": "1694890065"}, "stopId": "35746"}, {"stopSequence": 34, "arrival": {"time": "1694890647"}, "stopId": "35748"}, {"stopSequence": 35, "arrival": {"time": "1694890710"}, "stopId": "35749"}, {"stopSequence": 36, "arrival": {"time": "1694890758"}, "stopId": "35750"}, {"stopSequence": 37, "arrival": {"time": "1694890839"}, "stopId": "35751"}, {"stopSequence": 38, "arrival": {"time": "1694890959"}, "stopId": "35752"}, {"stopSequence": 39, "arrival": {"time": "1694891111"}, "stopId": "35417"}, {"stopSequence": 40, "arrival": {"time": "1694891191"}, "stopId": "35755"}, {"stopSequence": 41, "arrival": {"time": "1694891442"}, "stopId": "35756"}, {"stopSequence": 42, "arrival": {"time": "1694891581"}, "stopId": "35757"}, {"stopSequence": 43, "arrival": {"time": "1694891637"}, "stopId": "35758"}, {"stopSequence": 44, "arrival": {"time": "1694891647"}, "stopId": "35759"}, {"stopSequence": 45, "arrival": {"time": "1694891706"}, "stopId": "35760"}, {"stopSequence": 46, "arrival": {"time": "1694891788"}, "stopId": "35762"}, {"stopSequence": 47, "arrival": {"time": "1694891894"}, "stopId": "35764"}, {"stopSequence": 48, "arrival": {"time": "1694891902"}, "stopId": "35518"}, {"stopSequence": 49, "arrival": {"time": "1694891970"}, "stopId": "35766"}, {"stopSequence": 50, "arrival": {"time": "1694892049"}, "stopId": "35767"}, {"stopSequence": 51, "arrival": {"time": "1694892126"}, "stopId": "35398"}, {"stopSequence": 52, "arrival": {"time": "1694892202"}, "stopId": "91055"}, {"stopSequence": 53, "arrival": {"time": "1694892298"}, "stopId": "91056"}, {"stopSequence": 54, "arrival": {"time": "1694892384"}, "stopId": "91057"}, {"stopSequence": 55, "arrival": {"time": "1694892430"}, "stopId": "91058"}, {"stopSequence": 56, "arrival": {"time": "1694892514"}, "stopId": "91059"}, {"stopSequence": 57, "arrival": {"time": "1694892585"}, "stopId": "91060"}, {"stopSequence": 58, "arrival": {"time": "1694892622"}, "stopId": "35769"}, {"stopSequence": 59, "arrival": {"time": "1694892662"}, "stopId": "91061"}], "vehicle": {"licensePlate": "XY7453"}, "timestamp": "1694888912"}, "vehicle": {"trip": {"tripId": "19401-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "585", "directionId": 1}, "position": {"latitude": -36.824203, "longitude": -73.00877, "bearing": 332.0, "odometer": 0.0, "speed": 18.9}, "timestamp": "1694888912", "vehicle": {"licensePlate": "XY7453"}}}, {"id": "bdf79ae6-f542-4cc0-9f3b-999df29a42f6", "tripUpdate": {"trip": {"tripId": "19480-701ff27f-2", "startTime": "15:46:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "585", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 1, "arrival": {"time": "1694888981"}, "stopId": "35810"}, {"stopSequence": 2, "arrival": {"time": "1694889022"}, "stopId": "35813"}, {"stopSequence": 3, "arrival": {"time": "1694889084"}, "stopId": "91048"}, {"stopSequence": 4, "arrival": {"time": "1694889133"}, "stopId": "35650"}, {"stopSequence": 5, "arrival": {"time": "1694889213"}, "stopId": "91049"}, {"stopSequence": 6, "arrival": {"time": "1694889293"}, "stopId": "91043"}, {"stopSequence": 7, "arrival": {"time": "1694889307"}, "stopId": "35508"}, {"stopSequence": 8, "arrival": {"time": "1694889346"}, "stopId": "35514"}, {"stopSequence": 9, "arrival": {"time": "1694889396"}, "stopId": "35515"}, {"stopSequence": 10, "arrival": {"time": "1694889448"}, "stopId": "35516"}, {"stopSequence": 11, "arrival": {"time": "1694889481"}, "stopId": "35517"}, {"stopSequence": 12, "arrival": {"time": "1694889558"}, "stopId": "35763"}, {"stopSequence": 13, "arrival": {"time": "1694889620"}, "stopId": "35761"}, {"stopSequence": 14, "arrival": {"time": "1694889657"}, "stopId": "35522"}, {"stopSequence": 15, "arrival": {"time": "1694889700"}, "stopId": "35523"}, {"stopSequence": 16, "arrival": {"time": "1694889768"}, "stopId": "35524"}, {"stopSequence": 17, "arrival": {"time": "1694889865"}, "stopId": "35525"}, {"stopSequence": 18, "arrival": {"time": "1694890124"}, "stopId": "35786"}, {"stopSequence": 19, "arrival": {"time": "1694890188"}, "stopId": "35787"}, {"stopSequence": 20, "arrival": {"time": "1694890249"}, "stopId": "35788"}, {"stopSequence": 21, "arrival": {"time": "1694890347"}, "stopId": "35789"}, {"stopSequence": 22, "arrival": {"time": "1694890390"}, "stopId": "35790"}, {"stopSequence": 23, "arrival": {"time": "1694890471"}, "stopId": "35791"}, {"stopSequence": 24, "arrival": {"time": "1694890518"}, "stopId": "35792"}, {"stopSequence": 25, "arrival": {"time": "1694890575"}, "stopId": "35793"}, {"stopSequence": 26, "arrival": {"time": "1694890692"}, "stopId": "91116"}, {"stopSequence": 27, "arrival": {"time": "1694891190"}, "stopId": "35794"}, {"stopSequence": 28, "arrival": {"time": "1694891296"}, "stopId": "35796"}, {"stopSequence": 29, "arrival": {"time": "1694891351"}, "stopId": "35797"}, {"stopSequence": 30, "arrival": {"time": "1694891399"}, "stopId": "35798"}, {"stopSequence": 31, "arrival": {"time": "1694891444"}, "stopId": "35799"}, {"stopSequence": 32, "arrival": {"time": "1694891526"}, "stopId": "35800"}, {"stopSequence": 33, "arrival": {"time": "1694891586"}, "stopId": "35801"}, {"stopSequence": 34, "arrival": {"time": "1694891617"}, "stopId": "35802"}, {"stopSequence": 35, "arrival": {"time": "1694891676"}, "stopId": "35803"}, {"stopSequence": 36, "arrival": {"time": "1694891745"}, "stopId": "38507"}, {"stopSequence": 37, "arrival": {"time": "1694891809"}, "stopId": "34473"}, {"stopSequence": 38, "arrival": {"time": "1694891866"}, "stopId": "38500"}, {"stopSequence": 39, "arrival": {"time": "1694891926"}, "stopId": "35808"}, {"stopSequence": 40, "arrival": {"time": "1694892040"}, "stopId": "35814"}, {"stopSequence": 41, "arrival": {"time": "1694892146"}, "stopId": "35815"}, {"stopSequence": 42, "arrival": {"time": "1694892183"}, "stopId": "35816"}, {"stopSequence": 43, "arrival": {"time": "1694892201"}, "stopId": "35817"}, {"stopSequence": 44, "arrival": {"time": "1694892250"}, "stopId": "35818"}, {"stopSequence": 45, "arrival": {"time": "1694892306"}, "stopId": "35819"}, {"stopSequence": 46, "arrival": {"time": "1694892593"}, "stopId": "35822"}, {"stopSequence": 47, "arrival": {"time": "1694892658"}, "stopId": "35823"}, {"stopSequence": 48, "arrival": {"time": "1694892762"}, "stopId": "35723"}, {"stopSequence": 49, "arrival": {"time": "1694892837"}, "stopId": "35722"}, {"stopSequence": 50, "arrival": {"time": "1694892980"}, "stopId": "35826"}, {"stopSequence": 51, "arrival": {"time": "1694893083"}, "stopId": "35827"}, {"stopSequence": 52, "arrival": {"time": "1694893125"}, "stopId": "35828"}], "vehicle": {"licensePlate": "ZR7463"}, "timestamp": "1694888945"}, "vehicle": {"trip": {"tripId": "19480-701ff27f-2", "startTime": "15:46:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "585", "directionId": 0}, "position": {"latitude": -36.846367, "longitude": -73.14357, "bearing": 79.0, "odometer": 0.0, "speed": 9.7}, "timestamp": "1694888945", "vehicle": {"licensePlate": "ZR7463"}}}, {"id": "c9e111ac-34d8-4128-a635-c7cbeed09c38", "tripUpdate": {"trip": {"tripId": "19553-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "586", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 28, "arrival": {"time": "1694888950"}, "stopId": "35793"}, {"stopSequence": 29, "arrival": {"time": "1694889072"}, "stopId": "91116"}, {"stopSequence": 30, "arrival": {"time": "1694889546"}, "stopId": "35794"}, {"stopSequence": 31, "arrival": {"time": "1694889637"}, "stopId": "35796"}, {"stopSequence": 32, "arrival": {"time": "1694889676"}, "stopId": "35797"}, {"stopSequence": 33, "arrival": {"time": "1694889725"}, "stopId": "35798"}, {"stopSequence": 34, "arrival": {"time": "1694889763"}, "stopId": "35799"}, {"stopSequence": 35, "arrival": {"time": "1694889830"}, "stopId": "35800"}, {"stopSequence": 36, "arrival": {"time": "1694889878"}, "stopId": "35801"}, {"stopSequence": 37, "arrival": {"time": "1694889903"}, "stopId": "35802"}, {"stopSequence": 38, "arrival": {"time": "1694889948"}, "stopId": "35803"}, {"stopSequence": 39, "arrival": {"time": "1694890002"}, "stopId": "38507"}, {"stopSequence": 40, "arrival": {"time": "1694890052"}, "stopId": "34473"}, {"stopSequence": 41, "arrival": {"time": "1694890094"}, "stopId": "38500"}, {"stopSequence": 42, "arrival": {"time": "1694890131"}, "stopId": "35808"}, {"stopSequence": 43, "arrival": {"time": "1694890195"}, "stopId": "35710"}, {"stopSequence": 44, "arrival": {"time": "1694890229"}, "stopId": "50036"}, {"stopSequence": 45, "arrival": {"time": "1694890337"}, "stopId": "35712"}, {"stopSequence": 46, "arrival": {"time": "1694890430"}, "stopId": "35713"}], "vehicle": {"licensePlate": "FTPT71"}, "timestamp": "1694888917"}, "vehicle": {"trip": {"tripId": "19553-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "586", "directionId": 0}, "position": {"latitude": -36.83892, "longitude": -73.09308, "bearing": 94.0, "odometer": 0.0, "speed": 18.9}, "timestamp": "1694888917", "vehicle": {"licensePlate": "FTPT71"}}}, {"id": "cd5c311d-6826-4099-9fae-3d5c45b712b1", "tripUpdate": {"trip": {"tripId": "19625-701ff27f-2", "startTime": "14:08:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "586", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 42, "arrival": {"time": "1694889033"}, "stopId": "91058"}], "vehicle": {"licensePlate": "FXJV66"}, "timestamp": "1694888877"}, "vehicle": {"trip": {"tripId": "19625-701ff27f-2", "startTime": "14:08:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "586", "directionId": 1}, "position": {"latitude": -36.845425, "longitude": -73.1483, "bearing": 5.0, "odometer": 0.0, "speed": 10.8}, "timestamp": "1694888877", "vehicle": {"licensePlate": "FXJV66"}}}, {"id": "25215522-6f4f-47fb-b657-5c9582306d62", "tripUpdate": {"trip": {"tripId": "19554-701ff27f-2", "startTime": "15:15:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "586", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 40, "arrival": {"time": "1694888988"}, "stopId": "34473"}, {"stopSequence": 41, "arrival": {"time": "1694889035"}, "stopId": "38500"}, {"stopSequence": 42, "arrival": {"time": "1694889075"}, "stopId": "35808"}, {"stopSequence": 43, "arrival": {"time": "1694889144"}, "stopId": "35710"}, {"stopSequence": 44, "arrival": {"time": "1694889181"}, "stopId": "50036"}, {"stopSequence": 45, "arrival": {"time": "1694889294"}, "stopId": "35712"}, {"stopSequence": 46, "arrival": {"time": "1694889388"}, "stopId": "35713"}], "vehicle": {"licensePlate": "LHFP65"}, "timestamp": "1694888983"}, "vehicle": {"trip": {"tripId": "19554-701ff27f-2", "startTime": "15:15:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "586", "directionId": 0}, "position": {"latitude": -36.8178, "longitude": -73.03844, "bearing": 62.0, "odometer": 0.0, "speed": 20.5}, "timestamp": "1694888983", "vehicle": {"licensePlate": "LHFP65"}}}, {"id": "77c6650d-e90b-468d-ac5a-860a74d6ac74", "tripUpdate": {"trip": {"tripId": "19556-701ff27f-2", "startTime": "15:45:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "586", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 4, "arrival": {"time": "1694888989"}, "stopId": "35876"}, {"stopSequence": 5, "arrival": {"time": "1694889079"}, "stopId": "35874"}, {"stopSequence": 6, "arrival": {"time": "1694889121"}, "stopId": "35873"}, {"stopSequence": 7, "arrival": {"time": "1694889159"}, "stopId": "35872"}, {"stopSequence": 8, "arrival": {"time": "1694889194"}, "stopId": "35871"}, {"stopSequence": 9, "arrival": {"time": "1694889241"}, "stopId": "35484"}, {"stopSequence": 10, "arrival": {"time": "1694889304"}, "stopId": "7175655"}, {"stopSequence": 11, "arrival": {"time": "1694889322"}, "stopId": "35776"}, {"stopSequence": 12, "arrival": {"time": "1694889368"}, "stopId": "35777"}, {"stopSequence": 13, "arrival": {"time": "1694889396"}, "stopId": "35778"}, {"stopSequence": 14, "arrival": {"time": "1694889461"}, "stopId": "35640"}, {"stopSequence": 15, "arrival": {"time": "1694889486"}, "stopId": "35781"}, {"stopSequence": 16, "arrival": {"time": "1694889516"}, "stopId": "35782"}, {"stopSequence": 17, "arrival": {"time": "1694889563"}, "stopId": "91038"}, {"stopSequence": 18, "arrival": {"time": "1694889672"}, "stopId": "35783"}, {"stopSequence": 19, "arrival": {"time": "1694889705"}, "stopId": "31013"}, {"stopSequence": 20, "arrival": {"time": "1694889826"}, "stopId": "35785"}, {"stopSequence": 21, "arrival": {"time": "1694890057"}, "stopId": "35786"}, {"stopSequence": 22, "arrival": {"time": "1694890122"}, "stopId": "35787"}, {"stopSequence": 23, "arrival": {"time": "1694890184"}, "stopId": "35788"}, {"stopSequence": 24, "arrival": {"time": "1694890281"}, "stopId": "35789"}, {"stopSequence": 25, "arrival": {"time": "1694890324"}, "stopId": "35790"}, {"stopSequence": 26, "arrival": {"time": "1694890404"}, "stopId": "35791"}, {"stopSequence": 27, "arrival": {"time": "1694890450"}, "stopId": "35792"}, {"stopSequence": 28, "arrival": {"time": "1694890507"}, "stopId": "35793"}, {"stopSequence": 29, "arrival": {"time": "1694890623"}, "stopId": "91116"}, {"stopSequence": 30, "arrival": {"time": "1694891115"}, "stopId": "35794"}, {"stopSequence": 31, "arrival": {"time": "1694891219"}, "stopId": "35796"}, {"stopSequence": 32, "arrival": {"time": "1694891264"}, "stopId": "35797"}, {"stopSequence": 33, "arrival": {"time": "1694891320"}, "stopId": "35798"}, {"stopSequence": 34, "arrival": {"time": "1694891365"}, "stopId": "35799"}, {"stopSequence": 35, "arrival": {"time": "1694891446"}, "stopId": "35800"}, {"stopSequence": 36, "arrival": {"time": "1694891504"}, "stopId": "35801"}, {"stopSequence": 37, "arrival": {"time": "1694891535"}, "stopId": "35802"}, {"stopSequence": 38, "arrival": {"time": "1694891591"}, "stopId": "35803"}, {"stopSequence": 39, "arrival": {"time": "1694891660"}, "stopId": "38507"}, {"stopSequence": 40, "arrival": {"time": "1694891723"}, "stopId": "34473"}, {"stopSequence": 41, "arrival": {"time": "1694891778"}, "stopId": "38500"}, {"stopSequence": 42, "arrival": {"time": "1694891826"}, "stopId": "35808"}, {"stopSequence": 43, "arrival": {"time": "1694891912"}, "stopId": "35710"}, {"stopSequence": 44, "arrival": {"time": "1694891958"}, "stopId": "50036"}, {"stopSequence": 45, "arrival": {"time": "1694892107"}, "stopId": "35712"}, {"stopSequence": 46, "arrival": {"time": "1694892238"}, "stopId": "35713"}], "vehicle": {"licensePlate": "WC2081"}, "timestamp": "1694888949"}, "vehicle": {"trip": {"tripId": "19556-701ff27f-2", "startTime": "15:45:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "586", "directionId": 0}, "position": {"latitude": -36.842815, "longitude": -73.14676, "bearing": 268.0, "odometer": 0.0, "speed": 8.1}, "timestamp": "1694888949", "vehicle": {"licensePlate": "WC2081"}}}, {"id": "4bc54ac0-cd1f-4c0f-bc05-6d29dd749a8f", "tripUpdate": {"trip": {"tripId": "19552-701ff27f-2", "startTime": "14:45:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "586", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 16, "arrival": {"time": "1694888960"}, "stopId": "35782"}, {"stopSequence": 17, "arrival": {"time": "1694889011"}, "stopId": "91038"}, {"stopSequence": 18, "arrival": {"time": "1694889127"}, "stopId": "35783"}, {"stopSequence": 19, "arrival": {"time": "1694889162"}, "stopId": "31013"}, {"stopSequence": 20, "arrival": {"time": "1694889289"}, "stopId": "35785"}, {"stopSequence": 21, "arrival": {"time": "1694889527"}, "stopId": "35786"}, {"stopSequence": 22, "arrival": {"time": "1694889594"}, "stopId": "35787"}, {"stopSequence": 23, "arrival": {"time": "1694889656"}, "stopId": "35788"}, {"stopSequence": 24, "arrival": {"time": "1694889753"}, "stopId": "35789"}, {"stopSequence": 25, "arrival": {"time": "1694889795"}, "stopId": "35790"}, {"stopSequence": 26, "arrival": {"time": "1694889874"}, "stopId": "35791"}, {"stopSequence": 27, "arrival": {"time": "1694889919"}, "stopId": "35792"}, {"stopSequence": 28, "arrival": {"time": "1694889975"}, "stopId": "35793"}, {"stopSequence": 29, "arrival": {"time": "1694890087"}, "stopId": "91116"}, {"stopSequence": 30, "arrival": {"time": "1694890548"}, "stopId": "35794"}, {"stopSequence": 31, "arrival": {"time": "1694890643"}, "stopId": "35796"}, {"stopSequence": 32, "arrival": {"time": "1694890683"}, "stopId": "35797"}, {"stopSequence": 33, "arrival": {"time": "1694890735"}, "stopId": "35798"}, {"stopSequence": 34, "arrival": {"time": "1694890775"}, "stopId": "35799"}, {"stopSequence": 35, "arrival": {"time": "1694890847"}, "stopId": "35800"}, {"stopSequence": 36, "arrival": {"time": "1694890899"}, "stopId": "35801"}, {"stopSequence": 37, "arrival": {"time": "1694890926"}, "stopId": "35802"}, {"stopSequence": 38, "arrival": {"time": "1694890975"}, "stopId": "35803"}, {"stopSequence": 39, "arrival": {"time": "1694891036"}, "stopId": "38507"}, {"stopSequence": 40, "arrival": {"time": "1694891091"}, "stopId": "34473"}, {"stopSequence": 41, "arrival": {"time": "1694891139"}, "stopId": "38500"}, {"stopSequence": 42, "arrival": {"time": "1694891181"}, "stopId": "35808"}, {"stopSequence": 43, "arrival": {"time": "1694891255"}, "stopId": "35710"}, {"stopSequence": 44, "arrival": {"time": "1694891295"}, "stopId": "50036"}, {"stopSequence": 45, "arrival": {"time": "1694891422"}, "stopId": "35712"}, {"stopSequence": 46, "arrival": {"time": "1694891532"}, "stopId": "35713"}], "vehicle": {"licensePlate": "YU5032"}, "timestamp": "1694888939"}, "vehicle": {"trip": {"tripId": "19552-701ff27f-2", "startTime": "14:45:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "586", "directionId": 0}, "position": {"latitude": -36.854763, "longitude": -73.13467, "bearing": 107.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888939", "vehicle": {"licensePlate": "YU5032"}}}, {"id": "ed563e8e-50d9-4ebe-87e9-e3d78da33a35", "tripUpdate": {"trip": {"tripId": "19627-701ff27f-2", "startTime": "14:38:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "586", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 15, "arrival": {"time": "1694888914"}, "stopId": "35745"}, {"stopSequence": 16, "arrival": {"time": "1694888942"}, "stopId": "15879953"}, {"stopSequence": 17, "arrival": {"time": "1694888965"}, "stopId": "35746"}, {"stopSequence": 18, "arrival": {"time": "1694889562"}, "stopId": "35748"}, {"stopSequence": 19, "arrival": {"time": "1694889623"}, "stopId": "35749"}, {"stopSequence": 20, "arrival": {"time": "1694889668"}, "stopId": "35750"}, {"stopSequence": 21, "arrival": {"time": "1694889744"}, "stopId": "35751"}, {"stopSequence": 22, "arrival": {"time": "1694889854"}, "stopId": "35752"}, {"stopSequence": 23, "arrival": {"time": "1694889989"}, "stopId": "35417"}, {"stopSequence": 24, "arrival": {"time": "1694890059"}, "stopId": "35755"}, {"stopSequence": 25, "arrival": {"time": "1694890266"}, "stopId": "35864"}, {"stopSequence": 26, "arrival": {"time": "1694890383"}, "stopId": "91039"}, {"stopSequence": 27, "arrival": {"time": "1694890524"}, "stopId": "35866"}, {"stopSequence": 28, "arrival": {"time": "1694890563"}, "stopId": "91040"}, {"stopSequence": 29, "arrival": {"time": "1694890603"}, "stopId": "35867"}, {"stopSequence": 30, "arrival": {"time": "1694890634"}, "stopId": "91066"}, {"stopSequence": 31, "arrival": {"time": "1694890684"}, "stopId": "35644"}, {"stopSequence": 32, "arrival": {"time": "1694890730"}, "stopId": "35868"}, {"stopSequence": 33, "arrival": {"time": "1694890755"}, "stopId": "35869"}, {"stopSequence": 34, "arrival": {"time": "1694890782"}, "stopId": "35870"}, {"stopSequence": 35, "arrival": {"time": "1694890818"}, "stopId": "91045"}, {"stopSequence": 36, "arrival": {"time": "1694890846"}, "stopId": "91089"}, {"stopSequence": 37, "arrival": {"time": "1694890876"}, "stopId": "35645"}, {"stopSequence": 38, "arrival": {"time": "1694890927"}, "stopId": "91090"}, {"stopSequence": 39, "arrival": {"time": "1694890981"}, "stopId": "91091"}, {"stopSequence": 40, "arrival": {"time": "1694891019"}, "stopId": "91092"}, {"stopSequence": 41, "arrival": {"time": "1694891059"}, "stopId": "35875"}, {"stopSequence": 42, "arrival": {"time": "1694891234"}, "stopId": "91058"}], "vehicle": {"licensePlate": "YX6713"}, "timestamp": "1694888910"}, "vehicle": {"trip": {"tripId": "19627-701ff27f-2", "startTime": "14:38:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "586", "directionId": 1}, "position": {"latitude": -36.82558, "longitude": -73.05765, "bearing": 240.0, "odometer": 0.0, "speed": 2.2}, "timestamp": "1694888910", "vehicle": {"licensePlate": "YX6713"}}}, {"id": "eafca7c4-5119-42a4-83d8-4a0fe73a56a1", "tripUpdate": {"trip": {"tripId": "19628-701ff27f-2", "startTime": "14:53:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "586", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 14, "arrival": {"time": "1694888894"}, "stopId": "1-Nov"}, {"stopSequence": 15, "arrival": {"time": "1694888953"}, "stopId": "35745"}, {"stopSequence": 16, "arrival": {"time": "1694888980"}, "stopId": "15879953"}, {"stopSequence": 17, "arrival": {"time": "1694889003"}, "stopId": "35746"}, {"stopSequence": 18, "arrival": {"time": "1694889596"}, "stopId": "35748"}, {"stopSequence": 19, "arrival": {"time": "1694889656"}, "stopId": "35749"}, {"stopSequence": 20, "arrival": {"time": "1694889701"}, "stopId": "35750"}, {"stopSequence": 21, "arrival": {"time": "1694889776"}, "stopId": "35751"}, {"stopSequence": 22, "arrival": {"time": "1694889887"}, "stopId": "35752"}, {"stopSequence": 23, "arrival": {"time": "1694890022"}, "stopId": "35417"}, {"stopSequence": 24, "arrival": {"time": "1694890092"}, "stopId": "35755"}, {"stopSequence": 25, "arrival": {"time": "1694890299"}, "stopId": "35864"}, {"stopSequence": 26, "arrival": {"time": "1694890418"}, "stopId": "91039"}, {"stopSequence": 27, "arrival": {"time": "1694890560"}, "stopId": "35866"}, {"stopSequence": 28, "arrival": {"time": "1694890599"}, "stopId": "91040"}, {"stopSequence": 29, "arrival": {"time": "1694890639"}, "stopId": "35867"}, {"stopSequence": 30, "arrival": {"time": "1694890670"}, "stopId": "91066"}, {"stopSequence": 31, "arrival": {"time": "1694890720"}, "stopId": "35644"}, {"stopSequence": 32, "arrival": {"time": "1694890768"}, "stopId": "35868"}, {"stopSequence": 33, "arrival": {"time": "1694890793"}, "stopId": "35869"}, {"stopSequence": 34, "arrival": {"time": "1694890819"}, "stopId": "35870"}, {"stopSequence": 35, "arrival": {"time": "1694890856"}, "stopId": "91045"}, {"stopSequence": 36, "arrival": {"time": "1694890885"}, "stopId": "91089"}, {"stopSequence": 37, "arrival": {"time": "1694890915"}, "stopId": "35645"}, {"stopSequence": 38, "arrival": {"time": "1694890967"}, "stopId": "91090"}, {"stopSequence": 39, "arrival": {"time": "1694891021"}, "stopId": "91091"}, {"stopSequence": 40, "arrival": {"time": "1694891060"}, "stopId": "91092"}, {"stopSequence": 41, "arrival": {"time": "1694891100"}, "stopId": "35875"}, {"stopSequence": 42, "arrival": {"time": "1694891277"}, "stopId": "91058"}], "vehicle": {"licensePlate": "ZJ6737"}, "timestamp": "1694888879"}, "vehicle": {"trip": {"tripId": "19628-701ff27f-2", "startTime": "14:53:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "586", "directionId": 1}, "position": {"latitude": -36.82421, "longitude": -73.054306, "bearing": 242.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888879", "vehicle": {"licensePlate": "ZJ6737"}}}, {"id": "a1ff5980-5ff4-429c-a120-2526f037f89e", "tripUpdate": {"trip": {"tripId": "19630-701ff27f-2", "startTime": "15:23:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "586", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 6, "arrival": {"time": "1694888898"}, "stopId": "8276831"}, {"stopSequence": 7, "arrival": {"time": "1694888928"}, "stopId": "1-Apr"}, {"stopSequence": 8, "arrival": {"time": "1694888980"}, "stopId": "1-May"}, {"stopSequence": 9, "arrival": {"time": "1694889023"}, "stopId": "1-Jun"}, {"stopSequence": 10, "arrival": {"time": "1694889083"}, "stopId": "1-Jul"}, {"stopSequence": 11, "arrival": {"time": "1694889117"}, "stopId": "1-Aug"}, {"stopSequence": 12, "arrival": {"time": "1694889157"}, "stopId": "1-Sep"}, {"stopSequence": 13, "arrival": {"time": "1694889220"}, "stopId": "1-Oct"}, {"stopSequence": 14, "arrival": {"time": "1694889271"}, "stopId": "1-Nov"}, {"stopSequence": 15, "arrival": {"time": "1694889326"}, "stopId": "35745"}, {"stopSequence": 16, "arrival": {"time": "1694889352"}, "stopId": "15879953"}, {"stopSequence": 17, "arrival": {"time": "1694889374"}, "stopId": "35746"}, {"stopSequence": 18, "arrival": {"time": "1694889949"}, "stopId": "35748"}, {"stopSequence": 19, "arrival": {"time": "1694890009"}, "stopId": "35749"}, {"stopSequence": 20, "arrival": {"time": "1694890053"}, "stopId": "35750"}, {"stopSequence": 21, "arrival": {"time": "1694890129"}, "stopId": "35751"}, {"stopSequence": 22, "arrival": {"time": "1694890240"}, "stopId": "35752"}, {"stopSequence": 23, "arrival": {"time": "1694890377"}, "stopId": "35417"}, {"stopSequence": 24, "arrival": {"time": "1694890449"}, "stopId": "35755"}, {"stopSequence": 25, "arrival": {"time": "1694890663"}, "stopId": "35864"}, {"stopSequence": 26, "arrival": {"time": "1694890787"}, "stopId": "91039"}, {"stopSequence": 27, "arrival": {"time": "1694890937"}, "stopId": "35866"}, {"stopSequence": 28, "arrival": {"time": "1694890979"}, "stopId": "91040"}, {"stopSequence": 29, "arrival": {"time": "1694891021"}, "stopId": "35867"}, {"stopSequence": 30, "arrival": {"time": "1694891054"}, "stopId": "91066"}, {"stopSequence": 31, "arrival": {"time": "1694891108"}, "stopId": "35644"}, {"stopSequence": 32, "arrival": {"time": "1694891158"}, "stopId": "35868"}, {"stopSequence": 33, "arrival": {"time": "1694891185"}, "stopId": "35869"}, {"stopSequence": 34, "arrival": {"time": "1694891214"}, "stopId": "35870"}, {"stopSequence": 35, "arrival": {"time": "1694891253"}, "stopId": "91045"}, {"stopSequence": 36, "arrival": {"time": "1694891284"}, "stopId": "91089"}, {"stopSequence": 37, "arrival": {"time": "1694891317"}, "stopId": "35645"}, {"stopSequence": 38, "arrival": {"time": "1694891373"}, "stopId": "91090"}, {"stopSequence": 39, "arrival": {"time": "1694891432"}, "stopId": "91091"}, {"stopSequence": 40, "arrival": {"time": "1694891474"}, "stopId": "91092"}, {"stopSequence": 41, "arrival": {"time": "1694891518"}, "stopId": "35875"}, {"stopSequence": 42, "arrival": {"time": "1694891713"}, "stopId": "91058"}], "vehicle": {"licensePlate": "ZT3763"}, "timestamp": "1694888888"}, "vehicle": {"trip": {"tripId": "19630-701ff27f-2", "startTime": "15:23:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "586", "directionId": 1}, "position": {"latitude": -36.816887, "longitude": -73.036575, "bearing": 242.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888888", "vehicle": {"licensePlate": "ZT3763"}}}, {"id": "59f24102-217d-43ca-a1d6-f1a7d3e4fdfd", "tripUpdate": {"trip": {"tripId": "19555-701ff27f-2", "startTime": "15:30:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "586", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 21, "arrival": {"time": "1694888921"}, "stopId": "35786"}, {"stopSequence": 22, "arrival": {"time": "1694888993"}, "stopId": "35787"}, {"stopSequence": 23, "arrival": {"time": "1694889059"}, "stopId": "35788"}, {"stopSequence": 24, "arrival": {"time": "1694889163"}, "stopId": "35789"}, {"stopSequence": 25, "arrival": {"time": "1694889208"}, "stopId": "35790"}, {"stopSequence": 26, "arrival": {"time": "1694889290"}, "stopId": "35791"}, {"stopSequence": 27, "arrival": {"time": "1694889337"}, "stopId": "35792"}, {"stopSequence": 28, "arrival": {"time": "1694889395"}, "stopId": "35793"}, {"stopSequence": 29, "arrival": {"time": "1694889509"}, "stopId": "91116"}, {"stopSequence": 30, "arrival": {"time": "1694889966"}, "stopId": "35794"}, {"stopSequence": 31, "arrival": {"time": "1694890057"}, "stopId": "35796"}, {"stopSequence": 32, "arrival": {"time": "1694890096"}, "stopId": "35797"}, {"stopSequence": 33, "arrival": {"time": "1694890144"}, "stopId": "35798"}, {"stopSequence": 34, "arrival": {"time": "1694890182"}, "stopId": "35799"}, {"stopSequence": 35, "arrival": {"time": "1694890250"}, "stopId": "35800"}, {"stopSequence": 36, "arrival": {"time": "1694890299"}, "stopId": "35801"}, {"stopSequence": 37, "arrival": {"time": "1694890324"}, "stopId": "35802"}, {"stopSequence": 38, "arrival": {"time": "1694890370"}, "stopId": "35803"}, {"stopSequence": 39, "arrival": {"time": "1694890425"}, "stopId": "38507"}, {"stopSequence": 40, "arrival": {"time": "1694890476"}, "stopId": "34473"}, {"stopSequence": 41, "arrival": {"time": "1694890520"}, "stopId": "38500"}, {"stopSequence": 42, "arrival": {"time": "1694890558"}, "stopId": "35808"}, {"stopSequence": 43, "arrival": {"time": "1694890624"}, "stopId": "35710"}, {"stopSequence": 44, "arrival": {"time": "1694890660"}, "stopId": "50036"}, {"stopSequence": 45, "arrival": {"time": "1694890773"}, "stopId": "35712"}, {"stopSequence": 46, "arrival": {"time": "1694890871"}, "stopId": "35713"}], "vehicle": {"licensePlate": "ZT3966"}, "timestamp": "1694888918"}, "vehicle": {"trip": {"tripId": "19555-701ff27f-2", "startTime": "15:30:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "586", "directionId": 0}, "position": {"latitude": -36.837692, "longitude": -73.11749, "bearing": 97.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888918", "vehicle": {"licensePlate": "ZT3966"}}}, {"id": "8f5183a0-a2ba-45a2-b66b-c166ac75eff4", "tripUpdate": {"trip": {"tripId": "19626-701ff27f-2", "startTime": "14:23:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "586", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 26, "arrival": {"time": "1694888996"}, "stopId": "91039"}, {"stopSequence": 27, "arrival": {"time": "1694889145"}, "stopId": "35866"}, {"stopSequence": 28, "arrival": {"time": "1694889185"}, "stopId": "91040"}, {"stopSequence": 29, "arrival": {"time": "1694889226"}, "stopId": "35867"}, {"stopSequence": 30, "arrival": {"time": "1694889256"}, "stopId": "91066"}, {"stopSequence": 31, "arrival": {"time": "1694889306"}, "stopId": "35644"}, {"stopSequence": 32, "arrival": {"time": "1694889352"}, "stopId": "35868"}, {"stopSequence": 33, "arrival": {"time": "1694889376"}, "stopId": "35869"}, {"stopSequence": 34, "arrival": {"time": "1694889402"}, "stopId": "35870"}, {"stopSequence": 35, "arrival": {"time": "1694889436"}, "stopId": "91045"}, {"stopSequence": 36, "arrival": {"time": "1694889463"}, "stopId": "91089"}, {"stopSequence": 37, "arrival": {"time": "1694889492"}, "stopId": "35645"}, {"stopSequence": 38, "arrival": {"time": "1694889539"}, "stopId": "91090"}, {"stopSequence": 39, "arrival": {"time": "1694889589"}, "stopId": "91091"}, {"stopSequence": 40, "arrival": {"time": "1694889623"}, "stopId": "91092"}, {"stopSequence": 41, "arrival": {"time": "1694889659"}, "stopId": "35875"}, {"stopSequence": 42, "arrival": {"time": "1694889812"}, "stopId": "91058"}], "vehicle": {"licensePlate": "ZT4052"}, "timestamp": "1694888952"}, "vehicle": {"trip": {"tripId": "19626-701ff27f-2", "startTime": "14:23:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "586", "directionId": 1}, "position": {"latitude": -36.84504, "longitude": -73.13036, "bearing": 191.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888952", "vehicle": {"licensePlate": "ZT4052"}}}, {"id": "a42728e7-5283-452c-a193-9bf516b8a0a8", "tripUpdate": {"trip": {"tripId": "19301-701ff27f-2", "startTime": "13:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "587", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 52, "arrival": {"time": "1694888578"}, "stopId": "35645"}, {"stopSequence": 53, "arrival": {"time": "1694888631"}, "stopId": "35646"}, {"stopSequence": 54, "arrival": {"time": "1694888668"}, "stopId": "35647"}, {"stopSequence": 55, "arrival": {"time": "1694888699"}, "stopId": "35648"}], "vehicle": {"licensePlate": "FHZZ92"}, "timestamp": "1694888528"}, "vehicle": {"trip": {"tripId": "19301-701ff27f-2", "startTime": "13:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "587", "directionId": 1}, "position": {"latitude": -36.84664, "longitude": -73.144, "bearing": 101.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888740", "vehicle": {"licensePlate": "FHZZ92"}}}, {"id": "52d2c045-6fee-49cd-a14c-9d59b4b41b49", "tripUpdate": {"trip": {"tripId": "19302-701ff27f-2", "startTime": "13:31:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "587", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 55, "arrival": {"time": "1694888770"}, "stopId": "35648"}], "vehicle": {"licensePlate": "HYYX57"}, "timestamp": "1694888765"}, "vehicle": {"trip": {"tripId": "19302-701ff27f-2", "startTime": "13:31:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "587", "directionId": 1}, "position": {"latitude": -36.84484, "longitude": -73.144516, "bearing": 355.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888823", "vehicle": {"licensePlate": "HYYX57"}}}, {"id": "ded46826-2669-46d9-8e3c-46ad99999eef", "tripUpdate": {"trip": {"tripId": "19303-701ff27f-2", "startTime": "14:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "587", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 18, "arrival": {"time": "1694888936"}, "stopId": "40272"}, {"stopSequence": 19, "arrival": {"time": "1694889077"}, "stopId": "39545"}, {"stopSequence": 20, "arrival": {"time": "1694889514"}, "stopId": "39541"}, {"stopSequence": 21, "arrival": {"time": "1694889544"}, "stopId": "39542"}, {"stopSequence": 22, "arrival": {"time": "1694889579"}, "stopId": "39543"}, {"stopSequence": 23, "arrival": {"time": "1694889764"}, "stopId": "35749"}, {"stopSequence": 24, "arrival": {"time": "1694889809"}, "stopId": "35750"}, {"stopSequence": 25, "arrival": {"time": "1694889884"}, "stopId": "35751"}, {"stopSequence": 26, "arrival": {"time": "1694889994"}, "stopId": "35752"}, {"stopSequence": 27, "arrival": {"time": "1694890129"}, "stopId": "35417"}, {"stopSequence": 28, "arrival": {"time": "1694890200"}, "stopId": "35755"}, {"stopSequence": 29, "arrival": {"time": "1694890409"}, "stopId": "35864"}, {"stopSequence": 30, "arrival": {"time": "1694890507"}, "stopId": "35865"}, {"stopSequence": 31, "arrival": {"time": "1694890555"}, "stopId": "35233"}, {"stopSequence": 32, "arrival": {"time": "1694890710"}, "stopId": "35234"}, {"stopSequence": 33, "arrival": {"time": "1694891062"}, "stopId": "35235"}, {"stopSequence": 34, "arrival": {"time": "1694891204"}, "stopId": "35236"}, {"stopSequence": 35, "arrival": {"time": "1694891424"}, "stopId": "91096"}, {"stopSequence": 36, "arrival": {"time": "1694891624"}, "stopId": "91097"}, {"stopSequence": 37, "arrival": {"time": "1694891802"}, "stopId": "91098"}, {"stopSequence": 38, "arrival": {"time": "1694891888"}, "stopId": "91099"}, {"stopSequence": 39, "arrival": {"time": "1694891931"}, "stopId": "91100"}, {"stopSequence": 40, "arrival": {"time": "1694891995"}, "stopId": "91101"}, {"stopSequence": 41, "arrival": {"time": "1694892045"}, "stopId": "91102"}, {"stopSequence": 42, "arrival": {"time": "1694892119"}, "stopId": "91103"}, {"stopSequence": 43, "arrival": {"time": "1694892243"}, "stopId": "91104"}, {"stopSequence": 44, "arrival": {"time": "1694892375"}, "stopId": "91105"}, {"stopSequence": 45, "arrival": {"time": "1694892871"}, "stopId": "91106"}, {"stopSequence": 46, "arrival": {"time": "1694892956"}, "stopId": "91107"}, {"stopSequence": 47, "arrival": {"time": "1694893036"}, "stopId": "91108"}, {"stopSequence": 48, "arrival": {"time": "1694893144"}, "stopId": "91109"}, {"stopSequence": 49, "arrival": {"time": "1694894042"}, "stopId": "91110"}, {"stopSequence": 50, "arrival": {"time": "1694894262"}, "stopId": "91111"}, {"stopSequence": 51, "arrival": {"time": "1694894426"}, "stopId": "91112"}, {"stopSequence": 52, "arrival": {"time": "1694894596"}, "stopId": "35645"}, {"stopSequence": 53, "arrival": {"time": "1694894734"}, "stopId": "35646"}, {"stopSequence": 54, "arrival": {"time": "1694894831"}, "stopId": "35647"}, {"stopSequence": 55, "arrival": {"time": "1694894918"}, "stopId": "35648"}], "vehicle": {"licensePlate": "LHFC91"}, "timestamp": "1694888888"}, "vehicle": {"trip": {"tripId": "19303-701ff27f-2", "startTime": "14:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "587", "directionId": 1}, "position": {"latitude": -36.828667, "longitude": -73.06496, "bearing": 250.0, "odometer": 0.0, "speed": 16.2}, "timestamp": "1694888888", "vehicle": {"licensePlate": "LHFC91"}}}, {"id": "5cccf38a-2d11-4475-becc-28ce4afb3acd", "tripUpdate": {"trip": {"tripId": "19342-701ff27f-2", "startTime": "14:28:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "587", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 39, "arrival": {"time": "1694889041"}, "stopId": "35796"}, {"stopSequence": 40, "arrival": {"time": "1694889093"}, "stopId": "35797"}, {"stopSequence": 41, "arrival": {"time": "1694889136"}, "stopId": "35798"}, {"stopSequence": 42, "arrival": {"time": "1694889176"}, "stopId": "35799"}, {"stopSequence": 43, "arrival": {"time": "1694889248"}, "stopId": "35800"}, {"stopSequence": 44, "arrival": {"time": "1694889298"}, "stopId": "35801"}, {"stopSequence": 45, "arrival": {"time": "1694889324"}, "stopId": "35802"}, {"stopSequence": 46, "arrival": {"time": "1694889370"}, "stopId": "35803"}, {"stopSequence": 47, "arrival": {"time": "1694889427"}, "stopId": "38507"}, {"stopSequence": 48, "arrival": {"time": "1694889478"}, "stopId": "34473"}, {"stopSequence": 49, "arrival": {"time": "1694889521"}, "stopId": "38500"}, {"stopSequence": 50, "arrival": {"time": "1694889558"}, "stopId": "35808"}, {"stopSequence": 51, "arrival": {"time": "1694889624"}, "stopId": "35710"}, {"stopSequence": 52, "arrival": {"time": "1694889668"}, "stopId": "50036"}, {"stopSequence": 53, "arrival": {"time": "1694889762"}, "stopId": "35712"}, {"stopSequence": 54, "arrival": {"time": "1694889856"}, "stopId": "35713"}], "vehicle": {"licensePlate": "YE2810"}, "timestamp": "1694888947"}, "vehicle": {"trip": {"tripId": "19342-701ff27f-2", "startTime": "14:28:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "587", "directionId": 0}, "position": {"latitude": -36.828613, "longitude": -73.063995, "bearing": 48.0, "odometer": 0.0, "speed": 2.2}, "timestamp": "1694888947", "vehicle": {"licensePlate": "YE2810"}}}, {"id": "15c1d274-eb5a-4c3f-a910-504a076427b2", "tripUpdate": {"trip": {"tripId": "19343-701ff27f-2", "startTime": "14:58:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "587", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 9, "arrival": {"time": "1694888972"}, "stopId": "91003"}, {"stopSequence": 10, "arrival": {"time": "1694889157"}, "stopId": "91004"}, {"stopSequence": 11, "arrival": {"time": "1694889237"}, "stopId": "91005"}, {"stopSequence": 12, "arrival": {"time": "1694889285"}, "stopId": "91156"}, {"stopSequence": 13, "arrival": {"time": "1694889327"}, "stopId": "91006"}, {"stopSequence": 14, "arrival": {"time": "1694889369"}, "stopId": "91157"}, {"stopSequence": 15, "arrival": {"time": "1694889561"}, "stopId": "50005"}, {"stopSequence": 16, "arrival": {"time": "1694889646"}, "stopId": "35259"}, {"stopSequence": 17, "arrival": {"time": "1694889777"}, "stopId": "35268"}, {"stopSequence": 18, "arrival": {"time": "1694889809"}, "stopId": "35269"}, {"stopSequence": 19, "arrival": {"time": "1694889855"}, "stopId": "35270"}, {"stopSequence": 20, "arrival": {"time": "1694890025"}, "stopId": "35271"}, {"stopSequence": 21, "arrival": {"time": "1694890334"}, "stopId": "35272"}, {"stopSequence": 22, "arrival": {"time": "1694890507"}, "stopId": "35273"}, {"stopSequence": 23, "arrival": {"time": "1694890545"}, "stopId": "35274"}, {"stopSequence": 24, "arrival": {"time": "1694890644"}, "stopId": "35785"}, {"stopSequence": 25, "arrival": {"time": "1694890896"}, "stopId": "35786"}, {"stopSequence": 26, "arrival": {"time": "1694890966"}, "stopId": "35787"}, {"stopSequence": 27, "arrival": {"time": "1694891034"}, "stopId": "35788"}, {"stopSequence": 28, "arrival": {"time": "1694891143"}, "stopId": "35789"}, {"stopSequence": 29, "arrival": {"time": "1694891192"}, "stopId": "35790"}, {"stopSequence": 30, "arrival": {"time": "1694891284"}, "stopId": "35791"}, {"stopSequence": 31, "arrival": {"time": "1694891337"}, "stopId": "35792"}, {"stopSequence": 32, "arrival": {"time": "1694891403"}, "stopId": "35793"}, {"stopSequence": 33, "arrival": {"time": "1694891484"}, "stopId": "39973"}, {"stopSequence": 34, "arrival": {"time": "1694891622"}, "stopId": "39974"}, {"stopSequence": 35, "arrival": {"time": "1694891668"}, "stopId": "39975"}, {"stopSequence": 36, "arrival": {"time": "1694892401"}, "stopId": "35225"}, {"stopSequence": 37, "arrival": {"time": "1694892528"}, "stopId": "16039072"}, {"stopSequence": 38, "arrival": {"time": "1694892559"}, "stopId": "35794"}, {"stopSequence": 39, "arrival": {"time": "1694892709"}, "stopId": "35796"}, {"stopSequence": 40, "arrival": {"time": "1694892790"}, "stopId": "35797"}, {"stopSequence": 41, "arrival": {"time": "1694892859"}, "stopId": "35798"}, {"stopSequence": 42, "arrival": {"time": "1694892926"}, "stopId": "35799"}, {"stopSequence": 43, "arrival": {"time": "1694893048"}, "stopId": "35800"}, {"stopSequence": 44, "arrival": {"time": "1694893137"}, "stopId": "35801"}, {"stopSequence": 45, "arrival": {"time": "1694893184"}, "stopId": "35802"}, {"stopSequence": 46, "arrival": {"time": "1694893271"}, "stopId": "35803"}, {"stopSequence": 47, "arrival": {"time": "1694893380"}, "stopId": "38507"}, {"stopSequence": 48, "arrival": {"time": "1694893480"}, "stopId": "34473"}, {"stopSequence": 49, "arrival": {"time": "1694893570"}, "stopId": "38500"}, {"stopSequence": 50, "arrival": {"time": "1694893648"}, "stopId": "35808"}, {"stopSequence": 51, "arrival": {"time": "1694893789"}, "stopId": "35710"}, {"stopSequence": 52, "arrival": {"time": "1694893888"}, "stopId": "50036"}, {"stopSequence": 53, "arrival": {"time": "1694894109"}, "stopId": "35712"}, {"stopSequence": 54, "arrival": {"time": "1694894346"}, "stopId": "35713"}], "vehicle": {"licensePlate": "YX6703"}, "timestamp": "1694888926"}, "vehicle": {"trip": {"tripId": "19343-701ff27f-2", "startTime": "14:58:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "587", "directionId": 0}, "position": {"latitude": -36.897297, "longitude": -73.15, "bearing": 182.0, "odometer": 0.0, "speed": 36.2}, "timestamp": "1694888926", "vehicle": {"licensePlate": "YX6703"}}}, {"id": "fd8c0ad2-0497-4c4f-b3e4-8edbbcd513ea", "tripUpdate": {"trip": {"tripId": "19742-701ff27f-2", "startTime": "15:16:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "588", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 20, "arrival": {"time": "1694888962"}, "stopId": "44635"}, {"stopSequence": 21, "arrival": {"time": "1694889023"}, "stopId": "5020123"}, {"stopSequence": 22, "arrival": {"time": "1694889082"}, "stopId": "5020122"}, {"stopSequence": 23, "arrival": {"time": "1694889158"}, "stopId": "44642"}, {"stopSequence": 24, "arrival": {"time": "1694889203"}, "stopId": "44643"}, {"stopSequence": 25, "arrival": {"time": "1694889243"}, "stopId": "44644"}, {"stopSequence": 26, "arrival": {"time": "1694889337"}, "stopId": "91116"}, {"stopSequence": 27, "arrival": {"time": "1694889800"}, "stopId": "35794"}, {"stopSequence": 28, "arrival": {"time": "1694889890"}, "stopId": "35796"}, {"stopSequence": 29, "arrival": {"time": "1694889938"}, "stopId": "35797"}, {"stopSequence": 30, "arrival": {"time": "1694889977"}, "stopId": "35798"}, {"stopSequence": 31, "arrival": {"time": "1694890015"}, "stopId": "35799"}, {"stopSequence": 32, "arrival": {"time": "1694890082"}, "stopId": "35800"}, {"stopSequence": 33, "arrival": {"time": "1694890130"}, "stopId": "35801"}, {"stopSequence": 34, "arrival": {"time": "1694890155"}, "stopId": "35802"}, {"stopSequence": 35, "arrival": {"time": "1694890202"}, "stopId": "35803"}, {"stopSequence": 36, "arrival": {"time": "1694890256"}, "stopId": "38507"}, {"stopSequence": 37, "arrival": {"time": "1694890305"}, "stopId": "34473"}, {"stopSequence": 38, "arrival": {"time": "1694890348"}, "stopId": "38500"}, {"stopSequence": 39, "arrival": {"time": "1694890394"}, "stopId": "35808"}, {"stopSequence": 40, "arrival": {"time": "1694890478"}, "stopId": "35814"}, {"stopSequence": 41, "arrival": {"time": "1694890546"}, "stopId": "35815"}, {"stopSequence": 42, "arrival": {"time": "1694890580"}, "stopId": "35816"}, {"stopSequence": 43, "arrival": {"time": "1694890592"}, "stopId": "35817"}, {"stopSequence": 44, "arrival": {"time": "1694890627"}, "stopId": "35818"}, {"stopSequence": 45, "arrival": {"time": "1694890666"}, "stopId": "35819"}, {"stopSequence": 46, "arrival": {"time": "1694890730"}, "stopId": "49417"}, {"stopSequence": 47, "arrival": {"time": "1694890808"}, "stopId": "49421"}, {"stopSequence": 48, "arrival": {"time": "1694890837"}, "stopId": "49422"}, {"stopSequence": 49, "arrival": {"time": "1694890920"}, "stopId": "49539"}, {"stopSequence": 50, "arrival": {"time": "1694890978"}, "stopId": "44677"}, {"stopSequence": 51, "arrival": {"time": "1694890991"}, "stopId": "44671"}, {"stopSequence": 52, "arrival": {"time": "1694891089"}, "stopId": "44674"}, {"stopSequence": 53, "arrival": {"time": "1694891115"}, "stopId": "44675"}, {"stopSequence": 54, "arrival": {"time": "1694891137"}, "stopId": "44776"}, {"stopSequence": 55, "arrival": {"time": "1694891162"}, "stopId": "44676"}], "vehicle": {"licensePlate": "FHDP34"}, "timestamp": "1694888956"}, "vehicle": {"trip": {"tripId": "19742-701ff27f-2", "startTime": "15:16:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "588", "directionId": 0}, "position": {"latitude": -36.8428, "longitude": -73.104614, "bearing": 122.0, "odometer": 0.0, "speed": 9.2}, "timestamp": "1694888956", "vehicle": {"licensePlate": "FHDP34"}}}, {"id": "c7652364-df72-43a0-98a8-a0c044f6c096", "tripUpdate": {"trip": {"tripId": "19852-701ff27f-2", "startTime": "13:49:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "588", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 49, "arrival": {"time": "1694888755"}, "stopId": "35666"}, {"stopSequence": 50, "arrival": {"time": "1694888799"}, "stopId": "35667"}, {"stopSequence": 51, "arrival": {"time": "1694888882"}, "stopId": "35669"}, {"stopSequence": 52, "arrival": {"time": "1694889004"}, "stopId": "35854"}, {"stopSequence": 53, "arrival": {"time": "1694889045"}, "stopId": "35430"}], "vehicle": {"licensePlate": "FXJS41"}, "timestamp": "1694888746"}, "vehicle": {"trip": {"tripId": "19852-701ff27f-2", "startTime": "13:49:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "588", "directionId": 1}, "position": {"latitude": -36.827488, "longitude": -73.12177, "bearing": 295.0, "odometer": 0.0, "speed": 19.4}, "timestamp": "1694888880", "vehicle": {"licensePlate": "FXJS41"}}}, {"id": "9a00609b-636c-47d9-8226-fb7611cc0419", "tripUpdate": {"trip": {"tripId": "19853-701ff27f-2", "startTime": "14:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "588", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 46, "arrival": {"time": "1694888921"}, "stopId": "35418"}, {"stopSequence": 47, "arrival": {"time": "1694888941"}, "stopId": "35664"}, {"stopSequence": 48, "arrival": {"time": "1694888977"}, "stopId": "91051"}, {"stopSequence": 49, "arrival": {"time": "1694889012"}, "stopId": "35666"}, {"stopSequence": 50, "arrival": {"time": "1694889055"}, "stopId": "35667"}, {"stopSequence": 51, "arrival": {"time": "1694889136"}, "stopId": "35669"}, {"stopSequence": 52, "arrival": {"time": "1694889257"}, "stopId": "35854"}, {"stopSequence": 53, "arrival": {"time": "1694889298"}, "stopId": "35430"}], "vehicle": {"licensePlate": "FXZY58"}, "timestamp": "1694888912"}, "vehicle": {"trip": {"tripId": "19853-701ff27f-2", "startTime": "14:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "588", "directionId": 1}, "position": {"latitude": -36.83748, "longitude": -73.11793, "bearing": 272.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888912", "vehicle": {"licensePlate": "FXZY58"}}}, {"id": "9a42a77e-ba42-4810-86d7-f2468e089d05", "tripUpdate": {"trip": {"tripId": "19854-701ff27f-2", "startTime": "14:13:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "588", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 28, "arrival": {"time": "1694888978"}, "stopId": "35223"}, {"stopSequence": 29, "arrival": {"time": "1694889019"}, "stopId": "39547"}, {"stopSequence": 30, "arrival": {"time": "1694889107"}, "stopId": "35224"}, {"stopSequence": 31, "arrival": {"time": "1694889292"}, "stopId": "35225"}, {"stopSequence": 32, "arrival": {"time": "1694889876"}, "stopId": "35409"}, {"stopSequence": 33, "arrival": {"time": "1694889911"}, "stopId": "35411"}, {"stopSequence": 34, "arrival": {"time": "1694889944"}, "stopId": "35412"}, {"stopSequence": 35, "arrival": {"time": "1694890050"}, "stopId": "44716"}, {"stopSequence": 36, "arrival": {"time": "1694890087"}, "stopId": "44717"}, {"stopSequence": 37, "arrival": {"time": "1694890157"}, "stopId": "44718"}, {"stopSequence": 38, "arrival": {"time": "1694890185"}, "stopId": "90010"}, {"stopSequence": 39, "arrival": {"time": "1694890333"}, "stopId": "44722"}, {"stopSequence": 40, "arrival": {"time": "1694890368"}, "stopId": "44723"}, {"stopSequence": 41, "arrival": {"time": "1694890417"}, "stopId": "44724"}, {"stopSequence": 42, "arrival": {"time": "1694890452"}, "stopId": "44725"}, {"stopSequence": 43, "arrival": {"time": "1694890487"}, "stopId": "44726"}, {"stopSequence": 44, "arrival": {"time": "1694890562"}, "stopId": "44727"}, {"stopSequence": 45, "arrival": {"time": "1694890597"}, "stopId": "35417"}, {"stopSequence": 46, "arrival": {"time": "1694890658"}, "stopId": "35418"}, {"stopSequence": 47, "arrival": {"time": "1694890676"}, "stopId": "35664"}, {"stopSequence": 48, "arrival": {"time": "1694890712"}, "stopId": "91051"}, {"stopSequence": 49, "arrival": {"time": "1694890745"}, "stopId": "35666"}, {"stopSequence": 50, "arrival": {"time": "1694890788"}, "stopId": "35667"}, {"stopSequence": 51, "arrival": {"time": "1694890870"}, "stopId": "35669"}, {"stopSequence": 52, "arrival": {"time": "1694890995"}, "stopId": "35854"}, {"stopSequence": 53, "arrival": {"time": "1694891038"}, "stopId": "35430"}], "vehicle": {"licensePlate": "GZSS52"}, "timestamp": "1694888925"}, "vehicle": {"trip": {"tripId": "19854-701ff27f-2", "startTime": "14:13:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "588", "directionId": 1}, "position": {"latitude": -36.83102, "longitude": -73.05643, "bearing": 151.0, "odometer": 0.0, "speed": 10.8}, "timestamp": "1694888925", "vehicle": {"licensePlate": "GZSS52"}}}, {"id": "341f5276-49ff-4190-972e-9764e23c2439", "tripUpdate": {"trip": {"tripId": "19743-701ff27f-2", "startTime": "15:24:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "588", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 10, "arrival": {"time": "1694888971"}, "stopId": "35858"}, {"stopSequence": 11, "arrival": {"time": "1694889021"}, "stopId": "35859"}, {"stopSequence": 12, "arrival": {"time": "1694889044"}, "stopId": "35665"}, {"stopSequence": 13, "arrival": {"time": "1694889077"}, "stopId": "35861"}, {"stopSequence": 14, "arrival": {"time": "1694889169"}, "stopId": "91119"}, {"stopSequence": 15, "arrival": {"time": "1694889184"}, "stopId": "44629"}, {"stopSequence": 16, "arrival": {"time": "1694889257"}, "stopId": "91007"}, {"stopSequence": 17, "arrival": {"time": "1694889277"}, "stopId": "44630"}, {"stopSequence": 18, "arrival": {"time": "1694889309"}, "stopId": "44631"}, {"stopSequence": 19, "arrival": {"time": "1694889385"}, "stopId": "44633"}, {"stopSequence": 20, "arrival": {"time": "1694889455"}, "stopId": "44635"}, {"stopSequence": 21, "arrival": {"time": "1694889511"}, "stopId": "5020123"}, {"stopSequence": 22, "arrival": {"time": "1694889567"}, "stopId": "5020122"}, {"stopSequence": 23, "arrival": {"time": "1694889639"}, "stopId": "44642"}, {"stopSequence": 24, "arrival": {"time": "1694889681"}, "stopId": "44643"}, {"stopSequence": 25, "arrival": {"time": "1694889719"}, "stopId": "44644"}, {"stopSequence": 26, "arrival": {"time": "1694889809"}, "stopId": "91116"}, {"stopSequence": 27, "arrival": {"time": "1694890264"}, "stopId": "35794"}, {"stopSequence": 28, "arrival": {"time": "1694890356"}, "stopId": "35796"}, {"stopSequence": 29, "arrival": {"time": "1694890404"}, "stopId": "35797"}, {"stopSequence": 30, "arrival": {"time": "1694890444"}, "stopId": "35798"}, {"stopSequence": 31, "arrival": {"time": "1694890483"}, "stopId": "35799"}, {"stopSequence": 32, "arrival": {"time": "1694890552"}, "stopId": "35800"}, {"stopSequence": 33, "arrival": {"time": "1694890602"}, "stopId": "35801"}, {"stopSequence": 34, "arrival": {"time": "1694890628"}, "stopId": "35802"}, {"stopSequence": 35, "arrival": {"time": "1694890676"}, "stopId": "35803"}, {"stopSequence": 36, "arrival": {"time": "1694890733"}, "stopId": "38507"}, {"stopSequence": 37, "arrival": {"time": "1694890785"}, "stopId": "34473"}, {"stopSequence": 38, "arrival": {"time": "1694890830"}, "stopId": "38500"}, {"stopSequence": 39, "arrival": {"time": "1694890878"}, "stopId": "35808"}, {"stopSequence": 40, "arrival": {"time": "1694890968"}, "stopId": "35814"}, {"stopSequence": 41, "arrival": {"time": "1694891041"}, "stopId": "35815"}, {"stopSequence": 42, "arrival": {"time": "1694891077"}, "stopId": "35816"}, {"stopSequence": 43, "arrival": {"time": "1694891091"}, "stopId": "35817"}, {"stopSequence": 44, "arrival": {"time": "1694891128"}, "stopId": "35818"}, {"stopSequence": 45, "arrival": {"time": "1694891171"}, "stopId": "35819"}, {"stopSequence": 46, "arrival": {"time": "1694891240"}, "stopId": "49417"}, {"stopSequence": 47, "arrival": {"time": "1694891325"}, "stopId": "49421"}, {"stopSequence": 48, "arrival": {"time": "1694891358"}, "stopId": "49422"}, {"stopSequence": 49, "arrival": {"time": "1694891449"}, "stopId": "49539"}, {"stopSequence": 50, "arrival": {"time": "1694891513"}, "stopId": "44677"}, {"stopSequence": 51, "arrival": {"time": "1694891528"}, "stopId": "44671"}, {"stopSequence": 52, "arrival": {"time": "1694891637"}, "stopId": "44674"}, {"stopSequence": 53, "arrival": {"time": "1694891666"}, "stopId": "44675"}, {"stopSequence": 54, "arrival": {"time": "1694891691"}, "stopId": "44776"}, {"stopSequence": 55, "arrival": {"time": "1694891719"}, "stopId": "44676"}], "vehicle": {"licensePlate": "HYCZ17"}, "timestamp": "1694888969"}, "vehicle": {"trip": {"tripId": "19743-701ff27f-2", "startTime": "15:24:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "588", "directionId": 0}, "position": {"latitude": -36.83169, "longitude": -73.120605, "bearing": 173.0, "odometer": 0.0, "speed": 16.7}, "timestamp": "1694888969", "vehicle": {"licensePlate": "HYCZ17"}}}, {"id": "a2acb4f3-a9ae-4c16-b8c3-5360758a5cf6", "tripUpdate": {"trip": {"tripId": "19856-701ff27f-2", "startTime": "14:37:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "588", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 17, "arrival": {"time": "1694888976"}, "stopId": "1-Mar"}, {"stopSequence": 18, "arrival": {"time": "1694889011"}, "stopId": "37465"}, {"stopSequence": 19, "arrival": {"time": "1694889115"}, "stopId": "39599"}, {"stopSequence": 20, "arrival": {"time": "1694889139"}, "stopId": "39600"}, {"stopSequence": 21, "arrival": {"time": "1694889208"}, "stopId": "37496"}, {"stopSequence": 22, "arrival": {"time": "1694889258"}, "stopId": "45064"}, {"stopSequence": 23, "arrival": {"time": "1694889333"}, "stopId": "37506"}, {"stopSequence": 24, "arrival": {"time": "1694889429"}, "stopId": "37520"}, {"stopSequence": 25, "arrival": {"time": "1694889536"}, "stopId": "37470"}, {"stopSequence": 26, "arrival": {"time": "1694889560"}, "stopId": "37477"}, {"stopSequence": 27, "arrival": {"time": "1694889589"}, "stopId": "91118"}, {"stopSequence": 28, "arrival": {"time": "1694889650"}, "stopId": "35223"}, {"stopSequence": 29, "arrival": {"time": "1694889688"}, "stopId": "39547"}, {"stopSequence": 30, "arrival": {"time": "1694889769"}, "stopId": "35224"}, {"stopSequence": 31, "arrival": {"time": "1694889944"}, "stopId": "35225"}, {"stopSequence": 32, "arrival": {"time": "1694890525"}, "stopId": "35409"}, {"stopSequence": 33, "arrival": {"time": "1694890562"}, "stopId": "35411"}, {"stopSequence": 34, "arrival": {"time": "1694890596"}, "stopId": "35412"}, {"stopSequence": 35, "arrival": {"time": "1694890707"}, "stopId": "44716"}, {"stopSequence": 36, "arrival": {"time": "1694890746"}, "stopId": "44717"}, {"stopSequence": 37, "arrival": {"time": "1694890821"}, "stopId": "44718"}, {"stopSequence": 38, "arrival": {"time": "1694890851"}, "stopId": "90010"}, {"stopSequence": 39, "arrival": {"time": "1694891011"}, "stopId": "44722"}, {"stopSequence": 40, "arrival": {"time": "1694891049"}, "stopId": "44723"}, {"stopSequence": 41, "arrival": {"time": "1694891103"}, "stopId": "44724"}, {"stopSequence": 42, "arrival": {"time": "1694891142"}, "stopId": "44725"}, {"stopSequence": 43, "arrival": {"time": "1694891180"}, "stopId": "44726"}, {"stopSequence": 44, "arrival": {"time": "1694891264"}, "stopId": "44727"}, {"stopSequence": 45, "arrival": {"time": "1694891303"}, "stopId": "35417"}, {"stopSequence": 46, "arrival": {"time": "1694891372"}, "stopId": "35418"}, {"stopSequence": 47, "arrival": {"time": "1694891394"}, "stopId": "35664"}, {"stopSequence": 48, "arrival": {"time": "1694891434"}, "stopId": "91051"}, {"stopSequence": 49, "arrival": {"time": "1694891472"}, "stopId": "35666"}, {"stopSequence": 50, "arrival": {"time": "1694891521"}, "stopId": "35667"}, {"stopSequence": 51, "arrival": {"time": "1694891615"}, "stopId": "35669"}, {"stopSequence": 52, "arrival": {"time": "1694891762"}, "stopId": "35854"}, {"stopSequence": 53, "arrival": {"time": "1694891813"}, "stopId": "35430"}], "vehicle": {"licensePlate": "LGKJ84"}, "timestamp": "1694888946"}, "vehicle": {"trip": {"tripId": "19856-701ff27f-2", "startTime": "14:37:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "588", "directionId": 1}, "position": {"latitude": -36.81603, "longitude": -73.034676, "bearing": 244.0, "odometer": 0.0, "speed": 11.9}, "timestamp": "1694888946", "vehicle": {"licensePlate": "LGKJ84"}}}, {"id": "fd64ecfe-42b1-4211-826d-6836193f077c", "tripUpdate": {"trip": {"tripId": "20093-701ff27f-2", "startTime": "14:25:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "589", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 4, "arrival": {"time": "1694888955"}, "stopId": "49433"}, {"stopSequence": 5, "arrival": {"time": "1694888977"}, "stopId": "49434"}, {"stopSequence": 6, "arrival": {"time": "1694889019"}, "stopId": "49419"}, {"stopSequence": 7, "arrival": {"time": "1694889047"}, "stopId": "49418"}, {"stopSequence": 8, "arrival": {"time": "1694889067"}, "stopId": "49417"}, {"stopSequence": 9, "arrival": {"time": "1694889096"}, "stopId": "35820"}, {"stopSequence": 10, "arrival": {"time": "1694889125"}, "stopId": "35729"}, {"stopSequence": 11, "arrival": {"time": "1694889150"}, "stopId": "35730"}, {"stopSequence": 12, "arrival": {"time": "1694889182"}, "stopId": "35731"}, {"stopSequence": 13, "arrival": {"time": "1694889248"}, "stopId": "35201"}, {"stopSequence": 14, "arrival": {"time": "1694889339"}, "stopId": "35202"}, {"stopSequence": 15, "arrival": {"time": "1694889369"}, "stopId": "35203"}, {"stopSequence": 16, "arrival": {"time": "1694889435"}, "stopId": "1-Feb"}, {"stopSequence": 17, "arrival": {"time": "1694889480"}, "stopId": "1-Mar"}, {"stopSequence": 18, "arrival": {"time": "1694889500"}, "stopId": "8276831"}, {"stopSequence": 19, "arrival": {"time": "1694889527"}, "stopId": "1-Apr"}, {"stopSequence": 20, "arrival": {"time": "1694889576"}, "stopId": "1-May"}, {"stopSequence": 21, "arrival": {"time": "1694889615"}, "stopId": "1-Jun"}, {"stopSequence": 22, "arrival": {"time": "1694889672"}, "stopId": "1-Jul"}, {"stopSequence": 23, "arrival": {"time": "1694889704"}, "stopId": "1-Aug"}, {"stopSequence": 24, "arrival": {"time": "1694889751"}, "stopId": "1-Sep"}, {"stopSequence": 25, "arrival": {"time": "1694889802"}, "stopId": "1-Oct"}, {"stopSequence": 26, "arrival": {"time": "1694889851"}, "stopId": "1-Nov"}, {"stopSequence": 27, "arrival": {"time": "1694889904"}, "stopId": "35745"}, {"stopSequence": 28, "arrival": {"time": "1694889929"}, "stopId": "15879953"}, {"stopSequence": 29, "arrival": {"time": "1694889950"}, "stopId": "35746"}, {"stopSequence": 30, "arrival": {"time": "1694890551"}, "stopId": "35409"}, {"stopSequence": 31, "arrival": {"time": "1694890592"}, "stopId": "35411"}, {"stopSequence": 32, "arrival": {"time": "1694890631"}, "stopId": "35412"}, {"stopSequence": 33, "arrival": {"time": "1694890789"}, "stopId": "5020101"}, {"stopSequence": 34, "arrival": {"time": "1694890853"}, "stopId": "44722"}, {"stopSequence": 35, "arrival": {"time": "1694890896"}, "stopId": "44723"}, {"stopSequence": 36, "arrival": {"time": "1694890942"}, "stopId": "44724"}, {"stopSequence": 37, "arrival": {"time": "1694890988"}, "stopId": "44725"}, {"stopSequence": 38, "arrival": {"time": "1694891024"}, "stopId": "44726"}, {"stopSequence": 39, "arrival": {"time": "1694891106"}, "stopId": "44727"}, {"stopSequence": 40, "arrival": {"time": "1694891211"}, "stopId": "35418"}, {"stopSequence": 41, "arrival": {"time": "1694891231"}, "stopId": "35664"}, {"stopSequence": 42, "arrival": {"time": "1694891270"}, "stopId": "91051"}, {"stopSequence": 43, "arrival": {"time": "1694891307"}, "stopId": "35666"}, {"stopSequence": 44, "arrival": {"time": "1694891354"}, "stopId": "35667"}, {"stopSequence": 45, "arrival": {"time": "1694891389"}, "stopId": "35668"}, {"stopSequence": 46, "arrival": {"time": "1694891419"}, "stopId": "35849"}, {"stopSequence": 47, "arrival": {"time": "1694891456"}, "stopId": "35850"}, {"stopSequence": 48, "arrival": {"time": "1694891484"}, "stopId": "35851"}, {"stopSequence": 49, "arrival": {"time": "1694891509"}, "stopId": "35852"}, {"stopSequence": 50, "arrival": {"time": "1694891540"}, "stopId": "35853"}, {"stopSequence": 51, "arrival": {"time": "1694891584"}, "stopId": "35854"}, {"stopSequence": 52, "arrival": {"time": "1694891626"}, "stopId": "35430"}], "vehicle": {"licensePlate": "FLHL13"}, "timestamp": "1694888946"}, "vehicle": {"trip": {"tripId": "20093-701ff27f-2", "startTime": "14:25:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "589", "directionId": 1}, "position": {"latitude": -36.824924, "longitude": -73.01551, "bearing": 301.0, "odometer": 0.0, "speed": 16.7}, "timestamp": "1694888946", "vehicle": {"licensePlate": "FLHL13"}}}, {"id": "64d10247-3d6b-4508-bdcb-302e7742d8a4", "tripUpdate": {"trip": {"tripId": "20091-701ff27f-2", "startTime": "14:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "589", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 35, "arrival": {"time": "1694888942"}, "stopId": "44723"}, {"stopSequence": 36, "arrival": {"time": "1694888989"}, "stopId": "44724"}, {"stopSequence": 37, "arrival": {"time": "1694889034"}, "stopId": "44725"}, {"stopSequence": 38, "arrival": {"time": "1694889070"}, "stopId": "44726"}, {"stopSequence": 39, "arrival": {"time": "1694889147"}, "stopId": "44727"}, {"stopSequence": 40, "arrival": {"time": "1694889244"}, "stopId": "35418"}, {"stopSequence": 41, "arrival": {"time": "1694889263"}, "stopId": "35664"}, {"stopSequence": 42, "arrival": {"time": "1694889298"}, "stopId": "91051"}, {"stopSequence": 43, "arrival": {"time": "1694889330"}, "stopId": "35666"}, {"stopSequence": 44, "arrival": {"time": "1694889372"}, "stopId": "35667"}, {"stopSequence": 45, "arrival": {"time": "1694889402"}, "stopId": "35668"}, {"stopSequence": 46, "arrival": {"time": "1694889427"}, "stopId": "35849"}, {"stopSequence": 47, "arrival": {"time": "1694889459"}, "stopId": "35850"}, {"stopSequence": 48, "arrival": {"time": "1694889482"}, "stopId": "35851"}, {"stopSequence": 49, "arrival": {"time": "1694889503"}, "stopId": "35852"}, {"stopSequence": 50, "arrival": {"time": "1694889529"}, "stopId": "35853"}, {"stopSequence": 51, "arrival": {"time": "1694889564"}, "stopId": "35854"}, {"stopSequence": 52, "arrival": {"time": "1694889599"}, "stopId": "35430"}], "vehicle": {"licensePlate": "FRVF49"}, "timestamp": "1694888905"}, "vehicle": {"trip": {"tripId": "20091-701ff27f-2", "startTime": "14:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "589", "directionId": 1}, "position": {"latitude": -36.84259, "longitude": -73.10489, "bearing": 303.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888905", "vehicle": {"licensePlate": "FRVF49"}}}, {"id": "a13b292e-d3e6-4987-a38d-8adf7ab5e217", "tripUpdate": {"trip": {"tripId": "20092-701ff27f-2", "startTime": "14:13:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "589", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 27, "arrival": {"time": "1694888918"}, "stopId": "35745"}, {"stopSequence": 28, "arrival": {"time": "1694888946"}, "stopId": "15879953"}, {"stopSequence": 29, "arrival": {"time": "1694888969"}, "stopId": "35746"}, {"stopSequence": 30, "arrival": {"time": "1694889592"}, "stopId": "35409"}, {"stopSequence": 31, "arrival": {"time": "1694889631"}, "stopId": "35411"}, {"stopSequence": 32, "arrival": {"time": "1694889669"}, "stopId": "35412"}, {"stopSequence": 33, "arrival": {"time": "1694889820"}, "stopId": "5020101"}, {"stopSequence": 34, "arrival": {"time": "1694889879"}, "stopId": "44722"}, {"stopSequence": 35, "arrival": {"time": "1694889919"}, "stopId": "44723"}, {"stopSequence": 36, "arrival": {"time": "1694889961"}, "stopId": "44724"}, {"stopSequence": 37, "arrival": {"time": "1694890002"}, "stopId": "44725"}, {"stopSequence": 38, "arrival": {"time": "1694890035"}, "stopId": "44726"}, {"stopSequence": 39, "arrival": {"time": "1694890108"}, "stopId": "44727"}, {"stopSequence": 40, "arrival": {"time": "1694890201"}, "stopId": "35418"}, {"stopSequence": 41, "arrival": {"time": "1694890218"}, "stopId": "35664"}, {"stopSequence": 42, "arrival": {"time": "1694890252"}, "stopId": "91051"}, {"stopSequence": 43, "arrival": {"time": "1694890284"}, "stopId": "35666"}, {"stopSequence": 44, "arrival": {"time": "1694890325"}, "stopId": "35667"}, {"stopSequence": 45, "arrival": {"time": "1694890354"}, "stopId": "35668"}, {"stopSequence": 46, "arrival": {"time": "1694890380"}, "stopId": "35849"}, {"stopSequence": 47, "arrival": {"time": "1694890411"}, "stopId": "35850"}, {"stopSequence": 48, "arrival": {"time": "1694890435"}, "stopId": "35851"}, {"stopSequence": 49, "arrival": {"time": "1694890455"}, "stopId": "35852"}, {"stopSequence": 50, "arrival": {"time": "1694890482"}, "stopId": "35853"}, {"stopSequence": 51, "arrival": {"time": "1694890518"}, "stopId": "35854"}, {"stopSequence": 52, "arrival": {"time": "1694890553"}, "stopId": "35430"}], "vehicle": {"licensePlate": "FXJS19"}, "timestamp": "1694888916"}, "vehicle": {"trip": {"tripId": "20092-701ff27f-2", "startTime": "14:13:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "589", "directionId": 1}, "position": {"latitude": -36.82561, "longitude": -73.05771, "bearing": 242.0, "odometer": 0.0, "speed": 7.0}, "timestamp": "1694888916", "vehicle": {"licensePlate": "FXJS19"}}}, {"id": "e6d245f6-5f50-4934-9aea-75416241f494", "tripUpdate": {"trip": {"tripId": "19978-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "589", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 34, "arrival": {"time": "1694888970"}, "stopId": "35287"}, {"stopSequence": 35, "arrival": {"time": "1694889044"}, "stopId": "42317"}, {"stopSequence": 36, "arrival": {"time": "1694889123"}, "stopId": "42319"}, {"stopSequence": 37, "arrival": {"time": "1694889200"}, "stopId": "42320"}, {"stopSequence": 38, "arrival": {"time": "1694889248"}, "stopId": "38514"}, {"stopSequence": 39, "arrival": {"time": "1694889295"}, "stopId": "34586"}, {"stopSequence": 40, "arrival": {"time": "1694889334"}, "stopId": "34587"}, {"stopSequence": 41, "arrival": {"time": "1694889359"}, "stopId": "34588"}, {"stopSequence": 42, "arrival": {"time": "1694889407"}, "stopId": "39497"}, {"stopSequence": 43, "arrival": {"time": "1694889441"}, "stopId": "49407"}, {"stopSequence": 44, "arrival": {"time": "1694889492"}, "stopId": "50034"}, {"stopSequence": 45, "arrival": {"time": "1694889536"}, "stopId": "40903"}, {"stopSequence": 46, "arrival": {"time": "1694889570"}, "stopId": "40904"}, {"stopSequence": 47, "arrival": {"time": "1694889614"}, "stopId": "35814"}, {"stopSequence": 48, "arrival": {"time": "1694889685"}, "stopId": "35815"}, {"stopSequence": 49, "arrival": {"time": "1694889713"}, "stopId": "35816"}, {"stopSequence": 50, "arrival": {"time": "1694889718"}, "stopId": "35817"}, {"stopSequence": 51, "arrival": {"time": "1694889759"}, "stopId": "35818"}, {"stopSequence": 52, "arrival": {"time": "1694889796"}, "stopId": "35819"}, {"stopSequence": 53, "arrival": {"time": "1694889857"}, "stopId": "49417"}, {"stopSequence": 54, "arrival": {"time": "1694889890"}, "stopId": "49420"}, {"stopSequence": 55, "arrival": {"time": "1694889930"}, "stopId": "49421"}, {"stopSequence": 56, "arrival": {"time": "1694889958"}, "stopId": "49422"}, {"stopSequence": 57, "arrival": {"time": "1694890003"}, "stopId": "49423"}, {"stopSequence": 58, "arrival": {"time": "1694890034"}, "stopId": "49539"}, {"stopSequence": 59, "arrival": {"time": "1694890087"}, "stopId": "44677"}, {"stopSequence": 60, "arrival": {"time": "1694890099"}, "stopId": "44671"}, {"stopSequence": 61, "arrival": {"time": "1694890187"}, "stopId": "44674"}, {"stopSequence": 62, "arrival": {"time": "1694890210"}, "stopId": "44675"}, {"stopSequence": 63, "arrival": {"time": "1694890230"}, "stopId": "44776"}, {"stopSequence": 64, "arrival": {"time": "1694890255"}, "stopId": "44676"}], "vehicle": {"licensePlate": "GVXX18"}, "timestamp": "1694888948"}, "vehicle": {"trip": {"tripId": "19978-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "589", "directionId": 0}, "position": {"latitude": -36.833015, "longitude": -73.05353, "bearing": 333.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888948", "vehicle": {"licensePlate": "GVXX18"}}}, {"id": "ff209772-ad9a-4385-9130-dbee9537ee46", "tripUpdate": {"trip": {"tripId": "19981-701ff27f-2", "startTime": "15:24:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "589", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 14, "arrival": {"time": "1694889015"}, "stopId": "91119"}, {"stopSequence": 15, "arrival": {"time": "1694889030"}, "stopId": "44629"}, {"stopSequence": 16, "arrival": {"time": "1694889104"}, "stopId": "91007"}, {"stopSequence": 17, "arrival": {"time": "1694889125"}, "stopId": "44630"}, {"stopSequence": 18, "arrival": {"time": "1694889157"}, "stopId": "44631"}, {"stopSequence": 19, "arrival": {"time": "1694889235"}, "stopId": "44633"}, {"stopSequence": 20, "arrival": {"time": "1694889307"}, "stopId": "44635"}, {"stopSequence": 21, "arrival": {"time": "1694889335"}, "stopId": "44721"}, {"stopSequence": 22, "arrival": {"time": "1694889373"}, "stopId": "44720"}, {"stopSequence": 23, "arrival": {"time": "1694889459"}, "stopId": "44639"}, {"stopSequence": 24, "arrival": {"time": "1694889532"}, "stopId": "44640"}, {"stopSequence": 25, "arrival": {"time": "1694889586"}, "stopId": "44641"}, {"stopSequence": 26, "arrival": {"time": "1694889659"}, "stopId": "44642"}, {"stopSequence": 27, "arrival": {"time": "1694889704"}, "stopId": "44643"}, {"stopSequence": 28, "arrival": {"time": "1694889778"}, "stopId": "91158"}, {"stopSequence": 29, "arrival": {"time": "1694889846"}, "stopId": "39973"}, {"stopSequence": 30, "arrival": {"time": "1694889953"}, "stopId": "39974"}, {"stopSequence": 31, "arrival": {"time": "1694889990"}, "stopId": "39975"}, {"stopSequence": 32, "arrival": {"time": "1694890407"}, "stopId": "39546"}, {"stopSequence": 33, "arrival": {"time": "1694890544"}, "stopId": "35286"}, {"stopSequence": 34, "arrival": {"time": "1694890572"}, "stopId": "35287"}, {"stopSequence": 35, "arrival": {"time": "1694890642"}, "stopId": "42317"}, {"stopSequence": 36, "arrival": {"time": "1694890718"}, "stopId": "42319"}, {"stopSequence": 37, "arrival": {"time": "1694890795"}, "stopId": "42320"}, {"stopSequence": 38, "arrival": {"time": "1694890844"}, "stopId": "38514"}, {"stopSequence": 39, "arrival": {"time": "1694890893"}, "stopId": "34586"}, {"stopSequence": 40, "arrival": {"time": "1694890934"}, "stopId": "34587"}, {"stopSequence": 41, "arrival": {"time": "1694890960"}, "stopId": "34588"}, {"stopSequence": 42, "arrival": {"time": "1694891011"}, "stopId": "39497"}, {"stopSequence": 43, "arrival": {"time": "1694891047"}, "stopId": "49407"}, {"stopSequence": 44, "arrival": {"time": "1694891104"}, "stopId": "50034"}, {"stopSequence": 45, "arrival": {"time": "1694891153"}, "stopId": "40903"}, {"stopSequence": 46, "arrival": {"time": "1694891191"}, "stopId": "40904"}, {"stopSequence": 47, "arrival": {"time": "1694891240"}, "stopId": "35814"}, {"stopSequence": 48, "arrival": {"time": "1694891323"}, "stopId": "35815"}, {"stopSequence": 49, "arrival": {"time": "1694891356"}, "stopId": "35816"}, {"stopSequence": 50, "arrival": {"time": "1694891362"}, "stopId": "35817"}, {"stopSequence": 51, "arrival": {"time": "1694891411"}, "stopId": "35818"}, {"stopSequence": 52, "arrival": {"time": "1694891456"}, "stopId": "35819"}, {"stopSequence": 53, "arrival": {"time": "1694891531"}, "stopId": "49417"}, {"stopSequence": 54, "arrival": {"time": "1694891571"}, "stopId": "49420"}, {"stopSequence": 55, "arrival": {"time": "1694891622"}, "stopId": "49421"}, {"stopSequence": 56, "arrival": {"time": "1694891657"}, "stopId": "49422"}, {"stopSequence": 57, "arrival": {"time": "1694891716"}, "stopId": "49423"}, {"stopSequence": 58, "arrival": {"time": "1694891755"}, "stopId": "49539"}, {"stopSequence": 59, "arrival": {"time": "1694891825"}, "stopId": "44677"}, {"stopSequence": 60, "arrival": {"time": "1694891841"}, "stopId": "44671"}, {"stopSequence": 61, "arrival": {"time": "1694891960"}, "stopId": "44674"}, {"stopSequence": 62, "arrival": {"time": "1694891992"}, "stopId": "44675"}, {"stopSequence": 63, "arrival": {"time": "1694892019"}, "stopId": "44776"}, {"stopSequence": 64, "arrival": {"time": "1694892053"}, "stopId": "44676"}], "vehicle": {"licensePlate": "JFSP64"}, "timestamp": "1694888940"}, "vehicle": {"trip": {"tripId": "19981-701ff27f-2", "startTime": "15:24:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "589", "directionId": 0}, "position": {"latitude": -36.836933, "longitude": -73.11887, "bearing": 152.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888940", "vehicle": {"licensePlate": "JFSP64"}}}, {"id": "c34eb701-5649-44c8-abd5-cae7a9a7d395", "tripUpdate": {"trip": {"tripId": "20258-701ff27f-2", "startTime": "15:15:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "590", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 19, "arrival": {"time": "1694889046"}, "stopId": "14-May"}, {"stopSequence": 20, "arrival": {"time": "1694889086"}, "stopId": "14-Jun"}, {"stopSequence": 21, "arrival": {"time": "1694889140"}, "stopId": "14-Aug"}, {"stopSequence": 22, "arrival": {"time": "1694889186"}, "stopId": "50024"}, {"stopSequence": 23, "arrival": {"time": "1694889320"}, "stopId": "14-12"}, {"stopSequence": 24, "arrival": {"time": "1694889402"}, "stopId": "37471"}, {"stopSequence": 25, "arrival": {"time": "1694889435"}, "stopId": "37560"}, {"stopSequence": 26, "arrival": {"time": "1694889459"}, "stopId": "37564"}, {"stopSequence": 27, "arrival": {"time": "1694889508"}, "stopId": "37517"}, {"stopSequence": 28, "arrival": {"time": "1694889525"}, "stopId": "37475"}, {"stopSequence": 29, "arrival": {"time": "1694889562"}, "stopId": "37508"}, {"stopSequence": 30, "arrival": {"time": "1694889596"}, "stopId": "37476"}, {"stopSequence": 31, "arrival": {"time": "1694889621"}, "stopId": "37526"}, {"stopSequence": 32, "arrival": {"time": "1694889688"}, "stopId": "37567"}, {"stopSequence": 33, "arrival": {"time": "1694889710"}, "stopId": "13-Jan"}, {"stopSequence": 34, "arrival": {"time": "1694889761"}, "stopId": "13-Feb"}, {"stopSequence": 35, "arrival": {"time": "1694889786"}, "stopId": "28-Jan"}, {"stopSequence": 36, "arrival": {"time": "1694889831"}, "stopId": "12-3"}, {"stopSequence": 37, "arrival": {"time": "1694889905"}, "stopId": "12-Jan"}, {"stopSequence": 38, "arrival": {"time": "1694889948"}, "stopId": "12-Feb"}, {"stopSequence": 39, "arrival": {"time": "1694889996"}, "stopId": "7-Jan"}, {"stopSequence": 40, "arrival": {"time": "1694890048"}, "stopId": "7-Mar"}, {"stopSequence": 41, "arrival": {"time": "1694890179"}, "stopId": "7-Jun"}, {"stopSequence": 42, "arrival": {"time": "1694890248"}, "stopId": "7-Aug"}, {"stopSequence": 43, "arrival": {"time": "1694890314"}, "stopId": "6-Jan"}, {"stopSequence": 44, "arrival": {"time": "1694890384"}, "stopId": "6-Mar"}, {"stopSequence": 45, "arrival": {"time": "1694890490"}, "stopId": "6-May"}, {"stopSequence": 46, "arrival": {"time": "1694890647"}, "stopId": "6-Jul"}, {"stopSequence": 47, "arrival": {"time": "1694890710"}, "stopId": "6-Sep"}, {"stopSequence": 48, "arrival": {"time": "1694890800"}, "stopId": "6-Nov"}, {"stopSequence": 49, "arrival": {"time": "1694890910"}, "stopId": "6-Dec"}, {"stopSequence": 50, "arrival": {"time": "1694891005"}, "stopId": "Jun-14"}, {"stopSequence": 51, "arrival": {"time": "1694891167"}, "stopId": "Jun-17"}, {"stopSequence": 52, "arrival": {"time": "1694891260"}, "stopId": "Jun-19"}, {"stopSequence": 53, "arrival": {"time": "1694891321"}, "stopId": "Jun-20"}, {"stopSequence": 54, "arrival": {"time": "1694891391"}, "stopId": "Jun-22"}, {"stopSequence": 55, "arrival": {"time": "1694891465"}, "stopId": "Jun-24"}, {"stopSequence": 56, "arrival": {"time": "1694891569"}, "stopId": "Jun-25"}, {"stopSequence": 57, "arrival": {"time": "1694891924"}, "stopId": "90003"}, {"stopSequence": 58, "arrival": {"time": "1694891984"}, "stopId": "90007"}, {"stopSequence": 59, "arrival": {"time": "1694892051"}, "stopId": "90008"}, {"stopSequence": 60, "arrival": {"time": "1694892201"}, "stopId": "39599"}, {"stopSequence": 61, "arrival": {"time": "1694892308"}, "stopId": "45011"}, {"stopSequence": 62, "arrival": {"time": "1694892453"}, "stopId": "39623"}, {"stopSequence": 63, "arrival": {"time": "1694892526"}, "stopId": "39624"}, {"stopSequence": 64, "arrival": {"time": "1694892627"}, "stopId": "90000"}, {"stopSequence": 65, "arrival": {"time": "1694892706"}, "stopId": "39628"}, {"stopSequence": 66, "arrival": {"time": "1694892830"}, "stopId": "39631"}, {"stopSequence": 67, "arrival": {"time": "1694892908"}, "stopId": "49311"}, {"stopSequence": 68, "arrival": {"time": "1694893003"}, "stopId": "39634"}, {"stopSequence": 69, "arrival": {"time": "1694893047"}, "stopId": "39635"}, {"stopSequence": 70, "arrival": {"time": "1694893128"}, "stopId": "39636"}, {"stopSequence": 71, "arrival": {"time": "1694893224"}, "stopId": "49503"}, {"stopSequence": 72, "arrival": {"time": "1694893462"}, "stopId": "39637"}, {"stopSequence": 73, "arrival": {"time": "1694893558"}, "stopId": "49317"}, {"stopSequence": 74, "arrival": {"time": "1694893623"}, "stopId": "49318"}, {"stopSequence": 75, "arrival": {"time": "1694893759"}, "stopId": "49319"}, {"stopSequence": 76, "arrival": {"time": "1694893895"}, "stopId": "39641"}, {"stopSequence": 77, "arrival": {"time": "1694894460"}, "stopId": "49323"}, {"stopSequence": 78, "arrival": {"time": "1694894547"}, "stopId": "49324"}, {"stopSequence": 79, "arrival": {"time": "1694894648"}, "stopId": "49325"}, {"stopSequence": 80, "arrival": {"time": "1694894817"}, "stopId": "49326"}, {"stopSequence": 81, "arrival": {"time": "1694894903"}, "stopId": "37425"}, {"stopSequence": 82, "arrival": {"time": "1694895009"}, "stopId": "37426"}, {"stopSequence": 83, "arrival": {"time": "1694895109"}, "stopId": "37427"}, {"stopSequence": 84, "arrival": {"time": "1694895279"}, "stopId": "8606049"}, {"stopSequence": 85, "arrival": {"time": "1694895443"}, "stopId": "37428"}, {"stopSequence": 86, "arrival": {"time": "1694895546"}, "stopId": "37429"}, {"stopSequence": 87, "arrival": {"time": "1694895683"}, "stopId": "37430"}, {"stopSequence": 88, "arrival": {"time": "1694895792"}, "stopId": "37431"}, {"stopSequence": 89, "arrival": {"time": "1694895895"}, "stopId": "37432"}, {"stopSequence": 90, "arrival": {"time": "1694896263"}, "stopId": "37433"}, {"stopSequence": 91, "arrival": {"time": "1694896613"}, "stopId": "37434"}, {"stopSequence": 92, "arrival": {"time": "1694896692"}, "stopId": "37435"}, {"stopSequence": 93, "arrival": {"time": "1694896926"}, "stopId": "37436"}, {"stopSequence": 94, "arrival": {"time": "1694897227"}, "stopId": "37437"}, {"stopSequence": 95, "arrival": {"time": "1694897478"}, "stopId": "49337"}, {"stopSequence": 96, "arrival": {"time": "1694897615"}, "stopId": "39661"}, {"stopSequence": 97, "arrival": {"time": "1694897867"}, "stopId": "39662"}, {"stopSequence": 98, "arrival": {"time": "1694898168"}, "stopId": "39663"}, {"stopSequence": 99, "arrival": {"time": "1694898398"}, "stopId": "49341"}, {"stopSequence": 100, "arrival": {"time": "1694898671"}, "stopId": "49342"}, {"stopSequence": 101, "arrival": {"time": "1694899266"}, "stopId": "49343"}, {"stopSequence": 102, "arrival": {"time": "1694900663"}, "stopId": "49344"}, {"stopSequence": 103, "arrival": {"time": "1694902077"}, "stopId": "49345"}, {"stopSequence": 104, "arrival": {"time": "1694903978"}, "stopId": "49346"}, {"stopSequence": 105, "arrival": {"time": "1694904752"}, "stopId": "49347"}, {"stopSequence": 106, "arrival": {"time": "1694908612"}, "stopId": "49348"}, {"stopSequence": 107, "arrival": {"time": "1694913185"}, "stopId": "42250"}], "vehicle": {"licensePlate": "BHCL61"}, "timestamp": "1694889032"}, "vehicle": {"trip": {"tripId": "20258-701ff27f-2", "startTime": "15:15:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "590", "directionId": 0}, "position": {"latitude": -36.713917, "longitude": -72.97418, "bearing": 188.0, "odometer": 0.0, "speed": 8.611111}, "timestamp": "1694889032", "vehicle": {"licensePlate": "BHCL61"}}}, {"id": "bc458934-4d0b-4289-ac9a-e8004ac82f18", "tripUpdate": {"trip": {"tripId": "20254-701ff27f-2", "startTime": "14:15:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "590", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 90, "arrival": {"time": "1694889067"}, "stopId": "37433"}, {"stopSequence": 91, "arrival": {"time": "1694889160"}, "stopId": "37434"}, {"stopSequence": 92, "arrival": {"time": "1694889180"}, "stopId": "37435"}, {"stopSequence": 93, "arrival": {"time": "1694889237"}, "stopId": "37436"}, {"stopSequence": 94, "arrival": {"time": "1694889306"}, "stopId": "37437"}, {"stopSequence": 95, "arrival": {"time": "1694889359"}, "stopId": "49337"}, {"stopSequence": 96, "arrival": {"time": "1694889387"}, "stopId": "39661"}, {"stopSequence": 97, "arrival": {"time": "1694889436"}, "stopId": "39662"}, {"stopSequence": 98, "arrival": {"time": "1694889492"}, "stopId": "39663"}, {"stopSequence": 99, "arrival": {"time": "1694889532"}, "stopId": "49341"}, {"stopSequence": 100, "arrival": {"time": "1694889578"}, "stopId": "49342"}, {"stopSequence": 101, "arrival": {"time": "1694889669"}, "stopId": "49343"}, {"stopSequence": 102, "arrival": {"time": "1694889849"}, "stopId": "49344"}, {"stopSequence": 103, "arrival": {"time": "1694889995"}, "stopId": "49345"}, {"stopSequence": 104, "arrival": {"time": "1694890152"}, "stopId": "49346"}, {"stopSequence": 105, "arrival": {"time": "1694890206"}, "stopId": "49347"}, {"stopSequence": 106, "arrival": {"time": "1694890417"}, "stopId": "49348"}, {"stopSequence": 107, "arrival": {"time": "1694890586"}, "stopId": "42250"}], "vehicle": {"licensePlate": "DPZZ33"}, "timestamp": "1694889037"}, "vehicle": {"trip": {"tripId": "20254-701ff27f-2", "startTime": "14:15:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "590", "directionId": 0}, "position": {"latitude": -36.792107, "longitude": -73.10383, "bearing": 32.0, "odometer": 0.0, "speed": 10.277778}, "timestamp": "1694889037", "vehicle": {"licensePlate": "DPZZ33"}}}, {"id": "8e4414d3-3c81-44ee-8fb3-2fd75a252760", "tripUpdate": {"trip": {"tripId": "20183-701ff27f-2", "startTime": "15:31:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "590", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 4, "arrival": {"time": "1694889033"}, "stopId": "42254"}, {"stopSequence": 5, "arrival": {"time": "1694889065"}, "stopId": "42255"}, {"stopSequence": 6, "arrival": {"time": "1694889101"}, "stopId": "42256"}, {"stopSequence": 7, "arrival": {"time": "1694889121"}, "stopId": "42257"}, {"stopSequence": 8, "arrival": {"time": "1694889144"}, "stopId": "42258"}, {"stopSequence": 9, "arrival": {"time": "1694889170"}, "stopId": "42259"}, {"stopSequence": 10, "arrival": {"time": "1694889224"}, "stopId": "42260"}, {"stopSequence": 11, "arrival": {"time": "1694889263"}, "stopId": "42261"}, {"stopSequence": 12, "arrival": {"time": "1694889294"}, "stopId": "45094"}, {"stopSequence": 13, "arrival": {"time": "1694889351"}, "stopId": "42263"}, {"stopSequence": 14, "arrival": {"time": "1694889396"}, "stopId": "45092"}, {"stopSequence": 15, "arrival": {"time": "1694889426"}, "stopId": "45091"}, {"stopSequence": 16, "arrival": {"time": "1694889462"}, "stopId": "45090"}, {"stopSequence": 17, "arrival": {"time": "1694889472"}, "stopId": "42266"}, {"stopSequence": 18, "arrival": {"time": "1694889527"}, "stopId": "45089"}, {"stopSequence": 19, "arrival": {"time": "1694889566"}, "stopId": "45088"}, {"stopSequence": 20, "arrival": {"time": "1694889596"}, "stopId": "42269"}, {"stopSequence": 21, "arrival": {"time": "1694889631"}, "stopId": "38611"}, {"stopSequence": 22, "arrival": {"time": "1694889639"}, "stopId": "44792"}, {"stopSequence": 23, "arrival": {"time": "1694889695"}, "stopId": "44790"}, {"stopSequence": 24, "arrival": {"time": "1694889728"}, "stopId": "38609"}, {"stopSequence": 25, "arrival": {"time": "1694889765"}, "stopId": "44791"}, {"stopSequence": 26, "arrival": {"time": "1694889825"}, "stopId": "44800"}, {"stopSequence": 27, "arrival": {"time": "1694889859"}, "stopId": "44799"}, {"stopSequence": 28, "arrival": {"time": "1694889908"}, "stopId": "44801"}, {"stopSequence": 29, "arrival": {"time": "1694889931"}, "stopId": "44802"}, {"stopSequence": 30, "arrival": {"time": "1694890000"}, "stopId": "44803"}, {"stopSequence": 31, "arrival": {"time": "1694890015"}, "stopId": "38602"}, {"stopSequence": 32, "arrival": {"time": "1694890271"}, "stopId": "38688"}, {"stopSequence": 33, "arrival": {"time": "1694890319"}, "stopId": "38673"}, {"stopSequence": 34, "arrival": {"time": "1694890394"}, "stopId": "39785"}, {"stopSequence": 35, "arrival": {"time": "1694890432"}, "stopId": "38664"}, {"stopSequence": 36, "arrival": {"time": "1694890485"}, "stopId": "38702"}, {"stopSequence": 37, "arrival": {"time": "1694890529"}, "stopId": "39787"}, {"stopSequence": 38, "arrival": {"time": "1694890571"}, "stopId": "38501"}, {"stopSequence": 39, "arrival": {"time": "1694890638"}, "stopId": "38692"}, {"stopSequence": 40, "arrival": {"time": "1694890708"}, "stopId": "38714"}, {"stopSequence": 41, "arrival": {"time": "1694890753"}, "stopId": "39791"}, {"stopSequence": 42, "arrival": {"time": "1694890784"}, "stopId": "38506"}, {"stopSequence": 43, "arrival": {"time": "1694890835"}, "stopId": "38635"}, {"stopSequence": 44, "arrival": {"time": "1694890870"}, "stopId": "38509"}, {"stopSequence": 45, "arrival": {"time": "1694890915"}, "stopId": "38642"}, {"stopSequence": 46, "arrival": {"time": "1694890961"}, "stopId": "39795"}, {"stopSequence": 47, "arrival": {"time": "1694890989"}, "stopId": "38502"}, {"stopSequence": 48, "arrival": {"time": "1694891060"}, "stopId": "38503"}, {"stopSequence": 49, "arrival": {"time": "1694891232"}, "stopId": "35691"}, {"stopSequence": 50, "arrival": {"time": "1694891348"}, "stopId": "35693"}, {"stopSequence": 51, "arrival": {"time": "1694891414"}, "stopId": "35694"}, {"stopSequence": 52, "arrival": {"time": "1694891451"}, "stopId": "35695"}, {"stopSequence": 53, "arrival": {"time": "1694891517"}, "stopId": "35696"}, {"stopSequence": 54, "arrival": {"time": "1694891710"}, "stopId": "35697"}, {"stopSequence": 55, "arrival": {"time": "1694891863"}, "stopId": "39778"}, {"stopSequence": 56, "arrival": {"time": "1694891999"}, "stopId": "35797"}, {"stopSequence": 57, "arrival": {"time": "1694892054"}, "stopId": "35798"}, {"stopSequence": 58, "arrival": {"time": "1694892106"}, "stopId": "35799"}, {"stopSequence": 59, "arrival": {"time": "1694892201"}, "stopId": "35800"}, {"stopSequence": 60, "arrival": {"time": "1694892271"}, "stopId": "35801"}, {"stopSequence": 61, "arrival": {"time": "1694892307"}, "stopId": "35802"}, {"stopSequence": 62, "arrival": {"time": "1694892376"}, "stopId": "35803"}, {"stopSequence": 63, "arrival": {"time": "1694892458"}, "stopId": "38507"}, {"stopSequence": 64, "arrival": {"time": "1694892534"}, "stopId": "34473"}, {"stopSequence": 65, "arrival": {"time": "1694892602"}, "stopId": "38500"}, {"stopSequence": 66, "arrival": {"time": "1694892673"}, "stopId": "35808"}, {"stopSequence": 67, "arrival": {"time": "1694892766"}, "stopId": "35710"}, {"stopSequence": 68, "arrival": {"time": "1694892840"}, "stopId": "50036"}, {"stopSequence": 69, "arrival": {"time": "1694893240"}, "stopId": "50037"}, {"stopSequence": 70, "arrival": {"time": "1694893514"}, "stopId": "50038"}, {"stopSequence": 71, "arrival": {"time": "1694893666"}, "stopId": "50039"}, {"stopSequence": 72, "arrival": {"time": "1694893793"}, "stopId": "50040"}, {"stopSequence": 73, "arrival": {"time": "1694893985"}, "stopId": "50041"}, {"stopSequence": 74, "arrival": {"time": "1694894318"}, "stopId": "Jun-15"}, {"stopSequence": 75, "arrival": {"time": "1694894548"}, "stopId": "Jun-13"}, {"stopSequence": 76, "arrival": {"time": "1694895084"}, "stopId": "6-Oct"}, {"stopSequence": 77, "arrival": {"time": "1694895255"}, "stopId": "6-Aug"}, {"stopSequence": 78, "arrival": {"time": "1694895769"}, "stopId": "6-Jun"}, {"stopSequence": 79, "arrival": {"time": "1694896190"}, "stopId": "6-Feb"}, {"stopSequence": 80, "arrival": {"time": "1694896769"}, "stopId": "7-Jul"}, {"stopSequence": 81, "arrival": {"time": "1694897057"}, "stopId": "7-May"}, {"stopSequence": 82, "arrival": {"time": "1694897196"}, "stopId": "1508142"}, {"stopSequence": 83, "arrival": {"time": "1694897720"}, "stopId": "7-Feb"}, {"stopSequence": 84, "arrival": {"time": "1694898059"}, "stopId": "8-Jan"}, {"stopSequence": 85, "arrival": {"time": "1694898233"}, "stopId": "9-Jan"}, {"stopSequence": 86, "arrival": {"time": "1694898467"}, "stopId": "10-Apr"}, {"stopSequence": 87, "arrival": {"time": "1694898821"}, "stopId": "10-Jan"}, {"stopSequence": 88, "arrival": {"time": "1694899091"}, "stopId": "44863"}, {"stopSequence": 89, "arrival": {"time": "1694899303"}, "stopId": "10-Mar"}, {"stopSequence": 90, "arrival": {"time": "1694899693"}, "stopId": "11-Jan"}, {"stopSequence": 91, "arrival": {"time": "1694900077"}, "stopId": "44866"}, {"stopSequence": 92, "arrival": {"time": "1694900385"}, "stopId": "44867"}, {"stopSequence": 93, "arrival": {"time": "1694900602"}, "stopId": "44868"}, {"stopSequence": 94, "arrival": {"time": "1694900831"}, "stopId": "44869"}, {"stopSequence": 95, "arrival": {"time": "1694901118"}, "stopId": "44870"}, {"stopSequence": 96, "arrival": {"time": "1694901429"}, "stopId": "44871"}, {"stopSequence": 97, "arrival": {"time": "1694901817"}, "stopId": "44872"}, {"stopSequence": 98, "arrival": {"time": "1694902481"}, "stopId": "50020"}, {"stopSequence": 99, "arrival": {"time": "1694903487"}, "stopId": "14-11"}, {"stopSequence": 100, "arrival": {"time": "1694903953"}, "stopId": "91162"}, {"stopSequence": 101, "arrival": {"time": "1694905130"}, "stopId": "50023"}, {"stopSequence": 102, "arrival": {"time": "1694906800"}, "stopId": "14-Jul"}, {"stopSequence": 103, "arrival": {"time": "1694907503"}, "stopId": "14-Apr"}, {"stopSequence": 104, "arrival": {"time": "1694908461"}, "stopId": "37474"}, {"stopSequence": 105, "arrival": {"time": "1694909557"}, "stopId": "44879"}], "vehicle": {"licensePlate": "HYHP87"}, "timestamp": "1694889008"}, "vehicle": {"trip": {"tripId": "20183-701ff27f-2", "startTime": "15:31:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "590", "directionId": 1}, "position": {"latitude": -36.74136, "longitude": -73.10762, "bearing": 150.0, "odometer": 0.0, "speed": 2.2222223}, "timestamp": "1694889008", "vehicle": {"licensePlate": "HYHP87"}}}, {"id": "0d6efc3b-9e7f-491e-8b26-2e51bd85c6f7", "tripUpdate": {"trip": {"tripId": "20182-701ff27f-2", "startTime": "15:16:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "590", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 33, "arrival": {"time": "1694889047"}, "stopId": "38673"}, {"stopSequence": 34, "arrival": {"time": "1694889128"}, "stopId": "39785"}, {"stopSequence": 35, "arrival": {"time": "1694889169"}, "stopId": "38664"}, {"stopSequence": 36, "arrival": {"time": "1694889225"}, "stopId": "38702"}, {"stopSequence": 37, "arrival": {"time": "1694889271"}, "stopId": "39787"}, {"stopSequence": 38, "arrival": {"time": "1694889314"}, "stopId": "38501"}, {"stopSequence": 39, "arrival": {"time": "1694889381"}, "stopId": "38692"}, {"stopSequence": 40, "arrival": {"time": "1694889451"}, "stopId": "38714"}, {"stopSequence": 41, "arrival": {"time": "1694889496"}, "stopId": "39791"}, {"stopSequence": 42, "arrival": {"time": "1694889527"}, "stopId": "38506"}, {"stopSequence": 43, "arrival": {"time": "1694889576"}, "stopId": "38635"}, {"stopSequence": 44, "arrival": {"time": "1694889609"}, "stopId": "38509"}, {"stopSequence": 45, "arrival": {"time": "1694889652"}, "stopId": "38642"}, {"stopSequence": 46, "arrival": {"time": "1694889695"}, "stopId": "39795"}, {"stopSequence": 47, "arrival": {"time": "1694889720"}, "stopId": "38502"}, {"stopSequence": 48, "arrival": {"time": "1694889786"}, "stopId": "38503"}, {"stopSequence": 49, "arrival": {"time": "1694889939"}, "stopId": "35691"}, {"stopSequence": 50, "arrival": {"time": "1694890040"}, "stopId": "35693"}, {"stopSequence": 51, "arrival": {"time": "1694890096"}, "stopId": "35694"}, {"stopSequence": 52, "arrival": {"time": "1694890127"}, "stopId": "35695"}, {"stopSequence": 53, "arrival": {"time": "1694890181"}, "stopId": "35696"}, {"stopSequence": 54, "arrival": {"time": "1694890337"}, "stopId": "35697"}, {"stopSequence": 55, "arrival": {"time": "1694890457"}, "stopId": "39778"}, {"stopSequence": 56, "arrival": {"time": "1694890561"}, "stopId": "35797"}, {"stopSequence": 57, "arrival": {"time": "1694890602"}, "stopId": "35798"}, {"stopSequence": 58, "arrival": {"time": "1694890640"}, "stopId": "35799"}, {"stopSequence": 59, "arrival": {"time": "1694890711"}, "stopId": "35800"}, {"stopSequence": 60, "arrival": {"time": "1694890761"}, "stopId": "35801"}, {"stopSequence": 61, "arrival": {"time": "1694890787"}, "stopId": "35802"}, {"stopSequence": 62, "arrival": {"time": "1694890836"}, "stopId": "35803"}, {"stopSequence": 63, "arrival": {"time": "1694890893"}, "stopId": "38507"}, {"stopSequence": 64, "arrival": {"time": "1694890946"}, "stopId": "34473"}, {"stopSequence": 65, "arrival": {"time": "1694890992"}, "stopId": "38500"}, {"stopSequence": 66, "arrival": {"time": "1694891041"}, "stopId": "35808"}, {"stopSequence": 67, "arrival": {"time": "1694891103"}, "stopId": "35710"}, {"stopSequence": 68, "arrival": {"time": "1694891151"}, "stopId": "50036"}, {"stopSequence": 69, "arrival": {"time": "1694891407"}, "stopId": "50037"}, {"stopSequence": 70, "arrival": {"time": "1694891574"}, "stopId": "50038"}, {"stopSequence": 71, "arrival": {"time": "1694891665"}, "stopId": "50039"}, {"stopSequence": 72, "arrival": {"time": "1694891738"}, "stopId": "50040"}, {"stopSequence": 73, "arrival": {"time": "1694891848"}, "stopId": "50041"}, {"stopSequence": 74, "arrival": {"time": "1694892033"}, "stopId": "Jun-15"}, {"stopSequence": 75, "arrival": {"time": "1694892156"}, "stopId": "Jun-13"}, {"stopSequence": 76, "arrival": {"time": "1694892431"}, "stopId": "6-Oct"}, {"stopSequence": 77, "arrival": {"time": "1694892516"}, "stopId": "6-Aug"}, {"stopSequence": 78, "arrival": {"time": "1694892761"}, "stopId": "6-Jun"}, {"stopSequence": 79, "arrival": {"time": "1694892952"}, "stopId": "6-Feb"}, {"stopSequence": 80, "arrival": {"time": "1694893204"}, "stopId": "7-Jul"}, {"stopSequence": 81, "arrival": {"time": "1694893324"}, "stopId": "7-May"}, {"stopSequence": 82, "arrival": {"time": "1694893380"}, "stopId": "1508142"}, {"stopSequence": 83, "arrival": {"time": "1694893588"}, "stopId": "7-Feb"}, {"stopSequence": 84, "arrival": {"time": "1694893718"}, "stopId": "8-Jan"}, {"stopSequence": 85, "arrival": {"time": "1694893783"}, "stopId": "9-Jan"}, {"stopSequence": 86, "arrival": {"time": "1694893869"}, "stopId": "10-Apr"}, {"stopSequence": 87, "arrival": {"time": "1694893996"}, "stopId": "10-Jan"}, {"stopSequence": 88, "arrival": {"time": "1694894090"}, "stopId": "44863"}, {"stopSequence": 89, "arrival": {"time": "1694894163"}, "stopId": "10-Mar"}, {"stopSequence": 90, "arrival": {"time": "1694894293"}, "stopId": "11-Jan"}, {"stopSequence": 91, "arrival": {"time": "1694894418"}, "stopId": "44866"}, {"stopSequence": 92, "arrival": {"time": "1694894515"}, "stopId": "44867"}, {"stopSequence": 93, "arrival": {"time": "1694894582"}, "stopId": "44868"}, {"stopSequence": 94, "arrival": {"time": "1694894652"}, "stopId": "44869"}, {"stopSequence": 95, "arrival": {"time": "1694894738"}, "stopId": "44870"}, {"stopSequence": 96, "arrival": {"time": "1694894829"}, "stopId": "44871"}, {"stopSequence": 97, "arrival": {"time": "1694894939"}, "stopId": "44872"}, {"stopSequence": 98, "arrival": {"time": "1694895121"}, "stopId": "50020"}, {"stopSequence": 99, "arrival": {"time": "1694895381"}, "stopId": "14-11"}, {"stopSequence": 100, "arrival": {"time": "1694895496"}, "stopId": "91162"}, {"stopSequence": 101, "arrival": {"time": "1694895771"}, "stopId": "50023"}, {"stopSequence": 102, "arrival": {"time": "1694896127"}, "stopId": "14-Jul"}, {"stopSequence": 103, "arrival": {"time": "1694896266"}, "stopId": "14-Apr"}, {"stopSequence": 104, "arrival": {"time": "1694896447"}, "stopId": "37474"}, {"stopSequence": 105, "arrival": {"time": "1694896642"}, "stopId": "44879"}], "vehicle": {"licensePlate": "JSBB54"}, "timestamp": "1694889036"}, "vehicle": {"trip": {"tripId": "20182-701ff27f-2", "startTime": "15:16:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "590", "directionId": 1}, "position": {"latitude": -36.77121, "longitude": -73.0858, "bearing": 181.0, "odometer": 0.0, "speed": 9.444445}, "timestamp": "1694889036", "vehicle": {"licensePlate": "JSBB54"}}}, {"id": "1f78272f-8840-4faf-b5cd-6ed247ddedbb", "tripUpdate": {"trip": {"tripId": "20257-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "590", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 37, "arrival": {"time": "1694889036"}, "stopId": "12-Jan"}, {"stopSequence": 38, "arrival": {"time": "1694889082"}, "stopId": "12-Feb"}, {"stopSequence": 39, "arrival": {"time": "1694889136"}, "stopId": "7-Jan"}, {"stopSequence": 40, "arrival": {"time": "1694889192"}, "stopId": "7-Mar"}, {"stopSequence": 41, "arrival": {"time": "1694889332"}, "stopId": "7-Jun"}, {"stopSequence": 42, "arrival": {"time": "1694889404"}, "stopId": "7-Aug"}, {"stopSequence": 43, "arrival": {"time": "1694889472"}, "stopId": "6-Jan"}, {"stopSequence": 44, "arrival": {"time": "1694889543"}, "stopId": "6-Mar"}, {"stopSequence": 45, "arrival": {"time": "1694889650"}, "stopId": "6-May"}, {"stopSequence": 46, "arrival": {"time": "1694889804"}, "stopId": "6-Jul"}, {"stopSequence": 47, "arrival": {"time": "1694889865"}, "stopId": "6-Sep"}, {"stopSequence": 48, "arrival": {"time": "1694889950"}, "stopId": "6-Nov"}, {"stopSequence": 49, "arrival": {"time": "1694890054"}, "stopId": "6-Dec"}, {"stopSequence": 50, "arrival": {"time": "1694890142"}, "stopId": "Jun-14"}, {"stopSequence": 51, "arrival": {"time": "1694890288"}, "stopId": "Jun-17"}, {"stopSequence": 52, "arrival": {"time": "1694890371"}, "stopId": "Jun-19"}, {"stopSequence": 53, "arrival": {"time": "1694890425"}, "stopId": "Jun-20"}, {"stopSequence": 54, "arrival": {"time": "1694890486"}, "stopId": "Jun-22"}, {"stopSequence": 55, "arrival": {"time": "1694890549"}, "stopId": "Jun-24"}, {"stopSequence": 56, "arrival": {"time": "1694890639"}, "stopId": "Jun-25"}, {"stopSequence": 57, "arrival": {"time": "1694890932"}, "stopId": "90003"}, {"stopSequence": 58, "arrival": {"time": "1694890981"}, "stopId": "90007"}, {"stopSequence": 59, "arrival": {"time": "1694891034"}, "stopId": "90008"}, {"stopSequence": 60, "arrival": {"time": "1694891153"}, "stopId": "39599"}, {"stopSequence": 61, "arrival": {"time": "1694891237"}, "stopId": "45011"}, {"stopSequence": 62, "arrival": {"time": "1694891348"}, "stopId": "39623"}, {"stopSequence": 63, "arrival": {"time": "1694891404"}, "stopId": "39624"}, {"stopSequence": 64, "arrival": {"time": "1694891479"}, "stopId": "90000"}, {"stopSequence": 65, "arrival": {"time": "1694891539"}, "stopId": "39628"}, {"stopSequence": 66, "arrival": {"time": "1694891630"}, "stopId": "39631"}, {"stopSequence": 67, "arrival": {"time": "1694891688"}, "stopId": "49311"}, {"stopSequence": 68, "arrival": {"time": "1694891756"}, "stopId": "39634"}, {"stopSequence": 69, "arrival": {"time": "1694891788"}, "stopId": "39635"}, {"stopSequence": 70, "arrival": {"time": "1694891846"}, "stopId": "39636"}, {"stopSequence": 71, "arrival": {"time": "1694891914"}, "stopId": "49503"}, {"stopSequence": 72, "arrival": {"time": "1694892081"}, "stopId": "39637"}, {"stopSequence": 73, "arrival": {"time": "1694892147"}, "stopId": "49317"}, {"stopSequence": 74, "arrival": {"time": "1694892191"}, "stopId": "49318"}, {"stopSequence": 75, "arrival": {"time": "1694892283"}, "stopId": "49319"}, {"stopSequence": 76, "arrival": {"time": "1694892375"}, "stopId": "39641"}, {"stopSequence": 77, "arrival": {"time": "1694892742"}, "stopId": "49323"}, {"stopSequence": 78, "arrival": {"time": "1694892797"}, "stopId": "49324"}, {"stopSequence": 79, "arrival": {"time": "1694892861"}, "stopId": "49325"}, {"stopSequence": 80, "arrival": {"time": "1694892965"}, "stopId": "49326"}, {"stopSequence": 81, "arrival": {"time": "1694893018"}, "stopId": "37425"}, {"stopSequence": 82, "arrival": {"time": "1694893083"}, "stopId": "37426"}, {"stopSequence": 83, "arrival": {"time": "1694893144"}, "stopId": "37427"}, {"stopSequence": 84, "arrival": {"time": "1694893246"}, "stopId": "8606049"}, {"stopSequence": 85, "arrival": {"time": "1694893343"}, "stopId": "37428"}, {"stopSequence": 86, "arrival": {"time": "1694893404"}, "stopId": "37429"}, {"stopSequence": 87, "arrival": {"time": "1694893483"}, "stopId": "37430"}, {"stopSequence": 88, "arrival": {"time": "1694893547"}, "stopId": "37431"}, {"stopSequence": 89, "arrival": {"time": "1694893605"}, "stopId": "37432"}, {"stopSequence": 90, "arrival": {"time": "1694893812"}, "stopId": "37433"}, {"stopSequence": 91, "arrival": {"time": "1694894004"}, "stopId": "37434"}, {"stopSequence": 92, "arrival": {"time": "1694894047"}, "stopId": "37435"}, {"stopSequence": 93, "arrival": {"time": "1694894172"}, "stopId": "37436"}, {"stopSequence": 94, "arrival": {"time": "1694894330"}, "stopId": "37437"}, {"stopSequence": 95, "arrival": {"time": "1694894460"}, "stopId": "49337"}, {"stopSequence": 96, "arrival": {"time": "1694894530"}, "stopId": "39661"}, {"stopSequence": 97, "arrival": {"time": "1694894657"}, "stopId": "39662"}, {"stopSequence": 98, "arrival": {"time": "1694894805"}, "stopId": "39663"}, {"stopSequence": 99, "arrival": {"time": "1694894917"}, "stopId": "49341"}, {"stopSequence": 100, "arrival": {"time": "1694895047"}, "stopId": "49342"}, {"stopSequence": 101, "arrival": {"time": "1694895324"}, "stopId": "49343"}, {"stopSequence": 102, "arrival": {"time": "1694895936"}, "stopId": "49344"}, {"stopSequence": 103, "arrival": {"time": "1694896507"}, "stopId": "49345"}, {"stopSequence": 104, "arrival": {"time": "1694897207"}, "stopId": "49346"}, {"stopSequence": 105, "arrival": {"time": "1694897472"}, "stopId": "49347"}, {"stopSequence": 106, "arrival": {"time": "1694898652"}, "stopId": "49348"}, {"stopSequence": 107, "arrival": {"time": "1694899801"}, "stopId": "42250"}], "vehicle": {"licensePlate": "JWXV66"}, "timestamp": "1694889034"}, "vehicle": {"trip": {"tripId": "20257-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "590", "directionId": 0}, "position": {"latitude": -36.738255, "longitude": -72.99741, "bearing": 247.0, "odometer": 0.0, "speed": 10.0}, "timestamp": "1694889034", "vehicle": {"licensePlate": "JWXV66"}}}, {"id": "d264dfdd-b990-49ca-a5f2-d8ff18f07492", "tripUpdate": {"trip": {"tripId": "20256-701ff27f-2", "startTime": "14:45:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "590", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 60, "arrival": {"time": "1694889039"}, "stopId": "39599"}, {"stopSequence": 61, "arrival": {"time": "1694889120"}, "stopId": "45011"}, {"stopSequence": 62, "arrival": {"time": "1694889225"}, "stopId": "39623"}, {"stopSequence": 63, "arrival": {"time": "1694889276"}, "stopId": "39624"}, {"stopSequence": 64, "arrival": {"time": "1694889343"}, "stopId": "90000"}, {"stopSequence": 65, "arrival": {"time": "1694889395"}, "stopId": "39628"}, {"stopSequence": 66, "arrival": {"time": "1694889473"}, "stopId": "39631"}, {"stopSequence": 67, "arrival": {"time": "1694889520"}, "stopId": "49311"}, {"stopSequence": 68, "arrival": {"time": "1694889575"}, "stopId": "39634"}, {"stopSequence": 69, "arrival": {"time": "1694889601"}, "stopId": "39635"}, {"stopSequence": 70, "arrival": {"time": "1694889646"}, "stopId": "39636"}, {"stopSequence": 71, "arrival": {"time": "1694889699"}, "stopId": "49503"}, {"stopSequence": 72, "arrival": {"time": "1694889823"}, "stopId": "39637"}, {"stopSequence": 73, "arrival": {"time": "1694889871"}, "stopId": "49317"}, {"stopSequence": 74, "arrival": {"time": "1694889902"}, "stopId": "49318"}, {"stopSequence": 75, "arrival": {"time": "1694889966"}, "stopId": "49319"}, {"stopSequence": 76, "arrival": {"time": "1694890028"}, "stopId": "39641"}, {"stopSequence": 77, "arrival": {"time": "1694890262"}, "stopId": "49323"}, {"stopSequence": 78, "arrival": {"time": "1694890296"}, "stopId": "49324"}, {"stopSequence": 79, "arrival": {"time": "1694890334"}, "stopId": "49325"}, {"stopSequence": 80, "arrival": {"time": "1694890395"}, "stopId": "49326"}, {"stopSequence": 81, "arrival": {"time": "1694890426"}, "stopId": "37425"}, {"stopSequence": 82, "arrival": {"time": "1694890463"}, "stopId": "37426"}, {"stopSequence": 83, "arrival": {"time": "1694890497"}, "stopId": "37427"}, {"stopSequence": 84, "arrival": {"time": "1694890553"}, "stopId": "8606049"}, {"stopSequence": 85, "arrival": {"time": "1694890605"}, "stopId": "37428"}, {"stopSequence": 86, "arrival": {"time": "1694890637"}, "stopId": "37429"}, {"stopSequence": 87, "arrival": {"time": "1694890678"}, "stopId": "37430"}, {"stopSequence": 88, "arrival": {"time": "1694890711"}, "stopId": "37431"}, {"stopSequence": 89, "arrival": {"time": "1694890741"}, "stopId": "37432"}, {"stopSequence": 90, "arrival": {"time": "1694890843"}, "stopId": "37433"}, {"stopSequence": 91, "arrival": {"time": "1694890935"}, "stopId": "37434"}, {"stopSequence": 92, "arrival": {"time": "1694890955"}, "stopId": "37435"}, {"stopSequence": 93, "arrival": {"time": "1694891012"}, "stopId": "37436"}, {"stopSequence": 94, "arrival": {"time": "1694891083"}, "stopId": "37437"}, {"stopSequence": 95, "arrival": {"time": "1694891139"}, "stopId": "49337"}, {"stopSequence": 96, "arrival": {"time": "1694891169"}, "stopId": "39661"}, {"stopSequence": 97, "arrival": {"time": "1694891223"}, "stopId": "39662"}, {"stopSequence": 98, "arrival": {"time": "1694891284"}, "stopId": "39663"}, {"stopSequence": 99, "arrival": {"time": "1694891329"}, "stopId": "49341"}, {"stopSequence": 100, "arrival": {"time": "1694891380"}, "stopId": "49342"}, {"stopSequence": 101, "arrival": {"time": "1694891487"}, "stopId": "49343"}, {"stopSequence": 102, "arrival": {"time": "1694891706"}, "stopId": "49344"}, {"stopSequence": 103, "arrival": {"time": "1694891895"}, "stopId": "49345"}, {"stopSequence": 104, "arrival": {"time": "1694892107"}, "stopId": "49346"}, {"stopSequence": 105, "arrival": {"time": "1694892183"}, "stopId": "49347"}, {"stopSequence": 106, "arrival": {"time": "1694892492"}, "stopId": "49348"}, {"stopSequence": 107, "arrival": {"time": "1694892756"}, "stopId": "42250"}], "vehicle": {"licensePlate": "KLJL33"}, "timestamp": "1694889035"}, "vehicle": {"trip": {"tripId": "20256-701ff27f-2", "startTime": "14:45:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "590", "directionId": 0}, "position": {"latitude": -36.81917, "longitude": -73.03686, "bearing": 151.0, "odometer": 0.0, "speed": 11.666667}, "timestamp": "1694889035", "vehicle": {"licensePlate": "KLJL33"}}}, {"id": "4bb4bdbf-5e75-42ee-b66b-9a74e2daf707", "tripUpdate": {"trip": {"tripId": "20180-701ff27f-2", "startTime": "14:46:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "590", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 67, "arrival": {"time": "1694889011"}, "stopId": "35710"}, {"stopSequence": 68, "arrival": {"time": "1694889059"}, "stopId": "50036"}, {"stopSequence": 69, "arrival": {"time": "1694889299"}, "stopId": "50037"}, {"stopSequence": 70, "arrival": {"time": "1694889444"}, "stopId": "50038"}, {"stopSequence": 71, "arrival": {"time": "1694889520"}, "stopId": "50039"}, {"stopSequence": 72, "arrival": {"time": "1694889579"}, "stopId": "50040"}, {"stopSequence": 73, "arrival": {"time": "1694889666"}, "stopId": "50041"}, {"stopSequence": 74, "arrival": {"time": "1694889806"}, "stopId": "Jun-15"}, {"stopSequence": 75, "arrival": {"time": "1694889894"}, "stopId": "Jun-13"}, {"stopSequence": 76, "arrival": {"time": "1694890083"}, "stopId": "6-Oct"}, {"stopSequence": 77, "arrival": {"time": "1694890138"}, "stopId": "6-Aug"}, {"stopSequence": 78, "arrival": {"time": "1694890292"}, "stopId": "6-Jun"}, {"stopSequence": 79, "arrival": {"time": "1694890406"}, "stopId": "6-Feb"}, {"stopSequence": 80, "arrival": {"time": "1694890549"}, "stopId": "7-Jul"}, {"stopSequence": 81, "arrival": {"time": "1694890614"}, "stopId": "7-May"}, {"stopSequence": 82, "arrival": {"time": "1694890644"}, "stopId": "1508142"}, {"stopSequence": 83, "arrival": {"time": "1694890753"}, "stopId": "7-Feb"}, {"stopSequence": 84, "arrival": {"time": "1694890818"}, "stopId": "8-Jan"}, {"stopSequence": 85, "arrival": {"time": "1694890850"}, "stopId": "9-Jan"}, {"stopSequence": 86, "arrival": {"time": "1694890892"}, "stopId": "10-Apr"}, {"stopSequence": 87, "arrival": {"time": "1694890953"}, "stopId": "10-Jan"}, {"stopSequence": 88, "arrival": {"time": "1694890997"}, "stopId": "44863"}, {"stopSequence": 89, "arrival": {"time": "1694891030"}, "stopId": "10-Mar"}, {"stopSequence": 90, "arrival": {"time": "1694891090"}, "stopId": "11-Jan"}, {"stopSequence": 91, "arrival": {"time": "1694891145"}, "stopId": "44866"}, {"stopSequence": 92, "arrival": {"time": "1694891187"}, "stopId": "44867"}, {"stopSequence": 93, "arrival": {"time": "1694891216"}, "stopId": "44868"}, {"stopSequence": 94, "arrival": {"time": "1694891246"}, "stopId": "44869"}, {"stopSequence": 95, "arrival": {"time": "1694891282"}, "stopId": "44870"}, {"stopSequence": 96, "arrival": {"time": "1694891319"}, "stopId": "44871"}, {"stopSequence": 97, "arrival": {"time": "1694891364"}, "stopId": "44872"}, {"stopSequence": 98, "arrival": {"time": "1694891437"}, "stopId": "50020"}, {"stopSequence": 99, "arrival": {"time": "1694891537"}, "stopId": "14-11"}, {"stopSequence": 100, "arrival": {"time": "1694891580"}, "stopId": "91162"}, {"stopSequence": 101, "arrival": {"time": "1694891680"}, "stopId": "50023"}, {"stopSequence": 102, "arrival": {"time": "1694891803"}, "stopId": "14-Jul"}, {"stopSequence": 103, "arrival": {"time": "1694891850"}, "stopId": "14-Apr"}, {"stopSequence": 104, "arrival": {"time": "1694891910"}, "stopId": "37474"}, {"stopSequence": 105, "arrival": {"time": "1694891973"}, "stopId": "44879"}], "vehicle": {"licensePlate": "SWPX84"}, "timestamp": "1694889004"}, "vehicle": {"trip": {"tripId": "20180-701ff27f-2", "startTime": "14:46:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "590", "directionId": 1}, "position": {"latitude": -36.815304, "longitude": -73.0314, "bearing": 36.0, "odometer": 0.0, "speed": 6.388889}, "timestamp": "1694889004", "vehicle": {"licensePlate": "SWPX84"}}}, {"id": "20bc1f0b-d12d-4e05-9ebb-a04b3fc6ed73", "tripUpdate": {"trip": {"tripId": "20410-701ff27f-2", "startTime": "15:15:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "591", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 24, "arrival": {"time": "1694889078"}, "stopId": "50017"}, {"stopSequence": 25, "arrival": {"time": "1694889121"}, "stopId": "45054"}, {"stopSequence": 26, "arrival": {"time": "1694889227"}, "stopId": "45055"}, {"stopSequence": 27, "arrival": {"time": "1694889269"}, "stopId": "45056"}, {"stopSequence": 28, "arrival": {"time": "1694889339"}, "stopId": "45057"}, {"stopSequence": 29, "arrival": {"time": "1694889345"}, "stopId": "44958"}, {"stopSequence": 30, "arrival": {"time": "1694889401"}, "stopId": "1508146"}, {"stopSequence": 31, "arrival": {"time": "1694889448"}, "stopId": "44957"}, {"stopSequence": 32, "arrival": {"time": "1694889483"}, "stopId": "44956"}, {"stopSequence": 33, "arrival": {"time": "1694889500"}, "stopId": "45060"}, {"stopSequence": 34, "arrival": {"time": "1694889611"}, "stopId": "6-Jan"}, {"stopSequence": 35, "arrival": {"time": "1694889678"}, "stopId": "6-Mar"}, {"stopSequence": 36, "arrival": {"time": "1694889778"}, "stopId": "6-May"}, {"stopSequence": 37, "arrival": {"time": "1694889927"}, "stopId": "6-Jul"}, {"stopSequence": 38, "arrival": {"time": "1694889992"}, "stopId": "6-Sep"}, {"stopSequence": 39, "arrival": {"time": "1694890072"}, "stopId": "6-Nov"}, {"stopSequence": 40, "arrival": {"time": "1694890180"}, "stopId": "6-Dec"}, {"stopSequence": 41, "arrival": {"time": "1694890269"}, "stopId": "Jun-14"}, {"stopSequence": 42, "arrival": {"time": "1694890416"}, "stopId": "Jun-17"}, {"stopSequence": 43, "arrival": {"time": "1694890494"}, "stopId": "Jun-19"}, {"stopSequence": 44, "arrival": {"time": "1694890554"}, "stopId": "Jun-20"}, {"stopSequence": 45, "arrival": {"time": "1694890615"}, "stopId": "Jun-22"}, {"stopSequence": 46, "arrival": {"time": "1694890680"}, "stopId": "Jun-24"}, {"stopSequence": 47, "arrival": {"time": "1694890771"}, "stopId": "Jun-25"}, {"stopSequence": 48, "arrival": {"time": "1694891071"}, "stopId": "90003"}, {"stopSequence": 49, "arrival": {"time": "1694891121"}, "stopId": "90007"}, {"stopSequence": 50, "arrival": {"time": "1694891176"}, "stopId": "90008"}, {"stopSequence": 51, "arrival": {"time": "1694891298"}, "stopId": "39599"}, {"stopSequence": 52, "arrival": {"time": "1694891384"}, "stopId": "45011"}, {"stopSequence": 53, "arrival": {"time": "1694891499"}, "stopId": "39623"}, {"stopSequence": 54, "arrival": {"time": "1694891557"}, "stopId": "39624"}, {"stopSequence": 55, "arrival": {"time": "1694891635"}, "stopId": "90000"}, {"stopSequence": 56, "arrival": {"time": "1694891697"}, "stopId": "39628"}, {"stopSequence": 57, "arrival": {"time": "1694891792"}, "stopId": "39631"}, {"stopSequence": 58, "arrival": {"time": "1694891852"}, "stopId": "49311"}, {"stopSequence": 59, "arrival": {"time": "1694891920"}, "stopId": "39634"}, {"stopSequence": 60, "arrival": {"time": "1694891956"}, "stopId": "39635"}, {"stopSequence": 61, "arrival": {"time": "1694892017"}, "stopId": "39636"}, {"stopSequence": 62, "arrival": {"time": "1694892088"}, "stopId": "49503"}, {"stopSequence": 63, "arrival": {"time": "1694892263"}, "stopId": "39637"}, {"stopSequence": 64, "arrival": {"time": "1694892334"}, "stopId": "49317"}, {"stopSequence": 65, "arrival": {"time": "1694892379"}, "stopId": "49318"}, {"stopSequence": 66, "arrival": {"time": "1694892476"}, "stopId": "49319"}, {"stopSequence": 67, "arrival": {"time": "1694892573"}, "stopId": "39641"}, {"stopSequence": 68, "arrival": {"time": "1694892627"}, "stopId": "39642"}, {"stopSequence": 69, "arrival": {"time": "1694892949"}, "stopId": "49323"}, {"stopSequence": 70, "arrival": {"time": "1694893021"}, "stopId": "49324"}, {"stopSequence": 71, "arrival": {"time": "1694893088"}, "stopId": "49325"}, {"stopSequence": 72, "arrival": {"time": "1694893200"}, "stopId": "49326"}, {"stopSequence": 73, "arrival": {"time": "1694893256"}, "stopId": "37425"}, {"stopSequence": 74, "arrival": {"time": "1694893325"}, "stopId": "37426"}, {"stopSequence": 75, "arrival": {"time": "1694893408"}, "stopId": "37427"}, {"stopSequence": 76, "arrival": {"time": "1694893504"}, "stopId": "8606049"}, {"stopSequence": 77, "arrival": {"time": "1694893597"}, "stopId": "37428"}, {"stopSequence": 78, "arrival": {"time": "1694893680"}, "stopId": "37429"}, {"stopSequence": 79, "arrival": {"time": "1694893745"}, "stopId": "37430"}, {"stopSequence": 80, "arrival": {"time": "1694893815"}, "stopId": "37431"}, {"stopSequence": 81, "arrival": {"time": "1694893858"}, "stopId": "37432"}, {"stopSequence": 82, "arrival": {"time": "1694894102"}, "stopId": "37433"}, {"stopSequence": 83, "arrival": {"time": "1694894314"}, "stopId": "37434"}, {"stopSequence": 84, "arrival": {"time": "1694894361"}, "stopId": "37435"}, {"stopSequence": 85, "arrival": {"time": "1694894495"}, "stopId": "37436"}, {"stopSequence": 86, "arrival": {"time": "1694894668"}, "stopId": "37437"}, {"stopSequence": 87, "arrival": {"time": "1694894809"}, "stopId": "49337"}, {"stopSequence": 88, "arrival": {"time": "1694894885"}, "stopId": "39661"}, {"stopSequence": 89, "arrival": {"time": "1694895027"}, "stopId": "39662"}, {"stopSequence": 90, "arrival": {"time": "1694895177"}, "stopId": "39663"}, {"stopSequence": 91, "arrival": {"time": "1694895332"}, "stopId": "49341"}, {"stopSequence": 92, "arrival": {"time": "1694895459"}, "stopId": "49342"}, {"stopSequence": 93, "arrival": {"time": "1694895765"}, "stopId": "49343"}, {"stopSequence": 94, "arrival": {"time": "1694896449"}, "stopId": "49344"}, {"stopSequence": 95, "arrival": {"time": "1694897069"}, "stopId": "49345"}, {"stopSequence": 96, "arrival": {"time": "1694897889"}, "stopId": "49346"}, {"stopSequence": 97, "arrival": {"time": "1694898185"}, "stopId": "49347"}, {"stopSequence": 98, "arrival": {"time": "1694899558"}, "stopId": "49348"}, {"stopSequence": 99, "arrival": {"time": "1694900912"}, "stopId": "42250"}], "vehicle": {"licensePlate": "BTRB54"}, "timestamp": "1694889027"}, "vehicle": {"trip": {"tripId": "20410-701ff27f-2", "startTime": "15:15:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "591", "directionId": 0}, "position": {"latitude": -36.739647, "longitude": -72.99081, "bearing": 239.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889027", "vehicle": {"licensePlate": "BTRB54"}}}, {"id": "856ff56f-3f7e-42ad-b76b-79982816738a", "tripUpdate": {"trip": {"tripId": "20409-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "591", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 43, "arrival": {"time": "1694889008"}, "stopId": "Jun-19"}, {"stopSequence": 44, "arrival": {"time": "1694889072"}, "stopId": "Jun-20"}, {"stopSequence": 45, "arrival": {"time": "1694889136"}, "stopId": "Jun-22"}, {"stopSequence": 46, "arrival": {"time": "1694889204"}, "stopId": "Jun-24"}, {"stopSequence": 47, "arrival": {"time": "1694889296"}, "stopId": "Jun-25"}, {"stopSequence": 48, "arrival": {"time": "1694889584"}, "stopId": "90003"}, {"stopSequence": 49, "arrival": {"time": "1694889629"}, "stopId": "90007"}, {"stopSequence": 50, "arrival": {"time": "1694889679"}, "stopId": "90008"}, {"stopSequence": 51, "arrival": {"time": "1694889787"}, "stopId": "39599"}, {"stopSequence": 52, "arrival": {"time": "1694889861"}, "stopId": "45011"}, {"stopSequence": 53, "arrival": {"time": "1694889958"}, "stopId": "39623"}, {"stopSequence": 54, "arrival": {"time": "1694890005"}, "stopId": "39624"}, {"stopSequence": 55, "arrival": {"time": "1694890069"}, "stopId": "90000"}, {"stopSequence": 56, "arrival": {"time": "1694890118"}, "stopId": "39628"}, {"stopSequence": 57, "arrival": {"time": "1694890193"}, "stopId": "39631"}, {"stopSequence": 58, "arrival": {"time": "1694890240"}, "stopId": "49311"}, {"stopSequence": 59, "arrival": {"time": "1694890292"}, "stopId": "39634"}, {"stopSequence": 60, "arrival": {"time": "1694890319"}, "stopId": "39635"}, {"stopSequence": 61, "arrival": {"time": "1694890364"}, "stopId": "39636"}, {"stopSequence": 62, "arrival": {"time": "1694890417"}, "stopId": "49503"}, {"stopSequence": 63, "arrival": {"time": "1694890543"}, "stopId": "39637"}, {"stopSequence": 64, "arrival": {"time": "1694890593"}, "stopId": "49317"}, {"stopSequence": 65, "arrival": {"time": "1694890624"}, "stopId": "49318"}, {"stopSequence": 66, "arrival": {"time": "1694890691"}, "stopId": "49319"}, {"stopSequence": 67, "arrival": {"time": "1694890756"}, "stopId": "39641"}, {"stopSequence": 68, "arrival": {"time": "1694890792"}, "stopId": "39642"}, {"stopSequence": 69, "arrival": {"time": "1694891000"}, "stopId": "49323"}, {"stopSequence": 70, "arrival": {"time": "1694891045"}, "stopId": "49324"}, {"stopSequence": 71, "arrival": {"time": "1694891087"}, "stopId": "49325"}, {"stopSequence": 72, "arrival": {"time": "1694891155"}, "stopId": "49326"}, {"stopSequence": 73, "arrival": {"time": "1694891189"}, "stopId": "37425"}, {"stopSequence": 74, "arrival": {"time": "1694891230"}, "stopId": "37426"}, {"stopSequence": 75, "arrival": {"time": "1694891279"}, "stopId": "37427"}, {"stopSequence": 76, "arrival": {"time": "1694891335"}, "stopId": "8606049"}, {"stopSequence": 77, "arrival": {"time": "1694891389"}, "stopId": "37428"}, {"stopSequence": 78, "arrival": {"time": "1694891436"}, "stopId": "37429"}, {"stopSequence": 79, "arrival": {"time": "1694891472"}, "stopId": "37430"}, {"stopSequence": 80, "arrival": {"time": "1694891511"}, "stopId": "37431"}, {"stopSequence": 81, "arrival": {"time": "1694891535"}, "stopId": "37432"}, {"stopSequence": 82, "arrival": {"time": "1694891667"}, "stopId": "37433"}, {"stopSequence": 83, "arrival": {"time": "1694891778"}, "stopId": "37434"}, {"stopSequence": 84, "arrival": {"time": "1694891803"}, "stopId": "37435"}, {"stopSequence": 85, "arrival": {"time": "1694891871"}, "stopId": "37436"}, {"stopSequence": 86, "arrival": {"time": "1694891958"}, "stopId": "37437"}, {"stopSequence": 87, "arrival": {"time": "1694892027"}, "stopId": "49337"}, {"stopSequence": 88, "arrival": {"time": "1694892064"}, "stopId": "39661"}, {"stopSequence": 89, "arrival": {"time": "1694892132"}, "stopId": "39662"}, {"stopSequence": 90, "arrival": {"time": "1694892203"}, "stopId": "39663"}, {"stopSequence": 91, "arrival": {"time": "1694892274"}, "stopId": "49341"}, {"stopSequence": 92, "arrival": {"time": "1694892332"}, "stopId": "49342"}, {"stopSequence": 93, "arrival": {"time": "1694892468"}, "stopId": "49343"}, {"stopSequence": 94, "arrival": {"time": "1694892756"}, "stopId": "49344"}, {"stopSequence": 95, "arrival": {"time": "1694893001"}, "stopId": "49345"}, {"stopSequence": 96, "arrival": {"time": "1694893302"}, "stopId": "49346"}, {"stopSequence": 97, "arrival": {"time": "1694893405"}, "stopId": "49347"}, {"stopSequence": 98, "arrival": {"time": "1694893849"}, "stopId": "49348"}, {"stopSequence": 99, "arrival": {"time": "1694894240"}, "stopId": "42250"}], "vehicle": {"licensePlate": "DJZT67"}, "timestamp": "1694888992"}, "vehicle": {"trip": {"tripId": "20409-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "591", "directionId": 0}, "position": {"latitude": -36.790726, "longitude": -73.024895, "bearing": 200.0, "odometer": 0.0, "speed": 13.611111}, "timestamp": "1694888992", "vehicle": {"licensePlate": "DJZT67"}}}, {"id": "63018140-a8df-409e-ad2e-d0c4dffa1f18", "tripUpdate": {"trip": {"tripId": "20331-701ff27f-2", "startTime": "14:30:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "591", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 54, "arrival": {"time": "1694889073"}, "stopId": "38500"}, {"stopSequence": 55, "arrival": {"time": "1694889121"}, "stopId": "35808"}, {"stopSequence": 56, "arrival": {"time": "1694889183"}, "stopId": "35710"}, {"stopSequence": 57, "arrival": {"time": "1694889229"}, "stopId": "50036"}, {"stopSequence": 58, "arrival": {"time": "1694889462"}, "stopId": "50037"}, {"stopSequence": 59, "arrival": {"time": "1694889607"}, "stopId": "50038"}, {"stopSequence": 60, "arrival": {"time": "1694889683"}, "stopId": "50039"}, {"stopSequence": 61, "arrival": {"time": "1694889738"}, "stopId": "50040"}, {"stopSequence": 62, "arrival": {"time": "1694889826"}, "stopId": "50041"}, {"stopSequence": 63, "arrival": {"time": "1694889960"}, "stopId": "Jun-15"}, {"stopSequence": 64, "arrival": {"time": "1694890054"}, "stopId": "Jun-13"}, {"stopSequence": 65, "arrival": {"time": "1694890243"}, "stopId": "6-Oct"}, {"stopSequence": 66, "arrival": {"time": "1694890301"}, "stopId": "6-Aug"}, {"stopSequence": 67, "arrival": {"time": "1694890452"}, "stopId": "6-Jun"}, {"stopSequence": 68, "arrival": {"time": "1694890575"}, "stopId": "6-Feb"}, {"stopSequence": 69, "arrival": {"time": "1694890712"}, "stopId": "7-Jul"}, {"stopSequence": 70, "arrival": {"time": "1694890779"}, "stopId": "7-May"}, {"stopSequence": 71, "arrival": {"time": "1694890815"}, "stopId": "1508142"}, {"stopSequence": 72, "arrival": {"time": "1694890923"}, "stopId": "7-Feb"}, {"stopSequence": 73, "arrival": {"time": "1694890986"}, "stopId": "8-Jan"}, {"stopSequence": 74, "arrival": {"time": "1694891019"}, "stopId": "9-Jan"}, {"stopSequence": 75, "arrival": {"time": "1694891062"}, "stopId": "10-Apr"}, {"stopSequence": 76, "arrival": {"time": "1694891124"}, "stopId": "10-Jan"}, {"stopSequence": 77, "arrival": {"time": "1694891169"}, "stopId": "44863"}, {"stopSequence": 78, "arrival": {"time": "1694891204"}, "stopId": "10-Mar"}, {"stopSequence": 79, "arrival": {"time": "1694891265"}, "stopId": "11-Jan"}, {"stopSequence": 80, "arrival": {"time": "1694891321"}, "stopId": "44866"}, {"stopSequence": 81, "arrival": {"time": "1694891365"}, "stopId": "44867"}, {"stopSequence": 82, "arrival": {"time": "1694891395"}, "stopId": "44868"}, {"stopSequence": 83, "arrival": {"time": "1694891425"}, "stopId": "44869"}, {"stopSequence": 84, "arrival": {"time": "1694891463"}, "stopId": "44870"}, {"stopSequence": 85, "arrival": {"time": "1694891501"}, "stopId": "44871"}, {"stopSequence": 86, "arrival": {"time": "1694891548"}, "stopId": "44872"}, {"stopSequence": 87, "arrival": {"time": "1694891623"}, "stopId": "50020"}, {"stopSequence": 88, "arrival": {"time": "1694891723"}, "stopId": "14-11"}, {"stopSequence": 89, "arrival": {"time": "1694891774"}, "stopId": "91162"}, {"stopSequence": 90, "arrival": {"time": "1694891875"}, "stopId": "50023"}, {"stopSequence": 91, "arrival": {"time": "1694892003"}, "stopId": "14-Jul"}, {"stopSequence": 92, "arrival": {"time": "1694892052"}, "stopId": "14-Apr"}, {"stopSequence": 93, "arrival": {"time": "1694892115"}, "stopId": "37474"}, {"stopSequence": 94, "arrival": {"time": "1694892180"}, "stopId": "44879"}], "vehicle": {"licensePlate": "DKYW12"}, "timestamp": "1694889033"}, "vehicle": {"trip": {"tripId": "20331-701ff27f-2", "startTime": "14:30:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "591", "directionId": 1}, "position": {"latitude": -36.81754, "longitude": -73.037865, "bearing": 59.0, "odometer": 0.0, "speed": 7.2222223}, "timestamp": "1694889033", "vehicle": {"licensePlate": "DKYW12"}}}, {"id": "adea44f7-50cc-49b3-aa67-17a3fecdfba5", "tripUpdate": {"trip": {"tripId": "20408-701ff27f-2", "startTime": "14:45:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "591", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 56, "arrival": {"time": "1694888995"}, "stopId": "39628"}, {"stopSequence": 57, "arrival": {"time": "1694889077"}, "stopId": "39631"}, {"stopSequence": 58, "arrival": {"time": "1694889127"}, "stopId": "49311"}, {"stopSequence": 59, "arrival": {"time": "1694889182"}, "stopId": "39634"}, {"stopSequence": 60, "arrival": {"time": "1694889212"}, "stopId": "39635"}, {"stopSequence": 61, "arrival": {"time": "1694889259"}, "stopId": "39636"}, {"stopSequence": 62, "arrival": {"time": "1694889314"}, "stopId": "49503"}, {"stopSequence": 63, "arrival": {"time": "1694889442"}, "stopId": "39637"}, {"stopSequence": 64, "arrival": {"time": "1694889492"}, "stopId": "49317"}, {"stopSequence": 65, "arrival": {"time": "1694889523"}, "stopId": "49318"}, {"stopSequence": 66, "arrival": {"time": "1694889588"}, "stopId": "49319"}, {"stopSequence": 67, "arrival": {"time": "1694889651"}, "stopId": "39641"}, {"stopSequence": 68, "arrival": {"time": "1694889686"}, "stopId": "39642"}, {"stopSequence": 69, "arrival": {"time": "1694889879"}, "stopId": "49323"}, {"stopSequence": 70, "arrival": {"time": "1694889920"}, "stopId": "49324"}, {"stopSequence": 71, "arrival": {"time": "1694889957"}, "stopId": "49325"}, {"stopSequence": 72, "arrival": {"time": "1694890018"}, "stopId": "49326"}, {"stopSequence": 73, "arrival": {"time": "1694890048"}, "stopId": "37425"}, {"stopSequence": 74, "arrival": {"time": "1694890084"}, "stopId": "37426"}, {"stopSequence": 75, "arrival": {"time": "1694890127"}, "stopId": "37427"}, {"stopSequence": 76, "arrival": {"time": "1694890175"}, "stopId": "8606049"}, {"stopSequence": 77, "arrival": {"time": "1694890221"}, "stopId": "37428"}, {"stopSequence": 78, "arrival": {"time": "1694890260"}, "stopId": "37429"}, {"stopSequence": 79, "arrival": {"time": "1694890291"}, "stopId": "37430"}, {"stopSequence": 80, "arrival": {"time": "1694890323"}, "stopId": "37431"}, {"stopSequence": 81, "arrival": {"time": "1694890343"}, "stopId": "37432"}, {"stopSequence": 82, "arrival": {"time": "1694890451"}, "stopId": "37433"}, {"stopSequence": 83, "arrival": {"time": "1694890540"}, "stopId": "37434"}, {"stopSequence": 84, "arrival": {"time": "1694890560"}, "stopId": "37435"}, {"stopSequence": 85, "arrival": {"time": "1694890613"}, "stopId": "37436"}, {"stopSequence": 86, "arrival": {"time": "1694890681"}, "stopId": "37437"}, {"stopSequence": 87, "arrival": {"time": "1694890734"}, "stopId": "49337"}, {"stopSequence": 88, "arrival": {"time": "1694890762"}, "stopId": "39661"}, {"stopSequence": 89, "arrival": {"time": "1694890814"}, "stopId": "39662"}, {"stopSequence": 90, "arrival": {"time": "1694890866"}, "stopId": "39663"}, {"stopSequence": 91, "arrival": {"time": "1694890920"}, "stopId": "49341"}, {"stopSequence": 92, "arrival": {"time": "1694890962"}, "stopId": "49342"}, {"stopSequence": 93, "arrival": {"time": "1694891061"}, "stopId": "49343"}, {"stopSequence": 94, "arrival": {"time": "1694891263"}, "stopId": "49344"}, {"stopSequence": 95, "arrival": {"time": "1694891430"}, "stopId": "49345"}, {"stopSequence": 96, "arrival": {"time": "1694891628"}, "stopId": "49346"}, {"stopSequence": 97, "arrival": {"time": "1694891694"}, "stopId": "49347"}, {"stopSequence": 98, "arrival": {"time": "1694891971"}, "stopId": "49348"}, {"stopSequence": 99, "arrival": {"time": "1694892204"}, "stopId": "42250"}], "vehicle": {"licensePlate": "FHJF77"}, "timestamp": "1694888986"}, "vehicle": {"trip": {"tripId": "20408-701ff27f-2", "startTime": "14:45:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "591", "directionId": 0}, "position": {"latitude": -36.826458, "longitude": -73.05332, "bearing": 244.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888986", "vehicle": {"licensePlate": "FHJF77"}}}, {"id": "81a4de54-c212-4560-8291-eb3f0262e89a", "tripUpdate": {"trip": {"tripId": "20334-701ff27f-2", "startTime": "15:15:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "591", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 24, "arrival": {"time": "1694889046"}, "stopId": "4838438"}, {"stopSequence": 25, "arrival": {"time": "1694889197"}, "stopId": "44896"}, {"stopSequence": 26, "arrival": {"time": "1694889248"}, "stopId": "44897"}, {"stopSequence": 27, "arrival": {"time": "1694889323"}, "stopId": "44898"}, {"stopSequence": 28, "arrival": {"time": "1694889494"}, "stopId": "40993"}, {"stopSequence": 29, "arrival": {"time": "1694889977"}, "stopId": "40995"}, {"stopSequence": 30, "arrival": {"time": "1694890055"}, "stopId": "40996"}, {"stopSequence": 31, "arrival": {"time": "1694890130"}, "stopId": "40997"}, {"stopSequence": 32, "arrival": {"time": "1694890187"}, "stopId": "39614"}, {"stopSequence": 33, "arrival": {"time": "1694890234"}, "stopId": "39615"}, {"stopSequence": 34, "arrival": {"time": "1694890281"}, "stopId": "39616"}, {"stopSequence": 35, "arrival": {"time": "1694890335"}, "stopId": "39617"}, {"stopSequence": 36, "arrival": {"time": "1694890392"}, "stopId": "39618"}, {"stopSequence": 37, "arrival": {"time": "1694890437"}, "stopId": "39619"}, {"stopSequence": 38, "arrival": {"time": "1694890478"}, "stopId": "39620"}, {"stopSequence": 39, "arrival": {"time": "1694890544"}, "stopId": "39621"}, {"stopSequence": 40, "arrival": {"time": "1694890603"}, "stopId": "39623"}, {"stopSequence": 41, "arrival": {"time": "1694890751"}, "stopId": "39627"}, {"stopSequence": 42, "arrival": {"time": "1694890850"}, "stopId": "39631"}, {"stopSequence": 43, "arrival": {"time": "1694890899"}, "stopId": "49311"}, {"stopSequence": 44, "arrival": {"time": "1694890958"}, "stopId": "35796"}, {"stopSequence": 45, "arrival": {"time": "1694891010"}, "stopId": "35797"}, {"stopSequence": 46, "arrival": {"time": "1694891054"}, "stopId": "35798"}, {"stopSequence": 47, "arrival": {"time": "1694891095"}, "stopId": "35799"}, {"stopSequence": 48, "arrival": {"time": "1694891171"}, "stopId": "35800"}, {"stopSequence": 49, "arrival": {"time": "1694891225"}, "stopId": "35801"}, {"stopSequence": 50, "arrival": {"time": "1694891253"}, "stopId": "35802"}, {"stopSequence": 51, "arrival": {"time": "1694891307"}, "stopId": "35803"}, {"stopSequence": 52, "arrival": {"time": "1694891370"}, "stopId": "38507"}, {"stopSequence": 53, "arrival": {"time": "1694891428"}, "stopId": "34473"}, {"stopSequence": 54, "arrival": {"time": "1694891479"}, "stopId": "38500"}, {"stopSequence": 55, "arrival": {"time": "1694891533"}, "stopId": "35808"}, {"stopSequence": 56, "arrival": {"time": "1694891602"}, "stopId": "35710"}, {"stopSequence": 57, "arrival": {"time": "1694891656"}, "stopId": "50036"}, {"stopSequence": 58, "arrival": {"time": "1694891944"}, "stopId": "50037"}, {"stopSequence": 59, "arrival": {"time": "1694892139"}, "stopId": "50038"}, {"stopSequence": 60, "arrival": {"time": "1694892245"}, "stopId": "50039"}, {"stopSequence": 61, "arrival": {"time": "1694892326"}, "stopId": "50040"}, {"stopSequence": 62, "arrival": {"time": "1694892458"}, "stopId": "50041"}, {"stopSequence": 63, "arrival": {"time": "1694892670"}, "stopId": "Jun-15"}, {"stopSequence": 64, "arrival": {"time": "1694892825"}, "stopId": "Jun-13"}, {"stopSequence": 65, "arrival": {"time": "1694893160"}, "stopId": "6-Oct"}, {"stopSequence": 66, "arrival": {"time": "1694893270"}, "stopId": "6-Aug"}, {"stopSequence": 67, "arrival": {"time": "1694893568"}, "stopId": "6-Jun"}, {"stopSequence": 68, "arrival": {"time": "1694893825"}, "stopId": "6-Feb"}, {"stopSequence": 69, "arrival": {"time": "1694894131"}, "stopId": "7-Jul"}, {"stopSequence": 70, "arrival": {"time": "1694894286"}, "stopId": "7-May"}, {"stopSequence": 71, "arrival": {"time": "1694894374"}, "stopId": "1508142"}, {"stopSequence": 72, "arrival": {"time": "1694894639"}, "stopId": "7-Feb"}, {"stopSequence": 73, "arrival": {"time": "1694894802"}, "stopId": "8-Jan"}, {"stopSequence": 74, "arrival": {"time": "1694894889"}, "stopId": "9-Jan"}, {"stopSequence": 75, "arrival": {"time": "1694895004"}, "stopId": "10-Apr"}, {"stopSequence": 76, "arrival": {"time": "1694895174"}, "stopId": "10-Jan"}, {"stopSequence": 77, "arrival": {"time": "1694895302"}, "stopId": "44863"}, {"stopSequence": 78, "arrival": {"time": "1694895401"}, "stopId": "10-Mar"}, {"stopSequence": 79, "arrival": {"time": "1694895579"}, "stopId": "11-Jan"}, {"stopSequence": 80, "arrival": {"time": "1694895752"}, "stopId": "44866"}, {"stopSequence": 81, "arrival": {"time": "1694895887"}, "stopId": "44867"}, {"stopSequence": 82, "arrival": {"time": "1694895981"}, "stopId": "44868"}, {"stopSequence": 83, "arrival": {"time": "1694896078"}, "stopId": "44869"}, {"stopSequence": 84, "arrival": {"time": "1694896199"}, "stopId": "44870"}, {"stopSequence": 85, "arrival": {"time": "1694896328"}, "stopId": "44871"}, {"stopSequence": 86, "arrival": {"time": "1694896485"}, "stopId": "44872"}, {"stopSequence": 87, "arrival": {"time": "1694896747"}, "stopId": "50020"}, {"stopSequence": 88, "arrival": {"time": "1694897113"}, "stopId": "14-11"}, {"stopSequence": 89, "arrival": {"time": "1694897307"}, "stopId": "91162"}, {"stopSequence": 90, "arrival": {"time": "1694897705"}, "stopId": "50023"}, {"stopSequence": 91, "arrival": {"time": "1694898242"}, "stopId": "14-Jul"}, {"stopSequence": 92, "arrival": {"time": "1694898457"}, "stopId": "14-Apr"}, {"stopSequence": 93, "arrival": {"time": "1694898738"}, "stopId": "37474"}, {"stopSequence": 94, "arrival": {"time": "1694899045"}, "stopId": "44879"}], "vehicle": {"licensePlate": "HYYX83"}, "timestamp": "1694889004"}, "vehicle": {"trip": {"tripId": "20334-701ff27f-2", "startTime": "15:15:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "591", "directionId": 1}, "position": {"latitude": -36.76206, "longitude": -73.0883, "bearing": 154.0, "odometer": 0.0, "speed": 11.944445}, "timestamp": "1694889004", "vehicle": {"licensePlate": "HYYX83"}}}, {"id": "67ad7a2d-b3eb-4a3c-b017-43380deee3e8", "tripUpdate": {"trip": {"tripId": "20411-701ff27f-2", "startTime": "15:30:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "591", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 1, "arrival": {"time": "1694889028"}, "stopId": "44967"}, {"stopSequence": 2, "arrival": {"time": "1694889080"}, "stopId": "44968"}, {"stopSequence": 3, "arrival": {"time": "1694889152"}, "stopId": "45105"}, {"stopSequence": 4, "arrival": {"time": "1694889180"}, "stopId": "45106"}, {"stopSequence": 5, "arrival": {"time": "1694889251"}, "stopId": "45107"}, {"stopSequence": 6, "arrival": {"time": "1694889296"}, "stopId": "45108"}, {"stopSequence": 7, "arrival": {"time": "1694889328"}, "stopId": "14-Jun"}, {"stopSequence": 8, "arrival": {"time": "1694889393"}, "stopId": "14-Aug"}, {"stopSequence": 9, "arrival": {"time": "1694889439"}, "stopId": "50024"}, {"stopSequence": 10, "arrival": {"time": "1694889563"}, "stopId": "14-12"}, {"stopSequence": 11, "arrival": {"time": "1694889588"}, "stopId": "14-13"}, {"stopSequence": 12, "arrival": {"time": "1694889674"}, "stopId": "14-15"}, {"stopSequence": 13, "arrival": {"time": "1694889690"}, "stopId": "50022"}, {"stopSequence": 14, "arrival": {"time": "1694889735"}, "stopId": "50021"}, {"stopSequence": 15, "arrival": {"time": "1694889811"}, "stopId": "37475"}, {"stopSequence": 16, "arrival": {"time": "1694889847"}, "stopId": "37508"}, {"stopSequence": 17, "arrival": {"time": "1694889869"}, "stopId": "37476"}, {"stopSequence": 18, "arrival": {"time": "1694889902"}, "stopId": "37526"}, {"stopSequence": 19, "arrival": {"time": "1694889969"}, "stopId": "37567"}, {"stopSequence": 20, "arrival": {"time": "1694889991"}, "stopId": "13-Jan"}, {"stopSequence": 21, "arrival": {"time": "1694890041"}, "stopId": "13-Feb"}, {"stopSequence": 22, "arrival": {"time": "1694890058"}, "stopId": "28-Jan"}, {"stopSequence": 23, "arrival": {"time": "1694890117"}, "stopId": "50016"}, {"stopSequence": 24, "arrival": {"time": "1694890209"}, "stopId": "50017"}, {"stopSequence": 25, "arrival": {"time": "1694890249"}, "stopId": "45054"}, {"stopSequence": 26, "arrival": {"time": "1694890347"}, "stopId": "45055"}, {"stopSequence": 27, "arrival": {"time": "1694890387"}, "stopId": "45056"}, {"stopSequence": 28, "arrival": {"time": "1694890454"}, "stopId": "45057"}, {"stopSequence": 29, "arrival": {"time": "1694890460"}, "stopId": "44958"}, {"stopSequence": 30, "arrival": {"time": "1694890515"}, "stopId": "1508146"}, {"stopSequence": 31, "arrival": {"time": "1694890561"}, "stopId": "44957"}, {"stopSequence": 32, "arrival": {"time": "1694890596"}, "stopId": "44956"}, {"stopSequence": 33, "arrival": {"time": "1694890613"}, "stopId": "45060"}, {"stopSequence": 34, "arrival": {"time": "1694890726"}, "stopId": "6-Jan"}, {"stopSequence": 35, "arrival": {"time": "1694890796"}, "stopId": "6-Mar"}, {"stopSequence": 36, "arrival": {"time": "1694890901"}, "stopId": "6-May"}, {"stopSequence": 37, "arrival": {"time": "1694891063"}, "stopId": "6-Jul"}, {"stopSequence": 38, "arrival": {"time": "1694891135"}, "stopId": "6-Sep"}, {"stopSequence": 39, "arrival": {"time": "1694891226"}, "stopId": "6-Nov"}, {"stopSequence": 40, "arrival": {"time": "1694891350"}, "stopId": "6-Dec"}, {"stopSequence": 41, "arrival": {"time": "1694891455"}, "stopId": "Jun-14"}, {"stopSequence": 42, "arrival": {"time": "1694891632"}, "stopId": "Jun-17"}, {"stopSequence": 43, "arrival": {"time": "1694891730"}, "stopId": "Jun-19"}, {"stopSequence": 44, "arrival": {"time": "1694891804"}, "stopId": "Jun-20"}, {"stopSequence": 45, "arrival": {"time": "1694891881"}, "stopId": "Jun-22"}, {"stopSequence": 46, "arrival": {"time": "1694891966"}, "stopId": "Jun-24"}, {"stopSequence": 47, "arrival": {"time": "1694892084"}, "stopId": "Jun-25"}, {"stopSequence": 48, "arrival": {"time": "1694892493"}, "stopId": "90003"}, {"stopSequence": 49, "arrival": {"time": "1694892563"}, "stopId": "90007"}, {"stopSequence": 50, "arrival": {"time": "1694892641"}, "stopId": "90008"}, {"stopSequence": 51, "arrival": {"time": "1694892818"}, "stopId": "39599"}, {"stopSequence": 52, "arrival": {"time": "1694892944"}, "stopId": "45011"}, {"stopSequence": 53, "arrival": {"time": "1694893118"}, "stopId": "39623"}, {"stopSequence": 54, "arrival": {"time": "1694893206"}, "stopId": "39624"}, {"stopSequence": 55, "arrival": {"time": "1694893327"}, "stopId": "90000"}, {"stopSequence": 56, "arrival": {"time": "1694893424"}, "stopId": "39628"}, {"stopSequence": 57, "arrival": {"time": "1694893575"}, "stopId": "39631"}, {"stopSequence": 58, "arrival": {"time": "1694893672"}, "stopId": "49311"}, {"stopSequence": 59, "arrival": {"time": "1694893783"}, "stopId": "39634"}, {"stopSequence": 60, "arrival": {"time": "1694893843"}, "stopId": "39635"}, {"stopSequence": 61, "arrival": {"time": "1694893944"}, "stopId": "39636"}, {"stopSequence": 62, "arrival": {"time": "1694894064"}, "stopId": "49503"}, {"stopSequence": 63, "arrival": {"time": "1694894365"}, "stopId": "39637"}, {"stopSequence": 64, "arrival": {"time": "1694894489"}, "stopId": "49317"}, {"stopSequence": 65, "arrival": {"time": "1694894570"}, "stopId": "49318"}, {"stopSequence": 66, "arrival": {"time": "1694894745"}, "stopId": "49319"}, {"stopSequence": 67, "arrival": {"time": "1694894921"}, "stopId": "39641"}, {"stopSequence": 68, "arrival": {"time": "1694895022"}, "stopId": "39642"}, {"stopSequence": 69, "arrival": {"time": "1694895641"}, "stopId": "49323"}, {"stopSequence": 70, "arrival": {"time": "1694895783"}, "stopId": "49324"}, {"stopSequence": 71, "arrival": {"time": "1694895919"}, "stopId": "49325"}, {"stopSequence": 72, "arrival": {"time": "1694896148"}, "stopId": "49326"}, {"stopSequence": 73, "arrival": {"time": "1694896266"}, "stopId": "37425"}, {"stopSequence": 74, "arrival": {"time": "1694896412"}, "stopId": "37426"}, {"stopSequence": 75, "arrival": {"time": "1694896587"}, "stopId": "37427"}, {"stopSequence": 76, "arrival": {"time": "1694896797"}, "stopId": "8606049"}, {"stopSequence": 77, "arrival": {"time": "1694897002"}, "stopId": "37428"}, {"stopSequence": 78, "arrival": {"time": "1694897188"}, "stopId": "37429"}, {"stopSequence": 79, "arrival": {"time": "1694897336"}, "stopId": "37430"}, {"stopSequence": 80, "arrival": {"time": "1694897498"}, "stopId": "37431"}, {"stopSequence": 81, "arrival": {"time": "1694897598"}, "stopId": "37432"}, {"stopSequence": 82, "arrival": {"time": "1694898180"}, "stopId": "37433"}, {"stopSequence": 83, "arrival": {"time": "1694898709"}, "stopId": "37434"}, {"stopSequence": 84, "arrival": {"time": "1694898831"}, "stopId": "37435"}, {"stopSequence": 85, "arrival": {"time": "1694899181"}, "stopId": "37436"}, {"stopSequence": 86, "arrival": {"time": "1694899643"}, "stopId": "37437"}, {"stopSequence": 87, "arrival": {"time": "1694900035"}, "stopId": "49337"}, {"stopSequence": 88, "arrival": {"time": "1694900250"}, "stopId": "39661"}, {"stopSequence": 89, "arrival": {"time": "1694900662"}, "stopId": "39662"}, {"stopSequence": 90, "arrival": {"time": "1694901109"}, "stopId": "39663"}, {"stopSequence": 91, "arrival": {"time": "1694901585"}, "stopId": "49341"}, {"stopSequence": 92, "arrival": {"time": "1694901988"}, "stopId": "49342"}, {"stopSequence": 93, "arrival": {"time": "1694903006"}, "stopId": "49343"}, {"stopSequence": 94, "arrival": {"time": "1694905542"}, "stopId": "49344"}, {"stopSequence": 95, "arrival": {"time": "1694908225"}, "stopId": "49345"}, {"stopSequence": 96, "arrival": {"time": "1694912500"}, "stopId": "49346"}, {"stopSequence": 97, "arrival": {"time": "1694914293"}, "stopId": "49347"}, {"stopSequence": 98, "arrival": {"time": "1694925184"}, "stopId": "49348"}, {"stopSequence": 99, "arrival": {"time": "1694943110"}, "stopId": "42250"}], "vehicle": {"licensePlate": "JFSL62"}, "timestamp": "1694889017"}, "vehicle": {"trip": {"tripId": "20411-701ff27f-2", "startTime": "15:30:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "591", "directionId": 0}, "position": {"latitude": -36.713715, "longitude": -72.97761, "bearing": 21.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889017", "vehicle": {"licensePlate": "JFSL62"}}}, {"id": "0ea29b65-ab82-4717-a3cd-b6936d7f0507", "tripUpdate": {"trip": {"tripId": "20330-701ff27f-2", "startTime": "14:15:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "591", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 62, "arrival": {"time": "1694889099"}, "stopId": "50041"}, {"stopSequence": 63, "arrival": {"time": "1694889243"}, "stopId": "Jun-15"}, {"stopSequence": 64, "arrival": {"time": "1694889343"}, "stopId": "Jun-13"}, {"stopSequence": 65, "arrival": {"time": "1694889539"}, "stopId": "6-Oct"}, {"stopSequence": 66, "arrival": {"time": "1694889598"}, "stopId": "6-Aug"}, {"stopSequence": 67, "arrival": {"time": "1694889750"}, "stopId": "6-Jun"}, {"stopSequence": 68, "arrival": {"time": "1694889871"}, "stopId": "6-Feb"}, {"stopSequence": 69, "arrival": {"time": "1694890003"}, "stopId": "7-Jul"}, {"stopSequence": 70, "arrival": {"time": "1694890067"}, "stopId": "7-May"}, {"stopSequence": 71, "arrival": {"time": "1694890101"}, "stopId": "1508142"}, {"stopSequence": 72, "arrival": {"time": "1694890202"}, "stopId": "7-Feb"}, {"stopSequence": 73, "arrival": {"time": "1694890261"}, "stopId": "8-Jan"}, {"stopSequence": 74, "arrival": {"time": "1694890291"}, "stopId": "9-Jan"}, {"stopSequence": 75, "arrival": {"time": "1694890330"}, "stopId": "10-Apr"}, {"stopSequence": 76, "arrival": {"time": "1694890387"}, "stopId": "10-Jan"}, {"stopSequence": 77, "arrival": {"time": "1694890428"}, "stopId": "44863"}, {"stopSequence": 78, "arrival": {"time": "1694890459"}, "stopId": "10-Mar"}, {"stopSequence": 79, "arrival": {"time": "1694890513"}, "stopId": "11-Jan"}, {"stopSequence": 80, "arrival": {"time": "1694890564"}, "stopId": "44866"}, {"stopSequence": 81, "arrival": {"time": "1694890603"}, "stopId": "44867"}, {"stopSequence": 82, "arrival": {"time": "1694890629"}, "stopId": "44868"}, {"stopSequence": 83, "arrival": {"time": "1694890656"}, "stopId": "44869"}, {"stopSequence": 84, "arrival": {"time": "1694890688"}, "stopId": "44870"}, {"stopSequence": 85, "arrival": {"time": "1694890722"}, "stopId": "44871"}, {"stopSequence": 86, "arrival": {"time": "1694890762"}, "stopId": "44872"}, {"stopSequence": 87, "arrival": {"time": "1694890827"}, "stopId": "50020"}, {"stopSequence": 88, "arrival": {"time": "1694890912"}, "stopId": "14-11"}, {"stopSequence": 89, "arrival": {"time": "1694890956"}, "stopId": "91162"}, {"stopSequence": 90, "arrival": {"time": "1694891040"}, "stopId": "50023"}, {"stopSequence": 91, "arrival": {"time": "1694891147"}, "stopId": "14-Jul"}, {"stopSequence": 92, "arrival": {"time": "1694891187"}, "stopId": "14-Apr"}, {"stopSequence": 93, "arrival": {"time": "1694891238"}, "stopId": "37474"}, {"stopSequence": 94, "arrival": {"time": "1694891291"}, "stopId": "44879"}], "vehicle": {"licensePlate": "JSBB30"}, "timestamp": "1694889037"}, "vehicle": {"trip": {"tripId": "20330-701ff27f-2", "startTime": "14:15:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "591", "directionId": 1}, "position": {"latitude": -36.790375, "longitude": -73.02451, "bearing": 19.0, "odometer": 0.0, "speed": 10.555555}, "timestamp": "1694889037", "vehicle": {"licensePlate": "JSBB30"}}}, {"id": "435debd1-4003-41d0-958f-9addc0eb3a5a", "tripUpdate": {"trip": {"tripId": "20332-701ff27f-2", "startTime": "14:45:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "591", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 40, "arrival": {"time": "1694889039"}, "stopId": "39623"}, {"stopSequence": 41, "arrival": {"time": "1694889194"}, "stopId": "39627"}, {"stopSequence": 42, "arrival": {"time": "1694889294"}, "stopId": "39631"}, {"stopSequence": 43, "arrival": {"time": "1694889342"}, "stopId": "49311"}, {"stopSequence": 44, "arrival": {"time": "1694889399"}, "stopId": "35796"}, {"stopSequence": 45, "arrival": {"time": "1694889448"}, "stopId": "35797"}, {"stopSequence": 46, "arrival": {"time": "1694889490"}, "stopId": "35798"}, {"stopSequence": 47, "arrival": {"time": "1694889528"}, "stopId": "35799"}, {"stopSequence": 48, "arrival": {"time": "1694889597"}, "stopId": "35800"}, {"stopSequence": 49, "arrival": {"time": "1694889646"}, "stopId": "35801"}, {"stopSequence": 50, "arrival": {"time": "1694889671"}, "stopId": "35802"}, {"stopSequence": 51, "arrival": {"time": "1694889718"}, "stopId": "35803"}, {"stopSequence": 52, "arrival": {"time": "1694889772"}, "stopId": "38507"}, {"stopSequence": 53, "arrival": {"time": "1694889822"}, "stopId": "34473"}, {"stopSequence": 54, "arrival": {"time": "1694889864"}, "stopId": "38500"}, {"stopSequence": 55, "arrival": {"time": "1694889909"}, "stopId": "35808"}, {"stopSequence": 56, "arrival": {"time": "1694889965"}, "stopId": "35710"}, {"stopSequence": 57, "arrival": {"time": "1694890009"}, "stopId": "50036"}, {"stopSequence": 58, "arrival": {"time": "1694890230"}, "stopId": "50037"}, {"stopSequence": 59, "arrival": {"time": "1694890373"}, "stopId": "50038"}, {"stopSequence": 60, "arrival": {"time": "1694890448"}, "stopId": "50039"}, {"stopSequence": 61, "arrival": {"time": "1694890504"}, "stopId": "50040"}, {"stopSequence": 62, "arrival": {"time": "1694890593"}, "stopId": "50041"}, {"stopSequence": 63, "arrival": {"time": "1694890732"}, "stopId": "Jun-15"}, {"stopSequence": 64, "arrival": {"time": "1694890831"}, "stopId": "Jun-13"}, {"stopSequence": 65, "arrival": {"time": "1694891034"}, "stopId": "6-Oct"}, {"stopSequence": 66, "arrival": {"time": "1694891098"}, "stopId": "6-Aug"}, {"stopSequence": 67, "arrival": {"time": "1694891266"}, "stopId": "6-Jun"}, {"stopSequence": 68, "arrival": {"time": "1694891406"}, "stopId": "6-Feb"}, {"stopSequence": 69, "arrival": {"time": "1694891565"}, "stopId": "7-Jul"}, {"stopSequence": 70, "arrival": {"time": "1694891643"}, "stopId": "7-May"}, {"stopSequence": 71, "arrival": {"time": "1694891686"}, "stopId": "1508142"}, {"stopSequence": 72, "arrival": {"time": "1694891814"}, "stopId": "7-Feb"}, {"stopSequence": 73, "arrival": {"time": "1694891890"}, "stopId": "8-Jan"}, {"stopSequence": 74, "arrival": {"time": "1694891931"}, "stopId": "9-Jan"}, {"stopSequence": 75, "arrival": {"time": "1694891983"}, "stopId": "10-Apr"}, {"stopSequence": 76, "arrival": {"time": "1694892059"}, "stopId": "10-Jan"}, {"stopSequence": 77, "arrival": {"time": "1694892115"}, "stopId": "44863"}, {"stopSequence": 78, "arrival": {"time": "1694892158"}, "stopId": "10-Mar"}, {"stopSequence": 79, "arrival": {"time": "1694892234"}, "stopId": "11-Jan"}, {"stopSequence": 80, "arrival": {"time": "1694892306"}, "stopId": "44866"}, {"stopSequence": 81, "arrival": {"time": "1694892362"}, "stopId": "44867"}, {"stopSequence": 82, "arrival": {"time": "1694892400"}, "stopId": "44868"}, {"stopSequence": 83, "arrival": {"time": "1694892439"}, "stopId": "44869"}, {"stopSequence": 84, "arrival": {"time": "1694892486"}, "stopId": "44870"}, {"stopSequence": 85, "arrival": {"time": "1694892537"}, "stopId": "44871"}, {"stopSequence": 86, "arrival": {"time": "1694892597"}, "stopId": "44872"}, {"stopSequence": 87, "arrival": {"time": "1694892695"}, "stopId": "50020"}, {"stopSequence": 88, "arrival": {"time": "1694892828"}, "stopId": "14-11"}, {"stopSequence": 89, "arrival": {"time": "1694892896"}, "stopId": "91162"}, {"stopSequence": 90, "arrival": {"time": "1694893032"}, "stopId": "50023"}, {"stopSequence": 91, "arrival": {"time": "1694893207"}, "stopId": "14-Jul"}, {"stopSequence": 92, "arrival": {"time": "1694893275"}, "stopId": "14-Apr"}, {"stopSequence": 93, "arrival": {"time": "1694893361"}, "stopId": "37474"}, {"stopSequence": 94, "arrival": {"time": "1694893453"}, "stopId": "44879"}], "vehicle": {"licensePlate": "KLLT57"}, "timestamp": "1694889035"}, "vehicle": {"trip": {"tripId": "20332-701ff27f-2", "startTime": "14:45:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "591", "directionId": 1}, "position": {"latitude": -36.823105, "longitude": -73.04513, "bearing": 241.0, "odometer": 0.0, "speed": 6.111111}, "timestamp": "1694889035", "vehicle": {"licensePlate": "KLLT57"}}}, {"id": "699fe76d-f94f-41bc-940e-06e8b7442626", "tripUpdate": {"trip": {"tripId": "20407-701ff27f-2", "startTime": "14:30:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "591", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 69, "arrival": {"time": "1694889005"}, "stopId": "49323"}, {"stopSequence": 70, "arrival": {"time": "1694889050"}, "stopId": "49324"}, {"stopSequence": 71, "arrival": {"time": "1694889092"}, "stopId": "49325"}, {"stopSequence": 72, "arrival": {"time": "1694889158"}, "stopId": "49326"}, {"stopSequence": 73, "arrival": {"time": "1694889190"}, "stopId": "37425"}, {"stopSequence": 74, "arrival": {"time": "1694889229"}, "stopId": "37426"}, {"stopSequence": 75, "arrival": {"time": "1694889273"}, "stopId": "37427"}, {"stopSequence": 76, "arrival": {"time": "1694889324"}, "stopId": "8606049"}, {"stopSequence": 77, "arrival": {"time": "1694889372"}, "stopId": "37428"}, {"stopSequence": 78, "arrival": {"time": "1694889413"}, "stopId": "37429"}, {"stopSequence": 79, "arrival": {"time": "1694889444"}, "stopId": "37430"}, {"stopSequence": 80, "arrival": {"time": "1694889478"}, "stopId": "37431"}, {"stopSequence": 81, "arrival": {"time": "1694889498"}, "stopId": "37432"}, {"stopSequence": 82, "arrival": {"time": "1694889606"}, "stopId": "37433"}, {"stopSequence": 83, "arrival": {"time": "1694889694"}, "stopId": "37434"}, {"stopSequence": 84, "arrival": {"time": "1694889714"}, "stopId": "37435"}, {"stopSequence": 85, "arrival": {"time": "1694889766"}, "stopId": "37436"}, {"stopSequence": 86, "arrival": {"time": "1694889831"}, "stopId": "37437"}, {"stopSequence": 87, "arrival": {"time": "1694889882"}, "stopId": "49337"}, {"stopSequence": 88, "arrival": {"time": "1694889908"}, "stopId": "39661"}, {"stopSequence": 89, "arrival": {"time": "1694889957"}, "stopId": "39662"}, {"stopSequence": 90, "arrival": {"time": "1694890006"}, "stopId": "39663"}, {"stopSequence": 91, "arrival": {"time": "1694890055"}, "stopId": "49341"}, {"stopSequence": 92, "arrival": {"time": "1694890094"}, "stopId": "49342"}, {"stopSequence": 93, "arrival": {"time": "1694890184"}, "stopId": "49343"}, {"stopSequence": 94, "arrival": {"time": "1694890364"}, "stopId": "49344"}, {"stopSequence": 95, "arrival": {"time": "1694890508"}, "stopId": "49345"}, {"stopSequence": 96, "arrival": {"time": "1694890676"}, "stopId": "49346"}, {"stopSequence": 97, "arrival": {"time": "1694890731"}, "stopId": "49347"}, {"stopSequence": 98, "arrival": {"time": "1694890956"}, "stopId": "49348"}, {"stopSequence": 99, "arrival": {"time": "1694891139"}, "stopId": "42250"}], "vehicle": {"licensePlate": "LJKK85"}, "timestamp": "1694889004"}, "vehicle": {"trip": {"tripId": "20407-701ff27f-2", "startTime": "14:30:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "591", "directionId": 0}, "position": {"latitude": -36.80122, "longitude": -73.083885, "bearing": 322.0, "odometer": 0.0, "speed": 13.333333}, "timestamp": "1694889004", "vehicle": {"licensePlate": "LJKK85"}}}, {"id": "185cfe55-6a41-408c-9b74-99371ef636b8", "tripUpdate": {"trip": {"tripId": "20560-701ff27f-2", "startTime": "14:45:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "592", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 49, "arrival": {"time": "1694889031"}, "stopId": "37523"}, {"stopSequence": 50, "arrival": {"time": "1694889074"}, "stopId": "37477"}, {"stopSequence": 51, "arrival": {"time": "1694889166"}, "stopId": "49310"}, {"stopSequence": 52, "arrival": {"time": "1694889199"}, "stopId": "49311"}, {"stopSequence": 53, "arrival": {"time": "1694889256"}, "stopId": "39634"}, {"stopSequence": 54, "arrival": {"time": "1694889282"}, "stopId": "39635"}, {"stopSequence": 55, "arrival": {"time": "1694889329"}, "stopId": "39636"}, {"stopSequence": 56, "arrival": {"time": "1694889384"}, "stopId": "49503"}, {"stopSequence": 57, "arrival": {"time": "1694889511"}, "stopId": "39637"}, {"stopSequence": 58, "arrival": {"time": "1694889561"}, "stopId": "49317"}, {"stopSequence": 59, "arrival": {"time": "1694889592"}, "stopId": "49318"}, {"stopSequence": 60, "arrival": {"time": "1694889657"}, "stopId": "49319"}, {"stopSequence": 61, "arrival": {"time": "1694889719"}, "stopId": "39641"}, {"stopSequence": 62, "arrival": {"time": "1694889784"}, "stopId": "38590"}, {"stopSequence": 63, "arrival": {"time": "1694890193"}, "stopId": "32575"}, {"stopSequence": 64, "arrival": {"time": "1694890242"}, "stopId": "4950738"}, {"stopSequence": 65, "arrival": {"time": "1694890495"}, "stopId": "38530"}, {"stopSequence": 66, "arrival": {"time": "1694890508"}, "stopId": "16005209"}, {"stopSequence": 67, "arrival": {"time": "1694890746"}, "stopId": "38531"}, {"stopSequence": 68, "arrival": {"time": "1694890802"}, "stopId": "8921285"}, {"stopSequence": 69, "arrival": {"time": "1694890918"}, "stopId": "38532"}, {"stopSequence": 70, "arrival": {"time": "1694890974"}, "stopId": "38533"}, {"stopSequence": 71, "arrival": {"time": "1694891032"}, "stopId": "38534"}, {"stopSequence": 72, "arrival": {"time": "1694891083"}, "stopId": "38535"}, {"stopSequence": 73, "arrival": {"time": "1694891154"}, "stopId": "38536"}, {"stopSequence": 74, "arrival": {"time": "1694891193"}, "stopId": "4838437"}, {"stopSequence": 75, "arrival": {"time": "1694891254"}, "stopId": "45085"}, {"stopSequence": 76, "arrival": {"time": "1694891343"}, "stopId": "45086"}, {"stopSequence": 77, "arrival": {"time": "1694891462"}, "stopId": "45087"}, {"stopSequence": 78, "arrival": {"time": "1694891491"}, "stopId": "45088"}, {"stopSequence": 79, "arrival": {"time": "1694891537"}, "stopId": "45089"}, {"stopSequence": 80, "arrival": {"time": "1694891618"}, "stopId": "45090"}, {"stopSequence": 81, "arrival": {"time": "1694891651"}, "stopId": "45091"}, {"stopSequence": 82, "arrival": {"time": "1694891698"}, "stopId": "45092"}, {"stopSequence": 83, "arrival": {"time": "1694891750"}, "stopId": "45093"}, {"stopSequence": 84, "arrival": {"time": "1694891811"}, "stopId": "45094"}, {"stopSequence": 85, "arrival": {"time": "1694891856"}, "stopId": "45095"}, {"stopSequence": 86, "arrival": {"time": "1694891909"}, "stopId": "45096"}, {"stopSequence": 87, "arrival": {"time": "1694892000"}, "stopId": "45098"}, {"stopSequence": 88, "arrival": {"time": "1694892041"}, "stopId": "45099"}, {"stopSequence": 89, "arrival": {"time": "1694892066"}, "stopId": "45100"}, {"stopSequence": 90, "arrival": {"time": "1694892107"}, "stopId": "45101"}, {"stopSequence": 91, "arrival": {"time": "1694892154"}, "stopId": "45102"}, {"stopSequence": 92, "arrival": {"time": "1694892190"}, "stopId": "45103"}, {"stopSequence": 93, "arrival": {"time": "1694892224"}, "stopId": "45104"}, {"stopSequence": 94, "arrival": {"time": "1694892260"}, "stopId": "45122"}, {"stopSequence": 95, "arrival": {"time": "1694892335"}, "stopId": "38630"}], "vehicle": {"licensePlate": "BLYV74"}, "timestamp": "1694889005"}, "vehicle": {"trip": {"tripId": "20560-701ff27f-2", "startTime": "14:45:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "592", "directionId": 0}, "position": {"latitude": -36.828518, "longitude": -73.05204, "bearing": 246.0, "odometer": 0.0, "speed": 11.944445}, "timestamp": "1694889005", "vehicle": {"licensePlate": "BLYV74"}}}, {"id": "d8087585-a442-495b-9886-fedd15853dec", "tripUpdate": {"trip": {"tripId": "20562-701ff27f-2", "startTime": "15:15:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "592", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 20, "arrival": {"time": "1694889016"}, "stopId": "12-3"}, {"stopSequence": 21, "arrival": {"time": "1694889098"}, "stopId": "12-Jan"}, {"stopSequence": 22, "arrival": {"time": "1694889143"}, "stopId": "12-Feb"}, {"stopSequence": 23, "arrival": {"time": "1694889190"}, "stopId": "7-Jan"}, {"stopSequence": 24, "arrival": {"time": "1694889251"}, "stopId": "7-Mar"}, {"stopSequence": 25, "arrival": {"time": "1694889391"}, "stopId": "7-Jun"}, {"stopSequence": 26, "arrival": {"time": "1694889461"}, "stopId": "7-Aug"}, {"stopSequence": 27, "arrival": {"time": "1694889606"}, "stopId": "6-Mar"}, {"stopSequence": 28, "arrival": {"time": "1694889706"}, "stopId": "6-May"}, {"stopSequence": 29, "arrival": {"time": "1694889854"}, "stopId": "6-Jul"}, {"stopSequence": 30, "arrival": {"time": "1694889920"}, "stopId": "6-Sep"}, {"stopSequence": 31, "arrival": {"time": "1694890004"}, "stopId": "6-Nov"}, {"stopSequence": 32, "arrival": {"time": "1694890103"}, "stopId": "6-Dec"}, {"stopSequence": 33, "arrival": {"time": "1694890191"}, "stopId": "Jun-14"}, {"stopSequence": 34, "arrival": {"time": "1694890343"}, "stopId": "Jun-17"}, {"stopSequence": 35, "arrival": {"time": "1694890429"}, "stopId": "Jun-19"}, {"stopSequence": 36, "arrival": {"time": "1694890480"}, "stopId": "Jun-20"}, {"stopSequence": 37, "arrival": {"time": "1694890542"}, "stopId": "Jun-22"}, {"stopSequence": 38, "arrival": {"time": "1694890606"}, "stopId": "Jun-24"}, {"stopSequence": 39, "arrival": {"time": "1694890696"}, "stopId": "Jun-25"}, {"stopSequence": 40, "arrival": {"time": "1694890994"}, "stopId": "90003"}, {"stopSequence": 41, "arrival": {"time": "1694891043"}, "stopId": "90007"}, {"stopSequence": 42, "arrival": {"time": "1694891097"}, "stopId": "90008"}, {"stopSequence": 43, "arrival": {"time": "1694891218"}, "stopId": "39599"}, {"stopSequence": 44, "arrival": {"time": "1694891243"}, "stopId": "39600"}, {"stopSequence": 45, "arrival": {"time": "1694891318"}, "stopId": "37496"}, {"stopSequence": 46, "arrival": {"time": "1694891374"}, "stopId": "45064"}, {"stopSequence": 47, "arrival": {"time": "1694891458"}, "stopId": "37506"}, {"stopSequence": 48, "arrival": {"time": "1694891546"}, "stopId": "45069"}, {"stopSequence": 49, "arrival": {"time": "1694891681"}, "stopId": "37523"}, {"stopSequence": 50, "arrival": {"time": "1694891730"}, "stopId": "37477"}, {"stopSequence": 51, "arrival": {"time": "1694891840"}, "stopId": "49310"}, {"stopSequence": 52, "arrival": {"time": "1694891880"}, "stopId": "49311"}, {"stopSequence": 53, "arrival": {"time": "1694891952"}, "stopId": "39634"}, {"stopSequence": 54, "arrival": {"time": "1694891985"}, "stopId": "39635"}, {"stopSequence": 55, "arrival": {"time": "1694892047"}, "stopId": "39636"}, {"stopSequence": 56, "arrival": {"time": "1694892119"}, "stopId": "49503"}, {"stopSequence": 57, "arrival": {"time": "1694892295"}, "stopId": "39637"}, {"stopSequence": 58, "arrival": {"time": "1694892367"}, "stopId": "49317"}, {"stopSequence": 59, "arrival": {"time": "1694892413"}, "stopId": "49318"}, {"stopSequence": 60, "arrival": {"time": "1694892512"}, "stopId": "49319"}, {"stopSequence": 61, "arrival": {"time": "1694892609"}, "stopId": "39641"}, {"stopSequence": 62, "arrival": {"time": "1694892713"}, "stopId": "38590"}, {"stopSequence": 63, "arrival": {"time": "1694893454"}, "stopId": "32575"}, {"stopSequence": 64, "arrival": {"time": "1694893554"}, "stopId": "4950738"}, {"stopSequence": 65, "arrival": {"time": "1694894106"}, "stopId": "38530"}, {"stopSequence": 66, "arrival": {"time": "1694894137"}, "stopId": "16005209"}, {"stopSequence": 67, "arrival": {"time": "1694894728"}, "stopId": "38531"}, {"stopSequence": 68, "arrival": {"time": "1694894879"}, "stopId": "8921285"}, {"stopSequence": 69, "arrival": {"time": "1694895204"}, "stopId": "38532"}, {"stopSequence": 70, "arrival": {"time": "1694895367"}, "stopId": "38533"}, {"stopSequence": 71, "arrival": {"time": "1694895541"}, "stopId": "38534"}, {"stopSequence": 72, "arrival": {"time": "1694895702"}, "stopId": "38535"}, {"stopSequence": 73, "arrival": {"time": "1694895928"}, "stopId": "38536"}, {"stopSequence": 74, "arrival": {"time": "1694896059"}, "stopId": "4838437"}, {"stopSequence": 75, "arrival": {"time": "1694896264"}, "stopId": "45085"}, {"stopSequence": 76, "arrival": {"time": "1694896579"}, "stopId": "45086"}, {"stopSequence": 77, "arrival": {"time": "1694897024"}, "stopId": "45087"}, {"stopSequence": 78, "arrival": {"time": "1694897137"}, "stopId": "45088"}, {"stopSequence": 79, "arrival": {"time": "1694897321"}, "stopId": "45089"}, {"stopSequence": 80, "arrival": {"time": "1694897656"}, "stopId": "45090"}, {"stopSequence": 81, "arrival": {"time": "1694897797"}, "stopId": "45091"}, {"stopSequence": 82, "arrival": {"time": "1694898001"}, "stopId": "45092"}, {"stopSequence": 83, "arrival": {"time": "1694898236"}, "stopId": "45093"}, {"stopSequence": 84, "arrival": {"time": "1694898520"}, "stopId": "45094"}, {"stopSequence": 85, "arrival": {"time": "1694898734"}, "stopId": "45095"}, {"stopSequence": 86, "arrival": {"time": "1694898997"}, "stopId": "45096"}, {"stopSequence": 87, "arrival": {"time": "1694899466"}, "stopId": "45098"}, {"stopSequence": 88, "arrival": {"time": "1694899690"}, "stopId": "45099"}, {"stopSequence": 89, "arrival": {"time": "1694899828"}, "stopId": "45100"}, {"stopSequence": 90, "arrival": {"time": "1694900057"}, "stopId": "45101"}, {"stopSequence": 91, "arrival": {"time": "1694900328"}, "stopId": "45102"}, {"stopSequence": 92, "arrival": {"time": "1694900541"}, "stopId": "45103"}, {"stopSequence": 93, "arrival": {"time": "1694900746"}, "stopId": "45104"}, {"stopSequence": 94, "arrival": {"time": "1694900972"}, "stopId": "45122"}, {"stopSequence": 95, "arrival": {"time": "1694901459"}, "stopId": "38630"}], "vehicle": {"licensePlate": "DPZZ19"}, "timestamp": "1694889014"}, "vehicle": {"trip": {"tripId": "20562-701ff27f-2", "startTime": "15:15:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "592", "directionId": 0}, "position": {"latitude": -36.73681, "longitude": -72.99341, "bearing": 246.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889014", "vehicle": {"licensePlate": "DPZZ19"}}}, {"id": "17afee49-1e12-4a99-9b51-b3008df11ea6", "tripUpdate": {"trip": {"tripId": "20486-701ff27f-2", "startTime": "15:16:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "592", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 21, "arrival": {"time": "1694889009"}, "stopId": "37586"}, {"stopSequence": 22, "arrival": {"time": "1694889035"}, "stopId": "37587"}, {"stopSequence": 23, "arrival": {"time": "1694889053"}, "stopId": "37588"}, {"stopSequence": 24, "arrival": {"time": "1694889105"}, "stopId": "37589"}, {"stopSequence": 25, "arrival": {"time": "1694889165"}, "stopId": "37590"}, {"stopSequence": 26, "arrival": {"time": "1694889208"}, "stopId": "37427"}, {"stopSequence": 27, "arrival": {"time": "1694889265"}, "stopId": "37426"}, {"stopSequence": 28, "arrival": {"time": "1694889303"}, "stopId": "37425"}, {"stopSequence": 29, "arrival": {"time": "1694889313"}, "stopId": "37593"}, {"stopSequence": 30, "arrival": {"time": "1694889338"}, "stopId": "38509"}, {"stopSequence": 31, "arrival": {"time": "1694889374"}, "stopId": "38642"}, {"stopSequence": 32, "arrival": {"time": "1694889418"}, "stopId": "39795"}, {"stopSequence": 33, "arrival": {"time": "1694889444"}, "stopId": "38502"}, {"stopSequence": 34, "arrival": {"time": "1694889511"}, "stopId": "38503"}, {"stopSequence": 35, "arrival": {"time": "1694889666"}, "stopId": "35691"}, {"stopSequence": 36, "arrival": {"time": "1694889706"}, "stopId": "35692"}, {"stopSequence": 37, "arrival": {"time": "1694889760"}, "stopId": "35693"}, {"stopSequence": 38, "arrival": {"time": "1694889816"}, "stopId": "35694"}, {"stopSequence": 39, "arrival": {"time": "1694889855"}, "stopId": "35695"}, {"stopSequence": 40, "arrival": {"time": "1694889901"}, "stopId": "35696"}, {"stopSequence": 41, "arrival": {"time": "1694890065"}, "stopId": "35697"}, {"stopSequence": 42, "arrival": {"time": "1694890184"}, "stopId": "39778"}, {"stopSequence": 43, "arrival": {"time": "1694890286"}, "stopId": "35797"}, {"stopSequence": 44, "arrival": {"time": "1694890326"}, "stopId": "35798"}, {"stopSequence": 45, "arrival": {"time": "1694890364"}, "stopId": "35799"}, {"stopSequence": 46, "arrival": {"time": "1694890432"}, "stopId": "35800"}, {"stopSequence": 47, "arrival": {"time": "1694890481"}, "stopId": "35801"}, {"stopSequence": 48, "arrival": {"time": "1694890507"}, "stopId": "35802"}, {"stopSequence": 49, "arrival": {"time": "1694890554"}, "stopId": "35803"}, {"stopSequence": 50, "arrival": {"time": "1694890609"}, "stopId": "38507"}, {"stopSequence": 51, "arrival": {"time": "1694890661"}, "stopId": "34473"}, {"stopSequence": 52, "arrival": {"time": "1694890705"}, "stopId": "38500"}, {"stopSequence": 53, "arrival": {"time": "1694890752"}, "stopId": "35808"}, {"stopSequence": 54, "arrival": {"time": "1694890812"}, "stopId": "35710"}, {"stopSequence": 55, "arrival": {"time": "1694890858"}, "stopId": "50036"}, {"stopSequence": 56, "arrival": {"time": "1694891102"}, "stopId": "50037"}, {"stopSequence": 57, "arrival": {"time": "1694891260"}, "stopId": "50038"}, {"stopSequence": 58, "arrival": {"time": "1694891346"}, "stopId": "50039"}, {"stopSequence": 59, "arrival": {"time": "1694891412"}, "stopId": "50040"}, {"stopSequence": 60, "arrival": {"time": "1694891512"}, "stopId": "50041"}, {"stopSequence": 61, "arrival": {"time": "1694891678"}, "stopId": "Jun-15"}, {"stopSequence": 62, "arrival": {"time": "1694891802"}, "stopId": "Jun-13"}, {"stopSequence": 63, "arrival": {"time": "1694892055"}, "stopId": "6-Oct"}, {"stopSequence": 64, "arrival": {"time": "1694892131"}, "stopId": "6-Aug"}, {"stopSequence": 65, "arrival": {"time": "1694892355"}, "stopId": "6-Jun"}, {"stopSequence": 66, "arrival": {"time": "1694892538"}, "stopId": "6-Feb"}, {"stopSequence": 67, "arrival": {"time": "1694892812"}, "stopId": "44956"}, {"stopSequence": 68, "arrival": {"time": "1694892874"}, "stopId": "44957"}, {"stopSequence": 69, "arrival": {"time": "1694893058"}, "stopId": "45057"}, {"stopSequence": 70, "arrival": {"time": "1694893162"}, "stopId": "44963"}, {"stopSequence": 71, "arrival": {"time": "1694893259"}, "stopId": "44964"}, {"stopSequence": 72, "arrival": {"time": "1694893432"}, "stopId": "44965"}, {"stopSequence": 73, "arrival": {"time": "1694893436"}, "stopId": "50018"}, {"stopSequence": 74, "arrival": {"time": "1694893534"}, "stopId": "44959"}, {"stopSequence": 75, "arrival": {"time": "1694893717"}, "stopId": "10-Jan"}, {"stopSequence": 76, "arrival": {"time": "1694893798"}, "stopId": "44863"}, {"stopSequence": 77, "arrival": {"time": "1694893874"}, "stopId": "10-Mar"}, {"stopSequence": 78, "arrival": {"time": "1694893996"}, "stopId": "11-Jan"}, {"stopSequence": 79, "arrival": {"time": "1694894112"}, "stopId": "44866"}, {"stopSequence": 80, "arrival": {"time": "1694894203"}, "stopId": "44867"}, {"stopSequence": 81, "arrival": {"time": "1694894266"}, "stopId": "44868"}, {"stopSequence": 82, "arrival": {"time": "1694894331"}, "stopId": "44869"}, {"stopSequence": 83, "arrival": {"time": "1694894411"}, "stopId": "44870"}, {"stopSequence": 84, "arrival": {"time": "1694894558"}, "stopId": "44960"}, {"stopSequence": 85, "arrival": {"time": "1694894696"}, "stopId": "44961"}, {"stopSequence": 86, "arrival": {"time": "1694894808"}, "stopId": "14-15"}, {"stopSequence": 87, "arrival": {"time": "1694894913"}, "stopId": "44962"}, {"stopSequence": 88, "arrival": {"time": "1694895230"}, "stopId": "14-11"}, {"stopSequence": 89, "arrival": {"time": "1694895350"}, "stopId": "91162"}, {"stopSequence": 90, "arrival": {"time": "1694895610"}, "stopId": "50023"}, {"stopSequence": 91, "arrival": {"time": "1694895953"}, "stopId": "14-Jul"}, {"stopSequence": 92, "arrival": {"time": "1694896099"}, "stopId": "50025"}, {"stopSequence": 93, "arrival": {"time": "1694896279"}, "stopId": "50026"}, {"stopSequence": 94, "arrival": {"time": "1694896625"}, "stopId": "50027"}, {"stopSequence": 95, "arrival": {"time": "1694896925"}, "stopId": "37474"}, {"stopSequence": 96, "arrival": {"time": "1694897143"}, "stopId": "44879"}], "vehicle": {"licensePlate": "DRZG21"}, "timestamp": "1694889000"}, "vehicle": {"trip": {"tripId": "20486-701ff27f-2", "startTime": "15:16:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "592", "directionId": 1}, "position": {"latitude": -36.79475, "longitude": -73.101135, "bearing": 122.0, "odometer": 0.0, "speed": 13.611111}, "timestamp": "1694889000", "vehicle": {"licensePlate": "DRZG21"}}}, {"id": "be8c8b14-feb9-499f-b8ee-8e16c28533cd", "tripUpdate": {"trip": {"tripId": "20485-701ff27f-2", "startTime": "15:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "592", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 41, "arrival": {"time": "1694889101"}, "stopId": "35697"}, {"stopSequence": 42, "arrival": {"time": "1694889228"}, "stopId": "39778"}, {"stopSequence": 43, "arrival": {"time": "1694889336"}, "stopId": "35797"}, {"stopSequence": 44, "arrival": {"time": "1694889378"}, "stopId": "35798"}, {"stopSequence": 45, "arrival": {"time": "1694889416"}, "stopId": "35799"}, {"stopSequence": 46, "arrival": {"time": "1694889486"}, "stopId": "35800"}, {"stopSequence": 47, "arrival": {"time": "1694889535"}, "stopId": "35801"}, {"stopSequence": 48, "arrival": {"time": "1694889561"}, "stopId": "35802"}, {"stopSequence": 49, "arrival": {"time": "1694889608"}, "stopId": "35803"}, {"stopSequence": 50, "arrival": {"time": "1694889662"}, "stopId": "38507"}, {"stopSequence": 51, "arrival": {"time": "1694889712"}, "stopId": "34473"}, {"stopSequence": 52, "arrival": {"time": "1694889755"}, "stopId": "38500"}, {"stopSequence": 53, "arrival": {"time": "1694889800"}, "stopId": "35808"}, {"stopSequence": 54, "arrival": {"time": "1694889856"}, "stopId": "35710"}, {"stopSequence": 55, "arrival": {"time": "1694889900"}, "stopId": "50036"}, {"stopSequence": 56, "arrival": {"time": "1694890123"}, "stopId": "50037"}, {"stopSequence": 57, "arrival": {"time": "1694890262"}, "stopId": "50038"}, {"stopSequence": 58, "arrival": {"time": "1694890337"}, "stopId": "50039"}, {"stopSequence": 59, "arrival": {"time": "1694890394"}, "stopId": "50040"}, {"stopSequence": 60, "arrival": {"time": "1694890479"}, "stopId": "50041"}, {"stopSequence": 61, "arrival": {"time": "1694890616"}, "stopId": "Jun-15"}, {"stopSequence": 62, "arrival": {"time": "1694890717"}, "stopId": "Jun-13"}, {"stopSequence": 63, "arrival": {"time": "1694890918"}, "stopId": "6-Oct"}, {"stopSequence": 64, "arrival": {"time": "1694890977"}, "stopId": "6-Aug"}, {"stopSequence": 65, "arrival": {"time": "1694891147"}, "stopId": "6-Jun"}, {"stopSequence": 66, "arrival": {"time": "1694891284"}, "stopId": "6-Feb"}, {"stopSequence": 67, "arrival": {"time": "1694891482"}, "stopId": "44956"}, {"stopSequence": 68, "arrival": {"time": "1694891526"}, "stopId": "44957"}, {"stopSequence": 69, "arrival": {"time": "1694891655"}, "stopId": "45057"}, {"stopSequence": 70, "arrival": {"time": "1694891727"}, "stopId": "44963"}, {"stopSequence": 71, "arrival": {"time": "1694891793"}, "stopId": "44964"}, {"stopSequence": 72, "arrival": {"time": "1694891909"}, "stopId": "44965"}, {"stopSequence": 73, "arrival": {"time": "1694891912"}, "stopId": "50018"}, {"stopSequence": 74, "arrival": {"time": "1694891977"}, "stopId": "44959"}, {"stopSequence": 75, "arrival": {"time": "1694892097"}, "stopId": "10-Jan"}, {"stopSequence": 76, "arrival": {"time": "1694892149"}, "stopId": "44863"}, {"stopSequence": 77, "arrival": {"time": "1694892198"}, "stopId": "10-Mar"}, {"stopSequence": 78, "arrival": {"time": "1694892275"}, "stopId": "11-Jan"}, {"stopSequence": 79, "arrival": {"time": "1694892349"}, "stopId": "44866"}, {"stopSequence": 80, "arrival": {"time": "1694892405"}, "stopId": "44867"}, {"stopSequence": 81, "arrival": {"time": "1694892444"}, "stopId": "44868"}, {"stopSequence": 82, "arrival": {"time": "1694892484"}, "stopId": "44869"}, {"stopSequence": 83, "arrival": {"time": "1694892532"}, "stopId": "44870"}, {"stopSequence": 84, "arrival": {"time": "1694892622"}, "stopId": "44960"}, {"stopSequence": 85, "arrival": {"time": "1694892704"}, "stopId": "44961"}, {"stopSequence": 86, "arrival": {"time": "1694892770"}, "stopId": "14-15"}, {"stopSequence": 87, "arrival": {"time": "1694892832"}, "stopId": "44962"}, {"stopSequence": 88, "arrival": {"time": "1694893014"}, "stopId": "14-11"}, {"stopSequence": 89, "arrival": {"time": "1694893082"}, "stopId": "91162"}, {"stopSequence": 90, "arrival": {"time": "1694893226"}, "stopId": "50023"}, {"stopSequence": 91, "arrival": {"time": "1694893412"}, "stopId": "14-Jul"}, {"stopSequence": 92, "arrival": {"time": "1694893490"}, "stopId": "50025"}, {"stopSequence": 93, "arrival": {"time": "1694893585"}, "stopId": "50026"}, {"stopSequence": 94, "arrival": {"time": "1694893763"}, "stopId": "50027"}, {"stopSequence": 95, "arrival": {"time": "1694893914"}, "stopId": "37474"}, {"stopSequence": 96, "arrival": {"time": "1694894022"}, "stopId": "44879"}], "vehicle": {"licensePlate": "FGPH73"}, "timestamp": "1694889002"}, "vehicle": {"trip": {"tripId": "20485-701ff27f-2", "startTime": "15:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "592", "directionId": 1}, "position": {"latitude": -36.818623, "longitude": -73.06675, "bearing": 146.0, "odometer": 0.0, "speed": 17.222221}, "timestamp": "1694889002", "vehicle": {"licensePlate": "FGPH73"}}}, {"id": "8af00e4e-961c-47b0-b8a8-0a07813a5346", "tripUpdate": {"trip": {"tripId": "20483-701ff27f-2", "startTime": "14:31:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "592", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 74, "arrival": {"time": "1694889020"}, "stopId": "44959"}, {"stopSequence": 75, "arrival": {"time": "1694889116"}, "stopId": "10-Jan"}, {"stopSequence": 76, "arrival": {"time": "1694889156"}, "stopId": "44863"}, {"stopSequence": 77, "arrival": {"time": "1694889192"}, "stopId": "10-Mar"}, {"stopSequence": 78, "arrival": {"time": "1694889249"}, "stopId": "11-Jan"}, {"stopSequence": 79, "arrival": {"time": "1694889301"}, "stopId": "44866"}, {"stopSequence": 80, "arrival": {"time": "1694889341"}, "stopId": "44867"}, {"stopSequence": 81, "arrival": {"time": "1694889367"}, "stopId": "44868"}, {"stopSequence": 82, "arrival": {"time": "1694889394"}, "stopId": "44869"}, {"stopSequence": 83, "arrival": {"time": "1694889426"}, "stopId": "44870"}, {"stopSequence": 84, "arrival": {"time": "1694889484"}, "stopId": "44960"}, {"stopSequence": 85, "arrival": {"time": "1694889536"}, "stopId": "44961"}, {"stopSequence": 86, "arrival": {"time": "1694889577"}, "stopId": "14-15"}, {"stopSequence": 87, "arrival": {"time": "1694889614"}, "stopId": "44962"}, {"stopSequence": 88, "arrival": {"time": "1694889720"}, "stopId": "14-11"}, {"stopSequence": 89, "arrival": {"time": "1694889758"}, "stopId": "91162"}, {"stopSequence": 90, "arrival": {"time": "1694889836"}, "stopId": "50023"}, {"stopSequence": 91, "arrival": {"time": "1694889932"}, "stopId": "14-Jul"}, {"stopSequence": 92, "arrival": {"time": "1694889970"}, "stopId": "50025"}, {"stopSequence": 93, "arrival": {"time": "1694890016"}, "stopId": "50026"}, {"stopSequence": 94, "arrival": {"time": "1694890100"}, "stopId": "50027"}, {"stopSequence": 95, "arrival": {"time": "1694890168"}, "stopId": "37474"}, {"stopSequence": 96, "arrival": {"time": "1694890215"}, "stopId": "44879"}], "vehicle": {"licensePlate": "HSTC55"}, "timestamp": "1694888990"}, "vehicle": {"trip": {"tripId": "20483-701ff27f-2", "startTime": "14:31:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "592", "directionId": 1}, "position": {"latitude": -36.742935, "longitude": -72.99238, "bearing": 338.0, "odometer": 0.0, "speed": 3.8888888}, "timestamp": "1694888990", "vehicle": {"licensePlate": "HSTC55"}}}, {"id": "fc7e8c9f-efbb-4e11-b69c-158de259b6f2", "tripUpdate": {"trip": {"tripId": "20484-701ff27f-2", "startTime": "14:46:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "592", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 59, "arrival": {"time": "1694889005"}, "stopId": "50040"}, {"stopSequence": 60, "arrival": {"time": "1694889096"}, "stopId": "50041"}, {"stopSequence": 61, "arrival": {"time": "1694889240"}, "stopId": "Jun-15"}, {"stopSequence": 62, "arrival": {"time": "1694889342"}, "stopId": "Jun-13"}, {"stopSequence": 63, "arrival": {"time": "1694889537"}, "stopId": "6-Oct"}, {"stopSequence": 64, "arrival": {"time": "1694889592"}, "stopId": "6-Aug"}, {"stopSequence": 65, "arrival": {"time": "1694889748"}, "stopId": "6-Jun"}, {"stopSequence": 66, "arrival": {"time": "1694889868"}, "stopId": "6-Feb"}, {"stopSequence": 67, "arrival": {"time": "1694890036"}, "stopId": "44956"}, {"stopSequence": 68, "arrival": {"time": "1694890073"}, "stopId": "44957"}, {"stopSequence": 69, "arrival": {"time": "1694890177"}, "stopId": "45057"}, {"stopSequence": 70, "arrival": {"time": "1694890234"}, "stopId": "44963"}, {"stopSequence": 71, "arrival": {"time": "1694890285"}, "stopId": "44964"}, {"stopSequence": 72, "arrival": {"time": "1694890375"}, "stopId": "44965"}, {"stopSequence": 73, "arrival": {"time": "1694890377"}, "stopId": "50018"}, {"stopSequence": 74, "arrival": {"time": "1694890426"}, "stopId": "44959"}, {"stopSequence": 75, "arrival": {"time": "1694890515"}, "stopId": "10-Jan"}, {"stopSequence": 76, "arrival": {"time": "1694890553"}, "stopId": "44863"}, {"stopSequence": 77, "arrival": {"time": "1694890588"}, "stopId": "10-Mar"}, {"stopSequence": 78, "arrival": {"time": "1694890643"}, "stopId": "11-Jan"}, {"stopSequence": 79, "arrival": {"time": "1694890695"}, "stopId": "44866"}, {"stopSequence": 80, "arrival": {"time": "1694890734"}, "stopId": "44867"}, {"stopSequence": 81, "arrival": {"time": "1694890761"}, "stopId": "44868"}, {"stopSequence": 82, "arrival": {"time": "1694890788"}, "stopId": "44869"}, {"stopSequence": 83, "arrival": {"time": "1694890821"}, "stopId": "44870"}, {"stopSequence": 84, "arrival": {"time": "1694890881"}, "stopId": "44960"}, {"stopSequence": 85, "arrival": {"time": "1694890936"}, "stopId": "44961"}, {"stopSequence": 86, "arrival": {"time": "1694890980"}, "stopId": "14-15"}, {"stopSequence": 87, "arrival": {"time": "1694891019"}, "stopId": "44962"}, {"stopSequence": 88, "arrival": {"time": "1694891136"}, "stopId": "14-11"}, {"stopSequence": 89, "arrival": {"time": "1694891178"}, "stopId": "91162"}, {"stopSequence": 90, "arrival": {"time": "1694891267"}, "stopId": "50023"}, {"stopSequence": 91, "arrival": {"time": "1694891379"}, "stopId": "14-Jul"}, {"stopSequence": 92, "arrival": {"time": "1694891425"}, "stopId": "50025"}, {"stopSequence": 93, "arrival": {"time": "1694891480"}, "stopId": "50026"}, {"stopSequence": 94, "arrival": {"time": "1694891582"}, "stopId": "50027"}, {"stopSequence": 95, "arrival": {"time": "1694891666"}, "stopId": "37474"}, {"stopSequence": 96, "arrival": {"time": "1694891725"}, "stopId": "44879"}], "vehicle": {"licensePlate": "HYCZ33"}, "timestamp": "1694889002"}, "vehicle": {"trip": {"tripId": "20484-701ff27f-2", "startTime": "14:46:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "592", "directionId": 1}, "position": {"latitude": -36.791847, "longitude": -73.02506, "bearing": 16.0, "odometer": 0.0, "speed": 6.9444447}, "timestamp": "1694889002", "vehicle": {"licensePlate": "HYCZ33"}}}, {"id": "eab165b9-b2a2-40d7-b73d-21efbbed7c5b", "tripUpdate": {"trip": {"tripId": "20559-701ff27f-2", "startTime": "14:30:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "592", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 74, "arrival": {"time": "1694889028"}, "stopId": "4838437"}, {"stopSequence": 75, "arrival": {"time": "1694889086"}, "stopId": "45085"}, {"stopSequence": 76, "arrival": {"time": "1694889169"}, "stopId": "45086"}, {"stopSequence": 77, "arrival": {"time": "1694889276"}, "stopId": "45087"}, {"stopSequence": 78, "arrival": {"time": "1694889302"}, "stopId": "45088"}, {"stopSequence": 79, "arrival": {"time": "1694889342"}, "stopId": "45089"}, {"stopSequence": 80, "arrival": {"time": "1694889410"}, "stopId": "45090"}, {"stopSequence": 81, "arrival": {"time": "1694889438"}, "stopId": "45091"}, {"stopSequence": 82, "arrival": {"time": "1694889476"}, "stopId": "45092"}, {"stopSequence": 83, "arrival": {"time": "1694889518"}, "stopId": "45093"}, {"stopSequence": 84, "arrival": {"time": "1694889567"}, "stopId": "45094"}, {"stopSequence": 85, "arrival": {"time": "1694889601"}, "stopId": "45095"}, {"stopSequence": 86, "arrival": {"time": "1694889642"}, "stopId": "45096"}, {"stopSequence": 87, "arrival": {"time": "1694889710"}, "stopId": "45098"}, {"stopSequence": 88, "arrival": {"time": "1694889741"}, "stopId": "45099"}, {"stopSequence": 89, "arrival": {"time": "1694889759"}, "stopId": "45100"}, {"stopSequence": 90, "arrival": {"time": "1694889788"}, "stopId": "45101"}, {"stopSequence": 91, "arrival": {"time": "1694889822"}, "stopId": "45102"}, {"stopSequence": 92, "arrival": {"time": "1694889847"}, "stopId": "45103"}, {"stopSequence": 93, "arrival": {"time": "1694889871"}, "stopId": "45104"}, {"stopSequence": 94, "arrival": {"time": "1694889896"}, "stopId": "45122"}, {"stopSequence": 95, "arrival": {"time": "1694889947"}, "stopId": "38630"}], "vehicle": {"licensePlate": "JSBB20"}, "timestamp": "1694889008"}, "vehicle": {"trip": {"tripId": "20559-701ff27f-2", "startTime": "14:30:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "592", "directionId": 0}, "position": {"latitude": -36.76473, "longitude": -73.086464, "bearing": 334.0, "odometer": 0.0, "speed": 16.38889}, "timestamp": "1694889008", "vehicle": {"licensePlate": "JSBB20"}}}, {"id": "7623000a-a671-4c4a-800f-ee503cb0211b", "tripUpdate": {"trip": {"tripId": "20561-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "592", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 40, "arrival": {"time": "1694889283"}, "stopId": "90003"}, {"stopSequence": 41, "arrival": {"time": "1694889330"}, "stopId": "90007"}, {"stopSequence": 42, "arrival": {"time": "1694889381"}, "stopId": "90008"}, {"stopSequence": 43, "arrival": {"time": "1694889492"}, "stopId": "39599"}, {"stopSequence": 44, "arrival": {"time": "1694889515"}, "stopId": "39600"}, {"stopSequence": 45, "arrival": {"time": "1694889581"}, "stopId": "37496"}, {"stopSequence": 46, "arrival": {"time": "1694889630"}, "stopId": "45064"}, {"stopSequence": 47, "arrival": {"time": "1694889702"}, "stopId": "37506"}, {"stopSequence": 48, "arrival": {"time": "1694889775"}, "stopId": "45069"}, {"stopSequence": 49, "arrival": {"time": "1694889884"}, "stopId": "37523"}, {"stopSequence": 50, "arrival": {"time": "1694889924"}, "stopId": "37477"}, {"stopSequence": 51, "arrival": {"time": "1694890008"}, "stopId": "49310"}, {"stopSequence": 52, "arrival": {"time": "1694890039"}, "stopId": "49311"}, {"stopSequence": 53, "arrival": {"time": "1694890093"}, "stopId": "39634"}, {"stopSequence": 54, "arrival": {"time": "1694890118"}, "stopId": "39635"}, {"stopSequence": 55, "arrival": {"time": "1694890162"}, "stopId": "39636"}, {"stopSequence": 56, "arrival": {"time": "1694890214"}, "stopId": "49503"}, {"stopSequence": 57, "arrival": {"time": "1694890338"}, "stopId": "39637"}, {"stopSequence": 58, "arrival": {"time": "1694890387"}, "stopId": "49317"}, {"stopSequence": 59, "arrival": {"time": "1694890418"}, "stopId": "49318"}, {"stopSequence": 60, "arrival": {"time": "1694890483"}, "stopId": "49319"}, {"stopSequence": 61, "arrival": {"time": "1694890547"}, "stopId": "39641"}, {"stopSequence": 62, "arrival": {"time": "1694890613"}, "stopId": "38590"}, {"stopSequence": 63, "arrival": {"time": "1694891049"}, "stopId": "32575"}, {"stopSequence": 64, "arrival": {"time": "1694891103"}, "stopId": "4950738"}, {"stopSequence": 65, "arrival": {"time": "1694891389"}, "stopId": "38530"}, {"stopSequence": 66, "arrival": {"time": "1694891404"}, "stopId": "16005209"}, {"stopSequence": 67, "arrival": {"time": "1694891684"}, "stopId": "38531"}, {"stopSequence": 68, "arrival": {"time": "1694891752"}, "stopId": "8921285"}, {"stopSequence": 69, "arrival": {"time": "1694891893"}, "stopId": "38532"}, {"stopSequence": 70, "arrival": {"time": "1694891962"}, "stopId": "38533"}, {"stopSequence": 71, "arrival": {"time": "1694892033"}, "stopId": "38534"}, {"stopSequence": 72, "arrival": {"time": "1694892098"}, "stopId": "38535"}, {"stopSequence": 73, "arrival": {"time": "1694892188"}, "stopId": "38536"}, {"stopSequence": 74, "arrival": {"time": "1694892238"}, "stopId": "4838437"}, {"stopSequence": 75, "arrival": {"time": "1694892315"}, "stopId": "45085"}, {"stopSequence": 76, "arrival": {"time": "1694892431"}, "stopId": "45086"}, {"stopSequence": 77, "arrival": {"time": "1694892587"}, "stopId": "45087"}, {"stopSequence": 78, "arrival": {"time": "1694892625"}, "stopId": "45088"}, {"stopSequence": 79, "arrival": {"time": "1694892687"}, "stopId": "45089"}, {"stopSequence": 80, "arrival": {"time": "1694892796"}, "stopId": "45090"}, {"stopSequence": 81, "arrival": {"time": "1694892841"}, "stopId": "45091"}, {"stopSequence": 82, "arrival": {"time": "1694892904"}, "stopId": "45092"}, {"stopSequence": 83, "arrival": {"time": "1694892976"}, "stopId": "45093"}, {"stopSequence": 84, "arrival": {"time": "1694893060"}, "stopId": "45094"}, {"stopSequence": 85, "arrival": {"time": "1694893122"}, "stopId": "45095"}, {"stopSequence": 86, "arrival": {"time": "1694893197"}, "stopId": "45096"}, {"stopSequence": 87, "arrival": {"time": "1694893325"}, "stopId": "45098"}, {"stopSequence": 88, "arrival": {"time": "1694893384"}, "stopId": "45099"}, {"stopSequence": 89, "arrival": {"time": "1694893420"}, "stopId": "45100"}, {"stopSequence": 90, "arrival": {"time": "1694893479"}, "stopId": "45101"}, {"stopSequence": 91, "arrival": {"time": "1694893547"}, "stopId": "45102"}, {"stopSequence": 92, "arrival": {"time": "1694893599"}, "stopId": "45103"}, {"stopSequence": 93, "arrival": {"time": "1694893648"}, "stopId": "45104"}, {"stopSequence": 94, "arrival": {"time": "1694893701"}, "stopId": "45122"}, {"stopSequence": 95, "arrival": {"time": "1694893813"}, "stopId": "38630"}], "vehicle": {"licensePlate": "RJLV32"}, "timestamp": "1694889010"}, "vehicle": {"trip": {"tripId": "20561-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "592", "directionId": 0}, "position": {"latitude": -36.805134, "longitude": -73.02458, "bearing": 160.0, "odometer": 0.0, "speed": 12.222222}, "timestamp": "1694889010", "vehicle": {"licensePlate": "RJLV32"}}}, {"id": "161c593c-bd83-4318-879a-cec2967b3cca", "tripUpdate": {"trip": {"tripId": "20487-701ff27f-2", "startTime": "15:31:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "592", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 1, "arrival": {"time": "1694889048"}, "stopId": "42365"}, {"stopSequence": 2, "arrival": {"time": "1694889255"}, "stopId": "42421"}, {"stopSequence": 3, "arrival": {"time": "1694889461"}, "stopId": "42422"}, {"stopSequence": 4, "arrival": {"time": "1694889537"}, "stopId": "42423"}, {"stopSequence": 5, "arrival": {"time": "1694889648"}, "stopId": "42424"}, {"stopSequence": 6, "arrival": {"time": "1694889835"}, "stopId": "42425"}, {"stopSequence": 7, "arrival": {"time": "1694890009"}, "stopId": "42426"}, {"stopSequence": 8, "arrival": {"time": "1694890062"}, "stopId": "42427"}, {"stopSequence": 9, "arrival": {"time": "1694890091"}, "stopId": "42428"}, {"stopSequence": 10, "arrival": {"time": "1694890120"}, "stopId": "42429"}, {"stopSequence": 11, "arrival": {"time": "1694890156"}, "stopId": "42430"}, {"stopSequence": 12, "arrival": {"time": "1694890205"}, "stopId": "42431"}, {"stopSequence": 13, "arrival": {"time": "1694890228"}, "stopId": "42432"}, {"stopSequence": 14, "arrival": {"time": "1694890314"}, "stopId": "42434"}, {"stopSequence": 15, "arrival": {"time": "1694890364"}, "stopId": "42435"}, {"stopSequence": 16, "arrival": {"time": "1694890409"}, "stopId": "4831075"}, {"stopSequence": 18, "arrival": {"time": "1694890479"}, "stopId": "37435"}, {"stopSequence": 19, "arrival": {"time": "1694890518"}, "stopId": "37583"}, {"stopSequence": 20, "arrival": {"time": "1694890687"}, "stopId": "37585"}, {"stopSequence": 21, "arrival": {"time": "1694890724"}, "stopId": "37586"}, {"stopSequence": 22, "arrival": {"time": "1694890749"}, "stopId": "37587"}, {"stopSequence": 23, "arrival": {"time": "1694890766"}, "stopId": "37588"}, {"stopSequence": 24, "arrival": {"time": "1694890816"}, "stopId": "37589"}, {"stopSequence": 25, "arrival": {"time": "1694890875"}, "stopId": "37590"}, {"stopSequence": 26, "arrival": {"time": "1694890918"}, "stopId": "37427"}, {"stopSequence": 27, "arrival": {"time": "1694890976"}, "stopId": "37426"}, {"stopSequence": 28, "arrival": {"time": "1694891015"}, "stopId": "37425"}, {"stopSequence": 29, "arrival": {"time": "1694891025"}, "stopId": "37593"}, {"stopSequence": 30, "arrival": {"time": "1694891052"}, "stopId": "38509"}, {"stopSequence": 31, "arrival": {"time": "1694891089"}, "stopId": "38642"}, {"stopSequence": 32, "arrival": {"time": "1694891137"}, "stopId": "39795"}, {"stopSequence": 33, "arrival": {"time": "1694891164"}, "stopId": "38502"}, {"stopSequence": 34, "arrival": {"time": "1694891238"}, "stopId": "38503"}, {"stopSequence": 35, "arrival": {"time": "1694891414"}, "stopId": "35691"}, {"stopSequence": 36, "arrival": {"time": "1694891461"}, "stopId": "35692"}, {"stopSequence": 37, "arrival": {"time": "1694891525"}, "stopId": "35693"}, {"stopSequence": 38, "arrival": {"time": "1694891594"}, "stopId": "35694"}, {"stopSequence": 39, "arrival": {"time": "1694891642"}, "stopId": "35695"}, {"stopSequence": 40, "arrival": {"time": "1694891699"}, "stopId": "35696"}, {"stopSequence": 41, "arrival": {"time": "1694891910"}, "stopId": "35697"}, {"stopSequence": 42, "arrival": {"time": "1694892071"}, "stopId": "39778"}, {"stopSequence": 43, "arrival": {"time": "1694892214"}, "stopId": "35797"}, {"stopSequence": 44, "arrival": {"time": "1694892271"}, "stopId": "35798"}, {"stopSequence": 45, "arrival": {"time": "1694892325"}, "stopId": "35799"}, {"stopSequence": 46, "arrival": {"time": "1694892426"}, "stopId": "35800"}, {"stopSequence": 47, "arrival": {"time": "1694892499"}, "stopId": "35801"}, {"stopSequence": 48, "arrival": {"time": "1694892538"}, "stopId": "35802"}, {"stopSequence": 49, "arrival": {"time": "1694892610"}, "stopId": "35803"}, {"stopSequence": 50, "arrival": {"time": "1694892697"}, "stopId": "38507"}, {"stopSequence": 51, "arrival": {"time": "1694892777"}, "stopId": "34473"}, {"stopSequence": 52, "arrival": {"time": "1694892849"}, "stopId": "38500"}, {"stopSequence": 53, "arrival": {"time": "1694892925"}, "stopId": "35808"}, {"stopSequence": 54, "arrival": {"time": "1694893024"}, "stopId": "35710"}, {"stopSequence": 55, "arrival": {"time": "1694893102"}, "stopId": "50036"}, {"stopSequence": 56, "arrival": {"time": "1694893530"}, "stopId": "50037"}, {"stopSequence": 57, "arrival": {"time": "1694893825"}, "stopId": "50038"}, {"stopSequence": 58, "arrival": {"time": "1694893991"}, "stopId": "50039"}, {"stopSequence": 59, "arrival": {"time": "1694894123"}, "stopId": "50040"}, {"stopSequence": 60, "arrival": {"time": "1694894326"}, "stopId": "50041"}, {"stopSequence": 61, "arrival": {"time": "1694894674"}, "stopId": "Jun-15"}, {"stopSequence": 62, "arrival": {"time": "1694894947"}, "stopId": "Jun-13"}, {"stopSequence": 63, "arrival": {"time": "1694895538"}, "stopId": "6-Oct"}, {"stopSequence": 64, "arrival": {"time": "1694895723"}, "stopId": "6-Aug"}, {"stopSequence": 65, "arrival": {"time": "1694896297"}, "stopId": "6-Jun"}, {"stopSequence": 66, "arrival": {"time": "1694896798"}, "stopId": "6-Feb"}, {"stopSequence": 67, "arrival": {"time": "1694897599"}, "stopId": "44956"}, {"stopSequence": 68, "arrival": {"time": "1694897793"}, "stopId": "44957"}, {"stopSequence": 69, "arrival": {"time": "1694898385"}, "stopId": "45057"}, {"stopSequence": 70, "arrival": {"time": "1694898735"}, "stopId": "44963"}, {"stopSequence": 71, "arrival": {"time": "1694899071"}, "stopId": "44964"}, {"stopSequence": 72, "arrival": {"time": "1694899702"}, "stopId": "44965"}, {"stopSequence": 73, "arrival": {"time": "1694899716"}, "stopId": "50018"}, {"stopSequence": 74, "arrival": {"time": "1694900090"}, "stopId": "44959"}, {"stopSequence": 75, "arrival": {"time": "1694900829"}, "stopId": "10-Jan"}, {"stopSequence": 76, "arrival": {"time": "1694901169"}, "stopId": "44863"}, {"stopSequence": 77, "arrival": {"time": "1694901497"}, "stopId": "10-Mar"}, {"stopSequence": 78, "arrival": {"time": "1694902045"}, "stopId": "11-Jan"}, {"stopSequence": 79, "arrival": {"time": "1694902593"}, "stopId": "44866"}, {"stopSequence": 80, "arrival": {"time": "1694903037"}, "stopId": "44867"}, {"stopSequence": 81, "arrival": {"time": "1694903352"}, "stopId": "44868"}, {"stopSequence": 82, "arrival": {"time": "1694903687"}, "stopId": "44869"}, {"stopSequence": 83, "arrival": {"time": "1694904111"}, "stopId": "44870"}, {"stopSequence": 84, "arrival": {"time": "1694904931"}, "stopId": "44960"}, {"stopSequence": 85, "arrival": {"time": "1694905747"}, "stopId": "44961"}, {"stopSequence": 86, "arrival": {"time": "1694906446"}, "stopId": "14-15"}, {"stopSequence": 87, "arrival": {"time": "1694907130"}, "stopId": "44962"}, {"stopSequence": 88, "arrival": {"time": "1694909412"}, "stopId": "14-11"}, {"stopSequence": 89, "arrival": {"time": "1694910365"}, "stopId": "91162"}, {"stopSequence": 90, "arrival": {"time": "1694912637"}, "stopId": "50023"}, {"stopSequence": 91, "arrival": {"time": "1694916167"}, "stopId": "14-Jul"}, {"stopSequence": 92, "arrival": {"time": "1694917893"}, "stopId": "50025"}, {"stopSequence": 93, "arrival": {"time": "1694920237"}, "stopId": "50026"}, {"stopSequence": 94, "arrival": {"time": "1694925586"}, "stopId": "50027"}, {"stopSequence": 95, "arrival": {"time": "1694931421"}, "stopId": "37474"}, {"stopSequence": 96, "arrival": {"time": "1694936604"}, "stopId": "44879"}], "vehicle": {"licensePlate": "ZV8809"}, "timestamp": "1694889037"}, "vehicle": {"trip": {"tripId": "20487-701ff27f-2", "startTime": "15:31:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "592", "directionId": 1}, "position": {"latitude": -36.73753, "longitude": -73.11424, "bearing": 230.0, "odometer": 0.0, "speed": 10.277778}, "timestamp": "1694889037", "vehicle": {"licensePlate": "ZV8809"}}}, {"id": "edfbd7e6-de68-4254-afee-431b8b3f98a9", "tripUpdate": {"trip": {"tripId": "20714-701ff27f-2", "startTime": "15:15:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "593", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 30, "arrival": {"time": "1694889059"}, "stopId": "6-Jul"}, {"stopSequence": 31, "arrival": {"time": "1694889116"}, "stopId": "6-Sep"}, {"stopSequence": 32, "arrival": {"time": "1694889218"}, "stopId": "6-Nov"}, {"stopSequence": 33, "arrival": {"time": "1694889327"}, "stopId": "6-Dec"}, {"stopSequence": 34, "arrival": {"time": "1694889412"}, "stopId": "Jun-14"}, {"stopSequence": 35, "arrival": {"time": "1694889570"}, "stopId": "Jun-17"}, {"stopSequence": 36, "arrival": {"time": "1694889650"}, "stopId": "Jun-19"}, {"stopSequence": 37, "arrival": {"time": "1694889704"}, "stopId": "Jun-20"}, {"stopSequence": 38, "arrival": {"time": "1694889768"}, "stopId": "Jun-22"}, {"stopSequence": 39, "arrival": {"time": "1694889831"}, "stopId": "Jun-24"}, {"stopSequence": 40, "arrival": {"time": "1694889910"}, "stopId": "Jun-25"}, {"stopSequence": 41, "arrival": {"time": "1694890197"}, "stopId": "90003"}, {"stopSequence": 42, "arrival": {"time": "1694890242"}, "stopId": "90007"}, {"stopSequence": 43, "arrival": {"time": "1694890292"}, "stopId": "90008"}, {"stopSequence": 44, "arrival": {"time": "1694890400"}, "stopId": "39599"}, {"stopSequence": 45, "arrival": {"time": "1694890422"}, "stopId": "39600"}, {"stopSequence": 46, "arrival": {"time": "1694890488"}, "stopId": "37496"}, {"stopSequence": 47, "arrival": {"time": "1694890537"}, "stopId": "45064"}, {"stopSequence": 48, "arrival": {"time": "1694890610"}, "stopId": "37506"}, {"stopSequence": 49, "arrival": {"time": "1694890685"}, "stopId": "45069"}, {"stopSequence": 50, "arrival": {"time": "1694890799"}, "stopId": "37523"}, {"stopSequence": 51, "arrival": {"time": "1694890841"}, "stopId": "37477"}, {"stopSequence": 52, "arrival": {"time": "1694890931"}, "stopId": "49310"}, {"stopSequence": 53, "arrival": {"time": "1694890964"}, "stopId": "49311"}, {"stopSequence": 54, "arrival": {"time": "1694891023"}, "stopId": "39634"}, {"stopSequence": 55, "arrival": {"time": "1694891050"}, "stopId": "39635"}, {"stopSequence": 56, "arrival": {"time": "1694891100"}, "stopId": "39636"}, {"stopSequence": 57, "arrival": {"time": "1694891158"}, "stopId": "49503"}, {"stopSequence": 58, "arrival": {"time": "1694891297"}, "stopId": "39637"}, {"stopSequence": 59, "arrival": {"time": "1694891353"}, "stopId": "49317"}, {"stopSequence": 60, "arrival": {"time": "1694891389"}, "stopId": "49318"}, {"stopSequence": 61, "arrival": {"time": "1694891465"}, "stopId": "49319"}, {"stopSequence": 62, "arrival": {"time": "1694891539"}, "stopId": "39641"}, {"stopSequence": 63, "arrival": {"time": "1694891926"}, "stopId": "49325"}, {"stopSequence": 64, "arrival": {"time": "1694892008"}, "stopId": "49326"}, {"stopSequence": 65, "arrival": {"time": "1694892043"}, "stopId": "39648"}, {"stopSequence": 66, "arrival": {"time": "1694892107"}, "stopId": "39649"}, {"stopSequence": 67, "arrival": {"time": "1694892161"}, "stopId": "45112"}, {"stopSequence": 68, "arrival": {"time": "1694892221"}, "stopId": "45113"}, {"stopSequence": 69, "arrival": {"time": "1694892334"}, "stopId": "37490"}, {"stopSequence": 70, "arrival": {"time": "1694892412"}, "stopId": "45115"}, {"stopSequence": 71, "arrival": {"time": "1694892448"}, "stopId": "45116"}, {"stopSequence": 72, "arrival": {"time": "1694892554"}, "stopId": "45118"}, {"stopSequence": 73, "arrival": {"time": "1694892669"}, "stopId": "45119"}, {"stopSequence": 74, "arrival": {"time": "1694892740"}, "stopId": "45120"}, {"stopSequence": 75, "arrival": {"time": "1694892829"}, "stopId": "45121"}, {"stopSequence": 76, "arrival": {"time": "1694892897"}, "stopId": "38535"}, {"stopSequence": 77, "arrival": {"time": "1694893027"}, "stopId": "38536"}, {"stopSequence": 78, "arrival": {"time": "1694893090"}, "stopId": "4838437"}, {"stopSequence": 79, "arrival": {"time": "1694893187"}, "stopId": "45085"}, {"stopSequence": 80, "arrival": {"time": "1694893332"}, "stopId": "45086"}, {"stopSequence": 81, "arrival": {"time": "1694893519"}, "stopId": "45087"}, {"stopSequence": 82, "arrival": {"time": "1694893661"}, "stopId": "45089"}, {"stopSequence": 83, "arrival": {"time": "1694893800"}, "stopId": "45090"}, {"stopSequence": 84, "arrival": {"time": "1694893877"}, "stopId": "45091"}, {"stopSequence": 85, "arrival": {"time": "1694893942"}, "stopId": "45092"}, {"stopSequence": 86, "arrival": {"time": "1694894036"}, "stopId": "45093"}, {"stopSequence": 87, "arrival": {"time": "1694894208"}, "stopId": "45095"}, {"stopSequence": 88, "arrival": {"time": "1694894312"}, "stopId": "45096"}, {"stopSequence": 89, "arrival": {"time": "1694894429"}, "stopId": "45097"}, {"stopSequence": 90, "arrival": {"time": "1694894511"}, "stopId": "45098"}, {"stopSequence": 91, "arrival": {"time": "1694894581"}, "stopId": "45099"}, {"stopSequence": 92, "arrival": {"time": "1694894634"}, "stopId": "45100"}, {"stopSequence": 93, "arrival": {"time": "1694894714"}, "stopId": "45101"}, {"stopSequence": 94, "arrival": {"time": "1694894802"}, "stopId": "45102"}, {"stopSequence": 95, "arrival": {"time": "1694894874"}, "stopId": "45103"}, {"stopSequence": 96, "arrival": {"time": "1694894942"}, "stopId": "45104"}, {"stopSequence": 97, "arrival": {"time": "1694894988"}, "stopId": "45122"}, {"stopSequence": 98, "arrival": {"time": "1694895170"}, "stopId": "38630"}], "vehicle": {"licensePlate": "CJVG74"}, "timestamp": "1694889035"}, "vehicle": {"trip": {"tripId": "20714-701ff27f-2", "startTime": "15:15:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "593", "directionId": 0}, "position": {"latitude": -36.766216, "longitude": -73.01145, "bearing": 212.0, "odometer": 0.0, "speed": 18.055555}, "timestamp": "1694889035", "vehicle": {"licensePlate": "CJVG74"}}}, {"id": "794037c5-550c-4ff3-a8e2-9a152dd9d746", "tripUpdate": {"trip": {"tripId": "20637-701ff27f-2", "startTime": "15:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "593", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 31, "arrival": {"time": "1694889025"}, "stopId": "38509"}, {"stopSequence": 32, "arrival": {"time": "1694889062"}, "stopId": "38642"}, {"stopSequence": 33, "arrival": {"time": "1694889109"}, "stopId": "39795"}, {"stopSequence": 34, "arrival": {"time": "1694889136"}, "stopId": "38502"}, {"stopSequence": 35, "arrival": {"time": "1694889206"}, "stopId": "38503"}, {"stopSequence": 36, "arrival": {"time": "1694889367"}, "stopId": "35691"}, {"stopSequence": 37, "arrival": {"time": "1694889467"}, "stopId": "35693"}, {"stopSequence": 38, "arrival": {"time": "1694889521"}, "stopId": "35694"}, {"stopSequence": 39, "arrival": {"time": "1694889561"}, "stopId": "35695"}, {"stopSequence": 40, "arrival": {"time": "1694889608"}, "stopId": "35696"}, {"stopSequence": 41, "arrival": {"time": "1694889774"}, "stopId": "35697"}, {"stopSequence": 42, "arrival": {"time": "1694889892"}, "stopId": "39778"}, {"stopSequence": 43, "arrival": {"time": "1694889994"}, "stopId": "35797"}, {"stopSequence": 44, "arrival": {"time": "1694890040"}, "stopId": "35798"}, {"stopSequence": 45, "arrival": {"time": "1694890071"}, "stopId": "35799"}, {"stopSequence": 46, "arrival": {"time": "1694890139"}, "stopId": "35800"}, {"stopSequence": 47, "arrival": {"time": "1694890187"}, "stopId": "35801"}, {"stopSequence": 48, "arrival": {"time": "1694890212"}, "stopId": "35802"}, {"stopSequence": 49, "arrival": {"time": "1694890258"}, "stopId": "35803"}, {"stopSequence": 50, "arrival": {"time": "1694890312"}, "stopId": "38507"}, {"stopSequence": 51, "arrival": {"time": "1694890362"}, "stopId": "34473"}, {"stopSequence": 52, "arrival": {"time": "1694890405"}, "stopId": "38500"}, {"stopSequence": 53, "arrival": {"time": "1694890450"}, "stopId": "35808"}, {"stopSequence": 54, "arrival": {"time": "1694890508"}, "stopId": "35710"}, {"stopSequence": 55, "arrival": {"time": "1694890552"}, "stopId": "50036"}, {"stopSequence": 56, "arrival": {"time": "1694890784"}, "stopId": "50037"}, {"stopSequence": 57, "arrival": {"time": "1694890933"}, "stopId": "50038"}, {"stopSequence": 58, "arrival": {"time": "1694891014"}, "stopId": "50039"}, {"stopSequence": 59, "arrival": {"time": "1694891077"}, "stopId": "50040"}, {"stopSequence": 60, "arrival": {"time": "1694891170"}, "stopId": "50041"}, {"stopSequence": 61, "arrival": {"time": "1694891323"}, "stopId": "Jun-15"}, {"stopSequence": 62, "arrival": {"time": "1694891437"}, "stopId": "Jun-13"}, {"stopSequence": 63, "arrival": {"time": "1694891668"}, "stopId": "6-Oct"}, {"stopSequence": 64, "arrival": {"time": "1694891737"}, "stopId": "6-Aug"}, {"stopSequence": 65, "arrival": {"time": "1694891938"}, "stopId": "6-Jun"}, {"stopSequence": 66, "arrival": {"time": "1694892102"}, "stopId": "6-Feb"}, {"stopSequence": 67, "arrival": {"time": "1694892293"}, "stopId": "7-Jul"}, {"stopSequence": 68, "arrival": {"time": "1694892387"}, "stopId": "7-May"}, {"stopSequence": 69, "arrival": {"time": "1694892440"}, "stopId": "1508142"}, {"stopSequence": 70, "arrival": {"time": "1694892597"}, "stopId": "7-Feb"}, {"stopSequence": 71, "arrival": {"time": "1694892691"}, "stopId": "8-Jan"}, {"stopSequence": 72, "arrival": {"time": "1694892741"}, "stopId": "9-Jan"}, {"stopSequence": 73, "arrival": {"time": "1694892806"}, "stopId": "10-Apr"}, {"stopSequence": 74, "arrival": {"time": "1694892902"}, "stopId": "10-Jan"}, {"stopSequence": 75, "arrival": {"time": "1694892973"}, "stopId": "44863"}, {"stopSequence": 76, "arrival": {"time": "1694893028"}, "stopId": "10-Mar"}, {"stopSequence": 77, "arrival": {"time": "1694893124"}, "stopId": "11-Jan"}, {"stopSequence": 78, "arrival": {"time": "1694893217"}, "stopId": "44866"}, {"stopSequence": 79, "arrival": {"time": "1694893288"}, "stopId": "44867"}, {"stopSequence": 80, "arrival": {"time": "1694893337"}, "stopId": "44868"}, {"stopSequence": 81, "arrival": {"time": "1694893388"}, "stopId": "44869"}, {"stopSequence": 82, "arrival": {"time": "1694893450"}, "stopId": "44870"}, {"stopSequence": 83, "arrival": {"time": "1694893498"}, "stopId": "44871"}, {"stopSequence": 84, "arrival": {"time": "1694893592"}, "stopId": "44872"}, {"stopSequence": 85, "arrival": {"time": "1694893713"}, "stopId": "50020"}, {"stopSequence": 86, "arrival": {"time": "1694893909"}, "stopId": "14-11"}, {"stopSequence": 87, "arrival": {"time": "1694893994"}, "stopId": "91162"}, {"stopSequence": 88, "arrival": {"time": "1694894179"}, "stopId": "50023"}, {"stopSequence": 89, "arrival": {"time": "1694894419"}, "stopId": "14-Jul"}, {"stopSequence": 90, "arrival": {"time": "1694894513"}, "stopId": "14-Apr"}, {"stopSequence": 91, "arrival": {"time": "1694894633"}, "stopId": "37474"}, {"stopSequence": 92, "arrival": {"time": "1694894763"}, "stopId": "44879"}, {"stopSequence": 93, "arrival": {"time": "1694894827"}, "stopId": "44880"}, {"stopSequence": 94, "arrival": {"time": "1694894913"}, "stopId": "44881"}, {"stopSequence": 95, "arrival": {"time": "1694895138"}, "stopId": "38151"}, {"stopSequence": 96, "arrival": {"time": "1694895595"}, "stopId": "15-13"}, {"stopSequence": 97, "arrival": {"time": "1694895869"}, "stopId": "50029"}, {"stopSequence": 98, "arrival": {"time": "1694895912"}, "stopId": "50014"}, {"stopSequence": 99, "arrival": {"time": "1694895968"}, "stopId": "38204"}, {"stopSequence": 100, "arrival": {"time": "1694896120"}, "stopId": "50013"}, {"stopSequence": 101, "arrival": {"time": "1694896254"}, "stopId": "38127"}, {"stopSequence": 102, "arrival": {"time": "1694896314"}, "stopId": "38124"}, {"stopSequence": 103, "arrival": {"time": "1694896401"}, "stopId": "38194"}, {"stopSequence": 104, "arrival": {"time": "1694896407"}, "stopId": "50015"}, {"stopSequence": 105, "arrival": {"time": "1694897243"}, "stopId": "38149"}, {"stopSequence": 106, "arrival": {"time": "1694897541"}, "stopId": "14-Feb"}, {"stopSequence": 107, "arrival": {"time": "1694897608"}, "stopId": "50028"}], "vehicle": {"licensePlate": "DPZY91"}, "timestamp": "1694889007"}, "vehicle": {"trip": {"tripId": "20637-701ff27f-2", "startTime": "15:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "593", "directionId": 1}, "position": {"latitude": -36.79481, "longitude": -73.087135, "bearing": 89.0, "odometer": 0.0, "speed": 0.8333333}, "timestamp": "1694889007", "vehicle": {"licensePlate": "DPZY91"}}}, {"id": "48edab0e-af17-482f-9f65-0ce5f395cf08", "tripUpdate": {"trip": {"tripId": "20636-701ff27f-2", "startTime": "14:46:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "593", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 54, "arrival": {"time": "1694889022"}, "stopId": "35710"}, {"stopSequence": 55, "arrival": {"time": "1694889070"}, "stopId": "50036"}, {"stopSequence": 56, "arrival": {"time": "1694889309"}, "stopId": "50037"}, {"stopSequence": 57, "arrival": {"time": "1694889454"}, "stopId": "50038"}, {"stopSequence": 58, "arrival": {"time": "1694889531"}, "stopId": "50039"}, {"stopSequence": 59, "arrival": {"time": "1694889589"}, "stopId": "50040"}, {"stopSequence": 60, "arrival": {"time": "1694889673"}, "stopId": "50041"}, {"stopSequence": 61, "arrival": {"time": "1694889808"}, "stopId": "Jun-15"}, {"stopSequence": 62, "arrival": {"time": "1694889905"}, "stopId": "Jun-13"}, {"stopSequence": 63, "arrival": {"time": "1694890093"}, "stopId": "6-Oct"}, {"stopSequence": 64, "arrival": {"time": "1694890148"}, "stopId": "6-Aug"}, {"stopSequence": 65, "arrival": {"time": "1694890302"}, "stopId": "6-Jun"}, {"stopSequence": 66, "arrival": {"time": "1694890423"}, "stopId": "6-Feb"}, {"stopSequence": 67, "arrival": {"time": "1694890559"}, "stopId": "7-Jul"}, {"stopSequence": 68, "arrival": {"time": "1694890624"}, "stopId": "7-May"}, {"stopSequence": 69, "arrival": {"time": "1694890660"}, "stopId": "1508142"}, {"stopSequence": 70, "arrival": {"time": "1694890765"}, "stopId": "7-Feb"}, {"stopSequence": 71, "arrival": {"time": "1694890827"}, "stopId": "8-Jan"}, {"stopSequence": 72, "arrival": {"time": "1694890859"}, "stopId": "9-Jan"}, {"stopSequence": 73, "arrival": {"time": "1694890901"}, "stopId": "10-Apr"}, {"stopSequence": 74, "arrival": {"time": "1694890962"}, "stopId": "10-Jan"}, {"stopSequence": 75, "arrival": {"time": "1694891006"}, "stopId": "44863"}, {"stopSequence": 76, "arrival": {"time": "1694891039"}, "stopId": "10-Mar"}, {"stopSequence": 77, "arrival": {"time": "1694891099"}, "stopId": "11-Jan"}, {"stopSequence": 78, "arrival": {"time": "1694891154"}, "stopId": "44866"}, {"stopSequence": 79, "arrival": {"time": "1694891196"}, "stopId": "44867"}, {"stopSequence": 80, "arrival": {"time": "1694891225"}, "stopId": "44868"}, {"stopSequence": 81, "arrival": {"time": "1694891255"}, "stopId": "44869"}, {"stopSequence": 82, "arrival": {"time": "1694891291"}, "stopId": "44870"}, {"stopSequence": 83, "arrival": {"time": "1694891318"}, "stopId": "44871"}, {"stopSequence": 84, "arrival": {"time": "1694891371"}, "stopId": "44872"}, {"stopSequence": 85, "arrival": {"time": "1694891439"}, "stopId": "50020"}, {"stopSequence": 86, "arrival": {"time": "1694891546"}, "stopId": "14-11"}, {"stopSequence": 87, "arrival": {"time": "1694891592"}, "stopId": "91162"}, {"stopSequence": 88, "arrival": {"time": "1694891689"}, "stopId": "50023"}, {"stopSequence": 89, "arrival": {"time": "1694891811"}, "stopId": "14-Jul"}, {"stopSequence": 90, "arrival": {"time": "1694891858"}, "stopId": "14-Apr"}, {"stopSequence": 91, "arrival": {"time": "1694891918"}, "stopId": "37474"}, {"stopSequence": 92, "arrival": {"time": "1694891981"}, "stopId": "44879"}, {"stopSequence": 93, "arrival": {"time": "1694892011"}, "stopId": "44880"}, {"stopSequence": 94, "arrival": {"time": "1694892052"}, "stopId": "44881"}, {"stopSequence": 95, "arrival": {"time": "1694892158"}, "stopId": "38151"}, {"stopSequence": 96, "arrival": {"time": "1694892362"}, "stopId": "15-13"}, {"stopSequence": 97, "arrival": {"time": "1694892480"}, "stopId": "50029"}, {"stopSequence": 98, "arrival": {"time": "1694892498"}, "stopId": "50014"}, {"stopSequence": 99, "arrival": {"time": "1694892522"}, "stopId": "38204"}, {"stopSequence": 100, "arrival": {"time": "1694892585"}, "stopId": "50013"}, {"stopSequence": 101, "arrival": {"time": "1694892640"}, "stopId": "38127"}, {"stopSequence": 102, "arrival": {"time": "1694892664"}, "stopId": "38124"}, {"stopSequence": 103, "arrival": {"time": "1694892699"}, "stopId": "38194"}, {"stopSequence": 104, "arrival": {"time": "1694892702"}, "stopId": "50015"}, {"stopSequence": 105, "arrival": {"time": "1694893022"}, "stopId": "38149"}, {"stopSequence": 106, "arrival": {"time": "1694893130"}, "stopId": "14-Feb"}, {"stopSequence": 107, "arrival": {"time": "1694893153"}, "stopId": "50028"}], "vehicle": {"licensePlate": "DRZG30"}, "timestamp": "1694889017"}, "vehicle": {"trip": {"tripId": "20636-701ff27f-2", "startTime": "14:46:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "593", "directionId": 1}, "position": {"latitude": -36.815224, "longitude": -73.031296, "bearing": 34.0, "odometer": 0.0, "speed": 2.5}, "timestamp": "1694889017", "vehicle": {"licensePlate": "DRZG30"}}}, {"id": "b7b5d1df-3f78-4512-85e0-348cd64e859c", "tripUpdate": {"trip": {"tripId": "20634-701ff27f-2", "startTime": "14:16:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "593", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 93, "arrival": {"time": "1694889034"}, "stopId": "44880"}, {"stopSequence": 94, "arrival": {"time": "1694889067"}, "stopId": "44881"}, {"stopSequence": 95, "arrival": {"time": "1694889150"}, "stopId": "38151"}, {"stopSequence": 96, "arrival": {"time": "1694889300"}, "stopId": "15-13"}, {"stopSequence": 97, "arrival": {"time": "1694889382"}, "stopId": "50029"}, {"stopSequence": 98, "arrival": {"time": "1694889394"}, "stopId": "50014"}, {"stopSequence": 99, "arrival": {"time": "1694889410"}, "stopId": "38204"}, {"stopSequence": 100, "arrival": {"time": "1694889452"}, "stopId": "50013"}, {"stopSequence": 101, "arrival": {"time": "1694889487"}, "stopId": "38127"}, {"stopSequence": 102, "arrival": {"time": "1694889503"}, "stopId": "38124"}, {"stopSequence": 103, "arrival": {"time": "1694889525"}, "stopId": "38194"}, {"stopSequence": 104, "arrival": {"time": "1694889527"}, "stopId": "50015"}, {"stopSequence": 105, "arrival": {"time": "1694889718"}, "stopId": "38149"}, {"stopSequence": 106, "arrival": {"time": "1694889778"}, "stopId": "14-Feb"}, {"stopSequence": 107, "arrival": {"time": "1694889791"}, "stopId": "50028"}], "vehicle": {"licensePlate": "HYYX85"}, "timestamp": "1694889032"}, "vehicle": {"trip": {"tripId": "20634-701ff27f-2", "startTime": "14:16:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "593", "directionId": 1}, "position": {"latitude": -36.712463, "longitude": -72.97704, "bearing": 24.0, "odometer": 0.0, "speed": 2.2222223}, "timestamp": "1694889032", "vehicle": {"licensePlate": "HYYX85"}}}, {"id": "c43608cf-7ce7-4147-9393-2984279ffb04", "tripUpdate": {"trip": {"tripId": "20712-701ff27f-2", "startTime": "14:45:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "593", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 63, "arrival": {"time": "1694889315"}, "stopId": "49325"}, {"stopSequence": 64, "arrival": {"time": "1694889379"}, "stopId": "49326"}, {"stopSequence": 65, "arrival": {"time": "1694889406"}, "stopId": "39648"}, {"stopSequence": 66, "arrival": {"time": "1694889454"}, "stopId": "39649"}, {"stopSequence": 67, "arrival": {"time": "1694889494"}, "stopId": "45112"}, {"stopSequence": 68, "arrival": {"time": "1694889538"}, "stopId": "45113"}, {"stopSequence": 69, "arrival": {"time": "1694889617"}, "stopId": "37490"}, {"stopSequence": 70, "arrival": {"time": "1694889670"}, "stopId": "45115"}, {"stopSequence": 71, "arrival": {"time": "1694889694"}, "stopId": "45116"}, {"stopSequence": 72, "arrival": {"time": "1694889764"}, "stopId": "45118"}, {"stopSequence": 73, "arrival": {"time": "1694889837"}, "stopId": "45119"}, {"stopSequence": 74, "arrival": {"time": "1694889880"}, "stopId": "45120"}, {"stopSequence": 75, "arrival": {"time": "1694889933"}, "stopId": "45121"}, {"stopSequence": 76, "arrival": {"time": "1694889974"}, "stopId": "38535"}, {"stopSequence": 77, "arrival": {"time": "1694890048"}, "stopId": "38536"}, {"stopSequence": 78, "arrival": {"time": "1694890083"}, "stopId": "4838437"}, {"stopSequence": 79, "arrival": {"time": "1694890136"}, "stopId": "45085"}, {"stopSequence": 80, "arrival": {"time": "1694890213"}, "stopId": "45086"}, {"stopSequence": 81, "arrival": {"time": "1694890308"}, "stopId": "45087"}, {"stopSequence": 82, "arrival": {"time": "1694890377"}, "stopId": "45089"}, {"stopSequence": 83, "arrival": {"time": "1694890443"}, "stopId": "45090"}, {"stopSequence": 84, "arrival": {"time": "1694890478"}, "stopId": "45091"}, {"stopSequence": 85, "arrival": {"time": "1694890507"}, "stopId": "45092"}, {"stopSequence": 86, "arrival": {"time": "1694890550"}, "stopId": "45093"}, {"stopSequence": 87, "arrival": {"time": "1694890624"}, "stopId": "45095"}, {"stopSequence": 88, "arrival": {"time": "1694890668"}, "stopId": "45096"}, {"stopSequence": 89, "arrival": {"time": "1694890716"}, "stopId": "45097"}, {"stopSequence": 90, "arrival": {"time": "1694890749"}, "stopId": "45098"}, {"stopSequence": 91, "arrival": {"time": "1694890777"}, "stopId": "45099"}, {"stopSequence": 92, "arrival": {"time": "1694890797"}, "stopId": "45100"}, {"stopSequence": 93, "arrival": {"time": "1694890829"}, "stopId": "45101"}, {"stopSequence": 94, "arrival": {"time": "1694890862"}, "stopId": "45102"}, {"stopSequence": 95, "arrival": {"time": "1694890889"}, "stopId": "45103"}, {"stopSequence": 96, "arrival": {"time": "1694890914"}, "stopId": "45104"}, {"stopSequence": 97, "arrival": {"time": "1694890931"}, "stopId": "45122"}, {"stopSequence": 98, "arrival": {"time": "1694890997"}, "stopId": "38630"}], "vehicle": {"licensePlate": "JRZZ67"}, "timestamp": "1694889036"}, "vehicle": {"trip": {"tripId": "20712-701ff27f-2", "startTime": "14:45:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "593", "directionId": 0}, "position": {"latitude": -36.80806, "longitude": -73.077805, "bearing": 316.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889036", "vehicle": {"licensePlate": "JRZZ67"}}}, {"id": "0d96f58a-e591-4be6-93f9-39cd5b283831", "tripUpdate": {"trip": {"tripId": "20713-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "593", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 48, "arrival": {"time": "1694889035"}, "stopId": "37506"}, {"stopSequence": 49, "arrival": {"time": "1694889114"}, "stopId": "45069"}, {"stopSequence": 50, "arrival": {"time": "1694889232"}, "stopId": "37523"}, {"stopSequence": 51, "arrival": {"time": "1694889273"}, "stopId": "37477"}, {"stopSequence": 52, "arrival": {"time": "1694889362"}, "stopId": "49310"}, {"stopSequence": 53, "arrival": {"time": "1694889394"}, "stopId": "49311"}, {"stopSequence": 54, "arrival": {"time": "1694889450"}, "stopId": "39634"}, {"stopSequence": 55, "arrival": {"time": "1694889476"}, "stopId": "39635"}, {"stopSequence": 56, "arrival": {"time": "1694889522"}, "stopId": "39636"}, {"stopSequence": 57, "arrival": {"time": "1694889575"}, "stopId": "49503"}, {"stopSequence": 58, "arrival": {"time": "1694889699"}, "stopId": "39637"}, {"stopSequence": 59, "arrival": {"time": "1694889748"}, "stopId": "49317"}, {"stopSequence": 60, "arrival": {"time": "1694889779"}, "stopId": "49318"}, {"stopSequence": 61, "arrival": {"time": "1694889843"}, "stopId": "49319"}, {"stopSequence": 62, "arrival": {"time": "1694889905"}, "stopId": "39641"}, {"stopSequence": 63, "arrival": {"time": "1694890210"}, "stopId": "49325"}, {"stopSequence": 64, "arrival": {"time": "1694890272"}, "stopId": "49326"}, {"stopSequence": 65, "arrival": {"time": "1694890297"}, "stopId": "39648"}, {"stopSequence": 66, "arrival": {"time": "1694890344"}, "stopId": "39649"}, {"stopSequence": 67, "arrival": {"time": "1694890383"}, "stopId": "45112"}, {"stopSequence": 68, "arrival": {"time": "1694890426"}, "stopId": "45113"}, {"stopSequence": 69, "arrival": {"time": "1694890505"}, "stopId": "37490"}, {"stopSequence": 70, "arrival": {"time": "1694890559"}, "stopId": "45115"}, {"stopSequence": 71, "arrival": {"time": "1694890584"}, "stopId": "45116"}, {"stopSequence": 72, "arrival": {"time": "1694890655"}, "stopId": "45118"}, {"stopSequence": 73, "arrival": {"time": "1694890730"}, "stopId": "45119"}, {"stopSequence": 74, "arrival": {"time": "1694890776"}, "stopId": "45120"}, {"stopSequence": 75, "arrival": {"time": "1694890833"}, "stopId": "45121"}, {"stopSequence": 76, "arrival": {"time": "1694890876"}, "stopId": "38535"}, {"stopSequence": 77, "arrival": {"time": "1694890956"}, "stopId": "38536"}, {"stopSequence": 78, "arrival": {"time": "1694890994"}, "stopId": "4838437"}, {"stopSequence": 79, "arrival": {"time": "1694891053"}, "stopId": "45085"}, {"stopSequence": 80, "arrival": {"time": "1694891138"}, "stopId": "45086"}, {"stopSequence": 81, "arrival": {"time": "1694891245"}, "stopId": "45087"}, {"stopSequence": 82, "arrival": {"time": "1694891325"}, "stopId": "45089"}, {"stopSequence": 83, "arrival": {"time": "1694891401"}, "stopId": "45090"}, {"stopSequence": 84, "arrival": {"time": "1694891443"}, "stopId": "45091"}, {"stopSequence": 85, "arrival": {"time": "1694891477"}, "stopId": "45092"}, {"stopSequence": 86, "arrival": {"time": "1694891527"}, "stopId": "45093"}, {"stopSequence": 87, "arrival": {"time": "1694891616"}, "stopId": "45095"}, {"stopSequence": 88, "arrival": {"time": "1694891668"}, "stopId": "45096"}, {"stopSequence": 89, "arrival": {"time": "1694891727"}, "stopId": "45097"}, {"stopSequence": 90, "arrival": {"time": "1694891767"}, "stopId": "45098"}, {"stopSequence": 91, "arrival": {"time": "1694891802"}, "stopId": "45099"}, {"stopSequence": 92, "arrival": {"time": "1694891828"}, "stopId": "45100"}, {"stopSequence": 93, "arrival": {"time": "1694891866"}, "stopId": "45101"}, {"stopSequence": 94, "arrival": {"time": "1694891908"}, "stopId": "45102"}, {"stopSequence": 95, "arrival": {"time": "1694891942"}, "stopId": "45103"}, {"stopSequence": 96, "arrival": {"time": "1694891974"}, "stopId": "45104"}, {"stopSequence": 97, "arrival": {"time": "1694891995"}, "stopId": "45122"}, {"stopSequence": 98, "arrival": {"time": "1694892078"}, "stopId": "38630"}], "vehicle": {"licensePlate": "LCTG72"}, "timestamp": "1694889004"}, "vehicle": {"trip": {"tripId": "20713-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "593", "directionId": 0}, "position": {"latitude": -36.82443, "longitude": -73.042336, "bearing": 247.0, "odometer": 0.0, "speed": 10.0}, "timestamp": "1694889004", "vehicle": {"licensePlate": "LCTG72"}}}, {"id": "c9a132b5-ae8c-45df-b9dd-3661f86af0ea", "tripUpdate": {"trip": {"tripId": "20635-701ff27f-2", "startTime": "14:31:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "593", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 79, "arrival": {"time": "1694889071"}, "stopId": "44867"}, {"stopSequence": 80, "arrival": {"time": "1694889099"}, "stopId": "44868"}, {"stopSequence": 81, "arrival": {"time": "1694889127"}, "stopId": "44869"}, {"stopSequence": 82, "arrival": {"time": "1694889161"}, "stopId": "44870"}, {"stopSequence": 83, "arrival": {"time": "1694889187"}, "stopId": "44871"}, {"stopSequence": 84, "arrival": {"time": "1694889236"}, "stopId": "44872"}, {"stopSequence": 85, "arrival": {"time": "1694889296"}, "stopId": "50020"}, {"stopSequence": 86, "arrival": {"time": "1694889390"}, "stopId": "14-11"}, {"stopSequence": 87, "arrival": {"time": "1694889429"}, "stopId": "91162"}, {"stopSequence": 88, "arrival": {"time": "1694889509"}, "stopId": "50023"}, {"stopSequence": 89, "arrival": {"time": "1694889608"}, "stopId": "14-Jul"}, {"stopSequence": 90, "arrival": {"time": "1694889644"}, "stopId": "14-Apr"}, {"stopSequence": 91, "arrival": {"time": "1694889690"}, "stopId": "37474"}, {"stopSequence": 92, "arrival": {"time": "1694889737"}, "stopId": "44879"}, {"stopSequence": 93, "arrival": {"time": "1694889760"}, "stopId": "44880"}, {"stopSequence": 94, "arrival": {"time": "1694889790"}, "stopId": "44881"}, {"stopSequence": 95, "arrival": {"time": "1694889866"}, "stopId": "38151"}, {"stopSequence": 96, "arrival": {"time": "1694890006"}, "stopId": "15-13"}, {"stopSequence": 97, "arrival": {"time": "1694890084"}, "stopId": "50029"}, {"stopSequence": 98, "arrival": {"time": "1694890096"}, "stopId": "50014"}, {"stopSequence": 99, "arrival": {"time": "1694890111"}, "stopId": "38204"}, {"stopSequence": 100, "arrival": {"time": "1694890151"}, "stopId": "50013"}, {"stopSequence": 101, "arrival": {"time": "1694890185"}, "stopId": "38127"}, {"stopSequence": 102, "arrival": {"time": "1694890200"}, "stopId": "38124"}, {"stopSequence": 103, "arrival": {"time": "1694890222"}, "stopId": "38194"}, {"stopSequence": 104, "arrival": {"time": "1694890223"}, "stopId": "50015"}, {"stopSequence": 105, "arrival": {"time": "1694890412"}, "stopId": "38149"}, {"stopSequence": 106, "arrival": {"time": "1694890473"}, "stopId": "14-Feb"}, {"stopSequence": 107, "arrival": {"time": "1694890486"}, "stopId": "50028"}], "vehicle": {"licensePlate": "LRCH28"}, "timestamp": "1694889034"}, "vehicle": {"trip": {"tripId": "20635-701ff27f-2", "startTime": "14:31:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "593", "directionId": 1}, "position": {"latitude": -36.733704, "longitude": -72.98796, "bearing": 340.0, "odometer": 0.0, "speed": 3.3333333}, "timestamp": "1694889034", "vehicle": {"licensePlate": "LRCH28"}}}, {"id": "88fd7614-ba09-4f95-a379-1f5ae36989fb", "tripUpdate": {"trip": {"tripId": "20711-701ff27f-2", "startTime": "14:30:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "593", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 83, "arrival": {"time": "1694888999"}, "stopId": "45090"}, {"stopSequence": 84, "arrival": {"time": "1694889038"}, "stopId": "45091"}, {"stopSequence": 85, "arrival": {"time": "1694889069"}, "stopId": "45092"}, {"stopSequence": 86, "arrival": {"time": "1694889114"}, "stopId": "45093"}, {"stopSequence": 87, "arrival": {"time": "1694889191"}, "stopId": "45095"}, {"stopSequence": 88, "arrival": {"time": "1694889236"}, "stopId": "45096"}, {"stopSequence": 89, "arrival": {"time": "1694889285"}, "stopId": "45097"}, {"stopSequence": 90, "arrival": {"time": "1694889318"}, "stopId": "45098"}, {"stopSequence": 91, "arrival": {"time": "1694889346"}, "stopId": "45099"}, {"stopSequence": 92, "arrival": {"time": "1694889366"}, "stopId": "45100"}, {"stopSequence": 93, "arrival": {"time": "1694889397"}, "stopId": "45101"}, {"stopSequence": 94, "arrival": {"time": "1694889430"}, "stopId": "45102"}, {"stopSequence": 95, "arrival": {"time": "1694889456"}, "stopId": "45103"}, {"stopSequence": 96, "arrival": {"time": "1694889480"}, "stopId": "45104"}, {"stopSequence": 97, "arrival": {"time": "1694889496"}, "stopId": "45122"}, {"stopSequence": 98, "arrival": {"time": "1694889558"}, "stopId": "38630"}], "vehicle": {"licensePlate": "LTHP32"}, "timestamp": "1694888974"}, "vehicle": {"trip": {"tripId": "20711-701ff27f-2", "startTime": "14:30:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "593", "directionId": 0}, "position": {"latitude": -36.750595, "longitude": -73.09539, "bearing": 336.0, "odometer": 0.0, "speed": 9.722222}, "timestamp": "1694888974", "vehicle": {"licensePlate": "LTHP32"}}}, {"id": "85a1b8cd-f2c1-4943-98b1-b99b56388a94", "tripUpdate": {"trip": {"tripId": "20834-701ff27f-2", "startTime": "14:20:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "594", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 60, "arrival": {"time": "1694889085"}, "stopId": "38611"}, {"stopSequence": 61, "arrival": {"time": "1694889125"}, "stopId": "38612"}, {"stopSequence": 62, "arrival": {"time": "1694889127"}, "stopId": "45088"}, {"stopSequence": 63, "arrival": {"time": "1694889180"}, "stopId": "45089"}, {"stopSequence": 64, "arrival": {"time": "1694889250"}, "stopId": "45090"}, {"stopSequence": 65, "arrival": {"time": "1694889281"}, "stopId": "45091"}, {"stopSequence": 66, "arrival": {"time": "1694889318"}, "stopId": "45092"}, {"stopSequence": 67, "arrival": {"time": "1694889363"}, "stopId": "45093"}, {"stopSequence": 68, "arrival": {"time": "1694889448"}, "stopId": "45095"}, {"stopSequence": 69, "arrival": {"time": "1694889489"}, "stopId": "45096"}, {"stopSequence": 70, "arrival": {"time": "1694889575"}, "stopId": "38622"}, {"stopSequence": 71, "arrival": {"time": "1694889892"}, "stopId": "45102"}, {"stopSequence": 72, "arrival": {"time": "1694889917"}, "stopId": "45103"}, {"stopSequence": 73, "arrival": {"time": "1694889940"}, "stopId": "45104"}, {"stopSequence": 74, "arrival": {"time": "1694889965"}, "stopId": "45122"}, {"stopSequence": 75, "arrival": {"time": "1694890017"}, "stopId": "38630"}, {"stopSequence": 76, "arrival": {"time": "1694890112"}, "stopId": "42365"}, {"stopSequence": 77, "arrival": {"time": "1694890229"}, "stopId": "49349"}, {"stopSequence": 78, "arrival": {"time": "1694890352"}, "stopId": "49350"}, {"stopSequence": 79, "arrival": {"time": "1694890398"}, "stopId": "49351"}, {"stopSequence": 80, "arrival": {"time": "1694890432"}, "stopId": "49352"}, {"stopSequence": 81, "arrival": {"time": "1694890464"}, "stopId": "49353"}, {"stopSequence": 82, "arrival": {"time": "1694890599"}, "stopId": "38567"}, {"stopSequence": 83, "arrival": {"time": "1694890674"}, "stopId": "38569"}, {"stopSequence": 84, "arrival": {"time": "1694890716"}, "stopId": "38570"}, {"stopSequence": 85, "arrival": {"time": "1694890773"}, "stopId": "38571"}], "vehicle": {"licensePlate": "BTXF73"}, "timestamp": "1694889037"}, "vehicle": {"trip": {"tripId": "20834-701ff27f-2", "startTime": "14:20:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "594", "directionId": 1}, "position": {"latitude": -36.758106, "longitude": -73.09518, "bearing": 19.0, "odometer": 0.0, "speed": 11.944445}, "timestamp": "1694889037", "vehicle": {"licensePlate": "BTXF73"}}}, {"id": "0f61fd8c-595a-4fda-b308-0ccb386573f5", "tripUpdate": {"trip": {"tripId": "20836-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "594", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 26, "arrival": {"time": "1694889092"}, "stopId": "39637"}, {"stopSequence": 27, "arrival": {"time": "1694889144"}, "stopId": "49317"}, {"stopSequence": 28, "arrival": {"time": "1694889177"}, "stopId": "49318"}, {"stopSequence": 29, "arrival": {"time": "1694889246"}, "stopId": "49319"}, {"stopSequence": 30, "arrival": {"time": "1694889311"}, "stopId": "39641"}, {"stopSequence": 31, "arrival": {"time": "1694889347"}, "stopId": "39642"}, {"stopSequence": 32, "arrival": {"time": "1694889585"}, "stopId": "49324"}, {"stopSequence": 33, "arrival": {"time": "1694889626"}, "stopId": "49325"}, {"stopSequence": 34, "arrival": {"time": "1694889688"}, "stopId": "49326"}, {"stopSequence": 35, "arrival": {"time": "1694889713"}, "stopId": "39648"}, {"stopSequence": 36, "arrival": {"time": "1694889760"}, "stopId": "39649"}, {"stopSequence": 37, "arrival": {"time": "1694889791"}, "stopId": "45112"}, {"stopSequence": 38, "arrival": {"time": "1694889841"}, "stopId": "45113"}, {"stopSequence": 39, "arrival": {"time": "1694889919"}, "stopId": "37490"}, {"stopSequence": 40, "arrival": {"time": "1694889973"}, "stopId": "45115"}, {"stopSequence": 41, "arrival": {"time": "1694889997"}, "stopId": "45116"}, {"stopSequence": 42, "arrival": {"time": "1694890065"}, "stopId": "45118"}, {"stopSequence": 43, "arrival": {"time": "1694890138"}, "stopId": "45119"}, {"stopSequence": 44, "arrival": {"time": "1694890181"}, "stopId": "45120"}, {"stopSequence": 45, "arrival": {"time": "1694890235"}, "stopId": "45121"}, {"stopSequence": 46, "arrival": {"time": "1694890275"}, "stopId": "38535"}, {"stopSequence": 47, "arrival": {"time": "1694890350"}, "stopId": "38536"}, {"stopSequence": 48, "arrival": {"time": "1694890378"}, "stopId": "4838437"}, {"stopSequence": 49, "arrival": {"time": "1694890574"}, "stopId": "39397"}, {"stopSequence": 50, "arrival": {"time": "1694890598"}, "stopId": "39398"}, {"stopSequence": 51, "arrival": {"time": "1694890672"}, "stopId": "38601"}, {"stopSequence": 52, "arrival": {"time": "1694890742"}, "stopId": "38603"}, {"stopSequence": 53, "arrival": {"time": "1694890770"}, "stopId": "38607"}, {"stopSequence": 54, "arrival": {"time": "1694890824"}, "stopId": "39403"}, {"stopSequence": 55, "arrival": {"time": "1694890863"}, "stopId": "44799"}, {"stopSequence": 56, "arrival": {"time": "1694890900"}, "stopId": "44800"}, {"stopSequence": 57, "arrival": {"time": "1694890926"}, "stopId": "38608"}, {"stopSequence": 58, "arrival": {"time": "1694890995"}, "stopId": "38609"}, {"stopSequence": 59, "arrival": {"time": "1694891060"}, "stopId": "38610"}, {"stopSequence": 60, "arrival": {"time": "1694891112"}, "stopId": "38611"}, {"stopSequence": 61, "arrival": {"time": "1694891153"}, "stopId": "38612"}, {"stopSequence": 62, "arrival": {"time": "1694891156"}, "stopId": "45088"}, {"stopSequence": 63, "arrival": {"time": "1694891211"}, "stopId": "45089"}, {"stopSequence": 64, "arrival": {"time": "1694891287"}, "stopId": "45090"}, {"stopSequence": 65, "arrival": {"time": "1694891320"}, "stopId": "45091"}, {"stopSequence": 66, "arrival": {"time": "1694891362"}, "stopId": "45092"}, {"stopSequence": 67, "arrival": {"time": "1694891412"}, "stopId": "45093"}, {"stopSequence": 68, "arrival": {"time": "1694891511"}, "stopId": "45095"}, {"stopSequence": 69, "arrival": {"time": "1694891559"}, "stopId": "45096"}, {"stopSequence": 70, "arrival": {"time": "1694891664"}, "stopId": "38622"}, {"stopSequence": 71, "arrival": {"time": "1694892081"}, "stopId": "45102"}, {"stopSequence": 72, "arrival": {"time": "1694892117"}, "stopId": "45103"}, {"stopSequence": 73, "arrival": {"time": "1694892150"}, "stopId": "45104"}, {"stopSequence": 74, "arrival": {"time": "1694892186"}, "stopId": "45122"}, {"stopSequence": 75, "arrival": {"time": "1694892261"}, "stopId": "38630"}, {"stopSequence": 76, "arrival": {"time": "1694892403"}, "stopId": "42365"}, {"stopSequence": 77, "arrival": {"time": "1694892587"}, "stopId": "49349"}, {"stopSequence": 78, "arrival": {"time": "1694892789"}, "stopId": "49350"}, {"stopSequence": 79, "arrival": {"time": "1694892868"}, "stopId": "49351"}, {"stopSequence": 80, "arrival": {"time": "1694892925"}, "stopId": "49352"}, {"stopSequence": 81, "arrival": {"time": "1694892980"}, "stopId": "49353"}, {"stopSequence": 82, "arrival": {"time": "1694893225"}, "stopId": "38567"}, {"stopSequence": 83, "arrival": {"time": "1694893365"}, "stopId": "38569"}, {"stopSequence": 84, "arrival": {"time": "1694893447"}, "stopId": "38570"}, {"stopSequence": 85, "arrival": {"time": "1694893558"}, "stopId": "38571"}], "vehicle": {"licensePlate": "BZPT67"}, "timestamp": "1694888974"}, "vehicle": {"trip": {"tripId": "20836-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "594", "directionId": 1}, "position": {"latitude": -36.82053, "longitude": -73.065025, "bearing": 324.0, "odometer": 0.0, "speed": 15.833333}, "timestamp": "1694888974", "vehicle": {"licensePlate": "BZPT67"}}}, {"id": "a6a10381-4a67-4958-913f-e9b6529b50b6", "tripUpdate": {"trip": {"tripId": "20778-701ff27f-2", "startTime": "14:41:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "594", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 63, "arrival": {"time": "1694889026"}, "stopId": "35800"}, {"stopSequence": 64, "arrival": {"time": "1694889079"}, "stopId": "35801"}, {"stopSequence": 65, "arrival": {"time": "1694889106"}, "stopId": "35802"}, {"stopSequence": 66, "arrival": {"time": "1694889156"}, "stopId": "35803"}, {"stopSequence": 67, "arrival": {"time": "1694889214"}, "stopId": "38507"}, {"stopSequence": 68, "arrival": {"time": "1694889267"}, "stopId": "34473"}, {"stopSequence": 69, "arrival": {"time": "1694889312"}, "stopId": "38500"}, {"stopSequence": 70, "arrival": {"time": "1694889358"}, "stopId": "35808"}, {"stopSequence": 71, "arrival": {"time": "1694889417"}, "stopId": "35710"}, {"stopSequence": 72, "arrival": {"time": "1694889462"}, "stopId": "50036"}, {"stopSequence": 73, "arrival": {"time": "1694889690"}, "stopId": "50037"}, {"stopSequence": 74, "arrival": {"time": "1694889830"}, "stopId": "50038"}, {"stopSequence": 75, "arrival": {"time": "1694889904"}, "stopId": "50039"}, {"stopSequence": 76, "arrival": {"time": "1694889959"}, "stopId": "50040"}, {"stopSequence": 77, "arrival": {"time": "1694890047"}, "stopId": "50041"}, {"stopSequence": 78, "arrival": {"time": "1694890181"}, "stopId": "1566333"}, {"stopSequence": 79, "arrival": {"time": "1694890286"}, "stopId": "39334"}], "vehicle": {"licensePlate": "FGPH70"}, "timestamp": "1694889016"}, "vehicle": {"trip": {"tripId": "20778-701ff27f-2", "startTime": "14:41:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "594", "directionId": 0}, "position": {"latitude": -36.822628, "longitude": -73.050095, "bearing": 62.0, "odometer": 0.0, "speed": 6.6666665}, "timestamp": "1694889016", "vehicle": {"licensePlate": "FGPH70"}}}, {"id": "af6d5477-c81b-49af-a1d2-0dbf50861a0c", "tripUpdate": {"trip": {"tripId": "20837-701ff27f-2", "startTime": "15:20:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "594", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 3, "arrival": {"time": "1694889020"}, "stopId": "Jun-17"}, {"stopSequence": 4, "arrival": {"time": "1694889105"}, "stopId": "Jun-19"}, {"stopSequence": 5, "arrival": {"time": "1694889168"}, "stopId": "Jun-20"}, {"stopSequence": 6, "arrival": {"time": "1694889232"}, "stopId": "Jun-22"}, {"stopSequence": 7, "arrival": {"time": "1694889298"}, "stopId": "Jun-24"}, {"stopSequence": 8, "arrival": {"time": "1694889389"}, "stopId": "Jun-25"}, {"stopSequence": 9, "arrival": {"time": "1694889675"}, "stopId": "90003"}, {"stopSequence": 10, "arrival": {"time": "1694889720"}, "stopId": "90007"}, {"stopSequence": 11, "arrival": {"time": "1694889769"}, "stopId": "90008"}, {"stopSequence": 12, "arrival": {"time": "1694889877"}, "stopId": "39599"}, {"stopSequence": 13, "arrival": {"time": "1694889899"}, "stopId": "39600"}, {"stopSequence": 14, "arrival": {"time": "1694889964"}, "stopId": "37496"}, {"stopSequence": 15, "arrival": {"time": "1694890012"}, "stopId": "45064"}, {"stopSequence": 16, "arrival": {"time": "1694890083"}, "stopId": "37506"}, {"stopSequence": 17, "arrival": {"time": "1694890156"}, "stopId": "45069"}, {"stopSequence": 18, "arrival": {"time": "1694890265"}, "stopId": "37523"}, {"stopSequence": 19, "arrival": {"time": "1694890304"}, "stopId": "37477"}, {"stopSequence": 20, "arrival": {"time": "1694890390"}, "stopId": "49310"}, {"stopSequence": 21, "arrival": {"time": "1694890421"}, "stopId": "49311"}, {"stopSequence": 22, "arrival": {"time": "1694890476"}, "stopId": "39634"}, {"stopSequence": 23, "arrival": {"time": "1694890501"}, "stopId": "39635"}, {"stopSequence": 24, "arrival": {"time": "1694890547"}, "stopId": "39636"}, {"stopSequence": 25, "arrival": {"time": "1694890600"}, "stopId": "49503"}, {"stopSequence": 26, "arrival": {"time": "1694890729"}, "stopId": "39637"}, {"stopSequence": 27, "arrival": {"time": "1694890779"}, "stopId": "49317"}, {"stopSequence": 28, "arrival": {"time": "1694890812"}, "stopId": "49318"}, {"stopSequence": 29, "arrival": {"time": "1694890880"}, "stopId": "49319"}, {"stopSequence": 30, "arrival": {"time": "1694890948"}, "stopId": "39641"}, {"stopSequence": 31, "arrival": {"time": "1694890985"}, "stopId": "39642"}, {"stopSequence": 32, "arrival": {"time": "1694891243"}, "stopId": "49324"}, {"stopSequence": 33, "arrival": {"time": "1694891290"}, "stopId": "49325"}, {"stopSequence": 34, "arrival": {"time": "1694891361"}, "stopId": "49326"}, {"stopSequence": 35, "arrival": {"time": "1694891391"}, "stopId": "39648"}, {"stopSequence": 36, "arrival": {"time": "1694891446"}, "stopId": "39649"}, {"stopSequence": 37, "arrival": {"time": "1694891483"}, "stopId": "45112"}, {"stopSequence": 38, "arrival": {"time": "1694891544"}, "stopId": "45113"}, {"stopSequence": 39, "arrival": {"time": "1694891640"}, "stopId": "37490"}, {"stopSequence": 40, "arrival": {"time": "1694891708"}, "stopId": "45115"}, {"stopSequence": 41, "arrival": {"time": "1694891738"}, "stopId": "45116"}, {"stopSequence": 42, "arrival": {"time": "1694891826"}, "stopId": "45118"}, {"stopSequence": 43, "arrival": {"time": "1694891922"}, "stopId": "45119"}, {"stopSequence": 44, "arrival": {"time": "1694891980"}, "stopId": "45120"}, {"stopSequence": 45, "arrival": {"time": "1694892053"}, "stopId": "45121"}, {"stopSequence": 46, "arrival": {"time": "1694892110"}, "stopId": "38535"}, {"stopSequence": 47, "arrival": {"time": "1694892215"}, "stopId": "38536"}, {"stopSequence": 48, "arrival": {"time": "1694892254"}, "stopId": "4838437"}, {"stopSequence": 49, "arrival": {"time": "1694892544"}, "stopId": "39397"}, {"stopSequence": 50, "arrival": {"time": "1694892581"}, "stopId": "39398"}, {"stopSequence": 51, "arrival": {"time": "1694892694"}, "stopId": "38601"}, {"stopSequence": 52, "arrival": {"time": "1694892805"}, "stopId": "38603"}, {"stopSequence": 53, "arrival": {"time": "1694892850"}, "stopId": "38607"}, {"stopSequence": 54, "arrival": {"time": "1694892937"}, "stopId": "39403"}, {"stopSequence": 55, "arrival": {"time": "1694893002"}, "stopId": "44799"}, {"stopSequence": 56, "arrival": {"time": "1694893063"}, "stopId": "44800"}, {"stopSequence": 57, "arrival": {"time": "1694893107"}, "stopId": "38608"}, {"stopSequence": 58, "arrival": {"time": "1694893224"}, "stopId": "38609"}, {"stopSequence": 59, "arrival": {"time": "1694893336"}, "stopId": "38610"}, {"stopSequence": 60, "arrival": {"time": "1694893429"}, "stopId": "38611"}, {"stopSequence": 61, "arrival": {"time": "1694893501"}, "stopId": "38612"}, {"stopSequence": 62, "arrival": {"time": "1694893507"}, "stopId": "45088"}, {"stopSequence": 63, "arrival": {"time": "1694893606"}, "stopId": "45089"}, {"stopSequence": 64, "arrival": {"time": "1694893746"}, "stopId": "45090"}, {"stopSequence": 65, "arrival": {"time": "1694893809"}, "stopId": "45091"}, {"stopSequence": 66, "arrival": {"time": "1694893887"}, "stopId": "45092"}, {"stopSequence": 67, "arrival": {"time": "1694893984"}, "stopId": "45093"}, {"stopSequence": 68, "arrival": {"time": "1694894176"}, "stopId": "45095"}, {"stopSequence": 69, "arrival": {"time": "1694894273"}, "stopId": "45096"}, {"stopSequence": 70, "arrival": {"time": "1694894487"}, "stopId": "38622"}, {"stopSequence": 71, "arrival": {"time": "1694895405"}, "stopId": "45102"}, {"stopSequence": 72, "arrival": {"time": "1694895488"}, "stopId": "45103"}, {"stopSequence": 73, "arrival": {"time": "1694895567"}, "stopId": "45104"}, {"stopSequence": 74, "arrival": {"time": "1694895652"}, "stopId": "45122"}, {"stopSequence": 75, "arrival": {"time": "1694895834"}, "stopId": "38630"}, {"stopSequence": 76, "arrival": {"time": "1694896191"}, "stopId": "42365"}, {"stopSequence": 77, "arrival": {"time": "1694896673"}, "stopId": "49349"}, {"stopSequence": 78, "arrival": {"time": "1694897234"}, "stopId": "49350"}, {"stopSequence": 79, "arrival": {"time": "1694897461"}, "stopId": "49351"}, {"stopSequence": 80, "arrival": {"time": "1694897630"}, "stopId": "49352"}, {"stopSequence": 81, "arrival": {"time": "1694897796"}, "stopId": "49353"}, {"stopSequence": 82, "arrival": {"time": "1694898564"}, "stopId": "38567"}, {"stopSequence": 83, "arrival": {"time": "1694899034"}, "stopId": "38569"}, {"stopSequence": 84, "arrival": {"time": "1694899315"}, "stopId": "38570"}, {"stopSequence": 85, "arrival": {"time": "1694899710"}, "stopId": "38571"}], "vehicle": {"licensePlate": "FGYP57"}, "timestamp": "1694889010"}, "vehicle": {"trip": {"tripId": "20837-701ff27f-2", "startTime": "15:20:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "594", "directionId": 1}, "position": {"latitude": -36.78752, "longitude": -73.02347, "bearing": 198.0, "odometer": 0.0, "speed": 8.333333}, "timestamp": "1694889010", "vehicle": {"licensePlate": "FGYP57"}}}, {"id": "1c3e5654-c8ac-4f28-8cd1-766651b9f45a", "tripUpdate": {"trip": {"tripId": "20780-701ff27f-2", "startTime": "15:21:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "594", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 14, "arrival": {"time": "1694889035"}, "stopId": "42252"}, {"stopSequence": 15, "arrival": {"time": "1694889067"}, "stopId": "42253"}, {"stopSequence": 16, "arrival": {"time": "1694889109"}, "stopId": "42254"}, {"stopSequence": 17, "arrival": {"time": "1694889156"}, "stopId": "42255"}, {"stopSequence": 18, "arrival": {"time": "1694889184"}, "stopId": "42256"}, {"stopSequence": 19, "arrival": {"time": "1694889204"}, "stopId": "42257"}, {"stopSequence": 20, "arrival": {"time": "1694889227"}, "stopId": "42258"}, {"stopSequence": 21, "arrival": {"time": "1694889255"}, "stopId": "42259"}, {"stopSequence": 22, "arrival": {"time": "1694889306"}, "stopId": "42260"}, {"stopSequence": 23, "arrival": {"time": "1694889345"}, "stopId": "42261"}, {"stopSequence": 24, "arrival": {"time": "1694889375"}, "stopId": "45094"}, {"stopSequence": 25, "arrival": {"time": "1694889431"}, "stopId": "42263"}, {"stopSequence": 26, "arrival": {"time": "1694889476"}, "stopId": "45092"}, {"stopSequence": 27, "arrival": {"time": "1694889513"}, "stopId": "42265"}, {"stopSequence": 28, "arrival": {"time": "1694889552"}, "stopId": "42266"}, {"stopSequence": 29, "arrival": {"time": "1694889606"}, "stopId": "42267"}, {"stopSequence": 30, "arrival": {"time": "1694889645"}, "stopId": "42268"}, {"stopSequence": 31, "arrival": {"time": "1694889676"}, "stopId": "42269"}, {"stopSequence": 32, "arrival": {"time": "1694889722"}, "stopId": "44895"}, {"stopSequence": 33, "arrival": {"time": "1694889777"}, "stopId": "42270"}, {"stopSequence": 34, "arrival": {"time": "1694889829"}, "stopId": "42271"}, {"stopSequence": 35, "arrival": {"time": "1694889891"}, "stopId": "4838438"}, {"stopSequence": 36, "arrival": {"time": "1694890035"}, "stopId": "44896"}, {"stopSequence": 37, "arrival": {"time": "1694890082"}, "stopId": "44897"}, {"stopSequence": 38, "arrival": {"time": "1694890154"}, "stopId": "44898"}, {"stopSequence": 39, "arrival": {"time": "1694890320"}, "stopId": "40993"}, {"stopSequence": 40, "arrival": {"time": "1694890563"}, "stopId": "16005188"}, {"stopSequence": 41, "arrival": {"time": "1694890812"}, "stopId": "40995"}, {"stopSequence": 42, "arrival": {"time": "1694890895"}, "stopId": "40996"}, {"stopSequence": 43, "arrival": {"time": "1694890977"}, "stopId": "40997"}, {"stopSequence": 44, "arrival": {"time": "1694891039"}, "stopId": "39614"}, {"stopSequence": 45, "arrival": {"time": "1694891090"}, "stopId": "39615"}, {"stopSequence": 46, "arrival": {"time": "1694891143"}, "stopId": "39616"}, {"stopSequence": 47, "arrival": {"time": "1694891202"}, "stopId": "39617"}, {"stopSequence": 48, "arrival": {"time": "1694891266"}, "stopId": "39618"}, {"stopSequence": 49, "arrival": {"time": "1694891317"}, "stopId": "39619"}, {"stopSequence": 50, "arrival": {"time": "1694891365"}, "stopId": "39620"}, {"stopSequence": 51, "arrival": {"time": "1694891440"}, "stopId": "39621"}, {"stopSequence": 52, "arrival": {"time": "1694891496"}, "stopId": "38281"}, {"stopSequence": 53, "arrival": {"time": "1694891561"}, "stopId": "37506"}, {"stopSequence": 54, "arrival": {"time": "1694891650"}, "stopId": "45069"}, {"stopSequence": 55, "arrival": {"time": "1694891788"}, "stopId": "37523"}, {"stopSequence": 56, "arrival": {"time": "1694891839"}, "stopId": "37477"}, {"stopSequence": 57, "arrival": {"time": "1694891950"}, "stopId": "49310"}, {"stopSequence": 58, "arrival": {"time": "1694891991"}, "stopId": "49311"}, {"stopSequence": 59, "arrival": {"time": "1694892065"}, "stopId": "35796"}, {"stopSequence": 60, "arrival": {"time": "1694892131"}, "stopId": "35797"}, {"stopSequence": 61, "arrival": {"time": "1694892187"}, "stopId": "35798"}, {"stopSequence": 62, "arrival": {"time": "1694892240"}, "stopId": "35799"}, {"stopSequence": 63, "arrival": {"time": "1694892339"}, "stopId": "35800"}, {"stopSequence": 64, "arrival": {"time": "1694892410"}, "stopId": "35801"}, {"stopSequence": 65, "arrival": {"time": "1694892448"}, "stopId": "35802"}, {"stopSequence": 66, "arrival": {"time": "1694892519"}, "stopId": "35803"}, {"stopSequence": 67, "arrival": {"time": "1694892603"}, "stopId": "38507"}, {"stopSequence": 68, "arrival": {"time": "1694892682"}, "stopId": "34473"}, {"stopSequence": 69, "arrival": {"time": "1694892752"}, "stopId": "38500"}, {"stopSequence": 70, "arrival": {"time": "1694892826"}, "stopId": "35808"}, {"stopSequence": 71, "arrival": {"time": "1694892922"}, "stopId": "35710"}, {"stopSequence": 72, "arrival": {"time": "1694892998"}, "stopId": "50036"}, {"stopSequence": 73, "arrival": {"time": "1694893413"}, "stopId": "50037"}, {"stopSequence": 74, "arrival": {"time": "1694893698"}, "stopId": "50038"}, {"stopSequence": 75, "arrival": {"time": "1694893859"}, "stopId": "50039"}, {"stopSequence": 76, "arrival": {"time": "1694893982"}, "stopId": "50040"}, {"stopSequence": 77, "arrival": {"time": "1694894189"}, "stopId": "50041"}, {"stopSequence": 78, "arrival": {"time": "1694894528"}, "stopId": "1566333"}, {"stopSequence": 79, "arrival": {"time": "1694894814"}, "stopId": "39334"}], "vehicle": {"licensePlate": "XZ9735"}, "timestamp": "1694889035"}, "vehicle": {"trip": {"tripId": "20780-701ff27f-2", "startTime": "15:21:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "594", "directionId": 0}, "position": {"latitude": -36.73924, "longitude": -73.10915, "bearing": 153.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889035", "vehicle": {"licensePlate": "XZ9735"}}}, {"id": "2b296c55-1b60-42ad-86cb-73e5a3c759ed", "tripUpdate": {"trip": {"tripId": "20907-701ff27f-2", "startTime": "13:49:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "595", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 117, "arrival": {"time": "1694888827"}, "stopId": "38400"}, {"stopSequence": 118, "arrival": {"time": "1694888876"}, "stopId": "38401"}, {"stopSequence": 119, "arrival": {"time": "1694888923"}, "stopId": "38402"}, {"stopSequence": 120, "arrival": {"time": "1694889004"}, "stopId": "38433"}], "vehicle": {"licensePlate": "BLYF33"}, "timestamp": "1694888790"}, "vehicle": {"trip": {"tripId": "20907-701ff27f-2", "startTime": "13:49:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "595", "directionId": 0}, "position": {"latitude": -36.712322, "longitude": -73.132225, "bearing": 240.0, "odometer": 0.0, "speed": 9.166667}, "timestamp": "1694889038", "vehicle": {"licensePlate": "BLYF33"}}}, {"id": "baae1773-c95f-475e-a651-7d93bb3c00db", "tripUpdate": {"trip": {"tripId": "20912-701ff27f-2", "startTime": "14:49:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "595", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 62, "arrival": {"time": "1694889242"}, "stopId": "49324"}, {"stopSequence": 63, "arrival": {"time": "1694889296"}, "stopId": "49325"}, {"stopSequence": 64, "arrival": {"time": "1694889343"}, "stopId": "49326"}, {"stopSequence": 65, "arrival": {"time": "1694889377"}, "stopId": "39648"}, {"stopSequence": 66, "arrival": {"time": "1694889416"}, "stopId": "39649"}, {"stopSequence": 67, "arrival": {"time": "1694889465"}, "stopId": "45112"}, {"stopSequence": 68, "arrival": {"time": "1694889508"}, "stopId": "45113"}, {"stopSequence": 69, "arrival": {"time": "1694889581"}, "stopId": "37490"}, {"stopSequence": 70, "arrival": {"time": "1694889640"}, "stopId": "45115"}, {"stopSequence": 71, "arrival": {"time": "1694889664"}, "stopId": "45116"}, {"stopSequence": 72, "arrival": {"time": "1694889734"}, "stopId": "45118"}, {"stopSequence": 73, "arrival": {"time": "1694889806"}, "stopId": "45119"}, {"stopSequence": 74, "arrival": {"time": "1694889850"}, "stopId": "45120"}, {"stopSequence": 75, "arrival": {"time": "1694889903"}, "stopId": "45121"}, {"stopSequence": 76, "arrival": {"time": "1694889944"}, "stopId": "38535"}, {"stopSequence": 77, "arrival": {"time": "1694890018"}, "stopId": "38536"}, {"stopSequence": 78, "arrival": {"time": "1694890053"}, "stopId": "4838437"}, {"stopSequence": 79, "arrival": {"time": "1694890106"}, "stopId": "45085"}, {"stopSequence": 80, "arrival": {"time": "1694890182"}, "stopId": "45086"}, {"stopSequence": 81, "arrival": {"time": "1694890294"}, "stopId": "38540"}, {"stopSequence": 82, "arrival": {"time": "1694890370"}, "stopId": "38544"}, {"stopSequence": 83, "arrival": {"time": "1694890438"}, "stopId": "38545"}, {"stopSequence": 84, "arrival": {"time": "1694890526"}, "stopId": "38546"}, {"stopSequence": 85, "arrival": {"time": "1694890650"}, "stopId": "38548"}, {"stopSequence": 86, "arrival": {"time": "1694890717"}, "stopId": "38549"}, {"stopSequence": 87, "arrival": {"time": "1694890774"}, "stopId": "38550"}, {"stopSequence": 88, "arrival": {"time": "1694890873"}, "stopId": "38551"}, {"stopSequence": 89, "arrival": {"time": "1694890962"}, "stopId": "38552"}, {"stopSequence": 90, "arrival": {"time": "1694891047"}, "stopId": "49359"}, {"stopSequence": 91, "arrival": {"time": "1694891102"}, "stopId": "49360"}, {"stopSequence": 92, "arrival": {"time": "1694891224"}, "stopId": "49361"}, {"stopSequence": 93, "arrival": {"time": "1694891254"}, "stopId": "49362"}, {"stopSequence": 94, "arrival": {"time": "1694891307"}, "stopId": "49363"}, {"stopSequence": 95, "arrival": {"time": "1694891357"}, "stopId": "49364"}, {"stopSequence": 96, "arrival": {"time": "1694891403"}, "stopId": "49365"}, {"stopSequence": 97, "arrival": {"time": "1694891483"}, "stopId": "38560"}, {"stopSequence": 98, "arrival": {"time": "1694891528"}, "stopId": "42857"}, {"stopSequence": 99, "arrival": {"time": "1694891565"}, "stopId": "38562"}, {"stopSequence": 100, "arrival": {"time": "1694891606"}, "stopId": "38563"}, {"stopSequence": 101, "arrival": {"time": "1694891653"}, "stopId": "42854"}, {"stopSequence": 102, "arrival": {"time": "1694891774"}, "stopId": "38565"}, {"stopSequence": 103, "arrival": {"time": "1694891838"}, "stopId": "40932"}, {"stopSequence": 104, "arrival": {"time": "1694891929"}, "stopId": "38567"}, {"stopSequence": 105, "arrival": {"time": "1694891991"}, "stopId": "38568"}, {"stopSequence": 106, "arrival": {"time": "1694892028"}, "stopId": "38569"}, {"stopSequence": 107, "arrival": {"time": "1694892085"}, "stopId": "38570"}, {"stopSequence": 108, "arrival": {"time": "1694892161"}, "stopId": "38571"}, {"stopSequence": 109, "arrival": {"time": "1694892234"}, "stopId": "38572"}, {"stopSequence": 110, "arrival": {"time": "1694892477"}, "stopId": "38393"}, {"stopSequence": 111, "arrival": {"time": "1694892556"}, "stopId": "38394"}, {"stopSequence": 112, "arrival": {"time": "1694892624"}, "stopId": "38395"}, {"stopSequence": 113, "arrival": {"time": "1694892677"}, "stopId": "38396"}, {"stopSequence": 114, "arrival": {"time": "1694892773"}, "stopId": "38397"}, {"stopSequence": 115, "arrival": {"time": "1694892812"}, "stopId": "38398"}, {"stopSequence": 116, "arrival": {"time": "1694892854"}, "stopId": "38399"}, {"stopSequence": 117, "arrival": {"time": "1694892960"}, "stopId": "38400"}, {"stopSequence": 118, "arrival": {"time": "1694893041"}, "stopId": "38401"}, {"stopSequence": 119, "arrival": {"time": "1694893120"}, "stopId": "38402"}, {"stopSequence": 120, "arrival": {"time": "1694893262"}, "stopId": "38433"}], "vehicle": {"licensePlate": "CLFX61"}, "timestamp": "1694888992"}, "vehicle": {"trip": {"tripId": "20912-701ff27f-2", "startTime": "14:49:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "595", "directionId": 0}, "position": {"latitude": -36.808495, "longitude": -73.07729, "bearing": 326.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888992", "vehicle": {"licensePlate": "CLFX61"}}}, {"id": "e4110f51-4f86-4889-9e5d-c4bf215559a7", "tripUpdate": {"trip": {"tripId": "20914-701ff27f-2", "startTime": "15:13:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "595", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 42, "arrival": {"time": "1694889088"}, "stopId": "39599"}, {"stopSequence": 43, "arrival": {"time": "1694889112"}, "stopId": "39600"}, {"stopSequence": 44, "arrival": {"time": "1694889182"}, "stopId": "37496"}, {"stopSequence": 45, "arrival": {"time": "1694889233"}, "stopId": "45064"}, {"stopSequence": 46, "arrival": {"time": "1694889309"}, "stopId": "37506"}, {"stopSequence": 47, "arrival": {"time": "1694889385"}, "stopId": "45069"}, {"stopSequence": 48, "arrival": {"time": "1694889498"}, "stopId": "37523"}, {"stopSequence": 49, "arrival": {"time": "1694889538"}, "stopId": "37477"}, {"stopSequence": 50, "arrival": {"time": "1694889624"}, "stopId": "49310"}, {"stopSequence": 51, "arrival": {"time": "1694889655"}, "stopId": "49311"}, {"stopSequence": 52, "arrival": {"time": "1694889710"}, "stopId": "39634"}, {"stopSequence": 53, "arrival": {"time": "1694889735"}, "stopId": "39635"}, {"stopSequence": 54, "arrival": {"time": "1694889780"}, "stopId": "39636"}, {"stopSequence": 55, "arrival": {"time": "1694889830"}, "stopId": "49503"}, {"stopSequence": 56, "arrival": {"time": "1694889955"}, "stopId": "39637"}, {"stopSequence": 57, "arrival": {"time": "1694890003"}, "stopId": "49317"}, {"stopSequence": 58, "arrival": {"time": "1694890034"}, "stopId": "49318"}, {"stopSequence": 59, "arrival": {"time": "1694890098"}, "stopId": "49319"}, {"stopSequence": 60, "arrival": {"time": "1694890160"}, "stopId": "39641"}, {"stopSequence": 61, "arrival": {"time": "1694890190"}, "stopId": "39642"}, {"stopSequence": 62, "arrival": {"time": "1694890427"}, "stopId": "49324"}, {"stopSequence": 63, "arrival": {"time": "1694890479"}, "stopId": "49325"}, {"stopSequence": 64, "arrival": {"time": "1694890525"}, "stopId": "49326"}, {"stopSequence": 65, "arrival": {"time": "1694890559"}, "stopId": "39648"}, {"stopSequence": 66, "arrival": {"time": "1694890597"}, "stopId": "39649"}, {"stopSequence": 67, "arrival": {"time": "1694890646"}, "stopId": "45112"}, {"stopSequence": 68, "arrival": {"time": "1694890691"}, "stopId": "45113"}, {"stopSequence": 69, "arrival": {"time": "1694890765"}, "stopId": "37490"}, {"stopSequence": 70, "arrival": {"time": "1694890827"}, "stopId": "45115"}, {"stopSequence": 71, "arrival": {"time": "1694890852"}, "stopId": "45116"}, {"stopSequence": 72, "arrival": {"time": "1694890926"}, "stopId": "45118"}, {"stopSequence": 73, "arrival": {"time": "1694891005"}, "stopId": "45119"}, {"stopSequence": 74, "arrival": {"time": "1694891053"}, "stopId": "45120"}, {"stopSequence": 75, "arrival": {"time": "1694891112"}, "stopId": "45121"}, {"stopSequence": 76, "arrival": {"time": "1694891157"}, "stopId": "38535"}, {"stopSequence": 77, "arrival": {"time": "1694891241"}, "stopId": "38536"}, {"stopSequence": 78, "arrival": {"time": "1694891281"}, "stopId": "4838437"}, {"stopSequence": 79, "arrival": {"time": "1694891343"}, "stopId": "45085"}, {"stopSequence": 80, "arrival": {"time": "1694891433"}, "stopId": "45086"}, {"stopSequence": 81, "arrival": {"time": "1694891567"}, "stopId": "38540"}, {"stopSequence": 82, "arrival": {"time": "1694891661"}, "stopId": "38544"}, {"stopSequence": 83, "arrival": {"time": "1694891746"}, "stopId": "38545"}, {"stopSequence": 84, "arrival": {"time": "1694891858"}, "stopId": "38546"}, {"stopSequence": 85, "arrival": {"time": "1694892018"}, "stopId": "38548"}, {"stopSequence": 86, "arrival": {"time": "1694892107"}, "stopId": "38549"}, {"stopSequence": 87, "arrival": {"time": "1694892183"}, "stopId": "38550"}, {"stopSequence": 88, "arrival": {"time": "1694892318"}, "stopId": "38551"}, {"stopSequence": 89, "arrival": {"time": "1694892441"}, "stopId": "38552"}, {"stopSequence": 90, "arrival": {"time": "1694892562"}, "stopId": "49359"}, {"stopSequence": 91, "arrival": {"time": "1694892642"}, "stopId": "49360"}, {"stopSequence": 92, "arrival": {"time": "1694892819"}, "stopId": "49361"}, {"stopSequence": 93, "arrival": {"time": "1694892864"}, "stopId": "49362"}, {"stopSequence": 94, "arrival": {"time": "1694892943"}, "stopId": "49363"}, {"stopSequence": 95, "arrival": {"time": "1694893019"}, "stopId": "49364"}, {"stopSequence": 96, "arrival": {"time": "1694893090"}, "stopId": "49365"}, {"stopSequence": 97, "arrival": {"time": "1694893212"}, "stopId": "38560"}, {"stopSequence": 98, "arrival": {"time": "1694893282"}, "stopId": "42857"}, {"stopSequence": 99, "arrival": {"time": "1694893340"}, "stopId": "38562"}, {"stopSequence": 100, "arrival": {"time": "1694893405"}, "stopId": "38563"}, {"stopSequence": 101, "arrival": {"time": "1694893481"}, "stopId": "42854"}, {"stopSequence": 102, "arrival": {"time": "1694893677"}, "stopId": "38565"}, {"stopSequence": 103, "arrival": {"time": "1694893783"}, "stopId": "40932"}, {"stopSequence": 104, "arrival": {"time": "1694893938"}, "stopId": "38567"}, {"stopSequence": 105, "arrival": {"time": "1694894042"}, "stopId": "38568"}, {"stopSequence": 106, "arrival": {"time": "1694894107"}, "stopId": "38569"}, {"stopSequence": 107, "arrival": {"time": "1694894205"}, "stopId": "38570"}, {"stopSequence": 108, "arrival": {"time": "1694894339"}, "stopId": "38571"}, {"stopSequence": 109, "arrival": {"time": "1694894469"}, "stopId": "38572"}, {"stopSequence": 110, "arrival": {"time": "1694894915"}, "stopId": "38393"}, {"stopSequence": 111, "arrival": {"time": "1694895064"}, "stopId": "38394"}, {"stopSequence": 112, "arrival": {"time": "1694895195"}, "stopId": "38395"}, {"stopSequence": 113, "arrival": {"time": "1694895299"}, "stopId": "38396"}, {"stopSequence": 114, "arrival": {"time": "1694895488"}, "stopId": "38397"}, {"stopSequence": 115, "arrival": {"time": "1694895564"}, "stopId": "38398"}, {"stopSequence": 116, "arrival": {"time": "1694895648"}, "stopId": "38399"}, {"stopSequence": 117, "arrival": {"time": "1694895866"}, "stopId": "38400"}, {"stopSequence": 118, "arrival": {"time": "1694896034"}, "stopId": "38401"}, {"stopSequence": 119, "arrival": {"time": "1694896199"}, "stopId": "38402"}, {"stopSequence": 120, "arrival": {"time": "1694896505"}, "stopId": "38433"}], "vehicle": {"licensePlate": "CYSD51"}, "timestamp": "1694889010"}, "vehicle": {"trip": {"tripId": "20914-701ff27f-2", "startTime": "15:13:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "595", "directionId": 0}, "position": {"latitude": -36.81642, "longitude": -73.03846, "bearing": 236.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889010", "vehicle": {"licensePlate": "CYSD51"}}}, {"id": "a9720ff5-7291-4753-95f9-a91af589a7fd", "tripUpdate": {"trip": {"tripId": "20911-701ff27f-2", "startTime": "14:37:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "595", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 67, "arrival": {"time": "1694889063"}, "stopId": "45112"}, {"stopSequence": 68, "arrival": {"time": "1694889109"}, "stopId": "45113"}, {"stopSequence": 69, "arrival": {"time": "1694889187"}, "stopId": "37490"}, {"stopSequence": 70, "arrival": {"time": "1694889249"}, "stopId": "45115"}, {"stopSequence": 71, "arrival": {"time": "1694889275"}, "stopId": "45116"}, {"stopSequence": 72, "arrival": {"time": "1694889347"}, "stopId": "45118"}, {"stopSequence": 73, "arrival": {"time": "1694889423"}, "stopId": "45119"}, {"stopSequence": 74, "arrival": {"time": "1694889468"}, "stopId": "45120"}, {"stopSequence": 75, "arrival": {"time": "1694889523"}, "stopId": "45121"}, {"stopSequence": 76, "arrival": {"time": "1694889564"}, "stopId": "38535"}, {"stopSequence": 77, "arrival": {"time": "1694889640"}, "stopId": "38536"}, {"stopSequence": 78, "arrival": {"time": "1694889675"}, "stopId": "4838437"}, {"stopSequence": 79, "arrival": {"time": "1694889729"}, "stopId": "45085"}, {"stopSequence": 80, "arrival": {"time": "1694889806"}, "stopId": "45086"}, {"stopSequence": 81, "arrival": {"time": "1694889917"}, "stopId": "38540"}, {"stopSequence": 82, "arrival": {"time": "1694889993"}, "stopId": "38544"}, {"stopSequence": 83, "arrival": {"time": "1694890060"}, "stopId": "38545"}, {"stopSequence": 84, "arrival": {"time": "1694890146"}, "stopId": "38546"}, {"stopSequence": 85, "arrival": {"time": "1694890266"}, "stopId": "38548"}, {"stopSequence": 86, "arrival": {"time": "1694890330"}, "stopId": "38549"}, {"stopSequence": 87, "arrival": {"time": "1694890385"}, "stopId": "38550"}, {"stopSequence": 88, "arrival": {"time": "1694890479"}, "stopId": "38551"}, {"stopSequence": 89, "arrival": {"time": "1694890563"}, "stopId": "38552"}, {"stopSequence": 90, "arrival": {"time": "1694890643"}, "stopId": "49359"}, {"stopSequence": 91, "arrival": {"time": "1694890695"}, "stopId": "49360"}, {"stopSequence": 92, "arrival": {"time": "1694890808"}, "stopId": "49361"}, {"stopSequence": 93, "arrival": {"time": "1694890836"}, "stopId": "49362"}, {"stopSequence": 94, "arrival": {"time": "1694890884"}, "stopId": "49363"}, {"stopSequence": 95, "arrival": {"time": "1694890930"}, "stopId": "49364"}, {"stopSequence": 96, "arrival": {"time": "1694890972"}, "stopId": "49365"}, {"stopSequence": 97, "arrival": {"time": "1694891045"}, "stopId": "38560"}, {"stopSequence": 98, "arrival": {"time": "1694891086"}, "stopId": "42857"}, {"stopSequence": 99, "arrival": {"time": "1694891119"}, "stopId": "38562"}, {"stopSequence": 100, "arrival": {"time": "1694891156"}, "stopId": "38563"}, {"stopSequence": 101, "arrival": {"time": "1694891198"}, "stopId": "42854"}, {"stopSequence": 102, "arrival": {"time": "1694891306"}, "stopId": "38565"}, {"stopSequence": 103, "arrival": {"time": "1694891363"}, "stopId": "40932"}, {"stopSequence": 104, "arrival": {"time": "1694891445"}, "stopId": "38567"}, {"stopSequence": 105, "arrival": {"time": "1694891499"}, "stopId": "38568"}, {"stopSequence": 106, "arrival": {"time": "1694891532"}, "stopId": "38569"}, {"stopSequence": 107, "arrival": {"time": "1694891581"}, "stopId": "38570"}, {"stopSequence": 108, "arrival": {"time": "1694891648"}, "stopId": "38571"}, {"stopSequence": 109, "arrival": {"time": "1694891712"}, "stopId": "38572"}, {"stopSequence": 110, "arrival": {"time": "1694891921"}, "stopId": "38393"}, {"stopSequence": 111, "arrival": {"time": "1694891988"}, "stopId": "38394"}, {"stopSequence": 112, "arrival": {"time": "1694892046"}, "stopId": "38395"}, {"stopSequence": 113, "arrival": {"time": "1694892092"}, "stopId": "38396"}, {"stopSequence": 114, "arrival": {"time": "1694892173"}, "stopId": "38397"}, {"stopSequence": 115, "arrival": {"time": "1694892205"}, "stopId": "38398"}, {"stopSequence": 116, "arrival": {"time": "1694892241"}, "stopId": "38399"}, {"stopSequence": 117, "arrival": {"time": "1694892330"}, "stopId": "38400"}, {"stopSequence": 118, "arrival": {"time": "1694892398"}, "stopId": "38401"}, {"stopSequence": 119, "arrival": {"time": "1694892463"}, "stopId": "38402"}, {"stopSequence": 120, "arrival": {"time": "1694892580"}, "stopId": "38433"}], "vehicle": {"licensePlate": "DDVZ66"}, "timestamp": "1694889032"}, "vehicle": {"trip": {"tripId": "20911-701ff27f-2", "startTime": "14:37:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "595", "directionId": 0}, "position": {"latitude": -36.791115, "longitude": -73.0868, "bearing": 359.0, "odometer": 0.0, "speed": 13.611111}, "timestamp": "1694889032", "vehicle": {"licensePlate": "DDVZ66"}}}, {"id": "6da266c4-69b5-417b-adc6-f939e1a92dfc", "tripUpdate": {"trip": {"tripId": "20910-701ff27f-2", "startTime": "14:25:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "595", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 81, "arrival": {"time": "1694889117"}, "stopId": "38540"}, {"stopSequence": 82, "arrival": {"time": "1694889199"}, "stopId": "38544"}, {"stopSequence": 83, "arrival": {"time": "1694889270"}, "stopId": "38545"}, {"stopSequence": 84, "arrival": {"time": "1694889360"}, "stopId": "38546"}, {"stopSequence": 85, "arrival": {"time": "1694889484"}, "stopId": "38548"}, {"stopSequence": 86, "arrival": {"time": "1694889550"}, "stopId": "38549"}, {"stopSequence": 87, "arrival": {"time": "1694889605"}, "stopId": "38550"}, {"stopSequence": 88, "arrival": {"time": "1694889699"}, "stopId": "38551"}, {"stopSequence": 89, "arrival": {"time": "1694889782"}, "stopId": "38552"}, {"stopSequence": 90, "arrival": {"time": "1694889860"}, "stopId": "49359"}, {"stopSequence": 91, "arrival": {"time": "1694889910"}, "stopId": "49360"}, {"stopSequence": 92, "arrival": {"time": "1694890017"}, "stopId": "49361"}, {"stopSequence": 93, "arrival": {"time": "1694890044"}, "stopId": "49362"}, {"stopSequence": 94, "arrival": {"time": "1694890089"}, "stopId": "49363"}, {"stopSequence": 95, "arrival": {"time": "1694890132"}, "stopId": "49364"}, {"stopSequence": 96, "arrival": {"time": "1694890171"}, "stopId": "49365"}, {"stopSequence": 97, "arrival": {"time": "1694890238"}, "stopId": "38560"}, {"stopSequence": 98, "arrival": {"time": "1694890275"}, "stopId": "42857"}, {"stopSequence": 99, "arrival": {"time": "1694890305"}, "stopId": "38562"}, {"stopSequence": 100, "arrival": {"time": "1694890338"}, "stopId": "38563"}, {"stopSequence": 101, "arrival": {"time": "1694890377"}, "stopId": "42854"}, {"stopSequence": 102, "arrival": {"time": "1694890473"}, "stopId": "38565"}, {"stopSequence": 103, "arrival": {"time": "1694890523"}, "stopId": "40932"}, {"stopSequence": 104, "arrival": {"time": "1694890594"}, "stopId": "38567"}, {"stopSequence": 105, "arrival": {"time": "1694890641"}, "stopId": "38568"}, {"stopSequence": 106, "arrival": {"time": "1694890670"}, "stopId": "38569"}, {"stopSequence": 107, "arrival": {"time": "1694890712"}, "stopId": "38570"}, {"stopSequence": 108, "arrival": {"time": "1694890769"}, "stopId": "38571"}, {"stopSequence": 109, "arrival": {"time": "1694890823"}, "stopId": "38572"}, {"stopSequence": 110, "arrival": {"time": "1694890997"}, "stopId": "38393"}, {"stopSequence": 111, "arrival": {"time": "1694891052"}, "stopId": "38394"}, {"stopSequence": 112, "arrival": {"time": "1694891100"}, "stopId": "38395"}, {"stopSequence": 113, "arrival": {"time": "1694891137"}, "stopId": "38396"}, {"stopSequence": 114, "arrival": {"time": "1694891202"}, "stopId": "38397"}, {"stopSequence": 115, "arrival": {"time": "1694891228"}, "stopId": "38398"}, {"stopSequence": 116, "arrival": {"time": "1694891256"}, "stopId": "38399"}, {"stopSequence": 117, "arrival": {"time": "1694891327"}, "stopId": "38400"}, {"stopSequence": 118, "arrival": {"time": "1694891380"}, "stopId": "38401"}, {"stopSequence": 119, "arrival": {"time": "1694891431"}, "stopId": "38402"}, {"stopSequence": 120, "arrival": {"time": "1694891523"}, "stopId": "38433"}], "vehicle": {"licensePlate": "DTCG31"}, "timestamp": "1694889002"}, "vehicle": {"trip": {"tripId": "20910-701ff27f-2", "startTime": "14:25:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "595", "directionId": 0}, "position": {"latitude": -36.75821, "longitude": -73.0904, "bearing": 334.0, "odometer": 0.0, "speed": 5.0}, "timestamp": "1694889002", "vehicle": {"licensePlate": "DTCG31"}}}, {"id": "b42ccab1-6d11-4af0-b366-857c22bf5c7f", "tripUpdate": {"trip": {"tripId": "20998-701ff27f-2", "startTime": "15:03:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "595", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 45, "arrival": {"time": "1694888986"}, "stopId": "39785"}, {"stopSequence": 46, "arrival": {"time": "1694889027"}, "stopId": "38664"}, {"stopSequence": 47, "arrival": {"time": "1694889083"}, "stopId": "38702"}, {"stopSequence": 48, "arrival": {"time": "1694889129"}, "stopId": "39787"}, {"stopSequence": 49, "arrival": {"time": "1694889172"}, "stopId": "38501"}, {"stopSequence": 50, "arrival": {"time": "1694889240"}, "stopId": "38692"}, {"stopSequence": 51, "arrival": {"time": "1694889310"}, "stopId": "38714"}, {"stopSequence": 52, "arrival": {"time": "1694889358"}, "stopId": "39791"}, {"stopSequence": 53, "arrival": {"time": "1694889386"}, "stopId": "38506"}, {"stopSequence": 54, "arrival": {"time": "1694889435"}, "stopId": "38635"}, {"stopSequence": 55, "arrival": {"time": "1694889468"}, "stopId": "38509"}, {"stopSequence": 56, "arrival": {"time": "1694889511"}, "stopId": "38642"}, {"stopSequence": 57, "arrival": {"time": "1694889555"}, "stopId": "39795"}, {"stopSequence": 58, "arrival": {"time": "1694889587"}, "stopId": "38502"}, {"stopSequence": 59, "arrival": {"time": "1694889645"}, "stopId": "38503"}, {"stopSequence": 60, "arrival": {"time": "1694889799"}, "stopId": "35691"}, {"stopSequence": 61, "arrival": {"time": "1694889838"}, "stopId": "35692"}, {"stopSequence": 62, "arrival": {"time": "1694889895"}, "stopId": "35693"}, {"stopSequence": 63, "arrival": {"time": "1694889948"}, "stopId": "35694"}, {"stopSequence": 64, "arrival": {"time": "1694889986"}, "stopId": "35695"}, {"stopSequence": 65, "arrival": {"time": "1694890032"}, "stopId": "35696"}, {"stopSequence": 66, "arrival": {"time": "1694890199"}, "stopId": "35697"}, {"stopSequence": 67, "arrival": {"time": "1694890316"}, "stopId": "39778"}, {"stopSequence": 68, "arrival": {"time": "1694890420"}, "stopId": "35797"}, {"stopSequence": 69, "arrival": {"time": "1694890467"}, "stopId": "35798"}, {"stopSequence": 70, "arrival": {"time": "1694890499"}, "stopId": "35799"}, {"stopSequence": 71, "arrival": {"time": "1694890569"}, "stopId": "35800"}, {"stopSequence": 72, "arrival": {"time": "1694890619"}, "stopId": "35801"}, {"stopSequence": 73, "arrival": {"time": "1694890646"}, "stopId": "35802"}, {"stopSequence": 74, "arrival": {"time": "1694890694"}, "stopId": "35803"}, {"stopSequence": 75, "arrival": {"time": "1694890751"}, "stopId": "38507"}, {"stopSequence": 76, "arrival": {"time": "1694890804"}, "stopId": "34473"}, {"stopSequence": 77, "arrival": {"time": "1694890850"}, "stopId": "38500"}, {"stopSequence": 78, "arrival": {"time": "1694890899"}, "stopId": "35808"}, {"stopSequence": 79, "arrival": {"time": "1694890960"}, "stopId": "35710"}, {"stopSequence": 80, "arrival": {"time": "1694891009"}, "stopId": "50036"}, {"stopSequence": 81, "arrival": {"time": "1694891263"}, "stopId": "50037"}, {"stopSequence": 82, "arrival": {"time": "1694891429"}, "stopId": "50038"}, {"stopSequence": 83, "arrival": {"time": "1694891520"}, "stopId": "50039"}, {"stopSequence": 84, "arrival": {"time": "1694891588"}, "stopId": "50040"}, {"stopSequence": 85, "arrival": {"time": "1694891701"}, "stopId": "50041"}, {"stopSequence": 86, "arrival": {"time": "1694891879"}, "stopId": "Jun-15"}, {"stopSequence": 87, "arrival": {"time": "1694892006"}, "stopId": "Jun-13"}, {"stopSequence": 88, "arrival": {"time": "1694892280"}, "stopId": "6-Oct"}, {"stopSequence": 89, "arrival": {"time": "1694892357"}, "stopId": "6-Aug"}, {"stopSequence": 90, "arrival": {"time": "1694892606"}, "stopId": "6-Jun"}, {"stopSequence": 91, "arrival": {"time": "1694892808"}, "stopId": "6-Feb"}, {"stopSequence": 92, "arrival": {"time": "1694893042"}, "stopId": "7-Jul"}, {"stopSequence": 93, "arrival": {"time": "1694893164"}, "stopId": "7-May"}, {"stopSequence": 94, "arrival": {"time": "1694893230"}, "stopId": "1508142"}, {"stopSequence": 95, "arrival": {"time": "1694893417"}, "stopId": "7-Feb"}, {"stopSequence": 96, "arrival": {"time": "1694893552"}, "stopId": "8-Jan"}, {"stopSequence": 97, "arrival": {"time": "1694893616"}, "stopId": "9-Jan"}, {"stopSequence": 98, "arrival": {"time": "1694893701"}, "stopId": "10-Apr"}, {"stopSequence": 99, "arrival": {"time": "1694893819"}, "stopId": "10-Jan"}, {"stopSequence": 100, "arrival": {"time": "1694893919"}, "stopId": "44863"}, {"stopSequence": 101, "arrival": {"time": "1694893991"}, "stopId": "10-Mar"}, {"stopSequence": 102, "arrival": {"time": "1694894120"}, "stopId": "11-Jan"}, {"stopSequence": 103, "arrival": {"time": "1694894243"}, "stopId": "44866"}, {"stopSequence": 104, "arrival": {"time": "1694894339"}, "stopId": "44867"}, {"stopSequence": 105, "arrival": {"time": "1694894405"}, "stopId": "44868"}, {"stopSequence": 106, "arrival": {"time": "1694894473"}, "stopId": "44869"}, {"stopSequence": 107, "arrival": {"time": "1694894558"}, "stopId": "44870"}, {"stopSequence": 108, "arrival": {"time": "1694894648"}, "stopId": "44871"}, {"stopSequence": 109, "arrival": {"time": "1694894756"}, "stopId": "44872"}, {"stopSequence": 110, "arrival": {"time": "1694894936"}, "stopId": "50020"}, {"stopSequence": 111, "arrival": {"time": "1694895192"}, "stopId": "14-11"}, {"stopSequence": 112, "arrival": {"time": "1694895313"}, "stopId": "91162"}, {"stopSequence": 113, "arrival": {"time": "1694895575"}, "stopId": "50023"}, {"stopSequence": 114, "arrival": {"time": "1694895922"}, "stopId": "14-Jul"}, {"stopSequence": 115, "arrival": {"time": "1694896059"}, "stopId": "14-Apr"}, {"stopSequence": 116, "arrival": {"time": "1694896237"}, "stopId": "37474"}, {"stopSequence": 117, "arrival": {"time": "1694896428"}, "stopId": "44879"}, {"stopSequence": 118, "arrival": {"time": "1694896519"}, "stopId": "44880"}, {"stopSequence": 119, "arrival": {"time": "1694896652"}, "stopId": "44881"}, {"stopSequence": 120, "arrival": {"time": "1694896751"}, "stopId": "50028"}], "vehicle": {"licensePlate": "FHFT19"}, "timestamp": "1694888916"}, "vehicle": {"trip": {"tripId": "20998-701ff27f-2", "startTime": "15:03:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "595", "directionId": 1}, "position": {"latitude": -36.77208, "longitude": -73.08588, "bearing": 256.0, "odometer": 0.0, "speed": 2.7777777}, "timestamp": "1694888916", "vehicle": {"licensePlate": "FHFT19"}}}, {"id": "5b313258-850e-4211-afb5-045d76b847ba", "tripUpdate": {"trip": {"tripId": "20915-701ff27f-2", "startTime": "15:25:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "595", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 24, "arrival": {"time": "1694889045"}, "stopId": "7-Jun"}, {"stopSequence": 25, "arrival": {"time": "1694889108"}, "stopId": "7-Aug"}, {"stopSequence": 26, "arrival": {"time": "1694889259"}, "stopId": "6-Mar"}, {"stopSequence": 27, "arrival": {"time": "1694889360"}, "stopId": "6-May"}, {"stopSequence": 28, "arrival": {"time": "1694889513"}, "stopId": "6-Jul"}, {"stopSequence": 29, "arrival": {"time": "1694889583"}, "stopId": "6-Sep"}, {"stopSequence": 30, "arrival": {"time": "1694889674"}, "stopId": "6-Nov"}, {"stopSequence": 31, "arrival": {"time": "1694889774"}, "stopId": "6-Dec"}, {"stopSequence": 32, "arrival": {"time": "1694889861"}, "stopId": "Jun-14"}, {"stopSequence": 33, "arrival": {"time": "1694890009"}, "stopId": "Jun-17"}, {"stopSequence": 34, "arrival": {"time": "1694890086"}, "stopId": "Jun-19"}, {"stopSequence": 35, "arrival": {"time": "1694890144"}, "stopId": "Jun-20"}, {"stopSequence": 36, "arrival": {"time": "1694890204"}, "stopId": "Jun-22"}, {"stopSequence": 37, "arrival": {"time": "1694890267"}, "stopId": "Jun-24"}, {"stopSequence": 38, "arrival": {"time": "1694890354"}, "stopId": "Jun-25"}, {"stopSequence": 39, "arrival": {"time": "1694890639"}, "stopId": "90003"}, {"stopSequence": 40, "arrival": {"time": "1694890686"}, "stopId": "90007"}, {"stopSequence": 41, "arrival": {"time": "1694890737"}, "stopId": "90008"}, {"stopSequence": 42, "arrival": {"time": "1694890851"}, "stopId": "39599"}, {"stopSequence": 43, "arrival": {"time": "1694890875"}, "stopId": "39600"}, {"stopSequence": 44, "arrival": {"time": "1694890944"}, "stopId": "37496"}, {"stopSequence": 45, "arrival": {"time": "1694890997"}, "stopId": "45064"}, {"stopSequence": 46, "arrival": {"time": "1694891075"}, "stopId": "37506"}, {"stopSequence": 47, "arrival": {"time": "1694891156"}, "stopId": "45069"}, {"stopSequence": 48, "arrival": {"time": "1694891280"}, "stopId": "37523"}, {"stopSequence": 49, "arrival": {"time": "1694891326"}, "stopId": "37477"}, {"stopSequence": 50, "arrival": {"time": "1694891426"}, "stopId": "49310"}, {"stopSequence": 51, "arrival": {"time": "1694891462"}, "stopId": "49311"}, {"stopSequence": 52, "arrival": {"time": "1694891527"}, "stopId": "39634"}, {"stopSequence": 53, "arrival": {"time": "1694891558"}, "stopId": "39635"}, {"stopSequence": 54, "arrival": {"time": "1694891613"}, "stopId": "39636"}, {"stopSequence": 55, "arrival": {"time": "1694891676"}, "stopId": "49503"}, {"stopSequence": 56, "arrival": {"time": "1694891836"}, "stopId": "39637"}, {"stopSequence": 57, "arrival": {"time": "1694891900"}, "stopId": "49317"}, {"stopSequence": 58, "arrival": {"time": "1694891941"}, "stopId": "49318"}, {"stopSequence": 59, "arrival": {"time": "1694892028"}, "stopId": "49319"}, {"stopSequence": 60, "arrival": {"time": "1694892114"}, "stopId": "39641"}, {"stopSequence": 61, "arrival": {"time": "1694892157"}, "stopId": "39642"}, {"stopSequence": 62, "arrival": {"time": "1694892506"}, "stopId": "49324"}, {"stopSequence": 63, "arrival": {"time": "1694892587"}, "stopId": "49325"}, {"stopSequence": 64, "arrival": {"time": "1694892659"}, "stopId": "49326"}, {"stopSequence": 65, "arrival": {"time": "1694892712"}, "stopId": "39648"}, {"stopSequence": 66, "arrival": {"time": "1694892774"}, "stopId": "39649"}, {"stopSequence": 67, "arrival": {"time": "1694892854"}, "stopId": "45112"}, {"stopSequence": 68, "arrival": {"time": "1694892927"}, "stopId": "45113"}, {"stopSequence": 69, "arrival": {"time": "1694893054"}, "stopId": "37490"}, {"stopSequence": 70, "arrival": {"time": "1694893161"}, "stopId": "45115"}, {"stopSequence": 71, "arrival": {"time": "1694893205"}, "stopId": "45116"}, {"stopSequence": 72, "arrival": {"time": "1694893336"}, "stopId": "45118"}, {"stopSequence": 73, "arrival": {"time": "1694893480"}, "stopId": "45119"}, {"stopSequence": 74, "arrival": {"time": "1694893569"}, "stopId": "45120"}, {"stopSequence": 75, "arrival": {"time": "1694893681"}, "stopId": "45121"}, {"stopSequence": 76, "arrival": {"time": "1694893768"}, "stopId": "38535"}, {"stopSequence": 77, "arrival": {"time": "1694893934"}, "stopId": "38536"}, {"stopSequence": 78, "arrival": {"time": "1694894014"}, "stopId": "4838437"}, {"stopSequence": 79, "arrival": {"time": "1694894139"}, "stopId": "45085"}, {"stopSequence": 80, "arrival": {"time": "1694894329"}, "stopId": "45086"}, {"stopSequence": 81, "arrival": {"time": "1694894618"}, "stopId": "38540"}, {"stopSequence": 82, "arrival": {"time": "1694894829"}, "stopId": "38544"}, {"stopSequence": 83, "arrival": {"time": "1694895025"}, "stopId": "38545"}, {"stopSequence": 84, "arrival": {"time": "1694895291"}, "stopId": "38546"}, {"stopSequence": 85, "arrival": {"time": "1694895690"}, "stopId": "38548"}, {"stopSequence": 86, "arrival": {"time": "1694895920"}, "stopId": "38549"}, {"stopSequence": 87, "arrival": {"time": "1694896123"}, "stopId": "38550"}, {"stopSequence": 88, "arrival": {"time": "1694896495"}, "stopId": "38551"}, {"stopSequence": 89, "arrival": {"time": "1694896851"}, "stopId": "38552"}, {"stopSequence": 90, "arrival": {"time": "1694897212"}, "stopId": "49359"}, {"stopSequence": 91, "arrival": {"time": "1694897460"}, "stopId": "49360"}, {"stopSequence": 92, "arrival": {"time": "1694898035"}, "stopId": "49361"}, {"stopSequence": 93, "arrival": {"time": "1694898186"}, "stopId": "49362"}, {"stopSequence": 94, "arrival": {"time": "1694898457"}, "stopId": "49363"}, {"stopSequence": 95, "arrival": {"time": "1694898725"}, "stopId": "49364"}, {"stopSequence": 96, "arrival": {"time": "1694898983"}, "stopId": "49365"}, {"stopSequence": 97, "arrival": {"time": "1694899443"}, "stopId": "38560"}, {"stopSequence": 98, "arrival": {"time": "1694899717"}, "stopId": "42857"}, {"stopSequence": 99, "arrival": {"time": "1694899948"}, "stopId": "38562"}, {"stopSequence": 100, "arrival": {"time": "1694900215"}, "stopId": "38563"}, {"stopSequence": 101, "arrival": {"time": "1694900532"}, "stopId": "42854"}, {"stopSequence": 102, "arrival": {"time": "1694901400"}, "stopId": "38565"}, {"stopSequence": 103, "arrival": {"time": "1694901897"}, "stopId": "40932"}, {"stopSequence": 104, "arrival": {"time": "1694902660"}, "stopId": "38567"}, {"stopSequence": 105, "arrival": {"time": "1694903203"}, "stopId": "38568"}, {"stopSequence": 106, "arrival": {"time": "1694903554"}, "stopId": "38569"}, {"stopSequence": 107, "arrival": {"time": "1694904103"}, "stopId": "38570"}, {"stopSequence": 108, "arrival": {"time": "1694904894"}, "stopId": "38571"}, {"stopSequence": 109, "arrival": {"time": "1694905710"}, "stopId": "38572"}, {"stopSequence": 110, "arrival": {"time": "1694908915"}, "stopId": "38393"}, {"stopSequence": 111, "arrival": {"time": "1694910149"}, "stopId": "38394"}, {"stopSequence": 112, "arrival": {"time": "1694911324"}, "stopId": "38395"}, {"stopSequence": 113, "arrival": {"time": "1694912320"}, "stopId": "38396"}, {"stopSequence": 114, "arrival": {"time": "1694914284"}, "stopId": "38397"}, {"stopSequence": 115, "arrival": {"time": "1694915139"}, "stopId": "38398"}, {"stopSequence": 116, "arrival": {"time": "1694916137"}, "stopId": "38399"}, {"stopSequence": 117, "arrival": {"time": "1694918966"}, "stopId": "38400"}, {"stopSequence": 118, "arrival": {"time": "1694921458"}, "stopId": "38401"}, {"stopSequence": 119, "arrival": {"time": "1694924213"}, "stopId": "38402"}, {"stopSequence": 120, "arrival": {"time": "1694930340"}, "stopId": "38433"}], "vehicle": {"licensePlate": "HHBH25"}, "timestamp": "1694889005"}, "vehicle": {"trip": {"tripId": "20915-701ff27f-2", "startTime": "15:25:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "595", "directionId": 0}, "position": {"latitude": -36.747627, "longitude": -73.00137, "bearing": 159.0, "odometer": 0.0, "speed": 19.444445}, "timestamp": "1694889005", "vehicle": {"licensePlate": "HHBH25"}}}, {"id": "d71d3d6c-b50a-4d6f-a7dc-54866d2b413e", "tripUpdate": {"trip": {"tripId": "20909-701ff27f-2", "startTime": "14:13:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "595", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 89, "arrival": {"time": "1694889002"}, "stopId": "38552"}, {"stopSequence": 90, "arrival": {"time": "1694889087"}, "stopId": "49359"}, {"stopSequence": 91, "arrival": {"time": "1694889141"}, "stopId": "49360"}, {"stopSequence": 92, "arrival": {"time": "1694889256"}, "stopId": "49361"}, {"stopSequence": 93, "arrival": {"time": "1694889284"}, "stopId": "49362"}, {"stopSequence": 94, "arrival": {"time": "1694889331"}, "stopId": "49363"}, {"stopSequence": 95, "arrival": {"time": "1694889376"}, "stopId": "49364"}, {"stopSequence": 96, "arrival": {"time": "1694889417"}, "stopId": "49365"}, {"stopSequence": 97, "arrival": {"time": "1694889485"}, "stopId": "38560"}, {"stopSequence": 98, "arrival": {"time": "1694889523"}, "stopId": "42857"}, {"stopSequence": 99, "arrival": {"time": "1694889554"}, "stopId": "38562"}, {"stopSequence": 100, "arrival": {"time": "1694889587"}, "stopId": "38563"}, {"stopSequence": 101, "arrival": {"time": "1694889626"}, "stopId": "42854"}, {"stopSequence": 102, "arrival": {"time": "1694889721"}, "stopId": "38565"}, {"stopSequence": 103, "arrival": {"time": "1694889771"}, "stopId": "40932"}, {"stopSequence": 104, "arrival": {"time": "1694889840"}, "stopId": "38567"}, {"stopSequence": 105, "arrival": {"time": "1694889885"}, "stopId": "38568"}, {"stopSequence": 106, "arrival": {"time": "1694889913"}, "stopId": "38569"}, {"stopSequence": 107, "arrival": {"time": "1694889953"}, "stopId": "38570"}, {"stopSequence": 108, "arrival": {"time": "1694890007"}, "stopId": "38571"}, {"stopSequence": 109, "arrival": {"time": "1694890058"}, "stopId": "38572"}, {"stopSequence": 110, "arrival": {"time": "1694890220"}, "stopId": "38393"}, {"stopSequence": 111, "arrival": {"time": "1694890270"}, "stopId": "38394"}, {"stopSequence": 112, "arrival": {"time": "1694890313"}, "stopId": "38395"}, {"stopSequence": 113, "arrival": {"time": "1694890347"}, "stopId": "38396"}, {"stopSequence": 114, "arrival": {"time": "1694890405"}, "stopId": "38397"}, {"stopSequence": 115, "arrival": {"time": "1694890428"}, "stopId": "38398"}, {"stopSequence": 116, "arrival": {"time": "1694890454"}, "stopId": "38399"}, {"stopSequence": 117, "arrival": {"time": "1694890516"}, "stopId": "38400"}, {"stopSequence": 118, "arrival": {"time": "1694890563"}, "stopId": "38401"}, {"stopSequence": 119, "arrival": {"time": "1694890608"}, "stopId": "38402"}, {"stopSequence": 120, "arrival": {"time": "1694890687"}, "stopId": "38433"}], "vehicle": {"licensePlate": "JBXY30"}, "timestamp": "1694888982"}, "vehicle": {"trip": {"tripId": "20909-701ff27f-2", "startTime": "14:13:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "595", "directionId": 0}, "position": {"latitude": -36.72874, "longitude": -73.10958, "bearing": 18.0, "odometer": 0.0, "speed": 17.222221}, "timestamp": "1694888982", "vehicle": {"licensePlate": "JBXY30"}}}, {"id": "565709a4-bea3-4f0a-a8dc-83d9e510540f", "tripUpdate": {"trip": {"tripId": "20997-701ff27f-2", "startTime": "14:48:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "595", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 66, "arrival": {"time": "1694889130"}, "stopId": "35697"}, {"stopSequence": 67, "arrival": {"time": "1694889254"}, "stopId": "39778"}, {"stopSequence": 68, "arrival": {"time": "1694889360"}, "stopId": "35797"}, {"stopSequence": 69, "arrival": {"time": "1694889408"}, "stopId": "35798"}, {"stopSequence": 70, "arrival": {"time": "1694889440"}, "stopId": "35799"}, {"stopSequence": 71, "arrival": {"time": "1694889510"}, "stopId": "35800"}, {"stopSequence": 72, "arrival": {"time": "1694889558"}, "stopId": "35801"}, {"stopSequence": 73, "arrival": {"time": "1694889584"}, "stopId": "35802"}, {"stopSequence": 74, "arrival": {"time": "1694889631"}, "stopId": "35803"}, {"stopSequence": 75, "arrival": {"time": "1694889685"}, "stopId": "38507"}, {"stopSequence": 76, "arrival": {"time": "1694889734"}, "stopId": "34473"}, {"stopSequence": 77, "arrival": {"time": "1694889777"}, "stopId": "38500"}, {"stopSequence": 78, "arrival": {"time": "1694889822"}, "stopId": "35808"}, {"stopSequence": 79, "arrival": {"time": "1694889878"}, "stopId": "35710"}, {"stopSequence": 80, "arrival": {"time": "1694889922"}, "stopId": "50036"}, {"stopSequence": 81, "arrival": {"time": "1694890144"}, "stopId": "50037"}, {"stopSequence": 82, "arrival": {"time": "1694890285"}, "stopId": "50038"}, {"stopSequence": 83, "arrival": {"time": "1694890359"}, "stopId": "50039"}, {"stopSequence": 84, "arrival": {"time": "1694890415"}, "stopId": "50040"}, {"stopSequence": 85, "arrival": {"time": "1694890505"}, "stopId": "50041"}, {"stopSequence": 86, "arrival": {"time": "1694890644"}, "stopId": "Jun-15"}, {"stopSequence": 87, "arrival": {"time": "1694890741"}, "stopId": "Jun-13"}, {"stopSequence": 88, "arrival": {"time": "1694890944"}, "stopId": "6-Oct"}, {"stopSequence": 89, "arrival": {"time": "1694891000"}, "stopId": "6-Aug"}, {"stopSequence": 90, "arrival": {"time": "1694891176"}, "stopId": "6-Jun"}, {"stopSequence": 91, "arrival": {"time": "1694891314"}, "stopId": "6-Feb"}, {"stopSequence": 92, "arrival": {"time": "1694891470"}, "stopId": "7-Jul"}, {"stopSequence": 93, "arrival": {"time": "1694891549"}, "stopId": "7-May"}, {"stopSequence": 94, "arrival": {"time": "1694891592"}, "stopId": "1508142"}, {"stopSequence": 95, "arrival": {"time": "1694891711"}, "stopId": "7-Feb"}, {"stopSequence": 96, "arrival": {"time": "1694891795"}, "stopId": "8-Jan"}, {"stopSequence": 97, "arrival": {"time": "1694891835"}, "stopId": "9-Jan"}, {"stopSequence": 98, "arrival": {"time": "1694891887"}, "stopId": "10-Apr"}, {"stopSequence": 99, "arrival": {"time": "1694891958"}, "stopId": "10-Jan"}, {"stopSequence": 100, "arrival": {"time": "1694892018"}, "stopId": "44863"}, {"stopSequence": 101, "arrival": {"time": "1694892061"}, "stopId": "10-Mar"}, {"stopSequence": 102, "arrival": {"time": "1694892136"}, "stopId": "11-Jan"}, {"stopSequence": 103, "arrival": {"time": "1694892207"}, "stopId": "44866"}, {"stopSequence": 104, "arrival": {"time": "1694892262"}, "stopId": "44867"}, {"stopSequence": 105, "arrival": {"time": "1694892300"}, "stopId": "44868"}, {"stopSequence": 106, "arrival": {"time": "1694892338"}, "stopId": "44869"}, {"stopSequence": 107, "arrival": {"time": "1694892385"}, "stopId": "44870"}, {"stopSequence": 108, "arrival": {"time": "1694892435"}, "stopId": "44871"}, {"stopSequence": 109, "arrival": {"time": "1694892495"}, "stopId": "44872"}, {"stopSequence": 110, "arrival": {"time": "1694892592"}, "stopId": "50020"}, {"stopSequence": 111, "arrival": {"time": "1694892728"}, "stopId": "14-11"}, {"stopSequence": 112, "arrival": {"time": "1694892791"}, "stopId": "91162"}, {"stopSequence": 113, "arrival": {"time": "1694892925"}, "stopId": "50023"}, {"stopSequence": 114, "arrival": {"time": "1694893098"}, "stopId": "14-Jul"}, {"stopSequence": 115, "arrival": {"time": "1694893165"}, "stopId": "14-Apr"}, {"stopSequence": 116, "arrival": {"time": "1694893250"}, "stopId": "37474"}, {"stopSequence": 117, "arrival": {"time": "1694893341"}, "stopId": "44879"}, {"stopSequence": 118, "arrival": {"time": "1694893383"}, "stopId": "44880"}, {"stopSequence": 119, "arrival": {"time": "1694893445"}, "stopId": "44881"}, {"stopSequence": 120, "arrival": {"time": "1694893490"}, "stopId": "50028"}], "vehicle": {"licensePlate": "JHJJ50"}, "timestamp": "1694888972"}, "vehicle": {"trip": {"tripId": "20997-701ff27f-2", "startTime": "14:48:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "595", "directionId": 1}, "position": {"latitude": -36.816204, "longitude": -73.06724, "bearing": 168.0, "odometer": 0.0, "speed": 11.666667}, "timestamp": "1694888972", "vehicle": {"licensePlate": "JHJJ50"}}}, {"id": "0ed5d52b-9dd2-400f-a8bb-fbad9df7a000", "tripUpdate": {"trip": {"tripId": "20913-701ff27f-2", "startTime": "15:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "595", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 60, "arrival": {"time": "1694888987"}, "stopId": "39641"}, {"stopSequence": 61, "arrival": {"time": "1694889020"}, "stopId": "39642"}, {"stopSequence": 62, "arrival": {"time": "1694889273"}, "stopId": "49324"}, {"stopSequence": 63, "arrival": {"time": "1694889327"}, "stopId": "49325"}, {"stopSequence": 64, "arrival": {"time": "1694889374"}, "stopId": "49326"}, {"stopSequence": 65, "arrival": {"time": "1694889407"}, "stopId": "39648"}, {"stopSequence": 66, "arrival": {"time": "1694889446"}, "stopId": "39649"}, {"stopSequence": 67, "arrival": {"time": "1694889495"}, "stopId": "45112"}, {"stopSequence": 68, "arrival": {"time": "1694889538"}, "stopId": "45113"}, {"stopSequence": 69, "arrival": {"time": "1694889611"}, "stopId": "37490"}, {"stopSequence": 70, "arrival": {"time": "1694889670"}, "stopId": "45115"}, {"stopSequence": 71, "arrival": {"time": "1694889694"}, "stopId": "45116"}, {"stopSequence": 72, "arrival": {"time": "1694889763"}, "stopId": "45118"}, {"stopSequence": 73, "arrival": {"time": "1694889836"}, "stopId": "45119"}, {"stopSequence": 74, "arrival": {"time": "1694889879"}, "stopId": "45120"}, {"stopSequence": 75, "arrival": {"time": "1694889932"}, "stopId": "45121"}, {"stopSequence": 76, "arrival": {"time": "1694889973"}, "stopId": "38535"}, {"stopSequence": 77, "arrival": {"time": "1694890047"}, "stopId": "38536"}, {"stopSequence": 78, "arrival": {"time": "1694890082"}, "stopId": "4838437"}, {"stopSequence": 79, "arrival": {"time": "1694890135"}, "stopId": "45085"}, {"stopSequence": 80, "arrival": {"time": "1694890212"}, "stopId": "45086"}, {"stopSequence": 81, "arrival": {"time": "1694890323"}, "stopId": "38540"}, {"stopSequence": 82, "arrival": {"time": "1694890400"}, "stopId": "38544"}, {"stopSequence": 83, "arrival": {"time": "1694890468"}, "stopId": "38545"}, {"stopSequence": 84, "arrival": {"time": "1694890556"}, "stopId": "38546"}, {"stopSequence": 85, "arrival": {"time": "1694890681"}, "stopId": "38548"}, {"stopSequence": 86, "arrival": {"time": "1694890748"}, "stopId": "38549"}, {"stopSequence": 87, "arrival": {"time": "1694890805"}, "stopId": "38550"}, {"stopSequence": 88, "arrival": {"time": "1694890905"}, "stopId": "38551"}, {"stopSequence": 89, "arrival": {"time": "1694890994"}, "stopId": "38552"}, {"stopSequence": 90, "arrival": {"time": "1694891080"}, "stopId": "49359"}, {"stopSequence": 91, "arrival": {"time": "1694891136"}, "stopId": "49360"}, {"stopSequence": 92, "arrival": {"time": "1694891259"}, "stopId": "49361"}, {"stopSequence": 93, "arrival": {"time": "1694891289"}, "stopId": "49362"}, {"stopSequence": 94, "arrival": {"time": "1694891342"}, "stopId": "49363"}, {"stopSequence": 95, "arrival": {"time": "1694891393"}, "stopId": "49364"}, {"stopSequence": 96, "arrival": {"time": "1694891440"}, "stopId": "49365"}, {"stopSequence": 97, "arrival": {"time": "1694891520"}, "stopId": "38560"}, {"stopSequence": 98, "arrival": {"time": "1694891565"}, "stopId": "42857"}, {"stopSequence": 99, "arrival": {"time": "1694891602"}, "stopId": "38562"}, {"stopSequence": 100, "arrival": {"time": "1694891644"}, "stopId": "38563"}, {"stopSequence": 101, "arrival": {"time": "1694891692"}, "stopId": "42854"}, {"stopSequence": 102, "arrival": {"time": "1694891814"}, "stopId": "38565"}, {"stopSequence": 103, "arrival": {"time": "1694891879"}, "stopId": "40932"}, {"stopSequence": 104, "arrival": {"time": "1694891972"}, "stopId": "38567"}, {"stopSequence": 105, "arrival": {"time": "1694892033"}, "stopId": "38568"}, {"stopSequence": 106, "arrival": {"time": "1694892072"}, "stopId": "38569"}, {"stopSequence": 107, "arrival": {"time": "1694892129"}, "stopId": "38570"}, {"stopSequence": 108, "arrival": {"time": "1694892206"}, "stopId": "38571"}, {"stopSequence": 109, "arrival": {"time": "1694892280"}, "stopId": "38572"}, {"stopSequence": 110, "arrival": {"time": "1694892527"}, "stopId": "38393"}, {"stopSequence": 111, "arrival": {"time": "1694892607"}, "stopId": "38394"}, {"stopSequence": 112, "arrival": {"time": "1694892676"}, "stopId": "38395"}, {"stopSequence": 113, "arrival": {"time": "1694892731"}, "stopId": "38396"}, {"stopSequence": 114, "arrival": {"time": "1694892828"}, "stopId": "38397"}, {"stopSequence": 115, "arrival": {"time": "1694892867"}, "stopId": "38398"}, {"stopSequence": 116, "arrival": {"time": "1694892910"}, "stopId": "38399"}, {"stopSequence": 117, "arrival": {"time": "1694893018"}, "stopId": "38400"}, {"stopSequence": 118, "arrival": {"time": "1694893101"}, "stopId": "38401"}, {"stopSequence": 119, "arrival": {"time": "1694893181"}, "stopId": "38402"}, {"stopSequence": 120, "arrival": {"time": "1694893326"}, "stopId": "38433"}], "vehicle": {"licensePlate": "JRZZ78"}, "timestamp": "1694888984"}, "vehicle": {"trip": {"tripId": "20913-701ff27f-2", "startTime": "15:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "595", "directionId": 0}, "position": {"latitude": -36.809654, "longitude": -73.07567, "bearing": 302.0, "odometer": 0.0, "speed": 6.6666665}, "timestamp": "1694888984", "vehicle": {"licensePlate": "JRZZ78"}}}, {"id": "bac3c3cb-8dbb-4f89-aefb-4b1bf910378e", "tripUpdate": {"trip": {"tripId": "20916-701ff27f-2", "startTime": "15:37:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "595", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 2, "arrival": {"time": "1694889058"}, "stopId": "44967"}, {"stopSequence": 3, "arrival": {"time": "1694889110"}, "stopId": "44968"}, {"stopSequence": 4, "arrival": {"time": "1694889167"}, "stopId": "14-May"}, {"stopSequence": 5, "arrival": {"time": "1694889199"}, "stopId": "14-Jun"}, {"stopSequence": 6, "arrival": {"time": "1694889258"}, "stopId": "14-Aug"}, {"stopSequence": 7, "arrival": {"time": "1694889305"}, "stopId": "50024"}, {"stopSequence": 8, "arrival": {"time": "1694889432"}, "stopId": "14-12"}, {"stopSequence": 9, "arrival": {"time": "1694889507"}, "stopId": "37471"}, {"stopSequence": 10, "arrival": {"time": "1694889539"}, "stopId": "37560"}, {"stopSequence": 11, "arrival": {"time": "1694889567"}, "stopId": "37564"}, {"stopSequence": 12, "arrival": {"time": "1694889604"}, "stopId": "37517"}, {"stopSequence": 13, "arrival": {"time": "1694889635"}, "stopId": "37475"}, {"stopSequence": 14, "arrival": {"time": "1694889669"}, "stopId": "37508"}, {"stopSequence": 15, "arrival": {"time": "1694889700"}, "stopId": "37476"}, {"stopSequence": 16, "arrival": {"time": "1694889725"}, "stopId": "37526"}, {"stopSequence": 17, "arrival": {"time": "1694889792"}, "stopId": "37567"}, {"stopSequence": 18, "arrival": {"time": "1694889814"}, "stopId": "13-Jan"}, {"stopSequence": 19, "arrival": {"time": "1694889934"}, "stopId": "12-3"}, {"stopSequence": 20, "arrival": {"time": "1694890009"}, "stopId": "12-Jan"}, {"stopSequence": 21, "arrival": {"time": "1694890051"}, "stopId": "12-Feb"}, {"stopSequence": 22, "arrival": {"time": "1694890102"}, "stopId": "7-Jan"}, {"stopSequence": 23, "arrival": {"time": "1694890155"}, "stopId": "7-Mar"}, {"stopSequence": 24, "arrival": {"time": "1694890294"}, "stopId": "7-Jun"}, {"stopSequence": 25, "arrival": {"time": "1694890353"}, "stopId": "7-Aug"}, {"stopSequence": 26, "arrival": {"time": "1694890496"}, "stopId": "6-Mar"}, {"stopSequence": 27, "arrival": {"time": "1694890595"}, "stopId": "6-May"}, {"stopSequence": 28, "arrival": {"time": "1694890749"}, "stopId": "6-Jul"}, {"stopSequence": 29, "arrival": {"time": "1694890821"}, "stopId": "6-Sep"}, {"stopSequence": 30, "arrival": {"time": "1694890917"}, "stopId": "6-Nov"}, {"stopSequence": 31, "arrival": {"time": "1694891025"}, "stopId": "6-Dec"}, {"stopSequence": 32, "arrival": {"time": "1694891122"}, "stopId": "Jun-14"}, {"stopSequence": 33, "arrival": {"time": "1694891290"}, "stopId": "Jun-17"}, {"stopSequence": 34, "arrival": {"time": "1694891380"}, "stopId": "Jun-19"}, {"stopSequence": 35, "arrival": {"time": "1694891449"}, "stopId": "Jun-20"}, {"stopSequence": 36, "arrival": {"time": "1694891521"}, "stopId": "Jun-22"}, {"stopSequence": 37, "arrival": {"time": "1694891598"}, "stopId": "Jun-24"}, {"stopSequence": 38, "arrival": {"time": "1694891707"}, "stopId": "Jun-25"}, {"stopSequence": 39, "arrival": {"time": "1694892077"}, "stopId": "90003"}, {"stopSequence": 40, "arrival": {"time": "1694892140"}, "stopId": "90007"}, {"stopSequence": 41, "arrival": {"time": "1694892210"}, "stopId": "90008"}, {"stopSequence": 42, "arrival": {"time": "1694892369"}, "stopId": "39599"}, {"stopSequence": 43, "arrival": {"time": "1694892402"}, "stopId": "39600"}, {"stopSequence": 44, "arrival": {"time": "1694892501"}, "stopId": "37496"}, {"stopSequence": 45, "arrival": {"time": "1694892576"}, "stopId": "45064"}, {"stopSequence": 46, "arrival": {"time": "1694892692"}, "stopId": "37506"}, {"stopSequence": 47, "arrival": {"time": "1694892813"}, "stopId": "45069"}, {"stopSequence": 48, "arrival": {"time": "1694893002"}, "stopId": "37523"}, {"stopSequence": 49, "arrival": {"time": "1694893072"}, "stopId": "37477"}, {"stopSequence": 50, "arrival": {"time": "1694893229"}, "stopId": "49310"}, {"stopSequence": 51, "arrival": {"time": "1694893287"}, "stopId": "49311"}, {"stopSequence": 52, "arrival": {"time": "1694893393"}, "stopId": "39634"}, {"stopSequence": 53, "arrival": {"time": "1694893442"}, "stopId": "39635"}, {"stopSequence": 54, "arrival": {"time": "1694893533"}, "stopId": "39636"}, {"stopSequence": 55, "arrival": {"time": "1694893638"}, "stopId": "49503"}, {"stopSequence": 56, "arrival": {"time": "1694893911"}, "stopId": "39637"}, {"stopSequence": 57, "arrival": {"time": "1694894022"}, "stopId": "49317"}, {"stopSequence": 58, "arrival": {"time": "1694894095"}, "stopId": "49318"}, {"stopSequence": 59, "arrival": {"time": "1694894251"}, "stopId": "49319"}, {"stopSequence": 60, "arrival": {"time": "1694894407"}, "stopId": "39641"}, {"stopSequence": 61, "arrival": {"time": "1694894485"}, "stopId": "39642"}, {"stopSequence": 62, "arrival": {"time": "1694895155"}, "stopId": "49324"}, {"stopSequence": 63, "arrival": {"time": "1694895316"}, "stopId": "49325"}, {"stopSequence": 64, "arrival": {"time": "1694895463"}, "stopId": "49326"}, {"stopSequence": 65, "arrival": {"time": "1694895573"}, "stopId": "39648"}, {"stopSequence": 66, "arrival": {"time": "1694895702"}, "stopId": "39649"}, {"stopSequence": 67, "arrival": {"time": "1694895871"}, "stopId": "45112"}, {"stopSequence": 68, "arrival": {"time": "1694896029"}, "stopId": "45113"}, {"stopSequence": 69, "arrival": {"time": "1694896307"}, "stopId": "37490"}, {"stopSequence": 70, "arrival": {"time": "1694896547"}, "stopId": "45115"}, {"stopSequence": 71, "arrival": {"time": "1694896648"}, "stopId": "45116"}, {"stopSequence": 72, "arrival": {"time": "1694896953"}, "stopId": "45118"}, {"stopSequence": 73, "arrival": {"time": "1694897297"}, "stopId": "45119"}, {"stopSequence": 74, "arrival": {"time": "1694897515"}, "stopId": "45120"}, {"stopSequence": 75, "arrival": {"time": "1694897796"}, "stopId": "45121"}, {"stopSequence": 76, "arrival": {"time": "1694898019"}, "stopId": "38535"}, {"stopSequence": 77, "arrival": {"time": "1694898455"}, "stopId": "38536"}, {"stopSequence": 78, "arrival": {"time": "1694898672"}, "stopId": "4838437"}, {"stopSequence": 79, "arrival": {"time": "1694899019"}, "stopId": "45085"}, {"stopSequence": 80, "arrival": {"time": "1694899561"}, "stopId": "45086"}, {"stopSequence": 81, "arrival": {"time": "1694900437"}, "stopId": "38540"}, {"stopSequence": 82, "arrival": {"time": "1694901114"}, "stopId": "38544"}, {"stopSequence": 83, "arrival": {"time": "1694901771"}, "stopId": "38545"}, {"stopSequence": 84, "arrival": {"time": "1694902718"}, "stopId": "38546"}, {"stopSequence": 85, "arrival": {"time": "1694904264"}, "stopId": "38548"}, {"stopSequence": 86, "arrival": {"time": "1694905231"}, "stopId": "38549"}, {"stopSequence": 87, "arrival": {"time": "1694906135"}, "stopId": "38550"}, {"stopSequence": 88, "arrival": {"time": "1694907930"}, "stopId": "38551"}, {"stopSequence": 89, "arrival": {"time": "1694909838"}, "stopId": "38552"}, {"stopSequence": 90, "arrival": {"time": "1694912002"}, "stopId": "49359"}, {"stopSequence": 91, "arrival": {"time": "1694913638"}, "stopId": "49360"}, {"stopSequence": 92, "arrival": {"time": "1694918028"}, "stopId": "49361"}, {"stopSequence": 93, "arrival": {"time": "1694919342"}, "stopId": "49362"}, {"stopSequence": 94, "arrival": {"time": "1694921894"}, "stopId": "49363"}, {"stopSequence": 95, "arrival": {"time": "1694924716"}, "stopId": "49364"}, {"stopSequence": 96, "arrival": {"time": "1694927749"}, "stopId": "49365"}, {"stopSequence": 97, "arrival": {"time": "1694934162"}, "stopId": "38560"}, {"stopSequence": 98, "arrival": {"time": "1694938740"}, "stopId": "42857"}, {"stopSequence": 99, "arrival": {"time": "1694943165"}, "stopId": "38562"}, {"stopSequence": 100, "arrival": {"time": "1694949056"}, "stopId": "38563"}, {"stopSequence": 101, "arrival": {"time": "1694957520"}, "stopId": "42854"}, {"stopSequence": 102, "arrival": {"time": "1694994358"}, "stopId": "38565"}, {"stopSequence": 103, "arrival": {"time": "1695034704"}, "stopId": "40932"}, {"stopSequence": 104, "arrival": {"time": "1695202340"}, "stopId": "38567"}, {"stopSequence": 105, "arrival": {"time": "1696120712"}, "stopId": "38568"}], "vehicle": {"licensePlate": "WW3308"}, "timestamp": "1694889000"}, "vehicle": {"trip": {"tripId": "20916-701ff27f-2", "startTime": "15:37:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "595", "directionId": 0}, "position": {"latitude": -36.713024, "longitude": -72.9758, "bearing": 184.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889000", "vehicle": {"licensePlate": "WW3308"}}}, {"id": "362d640f-2223-49c7-89f5-1cc8f1a3e215", "tripUpdate": {"trip": {"tripId": "20999-701ff27f-2", "startTime": "15:18:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "595", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 17, "arrival": {"time": "1694889054"}, "stopId": "40932"}, {"stopSequence": 18, "arrival": {"time": "1694889103"}, "stopId": "42853"}, {"stopSequence": 19, "arrival": {"time": "1694889196"}, "stopId": "42854"}, {"stopSequence": 20, "arrival": {"time": "1694889254"}, "stopId": "42855"}, {"stopSequence": 21, "arrival": {"time": "1694889292"}, "stopId": "41975"}, {"stopSequence": 22, "arrival": {"time": "1694889315"}, "stopId": "42857"}, {"stopSequence": 23, "arrival": {"time": "1694889387"}, "stopId": "49108"}, {"stopSequence": 24, "arrival": {"time": "1694889432"}, "stopId": "49109"}, {"stopSequence": 25, "arrival": {"time": "1694889467"}, "stopId": "40363"}, {"stopSequence": 26, "arrival": {"time": "1694889631"}, "stopId": "38768"}, {"stopSequence": 27, "arrival": {"time": "1694889675"}, "stopId": "38769"}, {"stopSequence": 28, "arrival": {"time": "1694889715"}, "stopId": "49357"}, {"stopSequence": 29, "arrival": {"time": "1694889754"}, "stopId": "38771"}, {"stopSequence": 30, "arrival": {"time": "1694889797"}, "stopId": "38668"}, {"stopSequence": 31, "arrival": {"time": "1694889892"}, "stopId": "38661"}, {"stopSequence": 32, "arrival": {"time": "1694889973"}, "stopId": "38657"}, {"stopSequence": 33, "arrival": {"time": "1694890032"}, "stopId": "38743"}, {"stopSequence": 34, "arrival": {"time": "1694890096"}, "stopId": "38652"}, {"stopSequence": 35, "arrival": {"time": "1694890150"}, "stopId": "38721"}, {"stopSequence": 36, "arrival": {"time": "1694890208"}, "stopId": "38659"}, {"stopSequence": 37, "arrival": {"time": "1694890296"}, "stopId": "38674"}, {"stopSequence": 38, "arrival": {"time": "1694890364"}, "stopId": "38649"}, {"stopSequence": 39, "arrival": {"time": "1694890430"}, "stopId": "38718"}, {"stopSequence": 40, "arrival": {"time": "1694890497"}, "stopId": "38735"}, {"stopSequence": 41, "arrival": {"time": "1694890558"}, "stopId": "42270"}, {"stopSequence": 42, "arrival": {"time": "1694890605"}, "stopId": "42271"}, {"stopSequence": 43, "arrival": {"time": "1694890803"}, "stopId": "38688"}, {"stopSequence": 44, "arrival": {"time": "1694890861"}, "stopId": "38673"}, {"stopSequence": 45, "arrival": {"time": "1694890941"}, "stopId": "39785"}, {"stopSequence": 46, "arrival": {"time": "1694890982"}, "stopId": "38664"}, {"stopSequence": 47, "arrival": {"time": "1694891039"}, "stopId": "38702"}, {"stopSequence": 48, "arrival": {"time": "1694891086"}, "stopId": "39787"}, {"stopSequence": 49, "arrival": {"time": "1694891131"}, "stopId": "38501"}, {"stopSequence": 50, "arrival": {"time": "1694891204"}, "stopId": "38692"}, {"stopSequence": 51, "arrival": {"time": "1694891281"}, "stopId": "38714"}, {"stopSequence": 52, "arrival": {"time": "1694891334"}, "stopId": "39791"}, {"stopSequence": 53, "arrival": {"time": "1694891366"}, "stopId": "38506"}, {"stopSequence": 54, "arrival": {"time": "1694891422"}, "stopId": "38635"}, {"stopSequence": 55, "arrival": {"time": "1694891461"}, "stopId": "38509"}, {"stopSequence": 56, "arrival": {"time": "1694891512"}, "stopId": "38642"}, {"stopSequence": 57, "arrival": {"time": "1694891564"}, "stopId": "39795"}, {"stopSequence": 58, "arrival": {"time": "1694891603"}, "stopId": "38502"}, {"stopSequence": 59, "arrival": {"time": "1694891675"}, "stopId": "38503"}, {"stopSequence": 60, "arrival": {"time": "1694891872"}, "stopId": "35691"}, {"stopSequence": 61, "arrival": {"time": "1694891925"}, "stopId": "35692"}, {"stopSequence": 62, "arrival": {"time": "1694892001"}, "stopId": "35693"}, {"stopSequence": 63, "arrival": {"time": "1694892073"}, "stopId": "35694"}, {"stopSequence": 64, "arrival": {"time": "1694892128"}, "stopId": "35695"}, {"stopSequence": 65, "arrival": {"time": "1694892193"}, "stopId": "35696"}, {"stopSequence": 66, "arrival": {"time": "1694892438"}, "stopId": "35697"}, {"stopSequence": 67, "arrival": {"time": "1694892620"}, "stopId": "39778"}, {"stopSequence": 68, "arrival": {"time": "1694892787"}, "stopId": "35797"}, {"stopSequence": 69, "arrival": {"time": "1694892865"}, "stopId": "35798"}, {"stopSequence": 70, "arrival": {"time": "1694892919"}, "stopId": "35799"}, {"stopSequence": 71, "arrival": {"time": "1694893038"}, "stopId": "35800"}, {"stopSequence": 72, "arrival": {"time": "1694893125"}, "stopId": "35801"}, {"stopSequence": 73, "arrival": {"time": "1694893171"}, "stopId": "35802"}, {"stopSequence": 74, "arrival": {"time": "1694893257"}, "stopId": "35803"}, {"stopSequence": 75, "arrival": {"time": "1694893361"}, "stopId": "38507"}, {"stopSequence": 76, "arrival": {"time": "1694893459"}, "stopId": "34473"}, {"stopSequence": 77, "arrival": {"time": "1694893545"}, "stopId": "38500"}, {"stopSequence": 78, "arrival": {"time": "1694893638"}, "stopId": "35808"}, {"stopSequence": 79, "arrival": {"time": "1694893758"}, "stopId": "35710"}, {"stopSequence": 80, "arrival": {"time": "1694893854"}, "stopId": "50036"}, {"stopSequence": 81, "arrival": {"time": "1694894385"}, "stopId": "50037"}, {"stopSequence": 82, "arrival": {"time": "1694894759"}, "stopId": "50038"}, {"stopSequence": 83, "arrival": {"time": "1694894972"}, "stopId": "50039"}, {"stopSequence": 84, "arrival": {"time": "1694895136"}, "stopId": "50040"}, {"stopSequence": 85, "arrival": {"time": "1694895415"}, "stopId": "50041"}, {"stopSequence": 86, "arrival": {"time": "1694895880"}, "stopId": "Jun-15"}, {"stopSequence": 87, "arrival": {"time": "1694896231"}, "stopId": "Jun-13"}, {"stopSequence": 88, "arrival": {"time": "1694897039"}, "stopId": "6-Oct"}, {"stopSequence": 89, "arrival": {"time": "1694897283"}, "stopId": "6-Aug"}, {"stopSequence": 90, "arrival": {"time": "1694898115"}, "stopId": "6-Jun"}, {"stopSequence": 91, "arrival": {"time": "1694898848"}, "stopId": "6-Feb"}, {"stopSequence": 92, "arrival": {"time": "1694899774"}, "stopId": "7-Jul"}, {"stopSequence": 93, "arrival": {"time": "1694900290"}, "stopId": "7-May"}, {"stopSequence": 94, "arrival": {"time": "1694900582"}, "stopId": "1508142"}, {"stopSequence": 95, "arrival": {"time": "1694901450"}, "stopId": "7-Feb"}, {"stopSequence": 96, "arrival": {"time": "1694902121"}, "stopId": "8-Jan"}, {"stopSequence": 97, "arrival": {"time": "1694902456"}, "stopId": "9-Jan"}, {"stopSequence": 98, "arrival": {"time": "1694902912"}, "stopId": "10-Apr"}, {"stopSequence": 99, "arrival": {"time": "1694903573"}, "stopId": "10-Jan"}, {"stopSequence": 100, "arrival": {"time": "1694904169"}, "stopId": "44863"}, {"stopSequence": 101, "arrival": {"time": "1694904609"}, "stopId": "10-Mar"}, {"stopSequence": 102, "arrival": {"time": "1694905439"}, "stopId": "11-Jan"}, {"stopSequence": 103, "arrival": {"time": "1694906285"}, "stopId": "44866"}, {"stopSequence": 104, "arrival": {"time": "1694906982"}, "stopId": "44867"}, {"stopSequence": 105, "arrival": {"time": "1694907484"}, "stopId": "44868"}, {"stopSequence": 106, "arrival": {"time": "1694908023"}, "stopId": "44869"}, {"stopSequence": 107, "arrival": {"time": "1694908714"}, "stopId": "44870"}, {"stopSequence": 108, "arrival": {"time": "1694909483"}, "stopId": "44871"}, {"stopSequence": 109, "arrival": {"time": "1694910470"}, "stopId": "44872"}, {"stopSequence": 110, "arrival": {"time": "1694912241"}, "stopId": "50020"}, {"stopSequence": 111, "arrival": {"time": "1694915137"}, "stopId": "14-11"}, {"stopSequence": 112, "arrival": {"time": "1694916682"}, "stopId": "91162"}, {"stopSequence": 113, "arrival": {"time": "1694920520"}, "stopId": "50023"}, {"stopSequence": 114, "arrival": {"time": "1694926951"}, "stopId": "14-Jul"}, {"stopSequence": 115, "arrival": {"time": "1694930055"}, "stopId": "14-Apr"}, {"stopSequence": 116, "arrival": {"time": "1694934714"}, "stopId": "37474"}, {"stopSequence": 117, "arrival": {"time": "1694940773"}, "stopId": "44879"}, {"stopSequence": 118, "arrival": {"time": "1694944145"}, "stopId": "44880"}, {"stopSequence": 119, "arrival": {"time": "1694949743"}, "stopId": "44881"}, {"stopSequence": 120, "arrival": {"time": "1694954596"}, "stopId": "50028"}], "vehicle": {"licensePlate": "ZN7803"}, "timestamp": "1694889012"}, "vehicle": {"trip": {"tripId": "20999-701ff27f-2", "startTime": "15:18:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "595", "directionId": 1}, "position": {"latitude": -36.724804, "longitude": -73.11804, "bearing": 122.0, "odometer": 0.0, "speed": 3.6111112}, "timestamp": "1694889012", "vehicle": {"licensePlate": "ZN7803"}}}, {"id": "ae3c02f6-8010-4ba7-ad73-cf8d258b6bcf", "tripUpdate": {"trip": {"tripId": "21000-701ff27f-2", "startTime": "15:33:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "595", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 16, "arrival": {"time": "1694889010"}, "stopId": "40947"}, {"stopSequence": 17, "arrival": {"time": "1694889096"}, "stopId": "40932"}, {"stopSequence": 18, "arrival": {"time": "1694889146"}, "stopId": "42853"}, {"stopSequence": 19, "arrival": {"time": "1694889237"}, "stopId": "42854"}, {"stopSequence": 20, "arrival": {"time": "1694889295"}, "stopId": "42855"}, {"stopSequence": 21, "arrival": {"time": "1694889333"}, "stopId": "41975"}, {"stopSequence": 22, "arrival": {"time": "1694889355"}, "stopId": "42857"}, {"stopSequence": 23, "arrival": {"time": "1694889427"}, "stopId": "49108"}, {"stopSequence": 24, "arrival": {"time": "1694889472"}, "stopId": "49109"}, {"stopSequence": 25, "arrival": {"time": "1694889507"}, "stopId": "40363"}, {"stopSequence": 26, "arrival": {"time": "1694889670"}, "stopId": "38768"}, {"stopSequence": 27, "arrival": {"time": "1694889714"}, "stopId": "38769"}, {"stopSequence": 28, "arrival": {"time": "1694889754"}, "stopId": "49357"}, {"stopSequence": 29, "arrival": {"time": "1694889793"}, "stopId": "38771"}, {"stopSequence": 30, "arrival": {"time": "1694889836"}, "stopId": "38668"}, {"stopSequence": 31, "arrival": {"time": "1694889931"}, "stopId": "38661"}, {"stopSequence": 32, "arrival": {"time": "1694890012"}, "stopId": "38657"}, {"stopSequence": 33, "arrival": {"time": "1694890071"}, "stopId": "38743"}, {"stopSequence": 34, "arrival": {"time": "1694890135"}, "stopId": "38652"}, {"stopSequence": 35, "arrival": {"time": "1694890189"}, "stopId": "38721"}, {"stopSequence": 36, "arrival": {"time": "1694890246"}, "stopId": "38659"}, {"stopSequence": 37, "arrival": {"time": "1694890335"}, "stopId": "38674"}, {"stopSequence": 38, "arrival": {"time": "1694890404"}, "stopId": "38649"}, {"stopSequence": 39, "arrival": {"time": "1694890470"}, "stopId": "38718"}, {"stopSequence": 40, "arrival": {"time": "1694890537"}, "stopId": "38735"}, {"stopSequence": 41, "arrival": {"time": "1694890598"}, "stopId": "42270"}, {"stopSequence": 42, "arrival": {"time": "1694890646"}, "stopId": "42271"}, {"stopSequence": 43, "arrival": {"time": "1694890844"}, "stopId": "38688"}, {"stopSequence": 44, "arrival": {"time": "1694890903"}, "stopId": "38673"}, {"stopSequence": 45, "arrival": {"time": "1694890983"}, "stopId": "39785"}, {"stopSequence": 46, "arrival": {"time": "1694891024"}, "stopId": "38664"}, {"stopSequence": 47, "arrival": {"time": "1694891082"}, "stopId": "38702"}, {"stopSequence": 48, "arrival": {"time": "1694891130"}, "stopId": "39787"}, {"stopSequence": 49, "arrival": {"time": "1694891175"}, "stopId": "38501"}, {"stopSequence": 50, "arrival": {"time": "1694891249"}, "stopId": "38692"}, {"stopSequence": 51, "arrival": {"time": "1694891326"}, "stopId": "38714"}, {"stopSequence": 52, "arrival": {"time": "1694891380"}, "stopId": "39791"}, {"stopSequence": 53, "arrival": {"time": "1694891412"}, "stopId": "38506"}, {"stopSequence": 54, "arrival": {"time": "1694891469"}, "stopId": "38635"}, {"stopSequence": 55, "arrival": {"time": "1694891508"}, "stopId": "38509"}, {"stopSequence": 56, "arrival": {"time": "1694891560"}, "stopId": "38642"}, {"stopSequence": 57, "arrival": {"time": "1694891612"}, "stopId": "39795"}, {"stopSequence": 58, "arrival": {"time": "1694891652"}, "stopId": "38502"}, {"stopSequence": 59, "arrival": {"time": "1694891725"}, "stopId": "38503"}, {"stopSequence": 60, "arrival": {"time": "1694891925"}, "stopId": "35691"}, {"stopSequence": 61, "arrival": {"time": "1694891978"}, "stopId": "35692"}, {"stopSequence": 62, "arrival": {"time": "1694892055"}, "stopId": "35693"}, {"stopSequence": 63, "arrival": {"time": "1694892129"}, "stopId": "35694"}, {"stopSequence": 64, "arrival": {"time": "1694892184"}, "stopId": "35695"}, {"stopSequence": 65, "arrival": {"time": "1694892250"}, "stopId": "35696"}, {"stopSequence": 66, "arrival": {"time": "1694892500"}, "stopId": "35697"}, {"stopSequence": 67, "arrival": {"time": "1694892685"}, "stopId": "39778"}, {"stopSequence": 68, "arrival": {"time": "1694892855"}, "stopId": "35797"}, {"stopSequence": 69, "arrival": {"time": "1694892934"}, "stopId": "35798"}, {"stopSequence": 70, "arrival": {"time": "1694892989"}, "stopId": "35799"}, {"stopSequence": 71, "arrival": {"time": "1694893111"}, "stopId": "35800"}, {"stopSequence": 72, "arrival": {"time": "1694893200"}, "stopId": "35801"}, {"stopSequence": 73, "arrival": {"time": "1694893247"}, "stopId": "35802"}, {"stopSequence": 74, "arrival": {"time": "1694893336"}, "stopId": "35803"}, {"stopSequence": 75, "arrival": {"time": "1694893442"}, "stopId": "38507"}, {"stopSequence": 76, "arrival": {"time": "1694893541"}, "stopId": "34473"}, {"stopSequence": 77, "arrival": {"time": "1694893630"}, "stopId": "38500"}, {"stopSequence": 78, "arrival": {"time": "1694893725"}, "stopId": "35808"}, {"stopSequence": 79, "arrival": {"time": "1694893848"}, "stopId": "35710"}, {"stopSequence": 80, "arrival": {"time": "1694893946"}, "stopId": "50036"}, {"stopSequence": 81, "arrival": {"time": "1694894492"}, "stopId": "50037"}, {"stopSequence": 82, "arrival": {"time": "1694894876"}, "stopId": "50038"}, {"stopSequence": 83, "arrival": {"time": "1694895096"}, "stopId": "50039"}, {"stopSequence": 84, "arrival": {"time": "1694895265"}, "stopId": "50040"}, {"stopSequence": 85, "arrival": {"time": "1694895553"}, "stopId": "50041"}, {"stopSequence": 86, "arrival": {"time": "1694896034"}, "stopId": "Jun-15"}, {"stopSequence": 87, "arrival": {"time": "1694896398"}, "stopId": "Jun-13"}, {"stopSequence": 88, "arrival": {"time": "1694897238"}, "stopId": "6-Oct"}, {"stopSequence": 89, "arrival": {"time": "1694897492"}, "stopId": "6-Aug"}, {"stopSequence": 90, "arrival": {"time": "1694898362"}, "stopId": "6-Jun"}, {"stopSequence": 91, "arrival": {"time": "1694899129"}, "stopId": "6-Feb"}, {"stopSequence": 92, "arrival": {"time": "1694900104"}, "stopId": "7-Jul"}, {"stopSequence": 93, "arrival": {"time": "1694900649"}, "stopId": "7-May"}, {"stopSequence": 94, "arrival": {"time": "1694900958"}, "stopId": "1508142"}, {"stopSequence": 95, "arrival": {"time": "1694901879"}, "stopId": "7-Feb"}, {"stopSequence": 96, "arrival": {"time": "1694902593"}, "stopId": "8-Jan"}, {"stopSequence": 97, "arrival": {"time": "1694902951"}, "stopId": "9-Jan"}, {"stopSequence": 98, "arrival": {"time": "1694903438"}, "stopId": "10-Apr"}, {"stopSequence": 99, "arrival": {"time": "1694904147"}, "stopId": "10-Jan"}, {"stopSequence": 100, "arrival": {"time": "1694904787"}, "stopId": "44863"}, {"stopSequence": 101, "arrival": {"time": "1694905262"}, "stopId": "10-Mar"}, {"stopSequence": 102, "arrival": {"time": "1694906159"}, "stopId": "11-Jan"}, {"stopSequence": 103, "arrival": {"time": "1694907077"}, "stopId": "44866"}, {"stopSequence": 104, "arrival": {"time": "1694907836"}, "stopId": "44867"}, {"stopSequence": 105, "arrival": {"time": "1694908385"}, "stopId": "44868"}, {"stopSequence": 106, "arrival": {"time": "1694908975"}, "stopId": "44869"}, {"stopSequence": 107, "arrival": {"time": "1694909734"}, "stopId": "44870"}, {"stopSequence": 108, "arrival": {"time": "1694910581"}, "stopId": "44871"}, {"stopSequence": 109, "arrival": {"time": "1694911673"}, "stopId": "44872"}, {"stopSequence": 110, "arrival": {"time": "1694913645"}, "stopId": "50020"}, {"stopSequence": 111, "arrival": {"time": "1694916907"}, "stopId": "14-11"}, {"stopSequence": 112, "arrival": {"time": "1694918665"}, "stopId": "91162"}, {"stopSequence": 113, "arrival": {"time": "1694923090"}, "stopId": "50023"}, {"stopSequence": 114, "arrival": {"time": "1694930692"}, "stopId": "14-Jul"}, {"stopSequence": 115, "arrival": {"time": "1694934448"}, "stopId": "14-Apr"}, {"stopSequence": 116, "arrival": {"time": "1694940196"}, "stopId": "37474"}, {"stopSequence": 117, "arrival": {"time": "1694947874"}, "stopId": "44879"}, {"stopSequence": 118, "arrival": {"time": "1694952252"}, "stopId": "44880"}, {"stopSequence": 119, "arrival": {"time": "1694959688"}, "stopId": "44881"}, {"stopSequence": 120, "arrival": {"time": "1694966312"}, "stopId": "50028"}], "vehicle": {"licensePlate": "ZY5139"}, "timestamp": "1694889008"}, "vehicle": {"trip": {"tripId": "21000-701ff27f-2", "startTime": "15:33:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "595", "directionId": 1}, "position": {"latitude": -36.72472, "longitude": -73.12035, "bearing": 118.0, "odometer": 0.0, "speed": 2.7777777}, "timestamp": "1694889008", "vehicle": {"licensePlate": "ZY5139"}}}, {"id": "e27fde01-7114-4fb2-9308-a015d68c4ea3", "tripUpdate": {"trip": {"tripId": "21557-701ff27f-2", "startTime": "14:48:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "598", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 34, "arrival": {"time": "1694888987"}, "stopId": "39636"}, {"stopSequence": 35, "arrival": {"time": "1694889177"}, "stopId": "39637"}, {"stopSequence": 36, "arrival": {"time": "1694889229"}, "stopId": "49317"}, {"stopSequence": 37, "arrival": {"time": "1694889261"}, "stopId": "49318"}, {"stopSequence": 38, "arrival": {"time": "1694889329"}, "stopId": "49319"}, {"stopSequence": 39, "arrival": {"time": "1694889393"}, "stopId": "39641"}, {"stopSequence": 40, "arrival": {"time": "1694889626"}, "stopId": "49323"}, {"stopSequence": 41, "arrival": {"time": "1694889705"}, "stopId": "49325"}, {"stopSequence": 42, "arrival": {"time": "1694889767"}, "stopId": "49326"}, {"stopSequence": 43, "arrival": {"time": "1694889786"}, "stopId": "39648"}, {"stopSequence": 44, "arrival": {"time": "1694889856"}, "stopId": "36115"}, {"stopSequence": 45, "arrival": {"time": "1694889906"}, "stopId": "36116"}, {"stopSequence": 46, "arrival": {"time": "1694889938"}, "stopId": "8606049"}, {"stopSequence": 47, "arrival": {"time": "1694889984"}, "stopId": "37428"}, {"stopSequence": 48, "arrival": {"time": "1694890024"}, "stopId": "37429"}, {"stopSequence": 49, "arrival": {"time": "1694890055"}, "stopId": "37430"}, {"stopSequence": 50, "arrival": {"time": "1694890086"}, "stopId": "37431"}, {"stopSequence": 51, "arrival": {"time": "1694890115"}, "stopId": "37432"}, {"stopSequence": 52, "arrival": {"time": "1694890181"}, "stopId": "40720"}, {"stopSequence": 53, "arrival": {"time": "1694890193"}, "stopId": "40721"}, {"stopSequence": 54, "arrival": {"time": "1694890232"}, "stopId": "40722"}, {"stopSequence": 55, "arrival": {"time": "1694890237"}, "stopId": "40723"}, {"stopSequence": 56, "arrival": {"time": "1694890270"}, "stopId": "40724"}, {"stopSequence": 57, "arrival": {"time": "1694890340"}, "stopId": "40725"}, {"stopSequence": 58, "arrival": {"time": "1694890369"}, "stopId": "37435"}, {"stopSequence": 59, "arrival": {"time": "1694890411"}, "stopId": "39658"}, {"stopSequence": 60, "arrival": {"time": "1694890453"}, "stopId": "39659"}, {"stopSequence": 61, "arrival": {"time": "1694890481"}, "stopId": "39660"}, {"stopSequence": 62, "arrival": {"time": "1694890510"}, "stopId": "39661"}, {"stopSequence": 63, "arrival": {"time": "1694890557"}, "stopId": "39662"}, {"stopSequence": 64, "arrival": {"time": "1694890615"}, "stopId": "39663"}, {"stopSequence": 65, "arrival": {"time": "1694890660"}, "stopId": "39664"}, {"stopSequence": 66, "arrival": {"time": "1694890707"}, "stopId": "39665"}, {"stopSequence": 67, "arrival": {"time": "1694890831"}, "stopId": "42655"}, {"stopSequence": 68, "arrival": {"time": "1694890879"}, "stopId": "49342"}], "vehicle": {"licensePlate": "DWHG74"}, "timestamp": "1694888986"}, "vehicle": {"trip": {"tripId": "21557-701ff27f-2", "startTime": "14:48:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "598", "directionId": 1}, "position": {"latitude": -36.823296, "longitude": -73.06303, "bearing": 326.0, "odometer": 0.0, "speed": 4.4444447}, "timestamp": "1694888986", "vehicle": {"licensePlate": "DWHG74"}}}, {"id": "97e8d47e-9423-4c19-8cef-a06601d2c8e2", "tripUpdate": {"trip": {"tripId": "21559-701ff27f-2", "startTime": "15:12:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "598", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 13, "arrival": {"time": "1694889022"}, "stopId": "35727"}, {"stopSequence": 14, "arrival": {"time": "1694889100"}, "stopId": "35820"}, {"stopSequence": 15, "arrival": {"time": "1694889138"}, "stopId": "35729"}, {"stopSequence": 16, "arrival": {"time": "1694889170"}, "stopId": "35730"}, {"stopSequence": 17, "arrival": {"time": "1694889203"}, "stopId": "35731"}, {"stopSequence": 18, "arrival": {"time": "1694889267"}, "stopId": "35201"}, {"stopSequence": 19, "arrival": {"time": "1694889360"}, "stopId": "35202"}, {"stopSequence": 20, "arrival": {"time": "1694889390"}, "stopId": "35203"}, {"stopSequence": 21, "arrival": {"time": "1694889457"}, "stopId": "1-Feb"}, {"stopSequence": 22, "arrival": {"time": "1694889502"}, "stopId": "1-Mar"}, {"stopSequence": 23, "arrival": {"time": "1694889535"}, "stopId": "37465"}, {"stopSequence": 24, "arrival": {"time": "1694889633"}, "stopId": "39599"}, {"stopSequence": 25, "arrival": {"time": "1694889707"}, "stopId": "45011"}, {"stopSequence": 26, "arrival": {"time": "1694889805"}, "stopId": "39623"}, {"stopSequence": 27, "arrival": {"time": "1694889852"}, "stopId": "39624"}, {"stopSequence": 28, "arrival": {"time": "1694889916"}, "stopId": "90000"}, {"stopSequence": 29, "arrival": {"time": "1694889966"}, "stopId": "39628"}, {"stopSequence": 30, "arrival": {"time": "1694890040"}, "stopId": "39631"}, {"stopSequence": 31, "arrival": {"time": "1694890086"}, "stopId": "49311"}, {"stopSequence": 32, "arrival": {"time": "1694890140"}, "stopId": "39634"}, {"stopSequence": 33, "arrival": {"time": "1694890165"}, "stopId": "39635"}, {"stopSequence": 34, "arrival": {"time": "1694890210"}, "stopId": "39636"}, {"stopSequence": 35, "arrival": {"time": "1694890386"}, "stopId": "39637"}, {"stopSequence": 36, "arrival": {"time": "1694890435"}, "stopId": "49317"}, {"stopSequence": 37, "arrival": {"time": "1694890467"}, "stopId": "49318"}, {"stopSequence": 38, "arrival": {"time": "1694890532"}, "stopId": "49319"}, {"stopSequence": 39, "arrival": {"time": "1694890596"}, "stopId": "39641"}, {"stopSequence": 40, "arrival": {"time": "1694890834"}, "stopId": "49323"}, {"stopSequence": 41, "arrival": {"time": "1694890918"}, "stopId": "49325"}, {"stopSequence": 42, "arrival": {"time": "1694890985"}, "stopId": "49326"}, {"stopSequence": 43, "arrival": {"time": "1694891006"}, "stopId": "39648"}, {"stopSequence": 44, "arrival": {"time": "1694891083"}, "stopId": "36115"}, {"stopSequence": 45, "arrival": {"time": "1694891139"}, "stopId": "36116"}, {"stopSequence": 46, "arrival": {"time": "1694891174"}, "stopId": "8606049"}, {"stopSequence": 47, "arrival": {"time": "1694891227"}, "stopId": "37428"}, {"stopSequence": 48, "arrival": {"time": "1694891273"}, "stopId": "37429"}, {"stopSequence": 49, "arrival": {"time": "1694891309"}, "stopId": "37430"}, {"stopSequence": 50, "arrival": {"time": "1694891346"}, "stopId": "37431"}, {"stopSequence": 51, "arrival": {"time": "1694891379"}, "stopId": "37432"}, {"stopSequence": 52, "arrival": {"time": "1694891457"}, "stopId": "40720"}, {"stopSequence": 53, "arrival": {"time": "1694891472"}, "stopId": "40721"}, {"stopSequence": 54, "arrival": {"time": "1694891519"}, "stopId": "40722"}, {"stopSequence": 55, "arrival": {"time": "1694891525"}, "stopId": "40723"}, {"stopSequence": 56, "arrival": {"time": "1694891565"}, "stopId": "40724"}, {"stopSequence": 57, "arrival": {"time": "1694891651"}, "stopId": "40725"}, {"stopSequence": 58, "arrival": {"time": "1694891687"}, "stopId": "37435"}, {"stopSequence": 59, "arrival": {"time": "1694891739"}, "stopId": "39658"}, {"stopSequence": 60, "arrival": {"time": "1694891793"}, "stopId": "39659"}, {"stopSequence": 61, "arrival": {"time": "1694891828"}, "stopId": "39660"}, {"stopSequence": 62, "arrival": {"time": "1694891866"}, "stopId": "39661"}, {"stopSequence": 63, "arrival": {"time": "1694891926"}, "stopId": "39662"}, {"stopSequence": 64, "arrival": {"time": "1694892003"}, "stopId": "39663"}, {"stopSequence": 65, "arrival": {"time": "1694892063"}, "stopId": "39664"}, {"stopSequence": 66, "arrival": {"time": "1694892124"}, "stopId": "39665"}, {"stopSequence": 67, "arrival": {"time": "1694892294"}, "stopId": "42655"}, {"stopSequence": 68, "arrival": {"time": "1694892361"}, "stopId": "49342"}], "vehicle": {"licensePlate": "JJJD19"}, "timestamp": "1694889002"}, "vehicle": {"trip": {"tripId": "21559-701ff27f-2", "startTime": "15:12:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "598", "directionId": 1}, "position": {"latitude": -36.8207, "longitude": -73.01223, "bearing": 292.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889002", "vehicle": {"licensePlate": "JJJD19"}}}, {"id": "874c0b30-23ce-41e2-88ac-c515f3c8daad", "tripUpdate": {"trip": {"tripId": "21462-701ff27f-2", "startTime": "14:50:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "598", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 52, "arrival": {"time": "1694889102"}, "stopId": "37522"}, {"stopSequence": 53, "arrival": {"time": "1694889138"}, "stopId": "39599"}, {"stopSequence": 54, "arrival": {"time": "1694889180"}, "stopId": "50034"}, {"stopSequence": 55, "arrival": {"time": "1694889223"}, "stopId": "40903"}, {"stopSequence": 56, "arrival": {"time": "1694889256"}, "stopId": "40904"}, {"stopSequence": 57, "arrival": {"time": "1694889309"}, "stopId": "35814"}, {"stopSequence": 58, "arrival": {"time": "1694889382"}, "stopId": "35815"}, {"stopSequence": 59, "arrival": {"time": "1694889408"}, "stopId": "35816"}, {"stopSequence": 60, "arrival": {"time": "1694889425"}, "stopId": "35817"}, {"stopSequence": 61, "arrival": {"time": "1694889460"}, "stopId": "35818"}, {"stopSequence": 62, "arrival": {"time": "1694889499"}, "stopId": "35819"}, {"stopSequence": 63, "arrival": {"time": "1694889686"}, "stopId": "35822"}, {"stopSequence": 64, "arrival": {"time": "1694889736"}, "stopId": "35823"}, {"stopSequence": 65, "arrival": {"time": "1694889786"}, "stopId": "35723"}, {"stopSequence": 66, "arrival": {"time": "1694889829"}, "stopId": "35722"}, {"stopSequence": 67, "arrival": {"time": "1694889915"}, "stopId": "35826"}, {"stopSequence": 68, "arrival": {"time": "1694889976"}, "stopId": "35548"}, {"stopSequence": 69, "arrival": {"time": "1694890063"}, "stopId": "35547"}, {"stopSequence": 70, "arrival": {"time": "1694890127"}, "stopId": "35546"}, {"stopSequence": 71, "arrival": {"time": "1694890191"}, "stopId": "35553"}, {"stopSequence": 72, "arrival": {"time": "1694890245"}, "stopId": "35568"}], "vehicle": {"licensePlate": "JVTK96"}, "timestamp": "1694889014"}, "vehicle": {"trip": {"tripId": "21462-701ff27f-2", "startTime": "14:50:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "598", "directionId": 0}, "position": {"latitude": -36.820484, "longitude": -73.04214, "bearing": 62.0, "odometer": 0.0, "speed": 7.5}, "timestamp": "1694889014", "vehicle": {"licensePlate": "JVTK96"}}}, {"id": "7fbf4be1-a5ab-4040-af14-fb5779ada23d", "tripUpdate": {"trip": {"tripId": "21560-701ff27f-2", "startTime": "15:24:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "598", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 2, "arrival": {"time": "1694888978"}, "stopId": "35318"}, {"stopSequence": 3, "arrival": {"time": "1694889027"}, "stopId": "35319"}, {"stopSequence": 4, "arrival": {"time": "1694889052"}, "stopId": "40659"}, {"stopSequence": 5, "arrival": {"time": "1694889112"}, "stopId": "35718"}, {"stopSequence": 6, "arrival": {"time": "1694889153"}, "stopId": "35719"}, {"stopSequence": 7, "arrival": {"time": "1694889195"}, "stopId": "35720"}, {"stopSequence": 8, "arrival": {"time": "1694889227"}, "stopId": "35721"}, {"stopSequence": 9, "arrival": {"time": "1694889241"}, "stopId": "35722"}, {"stopSequence": 10, "arrival": {"time": "1694889290"}, "stopId": "35723"}, {"stopSequence": 11, "arrival": {"time": "1694889338"}, "stopId": "35724"}, {"stopSequence": 12, "arrival": {"time": "1694889407"}, "stopId": "35726"}, {"stopSequence": 13, "arrival": {"time": "1694889476"}, "stopId": "35727"}, {"stopSequence": 14, "arrival": {"time": "1694889549"}, "stopId": "35820"}, {"stopSequence": 15, "arrival": {"time": "1694889584"}, "stopId": "35729"}, {"stopSequence": 16, "arrival": {"time": "1694889615"}, "stopId": "35730"}, {"stopSequence": 17, "arrival": {"time": "1694889645"}, "stopId": "35731"}, {"stopSequence": 18, "arrival": {"time": "1694889706"}, "stopId": "35201"}, {"stopSequence": 19, "arrival": {"time": "1694889795"}, "stopId": "35202"}, {"stopSequence": 20, "arrival": {"time": "1694889824"}, "stopId": "35203"}, {"stopSequence": 21, "arrival": {"time": "1694889888"}, "stopId": "1-Feb"}, {"stopSequence": 22, "arrival": {"time": "1694889932"}, "stopId": "1-Mar"}, {"stopSequence": 23, "arrival": {"time": "1694889964"}, "stopId": "37465"}, {"stopSequence": 24, "arrival": {"time": "1694890060"}, "stopId": "39599"}, {"stopSequence": 25, "arrival": {"time": "1694890134"}, "stopId": "45011"}, {"stopSequence": 26, "arrival": {"time": "1694890231"}, "stopId": "39623"}, {"stopSequence": 27, "arrival": {"time": "1694890279"}, "stopId": "39624"}, {"stopSequence": 28, "arrival": {"time": "1694890343"}, "stopId": "90000"}, {"stopSequence": 29, "arrival": {"time": "1694890393"}, "stopId": "39628"}, {"stopSequence": 30, "arrival": {"time": "1694890469"}, "stopId": "39631"}, {"stopSequence": 31, "arrival": {"time": "1694890517"}, "stopId": "49311"}, {"stopSequence": 32, "arrival": {"time": "1694890572"}, "stopId": "39634"}, {"stopSequence": 33, "arrival": {"time": "1694890598"}, "stopId": "39635"}, {"stopSequence": 34, "arrival": {"time": "1694890644"}, "stopId": "39636"}, {"stopSequence": 35, "arrival": {"time": "1694890829"}, "stopId": "39637"}, {"stopSequence": 36, "arrival": {"time": "1694890881"}, "stopId": "49317"}, {"stopSequence": 37, "arrival": {"time": "1694890914"}, "stopId": "49318"}, {"stopSequence": 38, "arrival": {"time": "1694890984"}, "stopId": "49319"}, {"stopSequence": 39, "arrival": {"time": "1694891052"}, "stopId": "39641"}, {"stopSequence": 40, "arrival": {"time": "1694891311"}, "stopId": "49323"}, {"stopSequence": 41, "arrival": {"time": "1694891404"}, "stopId": "49325"}, {"stopSequence": 42, "arrival": {"time": "1694891477"}, "stopId": "49326"}, {"stopSequence": 43, "arrival": {"time": "1694891500"}, "stopId": "39648"}, {"stopSequence": 44, "arrival": {"time": "1694891586"}, "stopId": "36115"}, {"stopSequence": 45, "arrival": {"time": "1694891649"}, "stopId": "36116"}, {"stopSequence": 46, "arrival": {"time": "1694891689"}, "stopId": "8606049"}, {"stopSequence": 47, "arrival": {"time": "1694891749"}, "stopId": "37428"}, {"stopSequence": 48, "arrival": {"time": "1694891800"}, "stopId": "37429"}, {"stopSequence": 49, "arrival": {"time": "1694891842"}, "stopId": "37430"}, {"stopSequence": 50, "arrival": {"time": "1694891883"}, "stopId": "37431"}, {"stopSequence": 51, "arrival": {"time": "1694891921"}, "stopId": "37432"}, {"stopSequence": 52, "arrival": {"time": "1694892011"}, "stopId": "40720"}, {"stopSequence": 53, "arrival": {"time": "1694892027"}, "stopId": "40721"}, {"stopSequence": 54, "arrival": {"time": "1694892082"}, "stopId": "40722"}, {"stopSequence": 55, "arrival": {"time": "1694892089"}, "stopId": "40723"}, {"stopSequence": 56, "arrival": {"time": "1694892135"}, "stopId": "40724"}, {"stopSequence": 57, "arrival": {"time": "1694892235"}, "stopId": "40725"}, {"stopSequence": 58, "arrival": {"time": "1694892277"}, "stopId": "37435"}, {"stopSequence": 59, "arrival": {"time": "1694892338"}, "stopId": "39658"}, {"stopSequence": 60, "arrival": {"time": "1694892401"}, "stopId": "39659"}, {"stopSequence": 61, "arrival": {"time": "1694892443"}, "stopId": "39660"}, {"stopSequence": 62, "arrival": {"time": "1694892488"}, "stopId": "39661"}, {"stopSequence": 63, "arrival": {"time": "1694892559"}, "stopId": "39662"}, {"stopSequence": 64, "arrival": {"time": "1694892650"}, "stopId": "39663"}, {"stopSequence": 65, "arrival": {"time": "1694892722"}, "stopId": "39664"}, {"stopSequence": 66, "arrival": {"time": "1694892796"}, "stopId": "39665"}, {"stopSequence": 67, "arrival": {"time": "1694893001"}, "stopId": "42655"}, {"stopSequence": 68, "arrival": {"time": "1694893083"}, "stopId": "49342"}], "vehicle": {"licensePlate": "ZV7323"}, "timestamp": "1694888976"}, "vehicle": {"trip": {"tripId": "21560-701ff27f-2", "startTime": "15:24:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "598", "directionId": 1}, "position": {"latitude": -36.837143, "longitude": -73.00219, "bearing": 196.0, "odometer": 0.0, "speed": 2.5}, "timestamp": "1694889012", "vehicle": {"licensePlate": "ZV7323"}}}, {"id": "bcd35849-9817-4987-9d79-7e02f6d94352", "tripUpdate": {"trip": {"tripId": "21663-701ff27f-2", "startTime": "15:02:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "599", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 38, "arrival": {"time": "1694889076"}, "stopId": "40996"}, {"stopSequence": 39, "arrival": {"time": "1694889157"}, "stopId": "40997"}, {"stopSequence": 40, "arrival": {"time": "1694889218"}, "stopId": "39614"}, {"stopSequence": 41, "arrival": {"time": "1694889267"}, "stopId": "39615"}, {"stopSequence": 42, "arrival": {"time": "1694889318"}, "stopId": "39616"}, {"stopSequence": 43, "arrival": {"time": "1694889373"}, "stopId": "39617"}, {"stopSequence": 44, "arrival": {"time": "1694889431"}, "stopId": "39618"}, {"stopSequence": 45, "arrival": {"time": "1694889477"}, "stopId": "39619"}, {"stopSequence": 46, "arrival": {"time": "1694889515"}, "stopId": "39620"}, {"stopSequence": 47, "arrival": {"time": "1694889585"}, "stopId": "39621"}, {"stopSequence": 48, "arrival": {"time": "1694889633"}, "stopId": "38281"}, {"stopSequence": 49, "arrival": {"time": "1694889687"}, "stopId": "37506"}, {"stopSequence": 50, "arrival": {"time": "1694889780"}, "stopId": "37520"}, {"stopSequence": 51, "arrival": {"time": "1694889885"}, "stopId": "37470"}, {"stopSequence": 52, "arrival": {"time": "1694889909"}, "stopId": "37477"}, {"stopSequence": 53, "arrival": {"time": "1694889937"}, "stopId": "91118"}, {"stopSequence": 54, "arrival": {"time": "1694889998"}, "stopId": "35223"}, {"stopSequence": 55, "arrival": {"time": "1694890042"}, "stopId": "39547"}, {"stopSequence": 56, "arrival": {"time": "1694890116"}, "stopId": "35224"}, {"stopSequence": 57, "arrival": {"time": "1694890285"}, "stopId": "35225"}, {"stopSequence": 58, "arrival": {"time": "1694890886"}, "stopId": "35409"}, {"stopSequence": 59, "arrival": {"time": "1694890924"}, "stopId": "35411"}, {"stopSequence": 60, "arrival": {"time": "1694890960"}, "stopId": "35412"}, {"stopSequence": 61, "arrival": {"time": "1694891087"}, "stopId": "35414"}, {"stopSequence": 62, "arrival": {"time": "1694891125"}, "stopId": "35415"}, {"stopSequence": 63, "arrival": {"time": "1694891153"}, "stopId": "35416"}, {"stopSequence": 64, "arrival": {"time": "1694891330"}, "stopId": "35752"}, {"stopSequence": 65, "arrival": {"time": "1694891490"}, "stopId": "35417"}, {"stopSequence": 66, "arrival": {"time": "1694891557"}, "stopId": "35418"}, {"stopSequence": 67, "arrival": {"time": "1694891581"}, "stopId": "35664"}, {"stopSequence": 68, "arrival": {"time": "1694891622"}, "stopId": "35665"}, {"stopSequence": 69, "arrival": {"time": "1694891658"}, "stopId": "35666"}, {"stopSequence": 70, "arrival": {"time": "1694891712"}, "stopId": "35667"}, {"stopSequence": 71, "arrival": {"time": "1694891749"}, "stopId": "35668"}, {"stopSequence": 72, "arrival": {"time": "1694891809"}, "stopId": "35669"}, {"stopSequence": 73, "arrival": {"time": "1694891897"}, "stopId": "35670"}, {"stopSequence": 74, "arrival": {"time": "1694891941"}, "stopId": "35671"}], "vehicle": {"licensePlate": "BXYT56"}, "timestamp": "1694889004"}, "vehicle": {"trip": {"tripId": "21663-701ff27f-2", "startTime": "15:02:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "599", "directionId": 0}, "position": {"latitude": -36.79908, "longitude": -73.05892, "bearing": 126.0, "odometer": 0.0, "speed": 16.38889}, "timestamp": "1694889004", "vehicle": {"licensePlate": "BXYT56"}}}, {"id": "f503df67-c5a2-457a-8682-44c6d2d38c86", "tripUpdate": {"trip": {"tripId": "21662-701ff27f-2", "startTime": "14:52:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "599", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 50, "arrival": {"time": "1694888861"}, "stopId": "37520"}, {"stopSequence": 51, "arrival": {"time": "1694888975"}, "stopId": "37470"}, {"stopSequence": 52, "arrival": {"time": "1694889001"}, "stopId": "37477"}, {"stopSequence": 53, "arrival": {"time": "1694889031"}, "stopId": "91118"}, {"stopSequence": 54, "arrival": {"time": "1694889096"}, "stopId": "35223"}, {"stopSequence": 55, "arrival": {"time": "1694889143"}, "stopId": "39547"}, {"stopSequence": 56, "arrival": {"time": "1694889221"}, "stopId": "35224"}, {"stopSequence": 57, "arrival": {"time": "1694889395"}, "stopId": "35225"}, {"stopSequence": 58, "arrival": {"time": "1694889979"}, "stopId": "35409"}, {"stopSequence": 59, "arrival": {"time": "1694890014"}, "stopId": "35411"}, {"stopSequence": 60, "arrival": {"time": "1694890047"}, "stopId": "35412"}, {"stopSequence": 61, "arrival": {"time": "1694890163"}, "stopId": "35414"}, {"stopSequence": 62, "arrival": {"time": "1694890198"}, "stopId": "35415"}, {"stopSequence": 63, "arrival": {"time": "1694890223"}, "stopId": "35416"}, {"stopSequence": 64, "arrival": {"time": "1694890380"}, "stopId": "35752"}, {"stopSequence": 65, "arrival": {"time": "1694890520"}, "stopId": "35417"}, {"stopSequence": 66, "arrival": {"time": "1694890577"}, "stopId": "35418"}, {"stopSequence": 67, "arrival": {"time": "1694890597"}, "stopId": "35664"}, {"stopSequence": 68, "arrival": {"time": "1694890633"}, "stopId": "35665"}, {"stopSequence": 69, "arrival": {"time": "1694890663"}, "stopId": "35666"}, {"stopSequence": 70, "arrival": {"time": "1694890709"}, "stopId": "35667"}, {"stopSequence": 71, "arrival": {"time": "1694890740"}, "stopId": "35668"}, {"stopSequence": 72, "arrival": {"time": "1694890790"}, "stopId": "35669"}, {"stopSequence": 73, "arrival": {"time": "1694890863"}, "stopId": "35670"}, {"stopSequence": 74, "arrival": {"time": "1694890900"}, "stopId": "35671"}], "vehicle": {"licensePlate": "DWHB85"}, "timestamp": "1694888850"}, "vehicle": {"trip": {"tripId": "21662-701ff27f-2", "startTime": "14:52:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "599", "directionId": 0}, "position": {"latitude": -36.826862, "longitude": -73.04811, "bearing": 234.0, "odometer": 0.0, "speed": 5.2777777}, "timestamp": "1694888850", "vehicle": {"licensePlate": "DWHB85"}}}, {"id": "b9b89734-0f29-4c10-b58d-07c6acf285cc", "tripUpdate": {"trip": {"tripId": "21660-701ff27f-2", "startTime": "14:32:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "599", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 73, "arrival": {"time": "1694888980"}, "stopId": "35670"}, {"stopSequence": 74, "arrival": {"time": "1694889016"}, "stopId": "35671"}], "vehicle": {"licensePlate": "FXJS17"}, "timestamp": "1694888970"}, "vehicle": {"trip": {"tripId": "21660-701ff27f-2", "startTime": "14:32:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "599", "directionId": 0}, "position": {"latitude": -36.828266, "longitude": -73.12576, "bearing": 294.0, "odometer": 0.0, "speed": 10.277778}, "timestamp": "1694888970", "vehicle": {"licensePlate": "FXJS17"}}}, {"id": "3149fe8b-8100-446b-a9da-0b7c5c2471e8", "tripUpdate": {"trip": {"tripId": "21665-701ff27f-2", "startTime": "15:22:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "599", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 15, "arrival": {"time": "1694889046"}, "stopId": "40749"}, {"stopSequence": 16, "arrival": {"time": "1694889089"}, "stopId": "42525"}, {"stopSequence": 17, "arrival": {"time": "1694889092"}, "stopId": "42526"}, {"stopSequence": 18, "arrival": {"time": "1694889128"}, "stopId": "40721"}, {"stopSequence": 19, "arrival": {"time": "1694889151"}, "stopId": "40720"}, {"stopSequence": 20, "arrival": {"time": "1694889170"}, "stopId": "42528"}, {"stopSequence": 21, "arrival": {"time": "1694889224"}, "stopId": "37432"}, {"stopSequence": 22, "arrival": {"time": "1694889256"}, "stopId": "37586"}, {"stopSequence": 23, "arrival": {"time": "1694889278"}, "stopId": "37430"}, {"stopSequence": 24, "arrival": {"time": "1694889298"}, "stopId": "37588"}, {"stopSequence": 25, "arrival": {"time": "1694889348"}, "stopId": "37589"}, {"stopSequence": 26, "arrival": {"time": "1694889428"}, "stopId": "37840"}, {"stopSequence": 27, "arrival": {"time": "1694889454"}, "stopId": "49140"}, {"stopSequence": 28, "arrival": {"time": "1694889494"}, "stopId": "49141"}, {"stopSequence": 29, "arrival": {"time": "1694889533"}, "stopId": "49142"}, {"stopSequence": 30, "arrival": {"time": "1694889570"}, "stopId": "49143"}, {"stopSequence": 31, "arrival": {"time": "1694889577"}, "stopId": "45112"}, {"stopSequence": 32, "arrival": {"time": "1694889628"}, "stopId": "45113"}, {"stopSequence": 33, "arrival": {"time": "1694889707"}, "stopId": "37490"}, {"stopSequence": 34, "arrival": {"time": "1694889793"}, "stopId": "37104"}, {"stopSequence": 35, "arrival": {"time": "1694889835"}, "stopId": "8606052"}, {"stopSequence": 36, "arrival": {"time": "1694890088"}, "stopId": "16005188"}, {"stopSequence": 37, "arrival": {"time": "1694890334"}, "stopId": "40995"}, {"stopSequence": 38, "arrival": {"time": "1694890406"}, "stopId": "40996"}, {"stopSequence": 39, "arrival": {"time": "1694890483"}, "stopId": "40997"}, {"stopSequence": 40, "arrival": {"time": "1694890541"}, "stopId": "39614"}, {"stopSequence": 41, "arrival": {"time": "1694890589"}, "stopId": "39615"}, {"stopSequence": 42, "arrival": {"time": "1694890638"}, "stopId": "39616"}, {"stopSequence": 43, "arrival": {"time": "1694890693"}, "stopId": "39617"}, {"stopSequence": 44, "arrival": {"time": "1694890752"}, "stopId": "39618"}, {"stopSequence": 45, "arrival": {"time": "1694890799"}, "stopId": "39619"}, {"stopSequence": 46, "arrival": {"time": "1694890838"}, "stopId": "39620"}, {"stopSequence": 47, "arrival": {"time": "1694890911"}, "stopId": "39621"}, {"stopSequence": 48, "arrival": {"time": "1694890962"}, "stopId": "38281"}, {"stopSequence": 49, "arrival": {"time": "1694891021"}, "stopId": "37506"}, {"stopSequence": 50, "arrival": {"time": "1694891124"}, "stopId": "37520"}, {"stopSequence": 51, "arrival": {"time": "1694891242"}, "stopId": "37470"}, {"stopSequence": 52, "arrival": {"time": "1694891269"}, "stopId": "37477"}, {"stopSequence": 53, "arrival": {"time": "1694891302"}, "stopId": "91118"}, {"stopSequence": 54, "arrival": {"time": "1694891373"}, "stopId": "35223"}, {"stopSequence": 55, "arrival": {"time": "1694891425"}, "stopId": "39547"}, {"stopSequence": 56, "arrival": {"time": "1694891514"}, "stopId": "35224"}, {"stopSequence": 57, "arrival": {"time": "1694891725"}, "stopId": "35225"}, {"stopSequence": 58, "arrival": {"time": "1694892544"}, "stopId": "35409"}, {"stopSequence": 59, "arrival": {"time": "1694892600"}, "stopId": "35411"}, {"stopSequence": 60, "arrival": {"time": "1694892653"}, "stopId": "35412"}, {"stopSequence": 61, "arrival": {"time": "1694892845"}, "stopId": "35414"}, {"stopSequence": 62, "arrival": {"time": "1694892904"}, "stopId": "35415"}, {"stopSequence": 63, "arrival": {"time": "1694892947"}, "stopId": "35416"}, {"stopSequence": 64, "arrival": {"time": "1694893228"}, "stopId": "35752"}, {"stopSequence": 65, "arrival": {"time": "1694893493"}, "stopId": "35417"}, {"stopSequence": 66, "arrival": {"time": "1694893605"}, "stopId": "35418"}, {"stopSequence": 67, "arrival": {"time": "1694893646"}, "stopId": "35664"}, {"stopSequence": 68, "arrival": {"time": "1694893718"}, "stopId": "35665"}, {"stopSequence": 69, "arrival": {"time": "1694893780"}, "stopId": "35666"}, {"stopSequence": 70, "arrival": {"time": "1694893875"}, "stopId": "35667"}, {"stopSequence": 71, "arrival": {"time": "1694893941"}, "stopId": "35668"}, {"stopSequence": 72, "arrival": {"time": "1694894049"}, "stopId": "35669"}, {"stopSequence": 73, "arrival": {"time": "1694894208"}, "stopId": "35670"}, {"stopSequence": 74, "arrival": {"time": "1694894290"}, "stopId": "35671"}], "vehicle": {"licensePlate": "GKLB58"}, "timestamp": "1694889004"}, "vehicle": {"trip": {"tripId": "21665-701ff27f-2", "startTime": "15:22:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "599", "directionId": 0}, "position": {"latitude": -36.789154, "longitude": -73.10639, "bearing": 210.0, "odometer": 0.0, "speed": 4.7222223}, "timestamp": "1694889004", "vehicle": {"licensePlate": "GKLB58"}}}, {"id": "03ccd0c1-ae48-4e30-bec3-2f361cf56e29", "tripUpdate": {"trip": {"tripId": "21767-701ff27f-2", "startTime": "15:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "599", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 49, "arrival": {"time": "1694889070"}, "stopId": "38692"}, {"stopSequence": 50, "arrival": {"time": "1694889143"}, "stopId": "38714"}, {"stopSequence": 51, "arrival": {"time": "1694889192"}, "stopId": "39791"}, {"stopSequence": 52, "arrival": {"time": "1694889214"}, "stopId": "49329"}, {"stopSequence": 53, "arrival": {"time": "1694889272"}, "stopId": "49330"}, {"stopSequence": 54, "arrival": {"time": "1694889311"}, "stopId": "39652"}, {"stopSequence": 55, "arrival": {"time": "1694889373"}, "stopId": "36683"}, {"stopSequence": 56, "arrival": {"time": "1694889411"}, "stopId": "37428"}, {"stopSequence": 57, "arrival": {"time": "1694889452"}, "stopId": "37429"}, {"stopSequence": 58, "arrival": {"time": "1694889484"}, "stopId": "37430"}, {"stopSequence": 59, "arrival": {"time": "1694889516"}, "stopId": "37431"}, {"stopSequence": 60, "arrival": {"time": "1694889545"}, "stopId": "37432"}, {"stopSequence": 61, "arrival": {"time": "1694889612"}, "stopId": "40720"}, {"stopSequence": 62, "arrival": {"time": "1694889624"}, "stopId": "40721"}, {"stopSequence": 63, "arrival": {"time": "1694889664"}, "stopId": "40722"}, {"stopSequence": 64, "arrival": {"time": "1694889669"}, "stopId": "40723"}, {"stopSequence": 65, "arrival": {"time": "1694889702"}, "stopId": "40724"}, {"stopSequence": 66, "arrival": {"time": "1694889771"}, "stopId": "40725"}, {"stopSequence": 67, "arrival": {"time": "1694889800"}, "stopId": "37435"}, {"stopSequence": 68, "arrival": {"time": "1694889841"}, "stopId": "39658"}, {"stopSequence": 69, "arrival": {"time": "1694889883"}, "stopId": "39659"}, {"stopSequence": 70, "arrival": {"time": "1694889910"}, "stopId": "39660"}, {"stopSequence": 71, "arrival": {"time": "1694889939"}, "stopId": "39661"}, {"stopSequence": 72, "arrival": {"time": "1694889984"}, "stopId": "39662"}, {"stopSequence": 73, "arrival": {"time": "1694890040"}, "stopId": "39663"}, {"stopSequence": 74, "arrival": {"time": "1694890084"}, "stopId": "39664"}, {"stopSequence": 75, "arrival": {"time": "1694890128"}, "stopId": "39665"}, {"stopSequence": 76, "arrival": {"time": "1694890246"}, "stopId": "42655"}, {"stopSequence": 77, "arrival": {"time": "1694890292"}, "stopId": "49342"}], "vehicle": {"licensePlate": "GKXF28"}, "timestamp": "1694888972"}, "vehicle": {"trip": {"tripId": "21767-701ff27f-2", "startTime": "15:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "599", "directionId": 1}, "position": {"latitude": -36.78178, "longitude": -73.09073, "bearing": 110.0, "odometer": 0.0, "speed": 3.6111112}, "timestamp": "1694889010", "vehicle": {"licensePlate": "GKXF28"}}}, {"id": "953505dd-893b-4305-91e6-b13067329b93", "tripUpdate": {"trip": {"tripId": "21765-701ff27f-2", "startTime": "14:37:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "599", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 63, "arrival": {"time": "1694889042"}, "stopId": "40722"}, {"stopSequence": 64, "arrival": {"time": "1694889047"}, "stopId": "40723"}, {"stopSequence": 65, "arrival": {"time": "1694889083"}, "stopId": "40724"}, {"stopSequence": 66, "arrival": {"time": "1694889158"}, "stopId": "40725"}, {"stopSequence": 67, "arrival": {"time": "1694889189"}, "stopId": "37435"}, {"stopSequence": 68, "arrival": {"time": "1694889233"}, "stopId": "39658"}, {"stopSequence": 69, "arrival": {"time": "1694889277"}, "stopId": "39659"}, {"stopSequence": 70, "arrival": {"time": "1694889306"}, "stopId": "39660"}, {"stopSequence": 71, "arrival": {"time": "1694889336"}, "stopId": "39661"}, {"stopSequence": 72, "arrival": {"time": "1694889383"}, "stopId": "39662"}, {"stopSequence": 73, "arrival": {"time": "1694889442"}, "stopId": "39663"}, {"stopSequence": 74, "arrival": {"time": "1694889487"}, "stopId": "39664"}, {"stopSequence": 75, "arrival": {"time": "1694889532"}, "stopId": "39665"}, {"stopSequence": 76, "arrival": {"time": "1694889652"}, "stopId": "42655"}, {"stopSequence": 77, "arrival": {"time": "1694889698"}, "stopId": "49342"}], "vehicle": {"licensePlate": "HCCR33"}, "timestamp": "1694889008"}, "vehicle": {"trip": {"tripId": "21765-701ff27f-2", "startTime": "14:37:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "599", "directionId": 1}, "position": {"latitude": -36.791992, "longitude": -73.106384, "bearing": 302.0, "odometer": 0.0, "speed": 14.444445}, "timestamp": "1694889008", "vehicle": {"licensePlate": "HCCR33"}}}, {"id": "c09129e8-5768-452f-94b6-83a65d191591", "tripUpdate": {"trip": {"tripId": "21768-701ff27f-2", "startTime": "15:13:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "599", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 22, "arrival": {"time": "1694888974"}, "stopId": "44643"}, {"stopSequence": 23, "arrival": {"time": "1694889016"}, "stopId": "44644"}, {"stopSequence": 24, "arrival": {"time": "1694889110"}, "stopId": "91116"}, {"stopSequence": 25, "arrival": {"time": "1694889592"}, "stopId": "39545"}, {"stopSequence": 26, "arrival": {"time": "1694889757"}, "stopId": "39546"}, {"stopSequence": 27, "arrival": {"time": "1694889890"}, "stopId": "35286"}, {"stopSequence": 28, "arrival": {"time": "1694889917"}, "stopId": "35287"}, {"stopSequence": 29, "arrival": {"time": "1694889984"}, "stopId": "42317"}, {"stopSequence": 30, "arrival": {"time": "1694890035"}, "stopId": "42318"}, {"stopSequence": 31, "arrival": {"time": "1694890105"}, "stopId": "8606396"}, {"stopSequence": 32, "arrival": {"time": "1694890175"}, "stopId": "38514"}, {"stopSequence": 33, "arrival": {"time": "1694890213"}, "stopId": "38516"}, {"stopSequence": 34, "arrival": {"time": "1694890271"}, "stopId": "38518"}, {"stopSequence": 35, "arrival": {"time": "1694890369"}, "stopId": "38520"}, {"stopSequence": 36, "arrival": {"time": "1694890409"}, "stopId": "38521"}, {"stopSequence": 37, "arrival": {"time": "1694890458"}, "stopId": "38522"}, {"stopSequence": 38, "arrival": {"time": "1694890508"}, "stopId": "38523"}, {"stopSequence": 39, "arrival": {"time": "1694890560"}, "stopId": "38524"}, {"stopSequence": 40, "arrival": {"time": "1694890610"}, "stopId": "38525"}, {"stopSequence": 41, "arrival": {"time": "1694890662"}, "stopId": "38526"}, {"stopSequence": 42, "arrival": {"time": "1694890712"}, "stopId": "38527"}, {"stopSequence": 43, "arrival": {"time": "1694890801"}, "stopId": "38528"}, {"stopSequence": 44, "arrival": {"time": "1694890918"}, "stopId": "38529"}, {"stopSequence": 45, "arrival": {"time": "1694891143"}, "stopId": "38530"}, {"stopSequence": 46, "arrival": {"time": "1694891163"}, "stopId": "16005209"}, {"stopSequence": 47, "arrival": {"time": "1694891506"}, "stopId": "36001"}, {"stopSequence": 48, "arrival": {"time": "1694891692"}, "stopId": "42604"}, {"stopSequence": 49, "arrival": {"time": "1694891834"}, "stopId": "38692"}, {"stopSequence": 50, "arrival": {"time": "1694891924"}, "stopId": "38714"}, {"stopSequence": 51, "arrival": {"time": "1694891987"}, "stopId": "39791"}, {"stopSequence": 52, "arrival": {"time": "1694892015"}, "stopId": "49329"}, {"stopSequence": 53, "arrival": {"time": "1694892091"}, "stopId": "49330"}, {"stopSequence": 54, "arrival": {"time": "1694892144"}, "stopId": "39652"}, {"stopSequence": 55, "arrival": {"time": "1694892230"}, "stopId": "36683"}, {"stopSequence": 56, "arrival": {"time": "1694892284"}, "stopId": "37428"}, {"stopSequence": 57, "arrival": {"time": "1694892343"}, "stopId": "37429"}, {"stopSequence": 58, "arrival": {"time": "1694892391"}, "stopId": "37430"}, {"stopSequence": 59, "arrival": {"time": "1694892439"}, "stopId": "37431"}, {"stopSequence": 60, "arrival": {"time": "1694892483"}, "stopId": "37432"}, {"stopSequence": 61, "arrival": {"time": "1694892587"}, "stopId": "40720"}, {"stopSequence": 62, "arrival": {"time": "1694892606"}, "stopId": "40721"}, {"stopSequence": 63, "arrival": {"time": "1694892670"}, "stopId": "40722"}, {"stopSequence": 64, "arrival": {"time": "1694892678"}, "stopId": "40723"}, {"stopSequence": 65, "arrival": {"time": "1694892732"}, "stopId": "40724"}, {"stopSequence": 66, "arrival": {"time": "1694892850"}, "stopId": "40725"}, {"stopSequence": 67, "arrival": {"time": "1694892899"}, "stopId": "37435"}, {"stopSequence": 68, "arrival": {"time": "1694892972"}, "stopId": "39658"}, {"stopSequence": 69, "arrival": {"time": "1694893047"}, "stopId": "39659"}, {"stopSequence": 70, "arrival": {"time": "1694893096"}, "stopId": "39660"}, {"stopSequence": 71, "arrival": {"time": "1694893150"}, "stopId": "39661"}, {"stopSequence": 72, "arrival": {"time": "1694893235"}, "stopId": "39662"}, {"stopSequence": 73, "arrival": {"time": "1694893345"}, "stopId": "39663"}, {"stopSequence": 74, "arrival": {"time": "1694893431"}, "stopId": "39664"}, {"stopSequence": 75, "arrival": {"time": "1694893521"}, "stopId": "39665"}, {"stopSequence": 76, "arrival": {"time": "1694893772"}, "stopId": "42655"}, {"stopSequence": 77, "arrival": {"time": "1694893873"}, "stopId": "49342"}], "vehicle": {"licensePlate": "HRXJ94"}, "timestamp": "1694888972"}, "vehicle": {"trip": {"tripId": "21768-701ff27f-2", "startTime": "15:13:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "599", "directionId": 1}, "position": {"latitude": -36.842453, "longitude": -73.09267, "bearing": 50.0, "odometer": 0.0, "speed": 10.277778}, "timestamp": "1694888972", "vehicle": {"licensePlate": "HRXJ94"}}}, {"id": "f720cc13-652b-4e83-8d15-f950083146ad", "tripUpdate": {"trip": {"tripId": "21766-701ff27f-2", "startTime": "14:49:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "599", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 46, "arrival": {"time": "1694889016"}, "stopId": "16005209"}, {"stopSequence": 47, "arrival": {"time": "1694889330"}, "stopId": "36001"}, {"stopSequence": 48, "arrival": {"time": "1694889486"}, "stopId": "42604"}, {"stopSequence": 49, "arrival": {"time": "1694889598"}, "stopId": "38692"}, {"stopSequence": 50, "arrival": {"time": "1694889666"}, "stopId": "38714"}, {"stopSequence": 51, "arrival": {"time": "1694889713"}, "stopId": "39791"}, {"stopSequence": 52, "arrival": {"time": "1694889734"}, "stopId": "49329"}, {"stopSequence": 53, "arrival": {"time": "1694889789"}, "stopId": "49330"}, {"stopSequence": 54, "arrival": {"time": "1694889826"}, "stopId": "39652"}, {"stopSequence": 55, "arrival": {"time": "1694889885"}, "stopId": "36683"}, {"stopSequence": 56, "arrival": {"time": "1694889923"}, "stopId": "37428"}, {"stopSequence": 57, "arrival": {"time": "1694889962"}, "stopId": "37429"}, {"stopSequence": 58, "arrival": {"time": "1694889993"}, "stopId": "37430"}, {"stopSequence": 59, "arrival": {"time": "1694890025"}, "stopId": "37431"}, {"stopSequence": 60, "arrival": {"time": "1694890053"}, "stopId": "37432"}, {"stopSequence": 61, "arrival": {"time": "1694890119"}, "stopId": "40720"}, {"stopSequence": 62, "arrival": {"time": "1694890131"}, "stopId": "40721"}, {"stopSequence": 63, "arrival": {"time": "1694890170"}, "stopId": "40722"}, {"stopSequence": 64, "arrival": {"time": "1694890175"}, "stopId": "40723"}, {"stopSequence": 65, "arrival": {"time": "1694890208"}, "stopId": "40724"}, {"stopSequence": 66, "arrival": {"time": "1694890277"}, "stopId": "40725"}, {"stopSequence": 67, "arrival": {"time": "1694890306"}, "stopId": "37435"}, {"stopSequence": 68, "arrival": {"time": "1694890347"}, "stopId": "39658"}, {"stopSequence": 69, "arrival": {"time": "1694890390"}, "stopId": "39659"}, {"stopSequence": 70, "arrival": {"time": "1694890417"}, "stopId": "39660"}, {"stopSequence": 71, "arrival": {"time": "1694890446"}, "stopId": "39661"}, {"stopSequence": 72, "arrival": {"time": "1694890492"}, "stopId": "39662"}, {"stopSequence": 73, "arrival": {"time": "1694890550"}, "stopId": "39663"}, {"stopSequence": 74, "arrival": {"time": "1694890595"}, "stopId": "39664"}, {"stopSequence": 75, "arrival": {"time": "1694890641"}, "stopId": "39665"}, {"stopSequence": 76, "arrival": {"time": "1694890764"}, "stopId": "42655"}, {"stopSequence": 77, "arrival": {"time": "1694890812"}, "stopId": "49342"}], "vehicle": {"licensePlate": "JVTK78"}, "timestamp": "1694889012"}, "vehicle": {"trip": {"tripId": "21766-701ff27f-2", "startTime": "14:49:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "599", "directionId": 1}, "position": {"latitude": -36.791264, "longitude": -73.070206, "bearing": 334.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889012", "vehicle": {"licensePlate": "JVTK78"}}}, {"id": "678f9cf2-a4ab-4877-b764-5f79ad4907bc", "tripUpdate": {"trip": {"tripId": "21943-701ff27f-2", "startTime": "15:42:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "600", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 9, "arrival": {"time": "1694888956"}, "stopId": "39623"}, {"stopSequence": 10, "arrival": {"time": "1694888998"}, "stopId": "39624"}, {"stopSequence": 11, "arrival": {"time": "1694889077"}, "stopId": "90000"}, {"stopSequence": 12, "arrival": {"time": "1694889130"}, "stopId": "39628"}, {"stopSequence": 13, "arrival": {"time": "1694889201"}, "stopId": "39631"}, {"stopSequence": 14, "arrival": {"time": "1694889258"}, "stopId": "49311"}, {"stopSequence": 15, "arrival": {"time": "1694889314"}, "stopId": "39634"}, {"stopSequence": 16, "arrival": {"time": "1694889340"}, "stopId": "39635"}, {"stopSequence": 17, "arrival": {"time": "1694889386"}, "stopId": "39636"}, {"stopSequence": 18, "arrival": {"time": "1694889564"}, "stopId": "39637"}, {"stopSequence": 19, "arrival": {"time": "1694889613"}, "stopId": "49317"}, {"stopSequence": 20, "arrival": {"time": "1694889644"}, "stopId": "49318"}, {"stopSequence": 21, "arrival": {"time": "1694889708"}, "stopId": "49319"}, {"stopSequence": 22, "arrival": {"time": "1694889771"}, "stopId": "39641"}, {"stopSequence": 23, "arrival": {"time": "1694889805"}, "stopId": "39642"}, {"stopSequence": 24, "arrival": {"time": "1694890053"}, "stopId": "39795"}, {"stopSequence": 25, "arrival": {"time": "1694890110"}, "stopId": "42642"}, {"stopSequence": 26, "arrival": {"time": "1694890141"}, "stopId": "42643"}, {"stopSequence": 27, "arrival": {"time": "1694890164"}, "stopId": "42644"}, {"stopSequence": 28, "arrival": {"time": "1694890188"}, "stopId": "42645"}, {"stopSequence": 29, "arrival": {"time": "1694890289"}, "stopId": "8606039"}, {"stopSequence": 30, "arrival": {"time": "1694890321"}, "stopId": "36489"}, {"stopSequence": 31, "arrival": {"time": "1694890350"}, "stopId": "36490"}, {"stopSequence": 32, "arrival": {"time": "1694890374"}, "stopId": "40714"}, {"stopSequence": 33, "arrival": {"time": "1694890437"}, "stopId": "8606049"}, {"stopSequence": 34, "arrival": {"time": "1694890484"}, "stopId": "37428"}, {"stopSequence": 35, "arrival": {"time": "1694890549"}, "stopId": "36551"}, {"stopSequence": 36, "arrival": {"time": "1694890570"}, "stopId": "36552"}, {"stopSequence": 37, "arrival": {"time": "1694890602"}, "stopId": "36553"}, {"stopSequence": 38, "arrival": {"time": "1694890629"}, "stopId": "36554"}, {"stopSequence": 39, "arrival": {"time": "1694890731"}, "stopId": "39657"}, {"stopSequence": 40, "arrival": {"time": "1694890771"}, "stopId": "39658"}, {"stopSequence": 41, "arrival": {"time": "1694890827"}, "stopId": "39659"}, {"stopSequence": 42, "arrival": {"time": "1694890856"}, "stopId": "39660"}, {"stopSequence": 43, "arrival": {"time": "1694890887"}, "stopId": "39661"}, {"stopSequence": 44, "arrival": {"time": "1694890937"}, "stopId": "39662"}, {"stopSequence": 45, "arrival": {"time": "1694890999"}, "stopId": "39663"}, {"stopSequence": 46, "arrival": {"time": "1694891048"}, "stopId": "39664"}, {"stopSequence": 47, "arrival": {"time": "1694891098"}, "stopId": "39665"}, {"stopSequence": 48, "arrival": {"time": "1694891183"}, "stopId": "42522"}, {"stopSequence": 49, "arrival": {"time": "1694891237"}, "stopId": "42524"}, {"stopSequence": 50, "arrival": {"time": "1694891292"}, "stopId": "39686"}, {"stopSequence": 51, "arrival": {"time": "1694891306"}, "stopId": "39687"}, {"stopSequence": 52, "arrival": {"time": "1694891483"}, "stopId": "39232"}, {"stopSequence": 53, "arrival": {"time": "1694891538"}, "stopId": "39233"}, {"stopSequence": 54, "arrival": {"time": "1694891616"}, "stopId": "39234"}, {"stopSequence": 55, "arrival": {"time": "1694891643"}, "stopId": "39235"}, {"stopSequence": 56, "arrival": {"time": "1694891813"}, "stopId": "49342"}, {"stopSequence": 57, "arrival": {"time": "1694891925"}, "stopId": "49343"}], "vehicle": {"licensePlate": "CPHG50"}, "timestamp": "1694888906"}, "vehicle": {"trip": {"tripId": "21943-701ff27f-2", "startTime": "15:42:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "600", "directionId": 1}, "position": {"latitude": -36.823658, "longitude": -73.03735, "bearing": 98.0, "odometer": 0.0, "speed": 6.388889}, "timestamp": "1694889006", "vehicle": {"licensePlate": "CPHG50"}}}, {"id": "8d26d673-0f76-44ac-97c0-60b07d394d63", "tripUpdate": {"trip": {"tripId": "21875-701ff27f-2", "startTime": "15:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "600", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 46, "arrival": {"time": "1694889009"}, "stopId": "35695"}, {"stopSequence": 47, "arrival": {"time": "1694889064"}, "stopId": "35696"}, {"stopSequence": 48, "arrival": {"time": "1694889243"}, "stopId": "35697"}, {"stopSequence": 49, "arrival": {"time": "1694889341"}, "stopId": "2-Jan"}, {"stopSequence": 50, "arrival": {"time": "1694889371"}, "stopId": "42460"}, {"stopSequence": 51, "arrival": {"time": "1694889411"}, "stopId": "35690"}, {"stopSequence": 52, "arrival": {"time": "1694889513"}, "stopId": "35700"}, {"stopSequence": 53, "arrival": {"time": "1694889598"}, "stopId": "35703"}, {"stopSequence": 54, "arrival": {"time": "1694889629"}, "stopId": "35704"}, {"stopSequence": 55, "arrival": {"time": "1694889643"}, "stopId": "35705"}, {"stopSequence": 56, "arrival": {"time": "1694889661"}, "stopId": "35706"}, {"stopSequence": 57, "arrival": {"time": "1694889715"}, "stopId": "35707"}, {"stopSequence": 58, "arrival": {"time": "1694889803"}, "stopId": "38281"}, {"stopSequence": 59, "arrival": {"time": "1694889857"}, "stopId": "34586"}, {"stopSequence": 60, "arrival": {"time": "1694889886"}, "stopId": "34587"}, {"stopSequence": 61, "arrival": {"time": "1694889911"}, "stopId": "34588"}, {"stopSequence": 62, "arrival": {"time": "1694889956"}, "stopId": "39497"}, {"stopSequence": 63, "arrival": {"time": "1694889989"}, "stopId": "49407"}, {"stopSequence": 64, "arrival": {"time": "1694890044"}, "stopId": "50034"}, {"stopSequence": 65, "arrival": {"time": "1694890082"}, "stopId": "40903"}, {"stopSequence": 66, "arrival": {"time": "1694890132"}, "stopId": "50035"}, {"stopSequence": 67, "arrival": {"time": "1694890369"}, "stopId": "35713"}], "vehicle": {"licensePlate": "FXVK53"}, "timestamp": "1694888978"}, "vehicle": {"trip": {"tripId": "21875-701ff27f-2", "startTime": "15:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "600", "directionId": 0}, "position": {"latitude": -36.812378, "longitude": -73.07034, "bearing": 118.0, "odometer": 0.0, "speed": 3.3333333}, "timestamp": "1694888978", "vehicle": {"licensePlate": "FXVK53"}}}, {"id": "7ac558ac-405d-458b-9d6f-b9f60ba209fd", "tripUpdate": {"trip": {"tripId": "21942-701ff27f-2", "startTime": "15:22:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "600", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 11, "arrival": {"time": "1694889079"}, "stopId": "90000"}, {"stopSequence": 12, "arrival": {"time": "1694889133"}, "stopId": "39628"}, {"stopSequence": 13, "arrival": {"time": "1694889204"}, "stopId": "39631"}, {"stopSequence": 14, "arrival": {"time": "1694889262"}, "stopId": "49311"}, {"stopSequence": 15, "arrival": {"time": "1694889320"}, "stopId": "39634"}, {"stopSequence": 16, "arrival": {"time": "1694889346"}, "stopId": "39635"}, {"stopSequence": 17, "arrival": {"time": "1694889392"}, "stopId": "39636"}, {"stopSequence": 18, "arrival": {"time": "1694889573"}, "stopId": "39637"}, {"stopSequence": 19, "arrival": {"time": "1694889622"}, "stopId": "49317"}, {"stopSequence": 20, "arrival": {"time": "1694889653"}, "stopId": "49318"}, {"stopSequence": 21, "arrival": {"time": "1694889717"}, "stopId": "49319"}, {"stopSequence": 22, "arrival": {"time": "1694889780"}, "stopId": "39641"}, {"stopSequence": 23, "arrival": {"time": "1694889814"}, "stopId": "39642"}, {"stopSequence": 24, "arrival": {"time": "1694890063"}, "stopId": "39795"}, {"stopSequence": 25, "arrival": {"time": "1694890119"}, "stopId": "42642"}, {"stopSequence": 26, "arrival": {"time": "1694890151"}, "stopId": "42643"}, {"stopSequence": 27, "arrival": {"time": "1694890174"}, "stopId": "42644"}, {"stopSequence": 28, "arrival": {"time": "1694890198"}, "stopId": "42645"}, {"stopSequence": 29, "arrival": {"time": "1694890298"}, "stopId": "8606039"}, {"stopSequence": 30, "arrival": {"time": "1694890329"}, "stopId": "36489"}, {"stopSequence": 31, "arrival": {"time": "1694890359"}, "stopId": "36490"}, {"stopSequence": 32, "arrival": {"time": "1694890382"}, "stopId": "40714"}, {"stopSequence": 33, "arrival": {"time": "1694890444"}, "stopId": "8606049"}, {"stopSequence": 34, "arrival": {"time": "1694890491"}, "stopId": "37428"}, {"stopSequence": 35, "arrival": {"time": "1694890555"}, "stopId": "36551"}, {"stopSequence": 36, "arrival": {"time": "1694890576"}, "stopId": "36552"}, {"stopSequence": 37, "arrival": {"time": "1694890607"}, "stopId": "36553"}, {"stopSequence": 38, "arrival": {"time": "1694890635"}, "stopId": "36554"}, {"stopSequence": 39, "arrival": {"time": "1694890735"}, "stopId": "39657"}, {"stopSequence": 40, "arrival": {"time": "1694890775"}, "stopId": "39658"}, {"stopSequence": 41, "arrival": {"time": "1694890829"}, "stopId": "39659"}, {"stopSequence": 42, "arrival": {"time": "1694890858"}, "stopId": "39660"}, {"stopSequence": 43, "arrival": {"time": "1694890889"}, "stopId": "39661"}, {"stopSequence": 44, "arrival": {"time": "1694890938"}, "stopId": "39662"}, {"stopSequence": 45, "arrival": {"time": "1694890999"}, "stopId": "39663"}, {"stopSequence": 46, "arrival": {"time": "1694891047"}, "stopId": "39664"}, {"stopSequence": 47, "arrival": {"time": "1694891096"}, "stopId": "39665"}, {"stopSequence": 48, "arrival": {"time": "1694891179"}, "stopId": "42522"}, {"stopSequence": 49, "arrival": {"time": "1694891232"}, "stopId": "42524"}, {"stopSequence": 50, "arrival": {"time": "1694891286"}, "stopId": "39686"}, {"stopSequence": 51, "arrival": {"time": "1694891300"}, "stopId": "39687"}, {"stopSequence": 52, "arrival": {"time": "1694891473"}, "stopId": "39232"}, {"stopSequence": 53, "arrival": {"time": "1694891526"}, "stopId": "39233"}, {"stopSequence": 54, "arrival": {"time": "1694891602"}, "stopId": "39234"}, {"stopSequence": 55, "arrival": {"time": "1694891628"}, "stopId": "39235"}, {"stopSequence": 56, "arrival": {"time": "1694891793"}, "stopId": "49342"}, {"stopSequence": 57, "arrival": {"time": "1694891902"}, "stopId": "49343"}], "vehicle": {"licensePlate": "HSBW84"}, "timestamp": "1694889008"}, "vehicle": {"trip": {"tripId": "21942-701ff27f-2", "startTime": "15:22:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "600", "directionId": 1}, "position": {"latitude": -36.82414, "longitude": -73.0478, "bearing": 240.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889008", "vehicle": {"licensePlate": "HSBW84"}}}, {"id": "338c046b-3057-41cd-8c19-2b6c3cd877a7", "tripUpdate": {"trip": {"tripId": "21941-701ff27f-2", "startTime": "15:02:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "600", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 23, "arrival": {"time": "1694889023"}, "stopId": "39642"}, {"stopSequence": 24, "arrival": {"time": "1694889292"}, "stopId": "39795"}, {"stopSequence": 25, "arrival": {"time": "1694889351"}, "stopId": "42642"}, {"stopSequence": 26, "arrival": {"time": "1694889384"}, "stopId": "42643"}, {"stopSequence": 27, "arrival": {"time": "1694889408"}, "stopId": "42644"}, {"stopSequence": 28, "arrival": {"time": "1694889433"}, "stopId": "42645"}, {"stopSequence": 29, "arrival": {"time": "1694889535"}, "stopId": "8606039"}, {"stopSequence": 30, "arrival": {"time": "1694889568"}, "stopId": "36489"}, {"stopSequence": 31, "arrival": {"time": "1694889597"}, "stopId": "36490"}, {"stopSequence": 32, "arrival": {"time": "1694889621"}, "stopId": "40714"}, {"stopSequence": 33, "arrival": {"time": "1694889683"}, "stopId": "8606049"}, {"stopSequence": 34, "arrival": {"time": "1694889729"}, "stopId": "37428"}, {"stopSequence": 35, "arrival": {"time": "1694889792"}, "stopId": "36551"}, {"stopSequence": 36, "arrival": {"time": "1694889813"}, "stopId": "36552"}, {"stopSequence": 37, "arrival": {"time": "1694889843"}, "stopId": "36553"}, {"stopSequence": 38, "arrival": {"time": "1694889870"}, "stopId": "36554"}, {"stopSequence": 39, "arrival": {"time": "1694889966"}, "stopId": "39657"}, {"stopSequence": 40, "arrival": {"time": "1694890004"}, "stopId": "39658"}, {"stopSequence": 41, "arrival": {"time": "1694890055"}, "stopId": "39659"}, {"stopSequence": 42, "arrival": {"time": "1694890082"}, "stopId": "39660"}, {"stopSequence": 43, "arrival": {"time": "1694890111"}, "stopId": "39661"}, {"stopSequence": 44, "arrival": {"time": "1694890156"}, "stopId": "39662"}, {"stopSequence": 45, "arrival": {"time": "1694890213"}, "stopId": "39663"}, {"stopSequence": 46, "arrival": {"time": "1694890256"}, "stopId": "39664"}, {"stopSequence": 47, "arrival": {"time": "1694890301"}, "stopId": "39665"}, {"stopSequence": 48, "arrival": {"time": "1694890375"}, "stopId": "42522"}, {"stopSequence": 49, "arrival": {"time": "1694890423"}, "stopId": "42524"}, {"stopSequence": 50, "arrival": {"time": "1694890470"}, "stopId": "39686"}, {"stopSequence": 51, "arrival": {"time": "1694890482"}, "stopId": "39687"}, {"stopSequence": 52, "arrival": {"time": "1694890633"}, "stopId": "39232"}, {"stopSequence": 53, "arrival": {"time": "1694890679"}, "stopId": "39233"}, {"stopSequence": 54, "arrival": {"time": "1694890744"}, "stopId": "39234"}, {"stopSequence": 55, "arrival": {"time": "1694890766"}, "stopId": "39235"}, {"stopSequence": 56, "arrival": {"time": "1694890904"}, "stopId": "49342"}, {"stopSequence": 57, "arrival": {"time": "1694890994"}, "stopId": "49343"}], "vehicle": {"licensePlate": "RVFC75"}, "timestamp": "1694889022"}, "vehicle": {"trip": {"tripId": "21941-701ff27f-2", "startTime": "15:02:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "600", "directionId": 1}, "position": {"latitude": -36.808548, "longitude": -73.077255, "bearing": 324.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889022", "vehicle": {"licensePlate": "RVFC75"}}}, {"id": "3257727b-615e-4997-8e57-9dca8cb38f95", "tripUpdate": {"trip": {"tripId": "21877-701ff27f-2", "startTime": "15:31:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "600", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 3, "arrival": {"time": "1694888940"}, "stopId": "42427"}, {"stopSequence": 4, "arrival": {"time": "1694888969"}, "stopId": "42428"}, {"stopSequence": 5, "arrival": {"time": "1694889010"}, "stopId": "42429"}, {"stopSequence": 6, "arrival": {"time": "1694889110"}, "stopId": "39668"}, {"stopSequence": 7, "arrival": {"time": "1694889134"}, "stopId": "39234"}, {"stopSequence": 8, "arrival": {"time": "1694889140"}, "stopId": "39669"}, {"stopSequence": 9, "arrival": {"time": "1694889169"}, "stopId": "39670"}, {"stopSequence": 10, "arrival": {"time": "1694889191"}, "stopId": "39233"}, {"stopSequence": 11, "arrival": {"time": "1694889232"}, "stopId": "36752"}, {"stopSequence": 12, "arrival": {"time": "1694889322"}, "stopId": "39231"}, {"stopSequence": 13, "arrival": {"time": "1694889364"}, "stopId": "8606050"}, {"stopSequence": 14, "arrival": {"time": "1694889390"}, "stopId": "36754"}, {"stopSequence": 15, "arrival": {"time": "1694889444"}, "stopId": "37101"}, {"stopSequence": 16, "arrival": {"time": "1694889492"}, "stopId": "42653"}, {"stopSequence": 17, "arrival": {"time": "1694889529"}, "stopId": "42654"}, {"stopSequence": 18, "arrival": {"time": "1694889573"}, "stopId": "37046"}, {"stopSequence": 19, "arrival": {"time": "1694889619"}, "stopId": "37047"}, {"stopSequence": 20, "arrival": {"time": "1694889657"}, "stopId": "37048"}, {"stopSequence": 21, "arrival": {"time": "1694889693"}, "stopId": "42431"}, {"stopSequence": 22, "arrival": {"time": "1694889711"}, "stopId": "42432"}, {"stopSequence": 23, "arrival": {"time": "1694889761"}, "stopId": "37578"}, {"stopSequence": 24, "arrival": {"time": "1694889798"}, "stopId": "39660"}, {"stopSequence": 25, "arrival": {"time": "1694889825"}, "stopId": "39659"}, {"stopSequence": 26, "arrival": {"time": "1694889869"}, "stopId": "37581"}, {"stopSequence": 27, "arrival": {"time": "1694889897"}, "stopId": "37436"}, {"stopSequence": 28, "arrival": {"time": "1694890008"}, "stopId": "36768"}, {"stopSequence": 29, "arrival": {"time": "1694890047"}, "stopId": "36769"}, {"stopSequence": 30, "arrival": {"time": "1694890099"}, "stopId": "36771"}, {"stopSequence": 31, "arrival": {"time": "1694890122"}, "stopId": "36772"}, {"stopSequence": 32, "arrival": {"time": "1694890197"}, "stopId": "37590"}, {"stopSequence": 33, "arrival": {"time": "1694890260"}, "stopId": "40760"}, {"stopSequence": 34, "arrival": {"time": "1694890288"}, "stopId": "36686"}, {"stopSequence": 35, "arrival": {"time": "1694890317"}, "stopId": "36687"}, {"stopSequence": 36, "arrival": {"time": "1694890343"}, "stopId": "8606039"}, {"stopSequence": 37, "arrival": {"time": "1694890384"}, "stopId": "42532"}, {"stopSequence": 38, "arrival": {"time": "1694890435"}, "stopId": "42533"}, {"stopSequence": 39, "arrival": {"time": "1694890493"}, "stopId": "42534"}, {"stopSequence": 40, "arrival": {"time": "1694890532"}, "stopId": "42535"}, {"stopSequence": 41, "arrival": {"time": "1694890622"}, "stopId": "38502"}, {"stopSequence": 42, "arrival": {"time": "1694890683"}, "stopId": "38503"}, {"stopSequence": 43, "arrival": {"time": "1694890849"}, "stopId": "35691"}, {"stopSequence": 44, "arrival": {"time": "1694890955"}, "stopId": "35693"}, {"stopSequence": 45, "arrival": {"time": "1694891014"}, "stopId": "35694"}, {"stopSequence": 46, "arrival": {"time": "1694891053"}, "stopId": "35695"}, {"stopSequence": 47, "arrival": {"time": "1694891111"}, "stopId": "35696"}, {"stopSequence": 48, "arrival": {"time": "1694891307"}, "stopId": "35697"}, {"stopSequence": 49, "arrival": {"time": "1694891420"}, "stopId": "2-Jan"}, {"stopSequence": 50, "arrival": {"time": "1694891456"}, "stopId": "42460"}, {"stopSequence": 51, "arrival": {"time": "1694891505"}, "stopId": "35690"}, {"stopSequence": 52, "arrival": {"time": "1694891631"}, "stopId": "35700"}, {"stopSequence": 53, "arrival": {"time": "1694891741"}, "stopId": "35703"}, {"stopSequence": 54, "arrival": {"time": "1694891782"}, "stopId": "35704"}, {"stopSequence": 55, "arrival": {"time": "1694891801"}, "stopId": "35705"}, {"stopSequence": 56, "arrival": {"time": "1694891826"}, "stopId": "35706"}, {"stopSequence": 57, "arrival": {"time": "1694891899"}, "stopId": "35707"}, {"stopSequence": 58, "arrival": {"time": "1694892022"}, "stopId": "38281"}, {"stopSequence": 59, "arrival": {"time": "1694892101"}, "stopId": "34586"}, {"stopSequence": 60, "arrival": {"time": "1694892143"}, "stopId": "34587"}, {"stopSequence": 61, "arrival": {"time": "1694892180"}, "stopId": "34588"}, {"stopSequence": 62, "arrival": {"time": "1694892247"}, "stopId": "39497"}, {"stopSequence": 63, "arrival": {"time": "1694892298"}, "stopId": "49407"}, {"stopSequence": 64, "arrival": {"time": "1694892384"}, "stopId": "50034"}, {"stopSequence": 65, "arrival": {"time": "1694892445"}, "stopId": "40903"}, {"stopSequence": 66, "arrival": {"time": "1694892525"}, "stopId": "50035"}, {"stopSequence": 67, "arrival": {"time": "1694892933"}, "stopId": "35713"}], "vehicle": {"licensePlate": "RW9701"}, "timestamp": "1694888838"}, "vehicle": {"trip": {"tripId": "21877-701ff27f-2", "startTime": "15:31:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "600", "directionId": 0}, "position": {"latitude": -36.773693, "longitude": -73.11395, "bearing": 166.0, "odometer": 0.0, "speed": 11.944445}, "timestamp": "1694888838", "vehicle": {"licensePlate": "RW9701"}}}, {"id": "1b151cf4-c0ee-47ac-913b-a629fc850a45", "tripUpdate": {"trip": {"tripId": "22075-701ff27f-2", "startTime": "15:22:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "601", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 17, "arrival": {"time": "1694889051"}, "stopId": "38528"}, {"stopSequence": 18, "arrival": {"time": "1694889178"}, "stopId": "38529"}, {"stopSequence": 19, "arrival": {"time": "1694889388"}, "stopId": "38530"}, {"stopSequence": 20, "arrival": {"time": "1694889401"}, "stopId": "16005209"}, {"stopSequence": 21, "arrival": {"time": "1694889700"}, "stopId": "36001"}, {"stopSequence": 22, "arrival": {"time": "1694889850"}, "stopId": "42604"}, {"stopSequence": 23, "arrival": {"time": "1694889960"}, "stopId": "38692"}, {"stopSequence": 24, "arrival": {"time": "1694890027"}, "stopId": "38714"}, {"stopSequence": 25, "arrival": {"time": "1694890073"}, "stopId": "39791"}, {"stopSequence": 26, "arrival": {"time": "1694890094"}, "stopId": "49329"}, {"stopSequence": 27, "arrival": {"time": "1694890148"}, "stopId": "49330"}, {"stopSequence": 28, "arrival": {"time": "1694890192"}, "stopId": "39652"}, {"stopSequence": 29, "arrival": {"time": "1694890245"}, "stopId": "36683"}, {"stopSequence": 30, "arrival": {"time": "1694890263"}, "stopId": "37590"}, {"stopSequence": 31, "arrival": {"time": "1694890325"}, "stopId": "40760"}, {"stopSequence": 32, "arrival": {"time": "1694890353"}, "stopId": "36686"}, {"stopSequence": 33, "arrival": {"time": "1694890382"}, "stopId": "36687"}, {"stopSequence": 34, "arrival": {"time": "1694890407"}, "stopId": "8606039"}, {"stopSequence": 35, "arrival": {"time": "1694890446"}, "stopId": "36641"}, {"stopSequence": 36, "arrival": {"time": "1694890571"}, "stopId": "36689"}, {"stopSequence": 37, "arrival": {"time": "1694890616"}, "stopId": "36690"}, {"stopSequence": 38, "arrival": {"time": "1694890670"}, "stopId": "36691"}, {"stopSequence": 39, "arrival": {"time": "1694890705"}, "stopId": "36692"}, {"stopSequence": 40, "arrival": {"time": "1694890722"}, "stopId": "36693"}, {"stopSequence": 41, "arrival": {"time": "1694890768"}, "stopId": "40036"}, {"stopSequence": 42, "arrival": {"time": "1694890830"}, "stopId": "36695"}, {"stopSequence": 43, "arrival": {"time": "1694890880"}, "stopId": "36696"}, {"stopSequence": 44, "arrival": {"time": "1694890943"}, "stopId": "39229"}, {"stopSequence": 45, "arrival": {"time": "1694890979"}, "stopId": "32587"}, {"stopSequence": 46, "arrival": {"time": "1694891038"}, "stopId": "39139"}, {"stopSequence": 47, "arrival": {"time": "1694891344"}, "stopId": "36699"}, {"stopSequence": 48, "arrival": {"time": "1694891373"}, "stopId": "36700"}, {"stopSequence": 49, "arrival": {"time": "1694891409"}, "stopId": "36701"}, {"stopSequence": 50, "arrival": {"time": "1694891433"}, "stopId": "36702"}, {"stopSequence": 51, "arrival": {"time": "1694891448"}, "stopId": "36703"}, {"stopSequence": 52, "arrival": {"time": "1694891482"}, "stopId": "36704"}, {"stopSequence": 53, "arrival": {"time": "1694891536"}, "stopId": "39231"}, {"stopSequence": 54, "arrival": {"time": "1694891630"}, "stopId": "39232"}, {"stopSequence": 55, "arrival": {"time": "1694891685"}, "stopId": "39233"}, {"stopSequence": 56, "arrival": {"time": "1694891764"}, "stopId": "39234"}, {"stopSequence": 57, "arrival": {"time": "1694891791"}, "stopId": "39235"}, {"stopSequence": 58, "arrival": {"time": "1694891964"}, "stopId": "49342"}, {"stopSequence": 59, "arrival": {"time": "1694892087"}, "stopId": "49343"}], "vehicle": {"licensePlate": "BBFV12"}, "timestamp": "1694889000"}, "vehicle": {"trip": {"tripId": "22075-701ff27f-2", "startTime": "15:22:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "601", "directionId": 1}, "position": {"latitude": -36.80314, "longitude": -73.05522, "bearing": 334.0, "odometer": 0.0, "speed": 4.4444447}, "timestamp": "1694889000", "vehicle": {"licensePlate": "BBFV12"}}}, {"id": "16bc65ce-2e7a-4064-8ebb-fbcafbb45818", "tripUpdate": {"trip": {"tripId": "22009-701ff27f-2", "startTime": "15:16:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "601", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 28, "arrival": {"time": "1694888988"}, "stopId": "3890531"}, {"stopSequence": 29, "arrival": {"time": "1694889028"}, "stopId": "3890533"}, {"stopSequence": 30, "arrival": {"time": "1694889067"}, "stopId": "32571"}, {"stopSequence": 31, "arrival": {"time": "1694889132"}, "stopId": "32736"}, {"stopSequence": 32, "arrival": {"time": "1694889173"}, "stopId": "8606039"}, {"stopSequence": 33, "arrival": {"time": "1694889206"}, "stopId": "36489"}, {"stopSequence": 34, "arrival": {"time": "1694889237"}, "stopId": "36490"}, {"stopSequence": 35, "arrival": {"time": "1694889262"}, "stopId": "40714"}, {"stopSequence": 36, "arrival": {"time": "1694889326"}, "stopId": "8606049"}, {"stopSequence": 37, "arrival": {"time": "1694889365"}, "stopId": "37840"}, {"stopSequence": 38, "arrival": {"time": "1694889390"}, "stopId": "49140"}, {"stopSequence": 39, "arrival": {"time": "1694889431"}, "stopId": "49141"}, {"stopSequence": 40, "arrival": {"time": "1694889470"}, "stopId": "49142"}, {"stopSequence": 41, "arrival": {"time": "1694889507"}, "stopId": "49143"}, {"stopSequence": 42, "arrival": {"time": "1694889514"}, "stopId": "45112"}, {"stopSequence": 43, "arrival": {"time": "1694889565"}, "stopId": "45113"}, {"stopSequence": 44, "arrival": {"time": "1694889644"}, "stopId": "37490"}, {"stopSequence": 45, "arrival": {"time": "1694889733"}, "stopId": "37104"}, {"stopSequence": 46, "arrival": {"time": "1694889773"}, "stopId": "8606052"}, {"stopSequence": 47, "arrival": {"time": "1694890026"}, "stopId": "16005188"}, {"stopSequence": 48, "arrival": {"time": "1694890265"}, "stopId": "40995"}, {"stopSequence": 49, "arrival": {"time": "1694890344"}, "stopId": "40996"}, {"stopSequence": 50, "arrival": {"time": "1694890420"}, "stopId": "40997"}, {"stopSequence": 51, "arrival": {"time": "1694890478"}, "stopId": "39614"}, {"stopSequence": 52, "arrival": {"time": "1694890527"}, "stopId": "39615"}, {"stopSequence": 53, "arrival": {"time": "1694890575"}, "stopId": "39616"}, {"stopSequence": 54, "arrival": {"time": "1694890630"}, "stopId": "39617"}, {"stopSequence": 55, "arrival": {"time": "1694890689"}, "stopId": "39618"}, {"stopSequence": 56, "arrival": {"time": "1694890736"}, "stopId": "39619"}, {"stopSequence": 57, "arrival": {"time": "1694890776"}, "stopId": "39620"}, {"stopSequence": 58, "arrival": {"time": "1694890847"}, "stopId": "39621"}, {"stopSequence": 59, "arrival": {"time": "1694890909"}, "stopId": "39623"}, {"stopSequence": 60, "arrival": {"time": "1694890960"}, "stopId": "39624"}, {"stopSequence": 61, "arrival": {"time": "1694891030"}, "stopId": "90000"}, {"stopSequence": 62, "arrival": {"time": "1694891085"}, "stopId": "39628"}, {"stopSequence": 63, "arrival": {"time": "1694891169"}, "stopId": "39631"}, {"stopSequence": 64, "arrival": {"time": "1694891222"}, "stopId": "49311"}], "vehicle": {"licensePlate": "BFPV68"}, "timestamp": "1694888974"}, "vehicle": {"trip": {"tripId": "22009-701ff27f-2", "startTime": "15:16:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "601", "directionId": 0}, "position": {"latitude": -36.80395, "longitude": -73.10168, "bearing": 122.0, "odometer": 0.0, "speed": 13.888889}, "timestamp": "1694888974", "vehicle": {"licensePlate": "BFPV68"}}}, {"id": "01045ffd-3e51-4f12-aa59-9b8d48d48289", "tripUpdate": {"trip": {"tripId": "22007-701ff27f-2", "startTime": "14:46:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "601", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 50, "arrival": {"time": "1694889045"}, "stopId": "40997"}, {"stopSequence": 51, "arrival": {"time": "1694889107"}, "stopId": "39614"}, {"stopSequence": 52, "arrival": {"time": "1694889158"}, "stopId": "39615"}, {"stopSequence": 53, "arrival": {"time": "1694889209"}, "stopId": "39616"}, {"stopSequence": 54, "arrival": {"time": "1694889265"}, "stopId": "39617"}, {"stopSequence": 55, "arrival": {"time": "1694889325"}, "stopId": "39618"}, {"stopSequence": 56, "arrival": {"time": "1694889372"}, "stopId": "39619"}, {"stopSequence": 57, "arrival": {"time": "1694889411"}, "stopId": "39620"}, {"stopSequence": 58, "arrival": {"time": "1694889480"}, "stopId": "39621"}, {"stopSequence": 59, "arrival": {"time": "1694889539"}, "stopId": "39623"}, {"stopSequence": 60, "arrival": {"time": "1694889587"}, "stopId": "39624"}, {"stopSequence": 61, "arrival": {"time": "1694889652"}, "stopId": "90000"}, {"stopSequence": 62, "arrival": {"time": "1694889702"}, "stopId": "39628"}, {"stopSequence": 63, "arrival": {"time": "1694889777"}, "stopId": "39631"}, {"stopSequence": 64, "arrival": {"time": "1694889823"}, "stopId": "49311"}], "vehicle": {"licensePlate": "CYSD25"}, "timestamp": "1694889016"}, "vehicle": {"trip": {"tripId": "22007-701ff27f-2", "startTime": "14:46:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "601", "directionId": 0}, "position": {"latitude": -36.803387, "longitude": -73.055115, "bearing": 146.0, "odometer": 0.0, "speed": 8.055555}, "timestamp": "1694889016", "vehicle": {"licensePlate": "CYSD25"}}}, {"id": "242d228a-2a04-4245-a207-302a6eca0ec0", "tripUpdate": {"trip": {"tripId": "22076-701ff27f-2", "startTime": "15:42:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "601", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 1, "arrival": {"time": "1694889075"}, "stopId": "35700"}, {"stopSequence": 2, "arrival": {"time": "1694889106"}, "stopId": "35701"}, {"stopSequence": 3, "arrival": {"time": "1694889174"}, "stopId": "35703"}, {"stopSequence": 4, "arrival": {"time": "1694889189"}, "stopId": "35704"}, {"stopSequence": 5, "arrival": {"time": "1694889213"}, "stopId": "35705"}, {"stopSequence": 6, "arrival": {"time": "1694889232"}, "stopId": "35706"}, {"stopSequence": 7, "arrival": {"time": "1694889289"}, "stopId": "35707"}, {"stopSequence": 8, "arrival": {"time": "1694889315"}, "stopId": "35708"}, {"stopSequence": 9, "arrival": {"time": "1694889382"}, "stopId": "38520"}, {"stopSequence": 10, "arrival": {"time": "1694889423"}, "stopId": "38521"}, {"stopSequence": 11, "arrival": {"time": "1694889472"}, "stopId": "38522"}, {"stopSequence": 12, "arrival": {"time": "1694889522"}, "stopId": "38523"}, {"stopSequence": 13, "arrival": {"time": "1694889574"}, "stopId": "38524"}, {"stopSequence": 14, "arrival": {"time": "1694889622"}, "stopId": "38525"}, {"stopSequence": 15, "arrival": {"time": "1694889673"}, "stopId": "38526"}, {"stopSequence": 16, "arrival": {"time": "1694889721"}, "stopId": "38527"}, {"stopSequence": 17, "arrival": {"time": "1694889806"}, "stopId": "38528"}, {"stopSequence": 18, "arrival": {"time": "1694889923"}, "stopId": "38529"}, {"stopSequence": 19, "arrival": {"time": "1694890122"}, "stopId": "38530"}, {"stopSequence": 20, "arrival": {"time": "1694890135"}, "stopId": "16005209"}, {"stopSequence": 21, "arrival": {"time": "1694890429"}, "stopId": "36001"}, {"stopSequence": 22, "arrival": {"time": "1694890583"}, "stopId": "42604"}, {"stopSequence": 23, "arrival": {"time": "1694890696"}, "stopId": "38692"}, {"stopSequence": 24, "arrival": {"time": "1694890767"}, "stopId": "38714"}, {"stopSequence": 25, "arrival": {"time": "1694890816"}, "stopId": "39791"}, {"stopSequence": 26, "arrival": {"time": "1694890838"}, "stopId": "49329"}, {"stopSequence": 27, "arrival": {"time": "1694890897"}, "stopId": "49330"}, {"stopSequence": 28, "arrival": {"time": "1694890944"}, "stopId": "39652"}, {"stopSequence": 29, "arrival": {"time": "1694891002"}, "stopId": "36683"}, {"stopSequence": 30, "arrival": {"time": "1694891022"}, "stopId": "37590"}, {"stopSequence": 31, "arrival": {"time": "1694891090"}, "stopId": "40760"}, {"stopSequence": 32, "arrival": {"time": "1694891121"}, "stopId": "36686"}, {"stopSequence": 33, "arrival": {"time": "1694891153"}, "stopId": "36687"}, {"stopSequence": 34, "arrival": {"time": "1694891182"}, "stopId": "8606039"}, {"stopSequence": 35, "arrival": {"time": "1694891225"}, "stopId": "36641"}, {"stopSequence": 36, "arrival": {"time": "1694891368"}, "stopId": "36689"}, {"stopSequence": 37, "arrival": {"time": "1694891418"}, "stopId": "36690"}, {"stopSequence": 38, "arrival": {"time": "1694891482"}, "stopId": "36691"}, {"stopSequence": 39, "arrival": {"time": "1694891523"}, "stopId": "36692"}, {"stopSequence": 40, "arrival": {"time": "1694891542"}, "stopId": "36693"}, {"stopSequence": 41, "arrival": {"time": "1694891596"}, "stopId": "40036"}, {"stopSequence": 42, "arrival": {"time": "1694891669"}, "stopId": "36695"}, {"stopSequence": 43, "arrival": {"time": "1694891729"}, "stopId": "36696"}, {"stopSequence": 44, "arrival": {"time": "1694891805"}, "stopId": "39229"}, {"stopSequence": 45, "arrival": {"time": "1694891848"}, "stopId": "32587"}, {"stopSequence": 46, "arrival": {"time": "1694891920"}, "stopId": "39139"}, {"stopSequence": 47, "arrival": {"time": "1694892300"}, "stopId": "36699"}, {"stopSequence": 48, "arrival": {"time": "1694892337"}, "stopId": "36700"}, {"stopSequence": 49, "arrival": {"time": "1694892382"}, "stopId": "36701"}, {"stopSequence": 50, "arrival": {"time": "1694892414"}, "stopId": "36702"}, {"stopSequence": 51, "arrival": {"time": "1694892433"}, "stopId": "36703"}, {"stopSequence": 52, "arrival": {"time": "1694892476"}, "stopId": "36704"}, {"stopSequence": 53, "arrival": {"time": "1694892546"}, "stopId": "39231"}, {"stopSequence": 54, "arrival": {"time": "1694892668"}, "stopId": "39232"}, {"stopSequence": 55, "arrival": {"time": "1694892741"}, "stopId": "39233"}, {"stopSequence": 56, "arrival": {"time": "1694892847"}, "stopId": "39234"}, {"stopSequence": 57, "arrival": {"time": "1694892883"}, "stopId": "39235"}, {"stopSequence": 58, "arrival": {"time": "1694893115"}, "stopId": "49342"}, {"stopSequence": 59, "arrival": {"time": "1694893284"}, "stopId": "49343"}], "vehicle": {"licensePlate": "RSZJ30"}, "timestamp": "1694888982"}, "vehicle": {"trip": {"tripId": "22076-701ff27f-2", "startTime": "15:42:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "601", "directionId": 1}, "position": {"latitude": -36.828327, "longitude": -73.05977, "bearing": 332.0, "odometer": 0.0, "speed": 1.3888888}, "timestamp": "1694888982", "vehicle": {"licensePlate": "RSZJ30"}}}, {"id": "b7070b35-28ea-414a-acfd-f794fce3bde7", "tripUpdate": {"trip": {"tripId": "22150-701ff27f-2", "startTime": "14:48:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "602", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 47, "arrival": {"time": "1694888985"}, "stopId": "45069"}, {"stopSequence": 48, "arrival": {"time": "1694889104"}, "stopId": "37523"}, {"stopSequence": 49, "arrival": {"time": "1694889146"}, "stopId": "37477"}], "vehicle": {"licensePlate": "WD9973"}, "timestamp": "1694888980"}, "vehicle": {"trip": {"tripId": "22150-701ff27f-2", "startTime": "14:48:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "602", "directionId": 0}, "position": {"latitude": -36.826504, "longitude": -73.047386, "bearing": 240.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888980", "vehicle": {"licensePlate": "WD9973"}}}, {"id": "f482c20d-c72a-4efe-8048-c530b05a15a8", "tripUpdate": {"trip": {"tripId": "22151-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "602", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 36, "arrival": {"time": "1694889026"}, "stopId": "40997"}, {"stopSequence": 37, "arrival": {"time": "1694889088"}, "stopId": "39614"}, {"stopSequence": 38, "arrival": {"time": "1694889138"}, "stopId": "39615"}, {"stopSequence": 39, "arrival": {"time": "1694889190"}, "stopId": "39616"}, {"stopSequence": 40, "arrival": {"time": "1694889246"}, "stopId": "39617"}, {"stopSequence": 41, "arrival": {"time": "1694889305"}, "stopId": "39618"}, {"stopSequence": 42, "arrival": {"time": "1694889350"}, "stopId": "39619"}, {"stopSequence": 43, "arrival": {"time": "1694889392"}, "stopId": "39620"}, {"stopSequence": 44, "arrival": {"time": "1694889460"}, "stopId": "39621"}, {"stopSequence": 45, "arrival": {"time": "1694889506"}, "stopId": "38281"}, {"stopSequence": 46, "arrival": {"time": "1694889563"}, "stopId": "37506"}, {"stopSequence": 47, "arrival": {"time": "1694889637"}, "stopId": "45069"}, {"stopSequence": 48, "arrival": {"time": "1694889747"}, "stopId": "37523"}, {"stopSequence": 49, "arrival": {"time": "1694889786"}, "stopId": "37477"}], "vehicle": {"licensePlate": "WJ2140"}, "timestamp": "1694888984"}, "vehicle": {"trip": {"tripId": "22151-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "602", "directionId": 0}, "position": {"latitude": -36.802902, "longitude": -73.055466, "bearing": 152.0, "odometer": 0.0, "speed": 8.611111}, "timestamp": "1694888984", "vehicle": {"licensePlate": "WJ2140"}}}, {"id": "d8f7e17e-05b0-4a47-a206-96c6ad837f6e", "tripUpdate": {"trip": {"tripId": "22322-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "603", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 39, "arrival": {"time": "1694888985"}, "stopId": "35694"}, {"stopSequence": 40, "arrival": {"time": "1694889019"}, "stopId": "35695"}, {"stopSequence": 41, "arrival": {"time": "1694889032"}, "stopId": "49317"}, {"stopSequence": 42, "arrival": {"time": "1694889114"}, "stopId": "49318"}, {"stopSequence": 43, "arrival": {"time": "1694889210"}, "stopId": "35696"}, {"stopSequence": 44, "arrival": {"time": "1694889384"}, "stopId": "35697"}, {"stopSequence": 45, "arrival": {"time": "1694889481"}, "stopId": "2-Jan"}, {"stopSequence": 46, "arrival": {"time": "1694889510"}, "stopId": "42460"}, {"stopSequence": 47, "arrival": {"time": "1694889568"}, "stopId": "39726"}, {"stopSequence": 48, "arrival": {"time": "1694889589"}, "stopId": "2-Mar"}, {"stopSequence": 49, "arrival": {"time": "1694889644"}, "stopId": "1566281"}, {"stopSequence": 50, "arrival": {"time": "1694889672"}, "stopId": "42315"}, {"stopSequence": 51, "arrival": {"time": "1694889694"}, "stopId": "42316"}, {"stopSequence": 52, "arrival": {"time": "1694889744"}, "stopId": "42317"}, {"stopSequence": 53, "arrival": {"time": "1694889817"}, "stopId": "42319"}, {"stopSequence": 54, "arrival": {"time": "1694889889"}, "stopId": "42320"}, {"stopSequence": 55, "arrival": {"time": "1694889935"}, "stopId": "38514"}, {"stopSequence": 56, "arrival": {"time": "1694889989"}, "stopId": "34586"}, {"stopSequence": 57, "arrival": {"time": "1694890017"}, "stopId": "34587"}, {"stopSequence": 58, "arrival": {"time": "1694890039"}, "stopId": "34588"}, {"stopSequence": 59, "arrival": {"time": "1694890087"}, "stopId": "39497"}, {"stopSequence": 60, "arrival": {"time": "1694890120"}, "stopId": "49407"}, {"stopSequence": 61, "arrival": {"time": "1694890176"}, "stopId": "50034"}, {"stopSequence": 62, "arrival": {"time": "1694890214"}, "stopId": "40903"}, {"stopSequence": 63, "arrival": {"time": "1694890263"}, "stopId": "50035"}, {"stopSequence": 64, "arrival": {"time": "1694890312"}, "stopId": "50036"}, {"stopSequence": 65, "arrival": {"time": "1694890410"}, "stopId": "35712"}, {"stopSequence": 66, "arrival": {"time": "1694890503"}, "stopId": "35713"}], "vehicle": {"licensePlate": "CYJS26"}, "timestamp": "1694888984"}, "vehicle": {"trip": {"tripId": "22322-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "603", "directionId": 0}, "position": {"latitude": -36.812424, "longitude": -73.07031, "bearing": 122.0, "odometer": 0.0, "speed": 4.7222223}, "timestamp": "1694888984", "vehicle": {"licensePlate": "CYJS26"}}}, {"id": "f7d7c5ef-fc5b-41cd-b1fd-99eb004c51fc", "tripUpdate": {"trip": {"tripId": "22320-701ff27f-2", "startTime": "14:36:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "603", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 65, "arrival": {"time": "1694889028"}, "stopId": "35712"}, {"stopSequence": 66, "arrival": {"time": "1694889127"}, "stopId": "35713"}], "vehicle": {"licensePlate": "DSJL16"}, "timestamp": "1694888988"}, "vehicle": {"trip": {"tripId": "22320-701ff27f-2", "startTime": "14:36:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "603", "directionId": 0}, "position": {"latitude": -36.811367, "longitude": -73.027275, "bearing": 80.0, "odometer": 0.0, "speed": 1.3888888}, "timestamp": "1694888988", "vehicle": {"licensePlate": "DSJL16"}}}, {"id": "442ad282-837c-4e27-998a-f7c4a8a3fda7", "tripUpdate": {"trip": {"tripId": "22323-701ff27f-2", "startTime": "15:12:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "603", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 28, "arrival": {"time": "1694889030"}, "stopId": "39791"}, {"stopSequence": 29, "arrival": {"time": "1694889059"}, "stopId": "38506"}, {"stopSequence": 30, "arrival": {"time": "1694889111"}, "stopId": "38635"}, {"stopSequence": 31, "arrival": {"time": "1694889156"}, "stopId": "38509"}, {"stopSequence": 32, "arrival": {"time": "1694889192"}, "stopId": "38642"}, {"stopSequence": 33, "arrival": {"time": "1694889237"}, "stopId": "39795"}, {"stopSequence": 34, "arrival": {"time": "1694889271"}, "stopId": "38502"}, {"stopSequence": 35, "arrival": {"time": "1694889328"}, "stopId": "38503"}, {"stopSequence": 36, "arrival": {"time": "1694889499"}, "stopId": "35691"}, {"stopSequence": 37, "arrival": {"time": "1694889525"}, "stopId": "35692"}, {"stopSequence": 38, "arrival": {"time": "1694889587"}, "stopId": "35693"}, {"stopSequence": 39, "arrival": {"time": "1694889648"}, "stopId": "35694"}, {"stopSequence": 40, "arrival": {"time": "1694889680"}, "stopId": "35695"}, {"stopSequence": 41, "arrival": {"time": "1694889692"}, "stopId": "49317"}, {"stopSequence": 42, "arrival": {"time": "1694889767"}, "stopId": "49318"}, {"stopSequence": 43, "arrival": {"time": "1694889857"}, "stopId": "35696"}, {"stopSequence": 44, "arrival": {"time": "1694890023"}, "stopId": "35697"}, {"stopSequence": 45, "arrival": {"time": "1694890116"}, "stopId": "2-Jan"}, {"stopSequence": 46, "arrival": {"time": "1694890145"}, "stopId": "42460"}, {"stopSequence": 47, "arrival": {"time": "1694890201"}, "stopId": "39726"}, {"stopSequence": 48, "arrival": {"time": "1694890222"}, "stopId": "2-Mar"}, {"stopSequence": 49, "arrival": {"time": "1694890277"}, "stopId": "1566281"}, {"stopSequence": 50, "arrival": {"time": "1694890304"}, "stopId": "42315"}, {"stopSequence": 51, "arrival": {"time": "1694890327"}, "stopId": "42316"}, {"stopSequence": 52, "arrival": {"time": "1694890377"}, "stopId": "42317"}, {"stopSequence": 53, "arrival": {"time": "1694890451"}, "stopId": "42319"}, {"stopSequence": 54, "arrival": {"time": "1694890525"}, "stopId": "42320"}, {"stopSequence": 55, "arrival": {"time": "1694890572"}, "stopId": "38514"}, {"stopSequence": 56, "arrival": {"time": "1694890628"}, "stopId": "34586"}, {"stopSequence": 57, "arrival": {"time": "1694890658"}, "stopId": "34587"}, {"stopSequence": 58, "arrival": {"time": "1694890680"}, "stopId": "34588"}, {"stopSequence": 59, "arrival": {"time": "1694890731"}, "stopId": "39497"}, {"stopSequence": 60, "arrival": {"time": "1694890766"}, "stopId": "49407"}, {"stopSequence": 61, "arrival": {"time": "1694890825"}, "stopId": "50034"}, {"stopSequence": 62, "arrival": {"time": "1694890865"}, "stopId": "40903"}, {"stopSequence": 63, "arrival": {"time": "1694890918"}, "stopId": "50035"}, {"stopSequence": 64, "arrival": {"time": "1694890971"}, "stopId": "50036"}, {"stopSequence": 65, "arrival": {"time": "1694891078"}, "stopId": "35712"}, {"stopSequence": 66, "arrival": {"time": "1694891181"}, "stopId": "35713"}], "vehicle": {"licensePlate": "FXRZ34"}, "timestamp": "1694888980"}, "vehicle": {"trip": {"tripId": "22323-701ff27f-2", "startTime": "15:12:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "603", "directionId": 0}, "position": {"latitude": -36.787624, "longitude": -73.08695, "bearing": 180.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888980", "vehicle": {"licensePlate": "FXRZ34"}}}, {"id": "9fafcf83-7a61-4857-8e18-1db851f4a819", "tripUpdate": {"trip": {"tripId": "22238-701ff27f-2", "startTime": "15:27:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "603", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 11, "arrival": {"time": "1694888994"}, "stopId": "39625"}, {"stopSequence": 12, "arrival": {"time": "1694889068"}, "stopId": "39628"}, {"stopSequence": 13, "arrival": {"time": "1694889149"}, "stopId": "39631"}, {"stopSequence": 14, "arrival": {"time": "1694889199"}, "stopId": "49311"}, {"stopSequence": 15, "arrival": {"time": "1694889256"}, "stopId": "39634"}, {"stopSequence": 16, "arrival": {"time": "1694889282"}, "stopId": "39635"}, {"stopSequence": 17, "arrival": {"time": "1694889329"}, "stopId": "39636"}, {"stopSequence": 18, "arrival": {"time": "1694889383"}, "stopId": "49503"}, {"stopSequence": 19, "arrival": {"time": "1694889511"}, "stopId": "39637"}, {"stopSequence": 20, "arrival": {"time": "1694889560"}, "stopId": "49317"}, {"stopSequence": 21, "arrival": {"time": "1694889591"}, "stopId": "49318"}, {"stopSequence": 22, "arrival": {"time": "1694889656"}, "stopId": "49319"}, {"stopSequence": 23, "arrival": {"time": "1694889724"}, "stopId": "39641"}, {"stopSequence": 24, "arrival": {"time": "1694889753"}, "stopId": "39642"}, {"stopSequence": 25, "arrival": {"time": "1694890025"}, "stopId": "49325"}, {"stopSequence": 26, "arrival": {"time": "1694890086"}, "stopId": "49326"}, {"stopSequence": 27, "arrival": {"time": "1694890111"}, "stopId": "39648"}, {"stopSequence": 28, "arrival": {"time": "1694890158"}, "stopId": "39649"}, {"stopSequence": 29, "arrival": {"time": "1694890196"}, "stopId": "45112"}, {"stopSequence": 30, "arrival": {"time": "1694890239"}, "stopId": "45113"}, {"stopSequence": 31, "arrival": {"time": "1694890317"}, "stopId": "37490"}, {"stopSequence": 32, "arrival": {"time": "1694890470"}, "stopId": "42604"}, {"stopSequence": 33, "arrival": {"time": "1694890513"}, "stopId": "42605"}, {"stopSequence": 34, "arrival": {"time": "1694890571"}, "stopId": "42606"}, {"stopSequence": 35, "arrival": {"time": "1694890606"}, "stopId": "42607"}, {"stopSequence": 36, "arrival": {"time": "1694890663"}, "stopId": "42608"}, {"stopSequence": 37, "arrival": {"time": "1694890707"}, "stopId": "49335"}, {"stopSequence": 38, "arrival": {"time": "1694890758"}, "stopId": "49336"}, {"stopSequence": 39, "arrival": {"time": "1694890852"}, "stopId": "37437"}, {"stopSequence": 40, "arrival": {"time": "1694890900"}, "stopId": "49337"}, {"stopSequence": 41, "arrival": {"time": "1694890938"}, "stopId": "39661"}, {"stopSequence": 42, "arrival": {"time": "1694890981"}, "stopId": "39662"}, {"stopSequence": 43, "arrival": {"time": "1694891041"}, "stopId": "39663"}, {"stopSequence": 44, "arrival": {"time": "1694891089"}, "stopId": "39664"}, {"stopSequence": 45, "arrival": {"time": "1694891139"}, "stopId": "39665"}, {"stopSequence": 46, "arrival": {"time": "1694891251"}, "stopId": "39666"}, {"stopSequence": 47, "arrival": {"time": "1694891289"}, "stopId": "39667"}, {"stopSequence": 48, "arrival": {"time": "1694891352"}, "stopId": "36935"}, {"stopSequence": 49, "arrival": {"time": "1694891387"}, "stopId": "36936"}, {"stopSequence": 50, "arrival": {"time": "1694891515"}, "stopId": "49343"}], "vehicle": {"licensePlate": "KHJL48"}, "timestamp": "1694888992"}, "vehicle": {"trip": {"tripId": "22238-701ff27f-2", "startTime": "15:27:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "603", "directionId": 1}, "position": {"latitude": -36.825165, "longitude": -73.05009, "bearing": 222.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888992", "vehicle": {"licensePlate": "KHJL48"}}}, {"id": "ac4eac7a-9f59-428e-9395-a73fcdd29dfe", "tripUpdate": {"trip": {"tripId": "22321-701ff27f-2", "startTime": "14:48:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "603", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 54, "arrival": {"time": "1694889076"}, "stopId": "42320"}, {"stopSequence": 55, "arrival": {"time": "1694889126"}, "stopId": "38514"}, {"stopSequence": 56, "arrival": {"time": "1694889184"}, "stopId": "34586"}, {"stopSequence": 57, "arrival": {"time": "1694889214"}, "stopId": "34587"}, {"stopSequence": 58, "arrival": {"time": "1694889237"}, "stopId": "34588"}, {"stopSequence": 59, "arrival": {"time": "1694889289"}, "stopId": "39497"}, {"stopSequence": 60, "arrival": {"time": "1694889323"}, "stopId": "49407"}, {"stopSequence": 61, "arrival": {"time": "1694889381"}, "stopId": "50034"}, {"stopSequence": 62, "arrival": {"time": "1694889421"}, "stopId": "40903"}, {"stopSequence": 63, "arrival": {"time": "1694889471"}, "stopId": "50035"}, {"stopSequence": 64, "arrival": {"time": "1694889522"}, "stopId": "50036"}, {"stopSequence": 65, "arrival": {"time": "1694889620"}, "stopId": "35712"}, {"stopSequence": 66, "arrival": {"time": "1694889713"}, "stopId": "35713"}], "vehicle": {"licensePlate": "RKKW56"}, "timestamp": "1694889004"}, "vehicle": {"trip": {"tripId": "22321-701ff27f-2", "startTime": "14:48:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "603", "directionId": 0}, "position": {"latitude": -36.8284, "longitude": -73.04879, "bearing": 60.0, "odometer": 0.0, "speed": 0.2777778}, "timestamp": "1694889004", "vehicle": {"licensePlate": "RKKW56"}}}, {"id": "cf4da3f1-e731-4ab9-8c1a-405226369379", "tripUpdate": {"trip": {"tripId": "22324-701ff27f-2", "startTime": "15:24:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "603", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 13, "arrival": {"time": "1694889019"}, "stopId": "37048"}, {"stopSequence": 14, "arrival": {"time": "1694889060"}, "stopId": "42431"}, {"stopSequence": 15, "arrival": {"time": "1694889080"}, "stopId": "42432"}, {"stopSequence": 16, "arrival": {"time": "1694889133"}, "stopId": "37578"}, {"stopSequence": 17, "arrival": {"time": "1694889170"}, "stopId": "42434"}, {"stopSequence": 18, "arrival": {"time": "1694889221"}, "stopId": "42435"}, {"stopSequence": 19, "arrival": {"time": "1694889268"}, "stopId": "4831075"}, {"stopSequence": 20, "arrival": {"time": "1694889315"}, "stopId": "49135"}, {"stopSequence": 21, "arrival": {"time": "1694889357"}, "stopId": "49136"}, {"stopSequence": 22, "arrival": {"time": "1694889457"}, "stopId": "42438"}, {"stopSequence": 23, "arrival": {"time": "1694889486"}, "stopId": "37442"}, {"stopSequence": 24, "arrival": {"time": "1694889554"}, "stopId": "42440"}, {"stopSequence": 25, "arrival": {"time": "1694889590"}, "stopId": "42441"}, {"stopSequence": 26, "arrival": {"time": "1694889698"}, "stopId": "38692"}, {"stopSequence": 27, "arrival": {"time": "1694889766"}, "stopId": "38714"}, {"stopSequence": 28, "arrival": {"time": "1694889813"}, "stopId": "39791"}, {"stopSequence": 29, "arrival": {"time": "1694889840"}, "stopId": "38506"}, {"stopSequence": 30, "arrival": {"time": "1694889887"}, "stopId": "38635"}, {"stopSequence": 31, "arrival": {"time": "1694889929"}, "stopId": "38509"}, {"stopSequence": 32, "arrival": {"time": "1694889963"}, "stopId": "38642"}, {"stopSequence": 33, "arrival": {"time": "1694890005"}, "stopId": "39795"}, {"stopSequence": 34, "arrival": {"time": "1694890037"}, "stopId": "38502"}, {"stopSequence": 35, "arrival": {"time": "1694890091"}, "stopId": "38503"}, {"stopSequence": 36, "arrival": {"time": "1694890256"}, "stopId": "35691"}, {"stopSequence": 37, "arrival": {"time": "1694890282"}, "stopId": "35692"}, {"stopSequence": 38, "arrival": {"time": "1694890343"}, "stopId": "35693"}, {"stopSequence": 39, "arrival": {"time": "1694890405"}, "stopId": "35694"}, {"stopSequence": 40, "arrival": {"time": "1694890437"}, "stopId": "35695"}, {"stopSequence": 41, "arrival": {"time": "1694890449"}, "stopId": "49317"}, {"stopSequence": 42, "arrival": {"time": "1694890525"}, "stopId": "49318"}, {"stopSequence": 43, "arrival": {"time": "1694890617"}, "stopId": "35696"}, {"stopSequence": 44, "arrival": {"time": "1694890790"}, "stopId": "35697"}, {"stopSequence": 45, "arrival": {"time": "1694890890"}, "stopId": "2-Jan"}, {"stopSequence": 46, "arrival": {"time": "1694890921"}, "stopId": "42460"}, {"stopSequence": 47, "arrival": {"time": "1694890981"}, "stopId": "39726"}, {"stopSequence": 48, "arrival": {"time": "1694891004"}, "stopId": "2-Mar"}, {"stopSequence": 49, "arrival": {"time": "1694891064"}, "stopId": "1566281"}, {"stopSequence": 50, "arrival": {"time": "1694891094"}, "stopId": "42315"}, {"stopSequence": 51, "arrival": {"time": "1694891119"}, "stopId": "42316"}, {"stopSequence": 52, "arrival": {"time": "1694891175"}, "stopId": "42317"}, {"stopSequence": 53, "arrival": {"time": "1694891258"}, "stopId": "42319"}, {"stopSequence": 54, "arrival": {"time": "1694891341"}, "stopId": "42320"}, {"stopSequence": 55, "arrival": {"time": "1694891395"}, "stopId": "38514"}, {"stopSequence": 56, "arrival": {"time": "1694891458"}, "stopId": "34586"}, {"stopSequence": 57, "arrival": {"time": "1694891492"}, "stopId": "34587"}, {"stopSequence": 58, "arrival": {"time": "1694891518"}, "stopId": "34588"}, {"stopSequence": 59, "arrival": {"time": "1694891578"}, "stopId": "39497"}, {"stopSequence": 60, "arrival": {"time": "1694891618"}, "stopId": "49407"}, {"stopSequence": 61, "arrival": {"time": "1694891687"}, "stopId": "50034"}, {"stopSequence": 62, "arrival": {"time": "1694891736"}, "stopId": "40903"}, {"stopSequence": 63, "arrival": {"time": "1694891798"}, "stopId": "50035"}, {"stopSequence": 64, "arrival": {"time": "1694891862"}, "stopId": "50036"}, {"stopSequence": 65, "arrival": {"time": "1694891991"}, "stopId": "35712"}, {"stopSequence": 66, "arrival": {"time": "1694892117"}, "stopId": "35713"}], "vehicle": {"licensePlate": "RKKW58"}, "timestamp": "1694889018"}, "vehicle": {"trip": {"tripId": "22324-701ff27f-2", "startTime": "15:24:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "603", "directionId": 0}, "position": {"latitude": -36.781178, "longitude": -73.10902, "bearing": 346.0, "odometer": 0.0, "speed": 8.055555}, "timestamp": "1694889018", "vehicle": {"licensePlate": "RKKW58"}}}, {"id": "ca011d57-0e4f-45f4-90db-533cfaf2d25d", "tripUpdate": {"trip": {"tripId": "22239-701ff27f-2", "startTime": "15:42:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "603", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 3, "arrival": {"time": "1694888990"}, "stopId": "35203"}, {"stopSequence": 4, "arrival": {"time": "1694889059"}, "stopId": "1-Feb"}, {"stopSequence": 5, "arrival": {"time": "1694889114"}, "stopId": "1-Mar"}, {"stopSequence": 6, "arrival": {"time": "1694889148"}, "stopId": "37465"}, {"stopSequence": 7, "arrival": {"time": "1694889251"}, "stopId": "39599"}, {"stopSequence": 8, "arrival": {"time": "1694889328"}, "stopId": "45011"}, {"stopSequence": 9, "arrival": {"time": "1694889429"}, "stopId": "39623"}, {"stopSequence": 10, "arrival": {"time": "1694889478"}, "stopId": "39624"}, {"stopSequence": 11, "arrival": {"time": "1694889524"}, "stopId": "39625"}, {"stopSequence": 12, "arrival": {"time": "1694889593"}, "stopId": "39628"}, {"stopSequence": 13, "arrival": {"time": "1694889669"}, "stopId": "39631"}, {"stopSequence": 14, "arrival": {"time": "1694889715"}, "stopId": "49311"}, {"stopSequence": 15, "arrival": {"time": "1694889770"}, "stopId": "39634"}, {"stopSequence": 16, "arrival": {"time": "1694889795"}, "stopId": "39635"}, {"stopSequence": 17, "arrival": {"time": "1694889839"}, "stopId": "39636"}, {"stopSequence": 18, "arrival": {"time": "1694889891"}, "stopId": "49503"}, {"stopSequence": 19, "arrival": {"time": "1694890014"}, "stopId": "39637"}, {"stopSequence": 20, "arrival": {"time": "1694890063"}, "stopId": "49317"}, {"stopSequence": 21, "arrival": {"time": "1694890093"}, "stopId": "49318"}, {"stopSequence": 22, "arrival": {"time": "1694890157"}, "stopId": "49319"}, {"stopSequence": 23, "arrival": {"time": "1694890225"}, "stopId": "39641"}, {"stopSequence": 24, "arrival": {"time": "1694890254"}, "stopId": "39642"}, {"stopSequence": 25, "arrival": {"time": "1694890530"}, "stopId": "49325"}, {"stopSequence": 26, "arrival": {"time": "1694890593"}, "stopId": "49326"}, {"stopSequence": 27, "arrival": {"time": "1694890619"}, "stopId": "39648"}, {"stopSequence": 28, "arrival": {"time": "1694890667"}, "stopId": "39649"}, {"stopSequence": 29, "arrival": {"time": "1694890708"}, "stopId": "45112"}, {"stopSequence": 30, "arrival": {"time": "1694890752"}, "stopId": "45113"}, {"stopSequence": 31, "arrival": {"time": "1694890835"}, "stopId": "37490"}, {"stopSequence": 32, "arrival": {"time": "1694890999"}, "stopId": "42604"}, {"stopSequence": 33, "arrival": {"time": "1694891045"}, "stopId": "42605"}, {"stopSequence": 34, "arrival": {"time": "1694891107"}, "stopId": "42606"}, {"stopSequence": 35, "arrival": {"time": "1694891145"}, "stopId": "42607"}, {"stopSequence": 36, "arrival": {"time": "1694891208"}, "stopId": "42608"}, {"stopSequence": 37, "arrival": {"time": "1694891257"}, "stopId": "49335"}, {"stopSequence": 38, "arrival": {"time": "1694891313"}, "stopId": "49336"}, {"stopSequence": 39, "arrival": {"time": "1694891417"}, "stopId": "37437"}, {"stopSequence": 40, "arrival": {"time": "1694891471"}, "stopId": "49337"}, {"stopSequence": 41, "arrival": {"time": "1694891514"}, "stopId": "39661"}, {"stopSequence": 42, "arrival": {"time": "1694891562"}, "stopId": "39662"}, {"stopSequence": 43, "arrival": {"time": "1694891629"}, "stopId": "39663"}, {"stopSequence": 44, "arrival": {"time": "1694891684"}, "stopId": "39664"}, {"stopSequence": 45, "arrival": {"time": "1694891741"}, "stopId": "39665"}, {"stopSequence": 46, "arrival": {"time": "1694891870"}, "stopId": "39666"}, {"stopSequence": 47, "arrival": {"time": "1694891914"}, "stopId": "39667"}, {"stopSequence": 48, "arrival": {"time": "1694891988"}, "stopId": "36935"}, {"stopSequence": 49, "arrival": {"time": "1694892028"}, "stopId": "36936"}, {"stopSequence": 50, "arrival": {"time": "1694892179"}, "stopId": "49343"}], "vehicle": {"licensePlate": "RKYG37"}, "timestamp": "1694888980"}, "vehicle": {"trip": {"tripId": "22239-701ff27f-2", "startTime": "15:42:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "603", "directionId": 1}, "position": {"latitude": -36.814995, "longitude": -73.02962, "bearing": 284.0, "odometer": 0.0, "speed": 5.5555553}, "timestamp": "1694888980", "vehicle": {"licensePlate": "RKYG37"}}}, {"id": "66edff6c-8802-4eb0-864d-adb1fbbdb468", "tripUpdate": {"trip": {"tripId": "22506-701ff27f-2", "startTime": "15:33:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "604", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 1, "arrival": {"time": "1694889132"}, "stopId": "37577"}, {"stopSequence": 2, "arrival": {"time": "1694889189"}, "stopId": "37578"}, {"stopSequence": 3, "arrival": {"time": "1694889233"}, "stopId": "39660"}, {"stopSequence": 4, "arrival": {"time": "1694889261"}, "stopId": "39659"}, {"stopSequence": 5, "arrival": {"time": "1694889308"}, "stopId": "37581"}, {"stopSequence": 6, "arrival": {"time": "1694889341"}, "stopId": "37435"}, {"stopSequence": 7, "arrival": {"time": "1694889384"}, "stopId": "37583"}, {"stopSequence": 8, "arrival": {"time": "1694889454"}, "stopId": "37584"}, {"stopSequence": 9, "arrival": {"time": "1694889553"}, "stopId": "37432"}, {"stopSequence": 10, "arrival": {"time": "1694889583"}, "stopId": "37586"}, {"stopSequence": 11, "arrival": {"time": "1694889605"}, "stopId": "37430"}, {"stopSequence": 12, "arrival": {"time": "1694889632"}, "stopId": "37588"}, {"stopSequence": 13, "arrival": {"time": "1694889672"}, "stopId": "37589"}, {"stopSequence": 14, "arrival": {"time": "1694889728"}, "stopId": "37590"}, {"stopSequence": 15, "arrival": {"time": "1694889775"}, "stopId": "37591"}, {"stopSequence": 16, "arrival": {"time": "1694889827"}, "stopId": "37592"}, {"stopSequence": 17, "arrival": {"time": "1694889868"}, "stopId": "37593"}, {"stopSequence": 18, "arrival": {"time": "1694889893"}, "stopId": "38509"}, {"stopSequence": 19, "arrival": {"time": "1694889927"}, "stopId": "38642"}, {"stopSequence": 20, "arrival": {"time": "1694889965"}, "stopId": "39795"}, {"stopSequence": 21, "arrival": {"time": "1694890001"}, "stopId": "38502"}, {"stopSequence": 22, "arrival": {"time": "1694890059"}, "stopId": "38503"}, {"stopSequence": 23, "arrival": {"time": "1694890213"}, "stopId": "35691"}, {"stopSequence": 24, "arrival": {"time": "1694890306"}, "stopId": "35693"}, {"stopSequence": 25, "arrival": {"time": "1694890363"}, "stopId": "35694"}, {"stopSequence": 26, "arrival": {"time": "1694890403"}, "stopId": "35695"}, {"stopSequence": 27, "arrival": {"time": "1694890450"}, "stopId": "35696"}, {"stopSequence": 28, "arrival": {"time": "1694890621"}, "stopId": "35697"}, {"stopSequence": 29, "arrival": {"time": "1694890726"}, "stopId": "2-Jan"}, {"stopSequence": 30, "arrival": {"time": "1694890755"}, "stopId": "42460"}, {"stopSequence": 31, "arrival": {"time": "1694890793"}, "stopId": "35690"}, {"stopSequence": 32, "arrival": {"time": "1694890895"}, "stopId": "35700"}, {"stopSequence": 33, "arrival": {"time": "1694890925"}, "stopId": "35701"}, {"stopSequence": 34, "arrival": {"time": "1694890995"}, "stopId": "35703"}, {"stopSequence": 35, "arrival": {"time": "1694891011"}, "stopId": "35704"}, {"stopSequence": 36, "arrival": {"time": "1694891034"}, "stopId": "35705"}, {"stopSequence": 37, "arrival": {"time": "1694891055"}, "stopId": "35706"}, {"stopSequence": 38, "arrival": {"time": "1694891114"}, "stopId": "35707"}, {"stopSequence": 39, "arrival": {"time": "1694891142"}, "stopId": "35708"}, {"stopSequence": 40, "arrival": {"time": "1694891168"}, "stopId": "35709"}, {"stopSequence": 41, "arrival": {"time": "1694891234"}, "stopId": "40306"}, {"stopSequence": 42, "arrival": {"time": "1694891306"}, "stopId": "40308"}, {"stopSequence": 43, "arrival": {"time": "1694891391"}, "stopId": "40309"}, {"stopSequence": 44, "arrival": {"time": "1694891528"}, "stopId": "39504"}, {"stopSequence": 45, "arrival": {"time": "1694891565"}, "stopId": "39595"}, {"stopSequence": 46, "arrival": {"time": "1694891584"}, "stopId": "39759"}, {"stopSequence": 47, "arrival": {"time": "1694891681"}, "stopId": "37627"}, {"stopSequence": 48, "arrival": {"time": "1694891881"}, "stopId": "39712"}, {"stopSequence": 49, "arrival": {"time": "1694891921"}, "stopId": "39714"}, {"stopSequence": 50, "arrival": {"time": "1694891964"}, "stopId": "39715"}, {"stopSequence": 51, "arrival": {"time": "1694891996"}, "stopId": "39470"}, {"stopSequence": 52, "arrival": {"time": "1694892142"}, "stopId": "39611"}, {"stopSequence": 53, "arrival": {"time": "1694892228"}, "stopId": "37636"}, {"stopSequence": 54, "arrival": {"time": "1694892389"}, "stopId": "37637"}, {"stopSequence": 55, "arrival": {"time": "1694892474"}, "stopId": "37639"}, {"stopSequence": 56, "arrival": {"time": "1694892532"}, "stopId": "39200"}, {"stopSequence": 57, "arrival": {"time": "1694892644"}, "stopId": "40191"}, {"stopSequence": 58, "arrival": {"time": "1694892690"}, "stopId": "40192"}, {"stopSequence": 59, "arrival": {"time": "1694892762"}, "stopId": "40193"}, {"stopSequence": 60, "arrival": {"time": "1694892816"}, "stopId": "40194"}, {"stopSequence": 61, "arrival": {"time": "1694892955"}, "stopId": "38025"}, {"stopSequence": 62, "arrival": {"time": "1694892988"}, "stopId": "38026"}, {"stopSequence": 63, "arrival": {"time": "1694893035"}, "stopId": "38027"}, {"stopSequence": 64, "arrival": {"time": "1694893054"}, "stopId": "38028"}, {"stopSequence": 65, "arrival": {"time": "1694893085"}, "stopId": "38029"}, {"stopSequence": 66, "arrival": {"time": "1694893129"}, "stopId": "38030"}, {"stopSequence": 67, "arrival": {"time": "1694893177"}, "stopId": "38031"}, {"stopSequence": 68, "arrival": {"time": "1694893234"}, "stopId": "38032"}], "vehicle": {"licensePlate": "FXRS16"}, "timestamp": "1694888982"}, "vehicle": {"trip": {"tripId": "22506-701ff27f-2", "startTime": "15:33:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "604", "directionId": 0}, "position": {"latitude": -36.779396, "longitude": -73.09925, "bearing": 286.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888982", "vehicle": {"licensePlate": "FXRS16"}}}, {"id": "859fab00-4f3a-4298-bc43-3a007111296e", "tripUpdate": {"trip": {"tripId": "22599-701ff27f-2", "startTime": "15:30:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "604", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 10, "arrival": {"time": "1694889062"}, "stopId": "39536"}, {"stopSequence": 11, "arrival": {"time": "1694889097"}, "stopId": "16206048"}, {"stopSequence": 12, "arrival": {"time": "1694889119"}, "stopId": "39537"}, {"stopSequence": 13, "arrival": {"time": "1694889137"}, "stopId": "40192"}, {"stopSequence": 14, "arrival": {"time": "1694889166"}, "stopId": "39429"}, {"stopSequence": 15, "arrival": {"time": "1694889203"}, "stopId": "39430"}, {"stopSequence": 16, "arrival": {"time": "1694889220"}, "stopId": "37300"}, {"stopSequence": 17, "arrival": {"time": "1694889248"}, "stopId": "39562"}, {"stopSequence": 18, "arrival": {"time": "1694889284"}, "stopId": "39563"}, {"stopSequence": 19, "arrival": {"time": "1694889302"}, "stopId": "39564"}, {"stopSequence": 20, "arrival": {"time": "1694889313"}, "stopId": "37638"}, {"stopSequence": 21, "arrival": {"time": "1694889349"}, "stopId": "39587"}, {"stopSequence": 22, "arrival": {"time": "1694889383"}, "stopId": "39588"}, {"stopSequence": 23, "arrival": {"time": "1694889436"}, "stopId": "39589"}, {"stopSequence": 24, "arrival": {"time": "1694889468"}, "stopId": "37322"}, {"stopSequence": 25, "arrival": {"time": "1694889497"}, "stopId": "37323"}, {"stopSequence": 26, "arrival": {"time": "1694889593"}, "stopId": "39558"}, {"stopSequence": 27, "arrival": {"time": "1694889645"}, "stopId": "39985"}, {"stopSequence": 28, "arrival": {"time": "1694889703"}, "stopId": "37325"}, {"stopSequence": 29, "arrival": {"time": "1694889739"}, "stopId": "37364"}, {"stopSequence": 30, "arrival": {"time": "1694889871"}, "stopId": "37366"}, {"stopSequence": 31, "arrival": {"time": "1694889907"}, "stopId": "39594"}, {"stopSequence": 32, "arrival": {"time": "1694890015"}, "stopId": "39505"}, {"stopSequence": 33, "arrival": {"time": "1694890043"}, "stopId": "39506"}, {"stopSequence": 34, "arrival": {"time": "1694890071"}, "stopId": "90003"}, {"stopSequence": 35, "arrival": {"time": "1694890115"}, "stopId": "90007"}, {"stopSequence": 36, "arrival": {"time": "1694890155"}, "stopId": "40830"}, {"stopSequence": 37, "arrival": {"time": "1694890191"}, "stopId": "40831"}, {"stopSequence": 38, "arrival": {"time": "1694890272"}, "stopId": "39599"}, {"stopSequence": 39, "arrival": {"time": "1694890294"}, "stopId": "39600"}, {"stopSequence": 40, "arrival": {"time": "1694890359"}, "stopId": "37496"}, {"stopSequence": 41, "arrival": {"time": "1694890408"}, "stopId": "45064"}, {"stopSequence": 42, "arrival": {"time": "1694890480"}, "stopId": "37506"}, {"stopSequence": 43, "arrival": {"time": "1694890515"}, "stopId": "49496"}, {"stopSequence": 44, "arrival": {"time": "1694890556"}, "stopId": "49497"}, {"stopSequence": 45, "arrival": {"time": "1694890580"}, "stopId": "39624"}, {"stopSequence": 46, "arrival": {"time": "1694890646"}, "stopId": "90000"}, {"stopSequence": 47, "arrival": {"time": "1694890697"}, "stopId": "39628"}, {"stopSequence": 48, "arrival": {"time": "1694890776"}, "stopId": "39631"}, {"stopSequence": 49, "arrival": {"time": "1694890825"}, "stopId": "49311"}, {"stopSequence": 50, "arrival": {"time": "1694890882"}, "stopId": "39634"}, {"stopSequence": 51, "arrival": {"time": "1694890908"}, "stopId": "39635"}, {"stopSequence": 52, "arrival": {"time": "1694890957"}, "stopId": "39636"}, {"stopSequence": 53, "arrival": {"time": "1694891151"}, "stopId": "39637"}, {"stopSequence": 54, "arrival": {"time": "1694891205"}, "stopId": "49317"}, {"stopSequence": 55, "arrival": {"time": "1694891240"}, "stopId": "49318"}, {"stopSequence": 56, "arrival": {"time": "1694891314"}, "stopId": "49319"}, {"stopSequence": 57, "arrival": {"time": "1694891387"}, "stopId": "39641"}, {"stopSequence": 58, "arrival": {"time": "1694891428"}, "stopId": "39642"}, {"stopSequence": 59, "arrival": {"time": "1694891763"}, "stopId": "49325"}, {"stopSequence": 60, "arrival": {"time": "1694891842"}, "stopId": "49326"}, {"stopSequence": 61, "arrival": {"time": "1694891881"}, "stopId": "37425"}, {"stopSequence": 62, "arrival": {"time": "1694891929"}, "stopId": "37426"}, {"stopSequence": 63, "arrival": {"time": "1694891986"}, "stopId": "37427"}, {"stopSequence": 64, "arrival": {"time": "1694892052"}, "stopId": "8606049"}, {"stopSequence": 65, "arrival": {"time": "1694892116"}, "stopId": "37428"}, {"stopSequence": 66, "arrival": {"time": "1694892172"}, "stopId": "37429"}, {"stopSequence": 67, "arrival": {"time": "1694892217"}, "stopId": "37430"}, {"stopSequence": 68, "arrival": {"time": "1694892262"}, "stopId": "37431"}, {"stopSequence": 69, "arrival": {"time": "1694892304"}, "stopId": "37432"}, {"stopSequence": 70, "arrival": {"time": "1694892450"}, "stopId": "37433"}, {"stopSequence": 71, "arrival": {"time": "1694892585"}, "stopId": "37434"}, {"stopSequence": 72, "arrival": {"time": "1694892615"}, "stopId": "37435"}, {"stopSequence": 73, "arrival": {"time": "1694892682"}, "stopId": "39658"}, {"stopSequence": 74, "arrival": {"time": "1694892751"}, "stopId": "39659"}, {"stopSequence": 75, "arrival": {"time": "1694892796"}, "stopId": "39660"}, {"stopSequence": 76, "arrival": {"time": "1694892845"}, "stopId": "39661"}, {"stopSequence": 77, "arrival": {"time": "1694892932"}, "stopId": "37440"}, {"stopSequence": 78, "arrival": {"time": "1694893124"}, "stopId": "37441"}, {"stopSequence": 79, "arrival": {"time": "1694893410"}, "stopId": "37442"}], "vehicle": {"licensePlate": "FYDV83"}, "timestamp": "1694889010"}, "vehicle": {"trip": {"tripId": "22599-701ff27f-2", "startTime": "15:30:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "604", "directionId": 1}, "position": {"latitude": -36.786724, "longitude": -73.04305, "bearing": 182.0, "odometer": 0.0, "speed": 7.2222223}, "timestamp": "1694889010", "vehicle": {"licensePlate": "FYDV83"}}}, {"id": "3396f6bd-6605-4ddd-aa3d-f3870926e6e9", "tripUpdate": {"trip": {"tripId": "22504-701ff27f-2", "startTime": "15:13:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "604", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 24, "arrival": {"time": "1694889114"}, "stopId": "35693"}, {"stopSequence": 25, "arrival": {"time": "1694889175"}, "stopId": "35694"}, {"stopSequence": 26, "arrival": {"time": "1694889217"}, "stopId": "35695"}, {"stopSequence": 27, "arrival": {"time": "1694889266"}, "stopId": "35696"}, {"stopSequence": 28, "arrival": {"time": "1694889441"}, "stopId": "35697"}, {"stopSequence": 29, "arrival": {"time": "1694889544"}, "stopId": "2-Jan"}, {"stopSequence": 30, "arrival": {"time": "1694889572"}, "stopId": "42460"}, {"stopSequence": 31, "arrival": {"time": "1694889609"}, "stopId": "35690"}, {"stopSequence": 32, "arrival": {"time": "1694889705"}, "stopId": "35700"}, {"stopSequence": 33, "arrival": {"time": "1694889733"}, "stopId": "35701"}, {"stopSequence": 34, "arrival": {"time": "1694889797"}, "stopId": "35703"}, {"stopSequence": 35, "arrival": {"time": "1694889812"}, "stopId": "35704"}, {"stopSequence": 36, "arrival": {"time": "1694889833"}, "stopId": "35705"}, {"stopSequence": 37, "arrival": {"time": "1694889852"}, "stopId": "35706"}, {"stopSequence": 38, "arrival": {"time": "1694889906"}, "stopId": "35707"}, {"stopSequence": 39, "arrival": {"time": "1694889930"}, "stopId": "35708"}, {"stopSequence": 40, "arrival": {"time": "1694889953"}, "stopId": "35709"}, {"stopSequence": 41, "arrival": {"time": "1694890011"}, "stopId": "40306"}, {"stopSequence": 42, "arrival": {"time": "1694890073"}, "stopId": "40308"}, {"stopSequence": 43, "arrival": {"time": "1694890146"}, "stopId": "40309"}, {"stopSequence": 44, "arrival": {"time": "1694890259"}, "stopId": "39504"}, {"stopSequence": 45, "arrival": {"time": "1694890290"}, "stopId": "39595"}, {"stopSequence": 46, "arrival": {"time": "1694890305"}, "stopId": "39759"}, {"stopSequence": 47, "arrival": {"time": "1694890383"}, "stopId": "37627"}, {"stopSequence": 48, "arrival": {"time": "1694890539"}, "stopId": "39712"}, {"stopSequence": 49, "arrival": {"time": "1694890570"}, "stopId": "39714"}, {"stopSequence": 50, "arrival": {"time": "1694890603"}, "stopId": "39715"}, {"stopSequence": 51, "arrival": {"time": "1694890627"}, "stopId": "39470"}, {"stopSequence": 52, "arrival": {"time": "1694890736"}, "stopId": "39611"}, {"stopSequence": 53, "arrival": {"time": "1694890799"}, "stopId": "37636"}, {"stopSequence": 54, "arrival": {"time": "1694890915"}, "stopId": "37637"}, {"stopSequence": 55, "arrival": {"time": "1694890974"}, "stopId": "37639"}, {"stopSequence": 56, "arrival": {"time": "1694891015"}, "stopId": "39200"}, {"stopSequence": 57, "arrival": {"time": "1694891092"}, "stopId": "40191"}, {"stopSequence": 58, "arrival": {"time": "1694891123"}, "stopId": "40192"}, {"stopSequence": 59, "arrival": {"time": "1694891172"}, "stopId": "40193"}, {"stopSequence": 60, "arrival": {"time": "1694891208"}, "stopId": "40194"}, {"stopSequence": 61, "arrival": {"time": "1694891299"}, "stopId": "38025"}, {"stopSequence": 62, "arrival": {"time": "1694891321"}, "stopId": "38026"}, {"stopSequence": 63, "arrival": {"time": "1694891352"}, "stopId": "38027"}, {"stopSequence": 64, "arrival": {"time": "1694891364"}, "stopId": "38028"}, {"stopSequence": 65, "arrival": {"time": "1694891383"}, "stopId": "38029"}, {"stopSequence": 66, "arrival": {"time": "1694891412"}, "stopId": "38030"}, {"stopSequence": 67, "arrival": {"time": "1694891443"}, "stopId": "38031"}, {"stopSequence": 68, "arrival": {"time": "1694891479"}, "stopId": "38032"}], "vehicle": {"licensePlate": "JGJV34"}, "timestamp": "1694889021"}, "vehicle": {"trip": {"tripId": "22504-701ff27f-2", "startTime": "15:13:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "604", "directionId": 0}, "position": {"latitude": -36.808502, "longitude": -73.07746, "bearing": 147.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889021", "vehicle": {"licensePlate": "JGJV34"}}}, {"id": "45a577e9-30e0-4471-be43-b88a2e3f895a", "tripUpdate": {"trip": {"tripId": "22597-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "604", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 35, "arrival": {"time": "1694889014"}, "stopId": "90007"}, {"stopSequence": 36, "arrival": {"time": "1694889058"}, "stopId": "40830"}, {"stopSequence": 37, "arrival": {"time": "1694889097"}, "stopId": "40831"}, {"stopSequence": 38, "arrival": {"time": "1694889184"}, "stopId": "39599"}, {"stopSequence": 39, "arrival": {"time": "1694889207"}, "stopId": "39600"}, {"stopSequence": 40, "arrival": {"time": "1694889276"}, "stopId": "37496"}, {"stopSequence": 41, "arrival": {"time": "1694889326"}, "stopId": "45064"}, {"stopSequence": 42, "arrival": {"time": "1694889400"}, "stopId": "37506"}, {"stopSequence": 43, "arrival": {"time": "1694889435"}, "stopId": "49496"}, {"stopSequence": 44, "arrival": {"time": "1694889476"}, "stopId": "49497"}, {"stopSequence": 45, "arrival": {"time": "1694889501"}, "stopId": "39624"}, {"stopSequence": 46, "arrival": {"time": "1694889566"}, "stopId": "90000"}, {"stopSequence": 47, "arrival": {"time": "1694889616"}, "stopId": "39628"}, {"stopSequence": 48, "arrival": {"time": "1694889691"}, "stopId": "39631"}, {"stopSequence": 49, "arrival": {"time": "1694889737"}, "stopId": "49311"}, {"stopSequence": 50, "arrival": {"time": "1694889792"}, "stopId": "39634"}, {"stopSequence": 51, "arrival": {"time": "1694889816"}, "stopId": "39635"}, {"stopSequence": 52, "arrival": {"time": "1694889861"}, "stopId": "39636"}, {"stopSequence": 53, "arrival": {"time": "1694890036"}, "stopId": "39637"}, {"stopSequence": 54, "arrival": {"time": "1694890085"}, "stopId": "49317"}, {"stopSequence": 55, "arrival": {"time": "1694890115"}, "stopId": "49318"}, {"stopSequence": 56, "arrival": {"time": "1694890180"}, "stopId": "49319"}, {"stopSequence": 57, "arrival": {"time": "1694890242"}, "stopId": "39641"}, {"stopSequence": 58, "arrival": {"time": "1694890277"}, "stopId": "39642"}, {"stopSequence": 59, "arrival": {"time": "1694890553"}, "stopId": "49325"}, {"stopSequence": 60, "arrival": {"time": "1694890616"}, "stopId": "49326"}, {"stopSequence": 61, "arrival": {"time": "1694890647"}, "stopId": "37425"}, {"stopSequence": 62, "arrival": {"time": "1694890685"}, "stopId": "37426"}, {"stopSequence": 63, "arrival": {"time": "1694890729"}, "stopId": "37427"}, {"stopSequence": 64, "arrival": {"time": "1694890780"}, "stopId": "8606049"}, {"stopSequence": 65, "arrival": {"time": "1694890829"}, "stopId": "37428"}, {"stopSequence": 66, "arrival": {"time": "1694890872"}, "stopId": "37429"}, {"stopSequence": 67, "arrival": {"time": "1694890906"}, "stopId": "37430"}, {"stopSequence": 68, "arrival": {"time": "1694890939"}, "stopId": "37431"}, {"stopSequence": 69, "arrival": {"time": "1694890971"}, "stopId": "37432"}, {"stopSequence": 70, "arrival": {"time": "1694891078"}, "stopId": "37433"}, {"stopSequence": 71, "arrival": {"time": "1694891175"}, "stopId": "37434"}, {"stopSequence": 72, "arrival": {"time": "1694891197"}, "stopId": "37435"}, {"stopSequence": 73, "arrival": {"time": "1694891244"}, "stopId": "39658"}, {"stopSequence": 74, "arrival": {"time": "1694891293"}, "stopId": "39659"}, {"stopSequence": 75, "arrival": {"time": "1694891324"}, "stopId": "39660"}, {"stopSequence": 76, "arrival": {"time": "1694891358"}, "stopId": "39661"}, {"stopSequence": 77, "arrival": {"time": "1694891418"}, "stopId": "37440"}, {"stopSequence": 78, "arrival": {"time": "1694891548"}, "stopId": "37441"}, {"stopSequence": 79, "arrival": {"time": "1694891737"}, "stopId": "37442"}], "vehicle": {"licensePlate": "JRKL26"}, "timestamp": "1694888978"}, "vehicle": {"trip": {"tripId": "22597-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "604", "directionId": 1}, "position": {"latitude": -36.813797, "longitude": -73.032295, "bearing": 236.0, "odometer": 0.0, "speed": 3.3333333}, "timestamp": "1694888978", "vehicle": {"licensePlate": "JRKL26"}}}, {"id": "25aac175-203e-47d6-95a5-1e7d0d4e3317", "tripUpdate": {"trip": {"tripId": "22502-701ff27f-2", "startTime": "14:53:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "604", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 41, "arrival": {"time": "1694888987"}, "stopId": "40306"}, {"stopSequence": 42, "arrival": {"time": "1694889056"}, "stopId": "40308"}, {"stopSequence": 43, "arrival": {"time": "1694889135"}, "stopId": "40309"}, {"stopSequence": 44, "arrival": {"time": "1694889255"}, "stopId": "39504"}, {"stopSequence": 45, "arrival": {"time": "1694889288"}, "stopId": "39595"}, {"stopSequence": 46, "arrival": {"time": "1694889304"}, "stopId": "39759"}, {"stopSequence": 47, "arrival": {"time": "1694889384"}, "stopId": "37627"}, {"stopSequence": 48, "arrival": {"time": "1694889542"}, "stopId": "39712"}, {"stopSequence": 49, "arrival": {"time": "1694889573"}, "stopId": "39714"}, {"stopSequence": 50, "arrival": {"time": "1694889605"}, "stopId": "39715"}, {"stopSequence": 51, "arrival": {"time": "1694889629"}, "stopId": "39470"}, {"stopSequence": 52, "arrival": {"time": "1694889734"}, "stopId": "39611"}, {"stopSequence": 53, "arrival": {"time": "1694889794"}, "stopId": "37636"}, {"stopSequence": 54, "arrival": {"time": "1694889903"}, "stopId": "37637"}, {"stopSequence": 55, "arrival": {"time": "1694889958"}, "stopId": "37639"}, {"stopSequence": 56, "arrival": {"time": "1694889995"}, "stopId": "39200"}, {"stopSequence": 57, "arrival": {"time": "1694890065"}, "stopId": "40191"}, {"stopSequence": 58, "arrival": {"time": "1694890093"}, "stopId": "40192"}, {"stopSequence": 59, "arrival": {"time": "1694890136"}, "stopId": "40193"}, {"stopSequence": 60, "arrival": {"time": "1694890168"}, "stopId": "40194"}, {"stopSequence": 61, "arrival": {"time": "1694890249"}, "stopId": "38025"}, {"stopSequence": 62, "arrival": {"time": "1694890267"}, "stopId": "38026"}, {"stopSequence": 63, "arrival": {"time": "1694890294"}, "stopId": "38027"}, {"stopSequence": 64, "arrival": {"time": "1694890304"}, "stopId": "38028"}, {"stopSequence": 65, "arrival": {"time": "1694890321"}, "stopId": "38029"}, {"stopSequence": 66, "arrival": {"time": "1694890346"}, "stopId": "38030"}, {"stopSequence": 67, "arrival": {"time": "1694890372"}, "stopId": "38031"}, {"stopSequence": 68, "arrival": {"time": "1694890403"}, "stopId": "38032"}], "vehicle": {"licensePlate": "JVTK75"}, "timestamp": "1694888974"}, "vehicle": {"trip": {"tripId": "22502-701ff27f-2", "startTime": "14:53:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "604", "directionId": 0}, "position": {"latitude": -36.81887, "longitude": -73.04342, "bearing": 330.0, "odometer": 0.0, "speed": 2.7777777}, "timestamp": "1694888974", "vehicle": {"licensePlate": "JVTK75"}}}, {"id": "f759ebf8-8032-49b2-8d28-bbb2757b1590", "tripUpdate": {"trip": {"tripId": "22672-701ff27f-2", "startTime": "14:48:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "605", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 42, "arrival": {"time": "1694889084"}, "stopId": "37465"}, {"stopSequence": 43, "arrival": {"time": "1694889133"}, "stopId": "39503"}, {"stopSequence": 44, "arrival": {"time": "1694889236"}, "stopId": "39504"}, {"stopSequence": 45, "arrival": {"time": "1694889258"}, "stopId": "39595"}, {"stopSequence": 46, "arrival": {"time": "1694889279"}, "stopId": "39759"}, {"stopSequence": 47, "arrival": {"time": "1694889341"}, "stopId": "39760"}, {"stopSequence": 48, "arrival": {"time": "1694889381"}, "stopId": "39761"}, {"stopSequence": 49, "arrival": {"time": "1694889420"}, "stopId": "39511"}, {"stopSequence": 50, "arrival": {"time": "1694889542"}, "stopId": "39763"}, {"stopSequence": 51, "arrival": {"time": "1694889585"}, "stopId": "39764"}, {"stopSequence": 52, "arrival": {"time": "1694889620"}, "stopId": "39765"}, {"stopSequence": 53, "arrival": {"time": "1694889643"}, "stopId": "39529"}, {"stopSequence": 54, "arrival": {"time": "1694889704"}, "stopId": "39530"}, {"stopSequence": 55, "arrival": {"time": "1694889750"}, "stopId": "40150"}, {"stopSequence": 56, "arrival": {"time": "1694889851"}, "stopId": "40152"}, {"stopSequence": 57, "arrival": {"time": "1694889957"}, "stopId": "38025"}, {"stopSequence": 58, "arrival": {"time": "1694889975"}, "stopId": "38026"}, {"stopSequence": 59, "arrival": {"time": "1694890002"}, "stopId": "38027"}, {"stopSequence": 60, "arrival": {"time": "1694890012"}, "stopId": "38028"}, {"stopSequence": 61, "arrival": {"time": "1694890033"}, "stopId": "38029"}, {"stopSequence": 62, "arrival": {"time": "1694890053"}, "stopId": "38030"}, {"stopSequence": 63, "arrival": {"time": "1694890079"}, "stopId": "38031"}, {"stopSequence": 64, "arrival": {"time": "1694890162"}, "stopId": "16206047"}, {"stopSequence": 65, "arrival": {"time": "1694890295"}, "stopId": "39214"}, {"stopSequence": 66, "arrival": {"time": "1694890349"}, "stopId": "39215"}, {"stopSequence": 67, "arrival": {"time": "1694890462"}, "stopId": "16027103"}, {"stopSequence": 68, "arrival": {"time": "1694890605"}, "stopId": "4950739"}, {"stopSequence": 69, "arrival": {"time": "1694890809"}, "stopId": "40978"}], "vehicle": {"licensePlate": "DLRD47"}, "timestamp": "1694889004"}, "vehicle": {"trip": {"tripId": "22672-701ff27f-2", "startTime": "14:48:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "605", "directionId": 0}, "position": {"latitude": -36.819134, "longitude": -73.03529, "bearing": 328.0, "odometer": 0.0, "speed": 2.2222223}, "timestamp": "1694889004", "vehicle": {"licensePlate": "DLRD47"}}}, {"id": "8b6fd731-e8d4-4ccd-9d15-5607ac484279", "tripUpdate": {"trip": {"tripId": "22739-701ff27f-2", "startTime": "15:03:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "605", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 31, "arrival": {"time": "1694889014"}, "stopId": "39599"}, {"stopSequence": 32, "arrival": {"time": "1694889095"}, "stopId": "45011"}, {"stopSequence": 33, "arrival": {"time": "1694889200"}, "stopId": "39623"}, {"stopSequence": 34, "arrival": {"time": "1694889250"}, "stopId": "39624"}, {"stopSequence": 35, "arrival": {"time": "1694889298"}, "stopId": "39625"}, {"stopSequence": 36, "arrival": {"time": "1694889370"}, "stopId": "39628"}, {"stopSequence": 37, "arrival": {"time": "1694889447"}, "stopId": "39631"}, {"stopSequence": 38, "arrival": {"time": "1694889494"}, "stopId": "49311"}, {"stopSequence": 39, "arrival": {"time": "1694889549"}, "stopId": "39634"}, {"stopSequence": 40, "arrival": {"time": "1694889575"}, "stopId": "39635"}, {"stopSequence": 41, "arrival": {"time": "1694889620"}, "stopId": "39636"}, {"stopSequence": 42, "arrival": {"time": "1694889796"}, "stopId": "39637"}, {"stopSequence": 43, "arrival": {"time": "1694889845"}, "stopId": "49317"}, {"stopSequence": 44, "arrival": {"time": "1694889875"}, "stopId": "49318"}, {"stopSequence": 45, "arrival": {"time": "1694889939"}, "stopId": "49319"}, {"stopSequence": 46, "arrival": {"time": "1694890001"}, "stopId": "39641"}, {"stopSequence": 47, "arrival": {"time": "1694890036"}, "stopId": "39642"}, {"stopSequence": 48, "arrival": {"time": "1694890229"}, "stopId": "49323"}, {"stopSequence": 49, "arrival": {"time": "1694890308"}, "stopId": "49325"}, {"stopSequence": 50, "arrival": {"time": "1694890369"}, "stopId": "49326"}, {"stopSequence": 51, "arrival": {"time": "1694890400"}, "stopId": "37425"}, {"stopSequence": 52, "arrival": {"time": "1694890437"}, "stopId": "37426"}, {"stopSequence": 53, "arrival": {"time": "1694890480"}, "stopId": "37427"}, {"stopSequence": 54, "arrival": {"time": "1694890529"}, "stopId": "8606049"}, {"stopSequence": 55, "arrival": {"time": "1694890567"}, "stopId": "37840"}, {"stopSequence": 56, "arrival": {"time": "1694890587"}, "stopId": "39653"}, {"stopSequence": 57, "arrival": {"time": "1694890613"}, "stopId": "39654"}, {"stopSequence": 58, "arrival": {"time": "1694890644"}, "stopId": "49334"}, {"stopSequence": 59, "arrival": {"time": "1694890704"}, "stopId": "49335"}, {"stopSequence": 60, "arrival": {"time": "1694890752"}, "stopId": "49336"}, {"stopSequence": 61, "arrival": {"time": "1694890880"}, "stopId": "42436"}, {"stopSequence": 62, "arrival": {"time": "1694890916"}, "stopId": "4831072"}, {"stopSequence": 63, "arrival": {"time": "1694890928"}, "stopId": "42437"}, {"stopSequence": 64, "arrival": {"time": "1694890987"}, "stopId": "42438"}, {"stopSequence": 65, "arrival": {"time": "1694891018"}, "stopId": "37442"}, {"stopSequence": 66, "arrival": {"time": "1694891046"}, "stopId": "37850"}, {"stopSequence": 67, "arrival": {"time": "1694891095"}, "stopId": "32692"}, {"stopSequence": 68, "arrival": {"time": "1694891119"}, "stopId": "37852"}, {"stopSequence": 69, "arrival": {"time": "1694891145"}, "stopId": "37853"}], "vehicle": {"licensePlate": "HBSK84"}, "timestamp": "1694888973"}, "vehicle": {"trip": {"tripId": "22739-701ff27f-2", "startTime": "15:03:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "605", "directionId": 1}, "position": {"latitude": -36.817745, "longitude": -73.03773, "bearing": 153.0, "odometer": 0.0, "speed": 8.055555}, "timestamp": "1694888973", "vehicle": {"licensePlate": "HBSK84"}}}, {"id": "759bd548-4d85-4058-8803-c1ffca660bf5", "tripUpdate": {"trip": {"tripId": "22738-701ff27f-2", "startTime": "14:43:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "605", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 48, "arrival": {"time": "1694889148"}, "stopId": "49323"}, {"stopSequence": 49, "arrival": {"time": "1694889232"}, "stopId": "49325"}, {"stopSequence": 50, "arrival": {"time": "1694889297"}, "stopId": "49326"}, {"stopSequence": 51, "arrival": {"time": "1694889328"}, "stopId": "37425"}, {"stopSequence": 52, "arrival": {"time": "1694889366"}, "stopId": "37426"}, {"stopSequence": 53, "arrival": {"time": "1694889410"}, "stopId": "37427"}, {"stopSequence": 54, "arrival": {"time": "1694889460"}, "stopId": "8606049"}, {"stopSequence": 55, "arrival": {"time": "1694889498"}, "stopId": "37840"}, {"stopSequence": 56, "arrival": {"time": "1694889517"}, "stopId": "39653"}, {"stopSequence": 57, "arrival": {"time": "1694889543"}, "stopId": "39654"}, {"stopSequence": 58, "arrival": {"time": "1694889573"}, "stopId": "49334"}, {"stopSequence": 59, "arrival": {"time": "1694889632"}, "stopId": "49335"}, {"stopSequence": 60, "arrival": {"time": "1694889678"}, "stopId": "49336"}, {"stopSequence": 61, "arrival": {"time": "1694889798"}, "stopId": "42436"}, {"stopSequence": 62, "arrival": {"time": "1694889832"}, "stopId": "4831072"}, {"stopSequence": 63, "arrival": {"time": "1694889843"}, "stopId": "42437"}, {"stopSequence": 64, "arrival": {"time": "1694889897"}, "stopId": "42438"}, {"stopSequence": 65, "arrival": {"time": "1694889926"}, "stopId": "37442"}, {"stopSequence": 66, "arrival": {"time": "1694889950"}, "stopId": "37850"}, {"stopSequence": 67, "arrival": {"time": "1694889994"}, "stopId": "32692"}, {"stopSequence": 68, "arrival": {"time": "1694890016"}, "stopId": "37852"}, {"stopSequence": 69, "arrival": {"time": "1694890039"}, "stopId": "37853"}], "vehicle": {"licensePlate": "HRCC75"}, "timestamp": "1694889008"}, "vehicle": {"trip": {"tripId": "22738-701ff27f-2", "startTime": "14:43:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "605", "directionId": 1}, "position": {"latitude": -36.80602, "longitude": -73.07951, "bearing": 336.0, "odometer": 0.0, "speed": 16.11111}, "timestamp": "1694889008", "vehicle": {"licensePlate": "HRCC75"}}}, {"id": "4af2b46e-7d07-4e8f-9a6a-e27bcbbcff65", "tripUpdate": {"trip": {"tripId": "22740-701ff27f-2", "startTime": "15:23:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "605", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 1, "arrival": {"time": "1694889113"}, "stopId": "40977"}, {"stopSequence": 2, "arrival": {"time": "1694889310"}, "stopId": "16206049"}, {"stopSequence": 3, "arrival": {"time": "1694889371"}, "stopId": "16206051"}, {"stopSequence": 4, "arrival": {"time": "1694889437"}, "stopId": "39576"}, {"stopSequence": 5, "arrival": {"time": "1694889487"}, "stopId": "39214"}, {"stopSequence": 6, "arrival": {"time": "1694889669"}, "stopId": "38032"}, {"stopSequence": 7, "arrival": {"time": "1694889691"}, "stopId": "39678"}, {"stopSequence": 8, "arrival": {"time": "1694889710"}, "stopId": "39679"}, {"stopSequence": 9, "arrival": {"time": "1694889741"}, "stopId": "39580"}, {"stopSequence": 10, "arrival": {"time": "1694889768"}, "stopId": "39581"}, {"stopSequence": 11, "arrival": {"time": "1694889783"}, "stopId": "39582"}, {"stopSequence": 12, "arrival": {"time": "1694889794"}, "stopId": "39583"}, {"stopSequence": 13, "arrival": {"time": "1694889815"}, "stopId": "39584"}, {"stopSequence": 14, "arrival": {"time": "1694889853"}, "stopId": "39585"}, {"stopSequence": 15, "arrival": {"time": "1694889934"}, "stopId": "40196"}, {"stopSequence": 16, "arrival": {"time": "1694889977"}, "stopId": "40151"}, {"stopSequence": 17, "arrival": {"time": "1694890111"}, "stopId": "39700"}, {"stopSequence": 18, "arrival": {"time": "1694890153"}, "stopId": "39701"}, {"stopSequence": 19, "arrival": {"time": "1694890190"}, "stopId": "39702"}, {"stopSequence": 20, "arrival": {"time": "1694890202"}, "stopId": "39703"}, {"stopSequence": 21, "arrival": {"time": "1694890249"}, "stopId": "39704"}, {"stopSequence": 22, "arrival": {"time": "1694890276"}, "stopId": "39918"}, {"stopSequence": 23, "arrival": {"time": "1694890315"}, "stopId": "39513"}, {"stopSequence": 24, "arrival": {"time": "1694890357"}, "stopId": "39591"}, {"stopSequence": 25, "arrival": {"time": "1694890385"}, "stopId": "39592"}, {"stopSequence": 26, "arrival": {"time": "1694890443"}, "stopId": "39593"}, {"stopSequence": 27, "arrival": {"time": "1694890480"}, "stopId": "39594"}, {"stopSequence": 28, "arrival": {"time": "1694890603"}, "stopId": "39596"}, {"stopSequence": 29, "arrival": {"time": "1694890639"}, "stopId": "39597"}, {"stopSequence": 30, "arrival": {"time": "1694890685"}, "stopId": "39598"}, {"stopSequence": 31, "arrival": {"time": "1694890785"}, "stopId": "39599"}, {"stopSequence": 32, "arrival": {"time": "1694890864"}, "stopId": "45011"}, {"stopSequence": 33, "arrival": {"time": "1694890970"}, "stopId": "39623"}, {"stopSequence": 34, "arrival": {"time": "1694891023"}, "stopId": "39624"}, {"stopSequence": 35, "arrival": {"time": "1694891073"}, "stopId": "39625"}, {"stopSequence": 36, "arrival": {"time": "1694891150"}, "stopId": "39628"}, {"stopSequence": 37, "arrival": {"time": "1694891235"}, "stopId": "39631"}, {"stopSequence": 38, "arrival": {"time": "1694891288"}, "stopId": "49311"}, {"stopSequence": 39, "arrival": {"time": "1694891352"}, "stopId": "39634"}, {"stopSequence": 40, "arrival": {"time": "1694891381"}, "stopId": "39635"}, {"stopSequence": 41, "arrival": {"time": "1694891435"}, "stopId": "39636"}, {"stopSequence": 42, "arrival": {"time": "1694891650"}, "stopId": "39637"}, {"stopSequence": 43, "arrival": {"time": "1694891711"}, "stopId": "49317"}, {"stopSequence": 44, "arrival": {"time": "1694891751"}, "stopId": "49318"}, {"stopSequence": 45, "arrival": {"time": "1694891834"}, "stopId": "49319"}, {"stopSequence": 46, "arrival": {"time": "1694891917"}, "stopId": "39641"}, {"stopSequence": 47, "arrival": {"time": "1694891964"}, "stopId": "39642"}, {"stopSequence": 48, "arrival": {"time": "1694892236"}, "stopId": "49323"}, {"stopSequence": 49, "arrival": {"time": "1694892352"}, "stopId": "49325"}, {"stopSequence": 50, "arrival": {"time": "1694892445"}, "stopId": "49326"}, {"stopSequence": 51, "arrival": {"time": "1694892492"}, "stopId": "37425"}, {"stopSequence": 52, "arrival": {"time": "1694892549"}, "stopId": "37426"}, {"stopSequence": 53, "arrival": {"time": "1694892617"}, "stopId": "37427"}, {"stopSequence": 54, "arrival": {"time": "1694892695"}, "stopId": "8606049"}, {"stopSequence": 55, "arrival": {"time": "1694892757"}, "stopId": "37840"}, {"stopSequence": 56, "arrival": {"time": "1694892789"}, "stopId": "39653"}, {"stopSequence": 57, "arrival": {"time": "1694892832"}, "stopId": "39654"}, {"stopSequence": 58, "arrival": {"time": "1694892882"}, "stopId": "49334"}, {"stopSequence": 59, "arrival": {"time": "1694892984"}, "stopId": "49335"}, {"stopSequence": 60, "arrival": {"time": "1694893067"}, "stopId": "49336"}, {"stopSequence": 61, "arrival": {"time": "1694893292"}, "stopId": "42436"}, {"stopSequence": 62, "arrival": {"time": "1694893357"}, "stopId": "4831072"}, {"stopSequence": 63, "arrival": {"time": "1694893378"}, "stopId": "42437"}, {"stopSequence": 64, "arrival": {"time": "1694893488"}, "stopId": "42438"}, {"stopSequence": 65, "arrival": {"time": "1694893547"}, "stopId": "37442"}, {"stopSequence": 66, "arrival": {"time": "1694893598"}, "stopId": "37850"}, {"stopSequence": 67, "arrival": {"time": "1694893692"}, "stopId": "32692"}, {"stopSequence": 68, "arrival": {"time": "1694893739"}, "stopId": "37852"}, {"stopSequence": 69, "arrival": {"time": "1694893790"}, "stopId": "37853"}], "vehicle": {"licensePlate": "PDBV48"}, "timestamp": "1694888972"}, "vehicle": {"trip": {"tripId": "22740-701ff27f-2", "startTime": "15:23:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "605", "directionId": 1}, "position": {"latitude": -36.789078, "longitude": -73.0617, "bearing": 204.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888972", "vehicle": {"licensePlate": "PDBV48"}}}, {"id": "707d1c6a-cd15-4ec5-87e8-025b72aabf80", "tripUpdate": {"trip": {"tripId": "22673-701ff27f-2", "startTime": "15:03:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "605", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 23, "arrival": {"time": "1694889037"}, "stopId": "35694"}, {"stopSequence": 24, "arrival": {"time": "1694889080"}, "stopId": "35695"}, {"stopSequence": 25, "arrival": {"time": "1694889307"}, "stopId": "35697"}, {"stopSequence": 26, "arrival": {"time": "1694889429"}, "stopId": "39778"}, {"stopSequence": 27, "arrival": {"time": "1694889468"}, "stopId": "37986"}, {"stopSequence": 28, "arrival": {"time": "1694889509"}, "stopId": "37987"}, {"stopSequence": 29, "arrival": {"time": "1694889535"}, "stopId": "37988"}, {"stopSequence": 30, "arrival": {"time": "1694889608"}, "stopId": "49393"}, {"stopSequence": 31, "arrival": {"time": "1694889655"}, "stopId": "49394"}, {"stopSequence": 32, "arrival": {"time": "1694889705"}, "stopId": "50004"}, {"stopSequence": 33, "arrival": {"time": "1694889777"}, "stopId": "50030"}, {"stopSequence": 34, "arrival": {"time": "1694889819"}, "stopId": "3-Mar"}, {"stopSequence": 35, "arrival": {"time": "1694889874"}, "stopId": "50031"}, {"stopSequence": 36, "arrival": {"time": "1694889899"}, "stopId": "49398"}, {"stopSequence": 37, "arrival": {"time": "1694889922"}, "stopId": "50032"}, {"stopSequence": 38, "arrival": {"time": "1694889965"}, "stopId": "39495"}, {"stopSequence": 39, "arrival": {"time": "1694890048"}, "stopId": "50033"}, {"stopSequence": 40, "arrival": {"time": "1694890083"}, "stopId": "39497"}, {"stopSequence": 41, "arrival": {"time": "1694890116"}, "stopId": "49407"}, {"stopSequence": 42, "arrival": {"time": "1694890228"}, "stopId": "37465"}, {"stopSequence": 43, "arrival": {"time": "1694890273"}, "stopId": "39503"}, {"stopSequence": 44, "arrival": {"time": "1694890370"}, "stopId": "39504"}, {"stopSequence": 45, "arrival": {"time": "1694890391"}, "stopId": "39595"}, {"stopSequence": 46, "arrival": {"time": "1694890411"}, "stopId": "39759"}, {"stopSequence": 47, "arrival": {"time": "1694890471"}, "stopId": "39760"}, {"stopSequence": 48, "arrival": {"time": "1694890510"}, "stopId": "39761"}, {"stopSequence": 49, "arrival": {"time": "1694890548"}, "stopId": "39511"}, {"stopSequence": 50, "arrival": {"time": "1694890671"}, "stopId": "39763"}, {"stopSequence": 51, "arrival": {"time": "1694890715"}, "stopId": "39764"}, {"stopSequence": 52, "arrival": {"time": "1694890751"}, "stopId": "39765"}, {"stopSequence": 53, "arrival": {"time": "1694890776"}, "stopId": "39529"}, {"stopSequence": 54, "arrival": {"time": "1694890840"}, "stopId": "39530"}, {"stopSequence": 55, "arrival": {"time": "1694890888"}, "stopId": "40150"}, {"stopSequence": 56, "arrival": {"time": "1694890997"}, "stopId": "40152"}, {"stopSequence": 57, "arrival": {"time": "1694891114"}, "stopId": "38025"}, {"stopSequence": 58, "arrival": {"time": "1694891135"}, "stopId": "38026"}, {"stopSequence": 59, "arrival": {"time": "1694891164"}, "stopId": "38027"}, {"stopSequence": 60, "arrival": {"time": "1694891176"}, "stopId": "38028"}, {"stopSequence": 61, "arrival": {"time": "1694891199"}, "stopId": "38029"}, {"stopSequence": 62, "arrival": {"time": "1694891222"}, "stopId": "38030"}, {"stopSequence": 63, "arrival": {"time": "1694891252"}, "stopId": "38031"}, {"stopSequence": 64, "arrival": {"time": "1694891348"}, "stopId": "16206047"}, {"stopSequence": 65, "arrival": {"time": "1694891505"}, "stopId": "39214"}, {"stopSequence": 66, "arrival": {"time": "1694891570"}, "stopId": "39215"}, {"stopSequence": 67, "arrival": {"time": "1694891709"}, "stopId": "16027103"}, {"stopSequence": 68, "arrival": {"time": "1694891890"}, "stopId": "4950739"}, {"stopSequence": 69, "arrival": {"time": "1694892157"}, "stopId": "40978"}], "vehicle": {"licensePlate": "RTZZ80"}, "timestamp": "1694889014"}, "vehicle": {"trip": {"tripId": "22673-701ff27f-2", "startTime": "15:03:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "605", "directionId": 0}, "position": {"latitude": -36.811745, "longitude": -73.071724, "bearing": 120.0, "odometer": 0.0, "speed": 14.166667}, "timestamp": "1694889014", "vehicle": {"licensePlate": "RTZZ80"}}}, {"id": "f127cc61-f8d9-4215-83db-6460de2e816b", "tripUpdate": {"trip": {"tripId": "fe471c50-7-701ff27f-2", "startTime": "14:30:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "606", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 57, "arrival": {"time": "1694889221"}, "stopId": "91159"}, {"stopSequence": 58, "arrival": {"time": "1694889337"}, "stopId": "38026"}, {"stopSequence": 59, "arrival": {"time": "1694889358"}, "stopId": "38027"}, {"stopSequence": 60, "arrival": {"time": "1694889378"}, "stopId": "38028"}, {"stopSequence": 61, "arrival": {"time": "1694889396"}, "stopId": "38029"}, {"stopSequence": 62, "arrival": {"time": "1694889421"}, "stopId": "38030"}, {"stopSequence": 63, "arrival": {"time": "1694889448"}, "stopId": "38031"}, {"stopSequence": 64, "arrival": {"time": "1694889530"}, "stopId": "16206047"}, {"stopSequence": 65, "arrival": {"time": "1694889663"}, "stopId": "39214"}, {"stopSequence": 66, "arrival": {"time": "1694889717"}, "stopId": "39215"}, {"stopSequence": 67, "arrival": {"time": "1694889829"}, "stopId": "16027103"}, {"stopSequence": 68, "arrival": {"time": "1694890068"}, "stopId": "95000"}, {"stopSequence": 69, "arrival": {"time": "1694890171"}, "stopId": "40978"}], "vehicle": {"licensePlate": "FXRR80"}, "timestamp": "1694889036"}, "vehicle": {"trip": {"tripId": "fe471c50-7-701ff27f-2", "startTime": "14:30:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "606", "directionId": 0}, "position": {"latitude": -36.791336, "longitude": -73.03575, "bearing": 38.0, "odometer": 0.0, "speed": 9.166667}, "timestamp": "1694889036", "vehicle": {"licensePlate": "FXRR80"}}}, {"id": "745a9437-4f76-457c-9868-cfcdadea67c4", "tripUpdate": {"trip": {"tripId": "d6a001c3-5-701ff27f-2", "startTime": "14:57:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "606", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 35, "arrival": {"time": "1694889025"}, "stopId": "50004"}, {"stopSequence": 36, "arrival": {"time": "1694889102"}, "stopId": "50030"}, {"stopSequence": 37, "arrival": {"time": "1694889156"}, "stopId": "3-Mar"}, {"stopSequence": 38, "arrival": {"time": "1694889207"}, "stopId": "50031"}, {"stopSequence": 39, "arrival": {"time": "1694889233"}, "stopId": "49398"}, {"stopSequence": 40, "arrival": {"time": "1694889258"}, "stopId": "50032"}, {"stopSequence": 41, "arrival": {"time": "1694889303"}, "stopId": "39495"}, {"stopSequence": 42, "arrival": {"time": "1694889390"}, "stopId": "50033"}, {"stopSequence": 43, "arrival": {"time": "1694889427"}, "stopId": "39497"}, {"stopSequence": 44, "arrival": {"time": "1694889461"}, "stopId": "49407"}, {"stopSequence": 45, "arrival": {"time": "1694889575"}, "stopId": "37465"}, {"stopSequence": 46, "arrival": {"time": "1694889621"}, "stopId": "39503"}, {"stopSequence": 47, "arrival": {"time": "1694889718"}, "stopId": "39504"}, {"stopSequence": 48, "arrival": {"time": "1694889736"}, "stopId": "39595"}, {"stopSequence": 49, "arrival": {"time": "1694889759"}, "stopId": "39759"}, {"stopSequence": 50, "arrival": {"time": "1694889818"}, "stopId": "39760"}, {"stopSequence": 51, "arrival": {"time": "1694889856"}, "stopId": "39761"}, {"stopSequence": 52, "arrival": {"time": "1694889894"}, "stopId": "39511"}, {"stopSequence": 53, "arrival": {"time": "1694890007"}, "stopId": "39763"}, {"stopSequence": 54, "arrival": {"time": "1694890050"}, "stopId": "39764"}, {"stopSequence": 55, "arrival": {"time": "1694890084"}, "stopId": "39765"}, {"stopSequence": 56, "arrival": {"time": "1694890107"}, "stopId": "39529"}, {"stopSequence": 57, "arrival": {"time": "1694890377"}, "stopId": "91159"}, {"stopSequence": 58, "arrival": {"time": "1694890488"}, "stopId": "38026"}, {"stopSequence": 59, "arrival": {"time": "1694890508"}, "stopId": "38027"}, {"stopSequence": 60, "arrival": {"time": "1694890528"}, "stopId": "38028"}, {"stopSequence": 61, "arrival": {"time": "1694890545"}, "stopId": "38029"}, {"stopSequence": 62, "arrival": {"time": "1694890570"}, "stopId": "38030"}, {"stopSequence": 63, "arrival": {"time": "1694890597"}, "stopId": "38031"}, {"stopSequence": 64, "arrival": {"time": "1694890680"}, "stopId": "16206047"}, {"stopSequence": 65, "arrival": {"time": "1694890817"}, "stopId": "39214"}, {"stopSequence": 66, "arrival": {"time": "1694890874"}, "stopId": "39215"}, {"stopSequence": 67, "arrival": {"time": "1694890995"}, "stopId": "16027103"}, {"stopSequence": 68, "arrival": {"time": "1694891263"}, "stopId": "95000"}, {"stopSequence": 69, "arrival": {"time": "1694891383"}, "stopId": "40978"}], "vehicle": {"licensePlate": "JLZB26"}, "timestamp": "1694888996"}, "vehicle": {"trip": {"tripId": "d6a001c3-5-701ff27f-2", "startTime": "14:57:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "606", "directionId": 0}, "position": {"latitude": -36.828106, "longitude": -73.05195, "bearing": 150.0, "odometer": 0.0, "speed": 4.7222223}, "timestamp": "1694888996", "vehicle": {"licensePlate": "JLZB26"}}}, {"id": "2ae3d711-3a8e-45e3-9769-8e89c945e278", "tripUpdate": {"trip": {"tripId": "08422e60-e-701ff27f-2", "startTime": "15:18:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "606", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 15, "arrival": {"time": "1694889180"}, "stopId": "40199"}, {"stopSequence": 16, "arrival": {"time": "1694889221"}, "stopId": "39700"}, {"stopSequence": 17, "arrival": {"time": "1694889265"}, "stopId": "39701"}, {"stopSequence": 18, "arrival": {"time": "1694889297"}, "stopId": "39702"}, {"stopSequence": 19, "arrival": {"time": "1694889317"}, "stopId": "39703"}, {"stopSequence": 20, "arrival": {"time": "1694889366"}, "stopId": "39704"}, {"stopSequence": 21, "arrival": {"time": "1694889392"}, "stopId": "39918"}, {"stopSequence": 22, "arrival": {"time": "1694889434"}, "stopId": "39513"}, {"stopSequence": 23, "arrival": {"time": "1694889477"}, "stopId": "39591"}, {"stopSequence": 24, "arrival": {"time": "1694889502"}, "stopId": "39592"}, {"stopSequence": 25, "arrival": {"time": "1694889564"}, "stopId": "39593"}, {"stopSequence": 26, "arrival": {"time": "1694889594"}, "stopId": "39594"}, {"stopSequence": 27, "arrival": {"time": "1694889721"}, "stopId": "39596"}, {"stopSequence": 28, "arrival": {"time": "1694889753"}, "stopId": "39597"}, {"stopSequence": 29, "arrival": {"time": "1694889801"}, "stopId": "39598"}, {"stopSequence": 30, "arrival": {"time": "1694889896"}, "stopId": "39599"}, {"stopSequence": 31, "arrival": {"time": "1694889970"}, "stopId": "45011"}, {"stopSequence": 32, "arrival": {"time": "1694890067"}, "stopId": "39623"}, {"stopSequence": 33, "arrival": {"time": "1694890114"}, "stopId": "39624"}, {"stopSequence": 34, "arrival": {"time": "1694890155"}, "stopId": "39625"}, {"stopSequence": 35, "arrival": {"time": "1694890222"}, "stopId": "39628"}, {"stopSequence": 36, "arrival": {"time": "1694890302"}, "stopId": "39631"}, {"stopSequence": 37, "arrival": {"time": "1694890349"}, "stopId": "49311"}, {"stopSequence": 38, "arrival": {"time": "1694890404"}, "stopId": "39634"}, {"stopSequence": 39, "arrival": {"time": "1694890425"}, "stopId": "39635"}, {"stopSequence": 40, "arrival": {"time": "1694890474"}, "stopId": "39636"}, {"stopSequence": 41, "arrival": {"time": "1694890527"}, "stopId": "49503"}, {"stopSequence": 42, "arrival": {"time": "1694890651"}, "stopId": "39637"}, {"stopSequence": 43, "arrival": {"time": "1694890703"}, "stopId": "49317"}, {"stopSequence": 44, "arrival": {"time": "1694890735"}, "stopId": "49318"}, {"stopSequence": 45, "arrival": {"time": "1694890805"}, "stopId": "49319"}, {"stopSequence": 46, "arrival": {"time": "1694890871"}, "stopId": "39641"}, {"stopSequence": 47, "arrival": {"time": "1694891208"}, "stopId": "49325"}, {"stopSequence": 48, "arrival": {"time": "1694891283"}, "stopId": "40711"}, {"stopSequence": 49, "arrival": {"time": "1694891328"}, "stopId": "40712"}, {"stopSequence": 50, "arrival": {"time": "1694891363"}, "stopId": "40713"}, {"stopSequence": 51, "arrival": {"time": "1694891393"}, "stopId": "40714"}, {"stopSequence": 52, "arrival": {"time": "1694891467"}, "stopId": "8606049"}, {"stopSequence": 53, "arrival": {"time": "1694891503"}, "stopId": "37840"}, {"stopSequence": 54, "arrival": {"time": "1694891523"}, "stopId": "39653"}, {"stopSequence": 55, "arrival": {"time": "1694891558"}, "stopId": "39654"}, {"stopSequence": 56, "arrival": {"time": "1694891595"}, "stopId": "49334"}, {"stopSequence": 57, "arrival": {"time": "1694891673"}, "stopId": "49335"}, {"stopSequence": 58, "arrival": {"time": "1694891726"}, "stopId": "49336"}, {"stopSequence": 59, "arrival": {"time": "1694891879"}, "stopId": "42436"}, {"stopSequence": 60, "arrival": {"time": "1694891923"}, "stopId": "4831072"}, {"stopSequence": 61, "arrival": {"time": "1694891937"}, "stopId": "42437"}, {"stopSequence": 62, "arrival": {"time": "1694892020"}, "stopId": "42438"}, {"stopSequence": 63, "arrival": {"time": "1694892054"}, "stopId": "37442"}, {"stopSequence": 64, "arrival": {"time": "1694892094"}, "stopId": "37850"}, {"stopSequence": 65, "arrival": {"time": "1694892143"}, "stopId": "32692"}, {"stopSequence": 66, "arrival": {"time": "1694892175"}, "stopId": "37852"}, {"stopSequence": 67, "arrival": {"time": "1694892209"}, "stopId": "37853"}], "vehicle": {"licensePlate": "PCLT47"}, "timestamp": "1694889006"}, "vehicle": {"trip": {"tripId": "08422e60-e-701ff27f-2", "startTime": "15:18:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "606", "directionId": 1}, "position": {"latitude": -36.787262, "longitude": -73.03594, "bearing": 128.0, "odometer": 0.0, "speed": 12.222222}, "timestamp": "1694889006", "vehicle": {"licensePlate": "PCLT47"}}}, {"id": "4d0e03b1-171b-4d05-a1b2-04ba23c610e7", "tripUpdate": {"trip": {"tripId": "248a74d6-1-701ff27f-2", "startTime": "15:24:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "606", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 6, "arrival": {"time": "1694889012"}, "stopId": "4831075"}, {"stopSequence": 7, "arrival": {"time": "1694889060"}, "stopId": "49135"}, {"stopSequence": 8, "arrival": {"time": "1694889104"}, "stopId": "49136"}, {"stopSequence": 9, "arrival": {"time": "1694889181"}, "stopId": "49137"}, {"stopSequence": 10, "arrival": {"time": "1694889205"}, "stopId": "49138"}, {"stopSequence": 11, "arrival": {"time": "1694889223"}, "stopId": "49139"}, {"stopSequence": 12, "arrival": {"time": "1694889269"}, "stopId": "36683"}, {"stopSequence": 13, "arrival": {"time": "1694889288"}, "stopId": "37590"}, {"stopSequence": 14, "arrival": {"time": "1694889344"}, "stopId": "40760"}, {"stopSequence": 15, "arrival": {"time": "1694889375"}, "stopId": "40713"}, {"stopSequence": 16, "arrival": {"time": "1694889413"}, "stopId": "40762"}, {"stopSequence": 17, "arrival": {"time": "1694889463"}, "stopId": "40763"}, {"stopSequence": 18, "arrival": {"time": "1694889499"}, "stopId": "38642"}, {"stopSequence": 19, "arrival": {"time": "1694889541"}, "stopId": "39795"}, {"stopSequence": 20, "arrival": {"time": "1694889576"}, "stopId": "38502"}, {"stopSequence": 21, "arrival": {"time": "1694889635"}, "stopId": "38503"}, {"stopSequence": 22, "arrival": {"time": "1694889789"}, "stopId": "35691"}, {"stopSequence": 23, "arrival": {"time": "1694889829"}, "stopId": "35692"}, {"stopSequence": 24, "arrival": {"time": "1694889885"}, "stopId": "35693"}, {"stopSequence": 25, "arrival": {"time": "1694889938"}, "stopId": "35694"}, {"stopSequence": 26, "arrival": {"time": "1694889977"}, "stopId": "35695"}, {"stopSequence": 27, "arrival": {"time": "1694890023"}, "stopId": "35696"}, {"stopSequence": 28, "arrival": {"time": "1694890189"}, "stopId": "35697"}, {"stopSequence": 29, "arrival": {"time": "1694890305"}, "stopId": "39778"}, {"stopSequence": 30, "arrival": {"time": "1694890344"}, "stopId": "37986"}, {"stopSequence": 31, "arrival": {"time": "1694890384"}, "stopId": "37987"}, {"stopSequence": 32, "arrival": {"time": "1694890410"}, "stopId": "37988"}, {"stopSequence": 33, "arrival": {"time": "1694890483"}, "stopId": "49393"}, {"stopSequence": 34, "arrival": {"time": "1694890530"}, "stopId": "49394"}, {"stopSequence": 35, "arrival": {"time": "1694890581"}, "stopId": "50004"}, {"stopSequence": 36, "arrival": {"time": "1694890654"}, "stopId": "50030"}, {"stopSequence": 37, "arrival": {"time": "1694890706"}, "stopId": "3-Mar"}, {"stopSequence": 38, "arrival": {"time": "1694890756"}, "stopId": "50031"}, {"stopSequence": 39, "arrival": {"time": "1694890782"}, "stopId": "49398"}, {"stopSequence": 40, "arrival": {"time": "1694890807"}, "stopId": "50032"}, {"stopSequence": 41, "arrival": {"time": "1694890852"}, "stopId": "39495"}, {"stopSequence": 42, "arrival": {"time": "1694890941"}, "stopId": "50033"}, {"stopSequence": 43, "arrival": {"time": "1694890980"}, "stopId": "39497"}, {"stopSequence": 44, "arrival": {"time": "1694891016"}, "stopId": "49407"}, {"stopSequence": 45, "arrival": {"time": "1694891140"}, "stopId": "37465"}, {"stopSequence": 46, "arrival": {"time": "1694891191"}, "stopId": "39503"}, {"stopSequence": 47, "arrival": {"time": "1694891300"}, "stopId": "39504"}, {"stopSequence": 48, "arrival": {"time": "1694891321"}, "stopId": "39595"}, {"stopSequence": 49, "arrival": {"time": "1694891348"}, "stopId": "39759"}, {"stopSequence": 50, "arrival": {"time": "1694891417"}, "stopId": "39760"}, {"stopSequence": 51, "arrival": {"time": "1694891463"}, "stopId": "39761"}, {"stopSequence": 52, "arrival": {"time": "1694891508"}, "stopId": "39511"}, {"stopSequence": 53, "arrival": {"time": "1694891648"}, "stopId": "39763"}, {"stopSequence": 54, "arrival": {"time": "1694891701"}, "stopId": "39764"}, {"stopSequence": 55, "arrival": {"time": "1694891745"}, "stopId": "39765"}, {"stopSequence": 56, "arrival": {"time": "1694891774"}, "stopId": "39529"}, {"stopSequence": 57, "arrival": {"time": "1694892136"}, "stopId": "91159"}, {"stopSequence": 58, "arrival": {"time": "1694892293"}, "stopId": "38026"}, {"stopSequence": 59, "arrival": {"time": "1694892322"}, "stopId": "38027"}, {"stopSequence": 60, "arrival": {"time": "1694892351"}, "stopId": "38028"}, {"stopSequence": 61, "arrival": {"time": "1694892376"}, "stopId": "38029"}, {"stopSequence": 62, "arrival": {"time": "1694892412"}, "stopId": "38030"}, {"stopSequence": 63, "arrival": {"time": "1694892452"}, "stopId": "38031"}, {"stopSequence": 64, "arrival": {"time": "1694892575"}, "stopId": "16206047"}, {"stopSequence": 65, "arrival": {"time": "1694892788"}, "stopId": "39214"}, {"stopSequence": 66, "arrival": {"time": "1694892879"}, "stopId": "39215"}, {"stopSequence": 67, "arrival": {"time": "1694893075"}, "stopId": "16027103"}, {"stopSequence": 68, "arrival": {"time": "1694893534"}, "stopId": "95000"}, {"stopSequence": 69, "arrival": {"time": "1694893751"}, "stopId": "40978"}], "vehicle": {"licensePlate": "PDBV46"}, "timestamp": "1694889012"}, "vehicle": {"trip": {"tripId": "248a74d6-1-701ff27f-2", "startTime": "15:24:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "606", "directionId": 0}, "position": {"latitude": -36.78656, "longitude": -73.101616, "bearing": 162.0, "odometer": 0.0, "speed": 1.6666666}, "timestamp": "1694889012", "vehicle": {"licensePlate": "PDBV46"}}}, {"id": "7773b2be-eaa4-4301-9729-1fa15f2c2e76", "tripUpdate": {"trip": {"tripId": "c930d348-a-701ff27f-2", "startTime": "14:51:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "606", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 35, "arrival": {"time": "1694888949"}, "stopId": "39628"}, {"stopSequence": 36, "arrival": {"time": "1694889037"}, "stopId": "39631"}, {"stopSequence": 37, "arrival": {"time": "1694889087"}, "stopId": "49311"}, {"stopSequence": 38, "arrival": {"time": "1694889145"}, "stopId": "39634"}, {"stopSequence": 39, "arrival": {"time": "1694889168"}, "stopId": "39635"}, {"stopSequence": 40, "arrival": {"time": "1694889219"}, "stopId": "39636"}, {"stopSequence": 41, "arrival": {"time": "1694889273"}, "stopId": "49503"}, {"stopSequence": 42, "arrival": {"time": "1694889397"}, "stopId": "39637"}, {"stopSequence": 43, "arrival": {"time": "1694889449"}, "stopId": "49317"}, {"stopSequence": 44, "arrival": {"time": "1694889481"}, "stopId": "49318"}, {"stopSequence": 45, "arrival": {"time": "1694889548"}, "stopId": "49319"}, {"stopSequence": 46, "arrival": {"time": "1694889610"}, "stopId": "39641"}, {"stopSequence": 47, "arrival": {"time": "1694889917"}, "stopId": "49325"}, {"stopSequence": 48, "arrival": {"time": "1694889982"}, "stopId": "40711"}, {"stopSequence": 49, "arrival": {"time": "1694890021"}, "stopId": "40712"}, {"stopSequence": 50, "arrival": {"time": "1694890051"}, "stopId": "40713"}, {"stopSequence": 51, "arrival": {"time": "1694890077"}, "stopId": "40714"}, {"stopSequence": 52, "arrival": {"time": "1694890139"}, "stopId": "8606049"}, {"stopSequence": 53, "arrival": {"time": "1694890169"}, "stopId": "37840"}, {"stopSequence": 54, "arrival": {"time": "1694890186"}, "stopId": "39653"}, {"stopSequence": 55, "arrival": {"time": "1694890215"}, "stopId": "39654"}, {"stopSequence": 56, "arrival": {"time": "1694890244"}, "stopId": "49334"}, {"stopSequence": 57, "arrival": {"time": "1694890308"}, "stopId": "49335"}, {"stopSequence": 58, "arrival": {"time": "1694890350"}, "stopId": "49336"}, {"stopSequence": 59, "arrival": {"time": "1694890471"}, "stopId": "42436"}, {"stopSequence": 60, "arrival": {"time": "1694890504"}, "stopId": "4831072"}, {"stopSequence": 61, "arrival": {"time": "1694890515"}, "stopId": "42437"}, {"stopSequence": 62, "arrival": {"time": "1694890579"}, "stopId": "42438"}, {"stopSequence": 63, "arrival": {"time": "1694890605"}, "stopId": "37442"}, {"stopSequence": 64, "arrival": {"time": "1694890634"}, "stopId": "37850"}, {"stopSequence": 65, "arrival": {"time": "1694890671"}, "stopId": "32692"}, {"stopSequence": 66, "arrival": {"time": "1694890695"}, "stopId": "37852"}, {"stopSequence": 67, "arrival": {"time": "1694890720"}, "stopId": "37853"}], "vehicle": {"licensePlate": "RJHS95"}, "timestamp": "1694888936"}, "vehicle": {"trip": {"tripId": "c930d348-a-701ff27f-2", "startTime": "14:51:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "606", "directionId": 1}, "position": {"latitude": -36.82623, "longitude": -73.05285, "bearing": 242.0, "odometer": 0.0, "speed": 6.6666665}, "timestamp": "1694888936", "vehicle": {"licensePlate": "RJHS95"}}}, {"id": "eddbf425-d866-49c5-8c1b-5c62cd31ab74", "tripUpdate": {"trip": {"tripId": "22949-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "607", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 23, "arrival": {"time": "1694889039"}, "stopId": "4838438"}, {"stopSequence": 24, "arrival": {"time": "1694889191"}, "stopId": "44896"}, {"stopSequence": 25, "arrival": {"time": "1694889242"}, "stopId": "44897"}, {"stopSequence": 26, "arrival": {"time": "1694889317"}, "stopId": "44898"}, {"stopSequence": 27, "arrival": {"time": "1694889489"}, "stopId": "40993"}, {"stopSequence": 28, "arrival": {"time": "1694889734"}, "stopId": "16005188"}, {"stopSequence": 29, "arrival": {"time": "1694889972"}, "stopId": "40995"}, {"stopSequence": 30, "arrival": {"time": "1694890051"}, "stopId": "40996"}, {"stopSequence": 31, "arrival": {"time": "1694890127"}, "stopId": "40997"}, {"stopSequence": 32, "arrival": {"time": "1694890183"}, "stopId": "39614"}, {"stopSequence": 33, "arrival": {"time": "1694890229"}, "stopId": "39615"}, {"stopSequence": 34, "arrival": {"time": "1694890277"}, "stopId": "39616"}, {"stopSequence": 35, "arrival": {"time": "1694890330"}, "stopId": "39617"}, {"stopSequence": 36, "arrival": {"time": "1694890387"}, "stopId": "39618"}, {"stopSequence": 37, "arrival": {"time": "1694890433"}, "stopId": "39619"}, {"stopSequence": 38, "arrival": {"time": "1694890471"}, "stopId": "39620"}, {"stopSequence": 39, "arrival": {"time": "1694890539"}, "stopId": "39621"}, {"stopSequence": 40, "arrival": {"time": "1694890587"}, "stopId": "38281"}, {"stopSequence": 41, "arrival": {"time": "1694890643"}, "stopId": "37506"}, {"stopSequence": 42, "arrival": {"time": "1694890718"}, "stopId": "45069"}, {"stopSequence": 43, "arrival": {"time": "1694890833"}, "stopId": "37523"}, {"stopSequence": 44, "arrival": {"time": "1694890875"}, "stopId": "37477"}], "vehicle": {"licensePlate": "XC3922"}, "timestamp": "1694889012"}, "vehicle": {"trip": {"tripId": "22949-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "607", "directionId": 0}, "position": {"latitude": -36.76262, "longitude": -73.087975, "bearing": 152.0, "odometer": 0.0, "speed": 13.055555}, "timestamp": "1694889012", "vehicle": {"licensePlate": "XC3922"}}}, {"id": "33560a45-e33a-4838-8061-9f98efb4aa71", "tripUpdate": {"trip": {"tripId": "23034-701ff27f-2", "startTime": "15:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "607", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 10, "arrival": {"time": "1694889095"}, "stopId": "39642"}, {"stopSequence": 11, "arrival": {"time": "1694889128"}, "stopId": "38590"}, {"stopSequence": 12, "arrival": {"time": "1694889554"}, "stopId": "32575"}, {"stopSequence": 13, "arrival": {"time": "1694889821"}, "stopId": "38530"}, {"stopSequence": 14, "arrival": {"time": "1694889833"}, "stopId": "16005209"}, {"stopSequence": 15, "arrival": {"time": "1694890063"}, "stopId": "38531"}, {"stopSequence": 16, "arrival": {"time": "1694890116"}, "stopId": "8921285"}, {"stopSequence": 17, "arrival": {"time": "1694890224"}, "stopId": "38532"}, {"stopSequence": 18, "arrival": {"time": "1694890275"}, "stopId": "38533"}, {"stopSequence": 19, "arrival": {"time": "1694890328"}, "stopId": "38534"}, {"stopSequence": 20, "arrival": {"time": "1694890376"}, "stopId": "38535"}, {"stopSequence": 21, "arrival": {"time": "1694890440"}, "stopId": "38536"}, {"stopSequence": 22, "arrival": {"time": "1694890476"}, "stopId": "4838437"}, {"stopSequence": 23, "arrival": {"time": "1694890727"}, "stopId": "38598"}, {"stopSequence": 24, "arrival": {"time": "1694890768"}, "stopId": "38599"}, {"stopSequence": 25, "arrival": {"time": "1694890813"}, "stopId": "38600"}, {"stopSequence": 26, "arrival": {"time": "1694890847"}, "stopId": "38601"}, {"stopSequence": 27, "arrival": {"time": "1694890919"}, "stopId": "38603"}, {"stopSequence": 28, "arrival": {"time": "1694890964"}, "stopId": "38604"}, {"stopSequence": 29, "arrival": {"time": "1694891069"}, "stopId": "38606"}, {"stopSequence": 30, "arrival": {"time": "1694891125"}, "stopId": "38607"}, {"stopSequence": 31, "arrival": {"time": "1694891178"}, "stopId": "39403"}, {"stopSequence": 32, "arrival": {"time": "1694891220"}, "stopId": "44799"}, {"stopSequence": 33, "arrival": {"time": "1694891258"}, "stopId": "44800"}, {"stopSequence": 34, "arrival": {"time": "1694891286"}, "stopId": "38608"}, {"stopSequence": 35, "arrival": {"time": "1694891359"}, "stopId": "38609"}, {"stopSequence": 36, "arrival": {"time": "1694891429"}, "stopId": "38610"}, {"stopSequence": 37, "arrival": {"time": "1694891485"}, "stopId": "38611"}, {"stopSequence": 38, "arrival": {"time": "1694891529"}, "stopId": "38612"}, {"stopSequence": 39, "arrival": {"time": "1694891537"}, "stopId": "45088"}, {"stopSequence": 40, "arrival": {"time": "1694891591"}, "stopId": "45089"}, {"stopSequence": 41, "arrival": {"time": "1694891673"}, "stopId": "45090"}, {"stopSequence": 42, "arrival": {"time": "1694891717"}, "stopId": "45091"}, {"stopSequence": 43, "arrival": {"time": "1694891808"}, "stopId": "45093"}, {"stopSequence": 44, "arrival": {"time": "1694891869"}, "stopId": "45094"}, {"stopSequence": 45, "arrival": {"time": "1694891914"}, "stopId": "45095"}, {"stopSequence": 46, "arrival": {"time": "1694891968"}, "stopId": "45096"}, {"stopSequence": 47, "arrival": {"time": "1694892083"}, "stopId": "38622"}, {"stopSequence": 48, "arrival": {"time": "1694892209"}, "stopId": "38623"}, {"stopSequence": 49, "arrival": {"time": "1694892403"}, "stopId": "38624"}, {"stopSequence": 50, "arrival": {"time": "1694892551"}, "stopId": "38625"}, {"stopSequence": 51, "arrival": {"time": "1694892940"}, "stopId": "45102"}, {"stopSequence": 52, "arrival": {"time": "1694892984"}, "stopId": "45103"}, {"stopSequence": 53, "arrival": {"time": "1694893026"}, "stopId": "45104"}, {"stopSequence": 54, "arrival": {"time": "1694893071"}, "stopId": "45122"}, {"stopSequence": 55, "arrival": {"time": "1694893410"}, "stopId": "38575"}, {"stopSequence": 56, "arrival": {"time": "1694893530"}, "stopId": "38630"}], "vehicle": {"licensePlate": "XZ9643"}, "timestamp": "1694889006"}, "vehicle": {"trip": {"tripId": "23034-701ff27f-2", "startTime": "15:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "607", "directionId": 1}, "position": {"latitude": -36.81079, "longitude": -73.07347, "bearing": 300.0, "odometer": 0.0, "speed": 9.166667}, "timestamp": "1694889006", "vehicle": {"licensePlate": "XZ9643"}}}, {"id": "6410afba-912d-41ab-b514-a5759741392b", "tripUpdate": {"trip": {"tripId": "23036-701ff27f-2", "startTime": "15:31:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "607", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 14, "arrival": {"time": "1694888747"}, "stopId": "16005209"}, {"stopSequence": 15, "arrival": {"time": "1694888995"}, "stopId": "38531"}, {"stopSequence": 16, "arrival": {"time": "1694889051"}, "stopId": "8921285"}, {"stopSequence": 17, "arrival": {"time": "1694889164"}, "stopId": "38532"}, {"stopSequence": 18, "arrival": {"time": "1694889217"}, "stopId": "38533"}, {"stopSequence": 19, "arrival": {"time": "1694889271"}, "stopId": "38534"}, {"stopSequence": 20, "arrival": {"time": "1694889319"}, "stopId": "38535"}, {"stopSequence": 21, "arrival": {"time": "1694889383"}, "stopId": "38536"}, {"stopSequence": 22, "arrival": {"time": "1694889418"}, "stopId": "4838437"}, {"stopSequence": 23, "arrival": {"time": "1694889662"}, "stopId": "38598"}, {"stopSequence": 24, "arrival": {"time": "1694889701"}, "stopId": "38599"}, {"stopSequence": 25, "arrival": {"time": "1694889744"}, "stopId": "38600"}, {"stopSequence": 26, "arrival": {"time": "1694889776"}, "stopId": "38601"}, {"stopSequence": 27, "arrival": {"time": "1694889842"}, "stopId": "38603"}, {"stopSequence": 28, "arrival": {"time": "1694889884"}, "stopId": "38604"}, {"stopSequence": 29, "arrival": {"time": "1694889980"}, "stopId": "38606"}, {"stopSequence": 30, "arrival": {"time": "1694890030"}, "stopId": "38607"}, {"stopSequence": 31, "arrival": {"time": "1694890078"}, "stopId": "39403"}, {"stopSequence": 32, "arrival": {"time": "1694890115"}, "stopId": "44799"}, {"stopSequence": 33, "arrival": {"time": "1694890150"}, "stopId": "44800"}, {"stopSequence": 34, "arrival": {"time": "1694890175"}, "stopId": "38608"}, {"stopSequence": 35, "arrival": {"time": "1694890238"}, "stopId": "38609"}, {"stopSequence": 36, "arrival": {"time": "1694890299"}, "stopId": "38610"}, {"stopSequence": 37, "arrival": {"time": "1694890347"}, "stopId": "38611"}, {"stopSequence": 38, "arrival": {"time": "1694890385"}, "stopId": "38612"}, {"stopSequence": 39, "arrival": {"time": "1694890391"}, "stopId": "45088"}, {"stopSequence": 40, "arrival": {"time": "1694890438"}, "stopId": "45089"}, {"stopSequence": 41, "arrival": {"time": "1694890507"}, "stopId": "45090"}, {"stopSequence": 42, "arrival": {"time": "1694890544"}, "stopId": "45091"}, {"stopSequence": 43, "arrival": {"time": "1694890619"}, "stopId": "45093"}, {"stopSequence": 44, "arrival": {"time": "1694890670"}, "stopId": "45094"}, {"stopSequence": 45, "arrival": {"time": "1694890707"}, "stopId": "45095"}, {"stopSequence": 46, "arrival": {"time": "1694890751"}, "stopId": "45096"}, {"stopSequence": 47, "arrival": {"time": "1694890843"}, "stopId": "38622"}, {"stopSequence": 48, "arrival": {"time": "1694890944"}, "stopId": "38623"}, {"stopSequence": 49, "arrival": {"time": "1694891096"}, "stopId": "38624"}, {"stopSequence": 50, "arrival": {"time": "1694891209"}, "stopId": "38625"}, {"stopSequence": 51, "arrival": {"time": "1694891502"}, "stopId": "45102"}, {"stopSequence": 52, "arrival": {"time": "1694891534"}, "stopId": "45103"}, {"stopSequence": 53, "arrival": {"time": "1694891565"}, "stopId": "45104"}, {"stopSequence": 54, "arrival": {"time": "1694891598"}, "stopId": "45122"}, {"stopSequence": 55, "arrival": {"time": "1694891841"}, "stopId": "38575"}, {"stopSequence": 56, "arrival": {"time": "1694891925"}, "stopId": "38630"}], "vehicle": {"licensePlate": "YX6960"}, "timestamp": "1694888734"}, "vehicle": {"trip": {"tripId": "23036-701ff27f-2", "startTime": "15:31:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "607", "directionId": 1}, "position": {"latitude": -36.80744, "longitude": -73.0524, "bearing": 152.0, "odometer": 0.0, "speed": 11.388889}, "timestamp": "1694888980", "vehicle": {"licensePlate": "YX6960"}}}, {"id": "0441a8f9-0fe0-4da3-a9d2-700b6dc6fcec", "tripUpdate": {"trip": {"tripId": "23385-701ff27f-2", "startTime": "14:49:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "610", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 59, "arrival": {"time": "1694889086"}, "stopId": "39628"}, {"stopSequence": 60, "arrival": {"time": "1694889167"}, "stopId": "39631"}, {"stopSequence": 61, "arrival": {"time": "1694889216"}, "stopId": "49311"}, {"stopSequence": 62, "arrival": {"time": "1694889274"}, "stopId": "39634"}, {"stopSequence": 63, "arrival": {"time": "1694889300"}, "stopId": "39635"}, {"stopSequence": 64, "arrival": {"time": "1694889347"}, "stopId": "39636"}, {"stopSequence": 65, "arrival": {"time": "1694889529"}, "stopId": "39637"}, {"stopSequence": 66, "arrival": {"time": "1694889578"}, "stopId": "49317"}, {"stopSequence": 67, "arrival": {"time": "1694889610"}, "stopId": "49318"}, {"stopSequence": 68, "arrival": {"time": "1694889674"}, "stopId": "49319"}, {"stopSequence": 69, "arrival": {"time": "1694889737"}, "stopId": "39641"}, {"stopSequence": 70, "arrival": {"time": "1694889772"}, "stopId": "39642"}, {"stopSequence": 71, "arrival": {"time": "1694889914"}, "stopId": "39643"}, {"stopSequence": 72, "arrival": {"time": "1694889968"}, "stopId": "49323"}, {"stopSequence": 73, "arrival": {"time": "1694890005"}, "stopId": "49324"}, {"stopSequence": 74, "arrival": {"time": "1694890052"}, "stopId": "49325"}, {"stopSequence": 75, "arrival": {"time": "1694890104"}, "stopId": "49326"}, {"stopSequence": 76, "arrival": {"time": "1694890126"}, "stopId": "39648"}, {"stopSequence": 77, "arrival": {"time": "1694890176"}, "stopId": "39649"}, {"stopSequence": 78, "arrival": {"time": "1694890225"}, "stopId": "49329"}, {"stopSequence": 79, "arrival": {"time": "1694890280"}, "stopId": "49330"}, {"stopSequence": 80, "arrival": {"time": "1694890317"}, "stopId": "39652"}, {"stopSequence": 81, "arrival": {"time": "1694890345"}, "stopId": "39653"}, {"stopSequence": 82, "arrival": {"time": "1694890377"}, "stopId": "39654"}, {"stopSequence": 83, "arrival": {"time": "1694890407"}, "stopId": "49334"}, {"stopSequence": 84, "arrival": {"time": "1694890467"}, "stopId": "49335"}, {"stopSequence": 85, "arrival": {"time": "1694890512"}, "stopId": "49336"}, {"stopSequence": 86, "arrival": {"time": "1694890561"}, "stopId": "39657"}, {"stopSequence": 87, "arrival": {"time": "1694890594"}, "stopId": "39658"}, {"stopSequence": 88, "arrival": {"time": "1694890640"}, "stopId": "39659"}, {"stopSequence": 89, "arrival": {"time": "1694890673"}, "stopId": "39660"}, {"stopSequence": 90, "arrival": {"time": "1694890703"}, "stopId": "39661"}, {"stopSequence": 91, "arrival": {"time": "1694890750"}, "stopId": "39662"}, {"stopSequence": 92, "arrival": {"time": "1694890810"}, "stopId": "39663"}, {"stopSequence": 93, "arrival": {"time": "1694890857"}, "stopId": "39664"}, {"stopSequence": 94, "arrival": {"time": "1694890904"}, "stopId": "39665"}, {"stopSequence": 95, "arrival": {"time": "1694891012"}, "stopId": "39666"}, {"stopSequence": 96, "arrival": {"time": "1694891048"}, "stopId": "39667"}, {"stopSequence": 97, "arrival": {"time": "1694891135"}, "stopId": "39668"}, {"stopSequence": 98, "arrival": {"time": "1694891179"}, "stopId": "39669"}, {"stopSequence": 99, "arrival": {"time": "1694891208"}, "stopId": "39670"}, {"stopSequence": 100, "arrival": {"time": "1694891229"}, "stopId": "39233"}, {"stopSequence": 101, "arrival": {"time": "1694891275"}, "stopId": "36752"}, {"stopSequence": 102, "arrival": {"time": "1694891478"}, "stopId": "39689"}], "vehicle": {"licensePlate": "CFTG16"}, "timestamp": "1694889023"}, "vehicle": {"trip": {"tripId": "23385-701ff27f-2", "startTime": "14:49:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "610", "directionId": 0}, "position": {"latitude": -36.82537, "longitude": -73.05077, "bearing": 345.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889023", "vehicle": {"licensePlate": "CFTG16"}}}, {"id": "9f774ec5-fb7d-4d9e-96f2-9a492deee7a6", "tripUpdate": {"trip": {"tripId": "23300-701ff27f-2", "startTime": "14:59:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "610", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 39, "arrival": {"time": "1694889049"}, "stopId": "35697"}, {"stopSequence": 40, "arrival": {"time": "1694889151"}, "stopId": "2-Jan"}, {"stopSequence": 41, "arrival": {"time": "1694889182"}, "stopId": "42460"}, {"stopSequence": 42, "arrival": {"time": "1694889227"}, "stopId": "35690"}, {"stopSequence": 43, "arrival": {"time": "1694889327"}, "stopId": "35700"}, {"stopSequence": 44, "arrival": {"time": "1694889357"}, "stopId": "35701"}, {"stopSequence": 45, "arrival": {"time": "1694889424"}, "stopId": "35703"}, {"stopSequence": 46, "arrival": {"time": "1694889447"}, "stopId": "35704"}, {"stopSequence": 47, "arrival": {"time": "1694889461"}, "stopId": "35705"}, {"stopSequence": 48, "arrival": {"time": "1694889480"}, "stopId": "35706"}, {"stopSequence": 49, "arrival": {"time": "1694889535"}, "stopId": "35707"}, {"stopSequence": 50, "arrival": {"time": "1694889560"}, "stopId": "35708"}, {"stopSequence": 51, "arrival": {"time": "1694889626"}, "stopId": "38520"}, {"stopSequence": 52, "arrival": {"time": "1694889666"}, "stopId": "38521"}, {"stopSequence": 53, "arrival": {"time": "1694889715"}, "stopId": "38522"}, {"stopSequence": 54, "arrival": {"time": "1694889764"}, "stopId": "38523"}, {"stopSequence": 55, "arrival": {"time": "1694889816"}, "stopId": "38524"}, {"stopSequence": 56, "arrival": {"time": "1694889863"}, "stopId": "38525"}, {"stopSequence": 57, "arrival": {"time": "1694889914"}, "stopId": "38526"}, {"stopSequence": 58, "arrival": {"time": "1694889959"}, "stopId": "39987"}, {"stopSequence": 59, "arrival": {"time": "1694890001"}, "stopId": "39988"}, {"stopSequence": 60, "arrival": {"time": "1694890048"}, "stopId": "37636"}, {"stopSequence": 61, "arrival": {"time": "1694890162"}, "stopId": "37637"}, {"stopSequence": 62, "arrival": {"time": "1694890211"}, "stopId": "37639"}, {"stopSequence": 63, "arrival": {"time": "1694890249"}, "stopId": "39200"}, {"stopSequence": 64, "arrival": {"time": "1694890277"}, "stopId": "37300"}, {"stopSequence": 65, "arrival": {"time": "1694890318"}, "stopId": "40191"}, {"stopSequence": 66, "arrival": {"time": "1694890354"}, "stopId": "40192"}, {"stopSequence": 67, "arrival": {"time": "1694890384"}, "stopId": "40193"}, {"stopSequence": 68, "arrival": {"time": "1694890417"}, "stopId": "40194"}, {"stopSequence": 69, "arrival": {"time": "1694890455"}, "stopId": "38024"}, {"stopSequence": 70, "arrival": {"time": "1694890496"}, "stopId": "38025"}, {"stopSequence": 71, "arrival": {"time": "1694890520"}, "stopId": "38026"}, {"stopSequence": 72, "arrival": {"time": "1694890542"}, "stopId": "38027"}, {"stopSequence": 73, "arrival": {"time": "1694890553"}, "stopId": "38028"}, {"stopSequence": 74, "arrival": {"time": "1694890579"}, "stopId": "38029"}, {"stopSequence": 75, "arrival": {"time": "1694890595"}, "stopId": "38030"}, {"stopSequence": 76, "arrival": {"time": "1694890646"}, "stopId": "91020"}, {"stopSequence": 77, "arrival": {"time": "1694890677"}, "stopId": "91021"}, {"stopSequence": 78, "arrival": {"time": "1694890716"}, "stopId": "39214"}, {"stopSequence": 79, "arrival": {"time": "1694890771"}, "stopId": "39215"}, {"stopSequence": 80, "arrival": {"time": "1694890889"}, "stopId": "39216"}, {"stopSequence": 81, "arrival": {"time": "1694890956"}, "stopId": "39217"}, {"stopSequence": 82, "arrival": {"time": "1694891012"}, "stopId": "39218"}, {"stopSequence": 83, "arrival": {"time": "1694891040"}, "stopId": "39219"}, {"stopSequence": 84, "arrival": {"time": "1694891081"}, "stopId": "39220"}, {"stopSequence": 85, "arrival": {"time": "1694891107"}, "stopId": "39221"}, {"stopSequence": 86, "arrival": {"time": "1694891188"}, "stopId": "39424"}, {"stopSequence": 87, "arrival": {"time": "1694891242"}, "stopId": "91022"}, {"stopSequence": 88, "arrival": {"time": "1694891312"}, "stopId": "91023"}, {"stopSequence": 89, "arrival": {"time": "1694891404"}, "stopId": "39428"}, {"stopSequence": 90, "arrival": {"time": "1694891441"}, "stopId": "39429"}, {"stopSequence": 91, "arrival": {"time": "1694891482"}, "stopId": "39430"}], "vehicle": {"licensePlate": "DLRB59"}, "timestamp": "1694889037"}, "vehicle": {"trip": {"tripId": "23300-701ff27f-2", "startTime": "14:59:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "610", "directionId": 1}, "position": {"latitude": -36.821842, "longitude": -73.064095, "bearing": 148.0, "odometer": 0.0, "speed": 11.944445}, "timestamp": "1694889037", "vehicle": {"licensePlate": "DLRB59"}}}, {"id": "4475f473-6adf-4e67-9f17-3165d9d057a6", "tripUpdate": {"trip": {"tripId": "23386-701ff27f-2", "startTime": "15:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "610", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 44, "arrival": {"time": "1694889061"}, "stopId": "39589"}, {"stopSequence": 45, "arrival": {"time": "1694889116"}, "stopId": "39516"}, {"stopSequence": 46, "arrival": {"time": "1694889163"}, "stopId": "39517"}, {"stopSequence": 47, "arrival": {"time": "1694889232"}, "stopId": "39611"}, {"stopSequence": 48, "arrival": {"time": "1694889256"}, "stopId": "39612"}, {"stopSequence": 49, "arrival": {"time": "1694889389"}, "stopId": "39615"}, {"stopSequence": 50, "arrival": {"time": "1694889439"}, "stopId": "39616"}, {"stopSequence": 51, "arrival": {"time": "1694889494"}, "stopId": "39617"}, {"stopSequence": 52, "arrival": {"time": "1694889552"}, "stopId": "39618"}, {"stopSequence": 53, "arrival": {"time": "1694889596"}, "stopId": "39619"}, {"stopSequence": 54, "arrival": {"time": "1694889637"}, "stopId": "39620"}, {"stopSequence": 55, "arrival": {"time": "1694889704"}, "stopId": "39621"}, {"stopSequence": 56, "arrival": {"time": "1694889762"}, "stopId": "39623"}, {"stopSequence": 57, "arrival": {"time": "1694889809"}, "stopId": "39624"}, {"stopSequence": 58, "arrival": {"time": "1694889855"}, "stopId": "39625"}, {"stopSequence": 59, "arrival": {"time": "1694889923"}, "stopId": "39628"}, {"stopSequence": 60, "arrival": {"time": "1694889997"}, "stopId": "39631"}, {"stopSequence": 61, "arrival": {"time": "1694890043"}, "stopId": "49311"}, {"stopSequence": 62, "arrival": {"time": "1694890097"}, "stopId": "39634"}, {"stopSequence": 63, "arrival": {"time": "1694890122"}, "stopId": "39635"}, {"stopSequence": 64, "arrival": {"time": "1694890167"}, "stopId": "39636"}, {"stopSequence": 65, "arrival": {"time": "1694890343"}, "stopId": "39637"}, {"stopSequence": 66, "arrival": {"time": "1694890391"}, "stopId": "49317"}, {"stopSequence": 67, "arrival": {"time": "1694890423"}, "stopId": "49318"}, {"stopSequence": 68, "arrival": {"time": "1694890487"}, "stopId": "49319"}, {"stopSequence": 69, "arrival": {"time": "1694890551"}, "stopId": "39641"}, {"stopSequence": 70, "arrival": {"time": "1694890586"}, "stopId": "39642"}, {"stopSequence": 71, "arrival": {"time": "1694890733"}, "stopId": "39643"}, {"stopSequence": 72, "arrival": {"time": "1694890790"}, "stopId": "49323"}, {"stopSequence": 73, "arrival": {"time": "1694890829"}, "stopId": "49324"}, {"stopSequence": 74, "arrival": {"time": "1694890879"}, "stopId": "49325"}, {"stopSequence": 75, "arrival": {"time": "1694890935"}, "stopId": "49326"}, {"stopSequence": 76, "arrival": {"time": "1694890959"}, "stopId": "39648"}, {"stopSequence": 77, "arrival": {"time": "1694891012"}, "stopId": "39649"}, {"stopSequence": 78, "arrival": {"time": "1694891067"}, "stopId": "49329"}, {"stopSequence": 79, "arrival": {"time": "1694891127"}, "stopId": "49330"}, {"stopSequence": 80, "arrival": {"time": "1694891168"}, "stopId": "39652"}, {"stopSequence": 81, "arrival": {"time": "1694891199"}, "stopId": "39653"}, {"stopSequence": 82, "arrival": {"time": "1694891236"}, "stopId": "39654"}, {"stopSequence": 83, "arrival": {"time": "1694891269"}, "stopId": "49334"}, {"stopSequence": 84, "arrival": {"time": "1694891337"}, "stopId": "49335"}, {"stopSequence": 85, "arrival": {"time": "1694891388"}, "stopId": "49336"}, {"stopSequence": 86, "arrival": {"time": "1694891445"}, "stopId": "39657"}, {"stopSequence": 87, "arrival": {"time": "1694891484"}, "stopId": "39658"}, {"stopSequence": 88, "arrival": {"time": "1694891537"}, "stopId": "39659"}, {"stopSequence": 89, "arrival": {"time": "1694891575"}, "stopId": "39660"}, {"stopSequence": 90, "arrival": {"time": "1694891611"}, "stopId": "39661"}, {"stopSequence": 91, "arrival": {"time": "1694891667"}, "stopId": "39662"}, {"stopSequence": 92, "arrival": {"time": "1694891738"}, "stopId": "39663"}, {"stopSequence": 93, "arrival": {"time": "1694891795"}, "stopId": "39664"}, {"stopSequence": 94, "arrival": {"time": "1694891852"}, "stopId": "39665"}, {"stopSequence": 95, "arrival": {"time": "1694891984"}, "stopId": "39666"}, {"stopSequence": 96, "arrival": {"time": "1694892028"}, "stopId": "39667"}, {"stopSequence": 97, "arrival": {"time": "1694892137"}, "stopId": "39668"}, {"stopSequence": 98, "arrival": {"time": "1694892192"}, "stopId": "39669"}, {"stopSequence": 99, "arrival": {"time": "1694892229"}, "stopId": "39670"}, {"stopSequence": 100, "arrival": {"time": "1694892256"}, "stopId": "39233"}, {"stopSequence": 101, "arrival": {"time": "1694892314"}, "stopId": "36752"}, {"stopSequence": 102, "arrival": {"time": "1694892578"}, "stopId": "39689"}], "vehicle": {"licensePlate": "DPZZ42"}, "timestamp": "1694889035"}, "vehicle": {"trip": {"tripId": "23386-701ff27f-2", "startTime": "15:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "610", "directionId": 0}, "position": {"latitude": -36.80119, "longitude": -73.04927, "bearing": 202.0, "odometer": 0.0, "speed": 6.9444447}, "timestamp": "1694889035", "vehicle": {"licensePlate": "DPZZ42"}}}, {"id": "5d2cd0a3-a6f8-4b3b-8139-f9d7f6bd3bbc", "tripUpdate": {"trip": {"tripId": "23299-701ff27f-2", "startTime": "14:44:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "610", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 51, "arrival": {"time": "1694889034"}, "stopId": "38520"}, {"stopSequence": 52, "arrival": {"time": "1694889078"}, "stopId": "38521"}, {"stopSequence": 53, "arrival": {"time": "1694889130"}, "stopId": "38522"}, {"stopSequence": 54, "arrival": {"time": "1694889183"}, "stopId": "38523"}, {"stopSequence": 55, "arrival": {"time": "1694889238"}, "stopId": "38524"}, {"stopSequence": 56, "arrival": {"time": "1694889288"}, "stopId": "38525"}, {"stopSequence": 57, "arrival": {"time": "1694889342"}, "stopId": "38526"}, {"stopSequence": 58, "arrival": {"time": "1694889390"}, "stopId": "39987"}, {"stopSequence": 59, "arrival": {"time": "1694889432"}, "stopId": "39988"}, {"stopSequence": 60, "arrival": {"time": "1694889481"}, "stopId": "37636"}, {"stopSequence": 61, "arrival": {"time": "1694889599"}, "stopId": "37637"}, {"stopSequence": 62, "arrival": {"time": "1694889649"}, "stopId": "37639"}, {"stopSequence": 63, "arrival": {"time": "1694889687"}, "stopId": "39200"}, {"stopSequence": 64, "arrival": {"time": "1694889715"}, "stopId": "37300"}, {"stopSequence": 65, "arrival": {"time": "1694889757"}, "stopId": "40191"}, {"stopSequence": 66, "arrival": {"time": "1694889792"}, "stopId": "40192"}, {"stopSequence": 67, "arrival": {"time": "1694889823"}, "stopId": "40193"}, {"stopSequence": 68, "arrival": {"time": "1694889854"}, "stopId": "40194"}, {"stopSequence": 69, "arrival": {"time": "1694889892"}, "stopId": "38024"}, {"stopSequence": 70, "arrival": {"time": "1694889932"}, "stopId": "38025"}, {"stopSequence": 71, "arrival": {"time": "1694889956"}, "stopId": "38026"}, {"stopSequence": 72, "arrival": {"time": "1694889977"}, "stopId": "38027"}, {"stopSequence": 73, "arrival": {"time": "1694889989"}, "stopId": "38028"}, {"stopSequence": 74, "arrival": {"time": "1694890013"}, "stopId": "38029"}, {"stopSequence": 75, "arrival": {"time": "1694890029"}, "stopId": "38030"}, {"stopSequence": 76, "arrival": {"time": "1694890079"}, "stopId": "91020"}, {"stopSequence": 77, "arrival": {"time": "1694890109"}, "stopId": "91021"}, {"stopSequence": 78, "arrival": {"time": "1694890146"}, "stopId": "39214"}, {"stopSequence": 79, "arrival": {"time": "1694890199"}, "stopId": "39215"}, {"stopSequence": 80, "arrival": {"time": "1694890310"}, "stopId": "39216"}, {"stopSequence": 81, "arrival": {"time": "1694890373"}, "stopId": "39217"}, {"stopSequence": 82, "arrival": {"time": "1694890425"}, "stopId": "39218"}, {"stopSequence": 83, "arrival": {"time": "1694890451"}, "stopId": "39219"}, {"stopSequence": 84, "arrival": {"time": "1694890490"}, "stopId": "39220"}, {"stopSequence": 85, "arrival": {"time": "1694890513"}, "stopId": "39221"}, {"stopSequence": 86, "arrival": {"time": "1694890588"}, "stopId": "39424"}, {"stopSequence": 87, "arrival": {"time": "1694890637"}, "stopId": "91022"}, {"stopSequence": 88, "arrival": {"time": "1694890700"}, "stopId": "91023"}, {"stopSequence": 89, "arrival": {"time": "1694890783"}, "stopId": "39428"}, {"stopSequence": 90, "arrival": {"time": "1694890816"}, "stopId": "39429"}, {"stopSequence": 91, "arrival": {"time": "1694890853"}, "stopId": "39430"}], "vehicle": {"licensePlate": "HFZJ97"}, "timestamp": "1694889032"}, "vehicle": {"trip": {"tripId": "23299-701ff27f-2", "startTime": "14:44:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "610", "directionId": 1}, "position": {"latitude": -36.818806, "longitude": -73.04529, "bearing": 330.0, "odometer": 0.0, "speed": 11.388889}, "timestamp": "1694889032", "vehicle": {"licensePlate": "HFZJ97"}}}, {"id": "e1c499be-bbd8-4f99-ad9d-2e6cabe94319", "tripUpdate": {"trip": {"tripId": "23383-701ff27f-2", "startTime": "14:25:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "610", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 74, "arrival": {"time": "1694889030"}, "stopId": "49325"}, {"stopSequence": 75, "arrival": {"time": "1694889087"}, "stopId": "49326"}, {"stopSequence": 76, "arrival": {"time": "1694889112"}, "stopId": "39648"}, {"stopSequence": 77, "arrival": {"time": "1694889165"}, "stopId": "39649"}, {"stopSequence": 78, "arrival": {"time": "1694889218"}, "stopId": "49329"}, {"stopSequence": 79, "arrival": {"time": "1694889276"}, "stopId": "49330"}, {"stopSequence": 80, "arrival": {"time": "1694889315"}, "stopId": "39652"}, {"stopSequence": 81, "arrival": {"time": "1694889344"}, "stopId": "39653"}, {"stopSequence": 82, "arrival": {"time": "1694889377"}, "stopId": "39654"}, {"stopSequence": 83, "arrival": {"time": "1694889407"}, "stopId": "49334"}, {"stopSequence": 84, "arrival": {"time": "1694889469"}, "stopId": "49335"}, {"stopSequence": 85, "arrival": {"time": "1694889514"}, "stopId": "49336"}, {"stopSequence": 86, "arrival": {"time": "1694889563"}, "stopId": "39657"}, {"stopSequence": 87, "arrival": {"time": "1694889596"}, "stopId": "39658"}, {"stopSequence": 88, "arrival": {"time": "1694889641"}, "stopId": "39659"}, {"stopSequence": 89, "arrival": {"time": "1694889673"}, "stopId": "39660"}, {"stopSequence": 90, "arrival": {"time": "1694889702"}, "stopId": "39661"}, {"stopSequence": 91, "arrival": {"time": "1694889748"}, "stopId": "39662"}, {"stopSequence": 92, "arrival": {"time": "1694889804"}, "stopId": "39663"}, {"stopSequence": 93, "arrival": {"time": "1694889849"}, "stopId": "39664"}, {"stopSequence": 94, "arrival": {"time": "1694889893"}, "stopId": "39665"}, {"stopSequence": 95, "arrival": {"time": "1694889992"}, "stopId": "39666"}, {"stopSequence": 96, "arrival": {"time": "1694890025"}, "stopId": "39667"}, {"stopSequence": 97, "arrival": {"time": "1694890104"}, "stopId": "39668"}, {"stopSequence": 98, "arrival": {"time": "1694890143"}, "stopId": "39669"}, {"stopSequence": 99, "arrival": {"time": "1694890169"}, "stopId": "39670"}, {"stopSequence": 100, "arrival": {"time": "1694890187"}, "stopId": "39233"}, {"stopSequence": 101, "arrival": {"time": "1694890228"}, "stopId": "36752"}, {"stopSequence": 102, "arrival": {"time": "1694890402"}, "stopId": "39689"}], "vehicle": {"licensePlate": "JXLZ88"}, "timestamp": "1694889005"}, "vehicle": {"trip": {"tripId": "23383-701ff27f-2", "startTime": "14:25:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "610", "directionId": 0}, "position": {"latitude": -36.798405, "longitude": -73.08545, "bearing": 350.0, "odometer": 0.0, "speed": 12.222222}, "timestamp": "1694889005", "vehicle": {"licensePlate": "JXLZ88"}}}, {"id": "caa7656f-50ca-47fe-819e-8aea6e408c90", "tripUpdate": {"trip": {"tripId": "23301-701ff27f-2", "startTime": "15:14:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "610", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 16, "arrival": {"time": "1694889013"}, "stopId": "91019"}, {"stopSequence": 17, "arrival": {"time": "1694889076"}, "stopId": "37436"}, {"stopSequence": 18, "arrival": {"time": "1694889148"}, "stopId": "49135"}, {"stopSequence": 19, "arrival": {"time": "1694889191"}, "stopId": "49136"}, {"stopSequence": 20, "arrival": {"time": "1694889266"}, "stopId": "49137"}, {"stopSequence": 21, "arrival": {"time": "1694889290"}, "stopId": "49138"}, {"stopSequence": 22, "arrival": {"time": "1694889308"}, "stopId": "49139"}, {"stopSequence": 23, "arrival": {"time": "1694889340"}, "stopId": "49140"}, {"stopSequence": 24, "arrival": {"time": "1694889381"}, "stopId": "49141"}, {"stopSequence": 25, "arrival": {"time": "1694889421"}, "stopId": "49142"}, {"stopSequence": 26, "arrival": {"time": "1694889458"}, "stopId": "49143"}, {"stopSequence": 27, "arrival": {"time": "1694889485"}, "stopId": "38506"}, {"stopSequence": 28, "arrival": {"time": "1694889534"}, "stopId": "38635"}, {"stopSequence": 29, "arrival": {"time": "1694889567"}, "stopId": "38509"}, {"stopSequence": 30, "arrival": {"time": "1694889610"}, "stopId": "38642"}, {"stopSequence": 31, "arrival": {"time": "1694889654"}, "stopId": "39795"}, {"stopSequence": 32, "arrival": {"time": "1694889684"}, "stopId": "38502"}, {"stopSequence": 33, "arrival": {"time": "1694889745"}, "stopId": "38503"}, {"stopSequence": 34, "arrival": {"time": "1694889898"}, "stopId": "35691"}, {"stopSequence": 35, "arrival": {"time": "1694889994"}, "stopId": "35693"}, {"stopSequence": 36, "arrival": {"time": "1694890047"}, "stopId": "35694"}, {"stopSequence": 37, "arrival": {"time": "1694890086"}, "stopId": "35695"}, {"stopSequence": 38, "arrival": {"time": "1694890132"}, "stopId": "35696"}, {"stopSequence": 39, "arrival": {"time": "1694890298"}, "stopId": "35697"}, {"stopSequence": 40, "arrival": {"time": "1694890393"}, "stopId": "2-Jan"}, {"stopSequence": 41, "arrival": {"time": "1694890422"}, "stopId": "42460"}, {"stopSequence": 42, "arrival": {"time": "1694890464"}, "stopId": "35690"}, {"stopSequence": 43, "arrival": {"time": "1694890561"}, "stopId": "35700"}, {"stopSequence": 44, "arrival": {"time": "1694890590"}, "stopId": "35701"}, {"stopSequence": 45, "arrival": {"time": "1694890656"}, "stopId": "35703"}, {"stopSequence": 46, "arrival": {"time": "1694890679"}, "stopId": "35704"}, {"stopSequence": 47, "arrival": {"time": "1694890694"}, "stopId": "35705"}, {"stopSequence": 48, "arrival": {"time": "1694890713"}, "stopId": "35706"}, {"stopSequence": 49, "arrival": {"time": "1694890769"}, "stopId": "35707"}, {"stopSequence": 50, "arrival": {"time": "1694890795"}, "stopId": "35708"}, {"stopSequence": 51, "arrival": {"time": "1694890864"}, "stopId": "38520"}, {"stopSequence": 52, "arrival": {"time": "1694890906"}, "stopId": "38521"}, {"stopSequence": 53, "arrival": {"time": "1694890958"}, "stopId": "38522"}, {"stopSequence": 54, "arrival": {"time": "1694891011"}, "stopId": "38523"}, {"stopSequence": 55, "arrival": {"time": "1694891068"}, "stopId": "38524"}, {"stopSequence": 56, "arrival": {"time": "1694891120"}, "stopId": "38525"}, {"stopSequence": 57, "arrival": {"time": "1694891177"}, "stopId": "38526"}, {"stopSequence": 58, "arrival": {"time": "1694891229"}, "stopId": "39987"}, {"stopSequence": 59, "arrival": {"time": "1694891276"}, "stopId": "39988"}, {"stopSequence": 60, "arrival": {"time": "1694891331"}, "stopId": "37636"}, {"stopSequence": 61, "arrival": {"time": "1694891467"}, "stopId": "37637"}, {"stopSequence": 62, "arrival": {"time": "1694891525"}, "stopId": "37639"}, {"stopSequence": 63, "arrival": {"time": "1694891571"}, "stopId": "39200"}, {"stopSequence": 64, "arrival": {"time": "1694891607"}, "stopId": "37300"}, {"stopSequence": 65, "arrival": {"time": "1694891658"}, "stopId": "40191"}, {"stopSequence": 66, "arrival": {"time": "1694891702"}, "stopId": "40192"}, {"stopSequence": 67, "arrival": {"time": "1694891740"}, "stopId": "40193"}, {"stopSequence": 68, "arrival": {"time": "1694891781"}, "stopId": "40194"}, {"stopSequence": 69, "arrival": {"time": "1694891830"}, "stopId": "38024"}, {"stopSequence": 70, "arrival": {"time": "1694891883"}, "stopId": "38025"}, {"stopSequence": 71, "arrival": {"time": "1694891915"}, "stopId": "38026"}, {"stopSequence": 72, "arrival": {"time": "1694891943"}, "stopId": "38027"}, {"stopSequence": 73, "arrival": {"time": "1694891958"}, "stopId": "38028"}, {"stopSequence": 74, "arrival": {"time": "1694891992"}, "stopId": "38029"}, {"stopSequence": 75, "arrival": {"time": "1694892013"}, "stopId": "38030"}, {"stopSequence": 76, "arrival": {"time": "1694892082"}, "stopId": "91020"}, {"stopSequence": 77, "arrival": {"time": "1694892124"}, "stopId": "91021"}, {"stopSequence": 78, "arrival": {"time": "1694892177"}, "stopId": "39214"}, {"stopSequence": 79, "arrival": {"time": "1694892253"}, "stopId": "39215"}, {"stopSequence": 80, "arrival": {"time": "1694892417"}, "stopId": "39216"}, {"stopSequence": 81, "arrival": {"time": "1694892514"}, "stopId": "39217"}, {"stopSequence": 82, "arrival": {"time": "1694892595"}, "stopId": "39218"}, {"stopSequence": 83, "arrival": {"time": "1694892636"}, "stopId": "39219"}, {"stopSequence": 84, "arrival": {"time": "1694892697"}, "stopId": "39220"}, {"stopSequence": 85, "arrival": {"time": "1694892735"}, "stopId": "39221"}, {"stopSequence": 86, "arrival": {"time": "1694892858"}, "stopId": "39424"}, {"stopSequence": 87, "arrival": {"time": "1694892940"}, "stopId": "91022"}, {"stopSequence": 88, "arrival": {"time": "1694893048"}, "stopId": "91023"}, {"stopSequence": 89, "arrival": {"time": "1694893193"}, "stopId": "39428"}, {"stopSequence": 90, "arrival": {"time": "1694893252"}, "stopId": "39429"}, {"stopSequence": 91, "arrival": {"time": "1694893319"}, "stopId": "39430"}], "vehicle": {"licensePlate": "WV6687"}, "timestamp": "1694889007"}, "vehicle": {"trip": {"tripId": "23301-701ff27f-2", "startTime": "15:14:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "610", "directionId": 1}, "position": {"latitude": -36.786724, "longitude": -73.10677, "bearing": 88.0, "odometer": 0.0, "speed": 6.111111}, "timestamp": "1694889007", "vehicle": {"licensePlate": "WV6687"}}}, {"id": "710b0a30-70ce-4083-9e31-9b6171accb4f", "tripUpdate": {"trip": {"tripId": "23382-701ff27f-2", "startTime": "14:13:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "610", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 102, "arrival": {"time": "1694889210"}, "stopId": "39689"}], "vehicle": {"licensePlate": "ZR9567"}, "timestamp": "1694889024"}, "vehicle": {"trip": {"tripId": "23382-701ff27f-2", "startTime": "14:13:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "610", "directionId": 0}, "position": {"latitude": -36.786682, "longitude": -73.11706, "bearing": 144.0, "odometer": 0.0, "speed": 3.8888888}, "timestamp": "1694889024", "vehicle": {"licensePlate": "ZR9567"}}}, {"id": "bcf36d06-b8e9-4943-95c9-55306fff636e", "tripUpdate": {"trip": {"tripId": "23482-701ff27f-2", "startTime": "15:12:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "611", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 22, "arrival": {"time": "1694889007"}, "stopId": "39579"}, {"stopSequence": 23, "arrival": {"time": "1694889043"}, "stopId": "39580"}, {"stopSequence": 24, "arrival": {"time": "1694889072"}, "stopId": "39581"}, {"stopSequence": 25, "arrival": {"time": "1694889089"}, "stopId": "39582"}, {"stopSequence": 26, "arrival": {"time": "1694889104"}, "stopId": "39583"}, {"stopSequence": 27, "arrival": {"time": "1694889129"}, "stopId": "39584"}, {"stopSequence": 28, "arrival": {"time": "1694889165"}, "stopId": "39585"}, {"stopSequence": 29, "arrival": {"time": "1694889178"}, "stopId": "38024"}, {"stopSequence": 30, "arrival": {"time": "1694889218"}, "stopId": "39536"}, {"stopSequence": 31, "arrival": {"time": "1694889256"}, "stopId": "16206048"}, {"stopSequence": 32, "arrival": {"time": "1694889275"}, "stopId": "39537"}, {"stopSequence": 33, "arrival": {"time": "1694889293"}, "stopId": "39428"}, {"stopSequence": 34, "arrival": {"time": "1694889322"}, "stopId": "39429"}, {"stopSequence": 35, "arrival": {"time": "1694889358"}, "stopId": "39430"}, {"stopSequence": 36, "arrival": {"time": "1694889467"}, "stopId": "37638"}, {"stopSequence": 37, "arrival": {"time": "1694889502"}, "stopId": "39587"}, {"stopSequence": 38, "arrival": {"time": "1694889535"}, "stopId": "39588"}, {"stopSequence": 39, "arrival": {"time": "1694889587"}, "stopId": "39589"}, {"stopSequence": 40, "arrival": {"time": "1694889637"}, "stopId": "39516"}, {"stopSequence": 41, "arrival": {"time": "1694889681"}, "stopId": "39517"}, {"stopSequence": 42, "arrival": {"time": "1694889746"}, "stopId": "39611"}, {"stopSequence": 43, "arrival": {"time": "1694889769"}, "stopId": "39612"}, {"stopSequence": 44, "arrival": {"time": "1694889821"}, "stopId": "39613"}, {"stopSequence": 45, "arrival": {"time": "1694889843"}, "stopId": "39614"}, {"stopSequence": 46, "arrival": {"time": "1694889892"}, "stopId": "39615"}, {"stopSequence": 47, "arrival": {"time": "1694889942"}, "stopId": "39616"}, {"stopSequence": 48, "arrival": {"time": "1694889992"}, "stopId": "39617"}, {"stopSequence": 49, "arrival": {"time": "1694890049"}, "stopId": "39618"}, {"stopSequence": 50, "arrival": {"time": "1694890091"}, "stopId": "39619"}, {"stopSequence": 51, "arrival": {"time": "1694890132"}, "stopId": "39620"}, {"stopSequence": 52, "arrival": {"time": "1694890200"}, "stopId": "39621"}, {"stopSequence": 53, "arrival": {"time": "1694890258"}, "stopId": "39623"}, {"stopSequence": 54, "arrival": {"time": "1694890306"}, "stopId": "39624"}, {"stopSequence": 55, "arrival": {"time": "1694890351"}, "stopId": "39625"}, {"stopSequence": 56, "arrival": {"time": "1694890420"}, "stopId": "39628"}, {"stopSequence": 57, "arrival": {"time": "1694890496"}, "stopId": "39631"}, {"stopSequence": 58, "arrival": {"time": "1694890544"}, "stopId": "49311"}, {"stopSequence": 59, "arrival": {"time": "1694890600"}, "stopId": "39634"}, {"stopSequence": 60, "arrival": {"time": "1694890625"}, "stopId": "39635"}, {"stopSequence": 61, "arrival": {"time": "1694890672"}, "stopId": "39636"}, {"stopSequence": 62, "arrival": {"time": "1694890857"}, "stopId": "39637"}, {"stopSequence": 63, "arrival": {"time": "1694890909"}, "stopId": "49317"}, {"stopSequence": 64, "arrival": {"time": "1694890943"}, "stopId": "49318"}, {"stopSequence": 65, "arrival": {"time": "1694891013"}, "stopId": "49319"}, {"stopSequence": 66, "arrival": {"time": "1694891082"}, "stopId": "39641"}, {"stopSequence": 67, "arrival": {"time": "1694891283"}, "stopId": "39643"}, {"stopSequence": 68, "arrival": {"time": "1694891434"}, "stopId": "49325"}, {"stopSequence": 69, "arrival": {"time": "1694891508"}, "stopId": "49326"}, {"stopSequence": 70, "arrival": {"time": "1694891539"}, "stopId": "39648"}, {"stopSequence": 71, "arrival": {"time": "1694891596"}, "stopId": "39649"}, {"stopSequence": 72, "arrival": {"time": "1694891658"}, "stopId": "49329"}, {"stopSequence": 73, "arrival": {"time": "1694891728"}, "stopId": "49330"}, {"stopSequence": 74, "arrival": {"time": "1694891776"}, "stopId": "39652"}, {"stopSequence": 75, "arrival": {"time": "1694891811"}, "stopId": "39653"}, {"stopSequence": 76, "arrival": {"time": "1694891854"}, "stopId": "39654"}, {"stopSequence": 77, "arrival": {"time": "1694891891"}, "stopId": "49334"}, {"stopSequence": 78, "arrival": {"time": "1694891970"}, "stopId": "49335"}, {"stopSequence": 79, "arrival": {"time": "1694892033"}, "stopId": "49336"}, {"stopSequence": 80, "arrival": {"time": "1694892100"}, "stopId": "39657"}, {"stopSequence": 81, "arrival": {"time": "1694892309"}, "stopId": "42523"}, {"stopSequence": 82, "arrival": {"time": "1694892355"}, "stopId": "42524"}, {"stopSequence": 83, "arrival": {"time": "1694892426"}, "stopId": "39686"}, {"stopSequence": 84, "arrival": {"time": "1694892444"}, "stopId": "39687"}, {"stopSequence": 85, "arrival": {"time": "1694892544"}, "stopId": "39689"}, {"stopSequence": 86, "arrival": {"time": "1694892580"}, "stopId": "39690"}, {"stopSequence": 87, "arrival": {"time": "1694892611"}, "stopId": "39691"}, {"stopSequence": 88, "arrival": {"time": "1694892657"}, "stopId": "39692"}, {"stopSequence": 89, "arrival": {"time": "1694892686"}, "stopId": "39693"}, {"stopSequence": 90, "arrival": {"time": "1694892830"}, "stopId": "36695"}, {"stopSequence": 91, "arrival": {"time": "1694892914"}, "stopId": "36696"}, {"stopSequence": 92, "arrival": {"time": "1694893026"}, "stopId": "39229"}, {"stopSequence": 93, "arrival": {"time": "1694893211"}, "stopId": "39139"}], "vehicle": {"licensePlate": "BHWD17"}, "timestamp": "1694888978"}, "vehicle": {"trip": {"tripId": "23482-701ff27f-2", "startTime": "15:12:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "611", "directionId": 0}, "position": {"latitude": -36.78057, "longitude": -73.04423, "bearing": 90.0, "odometer": 0.0, "speed": 7.2222223}, "timestamp": "1694888978", "vehicle": {"licensePlate": "BHWD17"}}}, {"id": "9559013c-d7ed-429f-b4d3-a1369e376825", "tripUpdate": {"trip": {"tripId": "23568-701ff27f-2", "startTime": "15:31:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "611", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 3, "arrival": {"time": "1694889053"}, "stopId": "8606050"}, {"stopSequence": 4, "arrival": {"time": "1694889094"}, "stopId": "39231"}, {"stopSequence": 5, "arrival": {"time": "1694889176"}, "stopId": "39232"}, {"stopSequence": 6, "arrival": {"time": "1694889222"}, "stopId": "39233"}, {"stopSequence": 7, "arrival": {"time": "1694889284"}, "stopId": "39234"}, {"stopSequence": 8, "arrival": {"time": "1694889312"}, "stopId": "39235"}, {"stopSequence": 9, "arrival": {"time": "1694889409"}, "stopId": "37044"}, {"stopSequence": 10, "arrival": {"time": "1694889446"}, "stopId": "37045"}, {"stopSequence": 11, "arrival": {"time": "1694889532"}, "stopId": "37046"}, {"stopSequence": 12, "arrival": {"time": "1694889571"}, "stopId": "37047"}, {"stopSequence": 13, "arrival": {"time": "1694889612"}, "stopId": "37048"}, {"stopSequence": 14, "arrival": {"time": "1694889649"}, "stopId": "42431"}, {"stopSequence": 15, "arrival": {"time": "1694889665"}, "stopId": "42432"}, {"stopSequence": 16, "arrival": {"time": "1694889723"}, "stopId": "37578"}, {"stopSequence": 17, "arrival": {"time": "1694889755"}, "stopId": "39660"}, {"stopSequence": 18, "arrival": {"time": "1694889790"}, "stopId": "39659"}, {"stopSequence": 19, "arrival": {"time": "1694889834"}, "stopId": "37581"}, {"stopSequence": 20, "arrival": {"time": "1694889854"}, "stopId": "37436"}, {"stopSequence": 21, "arrival": {"time": "1694889920"}, "stopId": "49135"}, {"stopSequence": 22, "arrival": {"time": "1694889960"}, "stopId": "49136"}, {"stopSequence": 23, "arrival": {"time": "1694890031"}, "stopId": "49137"}, {"stopSequence": 24, "arrival": {"time": "1694890053"}, "stopId": "49138"}, {"stopSequence": 25, "arrival": {"time": "1694890069"}, "stopId": "49139"}, {"stopSequence": 26, "arrival": {"time": "1694890108"}, "stopId": "49140"}, {"stopSequence": 27, "arrival": {"time": "1694890144"}, "stopId": "49141"}, {"stopSequence": 28, "arrival": {"time": "1694890182"}, "stopId": "49142"}, {"stopSequence": 29, "arrival": {"time": "1694890217"}, "stopId": "49143"}, {"stopSequence": 30, "arrival": {"time": "1694890242"}, "stopId": "38506"}, {"stopSequence": 31, "arrival": {"time": "1694890290"}, "stopId": "38635"}, {"stopSequence": 32, "arrival": {"time": "1694890331"}, "stopId": "38509"}, {"stopSequence": 33, "arrival": {"time": "1694890365"}, "stopId": "38642"}, {"stopSequence": 34, "arrival": {"time": "1694890408"}, "stopId": "39795"}, {"stopSequence": 35, "arrival": {"time": "1694890440"}, "stopId": "38502"}, {"stopSequence": 36, "arrival": {"time": "1694890662"}, "stopId": "35691"}, {"stopSequence": 37, "arrival": {"time": "1694890694"}, "stopId": "35692"}, {"stopSequence": 38, "arrival": {"time": "1694890755"}, "stopId": "35693"}, {"stopSequence": 39, "arrival": {"time": "1694890819"}, "stopId": "35694"}, {"stopSequence": 40, "arrival": {"time": "1694890821"}, "stopId": "49318"}, {"stopSequence": 41, "arrival": {"time": "1694890847"}, "stopId": "35695"}, {"stopSequence": 42, "arrival": {"time": "1694890958"}, "stopId": "35696"}, {"stopSequence": 43, "arrival": {"time": "1694891141"}, "stopId": "35697"}, {"stopSequence": 44, "arrival": {"time": "1694891247"}, "stopId": "2-Jan"}, {"stopSequence": 45, "arrival": {"time": "1694891283"}, "stopId": "42460"}, {"stopSequence": 46, "arrival": {"time": "1694891327"}, "stopId": "35690"}, {"stopSequence": 47, "arrival": {"time": "1694891438"}, "stopId": "35700"}, {"stopSequence": 48, "arrival": {"time": "1694891472"}, "stopId": "35701"}, {"stopSequence": 49, "arrival": {"time": "1694891548"}, "stopId": "35703"}, {"stopSequence": 50, "arrival": {"time": "1694891567"}, "stopId": "35704"}, {"stopSequence": 51, "arrival": {"time": "1694891593"}, "stopId": "35705"}, {"stopSequence": 52, "arrival": {"time": "1694891615"}, "stopId": "35706"}, {"stopSequence": 53, "arrival": {"time": "1694891682"}, "stopId": "35707"}, {"stopSequence": 54, "arrival": {"time": "1694891713"}, "stopId": "35708"}, {"stopSequence": 55, "arrival": {"time": "1694891795"}, "stopId": "38520"}, {"stopSequence": 56, "arrival": {"time": "1694891846"}, "stopId": "38521"}, {"stopSequence": 57, "arrival": {"time": "1694891909"}, "stopId": "38522"}, {"stopSequence": 58, "arrival": {"time": "1694891974"}, "stopId": "38523"}, {"stopSequence": 59, "arrival": {"time": "1694892043"}, "stopId": "38524"}, {"stopSequence": 60, "arrival": {"time": "1694892109"}, "stopId": "38525"}, {"stopSequence": 61, "arrival": {"time": "1694892180"}, "stopId": "38526"}, {"stopSequence": 62, "arrival": {"time": "1694892245"}, "stopId": "39987"}, {"stopSequence": 63, "arrival": {"time": "1694892305"}, "stopId": "39988"}, {"stopSequence": 64, "arrival": {"time": "1694892375"}, "stopId": "37636"}, {"stopSequence": 65, "arrival": {"time": "1694892540"}, "stopId": "37637"}, {"stopSequence": 66, "arrival": {"time": "1694892635"}, "stopId": "37639"}, {"stopSequence": 67, "arrival": {"time": "1694892693"}, "stopId": "39200"}, {"stopSequence": 68, "arrival": {"time": "1694892807"}, "stopId": "40191"}, {"stopSequence": 69, "arrival": {"time": "1694892866"}, "stopId": "40192"}, {"stopSequence": 70, "arrival": {"time": "1694892928"}, "stopId": "40193"}, {"stopSequence": 71, "arrival": {"time": "1694892985"}, "stopId": "40194"}, {"stopSequence": 72, "arrival": {"time": "1694893043"}, "stopId": "38024"}, {"stopSequence": 73, "arrival": {"time": "1694893113"}, "stopId": "38025"}, {"stopSequence": 74, "arrival": {"time": "1694893163"}, "stopId": "38026"}, {"stopSequence": 75, "arrival": {"time": "1694893216"}, "stopId": "38027"}, {"stopSequence": 76, "arrival": {"time": "1694893235"}, "stopId": "38028"}, {"stopSequence": 77, "arrival": {"time": "1694893261"}, "stopId": "38029"}, {"stopSequence": 78, "arrival": {"time": "1694893314"}, "stopId": "38030"}, {"stopSequence": 79, "arrival": {"time": "1694893529"}, "stopId": "39214"}, {"stopSequence": 80, "arrival": {"time": "1694893640"}, "stopId": "39215"}, {"stopSequence": 81, "arrival": {"time": "1694893881"}, "stopId": "16027103"}, {"stopSequence": 82, "arrival": {"time": "1694894206"}, "stopId": "4950739"}, {"stopSequence": 83, "arrival": {"time": "1694894452"}, "stopId": "95000"}, {"stopSequence": 84, "arrival": {"time": "1694894728"}, "stopId": "40978"}, {"stopSequence": 85, "arrival": {"time": "1694894902"}, "stopId": "16206052"}, {"stopSequence": 86, "arrival": {"time": "1694895042"}, "stopId": "39220"}, {"stopSequence": 87, "arrival": {"time": "1694895135"}, "stopId": "39221"}, {"stopSequence": 88, "arrival": {"time": "1694895172"}, "stopId": "16201786"}, {"stopSequence": 89, "arrival": {"time": "1694895267"}, "stopId": "16206050"}, {"stopSequence": 90, "arrival": {"time": "1694895595"}, "stopId": "39568"}, {"stopSequence": 91, "arrival": {"time": "1694895746"}, "stopId": "39567"}, {"stopSequence": 92, "arrival": {"time": "1694895840"}, "stopId": "39224"}, {"stopSequence": 93, "arrival": {"time": "1694895993"}, "stopId": "16201788"}, {"stopSequence": 94, "arrival": {"time": "1694896057"}, "stopId": "39225"}, {"stopSequence": 95, "arrival": {"time": "1694896560"}, "stopId": "37300"}], "vehicle": {"licensePlate": "DVYT25"}, "timestamp": "1694889033"}, "vehicle": {"trip": {"tripId": "23568-701ff27f-2", "startTime": "15:31:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "611", "directionId": 1}, "position": {"latitude": -36.791397, "longitude": -73.1128, "bearing": 323.0, "odometer": 0.0, "speed": 5.8333335}, "timestamp": "1694889033", "vehicle": {"licensePlate": "DVYT25"}}}, {"id": "9528b1cc-c410-429a-834e-8db9e3e9e6e5", "tripUpdate": {"trip": {"tripId": "23478-701ff27f-2", "startTime": "14:24:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "611", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 81, "arrival": {"time": "1694889191"}, "stopId": "42523"}, {"stopSequence": 82, "arrival": {"time": "1694889224"}, "stopId": "42524"}, {"stopSequence": 83, "arrival": {"time": "1694889274"}, "stopId": "39686"}, {"stopSequence": 84, "arrival": {"time": "1694889287"}, "stopId": "39687"}, {"stopSequence": 85, "arrival": {"time": "1694889354"}, "stopId": "39689"}, {"stopSequence": 86, "arrival": {"time": "1694889378"}, "stopId": "39690"}, {"stopSequence": 87, "arrival": {"time": "1694889398"}, "stopId": "39691"}, {"stopSequence": 88, "arrival": {"time": "1694889427"}, "stopId": "39692"}, {"stopSequence": 89, "arrival": {"time": "1694889446"}, "stopId": "39693"}, {"stopSequence": 90, "arrival": {"time": "1694889534"}, "stopId": "36695"}, {"stopSequence": 91, "arrival": {"time": "1694889584"}, "stopId": "36696"}, {"stopSequence": 92, "arrival": {"time": "1694889648"}, "stopId": "39229"}, {"stopSequence": 93, "arrival": {"time": "1694889750"}, "stopId": "39139"}], "vehicle": {"licensePlate": "FKWB38"}, "timestamp": "1694889037"}, "vehicle": {"trip": {"tripId": "23478-701ff27f-2", "startTime": "14:24:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "611", "directionId": 0}, "position": {"latitude": -36.786663, "longitude": -73.102264, "bearing": 267.0, "odometer": 0.0, "speed": 15.277778}, "timestamp": "1694889037", "vehicle": {"licensePlate": "FKWB38"}}}, {"id": "eefe97c3-18a3-4f4d-9d2b-850b9573a415", "tripUpdate": {"trip": {"tripId": "23565-701ff27f-2", "startTime": "14:46:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "611", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 51, "arrival": {"time": "1694889032"}, "stopId": "35705"}, {"stopSequence": 52, "arrival": {"time": "1694889053"}, "stopId": "35706"}, {"stopSequence": 53, "arrival": {"time": "1694889112"}, "stopId": "35707"}, {"stopSequence": 54, "arrival": {"time": "1694889138"}, "stopId": "35708"}, {"stopSequence": 55, "arrival": {"time": "1694889208"}, "stopId": "38520"}, {"stopSequence": 56, "arrival": {"time": "1694889250"}, "stopId": "38521"}, {"stopSequence": 57, "arrival": {"time": "1694889301"}, "stopId": "38522"}, {"stopSequence": 58, "arrival": {"time": "1694889352"}, "stopId": "38523"}, {"stopSequence": 59, "arrival": {"time": "1694889405"}, "stopId": "38524"}, {"stopSequence": 60, "arrival": {"time": "1694889454"}, "stopId": "38525"}, {"stopSequence": 61, "arrival": {"time": "1694889507"}, "stopId": "38526"}, {"stopSequence": 62, "arrival": {"time": "1694889553"}, "stopId": "39987"}, {"stopSequence": 63, "arrival": {"time": "1694889595"}, "stopId": "39988"}, {"stopSequence": 64, "arrival": {"time": "1694889643"}, "stopId": "37636"}, {"stopSequence": 65, "arrival": {"time": "1694889753"}, "stopId": "37637"}, {"stopSequence": 66, "arrival": {"time": "1694889813"}, "stopId": "37639"}, {"stopSequence": 67, "arrival": {"time": "1694889849"}, "stopId": "39200"}, {"stopSequence": 68, "arrival": {"time": "1694889918"}, "stopId": "40191"}, {"stopSequence": 69, "arrival": {"time": "1694889954"}, "stopId": "40192"}, {"stopSequence": 70, "arrival": {"time": "1694889990"}, "stopId": "40193"}, {"stopSequence": 71, "arrival": {"time": "1694890022"}, "stopId": "40194"}, {"stopSequence": 72, "arrival": {"time": "1694890055"}, "stopId": "38024"}, {"stopSequence": 73, "arrival": {"time": "1694890094"}, "stopId": "38025"}, {"stopSequence": 74, "arrival": {"time": "1694890121"}, "stopId": "38026"}, {"stopSequence": 75, "arrival": {"time": "1694890149"}, "stopId": "38027"}, {"stopSequence": 76, "arrival": {"time": "1694890160"}, "stopId": "38028"}, {"stopSequence": 77, "arrival": {"time": "1694890174"}, "stopId": "38029"}, {"stopSequence": 78, "arrival": {"time": "1694890201"}, "stopId": "38030"}, {"stopSequence": 79, "arrival": {"time": "1694890310"}, "stopId": "39214"}, {"stopSequence": 80, "arrival": {"time": "1694890365"}, "stopId": "39215"}, {"stopSequence": 81, "arrival": {"time": "1694890478"}, "stopId": "16027103"}, {"stopSequence": 82, "arrival": {"time": "1694890621"}, "stopId": "4950739"}, {"stopSequence": 83, "arrival": {"time": "1694890724"}, "stopId": "95000"}, {"stopSequence": 84, "arrival": {"time": "1694890832"}, "stopId": "40978"}, {"stopSequence": 85, "arrival": {"time": "1694890898"}, "stopId": "16206052"}, {"stopSequence": 86, "arrival": {"time": "1694890949"}, "stopId": "39220"}, {"stopSequence": 87, "arrival": {"time": "1694890983"}, "stopId": "39221"}, {"stopSequence": 88, "arrival": {"time": "1694890996"}, "stopId": "16201786"}, {"stopSequence": 89, "arrival": {"time": "1694891029"}, "stopId": "16206050"}, {"stopSequence": 90, "arrival": {"time": "1694891140"}, "stopId": "39568"}, {"stopSequence": 91, "arrival": {"time": "1694891190"}, "stopId": "39567"}, {"stopSequence": 92, "arrival": {"time": "1694891220"}, "stopId": "39224"}, {"stopSequence": 93, "arrival": {"time": "1694891267"}, "stopId": "16201788"}, {"stopSequence": 94, "arrival": {"time": "1694891287"}, "stopId": "39225"}, {"stopSequence": 95, "arrival": {"time": "1694891435"}, "stopId": "37300"}], "vehicle": {"licensePlate": "FYBV86"}, "timestamp": "1694889019"}, "vehicle": {"trip": {"tripId": "23565-701ff27f-2", "startTime": "14:46:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "611", "directionId": 1}, "position": {"latitude": -36.823612, "longitude": -73.049484, "bearing": 35.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889019", "vehicle": {"licensePlate": "FYBV86"}}}, {"id": "f748490d-bced-467e-a035-96facadeb767", "tripUpdate": {"trip": {"tripId": "23479-701ff27f-2", "startTime": "14:36:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "611", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 58, "arrival": {"time": "1694889074"}, "stopId": "49311"}, {"stopSequence": 59, "arrival": {"time": "1694889133"}, "stopId": "39634"}, {"stopSequence": 60, "arrival": {"time": "1694889160"}, "stopId": "39635"}, {"stopSequence": 61, "arrival": {"time": "1694889209"}, "stopId": "39636"}, {"stopSequence": 62, "arrival": {"time": "1694889394"}, "stopId": "39637"}, {"stopSequence": 63, "arrival": {"time": "1694889444"}, "stopId": "49317"}, {"stopSequence": 64, "arrival": {"time": "1694889476"}, "stopId": "49318"}, {"stopSequence": 65, "arrival": {"time": "1694889542"}, "stopId": "49319"}, {"stopSequence": 66, "arrival": {"time": "1694889605"}, "stopId": "39641"}, {"stopSequence": 67, "arrival": {"time": "1694889784"}, "stopId": "39643"}, {"stopSequence": 68, "arrival": {"time": "1694889913"}, "stopId": "49325"}, {"stopSequence": 69, "arrival": {"time": "1694889974"}, "stopId": "49326"}, {"stopSequence": 70, "arrival": {"time": "1694889999"}, "stopId": "39648"}, {"stopSequence": 71, "arrival": {"time": "1694890046"}, "stopId": "39649"}, {"stopSequence": 72, "arrival": {"time": "1694890095"}, "stopId": "49329"}, {"stopSequence": 73, "arrival": {"time": "1694890149"}, "stopId": "49330"}, {"stopSequence": 74, "arrival": {"time": "1694890187"}, "stopId": "39652"}, {"stopSequence": 75, "arrival": {"time": "1694890214"}, "stopId": "39653"}, {"stopSequence": 76, "arrival": {"time": "1694890246"}, "stopId": "39654"}, {"stopSequence": 77, "arrival": {"time": "1694890274"}, "stopId": "49334"}, {"stopSequence": 78, "arrival": {"time": "1694890334"}, "stopId": "49335"}, {"stopSequence": 79, "arrival": {"time": "1694890379"}, "stopId": "49336"}, {"stopSequence": 80, "arrival": {"time": "1694890428"}, "stopId": "39657"}, {"stopSequence": 81, "arrival": {"time": "1694890575"}, "stopId": "42523"}, {"stopSequence": 82, "arrival": {"time": "1694890607"}, "stopId": "42524"}, {"stopSequence": 83, "arrival": {"time": "1694890655"}, "stopId": "39686"}, {"stopSequence": 84, "arrival": {"time": "1694890668"}, "stopId": "39687"}, {"stopSequence": 85, "arrival": {"time": "1694890734"}, "stopId": "39689"}, {"stopSequence": 86, "arrival": {"time": "1694890758"}, "stopId": "39690"}, {"stopSequence": 87, "arrival": {"time": "1694890778"}, "stopId": "39691"}, {"stopSequence": 88, "arrival": {"time": "1694890808"}, "stopId": "39692"}, {"stopSequence": 89, "arrival": {"time": "1694890827"}, "stopId": "39693"}, {"stopSequence": 90, "arrival": {"time": "1694890918"}, "stopId": "36695"}, {"stopSequence": 91, "arrival": {"time": "1694890971"}, "stopId": "36696"}, {"stopSequence": 92, "arrival": {"time": "1694891039"}, "stopId": "39229"}, {"stopSequence": 93, "arrival": {"time": "1694891150"}, "stopId": "39139"}], "vehicle": {"licensePlate": "SHZL49"}, "timestamp": "1694889036"}, "vehicle": {"trip": {"tripId": "23479-701ff27f-2", "startTime": "14:36:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "611", "directionId": 0}, "position": {"latitude": -36.828487, "longitude": -73.05825, "bearing": 243.0, "odometer": 0.0, "speed": 9.444445}, "timestamp": "1694889036", "vehicle": {"licensePlate": "SHZL49"}}}, {"id": "d212bba4-70d6-471f-9824-105dfcd33249", "tripUpdate": {"trip": {"tripId": "23633-701ff27f-2", "startTime": "15:21:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "612", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 1, "arrival": {"time": "1694889008"}, "stopId": "49299"}, {"stopSequence": 2, "arrival": {"time": "1694889054"}, "stopId": "49300"}, {"stopSequence": 3, "arrival": {"time": "1694889142"}, "stopId": "49301"}, {"stopSequence": 4, "arrival": {"time": "1694889213"}, "stopId": "49302"}, {"stopSequence": 5, "arrival": {"time": "1694889260"}, "stopId": "49303"}, {"stopSequence": 6, "arrival": {"time": "1694889313"}, "stopId": "49304"}, {"stopSequence": 7, "arrival": {"time": "1694889341"}, "stopId": "49305"}, {"stopSequence": 8, "arrival": {"time": "1694889399"}, "stopId": "49306"}, {"stopSequence": 9, "arrival": {"time": "1694889439"}, "stopId": "49307"}, {"stopSequence": 10, "arrival": {"time": "1694889463"}, "stopId": "49308"}, {"stopSequence": 11, "arrival": {"time": "1694889487"}, "stopId": "49309"}, {"stopSequence": 12, "arrival": {"time": "1694889553"}, "stopId": "49310"}, {"stopSequence": 13, "arrival": {"time": "1694889586"}, "stopId": "49311"}, {"stopSequence": 14, "arrival": {"time": "1694889686"}, "stopId": "35700"}, {"stopSequence": 15, "arrival": {"time": "1694889714"}, "stopId": "35701"}, {"stopSequence": 16, "arrival": {"time": "1694889778"}, "stopId": "35703"}, {"stopSequence": 17, "arrival": {"time": "1694889793"}, "stopId": "35704"}, {"stopSequence": 18, "arrival": {"time": "1694889815"}, "stopId": "35705"}, {"stopSequence": 19, "arrival": {"time": "1694889833"}, "stopId": "35706"}, {"stopSequence": 20, "arrival": {"time": "1694889910"}, "stopId": "49535"}, {"stopSequence": 22, "arrival": {"time": "1694889960"}, "stopId": "49536"}, {"stopSequence": 23, "arrival": {"time": "1694890006"}, "stopId": "49537"}, {"stopSequence": 24, "arrival": {"time": "1694890059"}, "stopId": "39492"}, {"stopSequence": 25, "arrival": {"time": "1694890107"}, "stopId": "39493"}, {"stopSequence": 26, "arrival": {"time": "1694890211"}, "stopId": "38525"}, {"stopSequence": 27, "arrival": {"time": "1694890261"}, "stopId": "38526"}, {"stopSequence": 28, "arrival": {"time": "1694890307"}, "stopId": "39987"}, {"stopSequence": 29, "arrival": {"time": "1694890349"}, "stopId": "39988"}, {"stopSequence": 30, "arrival": {"time": "1694890397"}, "stopId": "39516"}, {"stopSequence": 31, "arrival": {"time": "1694890441"}, "stopId": "39517"}, {"stopSequence": 32, "arrival": {"time": "1694890483"}, "stopId": "39518"}, {"stopSequence": 33, "arrival": {"time": "1694890553"}, "stopId": "39519"}, {"stopSequence": 34, "arrival": {"time": "1694890568"}, "stopId": "39520"}, {"stopSequence": 35, "arrival": {"time": "1694890590"}, "stopId": "39521"}, {"stopSequence": 36, "arrival": {"time": "1694890620"}, "stopId": "39708"}, {"stopSequence": 37, "arrival": {"time": "1694890629"}, "stopId": "39522"}, {"stopSequence": 38, "arrival": {"time": "1694890657"}, "stopId": "39523"}, {"stopSequence": 39, "arrival": {"time": "1694890679"}, "stopId": "39524"}, {"stopSequence": 40, "arrival": {"time": "1694890709"}, "stopId": "39705"}, {"stopSequence": 41, "arrival": {"time": "1694890736"}, "stopId": "39763"}, {"stopSequence": 42, "arrival": {"time": "1694890781"}, "stopId": "39764"}, {"stopSequence": 43, "arrival": {"time": "1694890818"}, "stopId": "39765"}, {"stopSequence": 44, "arrival": {"time": "1694890842"}, "stopId": "39529"}, {"stopSequence": 45, "arrival": {"time": "1694890907"}, "stopId": "39530"}, {"stopSequence": 46, "arrival": {"time": "1694890966"}, "stopId": "39531"}, {"stopSequence": 47, "arrival": {"time": "1694891016"}, "stopId": "39532"}, {"stopSequence": 48, "arrival": {"time": "1694891039"}, "stopId": "39533"}, {"stopSequence": 49, "arrival": {"time": "1694891130"}, "stopId": "39535"}, {"stopSequence": 50, "arrival": {"time": "1694891218"}, "stopId": "39536"}, {"stopSequence": 51, "arrival": {"time": "1694891256"}, "stopId": "16206048"}, {"stopSequence": 52, "arrival": {"time": "1694891279"}, "stopId": "39537"}, {"stopSequence": 53, "arrival": {"time": "1694891298"}, "stopId": "40192"}, {"stopSequence": 54, "arrival": {"time": "1694891330"}, "stopId": "39429"}, {"stopSequence": 55, "arrival": {"time": "1694891370"}, "stopId": "39430"}, {"stopSequence": 56, "arrival": {"time": "1694891394"}, "stopId": "37300"}], "vehicle": {"licensePlate": "CHHC77"}, "timestamp": "1694889004"}, "vehicle": {"trip": {"tripId": "23633-701ff27f-2", "startTime": "15:21:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "612", "directionId": 1}, "position": {"latitude": -36.853058, "longitude": -73.05033, "bearing": 348.0, "odometer": 0.0, "speed": 3.8888888}, "timestamp": "1694889004", "vehicle": {"licensePlate": "CHHC77"}}}, {"id": "0132290a-ca05-459d-923a-be5b363f1f4a", "tripUpdate": {"trip": {"tripId": "23700-701ff27f-2", "startTime": "15:15:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "612", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 35, "arrival": {"time": "1694889037"}, "stopId": "91027"}, {"stopSequence": 36, "arrival": {"time": "1694889092"}, "stopId": "91028"}, {"stopSequence": 37, "arrival": {"time": "1694889151"}, "stopId": "39723"}, {"stopSequence": 38, "arrival": {"time": "1694889205"}, "stopId": "39724"}, {"stopSequence": 39, "arrival": {"time": "1694889280"}, "stopId": "39725"}, {"stopSequence": 40, "arrival": {"time": "1694889409"}, "stopId": "39624"}, {"stopSequence": 41, "arrival": {"time": "1694889502"}, "stopId": "39627"}, {"stopSequence": 42, "arrival": {"time": "1694889602"}, "stopId": "39631"}, {"stopSequence": 43, "arrival": {"time": "1694889654"}, "stopId": "16057337"}, {"stopSequence": 44, "arrival": {"time": "1694889683"}, "stopId": "39726"}, {"stopSequence": 45, "arrival": {"time": "1694889695"}, "stopId": "2-Mar"}, {"stopSequence": 46, "arrival": {"time": "1694889784"}, "stopId": "2-Apr"}, {"stopSequence": 47, "arrival": {"time": "1694889840"}, "stopId": "39728"}, {"stopSequence": 48, "arrival": {"time": "1694889935"}, "stopId": "39729"}, {"stopSequence": 49, "arrival": {"time": "1694889959"}, "stopId": "39730"}, {"stopSequence": 50, "arrival": {"time": "1694890059"}, "stopId": "42200"}, {"stopSequence": 51, "arrival": {"time": "1694890104"}, "stopId": "42203"}, {"stopSequence": 52, "arrival": {"time": "1694890156"}, "stopId": "42204"}, {"stopSequence": 53, "arrival": {"time": "1694890196"}, "stopId": "42205"}], "vehicle": {"licensePlate": "YG5853"}, "timestamp": "1694889032"}, "vehicle": {"trip": {"tripId": "23700-701ff27f-2", "startTime": "15:15:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "612", "directionId": 0}, "position": {"latitude": -36.816486, "longitude": -73.05623, "bearing": 154.0, "odometer": 0.0, "speed": 0.5555556}, "timestamp": "1694889032", "vehicle": {"licensePlate": "YG5853"}}}, {"id": "321823d0-1048-40ae-9a31-11df019382ae", "tripUpdate": {"trip": {"tripId": "23776-701ff27f-2", "startTime": "15:16:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "613", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 9, "arrival": {"time": "1694889018"}, "stopId": "42246"}, {"stopSequence": 10, "arrival": {"time": "1694889067"}, "stopId": "38779"}, {"stopSequence": 11, "arrival": {"time": "1694889124"}, "stopId": "42247"}, {"stopSequence": 12, "arrival": {"time": "1694889172"}, "stopId": "42248"}, {"stopSequence": 13, "arrival": {"time": "1694889204"}, "stopId": "38782"}, {"stopSequence": 14, "arrival": {"time": "1694889319"}, "stopId": "42249"}, {"stopSequence": 15, "arrival": {"time": "1694889487"}, "stopId": "42250"}, {"stopSequence": 16, "arrival": {"time": "1694889564"}, "stopId": "38630"}, {"stopSequence": 17, "arrival": {"time": "1694889627"}, "stopId": "42252"}, {"stopSequence": 18, "arrival": {"time": "1694889657"}, "stopId": "42253"}, {"stopSequence": 19, "arrival": {"time": "1694889699"}, "stopId": "42254"}, {"stopSequence": 20, "arrival": {"time": "1694889735"}, "stopId": "42255"}, {"stopSequence": 21, "arrival": {"time": "1694889765"}, "stopId": "42256"}, {"stopSequence": 22, "arrival": {"time": "1694889784"}, "stopId": "42257"}, {"stopSequence": 23, "arrival": {"time": "1694889805"}, "stopId": "42258"}, {"stopSequence": 24, "arrival": {"time": "1694889832"}, "stopId": "42259"}, {"stopSequence": 25, "arrival": {"time": "1694889880"}, "stopId": "42260"}, {"stopSequence": 26, "arrival": {"time": "1694889919"}, "stopId": "42261"}, {"stopSequence": 27, "arrival": {"time": "1694889992"}, "stopId": "38659"}, {"stopSequence": 28, "arrival": {"time": "1694890144"}, "stopId": "38649"}, {"stopSequence": 29, "arrival": {"time": "1694890276"}, "stopId": "38735"}, {"stopSequence": 30, "arrival": {"time": "1694890329"}, "stopId": "42270"}, {"stopSequence": 31, "arrival": {"time": "1694890374"}, "stopId": "42271"}, {"stopSequence": 32, "arrival": {"time": "1694890566"}, "stopId": "38688"}, {"stopSequence": 33, "arrival": {"time": "1694890622"}, "stopId": "38673"}, {"stopSequence": 34, "arrival": {"time": "1694890699"}, "stopId": "39785"}, {"stopSequence": 35, "arrival": {"time": "1694890739"}, "stopId": "38664"}, {"stopSequence": 36, "arrival": {"time": "1694890794"}, "stopId": "38702"}, {"stopSequence": 37, "arrival": {"time": "1694890839"}, "stopId": "39787"}, {"stopSequence": 38, "arrival": {"time": "1694890883"}, "stopId": "38501"}, {"stopSequence": 39, "arrival": {"time": "1694890952"}, "stopId": "38692"}, {"stopSequence": 40, "arrival": {"time": "1694891019"}, "stopId": "38714"}, {"stopSequence": 41, "arrival": {"time": "1694891077"}, "stopId": "39791"}, {"stopSequence": 42, "arrival": {"time": "1694891105"}, "stopId": "38506"}, {"stopSequence": 43, "arrival": {"time": "1694891161"}, "stopId": "38635"}, {"stopSequence": 44, "arrival": {"time": "1694891198"}, "stopId": "38509"}, {"stopSequence": 45, "arrival": {"time": "1694891246"}, "stopId": "38642"}, {"stopSequence": 46, "arrival": {"time": "1694891294"}, "stopId": "39795"}, {"stopSequence": 47, "arrival": {"time": "1694891333"}, "stopId": "38502"}, {"stopSequence": 48, "arrival": {"time": "1694891401"}, "stopId": "38503"}, {"stopSequence": 49, "arrival": {"time": "1694891585"}, "stopId": "35691"}, {"stopSequence": 50, "arrival": {"time": "1694891635"}, "stopId": "35692"}, {"stopSequence": 51, "arrival": {"time": "1694891706"}, "stopId": "35693"}, {"stopSequence": 52, "arrival": {"time": "1694891773"}, "stopId": "35694"}, {"stopSequence": 53, "arrival": {"time": "1694891825"}, "stopId": "35695"}, {"stopSequence": 54, "arrival": {"time": "1694891890"}, "stopId": "35696"}, {"stopSequence": 55, "arrival": {"time": "1694892113"}, "stopId": "35697"}, {"stopSequence": 56, "arrival": {"time": "1694892279"}, "stopId": "39778"}, {"stopSequence": 57, "arrival": {"time": "1694892433"}, "stopId": "35797"}, {"stopSequence": 58, "arrival": {"time": "1694892503"}, "stopId": "35798"}, {"stopSequence": 59, "arrival": {"time": "1694892552"}, "stopId": "35799"}, {"stopSequence": 60, "arrival": {"time": "1694892660"}, "stopId": "35800"}, {"stopSequence": 61, "arrival": {"time": "1694892739"}, "stopId": "35801"}, {"stopSequence": 62, "arrival": {"time": "1694892780"}, "stopId": "35802"}, {"stopSequence": 63, "arrival": {"time": "1694892862"}, "stopId": "35803"}, {"stopSequence": 64, "arrival": {"time": "1694892952"}, "stopId": "38507"}, {"stopSequence": 65, "arrival": {"time": "1694893039"}, "stopId": "34473"}, {"stopSequence": 66, "arrival": {"time": "1694893117"}, "stopId": "38500"}, {"stopSequence": 67, "arrival": {"time": "1694893199"}, "stopId": "35808"}, {"stopSequence": 68, "arrival": {"time": "1694893307"}, "stopId": "35710"}, {"stopSequence": 69, "arrival": {"time": "1694893392"}, "stopId": "50036"}, {"stopSequence": 70, "arrival": {"time": "1694893860"}, "stopId": "50037"}, {"stopSequence": 71, "arrival": {"time": "1694894185"}, "stopId": "50038"}, {"stopSequence": 72, "arrival": {"time": "1694894370"}, "stopId": "50039"}, {"stopSequence": 73, "arrival": {"time": "1694894502"}, "stopId": "50040"}, {"stopSequence": 74, "arrival": {"time": "1694894751"}, "stopId": "50041"}, {"stopSequence": 75, "arrival": {"time": "1694895160"}, "stopId": "Jun-15"}, {"stopSequence": 76, "arrival": {"time": "1694895425"}, "stopId": "Jun-13"}, {"stopSequence": 77, "arrival": {"time": "1694896116"}, "stopId": "6-Oct"}, {"stopSequence": 78, "arrival": {"time": "1694896346"}, "stopId": "6-Aug"}, {"stopSequence": 79, "arrival": {"time": "1694896995"}, "stopId": "6-Jun"}, {"stopSequence": 80, "arrival": {"time": "1694897583"}, "stopId": "6-Feb"}, {"stopSequence": 81, "arrival": {"time": "1694898321"}, "stopId": "7-Jul"}, {"stopSequence": 82, "arrival": {"time": "1694898713"}, "stopId": "7-May"}, {"stopSequence": 83, "arrival": {"time": "1694898938"}, "stopId": "1508142"}, {"stopSequence": 84, "arrival": {"time": "1694900100"}, "stopId": "8-Jan"}, {"stopSequence": 85, "arrival": {"time": "1694900349"}, "stopId": "9-Jan"}, {"stopSequence": 86, "arrival": {"time": "1694900685"}, "stopId": "10-Apr"}, {"stopSequence": 87, "arrival": {"time": "1694901198"}, "stopId": "10-Jan"}, {"stopSequence": 88, "arrival": {"time": "1694901532"}, "stopId": "44863"}, {"stopSequence": 89, "arrival": {"time": "1694901908"}, "stopId": "10-Mar"}, {"stopSequence": 90, "arrival": {"time": "1694902476"}, "stopId": "11-Jan"}, {"stopSequence": 91, "arrival": {"time": "1694903031"}, "stopId": "39943"}, {"stopSequence": 92, "arrival": {"time": "1694903401"}, "stopId": "39944"}, {"stopSequence": 93, "arrival": {"time": "1694905234"}, "stopId": "39947"}, {"stopSequence": 94, "arrival": {"time": "1694905758"}, "stopId": "39949"}, {"stopSequence": 95, "arrival": {"time": "1694905884"}, "stopId": "39950"}, {"stopSequence": 96, "arrival": {"time": "1694906764"}, "stopId": "39952"}, {"stopSequence": 97, "arrival": {"time": "1694908441"}, "stopId": "34529"}, {"stopSequence": 98, "arrival": {"time": "1694909763"}, "stopId": "39954"}, {"stopSequence": 99, "arrival": {"time": "1694911440"}, "stopId": "39956"}, {"stopSequence": 100, "arrival": {"time": "1694915436"}, "stopId": "44967"}, {"stopSequence": 101, "arrival": {"time": "1694917491"}, "stopId": "44968"}, {"stopSequence": 102, "arrival": {"time": "1694920097"}, "stopId": "14-May"}, {"stopSequence": 103, "arrival": {"time": "1694921841"}, "stopId": "14-Jun"}, {"stopSequence": 104, "arrival": {"time": "1694925536"}, "stopId": "14-Aug"}], "vehicle": {"licensePlate": "BKKX62"}, "timestamp": "1694889004"}, "vehicle": {"trip": {"tripId": "23776-701ff27f-2", "startTime": "15:16:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "613", "directionId": 0}, "position": {"latitude": -36.72603, "longitude": -73.117035, "bearing": 142.0, "odometer": 0.0, "speed": 10.555555}, "timestamp": "1694889004", "vehicle": {"licensePlate": "BKKX62"}}}, {"id": "1335e721-104c-4128-be07-bf161e702f0e", "tripUpdate": {"trip": {"tripId": "23842-701ff27f-2", "startTime": "15:21:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "613", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 3, "arrival": {"time": "1694889013"}, "stopId": "40161"}, {"stopSequence": 4, "arrival": {"time": "1694889052"}, "stopId": "39951"}, {"stopSequence": 5, "arrival": {"time": "1694889088"}, "stopId": "39949"}, {"stopSequence": 6, "arrival": {"time": "1694889096"}, "stopId": "39948"}, {"stopSequence": 7, "arrival": {"time": "1694889122"}, "stopId": "39947"}, {"stopSequence": 8, "arrival": {"time": "1694889135"}, "stopId": "40167"}, {"stopSequence": 9, "arrival": {"time": "1694889218"}, "stopId": "39945"}, {"stopSequence": 10, "arrival": {"time": "1694889265"}, "stopId": "39944"}, {"stopSequence": 11, "arrival": {"time": "1694889292"}, "stopId": "39943"}, {"stopSequence": 12, "arrival": {"time": "1694889359"}, "stopId": "13-Feb"}, {"stopSequence": 13, "arrival": {"time": "1694889385"}, "stopId": "28-Jan"}, {"stopSequence": 14, "arrival": {"time": "1694889432"}, "stopId": "12-3"}, {"stopSequence": 15, "arrival": {"time": "1694889508"}, "stopId": "12-Jan"}, {"stopSequence": 16, "arrival": {"time": "1694889552"}, "stopId": "12-Feb"}, {"stopSequence": 17, "arrival": {"time": "1694889604"}, "stopId": "7-Jan"}, {"stopSequence": 18, "arrival": {"time": "1694889658"}, "stopId": "7-Mar"}, {"stopSequence": 19, "arrival": {"time": "1694889798"}, "stopId": "7-Jun"}, {"stopSequence": 20, "arrival": {"time": "1694889856"}, "stopId": "7-Aug"}, {"stopSequence": 21, "arrival": {"time": "1694889930"}, "stopId": "6-Jan"}, {"stopSequence": 22, "arrival": {"time": "1694889997"}, "stopId": "6-Mar"}, {"stopSequence": 23, "arrival": {"time": "1694890095"}, "stopId": "6-May"}, {"stopSequence": 24, "arrival": {"time": "1694890310"}, "stopId": "6-Sep"}, {"stopSequence": 25, "arrival": {"time": "1694890400"}, "stopId": "6-Nov"}, {"stopSequence": 26, "arrival": {"time": "1694890592"}, "stopId": "Jun-14"}, {"stopSequence": 27, "arrival": {"time": "1694890743"}, "stopId": "Jun-17"}, {"stopSequence": 28, "arrival": {"time": "1694890825"}, "stopId": "Jun-19"}, {"stopSequence": 29, "arrival": {"time": "1694890887"}, "stopId": "Jun-20"}, {"stopSequence": 30, "arrival": {"time": "1694890952"}, "stopId": "Jun-22"}, {"stopSequence": 31, "arrival": {"time": "1694891014"}, "stopId": "Jun-24"}, {"stopSequence": 32, "arrival": {"time": "1694891115"}, "stopId": "Jun-25"}, {"stopSequence": 33, "arrival": {"time": "1694891436"}, "stopId": "90003"}, {"stopSequence": 34, "arrival": {"time": "1694891490"}, "stopId": "90007"}, {"stopSequence": 35, "arrival": {"time": "1694891538"}, "stopId": "40830"}, {"stopSequence": 36, "arrival": {"time": "1694891585"}, "stopId": "40831"}, {"stopSequence": 37, "arrival": {"time": "1694891682"}, "stopId": "39599"}, {"stopSequence": 38, "arrival": {"time": "1694891710"}, "stopId": "39600"}, {"stopSequence": 39, "arrival": {"time": "1694891793"}, "stopId": "37496"}, {"stopSequence": 40, "arrival": {"time": "1694891855"}, "stopId": "45064"}, {"stopSequence": 41, "arrival": {"time": "1694891951"}, "stopId": "37506"}, {"stopSequence": 42, "arrival": {"time": "1694892050"}, "stopId": "45069"}, {"stopSequence": 43, "arrival": {"time": "1694892203"}, "stopId": "37523"}, {"stopSequence": 44, "arrival": {"time": "1694892260"}, "stopId": "37477"}, {"stopSequence": 45, "arrival": {"time": "1694892385"}, "stopId": "49310"}, {"stopSequence": 46, "arrival": {"time": "1694892431"}, "stopId": "49311"}, {"stopSequence": 47, "arrival": {"time": "1694892515"}, "stopId": "39634"}, {"stopSequence": 48, "arrival": {"time": "1694892553"}, "stopId": "39635"}, {"stopSequence": 49, "arrival": {"time": "1694892625"}, "stopId": "39636"}, {"stopSequence": 50, "arrival": {"time": "1694892709"}, "stopId": "49503"}, {"stopSequence": 51, "arrival": {"time": "1694892917"}, "stopId": "39637"}, {"stopSequence": 52, "arrival": {"time": "1694893001"}, "stopId": "49317"}, {"stopSequence": 53, "arrival": {"time": "1694893056"}, "stopId": "49318"}, {"stopSequence": 54, "arrival": {"time": "1694893173"}, "stopId": "49319"}, {"stopSequence": 55, "arrival": {"time": "1694893290"}, "stopId": "39641"}, {"stopSequence": 56, "arrival": {"time": "1694893355"}, "stopId": "39642"}, {"stopSequence": 57, "arrival": {"time": "1694893930"}, "stopId": "49325"}, {"stopSequence": 58, "arrival": {"time": "1694894071"}, "stopId": "49326"}, {"stopSequence": 59, "arrival": {"time": "1694894131"}, "stopId": "39648"}, {"stopSequence": 60, "arrival": {"time": "1694894244"}, "stopId": "39649"}, {"stopSequence": 61, "arrival": {"time": "1694894321"}, "stopId": "45112"}, {"stopSequence": 62, "arrival": {"time": "1694894449"}, "stopId": "45113"}, {"stopSequence": 63, "arrival": {"time": "1694894655"}, "stopId": "37490"}, {"stopSequence": 64, "arrival": {"time": "1694894813"}, "stopId": "45115"}, {"stopSequence": 65, "arrival": {"time": "1694894874"}, "stopId": "45116"}, {"stopSequence": 66, "arrival": {"time": "1694895076"}, "stopId": "45118"}, {"stopSequence": 67, "arrival": {"time": "1694895302"}, "stopId": "45119"}, {"stopSequence": 68, "arrival": {"time": "1694895442"}, "stopId": "45120"}, {"stopSequence": 69, "arrival": {"time": "1694895622"}, "stopId": "45121"}, {"stopSequence": 70, "arrival": {"time": "1694895763"}, "stopId": "38535"}, {"stopSequence": 71, "arrival": {"time": "1694896007"}, "stopId": "38536"}, {"stopSequence": 72, "arrival": {"time": "1694896168"}, "stopId": "4838437"}, {"stopSequence": 73, "arrival": {"time": "1694896378"}, "stopId": "45085"}, {"stopSequence": 74, "arrival": {"time": "1694896701"}, "stopId": "45086"}, {"stopSequence": 75, "arrival": {"time": "1694897208"}, "stopId": "38540"}, {"stopSequence": 76, "arrival": {"time": "1694897588"}, "stopId": "38544"}, {"stopSequence": 77, "arrival": {"time": "1694897912"}, "stopId": "38545"}, {"stopSequence": 78, "arrival": {"time": "1694898828"}, "stopId": "45095"}, {"stopSequence": 79, "arrival": {"time": "1694899095"}, "stopId": "45096"}, {"stopSequence": 80, "arrival": {"time": "1694899573"}, "stopId": "45098"}, {"stopSequence": 81, "arrival": {"time": "1694899798"}, "stopId": "45099"}, {"stopSequence": 82, "arrival": {"time": "1694899951"}, "stopId": "45100"}, {"stopSequence": 83, "arrival": {"time": "1694900156"}, "stopId": "45101"}, {"stopSequence": 84, "arrival": {"time": "1694900449"}, "stopId": "45102"}, {"stopSequence": 85, "arrival": {"time": "1694900666"}, "stopId": "45103"}, {"stopSequence": 86, "arrival": {"time": "1694900875"}, "stopId": "45104"}, {"stopSequence": 87, "arrival": {"time": "1694901104"}, "stopId": "45122"}, {"stopSequence": 88, "arrival": {"time": "1694901604"}, "stopId": "38630"}, {"stopSequence": 89, "arrival": {"time": "1694902630"}, "stopId": "42365"}, {"stopSequence": 90, "arrival": {"time": "1694904124"}, "stopId": "49349"}, {"stopSequence": 91, "arrival": {"time": "1694906036"}, "stopId": "49350"}, {"stopSequence": 92, "arrival": {"time": "1694906870"}, "stopId": "49351"}, {"stopSequence": 93, "arrival": {"time": "1694907382"}, "stopId": "49352"}, {"stopSequence": 94, "arrival": {"time": "1694908317"}, "stopId": "49353"}, {"stopSequence": 95, "arrival": {"time": "1694911449"}, "stopId": "38567"}, {"stopSequence": 96, "arrival": {"time": "1694912842"}, "stopId": "38568"}, {"stopSequence": 97, "arrival": {"time": "1694913777"}, "stopId": "38569"}, {"stopSequence": 98, "arrival": {"time": "1694915293"}, "stopId": "38570"}, {"stopSequence": 99, "arrival": {"time": "1694917605"}, "stopId": "38571"}, {"stopSequence": 100, "arrival": {"time": "1694920164"}, "stopId": "38572"}, {"stopSequence": 101, "arrival": {"time": "1694930153"}, "stopId": "40115"}, {"stopSequence": 102, "arrival": {"time": "1694935505"}, "stopId": "40116"}], "vehicle": {"licensePlate": "DGDR23"}, "timestamp": "1694889012"}, "vehicle": {"trip": {"tripId": "23842-701ff27f-2", "startTime": "15:21:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "613", "directionId": 1}, "position": {"latitude": -36.722572, "longitude": -72.987656, "bearing": 70.0, "odometer": 0.0, "speed": 4.7222223}, "timestamp": "1694889012", "vehicle": {"licensePlate": "DGDR23"}}}, {"id": "1e7ee143-45e6-424d-9c38-060054e4b95c", "tripUpdate": {"trip": {"tripId": "23775-701ff27f-2", "startTime": "15:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "613", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 27, "arrival": {"time": "1694889031"}, "stopId": "38659"}, {"stopSequence": 28, "arrival": {"time": "1694889197"}, "stopId": "38649"}, {"stopSequence": 29, "arrival": {"time": "1694889336"}, "stopId": "38735"}, {"stopSequence": 30, "arrival": {"time": "1694889391"}, "stopId": "42270"}, {"stopSequence": 31, "arrival": {"time": "1694889437"}, "stopId": "42271"}, {"stopSequence": 32, "arrival": {"time": "1694889630"}, "stopId": "38688"}, {"stopSequence": 33, "arrival": {"time": "1694889685"}, "stopId": "38673"}, {"stopSequence": 34, "arrival": {"time": "1694889760"}, "stopId": "39785"}, {"stopSequence": 35, "arrival": {"time": "1694889798"}, "stopId": "38664"}, {"stopSequence": 36, "arrival": {"time": "1694889850"}, "stopId": "38702"}, {"stopSequence": 37, "arrival": {"time": "1694889893"}, "stopId": "39787"}, {"stopSequence": 38, "arrival": {"time": "1694889933"}, "stopId": "38501"}, {"stopSequence": 39, "arrival": {"time": "1694889998"}, "stopId": "38692"}, {"stopSequence": 40, "arrival": {"time": "1694890059"}, "stopId": "38714"}, {"stopSequence": 41, "arrival": {"time": "1694890111"}, "stopId": "39791"}, {"stopSequence": 42, "arrival": {"time": "1694890136"}, "stopId": "38506"}, {"stopSequence": 43, "arrival": {"time": "1694890187"}, "stopId": "38635"}, {"stopSequence": 44, "arrival": {"time": "1694890219"}, "stopId": "38509"}, {"stopSequence": 45, "arrival": {"time": "1694890262"}, "stopId": "38642"}, {"stopSequence": 46, "arrival": {"time": "1694890304"}, "stopId": "39795"}, {"stopSequence": 47, "arrival": {"time": "1694890337"}, "stopId": "38502"}, {"stopSequence": 48, "arrival": {"time": "1694890395"}, "stopId": "38503"}, {"stopSequence": 49, "arrival": {"time": "1694890551"}, "stopId": "35691"}, {"stopSequence": 50, "arrival": {"time": "1694890592"}, "stopId": "35692"}, {"stopSequence": 51, "arrival": {"time": "1694890651"}, "stopId": "35693"}, {"stopSequence": 52, "arrival": {"time": "1694890706"}, "stopId": "35694"}, {"stopSequence": 53, "arrival": {"time": "1694890747"}, "stopId": "35695"}, {"stopSequence": 54, "arrival": {"time": "1694890800"}, "stopId": "35696"}, {"stopSequence": 55, "arrival": {"time": "1694890975"}, "stopId": "35697"}, {"stopSequence": 56, "arrival": {"time": "1694891102"}, "stopId": "39778"}, {"stopSequence": 57, "arrival": {"time": "1694891218"}, "stopId": "35797"}, {"stopSequence": 58, "arrival": {"time": "1694891270"}, "stopId": "35798"}, {"stopSequence": 59, "arrival": {"time": "1694891306"}, "stopId": "35799"}, {"stopSequence": 60, "arrival": {"time": "1694891385"}, "stopId": "35800"}, {"stopSequence": 61, "arrival": {"time": "1694891442"}, "stopId": "35801"}, {"stopSequence": 62, "arrival": {"time": "1694891472"}, "stopId": "35802"}, {"stopSequence": 63, "arrival": {"time": "1694891530"}, "stopId": "35803"}, {"stopSequence": 64, "arrival": {"time": "1694891593"}, "stopId": "38507"}, {"stopSequence": 65, "arrival": {"time": "1694891654"}, "stopId": "34473"}, {"stopSequence": 66, "arrival": {"time": "1694891708"}, "stopId": "38500"}, {"stopSequence": 67, "arrival": {"time": "1694891765"}, "stopId": "35808"}, {"stopSequence": 68, "arrival": {"time": "1694891838"}, "stopId": "35710"}, {"stopSequence": 69, "arrival": {"time": "1694891896"}, "stopId": "50036"}, {"stopSequence": 70, "arrival": {"time": "1694892203"}, "stopId": "50037"}, {"stopSequence": 71, "arrival": {"time": "1694892408"}, "stopId": "50038"}, {"stopSequence": 72, "arrival": {"time": "1694892522"}, "stopId": "50039"}, {"stopSequence": 73, "arrival": {"time": "1694892602"}, "stopId": "50040"}, {"stopSequence": 74, "arrival": {"time": "1694892752"}, "stopId": "50041"}, {"stopSequence": 75, "arrival": {"time": "1694892990"}, "stopId": "Jun-15"}, {"stopSequence": 76, "arrival": {"time": "1694893140"}, "stopId": "Jun-13"}, {"stopSequence": 77, "arrival": {"time": "1694893516"}, "stopId": "6-Oct"}, {"stopSequence": 78, "arrival": {"time": "1694893637"}, "stopId": "6-Aug"}, {"stopSequence": 79, "arrival": {"time": "1694893967"}, "stopId": "6-Jun"}, {"stopSequence": 80, "arrival": {"time": "1694894253"}, "stopId": "6-Feb"}, {"stopSequence": 81, "arrival": {"time": "1694894595"}, "stopId": "7-Jul"}, {"stopSequence": 82, "arrival": {"time": "1694894769"}, "stopId": "7-May"}, {"stopSequence": 83, "arrival": {"time": "1694894868"}, "stopId": "1508142"}, {"stopSequence": 84, "arrival": {"time": "1694895353"}, "stopId": "8-Jan"}, {"stopSequence": 85, "arrival": {"time": "1694895452"}, "stopId": "9-Jan"}, {"stopSequence": 86, "arrival": {"time": "1694895583"}, "stopId": "10-Apr"}, {"stopSequence": 87, "arrival": {"time": "1694895778"}, "stopId": "10-Jan"}, {"stopSequence": 88, "arrival": {"time": "1694895902"}, "stopId": "44863"}, {"stopSequence": 89, "arrival": {"time": "1694896039"}, "stopId": "10-Mar"}, {"stopSequence": 90, "arrival": {"time": "1694896240"}, "stopId": "11-Jan"}, {"stopSequence": 91, "arrival": {"time": "1694896429"}, "stopId": "39943"}, {"stopSequence": 92, "arrival": {"time": "1694896552"}, "stopId": "39944"}, {"stopSequence": 93, "arrival": {"time": "1694897126"}, "stopId": "39947"}, {"stopSequence": 94, "arrival": {"time": "1694897279"}, "stopId": "39949"}, {"stopSequence": 95, "arrival": {"time": "1694897315"}, "stopId": "39950"}, {"stopSequence": 96, "arrival": {"time": "1694897562"}, "stopId": "39952"}, {"stopSequence": 97, "arrival": {"time": "1694898003"}, "stopId": "34529"}, {"stopSequence": 98, "arrival": {"time": "1694898325"}, "stopId": "39954"}, {"stopSequence": 99, "arrival": {"time": "1694898705"}, "stopId": "39956"}, {"stopSequence": 100, "arrival": {"time": "1694899503"}, "stopId": "44967"}, {"stopSequence": 101, "arrival": {"time": "1694899864"}, "stopId": "44968"}, {"stopSequence": 102, "arrival": {"time": "1694900280"}, "stopId": "14-May"}, {"stopSequence": 103, "arrival": {"time": "1694900535"}, "stopId": "14-Jun"}, {"stopSequence": 104, "arrival": {"time": "1694901026"}, "stopId": "14-Aug"}], "vehicle": {"licensePlate": "DTJS65"}, "timestamp": "1694889012"}, "vehicle": {"trip": {"tripId": "23775-701ff27f-2", "startTime": "15:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "613", "directionId": 0}, "position": {"latitude": -36.74388, "longitude": -73.09778, "bearing": 62.0, "odometer": 0.0, "speed": 1.3888888}, "timestamp": "1694889012", "vehicle": {"licensePlate": "DTJS65"}}}, {"id": "714251e1-c01e-4dd5-9fcf-36107615e3b1", "tripUpdate": {"trip": {"tripId": "23840-701ff27f-2", "startTime": "14:41:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "613", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 50, "arrival": {"time": "1694889052"}, "stopId": "49503"}, {"stopSequence": 51, "arrival": {"time": "1694889185"}, "stopId": "39637"}, {"stopSequence": 52, "arrival": {"time": "1694889237"}, "stopId": "49317"}, {"stopSequence": 53, "arrival": {"time": "1694889270"}, "stopId": "49318"}, {"stopSequence": 54, "arrival": {"time": "1694889337"}, "stopId": "49319"}, {"stopSequence": 55, "arrival": {"time": "1694889402"}, "stopId": "39641"}, {"stopSequence": 56, "arrival": {"time": "1694889436"}, "stopId": "39642"}, {"stopSequence": 57, "arrival": {"time": "1694889715"}, "stopId": "49325"}, {"stopSequence": 58, "arrival": {"time": "1694889776"}, "stopId": "49326"}, {"stopSequence": 59, "arrival": {"time": "1694889801"}, "stopId": "39648"}, {"stopSequence": 60, "arrival": {"time": "1694889848"}, "stopId": "39649"}, {"stopSequence": 61, "arrival": {"time": "1694889879"}, "stopId": "45112"}, {"stopSequence": 62, "arrival": {"time": "1694889929"}, "stopId": "45113"}, {"stopSequence": 63, "arrival": {"time": "1694890007"}, "stopId": "37490"}, {"stopSequence": 64, "arrival": {"time": "1694890063"}, "stopId": "45115"}, {"stopSequence": 65, "arrival": {"time": "1694890084"}, "stopId": "45116"}, {"stopSequence": 66, "arrival": {"time": "1694890153"}, "stopId": "45118"}, {"stopSequence": 67, "arrival": {"time": "1694890226"}, "stopId": "45119"}, {"stopSequence": 68, "arrival": {"time": "1694890269"}, "stopId": "45120"}, {"stopSequence": 69, "arrival": {"time": "1694890323"}, "stopId": "45121"}, {"stopSequence": 70, "arrival": {"time": "1694890364"}, "stopId": "38535"}, {"stopSequence": 71, "arrival": {"time": "1694890431"}, "stopId": "38536"}, {"stopSequence": 72, "arrival": {"time": "1694890475"}, "stopId": "4838437"}, {"stopSequence": 73, "arrival": {"time": "1694890529"}, "stopId": "45085"}, {"stopSequence": 74, "arrival": {"time": "1694890608"}, "stopId": "45086"}, {"stopSequence": 75, "arrival": {"time": "1694890723"}, "stopId": "38540"}, {"stopSequence": 76, "arrival": {"time": "1694890803"}, "stopId": "38544"}, {"stopSequence": 77, "arrival": {"time": "1694890868"}, "stopId": "38545"}, {"stopSequence": 78, "arrival": {"time": "1694891034"}, "stopId": "45095"}, {"stopSequence": 79, "arrival": {"time": "1694891078"}, "stopId": "45096"}, {"stopSequence": 80, "arrival": {"time": "1694891154"}, "stopId": "45098"}, {"stopSequence": 81, "arrival": {"time": "1694891188"}, "stopId": "45099"}, {"stopSequence": 82, "arrival": {"time": "1694891210"}, "stopId": "45100"}, {"stopSequence": 83, "arrival": {"time": "1694891239"}, "stopId": "45101"}, {"stopSequence": 84, "arrival": {"time": "1694891280"}, "stopId": "45102"}, {"stopSequence": 85, "arrival": {"time": "1694891309"}, "stopId": "45103"}, {"stopSequence": 86, "arrival": {"time": "1694891336"}, "stopId": "45104"}, {"stopSequence": 87, "arrival": {"time": "1694891366"}, "stopId": "45122"}, {"stopSequence": 88, "arrival": {"time": "1694891427"}, "stopId": "38630"}, {"stopSequence": 89, "arrival": {"time": "1694891541"}, "stopId": "42365"}, {"stopSequence": 90, "arrival": {"time": "1694891687"}, "stopId": "49349"}, {"stopSequence": 91, "arrival": {"time": "1694891845"}, "stopId": "49350"}, {"stopSequence": 92, "arrival": {"time": "1694891906"}, "stopId": "49351"}, {"stopSequence": 93, "arrival": {"time": "1694891941"}, "stopId": "49352"}, {"stopSequence": 94, "arrival": {"time": "1694892001"}, "stopId": "49353"}, {"stopSequence": 95, "arrival": {"time": "1694892173"}, "stopId": "38567"}, {"stopSequence": 96, "arrival": {"time": "1694892238"}, "stopId": "38568"}, {"stopSequence": 97, "arrival": {"time": "1694892278"}, "stopId": "38569"}, {"stopSequence": 98, "arrival": {"time": "1694892339"}, "stopId": "38570"}, {"stopSequence": 99, "arrival": {"time": "1694892420"}, "stopId": "38571"}, {"stopSequence": 100, "arrival": {"time": "1694892498"}, "stopId": "38572"}, {"stopSequence": 101, "arrival": {"time": "1694892722"}, "stopId": "40115"}, {"stopSequence": 102, "arrival": {"time": "1694892806"}, "stopId": "40116"}], "vehicle": {"licensePlate": "FFVP83"}, "timestamp": "1694889002"}, "vehicle": {"trip": {"tripId": "23840-701ff27f-2", "startTime": "14:41:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "613", "directionId": 1}, "position": {"latitude": -36.822983, "longitude": -73.0632, "bearing": 330.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889002", "vehicle": {"licensePlate": "FFVP83"}}}, {"id": "48cd6c63-3c39-496e-b1d6-27644166fc5a", "tripUpdate": {"trip": {"tripId": "23841-701ff27f-2", "startTime": "15:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "613", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 41, "arrival": {"time": "1694889022"}, "stopId": "37506"}, {"stopSequence": 42, "arrival": {"time": "1694889101"}, "stopId": "45069"}, {"stopSequence": 43, "arrival": {"time": "1694889219"}, "stopId": "37523"}, {"stopSequence": 44, "arrival": {"time": "1694889260"}, "stopId": "37477"}, {"stopSequence": 45, "arrival": {"time": "1694889349"}, "stopId": "49310"}, {"stopSequence": 46, "arrival": {"time": "1694889381"}, "stopId": "49311"}, {"stopSequence": 47, "arrival": {"time": "1694889437"}, "stopId": "39634"}, {"stopSequence": 48, "arrival": {"time": "1694889463"}, "stopId": "39635"}, {"stopSequence": 49, "arrival": {"time": "1694889509"}, "stopId": "39636"}, {"stopSequence": 50, "arrival": {"time": "1694889562"}, "stopId": "49503"}, {"stopSequence": 51, "arrival": {"time": "1694889687"}, "stopId": "39637"}, {"stopSequence": 52, "arrival": {"time": "1694889736"}, "stopId": "49317"}, {"stopSequence": 53, "arrival": {"time": "1694889767"}, "stopId": "49318"}, {"stopSequence": 54, "arrival": {"time": "1694889831"}, "stopId": "49319"}, {"stopSequence": 55, "arrival": {"time": "1694889893"}, "stopId": "39641"}, {"stopSequence": 56, "arrival": {"time": "1694889926"}, "stopId": "39642"}, {"stopSequence": 57, "arrival": {"time": "1694890199"}, "stopId": "49325"}, {"stopSequence": 58, "arrival": {"time": "1694890260"}, "stopId": "49326"}, {"stopSequence": 59, "arrival": {"time": "1694890286"}, "stopId": "39648"}, {"stopSequence": 60, "arrival": {"time": "1694890333"}, "stopId": "39649"}, {"stopSequence": 61, "arrival": {"time": "1694890364"}, "stopId": "45112"}, {"stopSequence": 62, "arrival": {"time": "1694890415"}, "stopId": "45113"}, {"stopSequence": 63, "arrival": {"time": "1694890494"}, "stopId": "37490"}, {"stopSequence": 64, "arrival": {"time": "1694890552"}, "stopId": "45115"}, {"stopSequence": 65, "arrival": {"time": "1694890574"}, "stopId": "45116"}, {"stopSequence": 66, "arrival": {"time": "1694890645"}, "stopId": "45118"}, {"stopSequence": 67, "arrival": {"time": "1694890720"}, "stopId": "45119"}, {"stopSequence": 68, "arrival": {"time": "1694890766"}, "stopId": "45120"}, {"stopSequence": 69, "arrival": {"time": "1694890822"}, "stopId": "45121"}, {"stopSequence": 70, "arrival": {"time": "1694890866"}, "stopId": "38535"}, {"stopSequence": 71, "arrival": {"time": "1694890938"}, "stopId": "38536"}, {"stopSequence": 72, "arrival": {"time": "1694890984"}, "stopId": "4838437"}, {"stopSequence": 73, "arrival": {"time": "1694891042"}, "stopId": "45085"}, {"stopSequence": 74, "arrival": {"time": "1694891127"}, "stopId": "45086"}, {"stopSequence": 75, "arrival": {"time": "1694891253"}, "stopId": "38540"}, {"stopSequence": 76, "arrival": {"time": "1694891341"}, "stopId": "38544"}, {"stopSequence": 77, "arrival": {"time": "1694891412"}, "stopId": "38545"}, {"stopSequence": 78, "arrival": {"time": "1694891598"}, "stopId": "45095"}, {"stopSequence": 79, "arrival": {"time": "1694891648"}, "stopId": "45096"}, {"stopSequence": 80, "arrival": {"time": "1694891733"}, "stopId": "45098"}, {"stopSequence": 81, "arrival": {"time": "1694891771"}, "stopId": "45099"}, {"stopSequence": 82, "arrival": {"time": "1694891797"}, "stopId": "45100"}, {"stopSequence": 83, "arrival": {"time": "1694891830"}, "stopId": "45101"}, {"stopSequence": 84, "arrival": {"time": "1694891877"}, "stopId": "45102"}, {"stopSequence": 85, "arrival": {"time": "1694891910"}, "stopId": "45103"}, {"stopSequence": 86, "arrival": {"time": "1694891942"}, "stopId": "45104"}, {"stopSequence": 87, "arrival": {"time": "1694891976"}, "stopId": "45122"}, {"stopSequence": 88, "arrival": {"time": "1694892046"}, "stopId": "38630"}, {"stopSequence": 89, "arrival": {"time": "1694892180"}, "stopId": "42365"}, {"stopSequence": 90, "arrival": {"time": "1694892352"}, "stopId": "49349"}, {"stopSequence": 91, "arrival": {"time": "1694892540"}, "stopId": "49350"}, {"stopSequence": 92, "arrival": {"time": "1694892612"}, "stopId": "49351"}, {"stopSequence": 93, "arrival": {"time": "1694892655"}, "stopId": "49352"}, {"stopSequence": 94, "arrival": {"time": "1694892728"}, "stopId": "49353"}, {"stopSequence": 95, "arrival": {"time": "1694892938"}, "stopId": "38567"}, {"stopSequence": 96, "arrival": {"time": "1694893017"}, "stopId": "38568"}, {"stopSequence": 97, "arrival": {"time": "1694893067"}, "stopId": "38569"}, {"stopSequence": 98, "arrival": {"time": "1694893141"}, "stopId": "38570"}, {"stopSequence": 99, "arrival": {"time": "1694893243"}, "stopId": "38571"}, {"stopSequence": 100, "arrival": {"time": "1694893341"}, "stopId": "38572"}, {"stopSequence": 101, "arrival": {"time": "1694893623"}, "stopId": "40115"}, {"stopSequence": 102, "arrival": {"time": "1694893731"}, "stopId": "40116"}], "vehicle": {"licensePlate": "FXRL39"}, "timestamp": "1694889000"}, "vehicle": {"trip": {"tripId": "23841-701ff27f-2", "startTime": "15:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "613", "directionId": 1}, "position": {"latitude": -36.824684, "longitude": -73.042725, "bearing": 240.0, "odometer": 0.0, "speed": 11.388889}, "timestamp": "1694889000", "vehicle": {"licensePlate": "FXRL39"}}}, {"id": "b1584218-96dc-46f4-98bb-13413262b6e2", "tripUpdate": {"trip": {"tripId": "23772-701ff27f-2", "startTime": "14:16:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "613", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 77, "arrival": {"time": "1694889095"}, "stopId": "6-Oct"}, {"stopSequence": 78, "arrival": {"time": "1694889158"}, "stopId": "6-Aug"}, {"stopSequence": 79, "arrival": {"time": "1694889318"}, "stopId": "6-Jun"}, {"stopSequence": 80, "arrival": {"time": "1694889444"}, "stopId": "6-Feb"}, {"stopSequence": 81, "arrival": {"time": "1694889580"}, "stopId": "7-Jul"}, {"stopSequence": 82, "arrival": {"time": "1694889644"}, "stopId": "7-May"}, {"stopSequence": 83, "arrival": {"time": "1694889679"}, "stopId": "1508142"}, {"stopSequence": 84, "arrival": {"time": "1694889840"}, "stopId": "8-Jan"}, {"stopSequence": 85, "arrival": {"time": "1694889870"}, "stopId": "9-Jan"}, {"stopSequence": 86, "arrival": {"time": "1694889909"}, "stopId": "10-Apr"}, {"stopSequence": 87, "arrival": {"time": "1694889965"}, "stopId": "10-Jan"}, {"stopSequence": 88, "arrival": {"time": "1694890000"}, "stopId": "44863"}, {"stopSequence": 89, "arrival": {"time": "1694890036"}, "stopId": "10-Mar"}, {"stopSequence": 90, "arrival": {"time": "1694890088"}, "stopId": "11-Jan"}, {"stopSequence": 91, "arrival": {"time": "1694890135"}, "stopId": "39943"}, {"stopSequence": 92, "arrival": {"time": "1694890165"}, "stopId": "39944"}, {"stopSequence": 93, "arrival": {"time": "1694890294"}, "stopId": "39947"}, {"stopSequence": 94, "arrival": {"time": "1694890326"}, "stopId": "39949"}, {"stopSequence": 95, "arrival": {"time": "1694890333"}, "stopId": "39950"}, {"stopSequence": 96, "arrival": {"time": "1694890383"}, "stopId": "39952"}, {"stopSequence": 97, "arrival": {"time": "1694890466"}, "stopId": "34529"}, {"stopSequence": 98, "arrival": {"time": "1694890523"}, "stopId": "39954"}, {"stopSequence": 99, "arrival": {"time": "1694890586"}, "stopId": "39956"}, {"stopSequence": 100, "arrival": {"time": "1694890708"}, "stopId": "44967"}, {"stopSequence": 101, "arrival": {"time": "1694890758"}, "stopId": "44968"}, {"stopSequence": 102, "arrival": {"time": "1694890813"}, "stopId": "14-May"}, {"stopSequence": 103, "arrival": {"time": "1694890845"}, "stopId": "14-Jun"}, {"stopSequence": 104, "arrival": {"time": "1694890904"}, "stopId": "14-Aug"}], "vehicle": {"licensePlate": "MY5698"}, "timestamp": "1694889012"}, "vehicle": {"trip": {"tripId": "23772-701ff27f-2", "startTime": "14:16:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "613", "directionId": 0}, "position": {"latitude": -36.77322, "longitude": -73.01524, "bearing": 20.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889012", "vehicle": {"licensePlate": "MY5698"}}}, {"id": "14872879-7f5c-404d-98cf-6e89c3faa2b0", "tripUpdate": {"trip": {"tripId": "23774-701ff27f-2", "startTime": "14:46:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "613", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 39, "arrival": {"time": "1694889031"}, "stopId": "38692"}, {"stopSequence": 40, "arrival": {"time": "1694889098"}, "stopId": "38714"}, {"stopSequence": 41, "arrival": {"time": "1694889155"}, "stopId": "39791"}, {"stopSequence": 42, "arrival": {"time": "1694889182"}, "stopId": "38506"}, {"stopSequence": 43, "arrival": {"time": "1694889236"}, "stopId": "38635"}, {"stopSequence": 44, "arrival": {"time": "1694889270"}, "stopId": "38509"}, {"stopSequence": 45, "arrival": {"time": "1694889315"}, "stopId": "38642"}, {"stopSequence": 46, "arrival": {"time": "1694889359"}, "stopId": "39795"}, {"stopSequence": 47, "arrival": {"time": "1694889394"}, "stopId": "38502"}, {"stopSequence": 48, "arrival": {"time": "1694889454"}, "stopId": "38503"}, {"stopSequence": 49, "arrival": {"time": "1694889610"}, "stopId": "35691"}, {"stopSequence": 50, "arrival": {"time": "1694889650"}, "stopId": "35692"}, {"stopSequence": 51, "arrival": {"time": "1694889708"}, "stopId": "35693"}, {"stopSequence": 52, "arrival": {"time": "1694889761"}, "stopId": "35694"}, {"stopSequence": 53, "arrival": {"time": "1694889801"}, "stopId": "35695"}, {"stopSequence": 54, "arrival": {"time": "1694889851"}, "stopId": "35696"}, {"stopSequence": 55, "arrival": {"time": "1694890014"}, "stopId": "35697"}, {"stopSequence": 56, "arrival": {"time": "1694890130"}, "stopId": "39778"}, {"stopSequence": 57, "arrival": {"time": "1694890232"}, "stopId": "35797"}, {"stopSequence": 58, "arrival": {"time": "1694890278"}, "stopId": "35798"}, {"stopSequence": 59, "arrival": {"time": "1694890310"}, "stopId": "35799"}, {"stopSequence": 60, "arrival": {"time": "1694890378"}, "stopId": "35800"}, {"stopSequence": 61, "arrival": {"time": "1694890426"}, "stopId": "35801"}, {"stopSequence": 62, "arrival": {"time": "1694890452"}, "stopId": "35802"}, {"stopSequence": 63, "arrival": {"time": "1694890501"}, "stopId": "35803"}, {"stopSequence": 64, "arrival": {"time": "1694890554"}, "stopId": "38507"}, {"stopSequence": 65, "arrival": {"time": "1694890605"}, "stopId": "34473"}, {"stopSequence": 66, "arrival": {"time": "1694890649"}, "stopId": "38500"}, {"stopSequence": 67, "arrival": {"time": "1694890695"}, "stopId": "35808"}, {"stopSequence": 68, "arrival": {"time": "1694890754"}, "stopId": "35710"}, {"stopSequence": 69, "arrival": {"time": "1694890800"}, "stopId": "50036"}, {"stopSequence": 70, "arrival": {"time": "1694891040"}, "stopId": "50037"}, {"stopSequence": 71, "arrival": {"time": "1694891196"}, "stopId": "50038"}, {"stopSequence": 72, "arrival": {"time": "1694891281"}, "stopId": "50039"}, {"stopSequence": 73, "arrival": {"time": "1694891340"}, "stopId": "50040"}, {"stopSequence": 74, "arrival": {"time": "1694891448"}, "stopId": "50041"}, {"stopSequence": 75, "arrival": {"time": "1694891617"}, "stopId": "Jun-15"}, {"stopSequence": 76, "arrival": {"time": "1694891721"}, "stopId": "Jun-13"}, {"stopSequence": 77, "arrival": {"time": "1694891975"}, "stopId": "6-Oct"}, {"stopSequence": 78, "arrival": {"time": "1694892055"}, "stopId": "6-Aug"}, {"stopSequence": 79, "arrival": {"time": "1694892268"}, "stopId": "6-Jun"}, {"stopSequence": 80, "arrival": {"time": "1694892447"}, "stopId": "6-Feb"}, {"stopSequence": 81, "arrival": {"time": "1694892655"}, "stopId": "7-Jul"}, {"stopSequence": 82, "arrival": {"time": "1694892760"}, "stopId": "7-May"}, {"stopSequence": 83, "arrival": {"time": "1694892817"}, "stopId": "1508142"}, {"stopSequence": 84, "arrival": {"time": "1694893096"}, "stopId": "8-Jan"}, {"stopSequence": 85, "arrival": {"time": "1694893152"}, "stopId": "9-Jan"}, {"stopSequence": 86, "arrival": {"time": "1694893225"}, "stopId": "10-Apr"}, {"stopSequence": 87, "arrival": {"time": "1694893332"}, "stopId": "10-Jan"}, {"stopSequence": 88, "arrival": {"time": "1694893399"}, "stopId": "44863"}, {"stopSequence": 89, "arrival": {"time": "1694893472"}, "stopId": "10-Mar"}, {"stopSequence": 90, "arrival": {"time": "1694893578"}, "stopId": "11-Jan"}, {"stopSequence": 91, "arrival": {"time": "1694893677"}, "stopId": "39943"}, {"stopSequence": 92, "arrival": {"time": "1694893741"}, "stopId": "39944"}, {"stopSequence": 93, "arrival": {"time": "1694894029"}, "stopId": "39947"}, {"stopSequence": 94, "arrival": {"time": "1694894104"}, "stopId": "39949"}, {"stopSequence": 95, "arrival": {"time": "1694894121"}, "stopId": "39950"}, {"stopSequence": 96, "arrival": {"time": "1694894240"}, "stopId": "39952"}, {"stopSequence": 97, "arrival": {"time": "1694894446"}, "stopId": "34529"}, {"stopSequence": 98, "arrival": {"time": "1694894593"}, "stopId": "39954"}, {"stopSequence": 99, "arrival": {"time": "1694894763"}, "stopId": "39956"}, {"stopSequence": 100, "arrival": {"time": "1694895105"}, "stopId": "44967"}, {"stopSequence": 101, "arrival": {"time": "1694895253"}, "stopId": "44968"}, {"stopSequence": 102, "arrival": {"time": "1694895421"}, "stopId": "14-May"}, {"stopSequence": 103, "arrival": {"time": "1694895521"}, "stopId": "14-Jun"}, {"stopSequence": 104, "arrival": {"time": "1694895710"}, "stopId": "14-Aug"}], "vehicle": {"licensePlate": "RTZT28"}, "timestamp": "1694889016"}, "vehicle": {"trip": {"tripId": "23774-701ff27f-2", "startTime": "14:46:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "613", "directionId": 0}, "position": {"latitude": -36.783752, "longitude": -73.08699, "bearing": 190.0, "odometer": 0.0, "speed": 2.7777777}, "timestamp": "1694889016", "vehicle": {"licensePlate": "RTZT28"}}}, {"id": "93c6adda-9ba1-49a2-9832-b8bf010469a1", "tripUpdate": {"trip": {"tripId": "23773-701ff27f-2", "startTime": "14:31:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "613", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 59, "arrival": {"time": "1694889014"}, "stopId": "35799"}, {"stopSequence": 60, "arrival": {"time": "1694889089"}, "stopId": "35800"}, {"stopSequence": 61, "arrival": {"time": "1694889141"}, "stopId": "35801"}, {"stopSequence": 62, "arrival": {"time": "1694889167"}, "stopId": "35802"}, {"stopSequence": 63, "arrival": {"time": "1694889219"}, "stopId": "35803"}, {"stopSequence": 64, "arrival": {"time": "1694889274"}, "stopId": "38507"}, {"stopSequence": 65, "arrival": {"time": "1694889326"}, "stopId": "34473"}, {"stopSequence": 66, "arrival": {"time": "1694889371"}, "stopId": "38500"}, {"stopSequence": 67, "arrival": {"time": "1694889417"}, "stopId": "35808"}, {"stopSequence": 68, "arrival": {"time": "1694889475"}, "stopId": "35710"}, {"stopSequence": 69, "arrival": {"time": "1694889520"}, "stopId": "50036"}, {"stopSequence": 70, "arrival": {"time": "1694889746"}, "stopId": "50037"}, {"stopSequence": 71, "arrival": {"time": "1694889886"}, "stopId": "50038"}, {"stopSequence": 72, "arrival": {"time": "1694889960"}, "stopId": "50039"}, {"stopSequence": 73, "arrival": {"time": "1694890011"}, "stopId": "50040"}, {"stopSequence": 74, "arrival": {"time": "1694890103"}, "stopId": "50041"}, {"stopSequence": 75, "arrival": {"time": "1694890242"}, "stopId": "Jun-15"}, {"stopSequence": 76, "arrival": {"time": "1694890326"}, "stopId": "Jun-13"}, {"stopSequence": 77, "arrival": {"time": "1694890523"}, "stopId": "6-Oct"}, {"stopSequence": 78, "arrival": {"time": "1694890583"}, "stopId": "6-Aug"}, {"stopSequence": 79, "arrival": {"time": "1694890739"}, "stopId": "6-Jun"}, {"stopSequence": 80, "arrival": {"time": "1694890866"}, "stopId": "6-Feb"}, {"stopSequence": 81, "arrival": {"time": "1694891010"}, "stopId": "7-Jul"}, {"stopSequence": 82, "arrival": {"time": "1694891080"}, "stopId": "7-May"}, {"stopSequence": 83, "arrival": {"time": "1694891119"}, "stopId": "1508142"}, {"stopSequence": 84, "arrival": {"time": "1694891299"}, "stopId": "8-Jan"}, {"stopSequence": 85, "arrival": {"time": "1694891335"}, "stopId": "9-Jan"}, {"stopSequence": 86, "arrival": {"time": "1694891381"}, "stopId": "10-Apr"}, {"stopSequence": 87, "arrival": {"time": "1694891447"}, "stopId": "10-Jan"}, {"stopSequence": 88, "arrival": {"time": "1694891488"}, "stopId": "44863"}, {"stopSequence": 89, "arrival": {"time": "1694891533"}, "stopId": "10-Mar"}, {"stopSequence": 90, "arrival": {"time": "1694891597"}, "stopId": "11-Jan"}, {"stopSequence": 91, "arrival": {"time": "1694891655"}, "stopId": "39943"}, {"stopSequence": 92, "arrival": {"time": "1694891693"}, "stopId": "39944"}, {"stopSequence": 93, "arrival": {"time": "1694891858"}, "stopId": "39947"}, {"stopSequence": 94, "arrival": {"time": "1694891900"}, "stopId": "39949"}, {"stopSequence": 95, "arrival": {"time": "1694891910"}, "stopId": "39950"}, {"stopSequence": 96, "arrival": {"time": "1694891976"}, "stopId": "39952"}, {"stopSequence": 97, "arrival": {"time": "1694892088"}, "stopId": "34529"}, {"stopSequence": 98, "arrival": {"time": "1694892167"}, "stopId": "39954"}, {"stopSequence": 99, "arrival": {"time": "1694892256"}, "stopId": "39956"}, {"stopSequence": 100, "arrival": {"time": "1694892430"}, "stopId": "44967"}, {"stopSequence": 101, "arrival": {"time": "1694892504"}, "stopId": "44968"}, {"stopSequence": 102, "arrival": {"time": "1694892586"}, "stopId": "14-May"}, {"stopSequence": 103, "arrival": {"time": "1694892634"}, "stopId": "14-Jun"}, {"stopSequence": 104, "arrival": {"time": "1694892724"}, "stopId": "14-Aug"}], "vehicle": {"licensePlate": "ZT3638"}, "timestamp": "1694889008"}, "vehicle": {"trip": {"tripId": "23773-701ff27f-2", "startTime": "14:31:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "613", "directionId": 0}, "position": {"latitude": -36.824028, "longitude": -73.05343, "bearing": 64.0, "odometer": 0.0, "speed": 10.0}, "timestamp": "1694889008", "vehicle": {"licensePlate": "ZT3638"}}}, {"id": "7aba0fb3-279d-48b9-bd26-3c183fc8c157", "tripUpdate": {"trip": {"tripId": "23891-701ff27f-2", "startTime": "16:30:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "614", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 34, "arrival": {"time": "1694889032"}, "stopId": "49310"}, {"stopSequence": 35, "arrival": {"time": "1694889065"}, "stopId": "49311"}, {"stopSequence": 36, "arrival": {"time": "1694889124"}, "stopId": "39634"}, {"stopSequence": 37, "arrival": {"time": "1694889151"}, "stopId": "39635"}, {"stopSequence": 38, "arrival": {"time": "1694889199"}, "stopId": "39636"}, {"stopSequence": 39, "arrival": {"time": "1694889376"}, "stopId": "39637"}, {"stopSequence": 40, "arrival": {"time": "1694889433"}, "stopId": "49317"}, {"stopSequence": 41, "arrival": {"time": "1694889465"}, "stopId": "49318"}, {"stopSequence": 42, "arrival": {"time": "1694889531"}, "stopId": "49319"}, {"stopSequence": 43, "arrival": {"time": "1694889594"}, "stopId": "39641"}, {"stopSequence": 44, "arrival": {"time": "1694889629"}, "stopId": "39642"}, {"stopSequence": 45, "arrival": {"time": "1694889772"}, "stopId": "39643"}, {"stopSequence": 46, "arrival": {"time": "1694889826"}, "stopId": "49323"}, {"stopSequence": 47, "arrival": {"time": "1694889864"}, "stopId": "49324"}, {"stopSequence": 48, "arrival": {"time": "1694889911"}, "stopId": "49325"}, {"stopSequence": 49, "arrival": {"time": "1694889963"}, "stopId": "49326"}, {"stopSequence": 50, "arrival": {"time": "1694889989"}, "stopId": "39648"}, {"stopSequence": 51, "arrival": {"time": "1694890035"}, "stopId": "39649"}, {"stopSequence": 52, "arrival": {"time": "1694890066"}, "stopId": "45112"}, {"stopSequence": 53, "arrival": {"time": "1694890116"}, "stopId": "45113"}, {"stopSequence": 54, "arrival": {"time": "1694890193"}, "stopId": "37490"}, {"stopSequence": 55, "arrival": {"time": "1694890246"}, "stopId": "45115"}, {"stopSequence": 56, "arrival": {"time": "1694890270"}, "stopId": "45116"}, {"stopSequence": 57, "arrival": {"time": "1694890339"}, "stopId": "45118"}, {"stopSequence": 58, "arrival": {"time": "1694890412"}, "stopId": "45119"}, {"stopSequence": 59, "arrival": {"time": "1694890457"}, "stopId": "45120"}, {"stopSequence": 60, "arrival": {"time": "1694890511"}, "stopId": "45121"}, {"stopSequence": 61, "arrival": {"time": "1694890553"}, "stopId": "38535"}, {"stopSequence": 62, "arrival": {"time": "1694890629"}, "stopId": "38536"}, {"stopSequence": 63, "arrival": {"time": "1694890666"}, "stopId": "4838437"}, {"stopSequence": 64, "arrival": {"time": "1694890721"}, "stopId": "45085"}, {"stopSequence": 65, "arrival": {"time": "1694890802"}, "stopId": "45086"}, {"stopSequence": 66, "arrival": {"time": "1694891004"}, "stopId": "38544"}, {"stopSequence": 67, "arrival": {"time": "1694891078"}, "stopId": "38545"}, {"stopSequence": 68, "arrival": {"time": "1694891243"}, "stopId": "45095"}, {"stopSequence": 69, "arrival": {"time": "1694891290"}, "stopId": "45096"}, {"stopSequence": 70, "arrival": {"time": "1694891366"}, "stopId": "45098"}, {"stopSequence": 71, "arrival": {"time": "1694891404"}, "stopId": "45099"}, {"stopSequence": 72, "arrival": {"time": "1694891427"}, "stopId": "45100"}, {"stopSequence": 73, "arrival": {"time": "1694891458"}, "stopId": "45101"}, {"stopSequence": 74, "arrival": {"time": "1694891501"}, "stopId": "45102"}, {"stopSequence": 75, "arrival": {"time": "1694891531"}, "stopId": "45103"}, {"stopSequence": 76, "arrival": {"time": "1694891560"}, "stopId": "45104"}, {"stopSequence": 77, "arrival": {"time": "1694891591"}, "stopId": "45122"}, {"stopSequence": 78, "arrival": {"time": "1694891655"}, "stopId": "38630"}, {"stopSequence": 79, "arrival": {"time": "1694891776"}, "stopId": "42365"}, {"stopSequence": 80, "arrival": {"time": "1694891931"}, "stopId": "49349"}, {"stopSequence": 81, "arrival": {"time": "1694892100"}, "stopId": "49350"}, {"stopSequence": 82, "arrival": {"time": "1694892164"}, "stopId": "49351"}, {"stopSequence": 83, "arrival": {"time": "1694892202"}, "stopId": "49352"}, {"stopSequence": 84, "arrival": {"time": "1694892267"}, "stopId": "49353"}, {"stopSequence": 85, "arrival": {"time": "1694892327"}, "stopId": "49354"}, {"stopSequence": 86, "arrival": {"time": "1694892452"}, "stopId": "38567"}, {"stopSequence": 87, "arrival": {"time": "1694892522"}, "stopId": "38568"}, {"stopSequence": 88, "arrival": {"time": "1694892566"}, "stopId": "38569"}, {"stopSequence": 89, "arrival": {"time": "1694892631"}, "stopId": "38570"}, {"stopSequence": 90, "arrival": {"time": "1694892719"}, "stopId": "38571"}, {"stopSequence": 91, "arrival": {"time": "1694892804"}, "stopId": "38572"}, {"stopSequence": 92, "arrival": {"time": "1694893048"}, "stopId": "40115"}, {"stopSequence": 93, "arrival": {"time": "1694893140"}, "stopId": "40116"}], "vehicle": {"licensePlate": "DBLS31"}, "timestamp": "1694888994"}, "vehicle": {"trip": {"tripId": "23891-701ff27f-2", "startTime": "16:30:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "614", "directionId": 1}, "position": {"latitude": -36.830982, "longitude": -73.057945, "bearing": 246.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888994", "vehicle": {"licensePlate": "DBLS31"}}}, {"id": "96e73fca-363c-4f58-8805-75592c96d000", "tripUpdate": {"trip": {"tripId": "23937-701ff27f-2", "startTime": "15:22:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "614", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 53, "arrival": {"time": "1694889037"}, "stopId": "35694"}, {"stopSequence": 54, "arrival": {"time": "1694889080"}, "stopId": "35695"}, {"stopSequence": 55, "arrival": {"time": "1694889306"}, "stopId": "35697"}, {"stopSequence": 56, "arrival": {"time": "1694889404"}, "stopId": "2-Jan"}, {"stopSequence": 57, "arrival": {"time": "1694889439"}, "stopId": "42460"}, {"stopSequence": 58, "arrival": {"time": "1694889476"}, "stopId": "35690"}, {"stopSequence": 59, "arrival": {"time": "1694889573"}, "stopId": "35700"}, {"stopSequence": 60, "arrival": {"time": "1694889602"}, "stopId": "35701"}, {"stopSequence": 61, "arrival": {"time": "1694889666"}, "stopId": "35703"}, {"stopSequence": 62, "arrival": {"time": "1694889681"}, "stopId": "35704"}, {"stopSequence": 63, "arrival": {"time": "1694889702"}, "stopId": "35705"}, {"stopSequence": 64, "arrival": {"time": "1694889721"}, "stopId": "35706"}, {"stopSequence": 65, "arrival": {"time": "1694889775"}, "stopId": "35707"}, {"stopSequence": 66, "arrival": {"time": "1694889799"}, "stopId": "35708"}, {"stopSequence": 67, "arrival": {"time": "1694889814"}, "stopId": "35709"}, {"stopSequence": 68, "arrival": {"time": "1694889880"}, "stopId": "40306"}, {"stopSequence": 69, "arrival": {"time": "1694889943"}, "stopId": "40308"}, {"stopSequence": 70, "arrival": {"time": "1694890013"}, "stopId": "40309"}, {"stopSequence": 71, "arrival": {"time": "1694890128"}, "stopId": "39504"}, {"stopSequence": 72, "arrival": {"time": "1694890159"}, "stopId": "39595"}, {"stopSequence": 73, "arrival": {"time": "1694890174"}, "stopId": "39759"}, {"stopSequence": 74, "arrival": {"time": "1694890233"}, "stopId": "39760"}, {"stopSequence": 75, "arrival": {"time": "1694890272"}, "stopId": "39761"}, {"stopSequence": 76, "arrival": {"time": "1694890310"}, "stopId": "39511"}, {"stopSequence": 77, "arrival": {"time": "1694890409"}, "stopId": "39705"}, {"stopSequence": 78, "arrival": {"time": "1694890451"}, "stopId": "39706"}, {"stopSequence": 79, "arrival": {"time": "1694890469"}, "stopId": "39707"}, {"stopSequence": 80, "arrival": {"time": "1694890508"}, "stopId": "39708"}, {"stopSequence": 81, "arrival": {"time": "1694890533"}, "stopId": "39709"}, {"stopSequence": 82, "arrival": {"time": "1694890571"}, "stopId": "39711"}, {"stopSequence": 83, "arrival": {"time": "1694890610"}, "stopId": "39712"}, {"stopSequence": 84, "arrival": {"time": "1694890642"}, "stopId": "39714"}, {"stopSequence": 85, "arrival": {"time": "1694890675"}, "stopId": "39715"}, {"stopSequence": 86, "arrival": {"time": "1694890697"}, "stopId": "39470"}, {"stopSequence": 87, "arrival": {"time": "1694890719"}, "stopId": "39471"}, {"stopSequence": 88, "arrival": {"time": "1694890747"}, "stopId": "39472"}, {"stopSequence": 89, "arrival": {"time": "1694890783"}, "stopId": "39473"}, {"stopSequence": 90, "arrival": {"time": "1694890809"}, "stopId": "39718"}, {"stopSequence": 91, "arrival": {"time": "1694890834"}, "stopId": "39494"}], "vehicle": {"licensePlate": "DGLF57"}, "timestamp": "1694888982"}, "vehicle": {"trip": {"tripId": "23937-701ff27f-2", "startTime": "15:22:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "614", "directionId": 0}, "position": {"latitude": -36.810947, "longitude": -73.07314, "bearing": 122.0, "odometer": 0.0, "speed": 1.9444444}, "timestamp": "1694888982", "vehicle": {"licensePlate": "DGLF57"}}}, {"id": "3deabf33-4c16-4f3f-8383-d18d6c90f984", "tripUpdate": {"trip": {"tripId": "23938-701ff27f-2", "startTime": "15:42:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "614", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 33, "arrival": {"time": "1694888985"}, "stopId": "42271"}, {"stopSequence": 34, "arrival": {"time": "1694889189"}, "stopId": "38688"}, {"stopSequence": 35, "arrival": {"time": "1694889246"}, "stopId": "38673"}, {"stopSequence": 36, "arrival": {"time": "1694889324"}, "stopId": "39785"}, {"stopSequence": 37, "arrival": {"time": "1694889364"}, "stopId": "38664"}, {"stopSequence": 38, "arrival": {"time": "1694889418"}, "stopId": "38702"}, {"stopSequence": 39, "arrival": {"time": "1694889462"}, "stopId": "39787"}, {"stopSequence": 40, "arrival": {"time": "1694889503"}, "stopId": "38501"}, {"stopSequence": 41, "arrival": {"time": "1694889569"}, "stopId": "38692"}, {"stopSequence": 42, "arrival": {"time": "1694889637"}, "stopId": "38714"}, {"stopSequence": 43, "arrival": {"time": "1694889684"}, "stopId": "39791"}, {"stopSequence": 44, "arrival": {"time": "1694889711"}, "stopId": "38506"}, {"stopSequence": 45, "arrival": {"time": "1694889759"}, "stopId": "38635"}, {"stopSequence": 46, "arrival": {"time": "1694889791"}, "stopId": "38509"}, {"stopSequence": 47, "arrival": {"time": "1694889834"}, "stopId": "38642"}, {"stopSequence": 48, "arrival": {"time": "1694889874"}, "stopId": "39795"}, {"stopSequence": 49, "arrival": {"time": "1694889909"}, "stopId": "38502"}, {"stopSequence": 50, "arrival": {"time": "1694889966"}, "stopId": "38503"}, {"stopSequence": 51, "arrival": {"time": "1694890119"}, "stopId": "35691"}, {"stopSequence": 52, "arrival": {"time": "1694890215"}, "stopId": "35693"}, {"stopSequence": 53, "arrival": {"time": "1694890269"}, "stopId": "35694"}, {"stopSequence": 54, "arrival": {"time": "1694890308"}, "stopId": "35695"}, {"stopSequence": 55, "arrival": {"time": "1694890524"}, "stopId": "35697"}, {"stopSequence": 56, "arrival": {"time": "1694890621"}, "stopId": "2-Jan"}, {"stopSequence": 57, "arrival": {"time": "1694890656"}, "stopId": "42460"}, {"stopSequence": 58, "arrival": {"time": "1694890694"}, "stopId": "35690"}, {"stopSequence": 59, "arrival": {"time": "1694890794"}, "stopId": "35700"}, {"stopSequence": 60, "arrival": {"time": "1694890824"}, "stopId": "35701"}, {"stopSequence": 61, "arrival": {"time": "1694890892"}, "stopId": "35703"}, {"stopSequence": 62, "arrival": {"time": "1694890908"}, "stopId": "35704"}, {"stopSequence": 63, "arrival": {"time": "1694890932"}, "stopId": "35705"}, {"stopSequence": 64, "arrival": {"time": "1694890952"}, "stopId": "35706"}, {"stopSequence": 65, "arrival": {"time": "1694891010"}, "stopId": "35707"}, {"stopSequence": 66, "arrival": {"time": "1694891037"}, "stopId": "35708"}, {"stopSequence": 67, "arrival": {"time": "1694891054"}, "stopId": "35709"}, {"stopSequence": 68, "arrival": {"time": "1694891128"}, "stopId": "40306"}, {"stopSequence": 69, "arrival": {"time": "1694891199"}, "stopId": "40308"}, {"stopSequence": 70, "arrival": {"time": "1694891279"}, "stopId": "40309"}, {"stopSequence": 71, "arrival": {"time": "1694891416"}, "stopId": "39504"}, {"stopSequence": 72, "arrival": {"time": "1694891452"}, "stopId": "39595"}, {"stopSequence": 73, "arrival": {"time": "1694891471"}, "stopId": "39759"}, {"stopSequence": 74, "arrival": {"time": "1694891543"}, "stopId": "39760"}, {"stopSequence": 75, "arrival": {"time": "1694891590"}, "stopId": "39761"}, {"stopSequence": 76, "arrival": {"time": "1694891637"}, "stopId": "39511"}, {"stopSequence": 77, "arrival": {"time": "1694891763"}, "stopId": "39705"}, {"stopSequence": 78, "arrival": {"time": "1694891816"}, "stopId": "39706"}, {"stopSequence": 79, "arrival": {"time": "1694891839"}, "stopId": "39707"}, {"stopSequence": 80, "arrival": {"time": "1694891890"}, "stopId": "39708"}, {"stopSequence": 81, "arrival": {"time": "1694891922"}, "stopId": "39709"}, {"stopSequence": 82, "arrival": {"time": "1694891973"}, "stopId": "39711"}, {"stopSequence": 83, "arrival": {"time": "1694892025"}, "stopId": "39712"}, {"stopSequence": 84, "arrival": {"time": "1694892067"}, "stopId": "39714"}, {"stopSequence": 85, "arrival": {"time": "1694892111"}, "stopId": "39715"}, {"stopSequence": 86, "arrival": {"time": "1694892142"}, "stopId": "39470"}, {"stopSequence": 87, "arrival": {"time": "1694892171"}, "stopId": "39471"}, {"stopSequence": 88, "arrival": {"time": "1694892210"}, "stopId": "39472"}, {"stopSequence": 89, "arrival": {"time": "1694892260"}, "stopId": "39473"}, {"stopSequence": 90, "arrival": {"time": "1694892296"}, "stopId": "39718"}, {"stopSequence": 91, "arrival": {"time": "1694892331"}, "stopId": "39494"}], "vehicle": {"licensePlate": "DSKF38"}, "timestamp": "1694888972"}, "vehicle": {"trip": {"tripId": "23938-701ff27f-2", "startTime": "15:42:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "614", "directionId": 0}, "position": {"latitude": -36.76028, "longitude": -73.08912, "bearing": 148.0, "odometer": 0.0, "speed": 13.611111}, "timestamp": "1694888972", "vehicle": {"licensePlate": "DSKF38"}}}, {"id": "65113a71-ba62-4ea3-a8f5-479b37b7513c", "tripUpdate": {"trip": {"tripId": "23886-701ff27f-2", "startTime": "14:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "614", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 12, "arrival": {"time": "1694889024"}, "stopId": "39523"}, {"stopSequence": 13, "arrival": {"time": "1694889049"}, "stopId": "39524"}, {"stopSequence": 14, "arrival": {"time": "1694889083"}, "stopId": "39705"}, {"stopSequence": 15, "arrival": {"time": "1694889108"}, "stopId": "39918"}, {"stopSequence": 16, "arrival": {"time": "1694889156"}, "stopId": "39513"}, {"stopSequence": 17, "arrival": {"time": "1694889224"}, "stopId": "39592"}, {"stopSequence": 18, "arrival": {"time": "1694889285"}, "stopId": "39593"}, {"stopSequence": 19, "arrival": {"time": "1694889318"}, "stopId": "39594"}, {"stopSequence": 20, "arrival": {"time": "1694889430"}, "stopId": "39505"}, {"stopSequence": 21, "arrival": {"time": "1694889460"}, "stopId": "39506"}, {"stopSequence": 22, "arrival": {"time": "1694889488"}, "stopId": "90003"}, {"stopSequence": 23, "arrival": {"time": "1694889533"}, "stopId": "90007"}, {"stopSequence": 24, "arrival": {"time": "1694889574"}, "stopId": "40830"}, {"stopSequence": 25, "arrival": {"time": "1694889612"}, "stopId": "40831"}, {"stopSequence": 26, "arrival": {"time": "1694889692"}, "stopId": "39599"}, {"stopSequence": 27, "arrival": {"time": "1694889714"}, "stopId": "39600"}, {"stopSequence": 28, "arrival": {"time": "1694889780"}, "stopId": "37496"}, {"stopSequence": 29, "arrival": {"time": "1694889828"}, "stopId": "45064"}, {"stopSequence": 30, "arrival": {"time": "1694889899"}, "stopId": "37506"}, {"stopSequence": 31, "arrival": {"time": "1694889972"}, "stopId": "45069"}, {"stopSequence": 32, "arrival": {"time": "1694890081"}, "stopId": "37523"}, {"stopSequence": 33, "arrival": {"time": "1694890120"}, "stopId": "37477"}, {"stopSequence": 34, "arrival": {"time": "1694890205"}, "stopId": "49310"}, {"stopSequence": 35, "arrival": {"time": "1694890235"}, "stopId": "49311"}, {"stopSequence": 36, "arrival": {"time": "1694890290"}, "stopId": "39634"}, {"stopSequence": 37, "arrival": {"time": "1694890314"}, "stopId": "39635"}, {"stopSequence": 38, "arrival": {"time": "1694890360"}, "stopId": "39636"}, {"stopSequence": 39, "arrival": {"time": "1694890531"}, "stopId": "39637"}, {"stopSequence": 40, "arrival": {"time": "1694890588"}, "stopId": "49317"}, {"stopSequence": 41, "arrival": {"time": "1694890619"}, "stopId": "49318"}, {"stopSequence": 42, "arrival": {"time": "1694890686"}, "stopId": "49319"}, {"stopSequence": 43, "arrival": {"time": "1694890751"}, "stopId": "39641"}, {"stopSequence": 44, "arrival": {"time": "1694890787"}, "stopId": "39642"}, {"stopSequence": 45, "arrival": {"time": "1694890940"}, "stopId": "39643"}, {"stopSequence": 46, "arrival": {"time": "1694890998"}, "stopId": "49323"}, {"stopSequence": 47, "arrival": {"time": "1694891039"}, "stopId": "49324"}, {"stopSequence": 48, "arrival": {"time": "1694891091"}, "stopId": "49325"}, {"stopSequence": 49, "arrival": {"time": "1694891150"}, "stopId": "49326"}, {"stopSequence": 50, "arrival": {"time": "1694891179"}, "stopId": "39648"}, {"stopSequence": 51, "arrival": {"time": "1694891231"}, "stopId": "39649"}, {"stopSequence": 52, "arrival": {"time": "1694891267"}, "stopId": "45112"}, {"stopSequence": 53, "arrival": {"time": "1694891325"}, "stopId": "45113"}, {"stopSequence": 54, "arrival": {"time": "1694891416"}, "stopId": "37490"}, {"stopSequence": 55, "arrival": {"time": "1694891479"}, "stopId": "45115"}, {"stopSequence": 56, "arrival": {"time": "1694891507"}, "stopId": "45116"}, {"stopSequence": 57, "arrival": {"time": "1694891591"}, "stopId": "45118"}, {"stopSequence": 58, "arrival": {"time": "1694891682"}, "stopId": "45119"}, {"stopSequence": 59, "arrival": {"time": "1694891737"}, "stopId": "45120"}, {"stopSequence": 60, "arrival": {"time": "1694891805"}, "stopId": "45121"}, {"stopSequence": 61, "arrival": {"time": "1694891858"}, "stopId": "38535"}, {"stopSequence": 62, "arrival": {"time": "1694891957"}, "stopId": "38536"}, {"stopSequence": 63, "arrival": {"time": "1694892005"}, "stopId": "4838437"}, {"stopSequence": 64, "arrival": {"time": "1694892078"}, "stopId": "45085"}, {"stopSequence": 65, "arrival": {"time": "1694892186"}, "stopId": "45086"}, {"stopSequence": 66, "arrival": {"time": "1694892464"}, "stopId": "38544"}, {"stopSequence": 67, "arrival": {"time": "1694892568"}, "stopId": "38545"}, {"stopSequence": 68, "arrival": {"time": "1694892808"}, "stopId": "45095"}, {"stopSequence": 69, "arrival": {"time": "1694892876"}, "stopId": "45096"}, {"stopSequence": 70, "arrival": {"time": "1694892990"}, "stopId": "45098"}, {"stopSequence": 71, "arrival": {"time": "1694893047"}, "stopId": "45099"}, {"stopSequence": 72, "arrival": {"time": "1694893083"}, "stopId": "45100"}, {"stopSequence": 73, "arrival": {"time": "1694893130"}, "stopId": "45101"}, {"stopSequence": 74, "arrival": {"time": "1694893196"}, "stopId": "45102"}, {"stopSequence": 75, "arrival": {"time": "1694893243"}, "stopId": "45103"}, {"stopSequence": 76, "arrival": {"time": "1694893288"}, "stopId": "45104"}, {"stopSequence": 77, "arrival": {"time": "1694893337"}, "stopId": "45122"}, {"stopSequence": 78, "arrival": {"time": "1694893438"}, "stopId": "38630"}, {"stopSequence": 79, "arrival": {"time": "1694893633"}, "stopId": "42365"}, {"stopSequence": 80, "arrival": {"time": "1694893889"}, "stopId": "49349"}, {"stopSequence": 81, "arrival": {"time": "1694894176"}, "stopId": "49350"}, {"stopSequence": 82, "arrival": {"time": "1694894288"}, "stopId": "49351"}, {"stopSequence": 83, "arrival": {"time": "1694894354"}, "stopId": "49352"}, {"stopSequence": 84, "arrival": {"time": "1694894469"}, "stopId": "49353"}, {"stopSequence": 85, "arrival": {"time": "1694894577"}, "stopId": "49354"}, {"stopSequence": 86, "arrival": {"time": "1694894806"}, "stopId": "38567"}, {"stopSequence": 87, "arrival": {"time": "1694894936"}, "stopId": "38568"}, {"stopSequence": 88, "arrival": {"time": "1694895017"}, "stopId": "38569"}, {"stopSequence": 89, "arrival": {"time": "1694895140"}, "stopId": "38570"}, {"stopSequence": 90, "arrival": {"time": "1694895310"}, "stopId": "38571"}, {"stopSequence": 91, "arrival": {"time": "1694895476"}, "stopId": "38572"}, {"stopSequence": 92, "arrival": {"time": "1694895967"}, "stopId": "40115"}, {"stopSequence": 93, "arrival": {"time": "1694896160"}, "stopId": "40116"}], "vehicle": {"licensePlate": "DVYS65"}, "timestamp": "1694889004"}, "vehicle": {"trip": {"tripId": "23886-701ff27f-2", "startTime": "14:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "614", "directionId": 1}, "position": {"latitude": -36.80102, "longitude": -73.035904, "bearing": 64.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889004", "vehicle": {"licensePlate": "DVYS65"}}}, {"id": "65b6e3df-585e-4674-a9cd-dab07c30ebe5", "tripUpdate": {"trip": {"tripId": "23890-701ff27f-2", "startTime": "16:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "614", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 46, "arrival": {"time": "1694889025"}, "stopId": "49323"}, {"stopSequence": 47, "arrival": {"time": "1694889067"}, "stopId": "49324"}, {"stopSequence": 48, "arrival": {"time": "1694889118"}, "stopId": "49325"}, {"stopSequence": 49, "arrival": {"time": "1694889174"}, "stopId": "49326"}, {"stopSequence": 50, "arrival": {"time": "1694889202"}, "stopId": "39648"}, {"stopSequence": 51, "arrival": {"time": "1694889251"}, "stopId": "39649"}, {"stopSequence": 52, "arrival": {"time": "1694889284"}, "stopId": "45112"}, {"stopSequence": 53, "arrival": {"time": "1694889337"}, "stopId": "45113"}, {"stopSequence": 54, "arrival": {"time": "1694889417"}, "stopId": "37490"}, {"stopSequence": 55, "arrival": {"time": "1694889471"}, "stopId": "45115"}, {"stopSequence": 56, "arrival": {"time": "1694889496"}, "stopId": "45116"}, {"stopSequence": 57, "arrival": {"time": "1694889566"}, "stopId": "45118"}, {"stopSequence": 58, "arrival": {"time": "1694889640"}, "stopId": "45119"}, {"stopSequence": 59, "arrival": {"time": "1694889684"}, "stopId": "45120"}, {"stopSequence": 60, "arrival": {"time": "1694889737"}, "stopId": "45121"}, {"stopSequence": 61, "arrival": {"time": "1694889778"}, "stopId": "38535"}, {"stopSequence": 62, "arrival": {"time": "1694889853"}, "stopId": "38536"}, {"stopSequence": 63, "arrival": {"time": "1694889888"}, "stopId": "4838437"}, {"stopSequence": 64, "arrival": {"time": "1694889941"}, "stopId": "45085"}, {"stopSequence": 65, "arrival": {"time": "1694890018"}, "stopId": "45086"}, {"stopSequence": 66, "arrival": {"time": "1694890204"}, "stopId": "38544"}, {"stopSequence": 67, "arrival": {"time": "1694890271"}, "stopId": "38545"}, {"stopSequence": 68, "arrival": {"time": "1694890420"}, "stopId": "45095"}, {"stopSequence": 69, "arrival": {"time": "1694890460"}, "stopId": "45096"}, {"stopSequence": 70, "arrival": {"time": "1694890527"}, "stopId": "45098"}, {"stopSequence": 71, "arrival": {"time": "1694890560"}, "stopId": "45099"}, {"stopSequence": 72, "arrival": {"time": "1694890580"}, "stopId": "45100"}, {"stopSequence": 73, "arrival": {"time": "1694890607"}, "stopId": "45101"}, {"stopSequence": 74, "arrival": {"time": "1694890644"}, "stopId": "45102"}, {"stopSequence": 75, "arrival": {"time": "1694890670"}, "stopId": "45103"}, {"stopSequence": 76, "arrival": {"time": "1694890694"}, "stopId": "45104"}, {"stopSequence": 77, "arrival": {"time": "1694890720"}, "stopId": "45122"}, {"stopSequence": 78, "arrival": {"time": "1694890775"}, "stopId": "38630"}, {"stopSequence": 79, "arrival": {"time": "1694890876"}, "stopId": "42365"}, {"stopSequence": 80, "arrival": {"time": "1694891003"}, "stopId": "49349"}, {"stopSequence": 81, "arrival": {"time": "1694891139"}, "stopId": "49350"}, {"stopSequence": 82, "arrival": {"time": "1694891190"}, "stopId": "49351"}, {"stopSequence": 83, "arrival": {"time": "1694891220"}, "stopId": "49352"}, {"stopSequence": 84, "arrival": {"time": "1694891271"}, "stopId": "49353"}, {"stopSequence": 85, "arrival": {"time": "1694891318"}, "stopId": "49354"}, {"stopSequence": 86, "arrival": {"time": "1694891415"}, "stopId": "38567"}, {"stopSequence": 87, "arrival": {"time": "1694891469"}, "stopId": "38568"}, {"stopSequence": 88, "arrival": {"time": "1694891502"}, "stopId": "38569"}, {"stopSequence": 89, "arrival": {"time": "1694891552"}, "stopId": "38570"}, {"stopSequence": 90, "arrival": {"time": "1694891619"}, "stopId": "38571"}, {"stopSequence": 91, "arrival": {"time": "1694891682"}, "stopId": "38572"}, {"stopSequence": 92, "arrival": {"time": "1694891862"}, "stopId": "40115"}, {"stopSequence": 93, "arrival": {"time": "1694891929"}, "stopId": "40116"}], "vehicle": {"licensePlate": "FXFW84"}, "timestamp": "1694889006"}, "vehicle": {"trip": {"tripId": "23890-701ff27f-2", "startTime": "16:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "614", "directionId": 1}, "position": {"latitude": -36.801693, "longitude": -73.08339, "bearing": 318.0, "odometer": 0.0, "speed": 10.833333}, "timestamp": "1694889006", "vehicle": {"licensePlate": "FXFW84"}}}, {"id": "1ac5816d-5675-4e8b-a322-b25c52a374ef", "tripUpdate": {"trip": {"tripId": "23889-701ff27f-2", "startTime": "15:30:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "614", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 59, "arrival": {"time": "1694889074"}, "stopId": "45120"}, {"stopSequence": 60, "arrival": {"time": "1694889133"}, "stopId": "45121"}, {"stopSequence": 61, "arrival": {"time": "1694889176"}, "stopId": "38535"}, {"stopSequence": 62, "arrival": {"time": "1694889256"}, "stopId": "38536"}, {"stopSequence": 63, "arrival": {"time": "1694889293"}, "stopId": "4838437"}, {"stopSequence": 64, "arrival": {"time": "1694889349"}, "stopId": "45085"}, {"stopSequence": 65, "arrival": {"time": "1694889430"}, "stopId": "45086"}, {"stopSequence": 66, "arrival": {"time": "1694889622"}, "stopId": "38544"}, {"stopSequence": 67, "arrival": {"time": "1694889689"}, "stopId": "38545"}, {"stopSequence": 68, "arrival": {"time": "1694889837"}, "stopId": "45095"}, {"stopSequence": 69, "arrival": {"time": "1694889878"}, "stopId": "45096"}, {"stopSequence": 70, "arrival": {"time": "1694889943"}, "stopId": "45098"}, {"stopSequence": 71, "arrival": {"time": "1694889975"}, "stopId": "45099"}, {"stopSequence": 72, "arrival": {"time": "1694889995"}, "stopId": "45100"}, {"stopSequence": 73, "arrival": {"time": "1694890020"}, "stopId": "45101"}, {"stopSequence": 74, "arrival": {"time": "1694890056"}, "stopId": "45102"}, {"stopSequence": 75, "arrival": {"time": "1694890081"}, "stopId": "45103"}, {"stopSequence": 76, "arrival": {"time": "1694890104"}, "stopId": "45104"}, {"stopSequence": 77, "arrival": {"time": "1694890129"}, "stopId": "45122"}, {"stopSequence": 78, "arrival": {"time": "1694890181"}, "stopId": "38630"}, {"stopSequence": 79, "arrival": {"time": "1694890276"}, "stopId": "42365"}, {"stopSequence": 80, "arrival": {"time": "1694890394"}, "stopId": "49349"}, {"stopSequence": 81, "arrival": {"time": "1694890519"}, "stopId": "49350"}, {"stopSequence": 82, "arrival": {"time": "1694890566"}, "stopId": "49351"}, {"stopSequence": 83, "arrival": {"time": "1694890593"}, "stopId": "49352"}, {"stopSequence": 84, "arrival": {"time": "1694890638"}, "stopId": "49353"}, {"stopSequence": 85, "arrival": {"time": "1694890681"}, "stopId": "49354"}, {"stopSequence": 86, "arrival": {"time": "1694890767"}, "stopId": "38567"}, {"stopSequence": 87, "arrival": {"time": "1694890815"}, "stopId": "38568"}, {"stopSequence": 88, "arrival": {"time": "1694890844"}, "stopId": "38569"}, {"stopSequence": 89, "arrival": {"time": "1694890887"}, "stopId": "38570"}, {"stopSequence": 90, "arrival": {"time": "1694890945"}, "stopId": "38571"}, {"stopSequence": 91, "arrival": {"time": "1694891000"}, "stopId": "38572"}, {"stopSequence": 92, "arrival": {"time": "1694891154"}, "stopId": "40115"}, {"stopSequence": 93, "arrival": {"time": "1694891211"}, "stopId": "40116"}], "vehicle": {"licensePlate": "FXRL40"}, "timestamp": "1694889036"}, "vehicle": {"trip": {"tripId": "23889-701ff27f-2", "startTime": "15:30:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "614", "directionId": 1}, "position": {"latitude": -36.774128, "longitude": -73.08522, "bearing": 356.0, "odometer": 0.0, "speed": 1.9444444}, "timestamp": "1694889036", "vehicle": {"licensePlate": "FXRL40"}}}, {"id": "6a70238b-a293-4e28-b5fa-55f2077b8b2a", "tripUpdate": {"trip": {"tripId": "23888-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "614", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 68, "arrival": {"time": "1694889087"}, "stopId": "45095"}, {"stopSequence": 69, "arrival": {"time": "1694889131"}, "stopId": "45096"}, {"stopSequence": 70, "arrival": {"time": "1694889201"}, "stopId": "45098"}, {"stopSequence": 71, "arrival": {"time": "1694889236"}, "stopId": "45099"}, {"stopSequence": 72, "arrival": {"time": "1694889257"}, "stopId": "45100"}, {"stopSequence": 73, "arrival": {"time": "1694889284"}, "stopId": "45101"}, {"stopSequence": 74, "arrival": {"time": "1694889321"}, "stopId": "45102"}, {"stopSequence": 75, "arrival": {"time": "1694889348"}, "stopId": "45103"}, {"stopSequence": 76, "arrival": {"time": "1694889372"}, "stopId": "45104"}, {"stopSequence": 77, "arrival": {"time": "1694889398"}, "stopId": "45122"}, {"stopSequence": 78, "arrival": {"time": "1694889452"}, "stopId": "38630"}, {"stopSequence": 79, "arrival": {"time": "1694889550"}, "stopId": "42365"}, {"stopSequence": 80, "arrival": {"time": "1694889669"}, "stopId": "49349"}, {"stopSequence": 81, "arrival": {"time": "1694889793"}, "stopId": "49350"}, {"stopSequence": 82, "arrival": {"time": "1694889839"}, "stopId": "49351"}, {"stopSequence": 83, "arrival": {"time": "1694889865"}, "stopId": "49352"}, {"stopSequence": 84, "arrival": {"time": "1694889910"}, "stopId": "49353"}, {"stopSequence": 85, "arrival": {"time": "1694889950"}, "stopId": "49354"}, {"stopSequence": 86, "arrival": {"time": "1694890033"}, "stopId": "38567"}, {"stopSequence": 87, "arrival": {"time": "1694890078"}, "stopId": "38568"}, {"stopSequence": 88, "arrival": {"time": "1694890106"}, "stopId": "38569"}, {"stopSequence": 89, "arrival": {"time": "1694890146"}, "stopId": "38570"}, {"stopSequence": 90, "arrival": {"time": "1694890200"}, "stopId": "38571"}, {"stopSequence": 91, "arrival": {"time": "1694890251"}, "stopId": "38572"}, {"stopSequence": 92, "arrival": {"time": "1694890392"}, "stopId": "40115"}, {"stopSequence": 93, "arrival": {"time": "1694890443"}, "stopId": "40116"}], "vehicle": {"licensePlate": "JBCY45"}, "timestamp": "1694889023"}, "vehicle": {"trip": {"tripId": "23888-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "614", "directionId": 1}, "position": {"latitude": -36.743744, "longitude": -73.09748, "bearing": 262.0, "odometer": 0.0, "speed": 5.5555553}, "timestamp": "1694889023", "vehicle": {"licensePlate": "JBCY45"}}}, {"id": "f27a0033-8cd9-4fb0-b338-9b86fa5acafc", "tripUpdate": {"trip": {"tripId": "23936-701ff27f-2", "startTime": "15:02:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "614", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 69, "arrival": {"time": "1694889038"}, "stopId": "40308"}, {"stopSequence": 70, "arrival": {"time": "1694889114"}, "stopId": "40309"}, {"stopSequence": 71, "arrival": {"time": "1694889239"}, "stopId": "39504"}, {"stopSequence": 72, "arrival": {"time": "1694889271"}, "stopId": "39595"}, {"stopSequence": 73, "arrival": {"time": "1694889288"}, "stopId": "39759"}, {"stopSequence": 74, "arrival": {"time": "1694889350"}, "stopId": "39760"}, {"stopSequence": 75, "arrival": {"time": "1694889390"}, "stopId": "39761"}, {"stopSequence": 76, "arrival": {"time": "1694889428"}, "stopId": "39511"}, {"stopSequence": 77, "arrival": {"time": "1694889530"}, "stopId": "39705"}, {"stopSequence": 78, "arrival": {"time": "1694889572"}, "stopId": "39706"}, {"stopSequence": 79, "arrival": {"time": "1694889590"}, "stopId": "39707"}, {"stopSequence": 80, "arrival": {"time": "1694889629"}, "stopId": "39708"}, {"stopSequence": 81, "arrival": {"time": "1694889653"}, "stopId": "39709"}, {"stopSequence": 82, "arrival": {"time": "1694889691"}, "stopId": "39711"}, {"stopSequence": 83, "arrival": {"time": "1694889729"}, "stopId": "39712"}, {"stopSequence": 84, "arrival": {"time": "1694889759"}, "stopId": "39714"}, {"stopSequence": 85, "arrival": {"time": "1694889791"}, "stopId": "39715"}, {"stopSequence": 86, "arrival": {"time": "1694889813"}, "stopId": "39470"}, {"stopSequence": 87, "arrival": {"time": "1694889833"}, "stopId": "39471"}, {"stopSequence": 88, "arrival": {"time": "1694889860"}, "stopId": "39472"}, {"stopSequence": 89, "arrival": {"time": "1694889894"}, "stopId": "39473"}, {"stopSequence": 90, "arrival": {"time": "1694889919"}, "stopId": "39718"}, {"stopSequence": 91, "arrival": {"time": "1694889942"}, "stopId": "39494"}], "vehicle": {"licensePlate": "YV3558"}, "timestamp": "1694889012"}, "vehicle": {"trip": {"tripId": "23936-701ff27f-2", "startTime": "15:02:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "614", "directionId": 0}, "position": {"latitude": -36.816708, "longitude": -73.044785, "bearing": 334.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889012", "vehicle": {"licensePlate": "YV3558"}}}, {"id": "673d83b0-5db4-43c5-a873-556b8fbd6580", "tripUpdate": {"trip": {"tripId": "24108-701ff27f-2", "startTime": "15:20:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "616", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 21, "arrival": {"time": "1694889098"}, "stopId": "39602"}, {"stopSequence": 22, "arrival": {"time": "1694889128"}, "stopId": "39603"}, {"stopSequence": 23, "arrival": {"time": "1694889232"}, "stopId": "39604"}, {"stopSequence": 24, "arrival": {"time": "1694889281"}, "stopId": "39605"}, {"stopSequence": 25, "arrival": {"time": "1694889333"}, "stopId": "39606"}, {"stopSequence": 26, "arrival": {"time": "1694889356"}, "stopId": "39607"}, {"stopSequence": 27, "arrival": {"time": "1694889384"}, "stopId": "39608"}, {"stopSequence": 28, "arrival": {"time": "1694889427"}, "stopId": "39609"}, {"stopSequence": 29, "arrival": {"time": "1694889468"}, "stopId": "39548"}, {"stopSequence": 30, "arrival": {"time": "1694889551"}, "stopId": "39549"}, {"stopSequence": 31, "arrival": {"time": "1694889600"}, "stopId": "39550"}, {"stopSequence": 32, "arrival": {"time": "1694889677"}, "stopId": "39551"}, {"stopSequence": 33, "arrival": {"time": "1694889801"}, "stopId": "39552"}, {"stopSequence": 34, "arrival": {"time": "1694890022"}, "stopId": "39554"}, {"stopSequence": 35, "arrival": {"time": "1694890070"}, "stopId": "39493"}, {"stopSequence": 36, "arrival": {"time": "1694890159"}, "stopId": "39515"}, {"stopSequence": 37, "arrival": {"time": "1694890233"}, "stopId": "39558"}, {"stopSequence": 38, "arrival": {"time": "1694890277"}, "stopId": "39985"}], "vehicle": {"licensePlate": "FVDP64"}, "timestamp": "1694889036"}, "vehicle": {"trip": {"tripId": "24108-701ff27f-2", "startTime": "15:20:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "616", "directionId": 1}, "position": {"latitude": -36.820885, "longitude": -73.03586, "bearing": 176.0, "odometer": 0.0, "speed": 6.9444447}, "timestamp": "1694889036", "vehicle": {"licensePlate": "FVDP64"}}}, {"id": "a456fcf7-44f9-46e9-bdd1-69583aae0f10", "tripUpdate": {"trip": {"tripId": "24051-701ff27f-2", "startTime": "15:21:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "616", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 15, "arrival": {"time": "1694889056"}, "stopId": "49391"}, {"stopSequence": 16, "arrival": {"time": "1694889078"}, "stopId": "49392"}, {"stopSequence": 17, "arrival": {"time": "1694889186"}, "stopId": "49393"}, {"stopSequence": 18, "arrival": {"time": "1694889235"}, "stopId": "49394"}, {"stopSequence": 19, "arrival": {"time": "1694889289"}, "stopId": "50004"}, {"stopSequence": 20, "arrival": {"time": "1694889363"}, "stopId": "50030"}, {"stopSequence": 21, "arrival": {"time": "1694889415"}, "stopId": "3-Mar"}, {"stopSequence": 22, "arrival": {"time": "1694889466"}, "stopId": "50031"}, {"stopSequence": 23, "arrival": {"time": "1694889491"}, "stopId": "49398"}, {"stopSequence": 24, "arrival": {"time": "1694889516"}, "stopId": "50032"}, {"stopSequence": 25, "arrival": {"time": "1694889559"}, "stopId": "39495"}, {"stopSequence": 26, "arrival": {"time": "1694889639"}, "stopId": "50033"}, {"stopSequence": 27, "arrival": {"time": "1694889682"}, "stopId": "39497"}, {"stopSequence": 28, "arrival": {"time": "1694889713"}, "stopId": "49407"}, {"stopSequence": 29, "arrival": {"time": "1694889826"}, "stopId": "37465"}, {"stopSequence": 30, "arrival": {"time": "1694889871"}, "stopId": "39503"}, {"stopSequence": 31, "arrival": {"time": "1694889960"}, "stopId": "39504"}, {"stopSequence": 32, "arrival": {"time": "1694889992"}, "stopId": "39595"}, {"stopSequence": 33, "arrival": {"time": "1694890111"}, "stopId": "39509"}, {"stopSequence": 34, "arrival": {"time": "1694890291"}, "stopId": "39510"}, {"stopSequence": 35, "arrival": {"time": "1694890397"}, "stopId": "39511"}, {"stopSequence": 36, "arrival": {"time": "1694890512"}, "stopId": "39763"}, {"stopSequence": 37, "arrival": {"time": "1694890556"}, "stopId": "39764"}, {"stopSequence": 38, "arrival": {"time": "1694890591"}, "stopId": "39765"}, {"stopSequence": 39, "arrival": {"time": "1694890615"}, "stopId": "39529"}, {"stopSequence": 40, "arrival": {"time": "1694890677"}, "stopId": "39530"}, {"stopSequence": 41, "arrival": {"time": "1694890897"}, "stopId": "91159"}], "vehicle": {"licensePlate": "HRBW37"}, "timestamp": "1694889034"}, "vehicle": {"trip": {"tripId": "24051-701ff27f-2", "startTime": "15:21:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "616", "directionId": 0}, "position": {"latitude": -36.819298, "longitude": -73.057526, "bearing": 150.0, "odometer": 0.0, "speed": 7.5}, "timestamp": "1694889034", "vehicle": {"licensePlate": "HRBW37"}}}, {"id": "40c80f16-3663-4144-b4e7-361efbe53a00", "tripUpdate": {"trip": {"tripId": "24109-701ff27f-2", "startTime": "15:40:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "616", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 1, "arrival": {"time": "1694889008"}, "stopId": "39584"}, {"stopSequence": 2, "arrival": {"time": "1694889109"}, "stopId": "16391318"}, {"stopSequence": 3, "arrival": {"time": "1694889336"}, "stopId": "40199"}, {"stopSequence": 4, "arrival": {"time": "1694889372"}, "stopId": "39700"}, {"stopSequence": 5, "arrival": {"time": "1694889414"}, "stopId": "39701"}, {"stopSequence": 6, "arrival": {"time": "1694889454"}, "stopId": "39702"}, {"stopSequence": 7, "arrival": {"time": "1694889466"}, "stopId": "39703"}, {"stopSequence": 8, "arrival": {"time": "1694889515"}, "stopId": "39704"}, {"stopSequence": 9, "arrival": {"time": "1694889541"}, "stopId": "39918"}, {"stopSequence": 10, "arrival": {"time": "1694889587"}, "stopId": "39513"}, {"stopSequence": 11, "arrival": {"time": "1694889623"}, "stopId": "39591"}, {"stopSequence": 12, "arrival": {"time": "1694889651"}, "stopId": "39592"}, {"stopSequence": 13, "arrival": {"time": "1694889709"}, "stopId": "39593"}, {"stopSequence": 14, "arrival": {"time": "1694889740"}, "stopId": "39594"}, {"stopSequence": 15, "arrival": {"time": "1694889865"}, "stopId": "39596"}, {"stopSequence": 16, "arrival": {"time": "1694889900"}, "stopId": "39597"}, {"stopSequence": 18, "arrival": {"time": "1694889944"}, "stopId": "39598"}, {"stopSequence": 19, "arrival": {"time": "1694890039"}, "stopId": "39599"}, {"stopSequence": 20, "arrival": {"time": "1694890061"}, "stopId": "39600"}, {"stopSequence": 21, "arrival": {"time": "1694890132"}, "stopId": "39602"}, {"stopSequence": 22, "arrival": {"time": "1694890159"}, "stopId": "39603"}, {"stopSequence": 23, "arrival": {"time": "1694890256"}, "stopId": "39604"}, {"stopSequence": 24, "arrival": {"time": "1694890302"}, "stopId": "39605"}, {"stopSequence": 25, "arrival": {"time": "1694890351"}, "stopId": "39606"}, {"stopSequence": 26, "arrival": {"time": "1694890374"}, "stopId": "39607"}, {"stopSequence": 27, "arrival": {"time": "1694890400"}, "stopId": "39608"}, {"stopSequence": 28, "arrival": {"time": "1694890443"}, "stopId": "39609"}, {"stopSequence": 29, "arrival": {"time": "1694890483"}, "stopId": "39548"}, {"stopSequence": 30, "arrival": {"time": "1694890565"}, "stopId": "39549"}, {"stopSequence": 31, "arrival": {"time": "1694890615"}, "stopId": "39550"}, {"stopSequence": 32, "arrival": {"time": "1694890694"}, "stopId": "39551"}, {"stopSequence": 33, "arrival": {"time": "1694890823"}, "stopId": "39552"}, {"stopSequence": 34, "arrival": {"time": "1694891062"}, "stopId": "39554"}, {"stopSequence": 35, "arrival": {"time": "1694891116"}, "stopId": "39493"}, {"stopSequence": 36, "arrival": {"time": "1694891216"}, "stopId": "39515"}, {"stopSequence": 37, "arrival": {"time": "1694891301"}, "stopId": "39558"}, {"stopSequence": 38, "arrival": {"time": "1694891352"}, "stopId": "39985"}], "vehicle": {"licensePlate": "YA5911"}, "timestamp": "1694889007"}, "vehicle": {"trip": {"tripId": "24109-701ff27f-2", "startTime": "15:40:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "616", "directionId": 1}, "position": {"latitude": -36.7849, "longitude": -73.04299, "bearing": 284.0, "odometer": 0.0, "speed": 6.388889}, "timestamp": "1694889007", "vehicle": {"licensePlate": "YA5911"}}}, {"id": "06dd5921-72c1-462b-8dbd-c07d95c7fce2", "tripUpdate": {"trip": {"tripId": "24192-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "617", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 35, "arrival": {"time": "1694889005"}, "stopId": "39980"}, {"stopSequence": 36, "arrival": {"time": "1694889108"}, "stopId": "39981"}, {"stopSequence": 37, "arrival": {"time": "1694889218"}, "stopId": "39982"}], "vehicle": {"licensePlate": "YF9629"}, "timestamp": "1694888970"}, "vehicle": {"trip": {"tripId": "24192-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "617", "directionId": 0}, "position": {"latitude": -36.86572, "longitude": -73.07204, "bearing": 229.0, "odometer": 0.0, "speed": 0.5555556}, "timestamp": "1694889000", "vehicle": {"licensePlate": "YF9629"}}}, {"id": "f9054203-af3b-45e4-9ecd-cb71ec6e73d4", "tripUpdate": {"trip": {"tripId": "24366-701ff27f-2", "startTime": "15:10:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "618", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 28, "arrival": {"time": "1694889166"}, "stopId": "39627"}, {"stopSequence": 29, "arrival": {"time": "1694889266"}, "stopId": "39631"}, {"stopSequence": 30, "arrival": {"time": "1694889315"}, "stopId": "49311"}, {"stopSequence": 31, "arrival": {"time": "1694889372"}, "stopId": "39634"}, {"stopSequence": 32, "arrival": {"time": "1694889397"}, "stopId": "39635"}, {"stopSequence": 33, "arrival": {"time": "1694889444"}, "stopId": "39636"}, {"stopSequence": 34, "arrival": {"time": "1694889624"}, "stopId": "39637"}, {"stopSequence": 35, "arrival": {"time": "1694889724"}, "stopId": "39940"}, {"stopSequence": 36, "arrival": {"time": "1694889886"}, "stopId": "39941"}, {"stopSequence": 37, "arrival": {"time": "1694889948"}, "stopId": "39736"}], "vehicle": {"licensePlate": "DZZG72"}, "timestamp": "1694889037"}, "vehicle": {"trip": {"tripId": "24366-701ff27f-2", "startTime": "15:10:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "618", "directionId": 0}, "position": {"latitude": -36.823685, "longitude": -73.046616, "bearing": 237.0, "odometer": 0.0, "speed": 1.1111112}, "timestamp": "1694889037", "vehicle": {"licensePlate": "DZZG72"}}}, {"id": "2f18df24-de20-468f-a51e-7ed60969f896", "tripUpdate": {"trip": {"tripId": "24261-701ff27f-2", "startTime": "15:12:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "618", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 36, "arrival": {"time": "1694889019"}, "stopId": "39767"}, {"stopSequence": 37, "arrival": {"time": "1694889063"}, "stopId": "39768"}, {"stopSequence": 38, "arrival": {"time": "1694889076"}, "stopId": "39911"}, {"stopSequence": 39, "arrival": {"time": "1694889103"}, "stopId": "39769"}, {"stopSequence": 40, "arrival": {"time": "1694889130"}, "stopId": "39910"}, {"stopSequence": 41, "arrival": {"time": "1694889168"}, "stopId": "39709"}, {"stopSequence": 42, "arrival": {"time": "1694889190"}, "stopId": "39710"}, {"stopSequence": 43, "arrival": {"time": "1694889206"}, "stopId": "39711"}, {"stopSequence": 44, "arrival": {"time": "1694889248"}, "stopId": "39712"}, {"stopSequence": 45, "arrival": {"time": "1694889268"}, "stopId": "39713"}, {"stopSequence": 46, "arrival": {"time": "1694889305"}, "stopId": "39559"}], "vehicle": {"licensePlate": "FDCP20"}, "timestamp": "1694888998"}, "vehicle": {"trip": {"tripId": "24261-701ff27f-2", "startTime": "15:12:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "618", "directionId": 1}, "position": {"latitude": -36.796467, "longitude": -73.03612, "bearing": 245.0, "odometer": 0.0, "speed": 9.722222}, "timestamp": "1694888998", "vehicle": {"licensePlate": "FDCP20"}}}, {"id": "8e07a3a4-3d24-49c4-a5d8-ea135099ebc5", "tripUpdate": {"trip": {"tripId": "24367-701ff27f-2", "startTime": "15:20:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "618", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 16, "arrival": {"time": "1694888992"}, "stopId": "39918"}, {"stopSequence": 17, "arrival": {"time": "1694889041"}, "stopId": "39513"}, {"stopSequence": 18, "arrival": {"time": "1694889080"}, "stopId": "39591"}, {"stopSequence": 19, "arrival": {"time": "1694889106"}, "stopId": "39592"}, {"stopSequence": 20, "arrival": {"time": "1694889171"}, "stopId": "39593"}, {"stopSequence": 21, "arrival": {"time": "1694889205"}, "stopId": "39594"}, {"stopSequence": 22, "arrival": {"time": "1694889336"}, "stopId": "39596"}, {"stopSequence": 23, "arrival": {"time": "1694889372"}, "stopId": "39597"}, {"stopSequence": 24, "arrival": {"time": "1694889417"}, "stopId": "39598"}, {"stopSequence": 25, "arrival": {"time": "1694889515"}, "stopId": "39599"}, {"stopSequence": 26, "arrival": {"time": "1694889590"}, "stopId": "45011"}, {"stopSequence": 27, "arrival": {"time": "1694889688"}, "stopId": "39623"}, {"stopSequence": 28, "arrival": {"time": "1694889831"}, "stopId": "39627"}, {"stopSequence": 29, "arrival": {"time": "1694889924"}, "stopId": "39631"}, {"stopSequence": 30, "arrival": {"time": "1694889970"}, "stopId": "49311"}, {"stopSequence": 31, "arrival": {"time": "1694890024"}, "stopId": "39634"}, {"stopSequence": 32, "arrival": {"time": "1694890049"}, "stopId": "39635"}, {"stopSequence": 33, "arrival": {"time": "1694890094"}, "stopId": "39636"}, {"stopSequence": 34, "arrival": {"time": "1694890269"}, "stopId": "39637"}, {"stopSequence": 35, "arrival": {"time": "1694890369"}, "stopId": "39940"}, {"stopSequence": 36, "arrival": {"time": "1694890534"}, "stopId": "39941"}, {"stopSequence": 37, "arrival": {"time": "1694890598"}, "stopId": "39736"}], "vehicle": {"licensePlate": "HWHP33"}, "timestamp": "1694888978"}, "vehicle": {"trip": {"tripId": "24367-701ff27f-2", "startTime": "15:20:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "618", "directionId": 0}, "position": {"latitude": -36.799862, "longitude": -73.03156, "bearing": 152.0, "odometer": 0.0, "speed": 7.7777777}, "timestamp": "1694888978", "vehicle": {"licensePlate": "HWHP33"}}}, {"id": "badb879e-aadc-4e03-a3c3-432280014fc1", "tripUpdate": {"trip": {"tripId": "24263-701ff27f-2", "startTime": "15:36:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "618", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 5, "arrival": {"time": "1694889015"}, "stopId": "39741"}, {"stopSequence": 6, "arrival": {"time": "1694889038"}, "stopId": "40277"}, {"stopSequence": 7, "arrival": {"time": "1694889060"}, "stopId": "39742"}, {"stopSequence": 8, "arrival": {"time": "1694889186"}, "stopId": "35697"}, {"stopSequence": 9, "arrival": {"time": "1694889292"}, "stopId": "2-Jan"}, {"stopSequence": 10, "arrival": {"time": "1694889321"}, "stopId": "42460"}, {"stopSequence": 11, "arrival": {"time": "1694889359"}, "stopId": "35690"}, {"stopSequence": 12, "arrival": {"time": "1694889457"}, "stopId": "35700"}, {"stopSequence": 13, "arrival": {"time": "1694889486"}, "stopId": "35701"}, {"stopSequence": 14, "arrival": {"time": "1694889546"}, "stopId": "35703"}, {"stopSequence": 15, "arrival": {"time": "1694889574"}, "stopId": "35704"}, {"stopSequence": 16, "arrival": {"time": "1694889585"}, "stopId": "35705"}, {"stopSequence": 17, "arrival": {"time": "1694889607"}, "stopId": "35706"}, {"stopSequence": 18, "arrival": {"time": "1694889661"}, "stopId": "35707"}, {"stopSequence": 19, "arrival": {"time": "1694889686"}, "stopId": "35708"}, {"stopSequence": 20, "arrival": {"time": "1694889710"}, "stopId": "35709"}, {"stopSequence": 21, "arrival": {"time": "1694889800"}, "stopId": "37522"}, {"stopSequence": 22, "arrival": {"time": "1694889833"}, "stopId": "39599"}, {"stopSequence": 23, "arrival": {"time": "1694889929"}, "stopId": "37465"}, {"stopSequence": 24, "arrival": {"time": "1694889974"}, "stopId": "39503"}, {"stopSequence": 25, "arrival": {"time": "1694890064"}, "stopId": "39504"}, {"stopSequence": 26, "arrival": {"time": "1694890095"}, "stopId": "39595"}, {"stopSequence": 27, "arrival": {"time": "1694890110"}, "stopId": "39759"}, {"stopSequence": 28, "arrival": {"time": "1694890169"}, "stopId": "39760"}, {"stopSequence": 29, "arrival": {"time": "1694890208"}, "stopId": "39761"}, {"stopSequence": 30, "arrival": {"time": "1694890245"}, "stopId": "39511"}, {"stopSequence": 31, "arrival": {"time": "1694890360"}, "stopId": "39763"}, {"stopSequence": 32, "arrival": {"time": "1694890402"}, "stopId": "39764"}, {"stopSequence": 33, "arrival": {"time": "1694890438"}, "stopId": "39765"}, {"stopSequence": 34, "arrival": {"time": "1694890446"}, "stopId": "39701"}, {"stopSequence": 35, "arrival": {"time": "1694890479"}, "stopId": "39766"}, {"stopSequence": 36, "arrival": {"time": "1694890513"}, "stopId": "39767"}, {"stopSequence": 37, "arrival": {"time": "1694890554"}, "stopId": "39768"}, {"stopSequence": 38, "arrival": {"time": "1694890566"}, "stopId": "39911"}, {"stopSequence": 39, "arrival": {"time": "1694890592"}, "stopId": "39769"}, {"stopSequence": 40, "arrival": {"time": "1694890618"}, "stopId": "39910"}, {"stopSequence": 41, "arrival": {"time": "1694890654"}, "stopId": "39709"}, {"stopSequence": 42, "arrival": {"time": "1694890675"}, "stopId": "39710"}, {"stopSequence": 43, "arrival": {"time": "1694890691"}, "stopId": "39711"}, {"stopSequence": 44, "arrival": {"time": "1694890732"}, "stopId": "39712"}, {"stopSequence": 45, "arrival": {"time": "1694890752"}, "stopId": "39713"}, {"stopSequence": 46, "arrival": {"time": "1694890789"}, "stopId": "39559"}], "vehicle": {"licensePlate": "HYYX78"}, "timestamp": "1694889004"}, "vehicle": {"trip": {"tripId": "24263-701ff27f-2", "startTime": "15:36:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "618", "directionId": 1}, "position": {"latitude": -36.81718, "longitude": -73.07006, "bearing": 134.0, "odometer": 0.0, "speed": 4.1666665}, "timestamp": "1694889004", "vehicle": {"licensePlate": "HYYX78"}}}, {"id": "f512e465-e6f4-4170-9e0f-b0bf1977c09d", "tripUpdate": {"trip": {"tripId": "24365-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "618", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 34, "arrival": {"time": "1694889165"}, "stopId": "39637"}, {"stopSequence": 35, "arrival": {"time": "1694889271"}, "stopId": "39940"}, {"stopSequence": 36, "arrival": {"time": "1694889440"}, "stopId": "39941"}, {"stopSequence": 37, "arrival": {"time": "1694889504"}, "stopId": "39736"}], "vehicle": {"licensePlate": "KJPT10"}, "timestamp": "1694889031"}, "vehicle": {"trip": {"tripId": "24365-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "618", "directionId": 0}, "position": {"latitude": -36.821102, "longitude": -73.06456, "bearing": 327.0, "odometer": 0.0, "speed": 15.833333}, "timestamp": "1694889031", "vehicle": {"licensePlate": "KJPT10"}}}, {"id": "749de9d5-49c9-476d-9cfa-f75cdf5adda5", "tripUpdate": {"trip": {"tripId": "24262-701ff27f-2", "startTime": "15:24:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "618", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 14, "arrival": {"time": "1694889070"}, "stopId": "35703"}, {"stopSequence": 15, "arrival": {"time": "1694889101"}, "stopId": "35704"}, {"stopSequence": 16, "arrival": {"time": "1694889112"}, "stopId": "35705"}, {"stopSequence": 17, "arrival": {"time": "1694889136"}, "stopId": "35706"}, {"stopSequence": 18, "arrival": {"time": "1694889193"}, "stopId": "35707"}, {"stopSequence": 19, "arrival": {"time": "1694889220"}, "stopId": "35708"}, {"stopSequence": 20, "arrival": {"time": "1694889245"}, "stopId": "35709"}, {"stopSequence": 21, "arrival": {"time": "1694889339"}, "stopId": "37522"}, {"stopSequence": 22, "arrival": {"time": "1694889373"}, "stopId": "39599"}, {"stopSequence": 23, "arrival": {"time": "1694889473"}, "stopId": "37465"}, {"stopSequence": 24, "arrival": {"time": "1694889519"}, "stopId": "39503"}, {"stopSequence": 25, "arrival": {"time": "1694889612"}, "stopId": "39504"}, {"stopSequence": 26, "arrival": {"time": "1694889643"}, "stopId": "39595"}, {"stopSequence": 27, "arrival": {"time": "1694889658"}, "stopId": "39759"}, {"stopSequence": 28, "arrival": {"time": "1694889717"}, "stopId": "39760"}, {"stopSequence": 29, "arrival": {"time": "1694889757"}, "stopId": "39761"}, {"stopSequence": 30, "arrival": {"time": "1694889794"}, "stopId": "39511"}, {"stopSequence": 31, "arrival": {"time": "1694889908"}, "stopId": "39763"}, {"stopSequence": 32, "arrival": {"time": "1694889950"}, "stopId": "39764"}, {"stopSequence": 33, "arrival": {"time": "1694889985"}, "stopId": "39765"}, {"stopSequence": 34, "arrival": {"time": "1694889993"}, "stopId": "39701"}, {"stopSequence": 35, "arrival": {"time": "1694890025"}, "stopId": "39766"}, {"stopSequence": 36, "arrival": {"time": "1694890059"}, "stopId": "39767"}, {"stopSequence": 37, "arrival": {"time": "1694890099"}, "stopId": "39768"}, {"stopSequence": 38, "arrival": {"time": "1694890110"}, "stopId": "39911"}, {"stopSequence": 39, "arrival": {"time": "1694890136"}, "stopId": "39769"}, {"stopSequence": 40, "arrival": {"time": "1694890160"}, "stopId": "39910"}, {"stopSequence": 41, "arrival": {"time": "1694890195"}, "stopId": "39709"}, {"stopSequence": 42, "arrival": {"time": "1694890216"}, "stopId": "39710"}, {"stopSequence": 43, "arrival": {"time": "1694890231"}, "stopId": "39711"}, {"stopSequence": 44, "arrival": {"time": "1694890270"}, "stopId": "39712"}, {"stopSequence": 45, "arrival": {"time": "1694890289"}, "stopId": "39713"}, {"stopSequence": 46, "arrival": {"time": "1694890325"}, "stopId": "39559"}], "vehicle": {"licensePlate": "YJ1867"}, "timestamp": "1694889010"}, "vehicle": {"trip": {"tripId": "24262-701ff27f-2", "startTime": "15:24:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "618", "directionId": 1}, "position": {"latitude": -36.82537, "longitude": -73.053925, "bearing": 62.0, "odometer": 0.0, "speed": 1.6666666}, "timestamp": "1694889010", "vehicle": {"licensePlate": "YJ1867"}}}, {"id": "fe774239-3720-4fc6-8845-91ac281b0b03", "tripUpdate": {"trip": {"tripId": "24460-701ff27f-2", "startTime": "15:16:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "619", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 22, "arrival": {"time": "1694889082"}, "stopId": "50031"}, {"stopSequence": 23, "arrival": {"time": "1694889109"}, "stopId": "49398"}, {"stopSequence": 24, "arrival": {"time": "1694889135"}, "stopId": "50032"}, {"stopSequence": 25, "arrival": {"time": "1694889181"}, "stopId": "39495"}, {"stopSequence": 26, "arrival": {"time": "1694889264"}, "stopId": "50033"}, {"stopSequence": 27, "arrival": {"time": "1694889310"}, "stopId": "39497"}, {"stopSequence": 28, "arrival": {"time": "1694889343"}, "stopId": "49407"}, {"stopSequence": 29, "arrival": {"time": "1694889459"}, "stopId": "37465"}, {"stopSequence": 30, "arrival": {"time": "1694889506"}, "stopId": "39503"}, {"stopSequence": 31, "arrival": {"time": "1694889599"}, "stopId": "39504"}, {"stopSequence": 32, "arrival": {"time": "1694889630"}, "stopId": "39595"}, {"stopSequence": 33, "arrival": {"time": "1694889653"}, "stopId": "39759"}, {"stopSequence": 34, "arrival": {"time": "1694889705"}, "stopId": "39760"}, {"stopSequence": 35, "arrival": {"time": "1694889744"}, "stopId": "39761"}, {"stopSequence": 36, "arrival": {"time": "1694889782"}, "stopId": "39511"}, {"stopSequence": 37, "arrival": {"time": "1694889896"}, "stopId": "39763"}, {"stopSequence": 38, "arrival": {"time": "1694889938"}, "stopId": "39764"}, {"stopSequence": 39, "arrival": {"time": "1694889973"}, "stopId": "39765"}, {"stopSequence": 40, "arrival": {"time": "1694889996"}, "stopId": "39529"}, {"stopSequence": 41, "arrival": {"time": "1694890056"}, "stopId": "39530"}, {"stopSequence": 42, "arrival": {"time": "1694890264"}, "stopId": "91159"}, {"stopSequence": 43, "arrival": {"time": "1694890539"}, "stopId": "39214"}, {"stopSequence": 44, "arrival": {"time": "1694890594"}, "stopId": "39215"}], "vehicle": {"licensePlate": "PTFH78"}, "timestamp": "1694889037"}, "vehicle": {"trip": {"tripId": "24460-701ff27f-2", "startTime": "15:16:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "619", "directionId": 0}, "position": {"latitude": -36.8298, "longitude": -73.04596, "bearing": 63.0, "odometer": 0.0, "speed": 12.222222}, "timestamp": "1694889037", "vehicle": {"licensePlate": "PTFH78"}}}, {"id": "71e1aa6a-2e80-4b2b-b527-3e01ded4c929", "tripUpdate": {"trip": {"tripId": "24600-701ff27f-2", "startTime": "14:43:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "620", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 28, "arrival": {"time": "1694889057"}, "stopId": "50036"}, {"stopSequence": 29, "arrival": {"time": "1694889183"}, "stopId": "39509"}, {"stopSequence": 30, "arrival": {"time": "1694889285"}, "stopId": "39760"}, {"stopSequence": 31, "arrival": {"time": "1694889325"}, "stopId": "39761"}, {"stopSequence": 32, "arrival": {"time": "1694889364"}, "stopId": "39511"}, {"stopSequence": 33, "arrival": {"time": "1694889482"}, "stopId": "39763"}, {"stopSequence": 34, "arrival": {"time": "1694889526"}, "stopId": "39764"}, {"stopSequence": 35, "arrival": {"time": "1694889561"}, "stopId": "39765"}, {"stopSequence": 36, "arrival": {"time": "1694889584"}, "stopId": "39529"}, {"stopSequence": 37, "arrival": {"time": "1694889646"}, "stopId": "39530"}, {"stopSequence": 38, "arrival": {"time": "1694889726"}, "stopId": "6734219"}, {"stopSequence": 39, "arrival": {"time": "1694889797"}, "stopId": "39536"}, {"stopSequence": 40, "arrival": {"time": "1694889832"}, "stopId": "16206048"}, {"stopSequence": 41, "arrival": {"time": "1694889850"}, "stopId": "39537"}, {"stopSequence": 42, "arrival": {"time": "1694889867"}, "stopId": "39428"}, {"stopSequence": 43, "arrival": {"time": "1694889887"}, "stopId": "39429"}, {"stopSequence": 44, "arrival": {"time": "1694889929"}, "stopId": "39430"}], "vehicle": {"licensePlate": "HYHS90"}, "timestamp": "1694889010"}, "vehicle": {"trip": {"tripId": "24600-701ff27f-2", "startTime": "14:43:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "620", "directionId": 1}, "position": {"latitude": -36.815037, "longitude": -73.03115, "bearing": 34.0, "odometer": 0.0, "speed": 3.0555556}, "timestamp": "1694889010", "vehicle": {"licensePlate": "HYHS90"}}}, {"id": "d52f7d21-87f1-453b-b1e3-2733151ebaae", "tripUpdate": {"trip": {"tripId": "24602-701ff27f-2", "startTime": "15:23:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "620", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 8, "arrival": {"time": "1694889191"}, "stopId": "40273"}, {"stopSequence": 9, "arrival": {"time": "1694889210"}, "stopId": "40272"}, {"stopSequence": 10, "arrival": {"time": "1694889267"}, "stopId": "16039072"}, {"stopSequence": 11, "arrival": {"time": "1694889287"}, "stopId": "35794"}, {"stopSequence": 12, "arrival": {"time": "1694889383"}, "stopId": "35796"}, {"stopSequence": 13, "arrival": {"time": "1694889432"}, "stopId": "35797"}, {"stopSequence": 14, "arrival": {"time": "1694889476"}, "stopId": "35700"}, {"stopSequence": 15, "arrival": {"time": "1694889505"}, "stopId": "35701"}, {"stopSequence": 16, "arrival": {"time": "1694889570"}, "stopId": "35703"}, {"stopSequence": 17, "arrival": {"time": "1694889593"}, "stopId": "35704"}, {"stopSequence": 18, "arrival": {"time": "1694889604"}, "stopId": "35705"}, {"stopSequence": 19, "arrival": {"time": "1694889626"}, "stopId": "35706"}, {"stopSequence": 20, "arrival": {"time": "1694889680"}, "stopId": "35707"}, {"stopSequence": 21, "arrival": {"time": "1694889705"}, "stopId": "35708"}, {"stopSequence": 22, "arrival": {"time": "1694889729"}, "stopId": "35709"}, {"stopSequence": 23, "arrival": {"time": "1694889798"}, "stopId": "38507"}, {"stopSequence": 24, "arrival": {"time": "1694889847"}, "stopId": "34473"}, {"stopSequence": 25, "arrival": {"time": "1694889890"}, "stopId": "38500"}, {"stopSequence": 26, "arrival": {"time": "1694889927"}, "stopId": "35808"}, {"stopSequence": 27, "arrival": {"time": "1694889991"}, "stopId": "35710"}, {"stopSequence": 28, "arrival": {"time": "1694890034"}, "stopId": "50036"}, {"stopSequence": 29, "arrival": {"time": "1694890150"}, "stopId": "39509"}, {"stopSequence": 30, "arrival": {"time": "1694890245"}, "stopId": "39760"}, {"stopSequence": 31, "arrival": {"time": "1694890284"}, "stopId": "39761"}, {"stopSequence": 32, "arrival": {"time": "1694890321"}, "stopId": "39511"}, {"stopSequence": 33, "arrival": {"time": "1694890437"}, "stopId": "39763"}, {"stopSequence": 34, "arrival": {"time": "1694890480"}, "stopId": "39764"}, {"stopSequence": 35, "arrival": {"time": "1694890515"}, "stopId": "39765"}, {"stopSequence": 36, "arrival": {"time": "1694890538"}, "stopId": "39529"}, {"stopSequence": 37, "arrival": {"time": "1694890601"}, "stopId": "39530"}, {"stopSequence": 38, "arrival": {"time": "1694890683"}, "stopId": "6734219"}, {"stopSequence": 39, "arrival": {"time": "1694890757"}, "stopId": "39536"}, {"stopSequence": 40, "arrival": {"time": "1694890794"}, "stopId": "16206048"}, {"stopSequence": 41, "arrival": {"time": "1694890813"}, "stopId": "39537"}, {"stopSequence": 42, "arrival": {"time": "1694890831"}, "stopId": "39428"}, {"stopSequence": 43, "arrival": {"time": "1694890852"}, "stopId": "39429"}, {"stopSequence": 44, "arrival": {"time": "1694890897"}, "stopId": "39430"}], "vehicle": {"licensePlate": "HYVL46"}, "timestamp": "1694889010"}, "vehicle": {"trip": {"tripId": "24602-701ff27f-2", "startTime": "15:23:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "620", "directionId": 1}, "position": {"latitude": -36.827282, "longitude": -73.0703, "bearing": 326.0, "odometer": 0.0, "speed": 5.0}, "timestamp": "1694889010", "vehicle": {"licensePlate": "HYVL46"}}}, {"id": "505f544d-278c-4e22-a166-3c1d67d918b3", "tripUpdate": {"trip": {"tripId": "24668-701ff27f-2", "startTime": "15:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "620", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 39, "arrival": {"time": "1694889187"}, "stopId": "49478"}], "vehicle": {"licensePlate": "KTFG56"}, "timestamp": "1694889006"}, "vehicle": {"trip": {"tripId": "24668-701ff27f-2", "startTime": "15:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "620", "directionId": 0}, "position": {"latitude": -36.80801, "longitude": -73.07789, "bearing": 316.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889006", "vehicle": {"licensePlate": "KTFG56"}}}, {"id": "9ba7b984-ccb9-416c-83af-70ebdd8b0da4", "tripUpdate": {"trip": {"tripId": "24601-701ff27f-2", "startTime": "15:03:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "620", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 20, "arrival": {"time": "1694889040"}, "stopId": "35707"}, {"stopSequence": 21, "arrival": {"time": "1694889067"}, "stopId": "35708"}, {"stopSequence": 22, "arrival": {"time": "1694889092"}, "stopId": "35709"}, {"stopSequence": 23, "arrival": {"time": "1694889167"}, "stopId": "38507"}, {"stopSequence": 24, "arrival": {"time": "1694889219"}, "stopId": "34473"}, {"stopSequence": 25, "arrival": {"time": "1694889265"}, "stopId": "38500"}, {"stopSequence": 26, "arrival": {"time": "1694889303"}, "stopId": "35808"}, {"stopSequence": 27, "arrival": {"time": "1694889370"}, "stopId": "35710"}, {"stopSequence": 28, "arrival": {"time": "1694889415"}, "stopId": "50036"}, {"stopSequence": 29, "arrival": {"time": "1694889534"}, "stopId": "39509"}, {"stopSequence": 30, "arrival": {"time": "1694889631"}, "stopId": "39760"}, {"stopSequence": 31, "arrival": {"time": "1694889670"}, "stopId": "39761"}, {"stopSequence": 32, "arrival": {"time": "1694889708"}, "stopId": "39511"}, {"stopSequence": 33, "arrival": {"time": "1694889822"}, "stopId": "39763"}, {"stopSequence": 34, "arrival": {"time": "1694889864"}, "stopId": "39764"}, {"stopSequence": 35, "arrival": {"time": "1694889899"}, "stopId": "39765"}, {"stopSequence": 36, "arrival": {"time": "1694889922"}, "stopId": "39529"}, {"stopSequence": 37, "arrival": {"time": "1694889982"}, "stopId": "39530"}, {"stopSequence": 38, "arrival": {"time": "1694890062"}, "stopId": "6734219"}, {"stopSequence": 39, "arrival": {"time": "1694890132"}, "stopId": "39536"}, {"stopSequence": 40, "arrival": {"time": "1694890167"}, "stopId": "16206048"}, {"stopSequence": 41, "arrival": {"time": "1694890185"}, "stopId": "39537"}, {"stopSequence": 42, "arrival": {"time": "1694890202"}, "stopId": "39428"}, {"stopSequence": 43, "arrival": {"time": "1694890222"}, "stopId": "39429"}, {"stopSequence": 44, "arrival": {"time": "1694890264"}, "stopId": "39430"}], "vehicle": {"licensePlate": "LBDS25"}, "timestamp": "1694888988"}, "vehicle": {"trip": {"tripId": "24601-701ff27f-2", "startTime": "15:03:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "620", "directionId": 1}, "position": {"latitude": -36.82277, "longitude": -73.04755, "bearing": 60.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888988", "vehicle": {"licensePlate": "LBDS25"}}}, {"id": "73c2b6df-e2c9-4354-8ad1-4f6e3888d461", "tripUpdate": {"trip": {"tripId": "24669-701ff27f-2", "startTime": "15:16:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "620", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 30, "arrival": {"time": "1694889132"}, "stopId": "40268"}, {"stopSequence": 31, "arrival": {"time": "1694889206"}, "stopId": "40269"}, {"stopSequence": 32, "arrival": {"time": "1694889302"}, "stopId": "40274"}, {"stopSequence": 33, "arrival": {"time": "1694889326"}, "stopId": "40275"}, {"stopSequence": 34, "arrival": {"time": "1694889384"}, "stopId": "40277"}, {"stopSequence": 35, "arrival": {"time": "1694889445"}, "stopId": "39940"}, {"stopSequence": 36, "arrival": {"time": "1694889543"}, "stopId": "40279"}, {"stopSequence": 37, "arrival": {"time": "1694889603"}, "stopId": "49319"}, {"stopSequence": 38, "arrival": {"time": "1694889666"}, "stopId": "39641"}, {"stopSequence": 39, "arrival": {"time": "1694889882"}, "stopId": "49478"}], "vehicle": {"licensePlate": "RSZG37"}, "timestamp": "1694889012"}, "vehicle": {"trip": {"tripId": "24669-701ff27f-2", "startTime": "15:16:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "620", "directionId": 0}, "position": {"latitude": -36.82777, "longitude": -73.06978, "bearing": 140.0, "odometer": 0.0, "speed": 6.111111}, "timestamp": "1694889012", "vehicle": {"licensePlate": "RSZG37"}}}, {"id": "243dca6a-0a93-40aa-a0e9-ef6c76059551", "tripUpdate": {"trip": {"tripId": "24745-701ff27f-2", "startTime": "15:16:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "621", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 36, "arrival": {"time": "1694889056"}, "stopId": "39641"}, {"stopSequence": 37, "arrival": {"time": "1694889094"}, "stopId": "39642"}, {"stopSequence": 38, "arrival": {"time": "1694889358"}, "stopId": "39795"}, {"stopSequence": 39, "arrival": {"time": "1694889417"}, "stopId": "42642"}, {"stopSequence": 40, "arrival": {"time": "1694889450"}, "stopId": "42643"}, {"stopSequence": 41, "arrival": {"time": "1694889478"}, "stopId": "42644"}, {"stopSequence": 42, "arrival": {"time": "1694889498"}, "stopId": "42645"}, {"stopSequence": 43, "arrival": {"time": "1694889576"}, "stopId": "42532"}, {"stopSequence": 44, "arrival": {"time": "1694889748"}, "stopId": "40249"}, {"stopSequence": 45, "arrival": {"time": "1694889788"}, "stopId": "40250"}, {"stopSequence": 46, "arrival": {"time": "1694889811"}, "stopId": "40251"}, {"stopSequence": 47, "arrival": {"time": "1694889889"}, "stopId": "36699"}, {"stopSequence": 48, "arrival": {"time": "1694889917"}, "stopId": "36700"}, {"stopSequence": 49, "arrival": {"time": "1694889947"}, "stopId": "36701"}, {"stopSequence": 50, "arrival": {"time": "1694889968"}, "stopId": "36702"}, {"stopSequence": 51, "arrival": {"time": "1694890049"}, "stopId": "39140"}, {"stopSequence": 52, "arrival": {"time": "1694890111"}, "stopId": "39141"}, {"stopSequence": 53, "arrival": {"time": "1694890166"}, "stopId": "39082"}, {"stopSequence": 54, "arrival": {"time": "1694890197"}, "stopId": "40252"}, {"stopSequence": 55, "arrival": {"time": "1694890256"}, "stopId": "36693"}, {"stopSequence": 56, "arrival": {"time": "1694890270"}, "stopId": "32731"}, {"stopSequence": 57, "arrival": {"time": "1694890310"}, "stopId": "36691"}, {"stopSequence": 58, "arrival": {"time": "1694890363"}, "stopId": "36690"}, {"stopSequence": 59, "arrival": {"time": "1694890389"}, "stopId": "3890531"}, {"stopSequence": 60, "arrival": {"time": "1694890427"}, "stopId": "3890533"}], "vehicle": {"licensePlate": "CFTT38"}, "timestamp": "1694889016"}, "vehicle": {"trip": {"tripId": "24745-701ff27f-2", "startTime": "15:16:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "621", "directionId": 0}, "position": {"latitude": -36.81049, "longitude": -73.07394, "bearing": 296.0, "odometer": 0.0, "speed": 8.888889}, "timestamp": "1694889016", "vehicle": {"licensePlate": "CFTT38"}}}, {"id": "c1a75573-e24f-4049-b4ec-5d75dedc930d", "tripUpdate": {"trip": {"tripId": "24822-701ff27f-2", "startTime": "15:32:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "621", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 1, "arrival": {"time": "1694889066"}, "stopId": "40035"}, {"stopSequence": 2, "arrival": {"time": "1694889156"}, "stopId": "40036"}, {"stopSequence": 3, "arrival": {"time": "1694889218"}, "stopId": "36695"}, {"stopSequence": 4, "arrival": {"time": "1694889258"}, "stopId": "36696"}, {"stopSequence": 5, "arrival": {"time": "1694889329"}, "stopId": "39229"}, {"stopSequence": 6, "arrival": {"time": "1694889364"}, "stopId": "32587"}, {"stopSequence": 7, "arrival": {"time": "1694889394"}, "stopId": "39230"}, {"stopSequence": 8, "arrival": {"time": "1694889411"}, "stopId": "39690"}, {"stopSequence": 9, "arrival": {"time": "1694889436"}, "stopId": "39691"}, {"stopSequence": 10, "arrival": {"time": "1694889467"}, "stopId": "39692"}, {"stopSequence": 11, "arrival": {"time": "1694889484"}, "stopId": "39693"}, {"stopSequence": 12, "arrival": {"time": "1694889567"}, "stopId": "40037"}, {"stopSequence": 13, "arrival": {"time": "1694889593"}, "stopId": "40038"}, {"stopSequence": 14, "arrival": {"time": "1694889650"}, "stopId": "40039"}, {"stopSequence": 15, "arrival": {"time": "1694889726"}, "stopId": "40040"}, {"stopSequence": 16, "arrival": {"time": "1694889806"}, "stopId": "42532"}, {"stopSequence": 17, "arrival": {"time": "1694889858"}, "stopId": "42533"}, {"stopSequence": 18, "arrival": {"time": "1694889911"}, "stopId": "42534"}, {"stopSequence": 19, "arrival": {"time": "1694889949"}, "stopId": "42535"}, {"stopSequence": 20, "arrival": {"time": "1694890034"}, "stopId": "38502"}, {"stopSequence": 21, "arrival": {"time": "1694890092"}, "stopId": "38503"}, {"stopSequence": 22, "arrival": {"time": "1694890245"}, "stopId": "35691"}, {"stopSequence": 23, "arrival": {"time": "1694890284"}, "stopId": "35692"}, {"stopSequence": 24, "arrival": {"time": "1694890338"}, "stopId": "35693"}, {"stopSequence": 25, "arrival": {"time": "1694890395"}, "stopId": "35694"}, {"stopSequence": 26, "arrival": {"time": "1694890435"}, "stopId": "35695"}, {"stopSequence": 27, "arrival": {"time": "1694890481"}, "stopId": "35696"}, {"stopSequence": 28, "arrival": {"time": "1694890650"}, "stopId": "35697"}, {"stopSequence": 29, "arrival": {"time": "1694890751"}, "stopId": "2-Jan"}, {"stopSequence": 30, "arrival": {"time": "1694890787"}, "stopId": "42460"}, {"stopSequence": 31, "arrival": {"time": "1694890824"}, "stopId": "35690"}, {"stopSequence": 32, "arrival": {"time": "1694890926"}, "stopId": "35700"}, {"stopSequence": 33, "arrival": {"time": "1694890957"}, "stopId": "35701"}, {"stopSequence": 34, "arrival": {"time": "1694891027"}, "stopId": "35703"}, {"stopSequence": 35, "arrival": {"time": "1694891051"}, "stopId": "35704"}, {"stopSequence": 36, "arrival": {"time": "1694891063"}, "stopId": "35705"}, {"stopSequence": 37, "arrival": {"time": "1694891087"}, "stopId": "35706"}, {"stopSequence": 38, "arrival": {"time": "1694891147"}, "stopId": "35707"}, {"stopSequence": 39, "arrival": {"time": "1694891175"}, "stopId": "35708"}, {"stopSequence": 40, "arrival": {"time": "1694891201"}, "stopId": "35709"}, {"stopSequence": 41, "arrival": {"time": "1694891304"}, "stopId": "37522"}, {"stopSequence": 42, "arrival": {"time": "1694891342"}, "stopId": "39599"}, {"stopSequence": 43, "arrival": {"time": "1694891455"}, "stopId": "37465"}, {"stopSequence": 44, "arrival": {"time": "1694891510"}, "stopId": "39503"}, {"stopSequence": 45, "arrival": {"time": "1694891628"}, "stopId": "39504"}, {"stopSequence": 46, "arrival": {"time": "1694891659"}, "stopId": "39595"}, {"stopSequence": 47, "arrival": {"time": "1694891679"}, "stopId": "39759"}, {"stopSequence": 48, "arrival": {"time": "1694891754"}, "stopId": "39760"}, {"stopSequence": 49, "arrival": {"time": "1694891803"}, "stopId": "39761"}, {"stopSequence": 50, "arrival": {"time": "1694891850"}, "stopId": "39511"}, {"stopSequence": 51, "arrival": {"time": "1694892005"}, "stopId": "39763"}, {"stopSequence": 52, "arrival": {"time": "1694892063"}, "stopId": "39764"}, {"stopSequence": 53, "arrival": {"time": "1694892108"}, "stopId": "39765"}, {"stopSequence": 54, "arrival": {"time": "1694892143"}, "stopId": "39529"}, {"stopSequence": 55, "arrival": {"time": "1694892230"}, "stopId": "39530"}, {"stopSequence": 56, "arrival": {"time": "1694892297"}, "stopId": "40150"}, {"stopSequence": 57, "arrival": {"time": "1694892447"}, "stopId": "40152"}, {"stopSequence": 58, "arrival": {"time": "1694892511"}, "stopId": "39536"}, {"stopSequence": 59, "arrival": {"time": "1694892551"}, "stopId": "16206048"}, {"stopSequence": 60, "arrival": {"time": "1694892582"}, "stopId": "39537"}, {"stopSequence": 61, "arrival": {"time": "1694892609"}, "stopId": "40192"}, {"stopSequence": 62, "arrival": {"time": "1694892652"}, "stopId": "39429"}, {"stopSequence": 63, "arrival": {"time": "1694892709"}, "stopId": "39430"}], "vehicle": {"licensePlate": "DHTY91"}, "timestamp": "1694889002"}, "vehicle": {"trip": {"tripId": "24822-701ff27f-2", "startTime": "15:32:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "621", "directionId": 1}, "position": {"latitude": -36.801506, "longitude": -73.10311, "bearing": 292.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889002", "vehicle": {"licensePlate": "DHTY91"}}}, {"id": "4c6d49ba-40e2-4622-99ef-e11058c92781", "tripUpdate": {"trip": {"tripId": "24746-701ff27f-2", "startTime": "15:31:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "621", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 23, "arrival": {"time": "1694889018"}, "stopId": "39623"}, {"stopSequence": 24, "arrival": {"time": "1694889070"}, "stopId": "39624"}, {"stopSequence": 25, "arrival": {"time": "1694889120"}, "stopId": "39625"}, {"stopSequence": 26, "arrival": {"time": "1694889193"}, "stopId": "39628"}, {"stopSequence": 27, "arrival": {"time": "1694889273"}, "stopId": "39631"}, {"stopSequence": 28, "arrival": {"time": "1694889321"}, "stopId": "49311"}, {"stopSequence": 29, "arrival": {"time": "1694889378"}, "stopId": "39634"}, {"stopSequence": 30, "arrival": {"time": "1694889404"}, "stopId": "39635"}, {"stopSequence": 31, "arrival": {"time": "1694889450"}, "stopId": "39636"}, {"stopSequence": 32, "arrival": {"time": "1694889629"}, "stopId": "39637"}, {"stopSequence": 33, "arrival": {"time": "1694889678"}, "stopId": "49317"}, {"stopSequence": 34, "arrival": {"time": "1694889709"}, "stopId": "49318"}, {"stopSequence": 35, "arrival": {"time": "1694889774"}, "stopId": "49319"}, {"stopSequence": 36, "arrival": {"time": "1694889836"}, "stopId": "39641"}, {"stopSequence": 37, "arrival": {"time": "1694889871"}, "stopId": "39642"}, {"stopSequence": 38, "arrival": {"time": "1694890118"}, "stopId": "39795"}, {"stopSequence": 39, "arrival": {"time": "1694890174"}, "stopId": "42642"}, {"stopSequence": 40, "arrival": {"time": "1694890206"}, "stopId": "42643"}, {"stopSequence": 41, "arrival": {"time": "1694890233"}, "stopId": "42644"}, {"stopSequence": 42, "arrival": {"time": "1694890252"}, "stopId": "42645"}, {"stopSequence": 43, "arrival": {"time": "1694890329"}, "stopId": "42532"}, {"stopSequence": 44, "arrival": {"time": "1694890501"}, "stopId": "40249"}, {"stopSequence": 45, "arrival": {"time": "1694890542"}, "stopId": "40250"}, {"stopSequence": 46, "arrival": {"time": "1694890566"}, "stopId": "40251"}, {"stopSequence": 47, "arrival": {"time": "1694890646"}, "stopId": "36699"}, {"stopSequence": 48, "arrival": {"time": "1694890675"}, "stopId": "36700"}, {"stopSequence": 49, "arrival": {"time": "1694890707"}, "stopId": "36701"}, {"stopSequence": 50, "arrival": {"time": "1694890728"}, "stopId": "36702"}, {"stopSequence": 51, "arrival": {"time": "1694890814"}, "stopId": "39140"}, {"stopSequence": 52, "arrival": {"time": "1694890880"}, "stopId": "39141"}, {"stopSequence": 53, "arrival": {"time": "1694890939"}, "stopId": "39082"}, {"stopSequence": 54, "arrival": {"time": "1694890973"}, "stopId": "40252"}, {"stopSequence": 55, "arrival": {"time": "1694891038"}, "stopId": "36693"}, {"stopSequence": 56, "arrival": {"time": "1694891052"}, "stopId": "32731"}, {"stopSequence": 57, "arrival": {"time": "1694891097"}, "stopId": "36691"}, {"stopSequence": 58, "arrival": {"time": "1694891155"}, "stopId": "36690"}, {"stopSequence": 59, "arrival": {"time": "1694891185"}, "stopId": "3890531"}, {"stopSequence": 60, "arrival": {"time": "1694891227"}, "stopId": "3890533"}], "vehicle": {"licensePlate": "JBTK37"}, "timestamp": "1694889016"}, "vehicle": {"trip": {"tripId": "24746-701ff27f-2", "startTime": "15:31:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "621", "directionId": 0}, "position": {"latitude": -36.823082, "longitude": -73.04528, "bearing": 242.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889016", "vehicle": {"licensePlate": "JBTK37"}}}, {"id": "898f6aab-4502-4045-ad1e-09efd086966a", "tripUpdate": {"trip": {"tripId": "24821-701ff27f-2", "startTime": "15:17:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "621", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 28, "arrival": {"time": "1694889182"}, "stopId": "35697"}, {"stopSequence": 29, "arrival": {"time": "1694889285"}, "stopId": "2-Jan"}, {"stopSequence": 30, "arrival": {"time": "1694889321"}, "stopId": "42460"}, {"stopSequence": 31, "arrival": {"time": "1694889357"}, "stopId": "35690"}, {"stopSequence": 32, "arrival": {"time": "1694889457"}, "stopId": "35700"}, {"stopSequence": 33, "arrival": {"time": "1694889486"}, "stopId": "35701"}, {"stopSequence": 34, "arrival": {"time": "1694889551"}, "stopId": "35703"}, {"stopSequence": 35, "arrival": {"time": "1694889574"}, "stopId": "35704"}, {"stopSequence": 36, "arrival": {"time": "1694889584"}, "stopId": "35705"}, {"stopSequence": 37, "arrival": {"time": "1694889607"}, "stopId": "35706"}, {"stopSequence": 38, "arrival": {"time": "1694889661"}, "stopId": "35707"}, {"stopSequence": 39, "arrival": {"time": "1694889686"}, "stopId": "35708"}, {"stopSequence": 40, "arrival": {"time": "1694889709"}, "stopId": "35709"}, {"stopSequence": 41, "arrival": {"time": "1694889800"}, "stopId": "37522"}, {"stopSequence": 42, "arrival": {"time": "1694889832"}, "stopId": "39599"}, {"stopSequence": 43, "arrival": {"time": "1694889928"}, "stopId": "37465"}, {"stopSequence": 44, "arrival": {"time": "1694889973"}, "stopId": "39503"}, {"stopSequence": 45, "arrival": {"time": "1694890069"}, "stopId": "39504"}, {"stopSequence": 46, "arrival": {"time": "1694890095"}, "stopId": "39595"}, {"stopSequence": 47, "arrival": {"time": "1694890110"}, "stopId": "39759"}, {"stopSequence": 48, "arrival": {"time": "1694890169"}, "stopId": "39760"}, {"stopSequence": 49, "arrival": {"time": "1694890207"}, "stopId": "39761"}, {"stopSequence": 50, "arrival": {"time": "1694890243"}, "stopId": "39511"}, {"stopSequence": 51, "arrival": {"time": "1694890359"}, "stopId": "39763"}, {"stopSequence": 52, "arrival": {"time": "1694890402"}, "stopId": "39764"}, {"stopSequence": 53, "arrival": {"time": "1694890435"}, "stopId": "39765"}, {"stopSequence": 54, "arrival": {"time": "1694890460"}, "stopId": "39529"}, {"stopSequence": 55, "arrival": {"time": "1694890522"}, "stopId": "39530"}, {"stopSequence": 56, "arrival": {"time": "1694890569"}, "stopId": "40150"}, {"stopSequence": 57, "arrival": {"time": "1694890672"}, "stopId": "40152"}, {"stopSequence": 58, "arrival": {"time": "1694890715"}, "stopId": "39536"}, {"stopSequence": 59, "arrival": {"time": "1694890742"}, "stopId": "16206048"}, {"stopSequence": 60, "arrival": {"time": "1694890763"}, "stopId": "39537"}, {"stopSequence": 61, "arrival": {"time": "1694890781"}, "stopId": "40192"}, {"stopSequence": 62, "arrival": {"time": "1694890809"}, "stopId": "39429"}, {"stopSequence": 63, "arrival": {"time": "1694890846"}, "stopId": "39430"}], "vehicle": {"licensePlate": "KYDS57"}, "timestamp": "1694889012"}, "vehicle": {"trip": {"tripId": "24821-701ff27f-2", "startTime": "15:17:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "621", "directionId": 1}, "position": {"latitude": -36.815548, "longitude": -73.06733, "bearing": 174.0, "odometer": 0.0, "speed": 10.0}, "timestamp": "1694889012", "vehicle": {"licensePlate": "KYDS57"}}}, {"id": "76c5770b-69cf-4964-8c34-38e81b7ad3a6", "tripUpdate": {"trip": {"tripId": "24747-701ff27f-2", "startTime": "15:46:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "621", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 2, "arrival": {"time": "1694889010"}, "stopId": "40192"}, {"stopSequence": 3, "arrival": {"time": "1694889050"}, "stopId": "40193"}, {"stopSequence": 4, "arrival": {"time": "1694889078"}, "stopId": "40194"}, {"stopSequence": 5, "arrival": {"time": "1694889098"}, "stopId": "40195"}, {"stopSequence": 6, "arrival": {"time": "1694889124"}, "stopId": "40196"}, {"stopSequence": 7, "arrival": {"time": "1694889171"}, "stopId": "40151"}, {"stopSequence": 8, "arrival": {"time": "1694889313"}, "stopId": "39700"}, {"stopSequence": 9, "arrival": {"time": "1694889356"}, "stopId": "39701"}, {"stopSequence": 10, "arrival": {"time": "1694889395"}, "stopId": "39702"}, {"stopSequence": 11, "arrival": {"time": "1694889407"}, "stopId": "39703"}, {"stopSequence": 12, "arrival": {"time": "1694889456"}, "stopId": "39704"}, {"stopSequence": 13, "arrival": {"time": "1694889483"}, "stopId": "39918"}, {"stopSequence": 14, "arrival": {"time": "1694889528"}, "stopId": "39513"}, {"stopSequence": 15, "arrival": {"time": "1694889593"}, "stopId": "39592"}, {"stopSequence": 16, "arrival": {"time": "1694889651"}, "stopId": "39593"}, {"stopSequence": 17, "arrival": {"time": "1694889683"}, "stopId": "39594"}, {"stopSequence": 18, "arrival": {"time": "1694889808"}, "stopId": "39596"}, {"stopSequence": 19, "arrival": {"time": "1694889843"}, "stopId": "39597"}, {"stopSequence": 20, "arrival": {"time": "1694889886"}, "stopId": "39598"}, {"stopSequence": 21, "arrival": {"time": "1694889981"}, "stopId": "39599"}, {"stopSequence": 22, "arrival": {"time": "1694890055"}, "stopId": "45011"}, {"stopSequence": 23, "arrival": {"time": "1694890152"}, "stopId": "39623"}, {"stopSequence": 24, "arrival": {"time": "1694890200"}, "stopId": "39624"}, {"stopSequence": 25, "arrival": {"time": "1694890245"}, "stopId": "39625"}, {"stopSequence": 26, "arrival": {"time": "1694890313"}, "stopId": "39628"}, {"stopSequence": 27, "arrival": {"time": "1694890389"}, "stopId": "39631"}, {"stopSequence": 28, "arrival": {"time": "1694890436"}, "stopId": "49311"}, {"stopSequence": 29, "arrival": {"time": "1694890491"}, "stopId": "39634"}, {"stopSequence": 30, "arrival": {"time": "1694890516"}, "stopId": "39635"}, {"stopSequence": 31, "arrival": {"time": "1694890562"}, "stopId": "39636"}, {"stopSequence": 32, "arrival": {"time": "1694890745"}, "stopId": "39637"}, {"stopSequence": 33, "arrival": {"time": "1694890796"}, "stopId": "49317"}, {"stopSequence": 34, "arrival": {"time": "1694890828"}, "stopId": "49318"}, {"stopSequence": 35, "arrival": {"time": "1694890897"}, "stopId": "49319"}, {"stopSequence": 36, "arrival": {"time": "1694890964"}, "stopId": "39641"}, {"stopSequence": 37, "arrival": {"time": "1694891002"}, "stopId": "39642"}, {"stopSequence": 38, "arrival": {"time": "1694891280"}, "stopId": "39795"}, {"stopSequence": 39, "arrival": {"time": "1694891345"}, "stopId": "42642"}, {"stopSequence": 40, "arrival": {"time": "1694891383"}, "stopId": "42643"}, {"stopSequence": 41, "arrival": {"time": "1694891415"}, "stopId": "42644"}, {"stopSequence": 42, "arrival": {"time": "1694891438"}, "stopId": "42645"}, {"stopSequence": 43, "arrival": {"time": "1694891530"}, "stopId": "42532"}, {"stopSequence": 44, "arrival": {"time": "1694891742"}, "stopId": "40249"}, {"stopSequence": 45, "arrival": {"time": "1694891794"}, "stopId": "40250"}, {"stopSequence": 46, "arrival": {"time": "1694891824"}, "stopId": "40251"}, {"stopSequence": 47, "arrival": {"time": "1694891927"}, "stopId": "36699"}, {"stopSequence": 48, "arrival": {"time": "1694891965"}, "stopId": "36700"}, {"stopSequence": 49, "arrival": {"time": "1694892006"}, "stopId": "36701"}, {"stopSequence": 50, "arrival": {"time": "1694892035"}, "stopId": "36702"}, {"stopSequence": 51, "arrival": {"time": "1694892149"}, "stopId": "39140"}, {"stopSequence": 52, "arrival": {"time": "1694892237"}, "stopId": "39141"}, {"stopSequence": 53, "arrival": {"time": "1694892318"}, "stopId": "39082"}, {"stopSequence": 54, "arrival": {"time": "1694892365"}, "stopId": "40252"}, {"stopSequence": 55, "arrival": {"time": "1694892455"}, "stopId": "36693"}, {"stopSequence": 56, "arrival": {"time": "1694892476"}, "stopId": "32731"}, {"stopSequence": 57, "arrival": {"time": "1694892538"}, "stopId": "36691"}, {"stopSequence": 58, "arrival": {"time": "1694892622"}, "stopId": "36690"}, {"stopSequence": 59, "arrival": {"time": "1694892664"}, "stopId": "3890531"}, {"stopSequence": 60, "arrival": {"time": "1694892725"}, "stopId": "3890533"}], "vehicle": {"licensePlate": "PCTS71"}, "timestamp": "1694888994"}, "vehicle": {"trip": {"tripId": "24747-701ff27f-2", "startTime": "15:46:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "621", "directionId": 0}, "position": {"latitude": -36.79186, "longitude": -73.04567, "bearing": 352.0, "odometer": 0.0, "speed": 7.7777777}, "timestamp": "1694888994", "vehicle": {"licensePlate": "PCTS71"}}}, {"id": "d1460db6-3799-4570-bec4-15ae853588b0", "tripUpdate": {"trip": {"tripId": "24744-701ff27f-2", "startTime": "15:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "621", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 44, "arrival": {"time": "1694889184"}, "stopId": "40249"}, {"stopSequence": 45, "arrival": {"time": "1694889227"}, "stopId": "40250"}, {"stopSequence": 46, "arrival": {"time": "1694889252"}, "stopId": "40251"}, {"stopSequence": 47, "arrival": {"time": "1694889334"}, "stopId": "36699"}, {"stopSequence": 48, "arrival": {"time": "1694889363"}, "stopId": "36700"}, {"stopSequence": 49, "arrival": {"time": "1694889395"}, "stopId": "36701"}, {"stopSequence": 50, "arrival": {"time": "1694889416"}, "stopId": "36702"}, {"stopSequence": 51, "arrival": {"time": "1694889500"}, "stopId": "39140"}, {"stopSequence": 52, "arrival": {"time": "1694889563"}, "stopId": "39141"}, {"stopSequence": 53, "arrival": {"time": "1694889619"}, "stopId": "39082"}, {"stopSequence": 54, "arrival": {"time": "1694889651"}, "stopId": "40252"}, {"stopSequence": 55, "arrival": {"time": "1694889711"}, "stopId": "36693"}, {"stopSequence": 56, "arrival": {"time": "1694889724"}, "stopId": "32731"}, {"stopSequence": 57, "arrival": {"time": "1694889764"}, "stopId": "36691"}, {"stopSequence": 58, "arrival": {"time": "1694889817"}, "stopId": "36690"}, {"stopSequence": 59, "arrival": {"time": "1694889843"}, "stopId": "3890531"}, {"stopSequence": 60, "arrival": {"time": "1694889880"}, "stopId": "3890533"}], "vehicle": {"licensePlate": "RJZL16"}, "timestamp": "1694889008"}, "vehicle": {"trip": {"tripId": "24744-701ff27f-2", "startTime": "15:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "621", "directionId": 0}, "position": {"latitude": -36.799057, "longitude": -73.09686, "bearing": 308.0, "odometer": 0.0, "speed": 7.2222223}, "timestamp": "1694889008", "vehicle": {"licensePlate": "RJZL16"}}}, {"id": "42ea9384-0c4d-4efb-b193-5b7ab2a50191", "tripUpdate": {"trip": {"tripId": "24817-701ff27f-2", "startTime": "14:17:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "621", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 45, "arrival": {"time": "1694889031"}, "stopId": "39504"}, {"stopSequence": 46, "arrival": {"time": "1694889058"}, "stopId": "39595"}, {"stopSequence": 47, "arrival": {"time": "1694889075"}, "stopId": "39759"}, {"stopSequence": 48, "arrival": {"time": "1694889139"}, "stopId": "39760"}, {"stopSequence": 49, "arrival": {"time": "1694889180"}, "stopId": "39761"}, {"stopSequence": 50, "arrival": {"time": "1694889218"}, "stopId": "39511"}, {"stopSequence": 51, "arrival": {"time": "1694889339"}, "stopId": "39763"}, {"stopSequence": 52, "arrival": {"time": "1694889383"}, "stopId": "39764"}, {"stopSequence": 53, "arrival": {"time": "1694889417"}, "stopId": "39765"}, {"stopSequence": 54, "arrival": {"time": "1694889443"}, "stopId": "39529"}, {"stopSequence": 55, "arrival": {"time": "1694889505"}, "stopId": "39530"}, {"stopSequence": 56, "arrival": {"time": "1694889552"}, "stopId": "40150"}, {"stopSequence": 57, "arrival": {"time": "1694889653"}, "stopId": "40152"}, {"stopSequence": 58, "arrival": {"time": "1694889694"}, "stopId": "39536"}, {"stopSequence": 59, "arrival": {"time": "1694889720"}, "stopId": "16206048"}, {"stopSequence": 60, "arrival": {"time": "1694889740"}, "stopId": "39537"}, {"stopSequence": 61, "arrival": {"time": "1694889757"}, "stopId": "40192"}, {"stopSequence": 62, "arrival": {"time": "1694889784"}, "stopId": "39429"}, {"stopSequence": 63, "arrival": {"time": "1694889819"}, "stopId": "39430"}], "vehicle": {"licensePlate": "RPYG62"}, "timestamp": "1694888976"}, "vehicle": {"trip": {"tripId": "24817-701ff27f-2", "startTime": "14:17:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "621", "directionId": 1}, "position": {"latitude": -36.81252, "longitude": -73.03704, "bearing": 40.0, "odometer": 0.0, "speed": 11.388889}, "timestamp": "1694888976", "vehicle": {"licensePlate": "RPYG62"}}}, {"id": "c35288af-b4ad-4275-9682-2861b11c3b34", "tripUpdate": {"trip": {"tripId": "24820-701ff27f-2", "startTime": "15:02:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "621", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 35, "arrival": {"time": "1694889023"}, "stopId": "35704"}, {"stopSequence": 36, "arrival": {"time": "1694889034"}, "stopId": "35705"}, {"stopSequence": 37, "arrival": {"time": "1694889058"}, "stopId": "35706"}, {"stopSequence": 38, "arrival": {"time": "1694889117"}, "stopId": "35707"}, {"stopSequence": 39, "arrival": {"time": "1694889144"}, "stopId": "35708"}, {"stopSequence": 40, "arrival": {"time": "1694889169"}, "stopId": "35709"}, {"stopSequence": 41, "arrival": {"time": "1694889265"}, "stopId": "37522"}, {"stopSequence": 42, "arrival": {"time": "1694889299"}, "stopId": "39599"}, {"stopSequence": 43, "arrival": {"time": "1694889400"}, "stopId": "37465"}, {"stopSequence": 44, "arrival": {"time": "1694889447"}, "stopId": "39503"}, {"stopSequence": 45, "arrival": {"time": "1694889545"}, "stopId": "39504"}, {"stopSequence": 46, "arrival": {"time": "1694889571"}, "stopId": "39595"}, {"stopSequence": 47, "arrival": {"time": "1694889587"}, "stopId": "39759"}, {"stopSequence": 48, "arrival": {"time": "1694889647"}, "stopId": "39760"}, {"stopSequence": 49, "arrival": {"time": "1694889686"}, "stopId": "39761"}, {"stopSequence": 50, "arrival": {"time": "1694889722"}, "stopId": "39511"}, {"stopSequence": 51, "arrival": {"time": "1694889838"}, "stopId": "39763"}, {"stopSequence": 52, "arrival": {"time": "1694889880"}, "stopId": "39764"}, {"stopSequence": 53, "arrival": {"time": "1694889913"}, "stopId": "39765"}, {"stopSequence": 54, "arrival": {"time": "1694889938"}, "stopId": "39529"}, {"stopSequence": 55, "arrival": {"time": "1694889998"}, "stopId": "39530"}, {"stopSequence": 56, "arrival": {"time": "1694890044"}, "stopId": "40150"}, {"stopSequence": 57, "arrival": {"time": "1694890144"}, "stopId": "40152"}, {"stopSequence": 58, "arrival": {"time": "1694890185"}, "stopId": "39536"}, {"stopSequence": 59, "arrival": {"time": "1694890210"}, "stopId": "16206048"}, {"stopSequence": 60, "arrival": {"time": "1694890230"}, "stopId": "39537"}, {"stopSequence": 61, "arrival": {"time": "1694890247"}, "stopId": "40192"}, {"stopSequence": 62, "arrival": {"time": "1694890274"}, "stopId": "39429"}, {"stopSequence": 63, "arrival": {"time": "1694890309"}, "stopId": "39430"}], "vehicle": {"licensePlate": "SVZW59"}, "timestamp": "1694889022"}, "vehicle": {"trip": {"tripId": "24820-701ff27f-2", "startTime": "15:02:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "621", "directionId": 1}, "position": {"latitude": -36.823593, "longitude": -73.04964, "bearing": 62.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889022", "vehicle": {"licensePlate": "SVZW59"}}}, {"id": "43ab0a05-2718-4484-b371-2da96d2758d6", "tripUpdate": {"trip": {"tripId": "24945-701ff27f-2", "startTime": "15:41:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "622", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 15, "arrival": {"time": "1694889006"}, "stopId": "39592"}, {"stopSequence": 16, "arrival": {"time": "1694889076"}, "stopId": "39593"}, {"stopSequence": 17, "arrival": {"time": "1694889109"}, "stopId": "39594"}, {"stopSequence": 18, "arrival": {"time": "1694889243"}, "stopId": "39596"}, {"stopSequence": 19, "arrival": {"time": "1694889276"}, "stopId": "39597"}, {"stopSequence": 20, "arrival": {"time": "1694889326"}, "stopId": "39598"}, {"stopSequence": 21, "arrival": {"time": "1694889426"}, "stopId": "39599"}, {"stopSequence": 22, "arrival": {"time": "1694889502"}, "stopId": "45011"}, {"stopSequence": 23, "arrival": {"time": "1694889601"}, "stopId": "39623"}, {"stopSequence": 24, "arrival": {"time": "1694889649"}, "stopId": "39624"}, {"stopSequence": 25, "arrival": {"time": "1694889695"}, "stopId": "39625"}, {"stopSequence": 26, "arrival": {"time": "1694889763"}, "stopId": "39628"}, {"stopSequence": 27, "arrival": {"time": "1694889891"}, "stopId": "15879953"}, {"stopSequence": 28, "arrival": {"time": "1694889912"}, "stopId": "35746"}, {"stopSequence": 29, "arrival": {"time": "1694890043"}, "stopId": "40272"}, {"stopSequence": 30, "arrival": {"time": "1694890659"}, "stopId": "6734217"}, {"stopSequence": 31, "arrival": {"time": "1694890872"}, "stopId": "40257"}, {"stopSequence": 32, "arrival": {"time": "1694890911"}, "stopId": "40256"}, {"stopSequence": 33, "arrival": {"time": "1694890963"}, "stopId": "40255"}, {"stopSequence": 34, "arrival": {"time": "1694891381"}, "stopId": "39139"}, {"stopSequence": 35, "arrival": {"time": "1694891456"}, "stopId": "32587"}, {"stopSequence": 36, "arrival": {"time": "1694891486"}, "stopId": "39230"}, {"stopSequence": 37, "arrival": {"time": "1694891508"}, "stopId": "36703"}], "vehicle": {"licensePlate": "DDBD91"}, "timestamp": "1694889000"}, "vehicle": {"trip": {"tripId": "24945-701ff27f-2", "startTime": "15:41:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "622", "directionId": 0}, "position": {"latitude": -36.803757, "longitude": -73.03019, "bearing": 202.0, "odometer": 0.0, "speed": 4.1666665}, "timestamp": "1694889000", "vehicle": {"licensePlate": "DDBD91"}}}, {"id": "8ab55ded-be22-4c2a-be52-eb4b0489034d", "tripUpdate": {"trip": {"tripId": "24886-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "622", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 31, "arrival": {"time": "1694888996"}, "stopId": "39763"}, {"stopSequence": 32, "arrival": {"time": "1694889033"}, "stopId": "39764"}, {"stopSequence": 33, "arrival": {"time": "1694889072"}, "stopId": "39765"}, {"stopSequence": 34, "arrival": {"time": "1694889096"}, "stopId": "39529"}, {"stopSequence": 35, "arrival": {"time": "1694889170"}, "stopId": "39530"}, {"stopSequence": 36, "arrival": {"time": "1694889391"}, "stopId": "91159"}, {"stopSequence": 37, "arrival": {"time": "1694889494"}, "stopId": "39584"}, {"stopSequence": 38, "arrival": {"time": "1694889540"}, "stopId": "39585"}, {"stopSequence": 39, "arrival": {"time": "1694889552"}, "stopId": "38024"}, {"stopSequence": 40, "arrival": {"time": "1694889591"}, "stopId": "39536"}, {"stopSequence": 41, "arrival": {"time": "1694889627"}, "stopId": "16206048"}, {"stopSequence": 42, "arrival": {"time": "1694889646"}, "stopId": "39537"}, {"stopSequence": 43, "arrival": {"time": "1694889663"}, "stopId": "39428"}, {"stopSequence": 44, "arrival": {"time": "1694889690"}, "stopId": "39429"}, {"stopSequence": 45, "arrival": {"time": "1694889725"}, "stopId": "39430"}], "vehicle": {"licensePlate": "JZZZ63"}, "timestamp": "1694888974"}, "vehicle": {"trip": {"tripId": "24886-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "622", "directionId": 1}, "position": {"latitude": -36.79996, "longitude": -73.03136, "bearing": 332.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888974", "vehicle": {"licensePlate": "JZZZ63"}}}, {"id": "94b12a5e-d8d5-49d5-bfe6-3da767927dbb", "tripUpdate": {"trip": {"tripId": "24887-701ff27f-2", "startTime": "15:20:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "622", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 14, "arrival": {"time": "1694888981"}, "stopId": "35703"}, {"stopSequence": 15, "arrival": {"time": "1694889006"}, "stopId": "35704"}, {"stopSequence": 16, "arrival": {"time": "1694889018"}, "stopId": "35705"}, {"stopSequence": 17, "arrival": {"time": "1694889042"}, "stopId": "35706"}, {"stopSequence": 18, "arrival": {"time": "1694889097"}, "stopId": "35707"}, {"stopSequence": 19, "arrival": {"time": "1694889127"}, "stopId": "35708"}, {"stopSequence": 20, "arrival": {"time": "1694889152"}, "stopId": "35709"}, {"stopSequence": 21, "arrival": {"time": "1694889248"}, "stopId": "37522"}, {"stopSequence": 22, "arrival": {"time": "1694889282"}, "stopId": "39599"}, {"stopSequence": 23, "arrival": {"time": "1694889382"}, "stopId": "37465"}, {"stopSequence": 24, "arrival": {"time": "1694889429"}, "stopId": "39503"}, {"stopSequence": 25, "arrival": {"time": "1694889522"}, "stopId": "39504"}, {"stopSequence": 26, "arrival": {"time": "1694889547"}, "stopId": "39595"}, {"stopSequence": 27, "arrival": {"time": "1694889569"}, "stopId": "39759"}, {"stopSequence": 28, "arrival": {"time": "1694889628"}, "stopId": "39760"}, {"stopSequence": 29, "arrival": {"time": "1694889667"}, "stopId": "39761"}, {"stopSequence": 30, "arrival": {"time": "1694889705"}, "stopId": "39511"}, {"stopSequence": 31, "arrival": {"time": "1694889819"}, "stopId": "39763"}, {"stopSequence": 32, "arrival": {"time": "1694889853"}, "stopId": "39764"}, {"stopSequence": 33, "arrival": {"time": "1694889888"}, "stopId": "39765"}, {"stopSequence": 34, "arrival": {"time": "1694889911"}, "stopId": "39529"}, {"stopSequence": 35, "arrival": {"time": "1694889979"}, "stopId": "39530"}, {"stopSequence": 36, "arrival": {"time": "1694890189"}, "stopId": "91159"}, {"stopSequence": 37, "arrival": {"time": "1694890290"}, "stopId": "39584"}, {"stopSequence": 38, "arrival": {"time": "1694890335"}, "stopId": "39585"}, {"stopSequence": 39, "arrival": {"time": "1694890347"}, "stopId": "38024"}, {"stopSequence": 40, "arrival": {"time": "1694890386"}, "stopId": "39536"}, {"stopSequence": 41, "arrival": {"time": "1694890422"}, "stopId": "16206048"}, {"stopSequence": 42, "arrival": {"time": "1694890441"}, "stopId": "39537"}, {"stopSequence": 43, "arrival": {"time": "1694890458"}, "stopId": "39428"}, {"stopSequence": 44, "arrival": {"time": "1694890485"}, "stopId": "39429"}, {"stopSequence": 45, "arrival": {"time": "1694890521"}, "stopId": "39430"}], "vehicle": {"licensePlate": "KTFG58"}, "timestamp": "1694888980"}, "vehicle": {"trip": {"tripId": "24887-701ff27f-2", "startTime": "15:20:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "622", "directionId": 1}, "position": {"latitude": -36.82417, "longitude": -73.05079, "bearing": 62.0, "odometer": 0.0, "speed": 8.055555}, "timestamp": "1694888980", "vehicle": {"licensePlate": "KTFG58"}}}, {"id": "90434c2f-965a-4d1a-99d6-53b00e902996", "tripUpdate": {"trip": {"tripId": "24943-701ff27f-2", "startTime": "15:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "622", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 34, "arrival": {"time": "1694889131"}, "stopId": "39139"}, {"stopSequence": 35, "arrival": {"time": "1694889199"}, "stopId": "32587"}, {"stopSequence": 36, "arrival": {"time": "1694889225"}, "stopId": "39230"}, {"stopSequence": 37, "arrival": {"time": "1694889244"}, "stopId": "36703"}], "vehicle": {"licensePlate": "KVGR49"}, "timestamp": "1694888976"}, "vehicle": {"trip": {"tripId": "24943-701ff27f-2", "startTime": "15:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "622", "directionId": 0}, "position": {"latitude": -36.797737, "longitude": -73.11481, "bearing": 290.0, "odometer": 0.0, "speed": 9.444445}, "timestamp": "1694888976", "vehicle": {"licensePlate": "KVGR49"}}}, {"id": "471daeb5-934a-41b4-81a3-8833099aedce", "tripUpdate": {"trip": {"tripId": "24888-701ff27f-2", "startTime": "15:40:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "622", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 3, "arrival": {"time": "1694889188"}, "stopId": "39141"}, {"stopSequence": 4, "arrival": {"time": "1694889247"}, "stopId": "39082"}, {"stopSequence": 5, "arrival": {"time": "1694889281"}, "stopId": "40252"}, {"stopSequence": 6, "arrival": {"time": "1694889343"}, "stopId": "36693"}, {"stopSequence": 7, "arrival": {"time": "1694889360"}, "stopId": "32731"}, {"stopSequence": 8, "arrival": {"time": "1694890312"}, "stopId": "40272"}, {"stopSequence": 9, "arrival": {"time": "1694890396"}, "stopId": "2-Jan"}, {"stopSequence": 10, "arrival": {"time": "1694890429"}, "stopId": "42460"}, {"stopSequence": 11, "arrival": {"time": "1694890471"}, "stopId": "35690"}, {"stopSequence": 12, "arrival": {"time": "1694890568"}, "stopId": "35700"}, {"stopSequence": 13, "arrival": {"time": "1694890597"}, "stopId": "35701"}, {"stopSequence": 14, "arrival": {"time": "1694890663"}, "stopId": "35703"}, {"stopSequence": 15, "arrival": {"time": "1694890687"}, "stopId": "35704"}, {"stopSequence": 16, "arrival": {"time": "1694890698"}, "stopId": "35705"}, {"stopSequence": 17, "arrival": {"time": "1694890721"}, "stopId": "35706"}, {"stopSequence": 18, "arrival": {"time": "1694890774"}, "stopId": "35707"}, {"stopSequence": 19, "arrival": {"time": "1694890803"}, "stopId": "35708"}, {"stopSequence": 20, "arrival": {"time": "1694890828"}, "stopId": "35709"}, {"stopSequence": 21, "arrival": {"time": "1694890924"}, "stopId": "37522"}, {"stopSequence": 22, "arrival": {"time": "1694890959"}, "stopId": "39599"}, {"stopSequence": 23, "arrival": {"time": "1694891065"}, "stopId": "37465"}, {"stopSequence": 24, "arrival": {"time": "1694891115"}, "stopId": "39503"}, {"stopSequence": 25, "arrival": {"time": "1694891217"}, "stopId": "39504"}, {"stopSequence": 26, "arrival": {"time": "1694891245"}, "stopId": "39595"}, {"stopSequence": 27, "arrival": {"time": "1694891270"}, "stopId": "39759"}, {"stopSequence": 28, "arrival": {"time": "1694891338"}, "stopId": "39760"}, {"stopSequence": 29, "arrival": {"time": "1694891383"}, "stopId": "39761"}, {"stopSequence": 30, "arrival": {"time": "1694891427"}, "stopId": "39511"}, {"stopSequence": 31, "arrival": {"time": "1694891565"}, "stopId": "39763"}, {"stopSequence": 32, "arrival": {"time": "1694891606"}, "stopId": "39764"}, {"stopSequence": 33, "arrival": {"time": "1694891650"}, "stopId": "39765"}, {"stopSequence": 34, "arrival": {"time": "1694891679"}, "stopId": "39529"}, {"stopSequence": 35, "arrival": {"time": "1694891766"}, "stopId": "39530"}, {"stopSequence": 36, "arrival": {"time": "1694892045"}, "stopId": "91159"}, {"stopSequence": 37, "arrival": {"time": "1694892187"}, "stopId": "39584"}, {"stopSequence": 38, "arrival": {"time": "1694892251"}, "stopId": "39585"}, {"stopSequence": 39, "arrival": {"time": "1694892268"}, "stopId": "38024"}, {"stopSequence": 40, "arrival": {"time": "1694892325"}, "stopId": "39536"}, {"stopSequence": 41, "arrival": {"time": "1694892378"}, "stopId": "16206048"}, {"stopSequence": 42, "arrival": {"time": "1694892406"}, "stopId": "39537"}, {"stopSequence": 43, "arrival": {"time": "1694892431"}, "stopId": "39428"}, {"stopSequence": 44, "arrival": {"time": "1694892473"}, "stopId": "39429"}, {"stopSequence": 45, "arrival": {"time": "1694892527"}, "stopId": "39430"}], "vehicle": {"licensePlate": "PGYF76"}, "timestamp": "1694889004"}, "vehicle": {"trip": {"tripId": "24888-701ff27f-2", "startTime": "15:40:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "622", "directionId": 1}, "position": {"latitude": -36.794567, "longitude": -73.11801, "bearing": 182.0, "odometer": 0.0, "speed": 5.8333335}, "timestamp": "1694889004", "vehicle": {"licensePlate": "PGYF76"}}}, {"id": "0a1644b2-256d-4ac5-a996-d1738535a9cb", "tripUpdate": {"trip": {"tripId": "24944-701ff27f-2", "startTime": "15:21:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "622", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 25, "arrival": {"time": "1694889040"}, "stopId": "39625"}, {"stopSequence": 26, "arrival": {"time": "1694889114"}, "stopId": "39628"}, {"stopSequence": 27, "arrival": {"time": "1694889250"}, "stopId": "15879953"}, {"stopSequence": 28, "arrival": {"time": "1694889272"}, "stopId": "35746"}, {"stopSequence": 29, "arrival": {"time": "1694889410"}, "stopId": "40272"}, {"stopSequence": 30, "arrival": {"time": "1694890025"}, "stopId": "6734217"}, {"stopSequence": 31, "arrival": {"time": "1694890226"}, "stopId": "40257"}, {"stopSequence": 32, "arrival": {"time": "1694890263"}, "stopId": "40256"}, {"stopSequence": 33, "arrival": {"time": "1694890311"}, "stopId": "40255"}, {"stopSequence": 34, "arrival": {"time": "1694890690"}, "stopId": "39139"}, {"stopSequence": 35, "arrival": {"time": "1694890756"}, "stopId": "32587"}, {"stopSequence": 36, "arrival": {"time": "1694890782"}, "stopId": "39230"}, {"stopSequence": 37, "arrival": {"time": "1694890801"}, "stopId": "36703"}], "vehicle": {"licensePlate": "ZJ7262"}, "timestamp": "1694889006"}, "vehicle": {"trip": {"tripId": "24944-701ff27f-2", "startTime": "15:21:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "622", "directionId": 0}, "position": {"latitude": -36.82453, "longitude": -73.04858, "bearing": 240.0, "odometer": 0.0, "speed": 8.055555}, "timestamp": "1694889006", "vehicle": {"licensePlate": "ZJ7262"}}}, {"id": "6a4b49df-cab9-4b7e-b595-d287be5785e5", "tripUpdate": {"trip": {"tripId": "742beaf6-4-701ff27f-2", "startTime": "15:14:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "626", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 19, "arrival": {"time": "1694888959"}, "stopId": "35203"}, {"stopSequence": 20, "arrival": {"time": "1694889029"}, "stopId": "1-Feb"}, {"stopSequence": 21, "arrival": {"time": "1694889078"}, "stopId": "1-Mar"}, {"stopSequence": 22, "arrival": {"time": "1694889112"}, "stopId": "37465"}, {"stopSequence": 23, "arrival": {"time": "1694889215"}, "stopId": "39599"}, {"stopSequence": 24, "arrival": {"time": "1694889293"}, "stopId": "45011"}, {"stopSequence": 25, "arrival": {"time": "1694889394"}, "stopId": "39623"}, {"stopSequence": 26, "arrival": {"time": "1694889443"}, "stopId": "39624"}, {"stopSequence": 27, "arrival": {"time": "1694889508"}, "stopId": "90000"}, {"stopSequence": 28, "arrival": {"time": "1694889558"}, "stopId": "39628"}, {"stopSequence": 29, "arrival": {"time": "1694889634"}, "stopId": "39631"}, {"stopSequence": 30, "arrival": {"time": "1694889680"}, "stopId": "49311"}, {"stopSequence": 31, "arrival": {"time": "1694889735"}, "stopId": "39634"}, {"stopSequence": 32, "arrival": {"time": "1694889760"}, "stopId": "39635"}, {"stopSequence": 33, "arrival": {"time": "1694889805"}, "stopId": "39636"}, {"stopSequence": 34, "arrival": {"time": "1694889857"}, "stopId": "49503"}, {"stopSequence": 35, "arrival": {"time": "1694889980"}, "stopId": "39637"}, {"stopSequence": 36, "arrival": {"time": "1694890028"}, "stopId": "49317"}, {"stopSequence": 37, "arrival": {"time": "1694890059"}, "stopId": "49318"}, {"stopSequence": 38, "arrival": {"time": "1694890123"}, "stopId": "49319"}, {"stopSequence": 39, "arrival": {"time": "1694890185"}, "stopId": "39641"}, {"stopSequence": 40, "arrival": {"time": "1694890220"}, "stopId": "39642"}, {"stopSequence": 41, "arrival": {"time": "1694890496"}, "stopId": "49325"}, {"stopSequence": 42, "arrival": {"time": "1694890569"}, "stopId": "40711"}, {"stopSequence": 43, "arrival": {"time": "1694890612"}, "stopId": "40712"}, {"stopSequence": 44, "arrival": {"time": "1694890645"}, "stopId": "40713"}, {"stopSequence": 45, "arrival": {"time": "1694890663"}, "stopId": "40714"}, {"stopSequence": 46, "arrival": {"time": "1694890728"}, "stopId": "8606049"}, {"stopSequence": 47, "arrival": {"time": "1694890776"}, "stopId": "37428"}, {"stopSequence": 48, "arrival": {"time": "1694890818"}, "stopId": "37429"}, {"stopSequence": 49, "arrival": {"time": "1694890852"}, "stopId": "37430"}, {"stopSequence": 50, "arrival": {"time": "1694890886"}, "stopId": "37431"}, {"stopSequence": 51, "arrival": {"time": "1694890917"}, "stopId": "37432"}, {"stopSequence": 52, "arrival": {"time": "1694890989"}, "stopId": "40720"}, {"stopSequence": 53, "arrival": {"time": "1694891002"}, "stopId": "40721"}, {"stopSequence": 54, "arrival": {"time": "1694891046"}, "stopId": "40722"}, {"stopSequence": 55, "arrival": {"time": "1694891052"}, "stopId": "40723"}, {"stopSequence": 56, "arrival": {"time": "1694891088"}, "stopId": "40724"}, {"stopSequence": 57, "arrival": {"time": "1694891167"}, "stopId": "40725"}, {"stopSequence": 58, "arrival": {"time": "1694891199"}, "stopId": "37435"}, {"stopSequence": 59, "arrival": {"time": "1694891247"}, "stopId": "39658"}, {"stopSequence": 60, "arrival": {"time": "1694891295"}, "stopId": "39659"}, {"stopSequence": 61, "arrival": {"time": "1694891321"}, "stopId": "39660"}, {"stopSequence": 62, "arrival": {"time": "1694891361"}, "stopId": "39661"}, {"stopSequence": 63, "arrival": {"time": "1694891415"}, "stopId": "39662"}, {"stopSequence": 64, "arrival": {"time": "1694891483"}, "stopId": "39663"}, {"stopSequence": 65, "arrival": {"time": "1694891538"}, "stopId": "49341"}, {"stopSequence": 66, "arrival": {"time": "1694891587"}, "stopId": "49342"}, {"stopSequence": 67, "arrival": {"time": "1694891700"}, "stopId": "49343"}, {"stopSequence": 68, "arrival": {"time": "1694893476"}, "stopId": "40735"}, {"stopSequence": 69, "arrival": {"time": "1694893699"}, "stopId": "40736"}], "vehicle": {"licensePlate": "DXXD507"}, "timestamp": "1694888956"}, "vehicle": {"trip": {"tripId": "742beaf6-4-701ff27f-2", "startTime": "15:14:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "626", "directionId": 0}, "position": {"latitude": -36.814754, "longitude": -73.03021, "bearing": 294.0, "odometer": 0.0, "speed": 12.4}, "timestamp": "1694888956", "vehicle": {"licensePlate": "DXXD507"}}}, {"id": "5ffaee9c-8cfa-472d-b4ac-185d550277ed", "tripUpdate": {"trip": {"tripId": "d217be94-b-701ff27f-2", "startTime": "13:40:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "626", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 52, "arrival": {"time": "1694888952"}, "stopId": "50034"}, {"stopSequence": 53, "arrival": {"time": "1694888996"}, "stopId": "40903"}, {"stopSequence": 54, "arrival": {"time": "1694889029"}, "stopId": "40904"}, {"stopSequence": 55, "arrival": {"time": "1694889159"}, "stopId": "35815"}, {"stopSequence": 56, "arrival": {"time": "1694889189"}, "stopId": "35816"}, {"stopSequence": 57, "arrival": {"time": "1694889194"}, "stopId": "35817"}, {"stopSequence": 58, "arrival": {"time": "1694889237"}, "stopId": "35818"}, {"stopSequence": 59, "arrival": {"time": "1694889276"}, "stopId": "35819"}, {"stopSequence": 60, "arrival": {"time": "1694889466"}, "stopId": "35822"}, {"stopSequence": 61, "arrival": {"time": "1694889506"}, "stopId": "35823"}, {"stopSequence": 62, "arrival": {"time": "1694889569"}, "stopId": "35723"}, {"stopSequence": 63, "arrival": {"time": "1694889614"}, "stopId": "35722"}, {"stopSequence": 64, "arrival": {"time": "1694889693"}, "stopId": "35826"}, {"stopSequence": 65, "arrival": {"time": "1694889759"}, "stopId": "35548"}, {"stopSequence": 66, "arrival": {"time": "1694889844"}, "stopId": "35547"}, {"stopSequence": 67, "arrival": {"time": "1694889933"}, "stopId": "50003"}], "vehicle": {"licensePlate": "FSJW61"}, "timestamp": "1694888910"}, "vehicle": {"trip": {"tripId": "d217be94-b-701ff27f-2", "startTime": "13:40:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "626", "directionId": 1}, "position": {"latitude": -36.81938, "longitude": -73.03668, "bearing": 149.0, "odometer": 0.0, "speed": 12.4}, "timestamp": "1694888910", "vehicle": {"licensePlate": "FSJW61"}}}, {"id": "da4e6172-8c11-4d08-b23a-5ad634329898", "tripUpdate": {"trip": {"tripId": "85b9f14e-1-701ff27f-2", "startTime": "13:28:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "626", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 55, "arrival": {"time": "1694888908"}, "stopId": "35815"}, {"stopSequence": 56, "arrival": {"time": "1694888939"}, "stopId": "35816"}, {"stopSequence": 57, "arrival": {"time": "1694888944"}, "stopId": "35817"}, {"stopSequence": 58, "arrival": {"time": "1694888989"}, "stopId": "35818"}, {"stopSequence": 59, "arrival": {"time": "1694889029"}, "stopId": "35819"}, {"stopSequence": 60, "arrival": {"time": "1694889226"}, "stopId": "35822"}, {"stopSequence": 61, "arrival": {"time": "1694889267"}, "stopId": "35823"}, {"stopSequence": 62, "arrival": {"time": "1694889332"}, "stopId": "35723"}, {"stopSequence": 63, "arrival": {"time": "1694889377"}, "stopId": "35722"}, {"stopSequence": 64, "arrival": {"time": "1694889458"}, "stopId": "35826"}, {"stopSequence": 65, "arrival": {"time": "1694889525"}, "stopId": "35548"}, {"stopSequence": 66, "arrival": {"time": "1694889611"}, "stopId": "35547"}, {"stopSequence": 67, "arrival": {"time": "1694889701"}, "stopId": "50003"}], "vehicle": {"licensePlate": "HYWD41"}, "timestamp": "1694888907"}, "vehicle": {"trip": {"tripId": "85b9f14e-1-701ff27f-2", "startTime": "13:28:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "626", "directionId": 1}, "position": {"latitude": -36.817432, "longitude": -73.02584, "bearing": 116.0, "odometer": 0.0, "speed": 26.5}, "timestamp": "1694888907", "vehicle": {"licensePlate": "HYWD41"}}}, {"id": "6830f4f1-3904-45a3-88e5-335583a8c56a", "tripUpdate": {"trip": {"tripId": "77ce18f2-2-701ff27f-2", "startTime": "15:02:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "626", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 27, "arrival": {"time": "1694888985"}, "stopId": "90000"}, {"stopSequence": 28, "arrival": {"time": "1694889039"}, "stopId": "39628"}, {"stopSequence": 29, "arrival": {"time": "1694889120"}, "stopId": "39631"}, {"stopSequence": 30, "arrival": {"time": "1694889168"}, "stopId": "49311"}, {"stopSequence": 31, "arrival": {"time": "1694889226"}, "stopId": "39634"}, {"stopSequence": 32, "arrival": {"time": "1694889252"}, "stopId": "39635"}, {"stopSequence": 33, "arrival": {"time": "1694889298"}, "stopId": "39636"}, {"stopSequence": 34, "arrival": {"time": "1694889352"}, "stopId": "49503"}, {"stopSequence": 35, "arrival": {"time": "1694889479"}, "stopId": "39637"}, {"stopSequence": 36, "arrival": {"time": "1694889528"}, "stopId": "49317"}, {"stopSequence": 37, "arrival": {"time": "1694889559"}, "stopId": "49318"}, {"stopSequence": 38, "arrival": {"time": "1694889624"}, "stopId": "49319"}, {"stopSequence": 39, "arrival": {"time": "1694889687"}, "stopId": "39641"}, {"stopSequence": 40, "arrival": {"time": "1694889721"}, "stopId": "39642"}, {"stopSequence": 41, "arrival": {"time": "1694889993"}, "stopId": "49325"}, {"stopSequence": 42, "arrival": {"time": "1694890064"}, "stopId": "40711"}, {"stopSequence": 43, "arrival": {"time": "1694890105"}, "stopId": "40712"}, {"stopSequence": 44, "arrival": {"time": "1694890137"}, "stopId": "40713"}, {"stopSequence": 45, "arrival": {"time": "1694890154"}, "stopId": "40714"}, {"stopSequence": 46, "arrival": {"time": "1694890216"}, "stopId": "8606049"}, {"stopSequence": 47, "arrival": {"time": "1694890262"}, "stopId": "37428"}, {"stopSequence": 48, "arrival": {"time": "1694890302"}, "stopId": "37429"}, {"stopSequence": 49, "arrival": {"time": "1694890334"}, "stopId": "37430"}, {"stopSequence": 50, "arrival": {"time": "1694890366"}, "stopId": "37431"}, {"stopSequence": 51, "arrival": {"time": "1694890395"}, "stopId": "37432"}, {"stopSequence": 52, "arrival": {"time": "1694890463"}, "stopId": "40720"}, {"stopSequence": 53, "arrival": {"time": "1694890475"}, "stopId": "40721"}, {"stopSequence": 54, "arrival": {"time": "1694890516"}, "stopId": "40722"}, {"stopSequence": 55, "arrival": {"time": "1694890521"}, "stopId": "40723"}, {"stopSequence": 56, "arrival": {"time": "1694890555"}, "stopId": "40724"}, {"stopSequence": 57, "arrival": {"time": "1694890627"}, "stopId": "40725"}, {"stopSequence": 58, "arrival": {"time": "1694890657"}, "stopId": "37435"}, {"stopSequence": 59, "arrival": {"time": "1694890701"}, "stopId": "39658"}, {"stopSequence": 60, "arrival": {"time": "1694890745"}, "stopId": "39659"}, {"stopSequence": 61, "arrival": {"time": "1694890768"}, "stopId": "39660"}, {"stopSequence": 62, "arrival": {"time": "1694890805"}, "stopId": "39661"}, {"stopSequence": 63, "arrival": {"time": "1694890854"}, "stopId": "39662"}, {"stopSequence": 64, "arrival": {"time": "1694890915"}, "stopId": "39663"}, {"stopSequence": 65, "arrival": {"time": "1694890964"}, "stopId": "49341"}, {"stopSequence": 66, "arrival": {"time": "1694891008"}, "stopId": "49342"}, {"stopSequence": 67, "arrival": {"time": "1694891109"}, "stopId": "49343"}, {"stopSequence": 68, "arrival": {"time": "1694892599"}, "stopId": "40735"}, {"stopSequence": 69, "arrival": {"time": "1694892776"}, "stopId": "40736"}], "vehicle": {"licensePlate": "JLZB90"}, "timestamp": "1694888916"}, "vehicle": {"trip": {"tripId": "77ce18f2-2-701ff27f-2", "startTime": "15:02:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "626", "directionId": 0}, "position": {"latitude": -36.82415, "longitude": -73.04789, "bearing": 243.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888916", "vehicle": {"licensePlate": "JLZB90"}}}, {"id": "c832c2e7-feae-4ade-bb12-df173b8ce3c7", "tripUpdate": {"trip": {"tripId": "22889603-2-701ff27f-2", "startTime": "14:16:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "626", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 1, "arrival": {"time": "1694888947"}, "stopId": "50001"}, {"stopSequence": 2, "arrival": {"time": "1694889053"}, "stopId": "50002"}, {"stopSequence": 3, "arrival": {"time": "1694890108"}, "stopId": "42428"}, {"stopSequence": 4, "arrival": {"time": "1694890147"}, "stopId": "42429"}, {"stopSequence": 5, "arrival": {"time": "1694890174"}, "stopId": "42430"}, {"stopSequence": 6, "arrival": {"time": "1694890233"}, "stopId": "42431"}, {"stopSequence": 7, "arrival": {"time": "1694890251"}, "stopId": "42432"}, {"stopSequence": 8, "arrival": {"time": "1694890301"}, "stopId": "37578"}, {"stopSequence": 9, "arrival": {"time": "1694890335"}, "stopId": "37579"}, {"stopSequence": 10, "arrival": {"time": "1694890370"}, "stopId": "37580"}, {"stopSequence": 11, "arrival": {"time": "1694890413"}, "stopId": "37581"}, {"stopSequence": 12, "arrival": {"time": "1694890447"}, "stopId": "37582"}, {"stopSequence": 13, "arrival": {"time": "1694890481"}, "stopId": "40748"}, {"stopSequence": 14, "arrival": {"time": "1694890543"}, "stopId": "40749"}, {"stopSequence": 15, "arrival": {"time": "1694890583"}, "stopId": "42525"}, {"stopSequence": 16, "arrival": {"time": "1694890586"}, "stopId": "42526"}, {"stopSequence": 17, "arrival": {"time": "1694890612"}, "stopId": "42527"}, {"stopSequence": 18, "arrival": {"time": "1694890659"}, "stopId": "42528"}, {"stopSequence": 19, "arrival": {"time": "1694890717"}, "stopId": "37432"}, {"stopSequence": 20, "arrival": {"time": "1694890748"}, "stopId": "37586"}, {"stopSequence": 21, "arrival": {"time": "1694890771"}, "stopId": "37430"}, {"stopSequence": 22, "arrival": {"time": "1694890791"}, "stopId": "37588"}, {"stopSequence": 23, "arrival": {"time": "1694890842"}, "stopId": "37589"}, {"stopSequence": 24, "arrival": {"time": "1694890902"}, "stopId": "37590"}, {"stopSequence": 25, "arrival": {"time": "1694890970"}, "stopId": "40760"}, {"stopSequence": 26, "arrival": {"time": "1694890994"}, "stopId": "40713"}, {"stopSequence": 27, "arrival": {"time": "1694891035"}, "stopId": "40762"}, {"stopSequence": 28, "arrival": {"time": "1694891090"}, "stopId": "40763"}, {"stopSequence": 29, "arrival": {"time": "1694891129"}, "stopId": "38642"}, {"stopSequence": 30, "arrival": {"time": "1694891178"}, "stopId": "39795"}, {"stopSequence": 31, "arrival": {"time": "1694891216"}, "stopId": "38502"}, {"stopSequence": 32, "arrival": {"time": "1694891283"}, "stopId": "38503"}, {"stopSequence": 33, "arrival": {"time": "1694891467"}, "stopId": "35691"}, {"stopSequence": 34, "arrival": {"time": "1694891583"}, "stopId": "35693"}, {"stopSequence": 35, "arrival": {"time": "1694891654"}, "stopId": "35694"}, {"stopSequence": 36, "arrival": {"time": "1694891698"}, "stopId": "35695"}, {"stopSequence": 37, "arrival": {"time": "1694891765"}, "stopId": "35696"}, {"stopSequence": 38, "arrival": {"time": "1694891990"}, "stopId": "35697"}, {"stopSequence": 39, "arrival": {"time": "1694892123"}, "stopId": "2-Jan"}, {"stopSequence": 40, "arrival": {"time": "1694892173"}, "stopId": "42460"}, {"stopSequence": 41, "arrival": {"time": "1694892224"}, "stopId": "35690"}, {"stopSequence": 42, "arrival": {"time": "1694892369"}, "stopId": "35700"}, {"stopSequence": 43, "arrival": {"time": "1694892513"}, "stopId": "35703"}, {"stopSequence": 44, "arrival": {"time": "1694892537"}, "stopId": "35704"}, {"stopSequence": 45, "arrival": {"time": "1694892571"}, "stopId": "35705"}, {"stopSequence": 46, "arrival": {"time": "1694892602"}, "stopId": "35706"}, {"stopSequence": 47, "arrival": {"time": "1694892690"}, "stopId": "35707"}, {"stopSequence": 48, "arrival": {"time": "1694892732"}, "stopId": "35708"}, {"stopSequence": 49, "arrival": {"time": "1694892759"}, "stopId": "35709"}, {"stopSequence": 50, "arrival": {"time": "1694892928"}, "stopId": "37522"}, {"stopSequence": 51, "arrival": {"time": "1694892988"}, "stopId": "39599"}, {"stopSequence": 52, "arrival": {"time": "1694893060"}, "stopId": "50034"}, {"stopSequence": 53, "arrival": {"time": "1694893135"}, "stopId": "40903"}, {"stopSequence": 54, "arrival": {"time": "1694893194"}, "stopId": "40904"}, {"stopSequence": 55, "arrival": {"time": "1694893435"}, "stopId": "35815"}, {"stopSequence": 56, "arrival": {"time": "1694893493"}, "stopId": "35816"}, {"stopSequence": 57, "arrival": {"time": "1694893503"}, "stopId": "35817"}, {"stopSequence": 58, "arrival": {"time": "1694893589"}, "stopId": "35818"}, {"stopSequence": 59, "arrival": {"time": "1694893670"}, "stopId": "35819"}, {"stopSequence": 60, "arrival": {"time": "1694894095"}, "stopId": "35822"}, {"stopSequence": 61, "arrival": {"time": "1694894193"}, "stopId": "35823"}, {"stopSequence": 62, "arrival": {"time": "1694894352"}, "stopId": "35723"}, {"stopSequence": 63, "arrival": {"time": "1694894467"}, "stopId": "35722"}, {"stopSequence": 64, "arrival": {"time": "1694894683"}, "stopId": "35826"}, {"stopSequence": 65, "arrival": {"time": "1694894874"}, "stopId": "35548"}, {"stopSequence": 66, "arrival": {"time": "1694895132"}, "stopId": "35547"}, {"stopSequence": 67, "arrival": {"time": "1694895424"}, "stopId": "50003"}], "vehicle": {"licensePlate": "JRGP16"}, "timestamp": "1694888905"}, "vehicle": {"trip": {"tripId": "22889603-2-701ff27f-2", "startTime": "14:16:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "626", "directionId": 1}, "position": {"latitude": -36.76633, "longitude": -73.17359, "bearing": 69.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888905", "vehicle": {"licensePlate": "JRGP16"}}}, {"id": "92f52987-496a-4208-9c3b-8942ae3c99ed", "tripUpdate": {"trip": {"tripId": "a6bb2544-b-701ff27f-2", "startTime": "14:50:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "626", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 41, "arrival": {"time": "1694888999"}, "stopId": "49325"}, {"stopSequence": 42, "arrival": {"time": "1694889075"}, "stopId": "40711"}, {"stopSequence": 43, "arrival": {"time": "1694889119"}, "stopId": "40712"}, {"stopSequence": 44, "arrival": {"time": "1694889154"}, "stopId": "40713"}, {"stopSequence": 45, "arrival": {"time": "1694889171"}, "stopId": "40714"}, {"stopSequence": 46, "arrival": {"time": "1694889237"}, "stopId": "8606049"}, {"stopSequence": 47, "arrival": {"time": "1694889285"}, "stopId": "37428"}, {"stopSequence": 48, "arrival": {"time": "1694889326"}, "stopId": "37429"}, {"stopSequence": 49, "arrival": {"time": "1694889358"}, "stopId": "37430"}, {"stopSequence": 50, "arrival": {"time": "1694889391"}, "stopId": "37431"}, {"stopSequence": 51, "arrival": {"time": "1694889420"}, "stopId": "37432"}, {"stopSequence": 52, "arrival": {"time": "1694889488"}, "stopId": "40720"}, {"stopSequence": 53, "arrival": {"time": "1694889500"}, "stopId": "40721"}, {"stopSequence": 54, "arrival": {"time": "1694889540"}, "stopId": "40722"}, {"stopSequence": 55, "arrival": {"time": "1694889545"}, "stopId": "40723"}, {"stopSequence": 56, "arrival": {"time": "1694889578"}, "stopId": "40724"}, {"stopSequence": 57, "arrival": {"time": "1694889648"}, "stopId": "40725"}, {"stopSequence": 58, "arrival": {"time": "1694889677"}, "stopId": "37435"}, {"stopSequence": 59, "arrival": {"time": "1694889719"}, "stopId": "39658"}, {"stopSequence": 60, "arrival": {"time": "1694889760"}, "stopId": "39659"}, {"stopSequence": 61, "arrival": {"time": "1694889782"}, "stopId": "39660"}, {"stopSequence": 62, "arrival": {"time": "1694889816"}, "stopId": "39661"}, {"stopSequence": 63, "arrival": {"time": "1694889862"}, "stopId": "39662"}, {"stopSequence": 64, "arrival": {"time": "1694889918"}, "stopId": "39663"}, {"stopSequence": 65, "arrival": {"time": "1694889962"}, "stopId": "49341"}, {"stopSequence": 66, "arrival": {"time": "1694890002"}, "stopId": "49342"}, {"stopSequence": 67, "arrival": {"time": "1694890092"}, "stopId": "49343"}, {"stopSequence": 68, "arrival": {"time": "1694891271"}, "stopId": "40735"}, {"stopSequence": 69, "arrival": {"time": "1694891396"}, "stopId": "40736"}], "vehicle": {"licensePlate": "KTFG90"}, "timestamp": "1694888927"}, "vehicle": {"trip": {"tripId": "a6bb2544-b-701ff27f-2", "startTime": "14:50:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "626", "directionId": 0}, "position": {"latitude": -36.80064, "longitude": -73.08442, "bearing": 319.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888927", "vehicle": {"licensePlate": "KTFG90"}}}, {"id": "f03b2f14-d5e8-4502-a73f-b44b4fe4362e", "tripUpdate": {"trip": {"tripId": "864e29e1-7-701ff27f-2", "startTime": "13:52:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "626", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 33, "arrival": {"time": "1694888964"}, "stopId": "35691"}, {"stopSequence": 34, "arrival": {"time": "1694889066"}, "stopId": "35693"}, {"stopSequence": 35, "arrival": {"time": "1694889127"}, "stopId": "35694"}, {"stopSequence": 36, "arrival": {"time": "1694889163"}, "stopId": "35695"}, {"stopSequence": 37, "arrival": {"time": "1694889217"}, "stopId": "35696"}, {"stopSequence": 38, "arrival": {"time": "1694889391"}, "stopId": "35697"}, {"stopSequence": 39, "arrival": {"time": "1694889487"}, "stopId": "2-Jan"}, {"stopSequence": 40, "arrival": {"time": "1694889522"}, "stopId": "42460"}, {"stopSequence": 41, "arrival": {"time": "1694889558"}, "stopId": "35690"}, {"stopSequence": 42, "arrival": {"time": "1694889654"}, "stopId": "35700"}, {"stopSequence": 43, "arrival": {"time": "1694889747"}, "stopId": "35703"}, {"stopSequence": 44, "arrival": {"time": "1694889762"}, "stopId": "35704"}, {"stopSequence": 45, "arrival": {"time": "1694889783"}, "stopId": "35705"}, {"stopSequence": 46, "arrival": {"time": "1694889801"}, "stopId": "35706"}, {"stopSequence": 47, "arrival": {"time": "1694889855"}, "stopId": "35707"}, {"stopSequence": 48, "arrival": {"time": "1694889880"}, "stopId": "35708"}, {"stopSequence": 49, "arrival": {"time": "1694889895"}, "stopId": "35709"}, {"stopSequence": 50, "arrival": {"time": "1694889992"}, "stopId": "37522"}, {"stopSequence": 51, "arrival": {"time": "1694890025"}, "stopId": "39599"}, {"stopSequence": 52, "arrival": {"time": "1694890064"}, "stopId": "50034"}, {"stopSequence": 53, "arrival": {"time": "1694890104"}, "stopId": "40903"}, {"stopSequence": 54, "arrival": {"time": "1694890135"}, "stopId": "40904"}, {"stopSequence": 55, "arrival": {"time": "1694890257"}, "stopId": "35815"}, {"stopSequence": 56, "arrival": {"time": "1694890285"}, "stopId": "35816"}, {"stopSequence": 57, "arrival": {"time": "1694890290"}, "stopId": "35817"}, {"stopSequence": 58, "arrival": {"time": "1694890331"}, "stopId": "35818"}, {"stopSequence": 59, "arrival": {"time": "1694890369"}, "stopId": "35819"}, {"stopSequence": 60, "arrival": {"time": "1694890558"}, "stopId": "35822"}, {"stopSequence": 61, "arrival": {"time": "1694890599"}, "stopId": "35823"}, {"stopSequence": 62, "arrival": {"time": "1694890664"}, "stopId": "35723"}, {"stopSequence": 63, "arrival": {"time": "1694890710"}, "stopId": "35722"}, {"stopSequence": 64, "arrival": {"time": "1694890794"}, "stopId": "35826"}, {"stopSequence": 65, "arrival": {"time": "1694890865"}, "stopId": "35548"}, {"stopSequence": 66, "arrival": {"time": "1694890957"}, "stopId": "35547"}, {"stopSequence": 67, "arrival": {"time": "1694891056"}, "stopId": "50003"}], "vehicle": {"licensePlate": "LHXT58"}, "timestamp": "1694888950"}, "vehicle": {"trip": {"tripId": "864e29e1-7-701ff27f-2", "startTime": "13:52:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "626", "directionId": 1}, "position": {"latitude": -36.807774, "longitude": -73.07831, "bearing": 141.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888950", "vehicle": {"licensePlate": "LHXT58"}}}, {"id": "4bf98f39-93c9-4a59-986a-e88699a1b425", "tripUpdate": {"trip": {"tripId": "b9ec6b9b-c-701ff27f-2", "startTime": "15:26:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "626", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 3, "arrival": {"time": "1694888987"}, "stopId": "35319"}, {"stopSequence": 4, "arrival": {"time": "1694889013"}, "stopId": "40659"}, {"stopSequence": 5, "arrival": {"time": "1694889073"}, "stopId": "35718"}, {"stopSequence": 6, "arrival": {"time": "1694889114"}, "stopId": "35719"}, {"stopSequence": 7, "arrival": {"time": "1694889156"}, "stopId": "35720"}, {"stopSequence": 8, "arrival": {"time": "1694889187"}, "stopId": "35721"}, {"stopSequence": 9, "arrival": {"time": "1694889202"}, "stopId": "35722"}, {"stopSequence": 10, "arrival": {"time": "1694889251"}, "stopId": "35723"}, {"stopSequence": 11, "arrival": {"time": "1694889299"}, "stopId": "35724"}, {"stopSequence": 12, "arrival": {"time": "1694889369"}, "stopId": "35726"}, {"stopSequence": 13, "arrival": {"time": "1694889512"}, "stopId": "35820"}, {"stopSequence": 14, "arrival": {"time": "1694889550"}, "stopId": "35729"}, {"stopSequence": 15, "arrival": {"time": "1694889578"}, "stopId": "35730"}, {"stopSequence": 16, "arrival": {"time": "1694889608"}, "stopId": "35731"}, {"stopSequence": 17, "arrival": {"time": "1694889671"}, "stopId": "35201"}, {"stopSequence": 18, "arrival": {"time": "1694889758"}, "stopId": "35202"}, {"stopSequence": 19, "arrival": {"time": "1694889787"}, "stopId": "35203"}, {"stopSequence": 20, "arrival": {"time": "1694889851"}, "stopId": "1-Feb"}, {"stopSequence": 21, "arrival": {"time": "1694889895"}, "stopId": "1-Mar"}, {"stopSequence": 22, "arrival": {"time": "1694889927"}, "stopId": "37465"}, {"stopSequence": 23, "arrival": {"time": "1694890024"}, "stopId": "39599"}, {"stopSequence": 24, "arrival": {"time": "1694890097"}, "stopId": "45011"}, {"stopSequence": 25, "arrival": {"time": "1694890195"}, "stopId": "39623"}, {"stopSequence": 26, "arrival": {"time": "1694890243"}, "stopId": "39624"}, {"stopSequence": 27, "arrival": {"time": "1694890307"}, "stopId": "90000"}, {"stopSequence": 28, "arrival": {"time": "1694890357"}, "stopId": "39628"}, {"stopSequence": 29, "arrival": {"time": "1694890433"}, "stopId": "39631"}, {"stopSequence": 30, "arrival": {"time": "1694890480"}, "stopId": "49311"}, {"stopSequence": 31, "arrival": {"time": "1694890536"}, "stopId": "39634"}, {"stopSequence": 32, "arrival": {"time": "1694890561"}, "stopId": "39635"}, {"stopSequence": 33, "arrival": {"time": "1694890608"}, "stopId": "39636"}, {"stopSequence": 34, "arrival": {"time": "1694890662"}, "stopId": "49503"}, {"stopSequence": 35, "arrival": {"time": "1694890792"}, "stopId": "39637"}, {"stopSequence": 36, "arrival": {"time": "1694890844"}, "stopId": "49317"}, {"stopSequence": 37, "arrival": {"time": "1694890877"}, "stopId": "49318"}, {"stopSequence": 38, "arrival": {"time": "1694890947"}, "stopId": "49319"}, {"stopSequence": 39, "arrival": {"time": "1694891016"}, "stopId": "39641"}, {"stopSequence": 40, "arrival": {"time": "1694891055"}, "stopId": "39642"}, {"stopSequence": 41, "arrival": {"time": "1694891368"}, "stopId": "49325"}, {"stopSequence": 42, "arrival": {"time": "1694891453"}, "stopId": "40711"}, {"stopSequence": 43, "arrival": {"time": "1694891503"}, "stopId": "40712"}, {"stopSequence": 44, "arrival": {"time": "1694891542"}, "stopId": "40713"}, {"stopSequence": 45, "arrival": {"time": "1694891563"}, "stopId": "40714"}, {"stopSequence": 46, "arrival": {"time": "1694891641"}, "stopId": "8606049"}, {"stopSequence": 47, "arrival": {"time": "1694891699"}, "stopId": "37428"}, {"stopSequence": 48, "arrival": {"time": "1694891750"}, "stopId": "37429"}, {"stopSequence": 49, "arrival": {"time": "1694891791"}, "stopId": "37430"}, {"stopSequence": 50, "arrival": {"time": "1694891833"}, "stopId": "37431"}, {"stopSequence": 51, "arrival": {"time": "1694891871"}, "stopId": "37432"}, {"stopSequence": 52, "arrival": {"time": "1694891961"}, "stopId": "40720"}, {"stopSequence": 53, "arrival": {"time": "1694891976"}, "stopId": "40721"}, {"stopSequence": 54, "arrival": {"time": "1694892032"}, "stopId": "40722"}, {"stopSequence": 55, "arrival": {"time": "1694892039"}, "stopId": "40723"}, {"stopSequence": 56, "arrival": {"time": "1694892085"}, "stopId": "40724"}, {"stopSequence": 57, "arrival": {"time": "1694892184"}, "stopId": "40725"}, {"stopSequence": 58, "arrival": {"time": "1694892226"}, "stopId": "37435"}, {"stopSequence": 59, "arrival": {"time": "1694892287"}, "stopId": "39658"}, {"stopSequence": 60, "arrival": {"time": "1694892349"}, "stopId": "39659"}, {"stopSequence": 61, "arrival": {"time": "1694892383"}, "stopId": "39660"}, {"stopSequence": 62, "arrival": {"time": "1694892435"}, "stopId": "39661"}, {"stopSequence": 63, "arrival": {"time": "1694892506"}, "stopId": "39662"}, {"stopSequence": 64, "arrival": {"time": "1694892596"}, "stopId": "39663"}, {"stopSequence": 65, "arrival": {"time": "1694892669"}, "stopId": "49341"}, {"stopSequence": 66, "arrival": {"time": "1694892735"}, "stopId": "49342"}, {"stopSequence": 67, "arrival": {"time": "1694892890"}, "stopId": "49343"}, {"stopSequence": 68, "arrival": {"time": "1694895605"}, "stopId": "40735"}, {"stopSequence": 69, "arrival": {"time": "1694895988"}, "stopId": "40736"}], "vehicle": {"licensePlate": "LTRB65"}, "timestamp": "1694888945"}, "vehicle": {"trip": {"tripId": "b9ec6b9b-c-701ff27f-2", "startTime": "15:26:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "626", "directionId": 0}, "position": {"latitude": -36.835953, "longitude": -73.00082, "bearing": 24.0, "odometer": 0.0, "speed": 2.2}, "timestamp": "1694888945", "vehicle": {"licensePlate": "LTRB65"}}}, {"id": "584b28eb-74c8-4a62-ae09-aeb9e8f4f8e9", "tripUpdate": {"trip": {"tripId": "067a8eff-4-701ff27f-2", "startTime": "14:04:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "626", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 19, "arrival": {"time": "1694888930"}, "stopId": "37432"}, {"stopSequence": 20, "arrival": {"time": "1694888963"}, "stopId": "37586"}, {"stopSequence": 21, "arrival": {"time": "1694888987"}, "stopId": "37430"}, {"stopSequence": 22, "arrival": {"time": "1694889007"}, "stopId": "37588"}, {"stopSequence": 23, "arrival": {"time": "1694889059"}, "stopId": "37589"}, {"stopSequence": 24, "arrival": {"time": "1694889118"}, "stopId": "37590"}, {"stopSequence": 25, "arrival": {"time": "1694889184"}, "stopId": "40760"}, {"stopSequence": 26, "arrival": {"time": "1694889206"}, "stopId": "40713"}, {"stopSequence": 27, "arrival": {"time": "1694889245"}, "stopId": "40762"}, {"stopSequence": 28, "arrival": {"time": "1694889296"}, "stopId": "40763"}, {"stopSequence": 29, "arrival": {"time": "1694889332"}, "stopId": "38642"}, {"stopSequence": 30, "arrival": {"time": "1694889376"}, "stopId": "39795"}, {"stopSequence": 31, "arrival": {"time": "1694889409"}, "stopId": "38502"}, {"stopSequence": 32, "arrival": {"time": "1694889469"}, "stopId": "38503"}, {"stopSequence": 33, "arrival": {"time": "1694889624"}, "stopId": "35691"}, {"stopSequence": 34, "arrival": {"time": "1694889717"}, "stopId": "35693"}, {"stopSequence": 35, "arrival": {"time": "1694889774"}, "stopId": "35694"}, {"stopSequence": 36, "arrival": {"time": "1694889808"}, "stopId": "35695"}, {"stopSequence": 37, "arrival": {"time": "1694889858"}, "stopId": "35696"}, {"stopSequence": 38, "arrival": {"time": "1694890024"}, "stopId": "35697"}, {"stopSequence": 39, "arrival": {"time": "1694890118"}, "stopId": "2-Jan"}, {"stopSequence": 40, "arrival": {"time": "1694890153"}, "stopId": "42460"}, {"stopSequence": 41, "arrival": {"time": "1694890188"}, "stopId": "35690"}, {"stopSequence": 42, "arrival": {"time": "1694890284"}, "stopId": "35700"}, {"stopSequence": 43, "arrival": {"time": "1694890377"}, "stopId": "35703"}, {"stopSequence": 44, "arrival": {"time": "1694890392"}, "stopId": "35704"}, {"stopSequence": 45, "arrival": {"time": "1694890414"}, "stopId": "35705"}, {"stopSequence": 46, "arrival": {"time": "1694890433"}, "stopId": "35706"}, {"stopSequence": 47, "arrival": {"time": "1694890488"}, "stopId": "35707"}, {"stopSequence": 48, "arrival": {"time": "1694890513"}, "stopId": "35708"}, {"stopSequence": 49, "arrival": {"time": "1694890529"}, "stopId": "35709"}, {"stopSequence": 50, "arrival": {"time": "1694890630"}, "stopId": "37522"}, {"stopSequence": 51, "arrival": {"time": "1694890665"}, "stopId": "39599"}, {"stopSequence": 52, "arrival": {"time": "1694890706"}, "stopId": "50034"}, {"stopSequence": 53, "arrival": {"time": "1694890749"}, "stopId": "40903"}, {"stopSequence": 54, "arrival": {"time": "1694890782"}, "stopId": "40904"}, {"stopSequence": 55, "arrival": {"time": "1694890913"}, "stopId": "35815"}, {"stopSequence": 56, "arrival": {"time": "1694890943"}, "stopId": "35816"}, {"stopSequence": 57, "arrival": {"time": "1694890948"}, "stopId": "35817"}, {"stopSequence": 58, "arrival": {"time": "1694890994"}, "stopId": "35818"}, {"stopSequence": 59, "arrival": {"time": "1694891035"}, "stopId": "35819"}, {"stopSequence": 60, "arrival": {"time": "1694891245"}, "stopId": "35822"}, {"stopSequence": 61, "arrival": {"time": "1694891291"}, "stopId": "35823"}, {"stopSequence": 62, "arrival": {"time": "1694891365"}, "stopId": "35723"}, {"stopSequence": 63, "arrival": {"time": "1694891418"}, "stopId": "35722"}, {"stopSequence": 64, "arrival": {"time": "1694891514"}, "stopId": "35826"}, {"stopSequence": 65, "arrival": {"time": "1694891596"}, "stopId": "35548"}, {"stopSequence": 66, "arrival": {"time": "1694891704"}, "stopId": "35547"}, {"stopSequence": 67, "arrival": {"time": "1694891822"}, "stopId": "50003"}], "vehicle": {"licensePlate": "RLVZ66"}, "timestamp": "1694888927"}, "vehicle": {"trip": {"tripId": "067a8eff-4-701ff27f-2", "startTime": "14:04:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "626", "directionId": 1}, "position": {"latitude": -36.794144, "longitude": -73.10234, "bearing": 122.0, "odometer": 0.0, "speed": 17.3}, "timestamp": "1694888927", "vehicle": {"licensePlate": "RLVZ66"}}}, {"id": "d869341b-c1d8-4b51-8c03-1a5b157ef7f3", "tripUpdate": {"trip": {"tripId": "5e12e7c6-7-701ff27f-2", "startTime": "14:38:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "626", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 55, "arrival": {"time": "1694888953"}, "stopId": "40723"}, {"stopSequence": 56, "arrival": {"time": "1694888989"}, "stopId": "40724"}, {"stopSequence": 57, "arrival": {"time": "1694889065"}, "stopId": "40725"}, {"stopSequence": 58, "arrival": {"time": "1694889096"}, "stopId": "37435"}, {"stopSequence": 59, "arrival": {"time": "1694889140"}, "stopId": "39658"}, {"stopSequence": 60, "arrival": {"time": "1694889185"}, "stopId": "39659"}, {"stopSequence": 61, "arrival": {"time": "1694889208"}, "stopId": "39660"}, {"stopSequence": 62, "arrival": {"time": "1694889244"}, "stopId": "39661"}, {"stopSequence": 63, "arrival": {"time": "1694889292"}, "stopId": "39662"}, {"stopSequence": 64, "arrival": {"time": "1694889350"}, "stopId": "39663"}, {"stopSequence": 65, "arrival": {"time": "1694889396"}, "stopId": "49341"}, {"stopSequence": 66, "arrival": {"time": "1694889437"}, "stopId": "49342"}, {"stopSequence": 67, "arrival": {"time": "1694889529"}, "stopId": "49343"}, {"stopSequence": 68, "arrival": {"time": "1694890651"}, "stopId": "40735"}, {"stopSequence": 69, "arrival": {"time": "1694890763"}, "stopId": "40736"}], "vehicle": {"licensePlate": "WV6695"}, "timestamp": "1694888951"}, "vehicle": {"trip": {"tripId": "5e12e7c6-7-701ff27f-2", "startTime": "14:38:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "626", "directionId": 0}, "position": {"latitude": -36.79192, "longitude": -73.10823, "bearing": 256.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888951", "vehicle": {"licensePlate": "WV6695"}}}, {"id": "3b2ad06c-b56d-4012-99e1-c6df96781029", "tripUpdate": {"trip": {"tripId": "d6a47dea-b-701ff27f-2", "startTime": "14:26:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "626", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 67, "arrival": {"time": "1694888990"}, "stopId": "49343"}, {"stopSequence": 68, "arrival": {"time": "1694890125"}, "stopId": "40735"}, {"stopSequence": 69, "arrival": {"time": "1694890232"}, "stopId": "40736"}], "vehicle": {"licensePlate": "ZJ61750"}, "timestamp": "1694888906"}, "vehicle": {"trip": {"tripId": "d6a47dea-b-701ff27f-2", "startTime": "14:26:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "626", "directionId": 0}, "position": {"latitude": -36.77905, "longitude": -73.11237, "bearing": 346.0, "odometer": 0.0, "speed": 18.4}, "timestamp": "1694888906", "vehicle": {"licensePlate": "ZJ61750"}}}, {"id": "37f4243e-6d2d-4820-b309-709c9cd7d1d5", "tripUpdate": {"trip": {"tripId": "549dd60c-0-701ff27f-2", "startTime": "14:54:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "627", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 24, "arrival": {"time": "1694889030"}, "stopId": "37506"}, {"stopSequence": 25, "arrival": {"time": "1694889073"}, "stopId": "45068"}, {"stopSequence": 26, "arrival": {"time": "1694889196"}, "stopId": "37480"}, {"stopSequence": 27, "arrival": {"time": "1694889259"}, "stopId": "37477"}, {"stopSequence": 28, "arrival": {"time": "1694889333"}, "stopId": "40848"}, {"stopSequence": 29, "arrival": {"time": "1694889419"}, "stopId": "2-Apr"}, {"stopSequence": 30, "arrival": {"time": "1694889478"}, "stopId": "39728"}, {"stopSequence": 31, "arrival": {"time": "1694889577"}, "stopId": "39729"}, {"stopSequence": 32, "arrival": {"time": "1694889595"}, "stopId": "39730"}, {"stopSequence": 33, "arrival": {"time": "1694889702"}, "stopId": "42200"}, {"stopSequence": 34, "arrival": {"time": "1694889744"}, "stopId": "42203"}, {"stopSequence": 35, "arrival": {"time": "1694889803"}, "stopId": "42204"}, {"stopSequence": 36, "arrival": {"time": "1694889834"}, "stopId": "42205"}, {"stopSequence": 37, "arrival": {"time": "1694889898"}, "stopId": "42201"}, {"stopSequence": 38, "arrival": {"time": "1694890141"}, "stopId": "42206"}, {"stopSequence": 39, "arrival": {"time": "1694890173"}, "stopId": "40855"}], "vehicle": {"licensePlate": "BBGB85"}, "timestamp": "1694889028"}, "vehicle": {"trip": {"tripId": "549dd60c-0-701ff27f-2", "startTime": "14:54:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "627", "directionId": 1}, "position": {"latitude": -36.824978, "longitude": -73.043724, "bearing": 240.0, "odometer": 0.0, "speed": 19.0}, "timestamp": "1694889028", "vehicle": {"licensePlate": "BBGB85"}}}, {"id": "409d1e2e-bfd1-4b68-8226-11638437d0bf", "tripUpdate": {"trip": {"tripId": "d8148350-b-701ff27f-2", "startTime": "15:02:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "627", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 21, "arrival": {"time": "1694889047"}, "stopId": "42319"}, {"stopSequence": 22, "arrival": {"time": "1694889116"}, "stopId": "42320"}, {"stopSequence": 23, "arrival": {"time": "1694889175"}, "stopId": "38514"}, {"stopSequence": 24, "arrival": {"time": "1694889234"}, "stopId": "34586"}, {"stopSequence": 25, "arrival": {"time": "1694889259"}, "stopId": "34587"}, {"stopSequence": 26, "arrival": {"time": "1694889289"}, "stopId": "34588"}, {"stopSequence": 27, "arrival": {"time": "1694889338"}, "stopId": "39497"}, {"stopSequence": 28, "arrival": {"time": "1694889369"}, "stopId": "49407"}, {"stopSequence": 29, "arrival": {"time": "1694889423"}, "stopId": "50034"}, {"stopSequence": 30, "arrival": {"time": "1694889464"}, "stopId": "40903"}, {"stopSequence": 31, "arrival": {"time": "1694889496"}, "stopId": "40904"}, {"stopSequence": 32, "arrival": {"time": "1694889548"}, "stopId": "35814"}, {"stopSequence": 33, "arrival": {"time": "1694889618"}, "stopId": "35815"}, {"stopSequence": 34, "arrival": {"time": "1694889648"}, "stopId": "35816"}, {"stopSequence": 35, "arrival": {"time": "1694889653"}, "stopId": "35817"}, {"stopSequence": 36, "arrival": {"time": "1694889694"}, "stopId": "35818"}, {"stopSequence": 37, "arrival": {"time": "1694889731"}, "stopId": "35819"}, {"stopSequence": 38, "arrival": {"time": "1694889917"}, "stopId": "35822"}, {"stopSequence": 39, "arrival": {"time": "1694889957"}, "stopId": "35823"}, {"stopSequence": 40, "arrival": {"time": "1694890017"}, "stopId": "35723"}, {"stopSequence": 41, "arrival": {"time": "1694890057"}, "stopId": "35722"}, {"stopSequence": 42, "arrival": {"time": "1694890144"}, "stopId": "35826"}, {"stopSequence": 43, "arrival": {"time": "1694890193"}, "stopId": "35827"}, {"stopSequence": 44, "arrival": {"time": "1694890216"}, "stopId": "35828"}, {"stopSequence": 45, "arrival": {"time": "1694890275"}, "stopId": "35829"}, {"stopSequence": 46, "arrival": {"time": "1694890315"}, "stopId": "50003"}, {"stopSequence": 47, "arrival": {"time": "1694890396"}, "stopId": "40921"}], "vehicle": {"licensePlate": "FSRZ36"}, "timestamp": "1694889011"}, "vehicle": {"trip": {"tripId": "d8148350-b-701ff27f-2", "startTime": "15:02:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "627", "directionId": 0}, "position": {"latitude": -36.829247, "longitude": -73.05086, "bearing": 62.0, "odometer": 0.0, "speed": 31.0}, "timestamp": "1694889011", "vehicle": {"licensePlate": "FSRZ36"}}}, {"id": "656e4b95-6955-4cff-8fa5-7468bfcf6d2b", "tripUpdate": {"trip": {"tripId": "d844b036-0-701ff27f-2", "startTime": "15:35:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "628", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 1, "arrival": {"time": "1694889201"}, "stopId": "40863"}, {"stopSequence": 2, "arrival": {"time": "1694889607"}, "stopId": "40865"}, {"stopSequence": 3, "arrival": {"time": "1694889794"}, "stopId": "90003"}, {"stopSequence": 4, "arrival": {"time": "1694889839"}, "stopId": "90007"}, {"stopSequence": 5, "arrival": {"time": "1694889879"}, "stopId": "40830"}, {"stopSequence": 6, "arrival": {"time": "1694889914"}, "stopId": "40831"}, {"stopSequence": 7, "arrival": {"time": "1694889995"}, "stopId": "39599"}, {"stopSequence": 8, "arrival": {"time": "1694890011"}, "stopId": "39600"}, {"stopSequence": 9, "arrival": {"time": "1694890082"}, "stopId": "37496"}, {"stopSequence": 10, "arrival": {"time": "1694890130"}, "stopId": "45064"}, {"stopSequence": 11, "arrival": {"time": "1694890201"}, "stopId": "37506"}, {"stopSequence": 12, "arrival": {"time": "1694890241"}, "stopId": "45068"}, {"stopSequence": 13, "arrival": {"time": "1694890363"}, "stopId": "37480"}, {"stopSequence": 14, "arrival": {"time": "1694890424"}, "stopId": "37477"}, {"stopSequence": 15, "arrival": {"time": "1694890491"}, "stopId": "40848"}, {"stopSequence": 16, "arrival": {"time": "1694890574"}, "stopId": "2-Apr"}, {"stopSequence": 17, "arrival": {"time": "1694890635"}, "stopId": "39728"}, {"stopSequence": 18, "arrival": {"time": "1694890730"}, "stopId": "39729"}, {"stopSequence": 19, "arrival": {"time": "1694890755"}, "stopId": "39730"}, {"stopSequence": 20, "arrival": {"time": "1694890861"}, "stopId": "42200"}, {"stopSequence": 21, "arrival": {"time": "1694890909"}, "stopId": "42203"}, {"stopSequence": 22, "arrival": {"time": "1694890975"}, "stopId": "42204"}, {"stopSequence": 23, "arrival": {"time": "1694891009"}, "stopId": "42205"}, {"stopSequence": 24, "arrival": {"time": "1694891074"}, "stopId": "42201"}, {"stopSequence": 25, "arrival": {"time": "1694891352"}, "stopId": "42206"}, {"stopSequence": 26, "arrival": {"time": "1694891386"}, "stopId": "40855"}], "vehicle": {"licensePlate": "RPSV28"}, "timestamp": "1694889029"}, "vehicle": {"trip": {"tripId": "d844b036-0-701ff27f-2", "startTime": "15:35:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "628", "directionId": 1}, "position": {"latitude": -36.818474, "longitude": -72.99785, "bearing": 46.0, "odometer": 0.0, "speed": 7.0}, "timestamp": "1694889029", "vehicle": {"licensePlate": "RPSV28"}}}, {"id": "bd167a5e-0c55-42b9-a13c-18e6fa7ffaef", "tripUpdate": {"trip": {"tripId": "39bc4ff9-7-701ff27f-2", "startTime": "15:21:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "628", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 9, "arrival": {"time": "1694889032"}, "stopId": "49301"}, {"stopSequence": 10, "arrival": {"time": "1694889099"}, "stopId": "49302"}, {"stopSequence": 11, "arrival": {"time": "1694889146"}, "stopId": "49303"}, {"stopSequence": 12, "arrival": {"time": "1694889200"}, "stopId": "49304"}, {"stopSequence": 13, "arrival": {"time": "1694889229"}, "stopId": "49305"}, {"stopSequence": 14, "arrival": {"time": "1694889287"}, "stopId": "49306"}, {"stopSequence": 15, "arrival": {"time": "1694889328"}, "stopId": "49307"}, {"stopSequence": 16, "arrival": {"time": "1694889352"}, "stopId": "49308"}, {"stopSequence": 17, "arrival": {"time": "1694889377"}, "stopId": "49309"}, {"stopSequence": 18, "arrival": {"time": "1694889405"}, "stopId": "42315"}, {"stopSequence": 19, "arrival": {"time": "1694889428"}, "stopId": "42316"}, {"stopSequence": 20, "arrival": {"time": "1694889479"}, "stopId": "42317"}, {"stopSequence": 21, "arrival": {"time": "1694889552"}, "stopId": "42319"}, {"stopSequence": 22, "arrival": {"time": "1694889627"}, "stopId": "42320"}, {"stopSequence": 23, "arrival": {"time": "1694889673"}, "stopId": "38514"}, {"stopSequence": 24, "arrival": {"time": "1694889727"}, "stopId": "34586"}, {"stopSequence": 25, "arrival": {"time": "1694889756"}, "stopId": "34587"}, {"stopSequence": 26, "arrival": {"time": "1694889780"}, "stopId": "34588"}, {"stopSequence": 27, "arrival": {"time": "1694889826"}, "stopId": "39497"}, {"stopSequence": 28, "arrival": {"time": "1694889859"}, "stopId": "49407"}, {"stopSequence": 29, "arrival": {"time": "1694889915"}, "stopId": "50034"}, {"stopSequence": 30, "arrival": {"time": "1694889953"}, "stopId": "40903"}, {"stopSequence": 31, "arrival": {"time": "1694889986"}, "stopId": "40904"}, {"stopSequence": 32, "arrival": {"time": "1694890029"}, "stopId": "35814"}, {"stopSequence": 33, "arrival": {"time": "1694890102"}, "stopId": "35815"}, {"stopSequence": 34, "arrival": {"time": "1694890124"}, "stopId": "35816"}, {"stopSequence": 35, "arrival": {"time": "1694890139"}, "stopId": "35817"}, {"stopSequence": 36, "arrival": {"time": "1694890173"}, "stopId": "35818"}, {"stopSequence": 37, "arrival": {"time": "1694890211"}, "stopId": "35819"}, {"stopSequence": 38, "arrival": {"time": "1694890396"}, "stopId": "35822"}, {"stopSequence": 39, "arrival": {"time": "1694890474"}, "stopId": "38833"}, {"stopSequence": 40, "arrival": {"time": "1694890498"}, "stopId": "40924"}, {"stopSequence": 41, "arrival": {"time": "1694890875"}, "stopId": "40864"}], "vehicle": {"licensePlate": "YH2202"}, "timestamp": "1694888986"}, "vehicle": {"trip": {"tripId": "39bc4ff9-7-701ff27f-2", "startTime": "15:21:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "628", "directionId": 0}, "position": {"latitude": -36.8489, "longitude": -73.05123, "bearing": 358.0, "odometer": 0.0, "speed": 32.0}, "timestamp": "1694888986", "vehicle": {"licensePlate": "YH2202"}}}, {"id": "a443e7d6-775f-4f61-880d-ae9eb1a6e8dd", "tripUpdate": {"trip": {"tripId": "7b03ef8e-e-701ff27f-2", "startTime": "14:23:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "632", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 73, "arrival": {"time": "1694889077"}, "stopId": "42210"}, {"stopSequence": 74, "arrival": {"time": "1694889272"}, "stopId": "42215"}, {"stopSequence": 75, "arrival": {"time": "1694889303"}, "stopId": "42216"}, {"stopSequence": 76, "arrival": {"time": "1694889345"}, "stopId": "42217"}, {"stopSequence": 77, "arrival": {"time": "1694889421"}, "stopId": "42218"}, {"stopSequence": 78, "arrival": {"time": "1694889465"}, "stopId": "42219"}, {"stopSequence": 79, "arrival": {"time": "1694889556"}, "stopId": "42220"}, {"stopSequence": 80, "arrival": {"time": "1694889607"}, "stopId": "42221"}, {"stopSequence": 81, "arrival": {"time": "1694889674"}, "stopId": "42222"}, {"stopSequence": 82, "arrival": {"time": "1694889741"}, "stopId": "42223"}, {"stopSequence": 83, "arrival": {"time": "1694889768"}, "stopId": "42224"}, {"stopSequence": 84, "arrival": {"time": "1694889842"}, "stopId": "42225"}, {"stopSequence": 85, "arrival": {"time": "1694889905"}, "stopId": "42226"}, {"stopSequence": 86, "arrival": {"time": "1694889956"}, "stopId": "42227"}, {"stopSequence": 87, "arrival": {"time": "1694890037"}, "stopId": "42228"}, {"stopSequence": 88, "arrival": {"time": "1694890078"}, "stopId": "42229"}, {"stopSequence": 89, "arrival": {"time": "1694890155"}, "stopId": "42230"}, {"stopSequence": 90, "arrival": {"time": "1694890196"}, "stopId": "42231"}, {"stopSequence": 91, "arrival": {"time": "1694890274"}, "stopId": "42232"}, {"stopSequence": 92, "arrival": {"time": "1694890399"}, "stopId": "42234"}, {"stopSequence": 93, "arrival": {"time": "1694890468"}, "stopId": "42235"}, {"stopSequence": 94, "arrival": {"time": "1694890498"}, "stopId": "42211"}, {"stopSequence": 95, "arrival": {"time": "1694890551"}, "stopId": "49203"}, {"stopSequence": 96, "arrival": {"time": "1694890605"}, "stopId": "49204"}, {"stopSequence": 97, "arrival": {"time": "1694890615"}, "stopId": "42503"}, {"stopSequence": 98, "arrival": {"time": "1694890628"}, "stopId": "34564"}, {"stopSequence": 99, "arrival": {"time": "1694890980"}, "stopId": "34789"}, {"stopSequence": 100, "arrival": {"time": "1694891002"}, "stopId": "49163"}, {"stopSequence": 101, "arrival": {"time": "1694891867"}, "stopId": "49208"}, {"stopSequence": 102, "arrival": {"time": "1694891899"}, "stopId": "49209"}, {"stopSequence": 103, "arrival": {"time": "1694891919"}, "stopId": "49210"}, {"stopSequence": 104, "arrival": {"time": "1694892164"}, "stopId": "49211"}, {"stopSequence": 105, "arrival": {"time": "1694892203"}, "stopId": "49212"}, {"stopSequence": 106, "arrival": {"time": "1694892281"}, "stopId": "49213"}, {"stopSequence": 107, "arrival": {"time": "1694892547"}, "stopId": "49206"}, {"stopSequence": 108, "arrival": {"time": "1694892654"}, "stopId": "49215"}, {"stopSequence": 109, "arrival": {"time": "1694892684"}, "stopId": "49216"}, {"stopSequence": 110, "arrival": {"time": "1694892706"}, "stopId": "49217"}, {"stopSequence": 111, "arrival": {"time": "1694892745"}, "stopId": "49214"}, {"stopSequence": 112, "arrival": {"time": "1694892804"}, "stopId": "49249"}, {"stopSequence": 113, "arrival": {"time": "1694892833"}, "stopId": "49218"}, {"stopSequence": 114, "arrival": {"time": "1694892866"}, "stopId": "49219"}, {"stopSequence": 115, "arrival": {"time": "1694892954"}, "stopId": "38044"}, {"stopSequence": 116, "arrival": {"time": "1694893008"}, "stopId": "38045"}, {"stopSequence": 117, "arrival": {"time": "1694893134"}, "stopId": "49220"}, {"stopSequence": 118, "arrival": {"time": "1694893240"}, "stopId": "49221"}, {"stopSequence": 119, "arrival": {"time": "1694893268"}, "stopId": "49222"}, {"stopSequence": 120, "arrival": {"time": "1694893283"}, "stopId": "49223"}, {"stopSequence": 121, "arrival": {"time": "1694893303"}, "stopId": "38049"}, {"stopSequence": 122, "arrival": {"time": "1694893339"}, "stopId": "49224"}, {"stopSequence": 123, "arrival": {"time": "1694893454"}, "stopId": "49253"}, {"stopSequence": 124, "arrival": {"time": "1694893580"}, "stopId": "49226"}, {"stopSequence": 125, "arrival": {"time": "1694893631"}, "stopId": "49227"}, {"stopSequence": 126, "arrival": {"time": "1694893689"}, "stopId": "49229"}, {"stopSequence": 127, "arrival": {"time": "1694893722"}, "stopId": "49228"}, {"stopSequence": 128, "arrival": {"time": "1694893795"}, "stopId": "49230"}, {"stopSequence": 129, "arrival": {"time": "1694893883"}, "stopId": "49235"}, {"stopSequence": 130, "arrival": {"time": "1694894293"}, "stopId": "49232"}, {"stopSequence": 131, "arrival": {"time": "1694894964"}, "stopId": "40342"}, {"stopSequence": 132, "arrival": {"time": "1694895257"}, "stopId": "40343"}, {"stopSequence": 133, "arrival": {"time": "1694895457"}, "stopId": "49243"}], "vehicle": {"licensePlate": "CYRT89"}, "timestamp": "1694889018"}, "vehicle": {"trip": {"tripId": "7b03ef8e-e-701ff27f-2", "startTime": "14:23:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "632", "directionId": 1}, "position": {"latitude": -36.88782, "longitude": -73.036575, "bearing": 156.0, "odometer": 0.0, "speed": 69.0}, "timestamp": "1694889018", "vehicle": {"licensePlate": "CYRT89"}}}, {"id": "ade68416-7dfa-4fc7-b381-83fe1b6f210f", "tripUpdate": {"trip": {"tripId": "47a2a852-d-701ff27f-2", "startTime": "14:41:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "632", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 38, "arrival": {"time": "1694889099"}, "stopId": "42282"}, {"stopSequence": 39, "arrival": {"time": "1694889158"}, "stopId": "42283"}, {"stopSequence": 40, "arrival": {"time": "1694889226"}, "stopId": "49279"}, {"stopSequence": 41, "arrival": {"time": "1694889307"}, "stopId": "42285"}, {"stopSequence": 42, "arrival": {"time": "1694889397"}, "stopId": "42286"}, {"stopSequence": 43, "arrival": {"time": "1694889413"}, "stopId": "42287"}, {"stopSequence": 44, "arrival": {"time": "1694889467"}, "stopId": "42288"}, {"stopSequence": 45, "arrival": {"time": "1694889506"}, "stopId": "42289"}, {"stopSequence": 46, "arrival": {"time": "1694889583"}, "stopId": "42290"}, {"stopSequence": 47, "arrival": {"time": "1694889637"}, "stopId": "42291"}, {"stopSequence": 48, "arrival": {"time": "1694889722"}, "stopId": "42292"}, {"stopSequence": 49, "arrival": {"time": "1694889791"}, "stopId": "42293"}, {"stopSequence": 50, "arrival": {"time": "1694889964"}, "stopId": "42294"}, {"stopSequence": 51, "arrival": {"time": "1694890089"}, "stopId": "42295"}, {"stopSequence": 52, "arrival": {"time": "1694890200"}, "stopId": "42296"}, {"stopSequence": 53, "arrival": {"time": "1694890322"}, "stopId": "42297"}, {"stopSequence": 54, "arrival": {"time": "1694890417"}, "stopId": "42298"}, {"stopSequence": 55, "arrival": {"time": "1694890480"}, "stopId": "42299"}, {"stopSequence": 56, "arrival": {"time": "1694890521"}, "stopId": "49295"}, {"stopSequence": 57, "arrival": {"time": "1694890642"}, "stopId": "49296"}, {"stopSequence": 58, "arrival": {"time": "1694890730"}, "stopId": "49297"}, {"stopSequence": 59, "arrival": {"time": "1694890768"}, "stopId": "49298"}, {"stopSequence": 60, "arrival": {"time": "1694890837"}, "stopId": "49299"}, {"stopSequence": 61, "arrival": {"time": "1694890881"}, "stopId": "49300"}, {"stopSequence": 62, "arrival": {"time": "1694890968"}, "stopId": "49301"}, {"stopSequence": 63, "arrival": {"time": "1694891040"}, "stopId": "49302"}, {"stopSequence": 64, "arrival": {"time": "1694891088"}, "stopId": "49303"}, {"stopSequence": 65, "arrival": {"time": "1694891144"}, "stopId": "49304"}, {"stopSequence": 66, "arrival": {"time": "1694891175"}, "stopId": "49305"}, {"stopSequence": 67, "arrival": {"time": "1694891237"}, "stopId": "49306"}, {"stopSequence": 68, "arrival": {"time": "1694891281"}, "stopId": "49307"}, {"stopSequence": 69, "arrival": {"time": "1694891308"}, "stopId": "49308"}, {"stopSequence": 70, "arrival": {"time": "1694891335"}, "stopId": "49309"}, {"stopSequence": 71, "arrival": {"time": "1694891412"}, "stopId": "49310"}, {"stopSequence": 72, "arrival": {"time": "1694891449"}, "stopId": "49311"}, {"stopSequence": 73, "arrival": {"time": "1694891477"}, "stopId": "39633"}, {"stopSequence": 74, "arrival": {"time": "1694891514"}, "stopId": "39634"}, {"stopSequence": 75, "arrival": {"time": "1694891544"}, "stopId": "39635"}, {"stopSequence": 76, "arrival": {"time": "1694891594"}, "stopId": "39636"}, {"stopSequence": 77, "arrival": {"time": "1694891663"}, "stopId": "49503"}, {"stopSequence": 78, "arrival": {"time": "1694891820"}, "stopId": "39637"}, {"stopSequence": 79, "arrival": {"time": "1694891883"}, "stopId": "49317"}, {"stopSequence": 80, "arrival": {"time": "1694891923"}, "stopId": "49318"}, {"stopSequence": 81, "arrival": {"time": "1694892010"}, "stopId": "49319"}, {"stopSequence": 82, "arrival": {"time": "1694892095"}, "stopId": "39641"}, {"stopSequence": 83, "arrival": {"time": "1694892143"}, "stopId": "39642"}, {"stopSequence": 84, "arrival": {"time": "1694892547"}, "stopId": "49325"}, {"stopSequence": 85, "arrival": {"time": "1694892643"}, "stopId": "49326"}, {"stopSequence": 86, "arrival": {"time": "1694892684"}, "stopId": "39648"}, {"stopSequence": 87, "arrival": {"time": "1694892760"}, "stopId": "39649"}, {"stopSequence": 88, "arrival": {"time": "1694892843"}, "stopId": "49329"}, {"stopSequence": 89, "arrival": {"time": "1694892936"}, "stopId": "49330"}, {"stopSequence": 90, "arrival": {"time": "1694893002"}, "stopId": "39652"}, {"stopSequence": 91, "arrival": {"time": "1694893050"}, "stopId": "39653"}, {"stopSequence": 92, "arrival": {"time": "1694893108"}, "stopId": "39654"}, {"stopSequence": 93, "arrival": {"time": "1694893161"}, "stopId": "49334"}, {"stopSequence": 94, "arrival": {"time": "1694893270"}, "stopId": "49335"}, {"stopSequence": 95, "arrival": {"time": "1694893357"}, "stopId": "49336"}, {"stopSequence": 96, "arrival": {"time": "1694893533"}, "stopId": "37437"}, {"stopSequence": 97, "arrival": {"time": "1694893640"}, "stopId": "49337"}, {"stopSequence": 98, "arrival": {"time": "1694893699"}, "stopId": "39661"}, {"stopSequence": 99, "arrival": {"time": "1694893779"}, "stopId": "39662"}, {"stopSequence": 100, "arrival": {"time": "1694893904"}, "stopId": "39663"}, {"stopSequence": 101, "arrival": {"time": "1694894005"}, "stopId": "49341"}, {"stopSequence": 102, "arrival": {"time": "1694894098"}, "stopId": "49342"}, {"stopSequence": 103, "arrival": {"time": "1694894316"}, "stopId": "49343"}, {"stopSequence": 104, "arrival": {"time": "1694894791"}, "stopId": "49344"}, {"stopSequence": 105, "arrival": {"time": "1694895210"}, "stopId": "49345"}, {"stopSequence": 106, "arrival": {"time": "1694895718"}, "stopId": "49346"}, {"stopSequence": 107, "arrival": {"time": "1694895938"}, "stopId": "49347"}, {"stopSequence": 108, "arrival": {"time": "1694896780"}, "stopId": "49348"}, {"stopSequence": 109, "arrival": {"time": "1694897245"}, "stopId": "49349"}, {"stopSequence": 110, "arrival": {"time": "1694897870"}, "stopId": "49350"}, {"stopSequence": 111, "arrival": {"time": "1694898127"}, "stopId": "49351"}, {"stopSequence": 112, "arrival": {"time": "1694898279"}, "stopId": "49352"}, {"stopSequence": 113, "arrival": {"time": "1694898547"}, "stopId": "49353"}, {"stopSequence": 114, "arrival": {"time": "1694898805"}, "stopId": "49354"}, {"stopSequence": 115, "arrival": {"time": "1694899071"}, "stopId": "49355"}, {"stopSequence": 116, "arrival": {"time": "1694899631"}, "stopId": "42244"}, {"stopSequence": 117, "arrival": {"time": "1694899714"}, "stopId": "49356"}, {"stopSequence": 118, "arrival": {"time": "1694900210"}, "stopId": "49357"}, {"stopSequence": 119, "arrival": {"time": "1694900409"}, "stopId": "49358"}, {"stopSequence": 120, "arrival": {"time": "1694900818"}, "stopId": "49359"}, {"stopSequence": 121, "arrival": {"time": "1694901281"}, "stopId": "49360"}, {"stopSequence": 122, "arrival": {"time": "1694902395"}, "stopId": "49361"}, {"stopSequence": 123, "arrival": {"time": "1694902696"}, "stopId": "49362"}, {"stopSequence": 124, "arrival": {"time": "1694903245"}, "stopId": "49363"}, {"stopSequence": 125, "arrival": {"time": "1694903855"}, "stopId": "49364"}, {"stopSequence": 126, "arrival": {"time": "1694904346"}, "stopId": "49365"}], "vehicle": {"licensePlate": "CZXH27"}, "timestamp": "1694889027"}, "vehicle": {"trip": {"tripId": "47a2a852-d-701ff27f-2", "startTime": "14:41:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "632", "directionId": 0}, "position": {"latitude": -36.931217, "longitude": -73.0228, "bearing": 336.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889027", "vehicle": {"licensePlate": "CZXH27"}}}, {"id": "31c19356-cc4c-4be4-84db-917e836ed536", "tripUpdate": {"trip": {"tripId": "16c9a590-a-701ff27f-2", "startTime": "15:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "632", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 7, "arrival": {"time": "1694889076"}, "stopId": "49237"}, {"stopSequence": 8, "arrival": {"time": "1694889120"}, "stopId": "49238"}, {"stopSequence": 9, "arrival": {"time": "1694889230"}, "stopId": "38096"}, {"stopSequence": 10, "arrival": {"time": "1694889327"}, "stopId": "49248"}, {"stopSequence": 11, "arrival": {"time": "1694889368"}, "stopId": "49254"}, {"stopSequence": 12, "arrival": {"time": "1694889402"}, "stopId": "49255"}, {"stopSequence": 13, "arrival": {"time": "1694889458"}, "stopId": "49256"}, {"stopSequence": 14, "arrival": {"time": "1694889596"}, "stopId": "49216"}, {"stopSequence": 15, "arrival": {"time": "1694889634"}, "stopId": "49217"}, {"stopSequence": 16, "arrival": {"time": "1694889658"}, "stopId": "49214"}, {"stopSequence": 17, "arrival": {"time": "1694889705"}, "stopId": "49218"}, {"stopSequence": 18, "arrival": {"time": "1694889728"}, "stopId": "49257"}, {"stopSequence": 19, "arrival": {"time": "1694889846"}, "stopId": "49258"}, {"stopSequence": 20, "arrival": {"time": "1694889901"}, "stopId": "49259"}, {"stopSequence": 21, "arrival": {"time": "1694889909"}, "stopId": "49260"}, {"stopSequence": 22, "arrival": {"time": "1694890073"}, "stopId": "49261"}, {"stopSequence": 23, "arrival": {"time": "1694890103"}, "stopId": "49262"}, {"stopSequence": 24, "arrival": {"time": "1694890128"}, "stopId": "49263"}, {"stopSequence": 25, "arrival": {"time": "1694890898"}, "stopId": "34549"}, {"stopSequence": 26, "arrival": {"time": "1694891263"}, "stopId": "49264"}, {"stopSequence": 27, "arrival": {"time": "1694891266"}, "stopId": "49265"}, {"stopSequence": 28, "arrival": {"time": "1694891310"}, "stopId": "49266"}, {"stopSequence": 29, "arrival": {"time": "1694891372"}, "stopId": "49267"}, {"stopSequence": 30, "arrival": {"time": "1694891456"}, "stopId": "42274"}, {"stopSequence": 31, "arrival": {"time": "1694891547"}, "stopId": "42275"}, {"stopSequence": 32, "arrival": {"time": "1694891595"}, "stopId": "42276"}, {"stopSequence": 33, "arrival": {"time": "1694891695"}, "stopId": "42277"}, {"stopSequence": 34, "arrival": {"time": "1694891796"}, "stopId": "42278"}, {"stopSequence": 35, "arrival": {"time": "1694891848"}, "stopId": "42279"}, {"stopSequence": 36, "arrival": {"time": "1694891952"}, "stopId": "42280"}, {"stopSequence": 37, "arrival": {"time": "1694892008"}, "stopId": "42281"}, {"stopSequence": 38, "arrival": {"time": "1694892108"}, "stopId": "42282"}, {"stopSequence": 39, "arrival": {"time": "1694892184"}, "stopId": "42283"}, {"stopSequence": 40, "arrival": {"time": "1694892275"}, "stopId": "49279"}, {"stopSequence": 41, "arrival": {"time": "1694892388"}, "stopId": "42285"}, {"stopSequence": 42, "arrival": {"time": "1694892518"}, "stopId": "42286"}, {"stopSequence": 43, "arrival": {"time": "1694892543"}, "stopId": "42287"}, {"stopSequence": 44, "arrival": {"time": "1694892625"}, "stopId": "42288"}, {"stopSequence": 45, "arrival": {"time": "1694892685"}, "stopId": "42289"}, {"stopSequence": 46, "arrival": {"time": "1694892810"}, "stopId": "42290"}, {"stopSequence": 47, "arrival": {"time": "1694892900"}, "stopId": "42291"}, {"stopSequence": 48, "arrival": {"time": "1694893047"}, "stopId": "42292"}, {"stopSequence": 49, "arrival": {"time": "1694893171"}, "stopId": "42293"}, {"stopSequence": 50, "arrival": {"time": "1694893506"}, "stopId": "42294"}, {"stopSequence": 51, "arrival": {"time": "1694893767"}, "stopId": "42295"}, {"stopSequence": 52, "arrival": {"time": "1694894015"}, "stopId": "42296"}, {"stopSequence": 53, "arrival": {"time": "1694894308"}, "stopId": "42297"}, {"stopSequence": 54, "arrival": {"time": "1694894549"}, "stopId": "42298"}, {"stopSequence": 55, "arrival": {"time": "1694894717"}, "stopId": "42299"}, {"stopSequence": 56, "arrival": {"time": "1694894832"}, "stopId": "49295"}, {"stopSequence": 57, "arrival": {"time": "1694895178"}, "stopId": "49296"}, {"stopSequence": 58, "arrival": {"time": "1694895448"}, "stopId": "49297"}, {"stopSequence": 59, "arrival": {"time": "1694895569"}, "stopId": "49298"}, {"stopSequence": 60, "arrival": {"time": "1694895794"}, "stopId": "49299"}, {"stopSequence": 61, "arrival": {"time": "1694895945"}, "stopId": "49300"}, {"stopSequence": 62, "arrival": {"time": "1694896253"}, "stopId": "49301"}, {"stopSequence": 63, "arrival": {"time": "1694896520"}, "stopId": "49302"}, {"stopSequence": 64, "arrival": {"time": "1694896705"}, "stopId": "49303"}, {"stopSequence": 65, "arrival": {"time": "1694896928"}, "stopId": "49304"}, {"stopSequence": 66, "arrival": {"time": "1694897054"}, "stopId": "49305"}, {"stopSequence": 67, "arrival": {"time": "1694897316"}, "stopId": "49306"}, {"stopSequence": 68, "arrival": {"time": "1694897509"}, "stopId": "49307"}, {"stopSequence": 69, "arrival": {"time": "1694897630"}, "stopId": "49308"}, {"stopSequence": 70, "arrival": {"time": "1694897754"}, "stopId": "49309"}, {"stopSequence": 71, "arrival": {"time": "1694898118"}, "stopId": "49310"}, {"stopSequence": 72, "arrival": {"time": "1694898295"}, "stopId": "49311"}, {"stopSequence": 73, "arrival": {"time": "1694898436"}, "stopId": "39633"}, {"stopSequence": 74, "arrival": {"time": "1694898625"}, "stopId": "39634"}, {"stopSequence": 75, "arrival": {"time": "1694898782"}, "stopId": "39635"}, {"stopSequence": 76, "arrival": {"time": "1694899056"}, "stopId": "39636"}, {"stopSequence": 77, "arrival": {"time": "1694899441"}, "stopId": "49503"}, {"stopSequence": 78, "arrival": {"time": "1694900398"}, "stopId": "39637"}, {"stopSequence": 79, "arrival": {"time": "1694900816"}, "stopId": "49317"}, {"stopSequence": 80, "arrival": {"time": "1694901097"}, "stopId": "49318"}, {"stopSequence": 81, "arrival": {"time": "1694901724"}, "stopId": "49319"}, {"stopSequence": 82, "arrival": {"time": "1694902385"}, "stopId": "39641"}, {"stopSequence": 83, "arrival": {"time": "1694902781"}, "stopId": "39642"}, {"stopSequence": 84, "arrival": {"time": "1694906845"}, "stopId": "49325"}, {"stopSequence": 85, "arrival": {"time": "1694908072"}, "stopId": "49326"}, {"stopSequence": 86, "arrival": {"time": "1694908635"}, "stopId": "39648"}, {"stopSequence": 87, "arrival": {"time": "1694909739"}, "stopId": "39649"}, {"stopSequence": 88, "arrival": {"time": "1694911053"}, "stopId": "49329"}, {"stopSequence": 89, "arrival": {"time": "1694912696"}, "stopId": "49330"}, {"stopSequence": 90, "arrival": {"time": "1694913961"}, "stopId": "39652"}, {"stopSequence": 91, "arrival": {"time": "1694914980"}, "stopId": "39653"}, {"stopSequence": 92, "arrival": {"time": "1694916276"}, "stopId": "39654"}, {"stopSequence": 93, "arrival": {"time": "1694917554"}, "stopId": "49334"}, {"stopSequence": 94, "arrival": {"time": "1694920488"}, "stopId": "49335"}, {"stopSequence": 95, "arrival": {"time": "1694923239"}, "stopId": "49336"}, {"stopSequence": 96, "arrival": {"time": "1694930170"}, "stopId": "37437"}, {"stopSequence": 97, "arrival": {"time": "1694935604"}, "stopId": "49337"}, {"stopSequence": 98, "arrival": {"time": "1694939216"}, "stopId": "39661"}, {"stopSequence": 99, "arrival": {"time": "1694944910"}, "stopId": "39662"}, {"stopSequence": 100, "arrival": {"time": "1694956475"}, "stopId": "39663"}, {"stopSequence": 101, "arrival": {"time": "1694969551"}, "stopId": "49341"}, {"stopSequence": 102, "arrival": {"time": "1694986250"}, "stopId": "49342"}, {"stopSequence": 103, "arrival": {"time": "1695071303"}, "stopId": "49343"}], "vehicle": {"licensePlate": "DBGH97"}, "timestamp": "1694889029"}, "vehicle": {"trip": {"tripId": "16c9a590-a-701ff27f-2", "startTime": "15:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "632", "directionId": 0}, "position": {"latitude": -36.96539, "longitude": -72.93679, "bearing": 164.0, "odometer": 0.0, "speed": 25.0}, "timestamp": "1694889029", "vehicle": {"licensePlate": "DBGH97"}}}, {"id": "454294b1-5407-4762-a00a-4cdc0a0d5e64", "tripUpdate": {"trip": {"tripId": "71aa25d5-0-701ff27f-2", "startTime": "14:43:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "632", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 43, "arrival": {"time": "1694889051"}, "stopId": "38509"}, {"stopSequence": 44, "arrival": {"time": "1694889089"}, "stopId": "38642"}, {"stopSequence": 45, "arrival": {"time": "1694889136"}, "stopId": "39795"}, {"stopSequence": 46, "arrival": {"time": "1694889161"}, "stopId": "38502"}, {"stopSequence": 47, "arrival": {"time": "1694889233"}, "stopId": "38503"}, {"stopSequence": 48, "arrival": {"time": "1694889394"}, "stopId": "35691"}, {"stopSequence": 49, "arrival": {"time": "1694889490"}, "stopId": "35693"}, {"stopSequence": 50, "arrival": {"time": "1694889548"}, "stopId": "35694"}, {"stopSequence": 51, "arrival": {"time": "1694889583"}, "stopId": "35695"}, {"stopSequence": 52, "arrival": {"time": "1694889635"}, "stopId": "35696"}, {"stopSequence": 53, "arrival": {"time": "1694889803"}, "stopId": "35697"}, {"stopSequence": 54, "arrival": {"time": "1694889897"}, "stopId": "2-Jan"}, {"stopSequence": 55, "arrival": {"time": "1694889931"}, "stopId": "42460"}, {"stopSequence": 56, "arrival": {"time": "1694889981"}, "stopId": "39726"}, {"stopSequence": 57, "arrival": {"time": "1694890002"}, "stopId": "2-Mar"}, {"stopSequence": 58, "arrival": {"time": "1694890082"}, "stopId": "2-Apr"}, {"stopSequence": 59, "arrival": {"time": "1694890137"}, "stopId": "39728"}, {"stopSequence": 60, "arrival": {"time": "1694890232"}, "stopId": "39729"}, {"stopSequence": 61, "arrival": {"time": "1694890256"}, "stopId": "39730"}, {"stopSequence": 62, "arrival": {"time": "1694890357"}, "stopId": "42200"}, {"stopSequence": 63, "arrival": {"time": "1694890402"}, "stopId": "42203"}, {"stopSequence": 64, "arrival": {"time": "1694890455"}, "stopId": "42204"}, {"stopSequence": 65, "arrival": {"time": "1694890496"}, "stopId": "42205"}, {"stopSequence": 66, "arrival": {"time": "1694890556"}, "stopId": "42201"}, {"stopSequence": 67, "arrival": {"time": "1694890804"}, "stopId": "42206"}, {"stopSequence": 68, "arrival": {"time": "1694890868"}, "stopId": "42207"}, {"stopSequence": 69, "arrival": {"time": "1694890930"}, "stopId": "42208"}, {"stopSequence": 70, "arrival": {"time": "1694891063"}, "stopId": "42564"}, {"stopSequence": 71, "arrival": {"time": "1694891180"}, "stopId": "42214"}, {"stopSequence": 72, "arrival": {"time": "1694891295"}, "stopId": "42209"}, {"stopSequence": 73, "arrival": {"time": "1694891430"}, "stopId": "42210"}, {"stopSequence": 74, "arrival": {"time": "1694891650"}, "stopId": "42215"}, {"stopSequence": 75, "arrival": {"time": "1694891687"}, "stopId": "42216"}, {"stopSequence": 76, "arrival": {"time": "1694891738"}, "stopId": "42217"}, {"stopSequence": 77, "arrival": {"time": "1694891831"}, "stopId": "42218"}, {"stopSequence": 78, "arrival": {"time": "1694891886"}, "stopId": "42219"}, {"stopSequence": 79, "arrival": {"time": "1694892005"}, "stopId": "42220"}, {"stopSequence": 80, "arrival": {"time": "1694892074"}, "stopId": "42221"}, {"stopSequence": 81, "arrival": {"time": "1694892166"}, "stopId": "42222"}, {"stopSequence": 82, "arrival": {"time": "1694892261"}, "stopId": "42223"}, {"stopSequence": 83, "arrival": {"time": "1694892301"}, "stopId": "42224"}, {"stopSequence": 84, "arrival": {"time": "1694892410"}, "stopId": "42225"}, {"stopSequence": 85, "arrival": {"time": "1694892506"}, "stopId": "42226"}, {"stopSequence": 86, "arrival": {"time": "1694892586"}, "stopId": "42227"}, {"stopSequence": 87, "arrival": {"time": "1694892716"}, "stopId": "42228"}, {"stopSequence": 88, "arrival": {"time": "1694892783"}, "stopId": "42229"}, {"stopSequence": 89, "arrival": {"time": "1694892914"}, "stopId": "42230"}, {"stopSequence": 90, "arrival": {"time": "1694892985"}, "stopId": "42231"}, {"stopSequence": 91, "arrival": {"time": "1694893125"}, "stopId": "42232"}, {"stopSequence": 92, "arrival": {"time": "1694893359"}, "stopId": "42234"}, {"stopSequence": 93, "arrival": {"time": "1694893494"}, "stopId": "42235"}, {"stopSequence": 94, "arrival": {"time": "1694893554"}, "stopId": "42211"}, {"stopSequence": 95, "arrival": {"time": "1694893661"}, "stopId": "49203"}, {"stopSequence": 96, "arrival": {"time": "1694893773"}, "stopId": "49204"}, {"stopSequence": 97, "arrival": {"time": "1694893794"}, "stopId": "42503"}, {"stopSequence": 98, "arrival": {"time": "1694893821"}, "stopId": "34564"}, {"stopSequence": 99, "arrival": {"time": "1694894631"}, "stopId": "34789"}, {"stopSequence": 100, "arrival": {"time": "1694894688"}, "stopId": "49163"}, {"stopSequence": 101, "arrival": {"time": "1694897352"}, "stopId": "49208"}, {"stopSequence": 102, "arrival": {"time": "1694897476"}, "stopId": "49209"}, {"stopSequence": 103, "arrival": {"time": "1694897552"}, "stopId": "49210"}, {"stopSequence": 104, "arrival": {"time": "1694898557"}, "stopId": "49211"}, {"stopSequence": 105, "arrival": {"time": "1694898727"}, "stopId": "49212"}, {"stopSequence": 106, "arrival": {"time": "1694899081"}, "stopId": "49213"}, {"stopSequence": 107, "arrival": {"time": "1694900410"}, "stopId": "49206"}, {"stopSequence": 108, "arrival": {"time": "1694901001"}, "stopId": "49215"}, {"stopSequence": 109, "arrival": {"time": "1694901175"}, "stopId": "49216"}, {"stopSequence": 110, "arrival": {"time": "1694901303"}, "stopId": "49217"}, {"stopSequence": 111, "arrival": {"time": "1694901532"}, "stopId": "49214"}, {"stopSequence": 112, "arrival": {"time": "1694901894"}, "stopId": "49249"}, {"stopSequence": 113, "arrival": {"time": "1694902076"}, "stopId": "49218"}, {"stopSequence": 114, "arrival": {"time": "1694902283"}, "stopId": "49219"}, {"stopSequence": 115, "arrival": {"time": "1694902869"}, "stopId": "38044"}, {"stopSequence": 116, "arrival": {"time": "1694903241"}, "stopId": "38045"}, {"stopSequence": 117, "arrival": {"time": "1694904166"}, "stopId": "49220"}, {"stopSequence": 118, "arrival": {"time": "1694905008"}, "stopId": "49221"}, {"stopSequence": 119, "arrival": {"time": "1694905235"}, "stopId": "49222"}, {"stopSequence": 120, "arrival": {"time": "1694905363"}, "stopId": "49223"}, {"stopSequence": 121, "arrival": {"time": "1694905537"}, "stopId": "38049"}, {"stopSequence": 122, "arrival": {"time": "1694905842"}, "stopId": "49224"}, {"stopSequence": 123, "arrival": {"time": "1694906897"}, "stopId": "49253"}, {"stopSequence": 124, "arrival": {"time": "1694908157"}, "stopId": "49226"}, {"stopSequence": 125, "arrival": {"time": "1694908691"}, "stopId": "49227"}, {"stopSequence": 126, "arrival": {"time": "1694909342"}, "stopId": "49229"}, {"stopSequence": 127, "arrival": {"time": "1694909725"}, "stopId": "49228"}, {"stopSequence": 128, "arrival": {"time": "1694910599"}, "stopId": "49230"}, {"stopSequence": 129, "arrival": {"time": "1694911727"}, "stopId": "49235"}, {"stopSequence": 130, "arrival": {"time": "1694918349"}, "stopId": "49232"}, {"stopSequence": 131, "arrival": {"time": "1694938305"}, "stopId": "40342"}, {"stopSequence": 132, "arrival": {"time": "1694955553"}, "stopId": "40343"}, {"stopSequence": 133, "arrival": {"time": "1694974624"}, "stopId": "49243"}], "vehicle": {"licensePlate": "XS4553"}, "timestamp": "1694889028"}, "vehicle": {"trip": {"tripId": "71aa25d5-0-701ff27f-2", "startTime": "14:43:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "632", "directionId": 1}, "position": {"latitude": -36.794197, "longitude": -73.086845, "bearing": 178.0, "odometer": 0.0, "speed": 26.0}, "timestamp": "1694889028", "vehicle": {"licensePlate": "XS4553"}}}, {"id": "e6dc7aa2-2c8b-442b-a9d2-5ff726cdc11b", "tripUpdate": {"trip": {"tripId": "63740513-9-701ff27f-2", "startTime": "15:23:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "632", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 1, "arrival": {"time": "1694889097"}, "stopId": "38560"}, {"stopSequence": 2, "arrival": {"time": "1694889112"}, "stopId": "38697"}, {"stopSequence": 3, "arrival": {"time": "1694889159"}, "stopId": "38646"}, {"stopSequence": 4, "arrival": {"time": "1694889199"}, "stopId": "38632"}, {"stopSequence": 5, "arrival": {"time": "1694889279"}, "stopId": "38767"}, {"stopSequence": 6, "arrival": {"time": "1694889343"}, "stopId": "38768"}, {"stopSequence": 7, "arrival": {"time": "1694889392"}, "stopId": "38769"}, {"stopSequence": 8, "arrival": {"time": "1694889488"}, "stopId": "42244"}, {"stopSequence": 9, "arrival": {"time": "1694889566"}, "stopId": "42245"}, {"stopSequence": 10, "arrival": {"time": "1694889608"}, "stopId": "42246"}, {"stopSequence": 11, "arrival": {"time": "1694889661"}, "stopId": "38779"}, {"stopSequence": 12, "arrival": {"time": "1694889706"}, "stopId": "42247"}, {"stopSequence": 13, "arrival": {"time": "1694889751"}, "stopId": "42248"}, {"stopSequence": 14, "arrival": {"time": "1694889781"}, "stopId": "38782"}, {"stopSequence": 15, "arrival": {"time": "1694889890"}, "stopId": "42249"}, {"stopSequence": 16, "arrival": {"time": "1694889995"}, "stopId": "42421"}, {"stopSequence": 17, "arrival": {"time": "1694890194"}, "stopId": "42422"}, {"stopSequence": 18, "arrival": {"time": "1694890272"}, "stopId": "42423"}, {"stopSequence": 19, "arrival": {"time": "1694890381"}, "stopId": "42424"}, {"stopSequence": 20, "arrival": {"time": "1694890566"}, "stopId": "42425"}, {"stopSequence": 21, "arrival": {"time": "1694890752"}, "stopId": "42426"}, {"stopSequence": 22, "arrival": {"time": "1694890808"}, "stopId": "42427"}, {"stopSequence": 23, "arrival": {"time": "1694890839"}, "stopId": "42428"}, {"stopSequence": 24, "arrival": {"time": "1694890879"}, "stopId": "42429"}, {"stopSequence": 25, "arrival": {"time": "1694890907"}, "stopId": "42430"}, {"stopSequence": 26, "arrival": {"time": "1694890966"}, "stopId": "42431"}, {"stopSequence": 27, "arrival": {"time": "1694890989"}, "stopId": "42432"}, {"stopSequence": 28, "arrival": {"time": "1694891043"}, "stopId": "37578"}, {"stopSequence": 29, "arrival": {"time": "1694891080"}, "stopId": "42434"}, {"stopSequence": 30, "arrival": {"time": "1694891134"}, "stopId": "42435"}, {"stopSequence": 31, "arrival": {"time": "1694891183"}, "stopId": "4831075"}, {"stopSequence": 32, "arrival": {"time": "1694891233"}, "stopId": "49135"}, {"stopSequence": 33, "arrival": {"time": "1694891279"}, "stopId": "49136"}, {"stopSequence": 34, "arrival": {"time": "1694891361"}, "stopId": "49137"}, {"stopSequence": 35, "arrival": {"time": "1694891388"}, "stopId": "49138"}, {"stopSequence": 36, "arrival": {"time": "1694891407"}, "stopId": "49139"}, {"stopSequence": 37, "arrival": {"time": "1694891443"}, "stopId": "49140"}, {"stopSequence": 38, "arrival": {"time": "1694891491"}, "stopId": "49141"}, {"stopSequence": 39, "arrival": {"time": "1694891537"}, "stopId": "49142"}, {"stopSequence": 40, "arrival": {"time": "1694891580"}, "stopId": "49143"}, {"stopSequence": 41, "arrival": {"time": "1694891613"}, "stopId": "38506"}, {"stopSequence": 42, "arrival": {"time": "1694891673"}, "stopId": "38635"}, {"stopSequence": 43, "arrival": {"time": "1694891723"}, "stopId": "38509"}, {"stopSequence": 44, "arrival": {"time": "1694891767"}, "stopId": "38642"}, {"stopSequence": 45, "arrival": {"time": "1694891822"}, "stopId": "39795"}, {"stopSequence": 46, "arrival": {"time": "1694891853"}, "stopId": "38502"}, {"stopSequence": 47, "arrival": {"time": "1694891941"}, "stopId": "38503"}, {"stopSequence": 48, "arrival": {"time": "1694892151"}, "stopId": "35691"}, {"stopSequence": 49, "arrival": {"time": "1694892284"}, "stopId": "35693"}, {"stopSequence": 50, "arrival": {"time": "1694892367"}, "stopId": "35694"}, {"stopSequence": 51, "arrival": {"time": "1694892419"}, "stopId": "35695"}, {"stopSequence": 52, "arrival": {"time": "1694892496"}, "stopId": "35696"}, {"stopSequence": 53, "arrival": {"time": "1694892762"}, "stopId": "35697"}, {"stopSequence": 54, "arrival": {"time": "1694892920"}, "stopId": "2-Jan"}, {"stopSequence": 55, "arrival": {"time": "1694892980"}, "stopId": "42460"}, {"stopSequence": 56, "arrival": {"time": "1694893069"}, "stopId": "39726"}, {"stopSequence": 57, "arrival": {"time": "1694893107"}, "stopId": "2-Mar"}, {"stopSequence": 58, "arrival": {"time": "1694893255"}, "stopId": "2-Apr"}, {"stopSequence": 59, "arrival": {"time": "1694893362"}, "stopId": "39728"}, {"stopSequence": 60, "arrival": {"time": "1694893551"}, "stopId": "39729"}, {"stopSequence": 61, "arrival": {"time": "1694893600"}, "stopId": "39730"}, {"stopSequence": 62, "arrival": {"time": "1694893814"}, "stopId": "42200"}, {"stopSequence": 63, "arrival": {"time": "1694893913"}, "stopId": "42203"}, {"stopSequence": 64, "arrival": {"time": "1694894033"}, "stopId": "42204"}, {"stopSequence": 65, "arrival": {"time": "1694894129"}, "stopId": "42205"}, {"stopSequence": 66, "arrival": {"time": "1694894271"}, "stopId": "42201"}, {"stopSequence": 67, "arrival": {"time": "1694894907"}, "stopId": "42206"}, {"stopSequence": 68, "arrival": {"time": "1694895087"}, "stopId": "42207"}, {"stopSequence": 69, "arrival": {"time": "1694895265"}, "stopId": "42208"}, {"stopSequence": 70, "arrival": {"time": "1694895669"}, "stopId": "42564"}, {"stopSequence": 71, "arrival": {"time": "1694896046"}, "stopId": "42214"}, {"stopSequence": 72, "arrival": {"time": "1694896445"}, "stopId": "42209"}, {"stopSequence": 73, "arrival": {"time": "1694896943"}, "stopId": "42210"}, {"stopSequence": 74, "arrival": {"time": "1694897845"}, "stopId": "42215"}, {"stopSequence": 75, "arrival": {"time": "1694898009"}, "stopId": "42216"}, {"stopSequence": 76, "arrival": {"time": "1694898238"}, "stopId": "42217"}, {"stopSequence": 77, "arrival": {"time": "1694898680"}, "stopId": "42218"}, {"stopSequence": 78, "arrival": {"time": "1694898952"}, "stopId": "42219"}, {"stopSequence": 79, "arrival": {"time": "1694899575"}, "stopId": "42220"}, {"stopSequence": 80, "arrival": {"time": "1694899956"}, "stopId": "42221"}, {"stopSequence": 81, "arrival": {"time": "1694900494"}, "stopId": "42222"}, {"stopSequence": 82, "arrival": {"time": "1694901081"}, "stopId": "42223"}, {"stopSequence": 83, "arrival": {"time": "1694901340"}, "stopId": "42224"}, {"stopSequence": 84, "arrival": {"time": "1694902090"}, "stopId": "42225"}, {"stopSequence": 85, "arrival": {"time": "1694902795"}, "stopId": "42226"}, {"stopSequence": 86, "arrival": {"time": "1694903426"}, "stopId": "42227"}, {"stopSequence": 87, "arrival": {"time": "1694904535"}, "stopId": "42228"}, {"stopSequence": 88, "arrival": {"time": "1694905150"}, "stopId": "42229"}, {"stopSequence": 89, "arrival": {"time": "1694906462"}, "stopId": "42230"}, {"stopSequence": 90, "arrival": {"time": "1694907231"}, "stopId": "42231"}, {"stopSequence": 91, "arrival": {"time": "1694908896"}, "stopId": "42232"}, {"stopSequence": 92, "arrival": {"time": "1694912245"}, "stopId": "42234"}, {"stopSequence": 93, "arrival": {"time": "1694914562"}, "stopId": "42235"}, {"stopSequence": 94, "arrival": {"time": "1694915710"}, "stopId": "42211"}, {"stopSequence": 95, "arrival": {"time": "1694917982"}, "stopId": "49203"}, {"stopSequence": 96, "arrival": {"time": "1694920692"}, "stopId": "49204"}, {"stopSequence": 97, "arrival": {"time": "1694921231"}, "stopId": "42503"}, {"stopSequence": 98, "arrival": {"time": "1694921965"}, "stopId": "34564"}, {"stopSequence": 99, "arrival": {"time": "1694971782"}, "stopId": "34789"}, {"stopSequence": 100, "arrival": {"time": "1694980304"}, "stopId": "49163"}], "vehicle": {"licensePlate": "YS3977"}, "timestamp": "1694889027"}, "vehicle": {"trip": {"tripId": "63740513-9-701ff27f-2", "startTime": "15:23:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "632", "directionId": 1}, "position": {"latitude": -36.708553, "longitude": -73.11462, "bearing": 190.0, "odometer": 0.0, "speed": 10.0}, "timestamp": "1694889027", "vehicle": {"licensePlate": "YS3977"}}}, {"id": "88558a68-3bf9-45f1-a3b7-519e893aed48", "tripUpdate": {"trip": {"tripId": "9433f1f7-2-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "633", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 29, "arrival": {"time": "1694888986"}, "stopId": "35808"}, {"stopSequence": 30, "arrival": {"time": "1694889056"}, "stopId": "35710"}, {"stopSequence": 31, "arrival": {"time": "1694889104"}, "stopId": "50036"}, {"stopSequence": 32, "arrival": {"time": "1694889206"}, "stopId": "35712"}, {"stopSequence": 33, "arrival": {"time": "1694889304"}, "stopId": "35713"}, {"stopSequence": 34, "arrival": {"time": "1694889380"}, "stopId": "35817"}, {"stopSequence": 35, "arrival": {"time": "1694889423"}, "stopId": "35818"}, {"stopSequence": 36, "arrival": {"time": "1694889453"}, "stopId": "49532"}, {"stopSequence": 37, "arrival": {"time": "1694889601"}, "stopId": "49487"}], "vehicle": {"licensePlate": "JVXY87"}, "timestamp": "1694888978"}, "vehicle": {"trip": {"tripId": "9433f1f7-2-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "633", "directionId": 0}, "position": {"latitude": -36.816124, "longitude": -73.03444, "bearing": 62.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888978", "vehicle": {"licensePlate": "JVXY87"}}}, {"id": "9621c27e-22a7-4605-932d-9bd5dcb11c60", "tripUpdate": {"trip": {"tripId": "f33f6815-5-701ff27f-2", "startTime": "14:34:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "633", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 31, "arrival": {"time": "1694888980"}, "stopId": "49514"}, {"stopSequence": 32, "arrival": {"time": "1694889045"}, "stopId": "49516"}, {"stopSequence": 33, "arrival": {"time": "1694889126"}, "stopId": "49517"}, {"stopSequence": 34, "arrival": {"time": "1694889158"}, "stopId": "49511"}, {"stopSequence": 35, "arrival": {"time": "1694889273"}, "stopId": "49481"}, {"stopSequence": 36, "arrival": {"time": "1694889297"}, "stopId": "49485"}], "vehicle": {"licensePlate": "SKJR70"}, "timestamp": "1694888974"}, "vehicle": {"trip": {"tripId": "f33f6815-5-701ff27f-2", "startTime": "14:34:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "633", "directionId": 1}, "position": {"latitude": -36.796047, "longitude": -73.082, "bearing": 330.0, "odometer": 0.0, "speed": 1.3888888}, "timestamp": "1694888974", "vehicle": {"licensePlate": "SKJR70"}}}, {"id": "521d3e63-6042-435e-ad46-b5c6f29d4889", "tripUpdate": {"trip": {"tripId": "db21da87-b-701ff27f-2", "startTime": "14:49:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "634", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 28, "arrival": {"time": "1694888978"}, "stopId": "50032"}, {"stopSequence": 29, "arrival": {"time": "1694889024"}, "stopId": "39495"}, {"stopSequence": 30, "arrival": {"time": "1694889115"}, "stopId": "50033"}, {"stopSequence": 31, "arrival": {"time": "1694889153"}, "stopId": "39497"}, {"stopSequence": 32, "arrival": {"time": "1694889189"}, "stopId": "49407"}, {"stopSequence": 33, "arrival": {"time": "1694889248"}, "stopId": "50034"}, {"stopSequence": 34, "arrival": {"time": "1694889288"}, "stopId": "40903"}, {"stopSequence": 35, "arrival": {"time": "1694889322"}, "stopId": "40904"}, {"stopSequence": 36, "arrival": {"time": "1694889367"}, "stopId": "35814"}, {"stopSequence": 37, "arrival": {"time": "1694889434"}, "stopId": "35815"}, {"stopSequence": 38, "arrival": {"time": "1694889469"}, "stopId": "35816"}, {"stopSequence": 39, "arrival": {"time": "1694889482"}, "stopId": "35817"}, {"stopSequence": 40, "arrival": {"time": "1694889516"}, "stopId": "35818"}, {"stopSequence": 41, "arrival": {"time": "1694889554"}, "stopId": "35819"}, {"stopSequence": 42, "arrival": {"time": "1694889616"}, "stopId": "49417"}, {"stopSequence": 43, "arrival": {"time": "1694889643"}, "stopId": "49420"}, {"stopSequence": 44, "arrival": {"time": "1694889690"}, "stopId": "49421"}, {"stopSequence": 45, "arrival": {"time": "1694889717"}, "stopId": "49422"}, {"stopSequence": 46, "arrival": {"time": "1694889763"}, "stopId": "49423"}, {"stopSequence": 47, "arrival": {"time": "1694889794"}, "stopId": "49539"}, {"stopSequence": 48, "arrival": {"time": "1694889916"}, "stopId": "49424"}, {"stopSequence": 49, "arrival": {"time": "1694889983"}, "stopId": "49374"}], "vehicle": {"licensePlate": "DBLS32"}, "timestamp": "1694888974"}, "vehicle": {"trip": {"tripId": "db21da87-b-701ff27f-2", "startTime": "14:49:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "634", "directionId": 0}, "position": {"latitude": -36.827923, "longitude": -73.041466, "bearing": 60.0, "odometer": 0.0, "speed": 9.166667}, "timestamp": "1694888974", "vehicle": {"licensePlate": "DBLS32"}}}, {"id": "2691e208-7676-4ce6-a0e8-1e607fe9bfd7", "tripUpdate": {"trip": {"tripId": "45c13cfe-f-701ff27f-2", "startTime": "14:50:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "634", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 24, "arrival": {"time": "1694889062"}, "stopId": "37523"}, {"stopSequence": 25, "arrival": {"time": "1694889100"}, "stopId": "37477"}, {"stopSequence": 26, "arrival": {"time": "1694889200"}, "stopId": "49310"}, {"stopSequence": 27, "arrival": {"time": "1694889233"}, "stopId": "49311"}, {"stopSequence": 28, "arrival": {"time": "1694889336"}, "stopId": "35700"}, {"stopSequence": 29, "arrival": {"time": "1694889366"}, "stopId": "35701"}, {"stopSequence": 30, "arrival": {"time": "1694889432"}, "stopId": "35703"}, {"stopSequence": 31, "arrival": {"time": "1694889455"}, "stopId": "35704"}, {"stopSequence": 32, "arrival": {"time": "1694889466"}, "stopId": "35705"}, {"stopSequence": 33, "arrival": {"time": "1694889488"}, "stopId": "35706"}, {"stopSequence": 34, "arrival": {"time": "1694889567"}, "stopId": "49535"}, {"stopSequence": 35, "arrival": {"time": "1694889617"}, "stopId": "49536"}, {"stopSequence": 36, "arrival": {"time": "1694889663"}, "stopId": "49537"}, {"stopSequence": 37, "arrival": {"time": "1694889718"}, "stopId": "39492"}, {"stopSequence": 38, "arrival": {"time": "1694889793"}, "stopId": "49472"}, {"stopSequence": 39, "arrival": {"time": "1694889888"}, "stopId": "49432"}, {"stopSequence": 40, "arrival": {"time": "1694889919"}, "stopId": "49386"}, {"stopSequence": 41, "arrival": {"time": "1694890091"}, "stopId": "49383"}, {"stopSequence": 42, "arrival": {"time": "1694890190"}, "stopId": "49381"}, {"stopSequence": 43, "arrival": {"time": "1694890370"}, "stopId": "49505"}, {"stopSequence": 44, "arrival": {"time": "1694890523"}, "stopId": "49475"}, {"stopSequence": 45, "arrival": {"time": "1694890609"}, "stopId": "49476"}, {"stopSequence": 46, "arrival": {"time": "1694890888"}, "stopId": "49478"}, {"stopSequence": 47, "arrival": {"time": "1694890929"}, "stopId": "49479"}, {"stopSequence": 48, "arrival": {"time": "1694890991"}, "stopId": "49480"}, {"stopSequence": 49, "arrival": {"time": "1694891042"}, "stopId": "49482"}, {"stopSequence": 50, "arrival": {"time": "1694891091"}, "stopId": "49483"}, {"stopSequence": 51, "arrival": {"time": "1694891144"}, "stopId": "49484"}, {"stopSequence": 52, "arrival": {"time": "1694891154"}, "stopId": "49481"}, {"stopSequence": 53, "arrival": {"time": "1694891191"}, "stopId": "49485"}], "vehicle": {"licensePlate": "GXYY75"}, "timestamp": "1694888980"}, "vehicle": {"trip": {"tripId": "45c13cfe-f-701ff27f-2", "startTime": "14:50:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "634", "directionId": 1}, "position": {"latitude": -36.82725, "longitude": -73.04916, "bearing": 238.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888980", "vehicle": {"licensePlate": "GXYY75"}}}, {"id": "7ebd6901-2e49-460f-a9b5-e35937cd8444", "tripUpdate": {"trip": {"tripId": "a380b886-6-701ff27f-2", "startTime": "15:21:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "634", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 6, "arrival": {"time": "1694889029"}, "stopId": "49373"}, {"stopSequence": 7, "arrival": {"time": "1694889095"}, "stopId": "49376"}, {"stopSequence": 8, "arrival": {"time": "1694889183"}, "stopId": "49377"}, {"stopSequence": 9, "arrival": {"time": "1694889234"}, "stopId": "49520"}, {"stopSequence": 10, "arrival": {"time": "1694889314"}, "stopId": "49379"}, {"stopSequence": 11, "arrival": {"time": "1694889372"}, "stopId": "49380"}, {"stopSequence": 12, "arrival": {"time": "1694889495"}, "stopId": "49382"}, {"stopSequence": 13, "arrival": {"time": "1694889609"}, "stopId": "49384"}, {"stopSequence": 14, "arrival": {"time": "1694889623"}, "stopId": "49385"}, {"stopSequence": 15, "arrival": {"time": "1694889761"}, "stopId": "49387"}, {"stopSequence": 16, "arrival": {"time": "1694889868"}, "stopId": "49388"}, {"stopSequence": 17, "arrival": {"time": "1694889905"}, "stopId": "49389"}, {"stopSequence": 18, "arrival": {"time": "1694889946"}, "stopId": "49390"}, {"stopSequence": 19, "arrival": {"time": "1694890001"}, "stopId": "49391"}, {"stopSequence": 20, "arrival": {"time": "1694890020"}, "stopId": "49392"}, {"stopSequence": 21, "arrival": {"time": "1694890120"}, "stopId": "49393"}, {"stopSequence": 22, "arrival": {"time": "1694890166"}, "stopId": "49394"}, {"stopSequence": 23, "arrival": {"time": "1694890216"}, "stopId": "50004"}, {"stopSequence": 24, "arrival": {"time": "1694890287"}, "stopId": "50030"}, {"stopSequence": 25, "arrival": {"time": "1694890337"}, "stopId": "3-Mar"}, {"stopSequence": 26, "arrival": {"time": "1694890385"}, "stopId": "50031"}, {"stopSequence": 27, "arrival": {"time": "1694890410"}, "stopId": "49398"}, {"stopSequence": 28, "arrival": {"time": "1694890434"}, "stopId": "50032"}, {"stopSequence": 29, "arrival": {"time": "1694890477"}, "stopId": "39495"}, {"stopSequence": 30, "arrival": {"time": "1694890562"}, "stopId": "50033"}, {"stopSequence": 31, "arrival": {"time": "1694890599"}, "stopId": "39497"}, {"stopSequence": 32, "arrival": {"time": "1694890633"}, "stopId": "49407"}, {"stopSequence": 33, "arrival": {"time": "1694890691"}, "stopId": "50034"}, {"stopSequence": 34, "arrival": {"time": "1694890731"}, "stopId": "40903"}, {"stopSequence": 35, "arrival": {"time": "1694890765"}, "stopId": "40904"}, {"stopSequence": 36, "arrival": {"time": "1694890811"}, "stopId": "35814"}, {"stopSequence": 37, "arrival": {"time": "1694890880"}, "stopId": "35815"}, {"stopSequence": 38, "arrival": {"time": "1694890917"}, "stopId": "35816"}, {"stopSequence": 39, "arrival": {"time": "1694890930"}, "stopId": "35817"}, {"stopSequence": 40, "arrival": {"time": "1694890966"}, "stopId": "35818"}, {"stopSequence": 41, "arrival": {"time": "1694891007"}, "stopId": "35819"}, {"stopSequence": 42, "arrival": {"time": "1694891074"}, "stopId": "49417"}, {"stopSequence": 43, "arrival": {"time": "1694891104"}, "stopId": "49420"}, {"stopSequence": 44, "arrival": {"time": "1694891156"}, "stopId": "49421"}, {"stopSequence": 45, "arrival": {"time": "1694891186"}, "stopId": "49422"}, {"stopSequence": 46, "arrival": {"time": "1694891239"}, "stopId": "49423"}, {"stopSequence": 47, "arrival": {"time": "1694891274"}, "stopId": "49539"}, {"stopSequence": 48, "arrival": {"time": "1694891416"}, "stopId": "49424"}, {"stopSequence": 49, "arrival": {"time": "1694891496"}, "stopId": "49374"}], "vehicle": {"licensePlate": "HVLT12"}, "timestamp": "1694889006"}, "vehicle": {"trip": {"tripId": "a380b886-6-701ff27f-2", "startTime": "15:21:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "634", "directionId": 0}, "position": {"latitude": -36.807625, "longitude": -73.07759, "bearing": 52.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889006", "vehicle": {"licensePlate": "HVLT12"}}}, {"id": "4708858d-32c8-452d-ab08-8c441cf849b3", "tripUpdate": {"trip": {"tripId": "4c7e6b56-9-701ff27f-2", "startTime": "15:14:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "634", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 11, "arrival": {"time": "1694889025"}, "stopId": "35820"}, {"stopSequence": 12, "arrival": {"time": "1694889055"}, "stopId": "35729"}, {"stopSequence": 13, "arrival": {"time": "1694889081"}, "stopId": "35730"}, {"stopSequence": 14, "arrival": {"time": "1694889114"}, "stopId": "35731"}, {"stopSequence": 15, "arrival": {"time": "1694889181"}, "stopId": "35201"}, {"stopSequence": 16, "arrival": {"time": "1694889267"}, "stopId": "35202"}, {"stopSequence": 17, "arrival": {"time": "1694889376"}, "stopId": "90001"}, {"stopSequence": 18, "arrival": {"time": "1694889464"}, "stopId": "39599"}, {"stopSequence": 19, "arrival": {"time": "1694889478"}, "stopId": "39600"}, {"stopSequence": 20, "arrival": {"time": "1694889552"}, "stopId": "37496"}, {"stopSequence": 21, "arrival": {"time": "1694889603"}, "stopId": "45064"}, {"stopSequence": 22, "arrival": {"time": "1694889675"}, "stopId": "37506"}, {"stopSequence": 23, "arrival": {"time": "1694889763"}, "stopId": "37520"}, {"stopSequence": 24, "arrival": {"time": "1694889853"}, "stopId": "37523"}, {"stopSequence": 25, "arrival": {"time": "1694889888"}, "stopId": "37477"}, {"stopSequence": 26, "arrival": {"time": "1694889981"}, "stopId": "49310"}, {"stopSequence": 27, "arrival": {"time": "1694890012"}, "stopId": "49311"}, {"stopSequence": 28, "arrival": {"time": "1694890110"}, "stopId": "35700"}, {"stopSequence": 29, "arrival": {"time": "1694890139"}, "stopId": "35701"}, {"stopSequence": 30, "arrival": {"time": "1694890202"}, "stopId": "35703"}, {"stopSequence": 31, "arrival": {"time": "1694890225"}, "stopId": "35704"}, {"stopSequence": 32, "arrival": {"time": "1694890235"}, "stopId": "35705"}, {"stopSequence": 33, "arrival": {"time": "1694890257"}, "stopId": "35706"}, {"stopSequence": 34, "arrival": {"time": "1694890335"}, "stopId": "49535"}, {"stopSequence": 35, "arrival": {"time": "1694890384"}, "stopId": "49536"}, {"stopSequence": 36, "arrival": {"time": "1694890431"}, "stopId": "49537"}, {"stopSequence": 37, "arrival": {"time": "1694890486"}, "stopId": "39492"}, {"stopSequence": 38, "arrival": {"time": "1694890563"}, "stopId": "49472"}, {"stopSequence": 39, "arrival": {"time": "1694890661"}, "stopId": "49432"}, {"stopSequence": 40, "arrival": {"time": "1694890693"}, "stopId": "49386"}, {"stopSequence": 41, "arrival": {"time": "1694890875"}, "stopId": "49383"}, {"stopSequence": 42, "arrival": {"time": "1694890981"}, "stopId": "49381"}, {"stopSequence": 43, "arrival": {"time": "1694891179"}, "stopId": "49505"}, {"stopSequence": 44, "arrival": {"time": "1694891351"}, "stopId": "49475"}, {"stopSequence": 45, "arrival": {"time": "1694891449"}, "stopId": "49476"}, {"stopSequence": 46, "arrival": {"time": "1694891777"}, "stopId": "49478"}, {"stopSequence": 47, "arrival": {"time": "1694891825"}, "stopId": "49479"}, {"stopSequence": 48, "arrival": {"time": "1694891900"}, "stopId": "49480"}, {"stopSequence": 49, "arrival": {"time": "1694891962"}, "stopId": "49482"}, {"stopSequence": 50, "arrival": {"time": "1694892021"}, "stopId": "49483"}, {"stopSequence": 51, "arrival": {"time": "1694892087"}, "stopId": "49484"}, {"stopSequence": 52, "arrival": {"time": "1694892099"}, "stopId": "49481"}, {"stopSequence": 53, "arrival": {"time": "1694892145"}, "stopId": "49485"}], "vehicle": {"licensePlate": "JPRY91"}, "timestamp": "1694889018"}, "vehicle": {"trip": {"tripId": "4c7e6b56-9-701ff27f-2", "startTime": "15:14:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "634", "directionId": 1}, "position": {"latitude": -36.820507, "longitude": -73.017815, "bearing": 20.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889018", "vehicle": {"licensePlate": "JPRY91"}}}, {"id": "b71b6505-ef1c-4c0f-913d-ff49eb24bff7", "tripUpdate": {"trip": {"tripId": "c83efe61-5-701ff27f-2", "startTime": "15:05:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "634", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 21, "arrival": {"time": "1694889021"}, "stopId": "49393"}, {"stopSequence": 22, "arrival": {"time": "1694889071"}, "stopId": "49394"}, {"stopSequence": 23, "arrival": {"time": "1694889125"}, "stopId": "50004"}, {"stopSequence": 24, "arrival": {"time": "1694889201"}, "stopId": "50030"}, {"stopSequence": 25, "arrival": {"time": "1694889254"}, "stopId": "3-Mar"}, {"stopSequence": 26, "arrival": {"time": "1694889304"}, "stopId": "50031"}, {"stopSequence": 27, "arrival": {"time": "1694889330"}, "stopId": "49398"}, {"stopSequence": 28, "arrival": {"time": "1694889355"}, "stopId": "50032"}, {"stopSequence": 29, "arrival": {"time": "1694889399"}, "stopId": "39495"}, {"stopSequence": 30, "arrival": {"time": "1694889485"}, "stopId": "50033"}, {"stopSequence": 31, "arrival": {"time": "1694889521"}, "stopId": "39497"}, {"stopSequence": 32, "arrival": {"time": "1694889555"}, "stopId": "49407"}, {"stopSequence": 33, "arrival": {"time": "1694889612"}, "stopId": "50034"}, {"stopSequence": 34, "arrival": {"time": "1694889650"}, "stopId": "40903"}, {"stopSequence": 35, "arrival": {"time": "1694889683"}, "stopId": "40904"}, {"stopSequence": 36, "arrival": {"time": "1694889727"}, "stopId": "35814"}, {"stopSequence": 37, "arrival": {"time": "1694889792"}, "stopId": "35815"}, {"stopSequence": 38, "arrival": {"time": "1694889826"}, "stopId": "35816"}, {"stopSequence": 39, "arrival": {"time": "1694889838"}, "stopId": "35817"}, {"stopSequence": 40, "arrival": {"time": "1694889872"}, "stopId": "35818"}, {"stopSequence": 41, "arrival": {"time": "1694889909"}, "stopId": "35819"}, {"stopSequence": 42, "arrival": {"time": "1694889970"}, "stopId": "49417"}, {"stopSequence": 43, "arrival": {"time": "1694889997"}, "stopId": "49420"}, {"stopSequence": 44, "arrival": {"time": "1694890043"}, "stopId": "49421"}, {"stopSequence": 45, "arrival": {"time": "1694890070"}, "stopId": "49422"}, {"stopSequence": 46, "arrival": {"time": "1694890116"}, "stopId": "49423"}, {"stopSequence": 47, "arrival": {"time": "1694890147"}, "stopId": "49539"}, {"stopSequence": 48, "arrival": {"time": "1694890269"}, "stopId": "49424"}, {"stopSequence": 49, "arrival": {"time": "1694890336"}, "stopId": "49374"}], "vehicle": {"licensePlate": "SVPZ92"}, "timestamp": "1694888994"}, "vehicle": {"trip": {"tripId": "c83efe61-5-701ff27f-2", "startTime": "15:05:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "634", "directionId": 0}, "position": {"latitude": -36.82414, "longitude": -73.05444, "bearing": 154.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888994", "vehicle": {"licensePlate": "SVPZ92"}}}, {"id": "fdab2b7c-7c45-48ab-96bf-13f20fcaf40c", "tripUpdate": {"trip": {"tripId": "09f9f4d9-a-701ff27f-2", "startTime": "15:33:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "636", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 4, "arrival": {"time": "1694889070"}, "stopId": "40989"}, {"stopSequence": 5, "arrival": {"time": "1694889158"}, "stopId": "40985"}, {"stopSequence": 6, "arrival": {"time": "1694889201"}, "stopId": "40973"}, {"stopSequence": 7, "arrival": {"time": "1694889228"}, "stopId": "40983"}, {"stopSequence": 8, "arrival": {"time": "1694889271"}, "stopId": "40984"}, {"stopSequence": 9, "arrival": {"time": "1694889352"}, "stopId": "40990"}, {"stopSequence": 10, "arrival": {"time": "1694889414"}, "stopId": "40991"}, {"stopSequence": 11, "arrival": {"time": "1694889690"}, "stopId": "40974"}, {"stopSequence": 12, "arrival": {"time": "1694890278"}, "stopId": "40995"}, {"stopSequence": 13, "arrival": {"time": "1694890358"}, "stopId": "40996"}, {"stopSequence": 14, "arrival": {"time": "1694890433"}, "stopId": "40997"}, {"stopSequence": 15, "arrival": {"time": "1694890487"}, "stopId": "39614"}, {"stopSequence": 16, "arrival": {"time": "1694890537"}, "stopId": "39615"}, {"stopSequence": 17, "arrival": {"time": "1694890588"}, "stopId": "39616"}, {"stopSequence": 18, "arrival": {"time": "1694890641"}, "stopId": "39617"}, {"stopSequence": 19, "arrival": {"time": "1694890700"}, "stopId": "39618"}, {"stopSequence": 20, "arrival": {"time": "1694890744"}, "stopId": "39619"}, {"stopSequence": 21, "arrival": {"time": "1694890787"}, "stopId": "39620"}, {"stopSequence": 22, "arrival": {"time": "1694890859"}, "stopId": "39621"}, {"stopSequence": 23, "arrival": {"time": "1694890909"}, "stopId": "38281"}, {"stopSequence": 24, "arrival": {"time": "1694890967"}, "stopId": "37506"}, {"stopSequence": 25, "arrival": {"time": "1694891044"}, "stopId": "45069"}, {"stopSequence": 26, "arrival": {"time": "1694891163"}, "stopId": "37523"}, {"stopSequence": 27, "arrival": {"time": "1694891213"}, "stopId": "37477"}, {"stopSequence": 28, "arrival": {"time": "1694891282"}, "stopId": "40848"}], "vehicle": {"licensePlate": "PZLF28"}, "timestamp": "1694889013"}, "vehicle": {"trip": {"tripId": "09f9f4d9-a-701ff27f-2", "startTime": "15:33:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "636", "directionId": 1}, "position": {"latitude": -36.769615, "longitude": -73.07314, "bearing": 277.0, "odometer": 0.0, "speed": 5.277778}, "timestamp": "1694889013", "vehicle": {"licensePlate": "PZLF28"}}}, {"id": "726f1e30-7ef7-429e-bf06-1f1f3ae5661b", "tripUpdate": {"trip": {"tripId": "a966cd42-9-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "725", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 31, "arrival": {"time": "1694888999"}, "stopId": "39634"}, {"stopSequence": 32, "arrival": {"time": "1694889023"}, "stopId": "39635"}, {"stopSequence": 33, "arrival": {"time": "1694889076"}, "stopId": "39636"}, {"stopSequence": 34, "arrival": {"time": "1694889132"}, "stopId": "49503"}, {"stopSequence": 35, "arrival": {"time": "1694889259"}, "stopId": "39637"}, {"stopSequence": 36, "arrival": {"time": "1694889312"}, "stopId": "49317"}, {"stopSequence": 37, "arrival": {"time": "1694889344"}, "stopId": "49318"}, {"stopSequence": 38, "arrival": {"time": "1694889413"}, "stopId": "49319"}, {"stopSequence": 39, "arrival": {"time": "1694889476"}, "stopId": "39641"}, {"stopSequence": 40, "arrival": {"time": "1694889787"}, "stopId": "49325"}, {"stopSequence": 41, "arrival": {"time": "1694889843"}, "stopId": "49326"}, {"stopSequence": 42, "arrival": {"time": "1694889866"}, "stopId": "39648"}, {"stopSequence": 43, "arrival": {"time": "1694889916"}, "stopId": "39649"}, {"stopSequence": 44, "arrival": {"time": "1694889951"}, "stopId": "45112"}, {"stopSequence": 45, "arrival": {"time": "1694890001"}, "stopId": "45113"}, {"stopSequence": 46, "arrival": {"time": "1694890070"}, "stopId": "37490"}, {"stopSequence": 47, "arrival": {"time": "1694890131"}, "stopId": "45115"}, {"stopSequence": 48, "arrival": {"time": "1694890155"}, "stopId": "45116"}, {"stopSequence": 49, "arrival": {"time": "1694890224"}, "stopId": "45118"}, {"stopSequence": 50, "arrival": {"time": "1694890297"}, "stopId": "45119"}, {"stopSequence": 51, "arrival": {"time": "1694890340"}, "stopId": "45120"}, {"stopSequence": 52, "arrival": {"time": "1694890395"}, "stopId": "45121"}, {"stopSequence": 53, "arrival": {"time": "1694890436"}, "stopId": "38535"}, {"stopSequence": 54, "arrival": {"time": "1694890512"}, "stopId": "38536"}, {"stopSequence": 55, "arrival": {"time": "1694890539"}, "stopId": "4838437"}, {"stopSequence": 56, "arrival": {"time": "1694890600"}, "stopId": "45085"}, {"stopSequence": 57, "arrival": {"time": "1694890677"}, "stopId": "45086"}, {"stopSequence": 58, "arrival": {"time": "1694890732"}, "stopId": "38539"}, {"stopSequence": 59, "arrival": {"time": "1694890801"}, "stopId": "38540"}, {"stopSequence": 60, "arrival": {"time": "1694890875"}, "stopId": "38544"}, {"stopSequence": 61, "arrival": {"time": "1694890946"}, "stopId": "38545"}, {"stopSequence": 62, "arrival": {"time": "1694891049"}, "stopId": "38546"}, {"stopSequence": 63, "arrival": {"time": "1694891181"}, "stopId": "38548"}, {"stopSequence": 64, "arrival": {"time": "1694891254"}, "stopId": "38549"}, {"stopSequence": 65, "arrival": {"time": "1694891320"}, "stopId": "38550"}, {"stopSequence": 66, "arrival": {"time": "1694891430"}, "stopId": "38551"}, {"stopSequence": 67, "arrival": {"time": "1694891530"}, "stopId": "38552"}, {"stopSequence": 68, "arrival": {"time": "1694891626"}, "stopId": "49359"}, {"stopSequence": 69, "arrival": {"time": "1694891689"}, "stopId": "49360"}, {"stopSequence": 70, "arrival": {"time": "1694891828"}, "stopId": "49361"}, {"stopSequence": 71, "arrival": {"time": "1694891854"}, "stopId": "49362"}, {"stopSequence": 72, "arrival": {"time": "1694891924"}, "stopId": "49363"}, {"stopSequence": 73, "arrival": {"time": "1694891988"}, "stopId": "49364"}, {"stopSequence": 74, "arrival": {"time": "1694892037"}, "stopId": "49365"}, {"stopSequence": 75, "arrival": {"time": "1694892128"}, "stopId": "38560"}, {"stopSequence": 76, "arrival": {"time": "1694892180"}, "stopId": "42857"}, {"stopSequence": 77, "arrival": {"time": "1694892218"}, "stopId": "38562"}, {"stopSequence": 78, "arrival": {"time": "1694892353"}, "stopId": "40539"}, {"stopSequence": 79, "arrival": {"time": "1694892420"}, "stopId": "40540"}, {"stopSequence": 80, "arrival": {"time": "1694892476"}, "stopId": "40541"}, {"stopSequence": 81, "arrival": {"time": "1694892663"}, "stopId": "40543"}, {"stopSequence": 82, "arrival": {"time": "1694892685"}, "stopId": "41943"}, {"stopSequence": 83, "arrival": {"time": "1694892836"}, "stopId": "40544"}, {"stopSequence": 84, "arrival": {"time": "1694892866"}, "stopId": "16705477"}, {"stopSequence": 85, "arrival": {"time": "1694892943"}, "stopId": "40545"}, {"stopSequence": 86, "arrival": {"time": "1694893031"}, "stopId": "40546"}, {"stopSequence": 87, "arrival": {"time": "1694893085"}, "stopId": "40547"}, {"stopSequence": 88, "arrival": {"time": "1694893172"}, "stopId": "40548"}, {"stopSequence": 89, "arrival": {"time": "1694893562"}, "stopId": "40590"}, {"stopSequence": 90, "arrival": {"time": "1694893677"}, "stopId": "40591"}, {"stopSequence": 91, "arrival": {"time": "1694893865"}, "stopId": "40592"}, {"stopSequence": 92, "arrival": {"time": "1694894208"}, "stopId": "41947"}], "vehicle": {"licensePlate": "DRZG36"}, "timestamp": "1694888976"}, "vehicle": {"trip": {"tripId": "a966cd42-9-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "725", "directionId": 0}, "position": {"latitude": -36.827065, "longitude": -73.06054, "bearing": 330.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888976", "vehicle": {"licensePlate": "DRZG36"}}}, {"id": "db34b698-d115-4177-a222-aade17763b7a", "tripUpdate": {"trip": {"tripId": "9994fa86-6-701ff27f-2", "startTime": "15:36:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "725", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 2, "arrival": {"time": "1694889875"}, "stopId": "38817"}, {"stopSequence": 3, "arrival": {"time": "1694889922"}, "stopId": "38825"}, {"stopSequence": 4, "arrival": {"time": "1694889976"}, "stopId": "38826"}, {"stopSequence": 5, "arrival": {"time": "1694889991"}, "stopId": "38827"}, {"stopSequence": 6, "arrival": {"time": "1694890001"}, "stopId": "38828"}, {"stopSequence": 7, "arrival": {"time": "1694890026"}, "stopId": "38829"}, {"stopSequence": 8, "arrival": {"time": "1694890057"}, "stopId": "38830"}, {"stopSequence": 9, "arrival": {"time": "1694890115"}, "stopId": "38831"}, {"stopSequence": 10, "arrival": {"time": "1694890253"}, "stopId": "38832"}, {"stopSequence": 11, "arrival": {"time": "1694890287"}, "stopId": "38833"}, {"stopSequence": 12, "arrival": {"time": "1694890320"}, "stopId": "38834"}, {"stopSequence": 13, "arrival": {"time": "1694890367"}, "stopId": "35726"}, {"stopSequence": 14, "arrival": {"time": "1694890508"}, "stopId": "35820"}, {"stopSequence": 15, "arrival": {"time": "1694890542"}, "stopId": "35729"}, {"stopSequence": 16, "arrival": {"time": "1694890565"}, "stopId": "35730"}, {"stopSequence": 17, "arrival": {"time": "1694890606"}, "stopId": "35731"}, {"stopSequence": 18, "arrival": {"time": "1694890662"}, "stopId": "35201"}, {"stopSequence": 19, "arrival": {"time": "1694890752"}, "stopId": "35202"}, {"stopSequence": 20, "arrival": {"time": "1694890864"}, "stopId": "90001"}, {"stopSequence": 21, "arrival": {"time": "1694890956"}, "stopId": "39599"}, {"stopSequence": 22, "arrival": {"time": "1694890980"}, "stopId": "39600"}, {"stopSequence": 23, "arrival": {"time": "1694891050"}, "stopId": "37496"}, {"stopSequence": 24, "arrival": {"time": "1694891103"}, "stopId": "45064"}, {"stopSequence": 25, "arrival": {"time": "1694891184"}, "stopId": "37506"}, {"stopSequence": 26, "arrival": {"time": "1694891264"}, "stopId": "45069"}, {"stopSequence": 27, "arrival": {"time": "1694891388"}, "stopId": "37523"}, {"stopSequence": 28, "arrival": {"time": "1694891440"}, "stopId": "37477"}, {"stopSequence": 29, "arrival": {"time": "1694891533"}, "stopId": "49310"}, {"stopSequence": 30, "arrival": {"time": "1694891578"}, "stopId": "49311"}, {"stopSequence": 31, "arrival": {"time": "1694891646"}, "stopId": "39634"}, {"stopSequence": 32, "arrival": {"time": "1694891672"}, "stopId": "39635"}, {"stopSequence": 33, "arrival": {"time": "1694891733"}, "stopId": "39636"}, {"stopSequence": 34, "arrival": {"time": "1694891800"}, "stopId": "49503"}, {"stopSequence": 35, "arrival": {"time": "1694891957"}, "stopId": "39637"}, {"stopSequence": 36, "arrival": {"time": "1694892026"}, "stopId": "49317"}, {"stopSequence": 37, "arrival": {"time": "1694892068"}, "stopId": "49318"}, {"stopSequence": 38, "arrival": {"time": "1694892161"}, "stopId": "49319"}, {"stopSequence": 39, "arrival": {"time": "1694892249"}, "stopId": "39641"}, {"stopSequence": 40, "arrival": {"time": "1694892723"}, "stopId": "49325"}, {"stopSequence": 41, "arrival": {"time": "1694892816"}, "stopId": "49326"}, {"stopSequence": 42, "arrival": {"time": "1694892854"}, "stopId": "39648"}, {"stopSequence": 43, "arrival": {"time": "1694892941"}, "stopId": "39649"}, {"stopSequence": 44, "arrival": {"time": "1694893003"}, "stopId": "45112"}, {"stopSequence": 45, "arrival": {"time": "1694893093"}, "stopId": "45113"}, {"stopSequence": 46, "arrival": {"time": "1694893220"}, "stopId": "37490"}, {"stopSequence": 47, "arrival": {"time": "1694893338"}, "stopId": "45115"}, {"stopSequence": 48, "arrival": {"time": "1694893384"}, "stopId": "45116"}, {"stopSequence": 49, "arrival": {"time": "1694893521"}, "stopId": "45118"}, {"stopSequence": 50, "arrival": {"time": "1694893672"}, "stopId": "45119"}, {"stopSequence": 51, "arrival": {"time": "1694893765"}, "stopId": "45120"}, {"stopSequence": 52, "arrival": {"time": "1694893883"}, "stopId": "45121"}, {"stopSequence": 53, "arrival": {"time": "1694893975"}, "stopId": "38535"}, {"stopSequence": 54, "arrival": {"time": "1694894149"}, "stopId": "38536"}, {"stopSequence": 55, "arrival": {"time": "1694894215"}, "stopId": "4838437"}, {"stopSequence": 56, "arrival": {"time": "1694894360"}, "stopId": "45085"}, {"stopSequence": 57, "arrival": {"time": "1694894554"}, "stopId": "45086"}, {"stopSequence": 58, "arrival": {"time": "1694894694"}, "stopId": "38539"}, {"stopSequence": 59, "arrival": {"time": "1694894877"}, "stopId": "38540"}, {"stopSequence": 60, "arrival": {"time": "1694895084"}, "stopId": "38544"}, {"stopSequence": 61, "arrival": {"time": "1694895285"}, "stopId": "38545"}, {"stopSequence": 62, "arrival": {"time": "1694895596"}, "stopId": "38546"}, {"stopSequence": 63, "arrival": {"time": "1694896015"}, "stopId": "38548"}, {"stopSequence": 64, "arrival": {"time": "1694896260"}, "stopId": "38549"}, {"stopSequence": 65, "arrival": {"time": "1694896491"}, "stopId": "38550"}, {"stopSequence": 66, "arrival": {"time": "1694896894"}, "stopId": "38551"}, {"stopSequence": 67, "arrival": {"time": "1694897281"}, "stopId": "38552"}, {"stopSequence": 68, "arrival": {"time": "1694897674"}, "stopId": "49359"}, {"stopSequence": 69, "arrival": {"time": "1694897945"}, "stopId": "49360"}, {"stopSequence": 70, "arrival": {"time": "1694898578"}, "stopId": "49361"}, {"stopSequence": 71, "arrival": {"time": "1694898702"}, "stopId": "49362"}, {"stopSequence": 72, "arrival": {"time": "1694899043"}, "stopId": "49363"}, {"stopSequence": 73, "arrival": {"time": "1694899369"}, "stopId": "49364"}, {"stopSequence": 74, "arrival": {"time": "1694899626"}, "stopId": "49365"}, {"stopSequence": 75, "arrival": {"time": "1694900133"}, "stopId": "38560"}, {"stopSequence": 76, "arrival": {"time": "1694900431"}, "stopId": "42857"}, {"stopSequence": 77, "arrival": {"time": "1694900660"}, "stopId": "38562"}, {"stopSequence": 78, "arrival": {"time": "1694901509"}, "stopId": "40539"}, {"stopSequence": 79, "arrival": {"time": "1694901958"}, "stopId": "40540"}, {"stopSequence": 80, "arrival": {"time": "1694902351"}, "stopId": "40541"}, {"stopSequence": 81, "arrival": {"time": "1694903786"}, "stopId": "40543"}, {"stopSequence": 82, "arrival": {"time": "1694903969"}, "stopId": "41943"}, {"stopSequence": 83, "arrival": {"time": "1694905304"}, "stopId": "40544"}, {"stopSequence": 84, "arrival": {"time": "1694905584"}, "stopId": "16705477"}, {"stopSequence": 85, "arrival": {"time": "1694906351"}, "stopId": "40545"}, {"stopSequence": 86, "arrival": {"time": "1694907284"}, "stopId": "40546"}, {"stopSequence": 87, "arrival": {"time": "1694907881"}, "stopId": "40547"}, {"stopSequence": 88, "arrival": {"time": "1694908931"}, "stopId": "40548"}, {"stopSequence": 89, "arrival": {"time": "1694914802"}, "stopId": "40590"}, {"stopSequence": 90, "arrival": {"time": "1694917056"}, "stopId": "40591"}, {"stopSequence": 91, "arrival": {"time": "1694921423"}, "stopId": "40592"}, {"stopSequence": 92, "arrival": {"time": "1694932985"}, "stopId": "41947"}], "vehicle": {"licensePlate": "DRZG45"}, "timestamp": "1694889014"}, "vehicle": {"trip": {"tripId": "9994fa86-6-701ff27f-2", "startTime": "15:36:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "725", "directionId": 0}, "position": {"latitude": -36.80036, "longitude": -72.95931, "bearing": 204.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889014", "vehicle": {"licensePlate": "DRZG45"}}}, {"id": "2bf60d47-6900-4dbc-8f96-05ff79f566ae", "tripUpdate": {"trip": {"tripId": "ae8c2cde-a-701ff27f-2", "startTime": "14:48:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "725", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 47, "arrival": {"time": "1694889016"}, "stopId": "45115"}, {"stopSequence": 48, "arrival": {"time": "1694889042"}, "stopId": "45116"}, {"stopSequence": 49, "arrival": {"time": "1694889117"}, "stopId": "45118"}, {"stopSequence": 50, "arrival": {"time": "1694889195"}, "stopId": "45119"}, {"stopSequence": 51, "arrival": {"time": "1694889241"}, "stopId": "45120"}, {"stopSequence": 52, "arrival": {"time": "1694889297"}, "stopId": "45121"}, {"stopSequence": 53, "arrival": {"time": "1694889339"}, "stopId": "38535"}, {"stopSequence": 54, "arrival": {"time": "1694889416"}, "stopId": "38536"}, {"stopSequence": 55, "arrival": {"time": "1694889444"}, "stopId": "4838437"}, {"stopSequence": 56, "arrival": {"time": "1694889504"}, "stopId": "45085"}, {"stopSequence": 57, "arrival": {"time": "1694889580"}, "stopId": "45086"}, {"stopSequence": 58, "arrival": {"time": "1694889633"}, "stopId": "38539"}, {"stopSequence": 59, "arrival": {"time": "1694889698"}, "stopId": "38540"}, {"stopSequence": 60, "arrival": {"time": "1694889768"}, "stopId": "38544"}, {"stopSequence": 61, "arrival": {"time": "1694889833"}, "stopId": "38545"}, {"stopSequence": 62, "arrival": {"time": "1694889928"}, "stopId": "38546"}, {"stopSequence": 63, "arrival": {"time": "1694890045"}, "stopId": "38548"}, {"stopSequence": 64, "arrival": {"time": "1694890108"}, "stopId": "38549"}, {"stopSequence": 65, "arrival": {"time": "1694890165"}, "stopId": "38550"}, {"stopSequence": 66, "arrival": {"time": "1694890259"}, "stopId": "38551"}, {"stopSequence": 67, "arrival": {"time": "1694890342"}, "stopId": "38552"}, {"stopSequence": 68, "arrival": {"time": "1694890420"}, "stopId": "49359"}, {"stopSequence": 69, "arrival": {"time": "1694890471"}, "stopId": "49360"}, {"stopSequence": 70, "arrival": {"time": "1694890582"}, "stopId": "49361"}, {"stopSequence": 71, "arrival": {"time": "1694890602"}, "stopId": "49362"}, {"stopSequence": 72, "arrival": {"time": "1694890657"}, "stopId": "49363"}, {"stopSequence": 73, "arrival": {"time": "1694890706"}, "stopId": "49364"}, {"stopSequence": 74, "arrival": {"time": "1694890743"}, "stopId": "49365"}, {"stopSequence": 75, "arrival": {"time": "1694890812"}, "stopId": "38560"}, {"stopSequence": 76, "arrival": {"time": "1694890851"}, "stopId": "42857"}, {"stopSequence": 77, "arrival": {"time": "1694890880"}, "stopId": "38562"}, {"stopSequence": 78, "arrival": {"time": "1694890979"}, "stopId": "40539"}, {"stopSequence": 79, "arrival": {"time": "1694891027"}, "stopId": "40540"}, {"stopSequence": 80, "arrival": {"time": "1694891067"}, "stopId": "40541"}, {"stopSequence": 81, "arrival": {"time": "1694891199"}, "stopId": "40543"}, {"stopSequence": 82, "arrival": {"time": "1694891215"}, "stopId": "41943"}, {"stopSequence": 83, "arrival": {"time": "1694891319"}, "stopId": "40544"}, {"stopSequence": 84, "arrival": {"time": "1694891339"}, "stopId": "16705477"}, {"stopSequence": 85, "arrival": {"time": "1694891392"}, "stopId": "40545"}, {"stopSequence": 86, "arrival": {"time": "1694891451"}, "stopId": "40546"}, {"stopSequence": 87, "arrival": {"time": "1694891486"}, "stopId": "40547"}, {"stopSequence": 88, "arrival": {"time": "1694891544"}, "stopId": "40548"}, {"stopSequence": 89, "arrival": {"time": "1694891793"}, "stopId": "40590"}, {"stopSequence": 90, "arrival": {"time": "1694891865"}, "stopId": "40591"}, {"stopSequence": 91, "arrival": {"time": "1694891980"}, "stopId": "40592"}, {"stopSequence": 92, "arrival": {"time": "1694892184"}, "stopId": "41947"}], "vehicle": {"licensePlate": "FPRX97"}, "timestamp": "1694888976"}, "vehicle": {"trip": {"tripId": "ae8c2cde-a-701ff27f-2", "startTime": "14:48:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "725", "directionId": 0}, "position": {"latitude": -36.783348, "longitude": -73.08682, "bearing": 0.0, "odometer": 0.0, "speed": 11.111111}, "timestamp": "1694888976", "vehicle": {"licensePlate": "FPRX97"}}}, {"id": "18acfe3f-4de2-417c-9886-52c7cafc18c0", "tripUpdate": {"trip": {"tripId": "bc15b225-4-701ff27f-2", "startTime": "14:24:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "725", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 76, "arrival": {"time": "1694889043"}, "stopId": "42857"}, {"stopSequence": 77, "arrival": {"time": "1694889073"}, "stopId": "38562"}, {"stopSequence": 78, "arrival": {"time": "1694889172"}, "stopId": "40539"}, {"stopSequence": 79, "arrival": {"time": "1694889219"}, "stopId": "40540"}, {"stopSequence": 80, "arrival": {"time": "1694889257"}, "stopId": "40541"}, {"stopSequence": 81, "arrival": {"time": "1694889381"}, "stopId": "40543"}, {"stopSequence": 82, "arrival": {"time": "1694889395"}, "stopId": "41943"}, {"stopSequence": 83, "arrival": {"time": "1694889488"}, "stopId": "40544"}, {"stopSequence": 84, "arrival": {"time": "1694889505"}, "stopId": "16705477"}, {"stopSequence": 85, "arrival": {"time": "1694889551"}, "stopId": "40545"}, {"stopSequence": 86, "arrival": {"time": "1694889601"}, "stopId": "40546"}, {"stopSequence": 87, "arrival": {"time": "1694889631"}, "stopId": "40547"}, {"stopSequence": 88, "arrival": {"time": "1694889679"}, "stopId": "40548"}, {"stopSequence": 89, "arrival": {"time": "1694889877"}, "stopId": "40590"}, {"stopSequence": 90, "arrival": {"time": "1694889931"}, "stopId": "40591"}, {"stopSequence": 91, "arrival": {"time": "1694890016"}, "stopId": "40592"}, {"stopSequence": 92, "arrival": {"time": "1694890162"}, "stopId": "41947"}], "vehicle": {"licensePlate": "HYCZ23"}, "timestamp": "1694889008"}, "vehicle": {"trip": {"tripId": "bc15b225-4-701ff27f-2", "startTime": "14:24:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "725", "directionId": 0}, "position": {"latitude": -36.711624, "longitude": -73.11488, "bearing": 216.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889008", "vehicle": {"licensePlate": "HYCZ23"}}}, {"id": "336b2186-edc4-4010-a314-0b9105677e96", "tripUpdate": {"trip": {"tripId": "0a943e8a-0-701ff27f-2", "startTime": "15:12:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "725", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 16, "arrival": {"time": "1694889038"}, "stopId": "35730"}, {"stopSequence": 17, "arrival": {"time": "1694889081"}, "stopId": "35731"}, {"stopSequence": 18, "arrival": {"time": "1694889140"}, "stopId": "35201"}, {"stopSequence": 19, "arrival": {"time": "1694889232"}, "stopId": "35202"}, {"stopSequence": 20, "arrival": {"time": "1694889344"}, "stopId": "90001"}, {"stopSequence": 21, "arrival": {"time": "1694889433"}, "stopId": "39599"}, {"stopSequence": 22, "arrival": {"time": "1694889456"}, "stopId": "39600"}, {"stopSequence": 23, "arrival": {"time": "1694889522"}, "stopId": "37496"}, {"stopSequence": 24, "arrival": {"time": "1694889571"}, "stopId": "45064"}, {"stopSequence": 25, "arrival": {"time": "1694889644"}, "stopId": "37506"}, {"stopSequence": 26, "arrival": {"time": "1694889715"}, "stopId": "45069"}, {"stopSequence": 27, "arrival": {"time": "1694889823"}, "stopId": "37523"}, {"stopSequence": 28, "arrival": {"time": "1694889867"}, "stopId": "37477"}, {"stopSequence": 29, "arrival": {"time": "1694889944"}, "stopId": "49310"}, {"stopSequence": 30, "arrival": {"time": "1694889981"}, "stopId": "49311"}, {"stopSequence": 31, "arrival": {"time": "1694890035"}, "stopId": "39634"}, {"stopSequence": 32, "arrival": {"time": "1694890057"}, "stopId": "39635"}, {"stopSequence": 33, "arrival": {"time": "1694890105"}, "stopId": "39636"}, {"stopSequence": 34, "arrival": {"time": "1694890157"}, "stopId": "49503"}, {"stopSequence": 35, "arrival": {"time": "1694890276"}, "stopId": "39637"}, {"stopSequence": 36, "arrival": {"time": "1694890327"}, "stopId": "49317"}, {"stopSequence": 37, "arrival": {"time": "1694890358"}, "stopId": "49318"}, {"stopSequence": 38, "arrival": {"time": "1694890425"}, "stopId": "49319"}, {"stopSequence": 39, "arrival": {"time": "1694890488"}, "stopId": "39641"}, {"stopSequence": 40, "arrival": {"time": "1694890806"}, "stopId": "49325"}, {"stopSequence": 41, "arrival": {"time": "1694890865"}, "stopId": "49326"}, {"stopSequence": 42, "arrival": {"time": "1694890890"}, "stopId": "39648"}, {"stopSequence": 43, "arrival": {"time": "1694890944"}, "stopId": "39649"}, {"stopSequence": 44, "arrival": {"time": "1694890982"}, "stopId": "45112"}, {"stopSequence": 45, "arrival": {"time": "1694891037"}, "stopId": "45113"}, {"stopSequence": 46, "arrival": {"time": "1694891113"}, "stopId": "37490"}, {"stopSequence": 47, "arrival": {"time": "1694891182"}, "stopId": "45115"}, {"stopSequence": 48, "arrival": {"time": "1694891208"}, "stopId": "45116"}, {"stopSequence": 49, "arrival": {"time": "1694891287"}, "stopId": "45118"}, {"stopSequence": 50, "arrival": {"time": "1694891371"}, "stopId": "45119"}, {"stopSequence": 51, "arrival": {"time": "1694891422"}, "stopId": "45120"}, {"stopSequence": 52, "arrival": {"time": "1694891486"}, "stopId": "45121"}, {"stopSequence": 53, "arrival": {"time": "1694891535"}, "stopId": "38535"}, {"stopSequence": 54, "arrival": {"time": "1694891626"}, "stopId": "38536"}, {"stopSequence": 55, "arrival": {"time": "1694891659"}, "stopId": "4838437"}, {"stopSequence": 56, "arrival": {"time": "1694891733"}, "stopId": "45085"}, {"stopSequence": 57, "arrival": {"time": "1694891829"}, "stopId": "45086"}, {"stopSequence": 58, "arrival": {"time": "1694891897"}, "stopId": "38539"}, {"stopSequence": 59, "arrival": {"time": "1694891984"}, "stopId": "38540"}, {"stopSequence": 60, "arrival": {"time": "1694892079"}, "stopId": "38544"}, {"stopSequence": 61, "arrival": {"time": "1694892170"}, "stopId": "38545"}, {"stopSequence": 62, "arrival": {"time": "1694892307"}, "stopId": "38546"}, {"stopSequence": 63, "arrival": {"time": "1694892483"}, "stopId": "38548"}, {"stopSequence": 64, "arrival": {"time": "1694892582"}, "stopId": "38549"}, {"stopSequence": 65, "arrival": {"time": "1694892674"}, "stopId": "38550"}, {"stopSequence": 66, "arrival": {"time": "1694892828"}, "stopId": "38551"}, {"stopSequence": 67, "arrival": {"time": "1694892969"}, "stopId": "38552"}, {"stopSequence": 68, "arrival": {"time": "1694893108"}, "stopId": "49359"}, {"stopSequence": 69, "arrival": {"time": "1694893201"}, "stopId": "49360"}, {"stopSequence": 70, "arrival": {"time": "1694893407"}, "stopId": "49361"}, {"stopSequence": 71, "arrival": {"time": "1694893446"}, "stopId": "49362"}, {"stopSequence": 72, "arrival": {"time": "1694893552"}, "stopId": "49363"}, {"stopSequence": 73, "arrival": {"time": "1694893649"}, "stopId": "49364"}, {"stopSequence": 74, "arrival": {"time": "1694893725"}, "stopId": "49365"}, {"stopSequence": 75, "arrival": {"time": "1694893868"}, "stopId": "38560"}, {"stopSequence": 76, "arrival": {"time": "1694893949"}, "stopId": "42857"}, {"stopSequence": 77, "arrival": {"time": "1694894010"}, "stopId": "38562"}, {"stopSequence": 78, "arrival": {"time": "1694894227"}, "stopId": "40539"}, {"stopSequence": 79, "arrival": {"time": "1694894336"}, "stopId": "40540"}, {"stopSequence": 80, "arrival": {"time": "1694894428"}, "stopId": "40541"}, {"stopSequence": 81, "arrival": {"time": "1694894743"}, "stopId": "40543"}, {"stopSequence": 82, "arrival": {"time": "1694894780"}, "stopId": "41943"}, {"stopSequence": 83, "arrival": {"time": "1694895042"}, "stopId": "40544"}, {"stopSequence": 84, "arrival": {"time": "1694895093"}, "stopId": "16705477"}, {"stopSequence": 85, "arrival": {"time": "1694895230"}, "stopId": "40545"}, {"stopSequence": 86, "arrival": {"time": "1694895388"}, "stopId": "40546"}, {"stopSequence": 87, "arrival": {"time": "1694895484"}, "stopId": "40547"}, {"stopSequence": 88, "arrival": {"time": "1694895644"}, "stopId": "40548"}, {"stopSequence": 89, "arrival": {"time": "1694896380"}, "stopId": "40590"}, {"stopSequence": 90, "arrival": {"time": "1694896607"}, "stopId": "40591"}, {"stopSequence": 91, "arrival": {"time": "1694896984"}, "stopId": "40592"}, {"stopSequence": 92, "arrival": {"time": "1694897702"}, "stopId": "41947"}], "vehicle": {"licensePlate": "HYCZ76"}, "timestamp": "1694889020"}, "vehicle": {"trip": {"tripId": "0a943e8a-0-701ff27f-2", "startTime": "15:12:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "725", "directionId": 0}, "position": {"latitude": -36.819294, "longitude": -73.01792, "bearing": 294.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889020", "vehicle": {"licensePlate": "HYCZ76"}}}, {"id": "ebb4af2c-af4f-4214-b56c-d0dc610a7d39", "tripUpdate": {"trip": {"tripId": "caf08a3a-f-701ff27f-2", "startTime": "14:12:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "725", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 88, "arrival": {"time": "1694889019"}, "stopId": "40548"}, {"stopSequence": 89, "arrival": {"time": "1694889231"}, "stopId": "40590"}, {"stopSequence": 90, "arrival": {"time": "1694889289"}, "stopId": "40591"}, {"stopSequence": 91, "arrival": {"time": "1694889377"}, "stopId": "40592"}, {"stopSequence": 92, "arrival": {"time": "1694889527"}, "stopId": "41947"}], "vehicle": {"licensePlate": "HYYX76"}, "timestamp": "1694888970"}, "vehicle": {"trip": {"tripId": "caf08a3a-f-701ff27f-2", "startTime": "14:12:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "725", "directionId": 0}, "position": {"latitude": -36.71264, "longitude": -73.135376, "bearing": 286.0, "odometer": 0.0, "speed": 1.3888888}, "timestamp": "1694888970", "vehicle": {"licensePlate": "HYYX76"}}}, {"id": "b1e4e112-5a57-4bc8-9b2b-828b8ff7e8d9", "tripUpdate": {"trip": {"tripId": "ce54ea2c-2-701ff27f-2", "startTime": "14:36:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "725", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 63, "arrival": {"time": "1694889082"}, "stopId": "38548"}, {"stopSequence": 64, "arrival": {"time": "1694889151"}, "stopId": "38549"}, {"stopSequence": 65, "arrival": {"time": "1694889212"}, "stopId": "38550"}, {"stopSequence": 66, "arrival": {"time": "1694889311"}, "stopId": "38551"}, {"stopSequence": 67, "arrival": {"time": "1694889397"}, "stopId": "38552"}, {"stopSequence": 68, "arrival": {"time": "1694889477"}, "stopId": "49359"}, {"stopSequence": 69, "arrival": {"time": "1694889529"}, "stopId": "49360"}, {"stopSequence": 70, "arrival": {"time": "1694889638"}, "stopId": "49361"}, {"stopSequence": 71, "arrival": {"time": "1694889658"}, "stopId": "49362"}, {"stopSequence": 72, "arrival": {"time": "1694889711"}, "stopId": "49363"}, {"stopSequence": 73, "arrival": {"time": "1694889758"}, "stopId": "49364"}, {"stopSequence": 74, "arrival": {"time": "1694889794"}, "stopId": "49365"}, {"stopSequence": 75, "arrival": {"time": "1694889859"}, "stopId": "38560"}, {"stopSequence": 76, "arrival": {"time": "1694889895"}, "stopId": "42857"}, {"stopSequence": 77, "arrival": {"time": "1694889922"}, "stopId": "38562"}, {"stopSequence": 78, "arrival": {"time": "1694890013"}, "stopId": "40539"}, {"stopSequence": 79, "arrival": {"time": "1694890057"}, "stopId": "40540"}, {"stopSequence": 80, "arrival": {"time": "1694890093"}, "stopId": "40541"}, {"stopSequence": 81, "arrival": {"time": "1694890210"}, "stopId": "40543"}, {"stopSequence": 82, "arrival": {"time": "1694890224"}, "stopId": "41943"}, {"stopSequence": 83, "arrival": {"time": "1694890314"}, "stopId": "40544"}, {"stopSequence": 84, "arrival": {"time": "1694890332"}, "stopId": "16705477"}, {"stopSequence": 85, "arrival": {"time": "1694890377"}, "stopId": "40545"}, {"stopSequence": 86, "arrival": {"time": "1694890427"}, "stopId": "40546"}, {"stopSequence": 87, "arrival": {"time": "1694890456"}, "stopId": "40547"}, {"stopSequence": 88, "arrival": {"time": "1694890505"}, "stopId": "40548"}, {"stopSequence": 89, "arrival": {"time": "1694890708"}, "stopId": "40590"}, {"stopSequence": 90, "arrival": {"time": "1694890766"}, "stopId": "40591"}, {"stopSequence": 91, "arrival": {"time": "1694890856"}, "stopId": "40592"}, {"stopSequence": 92, "arrival": {"time": "1694891014"}, "stopId": "41947"}], "vehicle": {"licensePlate": "RTZT30"}, "timestamp": "1694889008"}, "vehicle": {"trip": {"tripId": "ce54ea2c-2-701ff27f-2", "startTime": "14:36:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "725", "directionId": 0}, "position": {"latitude": -36.74155, "longitude": -73.09845, "bearing": 334.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889008", "vehicle": {"licensePlate": "RTZT30"}}}, {"id": "7cb12a63-c4c1-47ea-9562-bfc8efb01d07", "tripUpdate": {"trip": {"tripId": "3d9d21b5-6-701ff27f-2", "startTime": "14:36:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "726", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 80, "arrival": {"time": "1694889040"}, "stopId": "40904"}, {"stopSequence": 81, "arrival": {"time": "1694889096"}, "stopId": "35814"}, {"stopSequence": 82, "arrival": {"time": "1694889171"}, "stopId": "35815"}, {"stopSequence": 83, "arrival": {"time": "1694889202"}, "stopId": "35816"}, {"stopSequence": 84, "arrival": {"time": "1694889207"}, "stopId": "35817"}, {"stopSequence": 85, "arrival": {"time": "1694889251"}, "stopId": "35818"}, {"stopSequence": 86, "arrival": {"time": "1694889289"}, "stopId": "35819"}, {"stopSequence": 87, "arrival": {"time": "1694889483"}, "stopId": "35822"}, {"stopSequence": 88, "arrival": {"time": "1694889533"}, "stopId": "35823"}, {"stopSequence": 89, "arrival": {"time": "1694889588"}, "stopId": "35723"}, {"stopSequence": 90, "arrival": {"time": "1694889626"}, "stopId": "35722"}, {"stopSequence": 91, "arrival": {"time": "1694889763"}, "stopId": "35827"}, {"stopSequence": 92, "arrival": {"time": "1694889787"}, "stopId": "35828"}, {"stopSequence": 93, "arrival": {"time": "1694889806"}, "stopId": "35716"}, {"stopSequence": 94, "arrival": {"time": "1694889847"}, "stopId": "35715"}], "vehicle": {"licensePlate": "DHDT12"}, "timestamp": "1694889018"}, "vehicle": {"trip": {"tripId": "3d9d21b5-6-701ff27f-2", "startTime": "14:36:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "726", "directionId": 1}, "position": {"latitude": -36.816902, "longitude": -73.03284, "bearing": 38.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889018", "vehicle": {"licensePlate": "DHDT12"}}}, {"id": "c1a4dc4d-ea5a-4be4-a50a-db8fa70d1bc9", "tripUpdate": {"trip": {"tripId": "b7b79609-3-701ff27f-2", "startTime": "15:24:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "726", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 21, "arrival": {"time": "1694889019"}, "stopId": "42857"}, {"stopSequence": 22, "arrival": {"time": "1694889052"}, "stopId": "38697"}, {"stopSequence": 23, "arrival": {"time": "1694889099"}, "stopId": "38646"}, {"stopSequence": 24, "arrival": {"time": "1694889136"}, "stopId": "38632"}, {"stopSequence": 25, "arrival": {"time": "1694889225"}, "stopId": "38767"}, {"stopSequence": 26, "arrival": {"time": "1694889287"}, "stopId": "38768"}, {"stopSequence": 27, "arrival": {"time": "1694889339"}, "stopId": "38769"}, {"stopSequence": 28, "arrival": {"time": "1694889372"}, "stopId": "49357"}, {"stopSequence": 29, "arrival": {"time": "1694889421"}, "stopId": "38771"}, {"stopSequence": 30, "arrival": {"time": "1694889465"}, "stopId": "38668"}, {"stopSequence": 31, "arrival": {"time": "1694889556"}, "stopId": "38661"}, {"stopSequence": 32, "arrival": {"time": "1694889640"}, "stopId": "38657"}, {"stopSequence": 33, "arrival": {"time": "1694889697"}, "stopId": "38743"}, {"stopSequence": 34, "arrival": {"time": "1694889762"}, "stopId": "38652"}, {"stopSequence": 35, "arrival": {"time": "1694889829"}, "stopId": "38721"}, {"stopSequence": 36, "arrival": {"time": "1694889887"}, "stopId": "38659"}, {"stopSequence": 37, "arrival": {"time": "1694889965"}, "stopId": "38674"}, {"stopSequence": 38, "arrival": {"time": "1694890031"}, "stopId": "38649"}, {"stopSequence": 39, "arrival": {"time": "1694890100"}, "stopId": "38718"}, {"stopSequence": 40, "arrival": {"time": "1694890164"}, "stopId": "38735"}, {"stopSequence": 41, "arrival": {"time": "1694890220"}, "stopId": "42270"}, {"stopSequence": 42, "arrival": {"time": "1694890264"}, "stopId": "42271"}, {"stopSequence": 43, "arrival": {"time": "1694890462"}, "stopId": "38688"}, {"stopSequence": 44, "arrival": {"time": "1694890518"}, "stopId": "38673"}, {"stopSequence": 45, "arrival": {"time": "1694890591"}, "stopId": "39785"}, {"stopSequence": 46, "arrival": {"time": "1694890633"}, "stopId": "38664"}, {"stopSequence": 47, "arrival": {"time": "1694890687"}, "stopId": "38702"}, {"stopSequence": 48, "arrival": {"time": "1694890732"}, "stopId": "39787"}, {"stopSequence": 49, "arrival": {"time": "1694890774"}, "stopId": "38501"}, {"stopSequence": 50, "arrival": {"time": "1694890833"}, "stopId": "38692"}, {"stopSequence": 51, "arrival": {"time": "1694890905"}, "stopId": "38714"}, {"stopSequence": 52, "arrival": {"time": "1694890957"}, "stopId": "39791"}, {"stopSequence": 53, "arrival": {"time": "1694890994"}, "stopId": "38506"}, {"stopSequence": 54, "arrival": {"time": "1694891047"}, "stopId": "38635"}, {"stopSequence": 55, "arrival": {"time": "1694891082"}, "stopId": "38509"}, {"stopSequence": 56, "arrival": {"time": "1694891120"}, "stopId": "38642"}, {"stopSequence": 57, "arrival": {"time": "1694891178"}, "stopId": "39795"}, {"stopSequence": 58, "arrival": {"time": "1694891207"}, "stopId": "38502"}, {"stopSequence": 59, "arrival": {"time": "1694891280"}, "stopId": "38503"}, {"stopSequence": 60, "arrival": {"time": "1694891575"}, "stopId": "35693"}, {"stopSequence": 61, "arrival": {"time": "1694891642"}, "stopId": "35694"}, {"stopSequence": 62, "arrival": {"time": "1694891683"}, "stopId": "35695"}, {"stopSequence": 63, "arrival": {"time": "1694891751"}, "stopId": "35696"}, {"stopSequence": 64, "arrival": {"time": "1694891966"}, "stopId": "35697"}, {"stopSequence": 65, "arrival": {"time": "1694892096"}, "stopId": "2-Jan"}, {"stopSequence": 66, "arrival": {"time": "1694892137"}, "stopId": "42460"}, {"stopSequence": 67, "arrival": {"time": "1694892190"}, "stopId": "35690"}, {"stopSequence": 68, "arrival": {"time": "1694892327"}, "stopId": "35700"}, {"stopSequence": 69, "arrival": {"time": "1694892474"}, "stopId": "35703"}, {"stopSequence": 70, "arrival": {"time": "1694892497"}, "stopId": "35704"}, {"stopSequence": 71, "arrival": {"time": "1694892525"}, "stopId": "35705"}, {"stopSequence": 72, "arrival": {"time": "1694892559"}, "stopId": "35706"}, {"stopSequence": 73, "arrival": {"time": "1694892632"}, "stopId": "35707"}, {"stopSequence": 74, "arrival": {"time": "1694892684"}, "stopId": "35708"}, {"stopSequence": 75, "arrival": {"time": "1694892709"}, "stopId": "35709"}, {"stopSequence": 76, "arrival": {"time": "1694892870"}, "stopId": "37522"}, {"stopSequence": 77, "arrival": {"time": "1694892929"}, "stopId": "39599"}, {"stopSequence": 78, "arrival": {"time": "1694892998"}, "stopId": "50034"}, {"stopSequence": 79, "arrival": {"time": "1694893070"}, "stopId": "40903"}, {"stopSequence": 80, "arrival": {"time": "1694893126"}, "stopId": "40904"}, {"stopSequence": 81, "arrival": {"time": "1694893220"}, "stopId": "35814"}, {"stopSequence": 82, "arrival": {"time": "1694893354"}, "stopId": "35815"}, {"stopSequence": 83, "arrival": {"time": "1694893411"}, "stopId": "35816"}, {"stopSequence": 84, "arrival": {"time": "1694893420"}, "stopId": "35817"}, {"stopSequence": 85, "arrival": {"time": "1694893503"}, "stopId": "35818"}, {"stopSequence": 86, "arrival": {"time": "1694893577"}, "stopId": "35819"}, {"stopSequence": 87, "arrival": {"time": "1694893982"}, "stopId": "35822"}, {"stopSequence": 88, "arrival": {"time": "1694894095"}, "stopId": "35823"}, {"stopSequence": 89, "arrival": {"time": "1694894225"}, "stopId": "35723"}, {"stopSequence": 90, "arrival": {"time": "1694894319"}, "stopId": "35722"}, {"stopSequence": 91, "arrival": {"time": "1694894675"}, "stopId": "35827"}, {"stopSequence": 92, "arrival": {"time": "1694894740"}, "stopId": "35828"}, {"stopSequence": 93, "arrival": {"time": "1694894794"}, "stopId": "35716"}, {"stopSequence": 94, "arrival": {"time": "1694894910"}, "stopId": "35715"}], "vehicle": {"licensePlate": "HDCC29"}, "timestamp": "1694889010"}, "vehicle": {"trip": {"tripId": "b7b79609-3-701ff27f-2", "startTime": "15:24:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "726", "directionId": 1}, "position": {"latitude": -36.713787, "longitude": -73.11589, "bearing": 40.0, "odometer": 0.0, "speed": 0.2777778}, "timestamp": "1694889010", "vehicle": {"licensePlate": "HDCC29"}}}, {"id": "c932a649-c599-415b-9675-f7fbdf2c8364", "tripUpdate": {"trip": {"tripId": "2217740b-6-701ff27f-2", "startTime": "14:48:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "726", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 61, "arrival": {"time": "1694889055"}, "stopId": "35694"}, {"stopSequence": 62, "arrival": {"time": "1694889090"}, "stopId": "35695"}, {"stopSequence": 63, "arrival": {"time": "1694889148"}, "stopId": "35696"}, {"stopSequence": 64, "arrival": {"time": "1694889322"}, "stopId": "35697"}, {"stopSequence": 65, "arrival": {"time": "1694889421"}, "stopId": "2-Jan"}, {"stopSequence": 66, "arrival": {"time": "1694889451"}, "stopId": "42460"}, {"stopSequence": 67, "arrival": {"time": "1694889490"}, "stopId": "35690"}, {"stopSequence": 68, "arrival": {"time": "1694889586"}, "stopId": "35700"}, {"stopSequence": 69, "arrival": {"time": "1694889685"}, "stopId": "35703"}, {"stopSequence": 70, "arrival": {"time": "1694889700"}, "stopId": "35704"}, {"stopSequence": 71, "arrival": {"time": "1694889718"}, "stopId": "35705"}, {"stopSequence": 72, "arrival": {"time": "1694889740"}, "stopId": "35706"}, {"stopSequence": 73, "arrival": {"time": "1694889786"}, "stopId": "35707"}, {"stopSequence": 74, "arrival": {"time": "1694889818"}, "stopId": "35708"}, {"stopSequence": 75, "arrival": {"time": "1694889833"}, "stopId": "35709"}, {"stopSequence": 76, "arrival": {"time": "1694889930"}, "stopId": "37522"}, {"stopSequence": 77, "arrival": {"time": "1694889964"}, "stopId": "39599"}, {"stopSequence": 78, "arrival": {"time": "1694890003"}, "stopId": "50034"}, {"stopSequence": 79, "arrival": {"time": "1694890043"}, "stopId": "40903"}, {"stopSequence": 80, "arrival": {"time": "1694890074"}, "stopId": "40904"}, {"stopSequence": 81, "arrival": {"time": "1694890124"}, "stopId": "35814"}, {"stopSequence": 82, "arrival": {"time": "1694890194"}, "stopId": "35815"}, {"stopSequence": 83, "arrival": {"time": "1694890223"}, "stopId": "35816"}, {"stopSequence": 84, "arrival": {"time": "1694890228"}, "stopId": "35817"}, {"stopSequence": 85, "arrival": {"time": "1694890269"}, "stopId": "35818"}, {"stopSequence": 86, "arrival": {"time": "1694890305"}, "stopId": "35819"}, {"stopSequence": 87, "arrival": {"time": "1694890493"}, "stopId": "35822"}, {"stopSequence": 88, "arrival": {"time": "1694890543"}, "stopId": "35823"}, {"stopSequence": 89, "arrival": {"time": "1694890599"}, "stopId": "35723"}, {"stopSequence": 90, "arrival": {"time": "1694890638"}, "stopId": "35722"}, {"stopSequence": 91, "arrival": {"time": "1694890780"}, "stopId": "35827"}, {"stopSequence": 92, "arrival": {"time": "1694890804"}, "stopId": "35828"}, {"stopSequence": 93, "arrival": {"time": "1694890825"}, "stopId": "35716"}, {"stopSequence": 94, "arrival": {"time": "1694890868"}, "stopId": "35715"}], "vehicle": {"licensePlate": "JWXT10"}, "timestamp": "1694889002"}, "vehicle": {"trip": {"tripId": "2217740b-6-701ff27f-2", "startTime": "14:48:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "726", "directionId": 1}, "position": {"latitude": -36.81104, "longitude": -73.073044, "bearing": 120.0, "odometer": 0.0, "speed": 4.7222223}, "timestamp": "1694889002", "vehicle": {"licensePlate": "JWXT10"}}}, {"id": "afb6044e-b2d2-41c7-90b5-d4ac117757a0", "tripUpdate": {"trip": {"tripId": "7edee734-3-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "726", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 35, "arrival": {"time": "1694888975"}, "stopId": "38721"}, {"stopSequence": 36, "arrival": {"time": "1694889038"}, "stopId": "38659"}, {"stopSequence": 37, "arrival": {"time": "1694889124"}, "stopId": "38674"}, {"stopSequence": 38, "arrival": {"time": "1694889194"}, "stopId": "38649"}, {"stopSequence": 39, "arrival": {"time": "1694889268"}, "stopId": "38718"}, {"stopSequence": 40, "arrival": {"time": "1694889334"}, "stopId": "38735"}, {"stopSequence": 41, "arrival": {"time": "1694889392"}, "stopId": "42270"}, {"stopSequence": 42, "arrival": {"time": "1694889438"}, "stopId": "42271"}, {"stopSequence": 43, "arrival": {"time": "1694889638"}, "stopId": "38688"}, {"stopSequence": 44, "arrival": {"time": "1694889693"}, "stopId": "38673"}, {"stopSequence": 45, "arrival": {"time": "1694889765"}, "stopId": "39785"}, {"stopSequence": 46, "arrival": {"time": "1694889805"}, "stopId": "38664"}, {"stopSequence": 47, "arrival": {"time": "1694889857"}, "stopId": "38702"}, {"stopSequence": 48, "arrival": {"time": "1694889900"}, "stopId": "39787"}, {"stopSequence": 49, "arrival": {"time": "1694889941"}, "stopId": "38501"}, {"stopSequence": 50, "arrival": {"time": "1694889996"}, "stopId": "38692"}, {"stopSequence": 51, "arrival": {"time": "1694890063"}, "stopId": "38714"}, {"stopSequence": 52, "arrival": {"time": "1694890111"}, "stopId": "39791"}, {"stopSequence": 53, "arrival": {"time": "1694890145"}, "stopId": "38506"}, {"stopSequence": 54, "arrival": {"time": "1694890193"}, "stopId": "38635"}, {"stopSequence": 55, "arrival": {"time": "1694890225"}, "stopId": "38509"}, {"stopSequence": 56, "arrival": {"time": "1694890260"}, "stopId": "38642"}, {"stopSequence": 57, "arrival": {"time": "1694890311"}, "stopId": "39795"}, {"stopSequence": 58, "arrival": {"time": "1694890337"}, "stopId": "38502"}, {"stopSequence": 59, "arrival": {"time": "1694890402"}, "stopId": "38503"}, {"stopSequence": 60, "arrival": {"time": "1694890657"}, "stopId": "35693"}, {"stopSequence": 61, "arrival": {"time": "1694890714"}, "stopId": "35694"}, {"stopSequence": 62, "arrival": {"time": "1694890748"}, "stopId": "35695"}, {"stopSequence": 63, "arrival": {"time": "1694890805"}, "stopId": "35696"}, {"stopSequence": 64, "arrival": {"time": "1694890982"}, "stopId": "35697"}, {"stopSequence": 65, "arrival": {"time": "1694891087"}, "stopId": "2-Jan"}, {"stopSequence": 66, "arrival": {"time": "1694891120"}, "stopId": "42460"}, {"stopSequence": 67, "arrival": {"time": "1694891162"}, "stopId": "35690"}, {"stopSequence": 68, "arrival": {"time": "1694891270"}, "stopId": "35700"}, {"stopSequence": 69, "arrival": {"time": "1694891384"}, "stopId": "35703"}, {"stopSequence": 70, "arrival": {"time": "1694891402"}, "stopId": "35704"}, {"stopSequence": 71, "arrival": {"time": "1694891423"}, "stopId": "35705"}, {"stopSequence": 72, "arrival": {"time": "1694891449"}, "stopId": "35706"}, {"stopSequence": 73, "arrival": {"time": "1694891505"}, "stopId": "35707"}, {"stopSequence": 74, "arrival": {"time": "1694891544"}, "stopId": "35708"}, {"stopSequence": 75, "arrival": {"time": "1694891562"}, "stopId": "35709"}, {"stopSequence": 76, "arrival": {"time": "1694891683"}, "stopId": "37522"}, {"stopSequence": 77, "arrival": {"time": "1694891727"}, "stopId": "39599"}, {"stopSequence": 78, "arrival": {"time": "1694891778"}, "stopId": "50034"}, {"stopSequence": 79, "arrival": {"time": "1694891830"}, "stopId": "40903"}, {"stopSequence": 80, "arrival": {"time": "1694891871"}, "stopId": "40904"}, {"stopSequence": 81, "arrival": {"time": "1694891939"}, "stopId": "35814"}, {"stopSequence": 82, "arrival": {"time": "1694892034"}, "stopId": "35815"}, {"stopSequence": 83, "arrival": {"time": "1694892075"}, "stopId": "35816"}, {"stopSequence": 84, "arrival": {"time": "1694892081"}, "stopId": "35817"}, {"stopSequence": 85, "arrival": {"time": "1694892139"}, "stopId": "35818"}, {"stopSequence": 86, "arrival": {"time": "1694892191"}, "stopId": "35819"}, {"stopSequence": 87, "arrival": {"time": "1694892468"}, "stopId": "35822"}, {"stopSequence": 88, "arrival": {"time": "1694892545"}, "stopId": "35823"}, {"stopSequence": 89, "arrival": {"time": "1694892631"}, "stopId": "35723"}, {"stopSequence": 90, "arrival": {"time": "1694892693"}, "stopId": "35722"}, {"stopSequence": 91, "arrival": {"time": "1694892924"}, "stopId": "35827"}, {"stopSequence": 92, "arrival": {"time": "1694892965"}, "stopId": "35828"}, {"stopSequence": 93, "arrival": {"time": "1694892999"}, "stopId": "35716"}, {"stopSequence": 94, "arrival": {"time": "1694893073"}, "stopId": "35715"}], "vehicle": {"licensePlate": "JXJG49"}, "timestamp": "1694888974"}, "vehicle": {"trip": {"tripId": "7edee734-3-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "726", "directionId": 1}, "position": {"latitude": -36.74171, "longitude": -73.09846, "bearing": 156.0, "odometer": 0.0, "speed": 7.5}, "timestamp": "1694888974", "vehicle": {"licensePlate": "JXJG49"}}}, {"id": "5064b884-e2bf-45c9-b7c9-3864b57572a5", "tripUpdate": {"trip": {"tripId": "853dbd29-c-701ff27f-2", "startTime": "15:36:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "726", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 7, "arrival": {"time": "1694889002"}, "stopId": "40348"}, {"stopSequence": 8, "arrival": {"time": "1694889056"}, "stopId": "40349"}, {"stopSequence": 9, "arrival": {"time": "1694889084"}, "stopId": "40350"}, {"stopSequence": 10, "arrival": {"time": "1694889147"}, "stopId": "40351"}, {"stopSequence": 11, "arrival": {"time": "1694889241"}, "stopId": "40352"}, {"stopSequence": 12, "arrival": {"time": "1694889329"}, "stopId": "41970"}, {"stopSequence": 13, "arrival": {"time": "1694889339"}, "stopId": "40542"}, {"stopSequence": 14, "arrival": {"time": "1694889353"}, "stopId": "41971"}, {"stopSequence": 15, "arrival": {"time": "1694889375"}, "stopId": "40541"}, {"stopSequence": 16, "arrival": {"time": "1694889390"}, "stopId": "41972"}, {"stopSequence": 17, "arrival": {"time": "1694889413"}, "stopId": "40540"}, {"stopSequence": 18, "arrival": {"time": "1694889463"}, "stopId": "40539"}, {"stopSequence": 19, "arrival": {"time": "1694889525"}, "stopId": "42855"}, {"stopSequence": 20, "arrival": {"time": "1694889563"}, "stopId": "41975"}, {"stopSequence": 21, "arrival": {"time": "1694889584"}, "stopId": "42857"}, {"stopSequence": 22, "arrival": {"time": "1694889614"}, "stopId": "38697"}, {"stopSequence": 23, "arrival": {"time": "1694889657"}, "stopId": "38646"}, {"stopSequence": 24, "arrival": {"time": "1694889692"}, "stopId": "38632"}, {"stopSequence": 25, "arrival": {"time": "1694889775"}, "stopId": "38767"}, {"stopSequence": 26, "arrival": {"time": "1694889833"}, "stopId": "38768"}, {"stopSequence": 27, "arrival": {"time": "1694889883"}, "stopId": "38769"}, {"stopSequence": 28, "arrival": {"time": "1694889915"}, "stopId": "49357"}, {"stopSequence": 29, "arrival": {"time": "1694889961"}, "stopId": "38771"}, {"stopSequence": 30, "arrival": {"time": "1694890004"}, "stopId": "38668"}, {"stopSequence": 31, "arrival": {"time": "1694890093"}, "stopId": "38661"}, {"stopSequence": 32, "arrival": {"time": "1694890176"}, "stopId": "38657"}, {"stopSequence": 33, "arrival": {"time": "1694890232"}, "stopId": "38743"}, {"stopSequence": 34, "arrival": {"time": "1694890297"}, "stopId": "38652"}, {"stopSequence": 35, "arrival": {"time": "1694890365"}, "stopId": "38721"}, {"stopSequence": 36, "arrival": {"time": "1694890423"}, "stopId": "38659"}, {"stopSequence": 37, "arrival": {"time": "1694890503"}, "stopId": "38674"}, {"stopSequence": 38, "arrival": {"time": "1694890571"}, "stopId": "38649"}, {"stopSequence": 39, "arrival": {"time": "1694890643"}, "stopId": "38718"}, {"stopSequence": 40, "arrival": {"time": "1694890709"}, "stopId": "38735"}, {"stopSequence": 41, "arrival": {"time": "1694890768"}, "stopId": "42270"}, {"stopSequence": 42, "arrival": {"time": "1694890815"}, "stopId": "42271"}, {"stopSequence": 43, "arrival": {"time": "1694891027"}, "stopId": "38688"}, {"stopSequence": 44, "arrival": {"time": "1694891088"}, "stopId": "38673"}, {"stopSequence": 45, "arrival": {"time": "1694891168"}, "stopId": "39785"}, {"stopSequence": 46, "arrival": {"time": "1694891214"}, "stopId": "38664"}, {"stopSequence": 47, "arrival": {"time": "1694891274"}, "stopId": "38702"}, {"stopSequence": 48, "arrival": {"time": "1694891324"}, "stopId": "39787"}, {"stopSequence": 49, "arrival": {"time": "1694891372"}, "stopId": "38501"}, {"stopSequence": 50, "arrival": {"time": "1694891438"}, "stopId": "38692"}, {"stopSequence": 51, "arrival": {"time": "1694891519"}, "stopId": "38714"}, {"stopSequence": 52, "arrival": {"time": "1694891579"}, "stopId": "39791"}, {"stopSequence": 53, "arrival": {"time": "1694891621"}, "stopId": "38506"}, {"stopSequence": 54, "arrival": {"time": "1694891681"}, "stopId": "38635"}, {"stopSequence": 55, "arrival": {"time": "1694891722"}, "stopId": "38509"}, {"stopSequence": 56, "arrival": {"time": "1694891766"}, "stopId": "38642"}, {"stopSequence": 57, "arrival": {"time": "1694891832"}, "stopId": "39795"}, {"stopSequence": 58, "arrival": {"time": "1694891867"}, "stopId": "38502"}, {"stopSequence": 59, "arrival": {"time": "1694891953"}, "stopId": "38503"}, {"stopSequence": 60, "arrival": {"time": "1694892304"}, "stopId": "35693"}, {"stopSequence": 61, "arrival": {"time": "1694892385"}, "stopId": "35694"}, {"stopSequence": 62, "arrival": {"time": "1694892435"}, "stopId": "35695"}, {"stopSequence": 63, "arrival": {"time": "1694892518"}, "stopId": "35696"}, {"stopSequence": 64, "arrival": {"time": "1694892784"}, "stopId": "35697"}, {"stopSequence": 65, "arrival": {"time": "1694892948"}, "stopId": "2-Jan"}, {"stopSequence": 66, "arrival": {"time": "1694893000"}, "stopId": "42460"}, {"stopSequence": 67, "arrival": {"time": "1694893068"}, "stopId": "35690"}, {"stopSequence": 68, "arrival": {"time": "1694893244"}, "stopId": "35700"}, {"stopSequence": 69, "arrival": {"time": "1694893434"}, "stopId": "35703"}, {"stopSequence": 70, "arrival": {"time": "1694893464"}, "stopId": "35704"}, {"stopSequence": 71, "arrival": {"time": "1694893501"}, "stopId": "35705"}, {"stopSequence": 72, "arrival": {"time": "1694893546"}, "stopId": "35706"}, {"stopSequence": 73, "arrival": {"time": "1694893642"}, "stopId": "35707"}, {"stopSequence": 74, "arrival": {"time": "1694893711"}, "stopId": "35708"}, {"stopSequence": 75, "arrival": {"time": "1694893743"}, "stopId": "35709"}, {"stopSequence": 76, "arrival": {"time": "1694893960"}, "stopId": "37522"}, {"stopSequence": 77, "arrival": {"time": "1694894039"}, "stopId": "39599"}, {"stopSequence": 78, "arrival": {"time": "1694894133"}, "stopId": "50034"}, {"stopSequence": 79, "arrival": {"time": "1694894231"}, "stopId": "40903"}, {"stopSequence": 80, "arrival": {"time": "1694894308"}, "stopId": "40904"}, {"stopSequence": 81, "arrival": {"time": "1694894438"}, "stopId": "35814"}, {"stopSequence": 82, "arrival": {"time": "1694894623"}, "stopId": "35815"}, {"stopSequence": 83, "arrival": {"time": "1694894704"}, "stopId": "35816"}, {"stopSequence": 84, "arrival": {"time": "1694894717"}, "stopId": "35817"}, {"stopSequence": 85, "arrival": {"time": "1694894833"}, "stopId": "35818"}, {"stopSequence": 86, "arrival": {"time": "1694894938"}, "stopId": "35819"}, {"stopSequence": 87, "arrival": {"time": "1694895523"}, "stopId": "35822"}, {"stopSequence": 88, "arrival": {"time": "1694895691"}, "stopId": "35823"}, {"stopSequence": 89, "arrival": {"time": "1694895885"}, "stopId": "35723"}, {"stopSequence": 90, "arrival": {"time": "1694896026"}, "stopId": "35722"}, {"stopSequence": 91, "arrival": {"time": "1694896571"}, "stopId": "35827"}, {"stopSequence": 92, "arrival": {"time": "1694896670"}, "stopId": "35828"}, {"stopSequence": 93, "arrival": {"time": "1694896755"}, "stopId": "35716"}, {"stopSequence": 94, "arrival": {"time": "1694896938"}, "stopId": "35715"}], "vehicle": {"licensePlate": "RWJF49"}, "timestamp": "1694888980"}, "vehicle": {"trip": {"tripId": "853dbd29-c-701ff27f-2", "startTime": "15:36:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "726", "directionId": 1}, "position": {"latitude": -36.712368, "longitude": -73.13655, "bearing": 108.0, "odometer": 0.0, "speed": 5.2777777}, "timestamp": "1694888980", "vehicle": {"licensePlate": "RWJF49"}}}, {"id": "519cc717-383c-44d6-8c39-b25e39ff7503", "tripUpdate": {"trip": {"tripId": "25028-701ff27f-2", "startTime": "14:42:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "727", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 56, "arrival": {"time": "1694889014"}, "stopId": "4838437"}, {"stopSequence": 57, "arrival": {"time": "1694889072"}, "stopId": "45085"}, {"stopSequence": 58, "arrival": {"time": "1694889153"}, "stopId": "45086"}, {"stopSequence": 59, "arrival": {"time": "1694889206"}, "stopId": "38539"}, {"stopSequence": 60, "arrival": {"time": "1694889273"}, "stopId": "38540"}, {"stopSequence": 61, "arrival": {"time": "1694889353"}, "stopId": "38544"}, {"stopSequence": 62, "arrival": {"time": "1694889422"}, "stopId": "38545"}, {"stopSequence": 63, "arrival": {"time": "1694889511"}, "stopId": "38546"}, {"stopSequence": 64, "arrival": {"time": "1694889632"}, "stopId": "38548"}, {"stopSequence": 65, "arrival": {"time": "1694889697"}, "stopId": "38549"}, {"stopSequence": 66, "arrival": {"time": "1694889844"}, "stopId": "38551"}, {"stopSequence": 67, "arrival": {"time": "1694889926"}, "stopId": "38552"}, {"stopSequence": 68, "arrival": {"time": "1694890006"}, "stopId": "49359"}, {"stopSequence": 69, "arrival": {"time": "1694890054"}, "stopId": "49360"}, {"stopSequence": 70, "arrival": {"time": "1694890161"}, "stopId": "49361"}, {"stopSequence": 71, "arrival": {"time": "1694890188"}, "stopId": "49362"}, {"stopSequence": 72, "arrival": {"time": "1694890233"}, "stopId": "49363"}, {"stopSequence": 73, "arrival": {"time": "1694890281"}, "stopId": "49364"}, {"stopSequence": 74, "arrival": {"time": "1694890316"}, "stopId": "49365"}, {"stopSequence": 75, "arrival": {"time": "1694890383"}, "stopId": "38560"}, {"stopSequence": 76, "arrival": {"time": "1694890421"}, "stopId": "42857"}, {"stopSequence": 77, "arrival": {"time": "1694890452"}, "stopId": "38562"}, {"stopSequence": 78, "arrival": {"time": "1694890542"}, "stopId": "40539"}, {"stopSequence": 79, "arrival": {"time": "1694890587"}, "stopId": "40540"}, {"stopSequence": 80, "arrival": {"time": "1694890630"}, "stopId": "40541"}, {"stopSequence": 81, "arrival": {"time": "1694890752"}, "stopId": "40543"}, {"stopSequence": 82, "arrival": {"time": "1694890761"}, "stopId": "41943"}, {"stopSequence": 83, "arrival": {"time": "1694890859"}, "stopId": "40544"}, {"stopSequence": 84, "arrival": {"time": "1694891039"}, "stopId": "40548"}, {"stopSequence": 85, "arrival": {"time": "1694891072"}, "stopId": "40443"}, {"stopSequence": 86, "arrival": {"time": "1694891108"}, "stopId": "40550"}, {"stopSequence": 87, "arrival": {"time": "1694891145"}, "stopId": "40551"}, {"stopSequence": 88, "arrival": {"time": "1694891164"}, "stopId": "40441"}, {"stopSequence": 89, "arrival": {"time": "1694891261"}, "stopId": "40552"}, {"stopSequence": 90, "arrival": {"time": "1694891312"}, "stopId": "40553"}], "vehicle": {"licensePlate": "HYVS15"}, "timestamp": "1694888978"}, "vehicle": {"trip": {"tripId": "25028-701ff27f-2", "startTime": "14:42:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "727", "directionId": 0}, "position": {"latitude": -36.765366, "longitude": -73.08612, "bearing": 334.0, "odometer": 0.0, "speed": 18.055555}, "timestamp": "1694888978", "vehicle": {"licensePlate": "HYVS15"}}}, {"id": "96177e05-a548-4d52-8afc-71b5e81d72ef", "tripUpdate": {"trip": {"tripId": "25031-701ff27f-2", "startTime": "15:12:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "727", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 22, "arrival": {"time": "1694889092"}, "stopId": "39599"}, {"stopSequence": 23, "arrival": {"time": "1694889116"}, "stopId": "39600"}, {"stopSequence": 24, "arrival": {"time": "1694889186"}, "stopId": "37496"}, {"stopSequence": 25, "arrival": {"time": "1694889237"}, "stopId": "45064"}, {"stopSequence": 26, "arrival": {"time": "1694889313"}, "stopId": "37506"}, {"stopSequence": 27, "arrival": {"time": "1694889389"}, "stopId": "45069"}, {"stopSequence": 28, "arrival": {"time": "1694889503"}, "stopId": "37523"}, {"stopSequence": 29, "arrival": {"time": "1694889544"}, "stopId": "37477"}, {"stopSequence": 30, "arrival": {"time": "1694889630"}, "stopId": "49310"}, {"stopSequence": 31, "arrival": {"time": "1694889661"}, "stopId": "49311"}, {"stopSequence": 32, "arrival": {"time": "1694889716"}, "stopId": "39634"}, {"stopSequence": 33, "arrival": {"time": "1694889740"}, "stopId": "39635"}, {"stopSequence": 34, "arrival": {"time": "1694889786"}, "stopId": "39636"}, {"stopSequence": 35, "arrival": {"time": "1694889961"}, "stopId": "39637"}, {"stopSequence": 36, "arrival": {"time": "1694890009"}, "stopId": "49317"}, {"stopSequence": 37, "arrival": {"time": "1694890040"}, "stopId": "49318"}, {"stopSequence": 38, "arrival": {"time": "1694890104"}, "stopId": "49319"}, {"stopSequence": 39, "arrival": {"time": "1694890166"}, "stopId": "39641"}, {"stopSequence": 40, "arrival": {"time": "1694890200"}, "stopId": "39642"}, {"stopSequence": 41, "arrival": {"time": "1694890475"}, "stopId": "49325"}, {"stopSequence": 42, "arrival": {"time": "1694890537"}, "stopId": "49326"}, {"stopSequence": 43, "arrival": {"time": "1694890563"}, "stopId": "39648"}, {"stopSequence": 44, "arrival": {"time": "1694890611"}, "stopId": "39649"}, {"stopSequence": 45, "arrival": {"time": "1694890651"}, "stopId": "45112"}, {"stopSequence": 46, "arrival": {"time": "1694890695"}, "stopId": "45113"}, {"stopSequence": 47, "arrival": {"time": "1694890777"}, "stopId": "37490"}, {"stopSequence": 48, "arrival": {"time": "1694890832"}, "stopId": "45115"}, {"stopSequence": 49, "arrival": {"time": "1694890857"}, "stopId": "45116"}, {"stopSequence": 50, "arrival": {"time": "1694890931"}, "stopId": "45118"}, {"stopSequence": 51, "arrival": {"time": "1694891010"}, "stopId": "45119"}, {"stopSequence": 52, "arrival": {"time": "1694891057"}, "stopId": "45120"}, {"stopSequence": 53, "arrival": {"time": "1694891116"}, "stopId": "45121"}, {"stopSequence": 54, "arrival": {"time": "1694891162"}, "stopId": "38535"}, {"stopSequence": 55, "arrival": {"time": "1694891246"}, "stopId": "38536"}, {"stopSequence": 56, "arrival": {"time": "1694891286"}, "stopId": "4838437"}, {"stopSequence": 57, "arrival": {"time": "1694891348"}, "stopId": "45085"}, {"stopSequence": 58, "arrival": {"time": "1694891436"}, "stopId": "45086"}, {"stopSequence": 59, "arrival": {"time": "1694891496"}, "stopId": "38539"}, {"stopSequence": 60, "arrival": {"time": "1694891573"}, "stopId": "38540"}, {"stopSequence": 61, "arrival": {"time": "1694891667"}, "stopId": "38544"}, {"stopSequence": 62, "arrival": {"time": "1694891751"}, "stopId": "38545"}, {"stopSequence": 63, "arrival": {"time": "1694891863"}, "stopId": "38546"}, {"stopSequence": 64, "arrival": {"time": "1694892024"}, "stopId": "38548"}, {"stopSequence": 65, "arrival": {"time": "1694892113"}, "stopId": "38549"}, {"stopSequence": 66, "arrival": {"time": "1694892323"}, "stopId": "38551"}, {"stopSequence": 67, "arrival": {"time": "1694892447"}, "stopId": "38552"}, {"stopSequence": 68, "arrival": {"time": "1694892571"}, "stopId": "49359"}, {"stopSequence": 69, "arrival": {"time": "1694892647"}, "stopId": "49360"}, {"stopSequence": 70, "arrival": {"time": "1694892825"}, "stopId": "49361"}, {"stopSequence": 71, "arrival": {"time": "1694892870"}, "stopId": "49362"}, {"stopSequence": 72, "arrival": {"time": "1694892949"}, "stopId": "49363"}, {"stopSequence": 73, "arrival": {"time": "1694893032"}, "stopId": "49364"}, {"stopSequence": 74, "arrival": {"time": "1694893095"}, "stopId": "49365"}, {"stopSequence": 75, "arrival": {"time": "1694893218"}, "stopId": "38560"}, {"stopSequence": 76, "arrival": {"time": "1694893288"}, "stopId": "42857"}, {"stopSequence": 77, "arrival": {"time": "1694893346"}, "stopId": "38562"}, {"stopSequence": 78, "arrival": {"time": "1694893522"}, "stopId": "40539"}, {"stopSequence": 79, "arrival": {"time": "1694893612"}, "stopId": "40540"}, {"stopSequence": 80, "arrival": {"time": "1694893699"}, "stopId": "40541"}, {"stopSequence": 81, "arrival": {"time": "1694893957"}, "stopId": "40543"}, {"stopSequence": 82, "arrival": {"time": "1694893975"}, "stopId": "41943"}, {"stopSequence": 83, "arrival": {"time": "1694894194"}, "stopId": "40544"}, {"stopSequence": 84, "arrival": {"time": "1694894618"}, "stopId": "40548"}, {"stopSequence": 85, "arrival": {"time": "1694894699"}, "stopId": "40443"}, {"stopSequence": 86, "arrival": {"time": "1694894788"}, "stopId": "40550"}, {"stopSequence": 87, "arrival": {"time": "1694894881"}, "stopId": "40551"}, {"stopSequence": 88, "arrival": {"time": "1694894932"}, "stopId": "40441"}, {"stopSequence": 89, "arrival": {"time": "1694895187"}, "stopId": "40552"}, {"stopSequence": 90, "arrival": {"time": "1694895323"}, "stopId": "40553"}], "vehicle": {"licensePlate": "JSBB31"}, "timestamp": "1694889014"}, "vehicle": {"trip": {"tripId": "25031-701ff27f-2", "startTime": "15:12:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "727", "directionId": 0}, "position": {"latitude": -36.81739, "longitude": -73.03466, "bearing": 236.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889014", "vehicle": {"licensePlate": "JSBB31"}}}, {"id": "129c397c-44a4-4d4e-a6de-9a0b8ff4cd9b", "tripUpdate": {"trip": {"tripId": "25030-701ff27f-2", "startTime": "15:02:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "727", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 28, "arrival": {"time": "1694889117"}, "stopId": "37523"}, {"stopSequence": 29, "arrival": {"time": "1694889160"}, "stopId": "37477"}, {"stopSequence": 30, "arrival": {"time": "1694889250"}, "stopId": "49310"}, {"stopSequence": 31, "arrival": {"time": "1694889283"}, "stopId": "49311"}, {"stopSequence": 32, "arrival": {"time": "1694889340"}, "stopId": "39634"}, {"stopSequence": 33, "arrival": {"time": "1694889366"}, "stopId": "39635"}, {"stopSequence": 34, "arrival": {"time": "1694889412"}, "stopId": "39636"}, {"stopSequence": 35, "arrival": {"time": "1694889592"}, "stopId": "39637"}, {"stopSequence": 36, "arrival": {"time": "1694889642"}, "stopId": "49317"}, {"stopSequence": 37, "arrival": {"time": "1694889673"}, "stopId": "49318"}, {"stopSequence": 38, "arrival": {"time": "1694889737"}, "stopId": "49319"}, {"stopSequence": 39, "arrival": {"time": "1694889800"}, "stopId": "39641"}, {"stopSequence": 40, "arrival": {"time": "1694889834"}, "stopId": "39642"}, {"stopSequence": 41, "arrival": {"time": "1694890106"}, "stopId": "49325"}, {"stopSequence": 42, "arrival": {"time": "1694890167"}, "stopId": "49326"}, {"stopSequence": 43, "arrival": {"time": "1694890192"}, "stopId": "39648"}, {"stopSequence": 44, "arrival": {"time": "1694890239"}, "stopId": "39649"}, {"stopSequence": 45, "arrival": {"time": "1694890277"}, "stopId": "45112"}, {"stopSequence": 46, "arrival": {"time": "1694890320"}, "stopId": "45113"}, {"stopSequence": 47, "arrival": {"time": "1694890399"}, "stopId": "37490"}, {"stopSequence": 48, "arrival": {"time": "1694890452"}, "stopId": "45115"}, {"stopSequence": 49, "arrival": {"time": "1694890476"}, "stopId": "45116"}, {"stopSequence": 50, "arrival": {"time": "1694890546"}, "stopId": "45118"}, {"stopSequence": 51, "arrival": {"time": "1694890621"}, "stopId": "45119"}, {"stopSequence": 52, "arrival": {"time": "1694890666"}, "stopId": "45120"}, {"stopSequence": 53, "arrival": {"time": "1694890721"}, "stopId": "45121"}, {"stopSequence": 54, "arrival": {"time": "1694890764"}, "stopId": "38535"}, {"stopSequence": 55, "arrival": {"time": "1694890842"}, "stopId": "38536"}, {"stopSequence": 56, "arrival": {"time": "1694890880"}, "stopId": "4838437"}, {"stopSequence": 57, "arrival": {"time": "1694890937"}, "stopId": "45085"}, {"stopSequence": 58, "arrival": {"time": "1694891019"}, "stopId": "45086"}, {"stopSequence": 59, "arrival": {"time": "1694891073"}, "stopId": "38539"}, {"stopSequence": 60, "arrival": {"time": "1694891144"}, "stopId": "38540"}, {"stopSequence": 61, "arrival": {"time": "1694891229"}, "stopId": "38544"}, {"stopSequence": 62, "arrival": {"time": "1694891306"}, "stopId": "38545"}, {"stopSequence": 63, "arrival": {"time": "1694891407"}, "stopId": "38546"}, {"stopSequence": 64, "arrival": {"time": "1694891551"}, "stopId": "38548"}, {"stopSequence": 65, "arrival": {"time": "1694891630"}, "stopId": "38549"}, {"stopSequence": 66, "arrival": {"time": "1694891815"}, "stopId": "38551"}, {"stopSequence": 67, "arrival": {"time": "1694891923"}, "stopId": "38552"}, {"stopSequence": 68, "arrival": {"time": "1694892031"}, "stopId": "49359"}, {"stopSequence": 69, "arrival": {"time": "1694892097"}, "stopId": "49360"}, {"stopSequence": 70, "arrival": {"time": "1694892250"}, "stopId": "49361"}, {"stopSequence": 71, "arrival": {"time": "1694892289"}, "stopId": "49362"}, {"stopSequence": 72, "arrival": {"time": "1694892356"}, "stopId": "49363"}, {"stopSequence": 73, "arrival": {"time": "1694892426"}, "stopId": "49364"}, {"stopSequence": 74, "arrival": {"time": "1694892481"}, "stopId": "49365"}, {"stopSequence": 75, "arrival": {"time": "1694892584"}, "stopId": "38560"}, {"stopSequence": 76, "arrival": {"time": "1694892643"}, "stopId": "42857"}, {"stopSequence": 77, "arrival": {"time": "1694892692"}, "stopId": "38562"}, {"stopSequence": 78, "arrival": {"time": "1694892838"}, "stopId": "40539"}, {"stopSequence": 79, "arrival": {"time": "1694892913"}, "stopId": "40540"}, {"stopSequence": 80, "arrival": {"time": "1694892985"}, "stopId": "40541"}, {"stopSequence": 81, "arrival": {"time": "1694893197"}, "stopId": "40543"}, {"stopSequence": 82, "arrival": {"time": "1694893212"}, "stopId": "41943"}, {"stopSequence": 83, "arrival": {"time": "1694893390"}, "stopId": "40544"}, {"stopSequence": 84, "arrival": {"time": "1694893730"}, "stopId": "40548"}, {"stopSequence": 85, "arrival": {"time": "1694893794"}, "stopId": "40443"}, {"stopSequence": 86, "arrival": {"time": "1694893865"}, "stopId": "40550"}, {"stopSequence": 87, "arrival": {"time": "1694893938"}, "stopId": "40551"}, {"stopSequence": 88, "arrival": {"time": "1694893978"}, "stopId": "40441"}, {"stopSequence": 89, "arrival": {"time": "1694894178"}, "stopId": "40552"}, {"stopSequence": 90, "arrival": {"time": "1694894284"}, "stopId": "40553"}], "vehicle": {"licensePlate": "KDXL64"}, "timestamp": "1694889018"}, "vehicle": {"trip": {"tripId": "25030-701ff27f-2", "startTime": "15:02:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "727", "directionId": 0}, "position": {"latitude": -36.827015, "longitude": -73.0487, "bearing": 240.0, "odometer": 0.0, "speed": 3.8888888}, "timestamp": "1694889018", "vehicle": {"licensePlate": "KDXL64"}}}, {"id": "46f93ace-ed66-4c7e-b1cb-2c7a40c30c09", "tripUpdate": {"trip": {"tripId": "25033-701ff27f-2", "startTime": "15:32:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "727", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 2, "arrival": {"time": "1694889089"}, "stopId": "40808"}, {"stopSequence": 3, "arrival": {"time": "1694889104"}, "stopId": "35715"}, {"stopSequence": 4, "arrival": {"time": "1694889148"}, "stopId": "35716"}, {"stopSequence": 5, "arrival": {"time": "1694889164"}, "stopId": "35717"}, {"stopSequence": 6, "arrival": {"time": "1694889208"}, "stopId": "35718"}, {"stopSequence": 7, "arrival": {"time": "1694889248"}, "stopId": "35719"}, {"stopSequence": 8, "arrival": {"time": "1694889290"}, "stopId": "35720"}, {"stopSequence": 9, "arrival": {"time": "1694889321"}, "stopId": "35721"}, {"stopSequence": 10, "arrival": {"time": "1694889336"}, "stopId": "35722"}, {"stopSequence": 11, "arrival": {"time": "1694889384"}, "stopId": "35723"}, {"stopSequence": 12, "arrival": {"time": "1694889431"}, "stopId": "35724"}, {"stopSequence": 13, "arrival": {"time": "1694889498"}, "stopId": "35726"}, {"stopSequence": 14, "arrival": {"time": "1694889569"}, "stopId": "35727"}, {"stopSequence": 15, "arrival": {"time": "1694889647"}, "stopId": "35820"}, {"stopSequence": 16, "arrival": {"time": "1694889677"}, "stopId": "35729"}, {"stopSequence": 17, "arrival": {"time": "1694889707"}, "stopId": "35730"}, {"stopSequence": 18, "arrival": {"time": "1694889738"}, "stopId": "35731"}, {"stopSequence": 19, "arrival": {"time": "1694889801"}, "stopId": "35201"}, {"stopSequence": 20, "arrival": {"time": "1694889879"}, "stopId": "35202"}, {"stopSequence": 21, "arrival": {"time": "1694889985"}, "stopId": "90001"}, {"stopSequence": 22, "arrival": {"time": "1694890070"}, "stopId": "39599"}, {"stopSequence": 23, "arrival": {"time": "1694890092"}, "stopId": "39600"}, {"stopSequence": 24, "arrival": {"time": "1694890157"}, "stopId": "37496"}, {"stopSequence": 25, "arrival": {"time": "1694890205"}, "stopId": "45064"}, {"stopSequence": 26, "arrival": {"time": "1694890276"}, "stopId": "37506"}, {"stopSequence": 27, "arrival": {"time": "1694890349"}, "stopId": "45069"}, {"stopSequence": 28, "arrival": {"time": "1694890462"}, "stopId": "37523"}, {"stopSequence": 29, "arrival": {"time": "1694890502"}, "stopId": "37477"}, {"stopSequence": 30, "arrival": {"time": "1694890589"}, "stopId": "49310"}, {"stopSequence": 31, "arrival": {"time": "1694890620"}, "stopId": "49311"}, {"stopSequence": 32, "arrival": {"time": "1694890677"}, "stopId": "39634"}, {"stopSequence": 33, "arrival": {"time": "1694890702"}, "stopId": "39635"}, {"stopSequence": 34, "arrival": {"time": "1694890749"}, "stopId": "39636"}, {"stopSequence": 35, "arrival": {"time": "1694890936"}, "stopId": "39637"}, {"stopSequence": 36, "arrival": {"time": "1694890989"}, "stopId": "49317"}, {"stopSequence": 37, "arrival": {"time": "1694891022"}, "stopId": "49318"}, {"stopSequence": 38, "arrival": {"time": "1694891093"}, "stopId": "49319"}, {"stopSequence": 39, "arrival": {"time": "1694891162"}, "stopId": "39641"}, {"stopSequence": 40, "arrival": {"time": "1694891201"}, "stopId": "39642"}, {"stopSequence": 41, "arrival": {"time": "1694891520"}, "stopId": "49325"}, {"stopSequence": 42, "arrival": {"time": "1694891595"}, "stopId": "49326"}, {"stopSequence": 43, "arrival": {"time": "1694891626"}, "stopId": "39648"}, {"stopSequence": 44, "arrival": {"time": "1694891684"}, "stopId": "39649"}, {"stopSequence": 45, "arrival": {"time": "1694891733"}, "stopId": "45112"}, {"stopSequence": 46, "arrival": {"time": "1694891788"}, "stopId": "45113"}, {"stopSequence": 47, "arrival": {"time": "1694891889"}, "stopId": "37490"}, {"stopSequence": 48, "arrival": {"time": "1694891959"}, "stopId": "45115"}, {"stopSequence": 49, "arrival": {"time": "1694891992"}, "stopId": "45116"}, {"stopSequence": 50, "arrival": {"time": "1694892086"}, "stopId": "45118"}, {"stopSequence": 51, "arrival": {"time": "1694892188"}, "stopId": "45119"}, {"stopSequence": 52, "arrival": {"time": "1694892251"}, "stopId": "45120"}, {"stopSequence": 53, "arrival": {"time": "1694892329"}, "stopId": "45121"}, {"stopSequence": 54, "arrival": {"time": "1694892390"}, "stopId": "38535"}, {"stopSequence": 55, "arrival": {"time": "1694892503"}, "stopId": "38536"}, {"stopSequence": 56, "arrival": {"time": "1694892558"}, "stopId": "4838437"}, {"stopSequence": 57, "arrival": {"time": "1694892642"}, "stopId": "45085"}, {"stopSequence": 58, "arrival": {"time": "1694892766"}, "stopId": "45086"}, {"stopSequence": 59, "arrival": {"time": "1694892849"}, "stopId": "38539"}, {"stopSequence": 60, "arrival": {"time": "1694892959"}, "stopId": "38540"}, {"stopSequence": 61, "arrival": {"time": "1694893095"}, "stopId": "38544"}, {"stopSequence": 62, "arrival": {"time": "1694893219"}, "stopId": "38545"}, {"stopSequence": 63, "arrival": {"time": "1694893385"}, "stopId": "38546"}, {"stopSequence": 64, "arrival": {"time": "1694893628"}, "stopId": "38548"}, {"stopSequence": 65, "arrival": {"time": "1694893766"}, "stopId": "38549"}, {"stopSequence": 66, "arrival": {"time": "1694894099"}, "stopId": "38551"}, {"stopSequence": 67, "arrival": {"time": "1694894299"}, "stopId": "38552"}, {"stopSequence": 68, "arrival": {"time": "1694894504"}, "stopId": "49359"}, {"stopSequence": 69, "arrival": {"time": "1694894632"}, "stopId": "49360"}, {"stopSequence": 70, "arrival": {"time": "1694894935"}, "stopId": "49361"}, {"stopSequence": 71, "arrival": {"time": "1694895013"}, "stopId": "49362"}, {"stopSequence": 72, "arrival": {"time": "1694895151"}, "stopId": "49363"}, {"stopSequence": 73, "arrival": {"time": "1694895298"}, "stopId": "49364"}, {"stopSequence": 74, "arrival": {"time": "1694895413"}, "stopId": "49365"}, {"stopSequence": 75, "arrival": {"time": "1694895635"}, "stopId": "38560"}, {"stopSequence": 76, "arrival": {"time": "1694895765"}, "stopId": "42857"}, {"stopSequence": 77, "arrival": {"time": "1694895873"}, "stopId": "38562"}, {"stopSequence": 78, "arrival": {"time": "1694896206"}, "stopId": "40539"}, {"stopSequence": 79, "arrival": {"time": "1694896380"}, "stopId": "40540"}, {"stopSequence": 80, "arrival": {"time": "1694896551"}, "stopId": "40541"}, {"stopSequence": 81, "arrival": {"time": "1694897068"}, "stopId": "40543"}, {"stopSequence": 82, "arrival": {"time": "1694897107"}, "stopId": "41943"}, {"stopSequence": 83, "arrival": {"time": "1694897565"}, "stopId": "40544"}, {"stopSequence": 84, "arrival": {"time": "1694898495"}, "stopId": "40548"}, {"stopSequence": 85, "arrival": {"time": "1694898680"}, "stopId": "40443"}, {"stopSequence": 86, "arrival": {"time": "1694898887"}, "stopId": "40550"}, {"stopSequence": 87, "arrival": {"time": "1694899106"}, "stopId": "40551"}, {"stopSequence": 88, "arrival": {"time": "1694899225"}, "stopId": "40441"}, {"stopSequence": 89, "arrival": {"time": "1694899847"}, "stopId": "40552"}, {"stopSequence": 90, "arrival": {"time": "1694900190"}, "stopId": "40553"}], "vehicle": {"licensePlate": "KFTK39"}, "timestamp": "1694889008"}, "vehicle": {"trip": {"tripId": "25033-701ff27f-2", "startTime": "15:32:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "727", "directionId": 0}, "position": {"latitude": -36.839176, "longitude": -73.006325, "bearing": 30.0, "odometer": 0.0, "speed": 4.1666665}, "timestamp": "1694889008", "vehicle": {"licensePlate": "KFTK39"}}}, {"id": "397be882-c455-4ccd-b92b-14a08984439c", "tripUpdate": {"trip": {"tripId": "25029-701ff27f-2", "startTime": "14:52:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "727", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 41, "arrival": {"time": "1694889095"}, "stopId": "49325"}, {"stopSequence": 42, "arrival": {"time": "1694889161"}, "stopId": "49326"}, {"stopSequence": 43, "arrival": {"time": "1694889189"}, "stopId": "39648"}, {"stopSequence": 44, "arrival": {"time": "1694889238"}, "stopId": "39649"}, {"stopSequence": 45, "arrival": {"time": "1694889279"}, "stopId": "45112"}, {"stopSequence": 46, "arrival": {"time": "1694889324"}, "stopId": "45113"}, {"stopSequence": 47, "arrival": {"time": "1694889405"}, "stopId": "37490"}, {"stopSequence": 48, "arrival": {"time": "1694889459"}, "stopId": "45115"}, {"stopSequence": 49, "arrival": {"time": "1694889483"}, "stopId": "45116"}, {"stopSequence": 50, "arrival": {"time": "1694889554"}, "stopId": "45118"}, {"stopSequence": 51, "arrival": {"time": "1694889628"}, "stopId": "45119"}, {"stopSequence": 52, "arrival": {"time": "1694889672"}, "stopId": "45120"}, {"stopSequence": 53, "arrival": {"time": "1694889725"}, "stopId": "45121"}, {"stopSequence": 54, "arrival": {"time": "1694889766"}, "stopId": "38535"}, {"stopSequence": 55, "arrival": {"time": "1694889841"}, "stopId": "38536"}, {"stopSequence": 56, "arrival": {"time": "1694889876"}, "stopId": "4838437"}, {"stopSequence": 57, "arrival": {"time": "1694889928"}, "stopId": "45085"}, {"stopSequence": 58, "arrival": {"time": "1694890004"}, "stopId": "45086"}, {"stopSequence": 59, "arrival": {"time": "1694890053"}, "stopId": "38539"}, {"stopSequence": 60, "arrival": {"time": "1694890116"}, "stopId": "38540"}, {"stopSequence": 61, "arrival": {"time": "1694890192"}, "stopId": "38544"}, {"stopSequence": 62, "arrival": {"time": "1694890259"}, "stopId": "38545"}, {"stopSequence": 63, "arrival": {"time": "1694890346"}, "stopId": "38546"}, {"stopSequence": 64, "arrival": {"time": "1694890468"}, "stopId": "38548"}, {"stopSequence": 65, "arrival": {"time": "1694890533"}, "stopId": "38549"}, {"stopSequence": 66, "arrival": {"time": "1694890685"}, "stopId": "38551"}, {"stopSequence": 67, "arrival": {"time": "1694890771"}, "stopId": "38552"}, {"stopSequence": 68, "arrival": {"time": "1694890856"}, "stopId": "49359"}, {"stopSequence": 69, "arrival": {"time": "1694890907"}, "stopId": "49360"}, {"stopSequence": 70, "arrival": {"time": "1694891024"}, "stopId": "49361"}, {"stopSequence": 71, "arrival": {"time": "1694891053"}, "stopId": "49362"}, {"stopSequence": 72, "arrival": {"time": "1694891103"}, "stopId": "49363"}, {"stopSequence": 73, "arrival": {"time": "1694891156"}, "stopId": "49364"}, {"stopSequence": 74, "arrival": {"time": "1694891196"}, "stopId": "49365"}, {"stopSequence": 75, "arrival": {"time": "1694891271"}, "stopId": "38560"}, {"stopSequence": 76, "arrival": {"time": "1694891314"}, "stopId": "42857"}, {"stopSequence": 77, "arrival": {"time": "1694891349"}, "stopId": "38562"}, {"stopSequence": 78, "arrival": {"time": "1694891453"}, "stopId": "40539"}, {"stopSequence": 79, "arrival": {"time": "1694891506"}, "stopId": "40540"}, {"stopSequence": 80, "arrival": {"time": "1694891556"}, "stopId": "40541"}, {"stopSequence": 81, "arrival": {"time": "1694891701"}, "stopId": "40543"}, {"stopSequence": 82, "arrival": {"time": "1694891712"}, "stopId": "41943"}, {"stopSequence": 83, "arrival": {"time": "1694891831"}, "stopId": "40544"}, {"stopSequence": 84, "arrival": {"time": "1694892053"}, "stopId": "40548"}, {"stopSequence": 85, "arrival": {"time": "1694892094"}, "stopId": "40443"}, {"stopSequence": 86, "arrival": {"time": "1694892139"}, "stopId": "40550"}, {"stopSequence": 87, "arrival": {"time": "1694892185"}, "stopId": "40551"}, {"stopSequence": 88, "arrival": {"time": "1694892210"}, "stopId": "40441"}, {"stopSequence": 89, "arrival": {"time": "1694892334"}, "stopId": "40552"}, {"stopSequence": 90, "arrival": {"time": "1694892399"}, "stopId": "40553"}], "vehicle": {"licensePlate": "KVJC80"}, "timestamp": "1694889008"}, "vehicle": {"trip": {"tripId": "25029-701ff27f-2", "startTime": "14:52:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "727", "directionId": 0}, "position": {"latitude": -36.801178, "longitude": -73.083916, "bearing": 324.0, "odometer": 0.0, "speed": 11.944445}, "timestamp": "1694889008", "vehicle": {"licensePlate": "KVJC80"}}}, {"id": "03d165cc-729f-4d8b-88b2-e74fff7cc56a", "tripUpdate": {"trip": {"tripId": "25026-701ff27f-2", "startTime": "14:22:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "727", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 76, "arrival": {"time": "1694889049"}, "stopId": "42857"}, {"stopSequence": 77, "arrival": {"time": "1694889082"}, "stopId": "38562"}, {"stopSequence": 78, "arrival": {"time": "1694889178"}, "stopId": "40539"}, {"stopSequence": 79, "arrival": {"time": "1694889225"}, "stopId": "40540"}, {"stopSequence": 80, "arrival": {"time": "1694889269"}, "stopId": "40541"}, {"stopSequence": 81, "arrival": {"time": "1694889391"}, "stopId": "40543"}, {"stopSequence": 82, "arrival": {"time": "1694889399"}, "stopId": "41943"}, {"stopSequence": 83, "arrival": {"time": "1694889495"}, "stopId": "40544"}, {"stopSequence": 84, "arrival": {"time": "1694889664"}, "stopId": "40548"}, {"stopSequence": 85, "arrival": {"time": "1694889694"}, "stopId": "40443"}, {"stopSequence": 86, "arrival": {"time": "1694889726"}, "stopId": "40550"}, {"stopSequence": 87, "arrival": {"time": "1694889759"}, "stopId": "40551"}, {"stopSequence": 88, "arrival": {"time": "1694889776"}, "stopId": "40441"}, {"stopSequence": 89, "arrival": {"time": "1694889862"}, "stopId": "40552"}, {"stopSequence": 90, "arrival": {"time": "1694889905"}, "stopId": "40553"}], "vehicle": {"licensePlate": "RXVH92"}, "timestamp": "1694889020"}, "vehicle": {"trip": {"tripId": "25026-701ff27f-2", "startTime": "14:22:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "727", "directionId": 0}, "position": {"latitude": -36.71192, "longitude": -73.115166, "bearing": 204.0, "odometer": 0.0, "speed": 0.8333333}, "timestamp": "1694889020", "vehicle": {"licensePlate": "RXVH92"}}}, {"id": "76d72354-5195-4066-8348-b86fdea0a2c4", "tripUpdate": {"trip": {"tripId": "25137-701ff27f-2", "startTime": "15:37:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "728", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 21, "arrival": {"time": "1694888991"}, "stopId": "38697"}, {"stopSequence": 22, "arrival": {"time": "1694889044"}, "stopId": "38646"}, {"stopSequence": 23, "arrival": {"time": "1694889076"}, "stopId": "38632"}, {"stopSequence": 24, "arrival": {"time": "1694889165"}, "stopId": "38767"}, {"stopSequence": 25, "arrival": {"time": "1694889233"}, "stopId": "38768"}, {"stopSequence": 26, "arrival": {"time": "1694889280"}, "stopId": "38769"}, {"stopSequence": 27, "arrival": {"time": "1694889318"}, "stopId": "49357"}, {"stopSequence": 28, "arrival": {"time": "1694889361"}, "stopId": "38771"}, {"stopSequence": 29, "arrival": {"time": "1694889406"}, "stopId": "38668"}, {"stopSequence": 30, "arrival": {"time": "1694889503"}, "stopId": "38661"}, {"stopSequence": 31, "arrival": {"time": "1694889586"}, "stopId": "38657"}, {"stopSequence": 32, "arrival": {"time": "1694889646"}, "stopId": "38743"}, {"stopSequence": 33, "arrival": {"time": "1694889711"}, "stopId": "38652"}, {"stopSequence": 34, "arrival": {"time": "1694889773"}, "stopId": "38721"}, {"stopSequence": 35, "arrival": {"time": "1694889828"}, "stopId": "38659"}, {"stopSequence": 36, "arrival": {"time": "1694889909"}, "stopId": "38674"}, {"stopSequence": 37, "arrival": {"time": "1694889981"}, "stopId": "38649"}, {"stopSequence": 38, "arrival": {"time": "1694890042"}, "stopId": "38718"}, {"stopSequence": 39, "arrival": {"time": "1694890106"}, "stopId": "38735"}, {"stopSequence": 40, "arrival": {"time": "1694890165"}, "stopId": "42270"}, {"stopSequence": 41, "arrival": {"time": "1694890212"}, "stopId": "42271"}, {"stopSequence": 42, "arrival": {"time": "1694890403"}, "stopId": "38688"}, {"stopSequence": 43, "arrival": {"time": "1694890458"}, "stopId": "38673"}, {"stopSequence": 44, "arrival": {"time": "1694890534"}, "stopId": "39785"}, {"stopSequence": 45, "arrival": {"time": "1694890573"}, "stopId": "38664"}, {"stopSequence": 46, "arrival": {"time": "1694890627"}, "stopId": "38702"}, {"stopSequence": 47, "arrival": {"time": "1694890672"}, "stopId": "39787"}, {"stopSequence": 48, "arrival": {"time": "1694890714"}, "stopId": "38501"}, {"stopSequence": 49, "arrival": {"time": "1694890784"}, "stopId": "38692"}, {"stopSequence": 50, "arrival": {"time": "1694890855"}, "stopId": "38714"}, {"stopSequence": 51, "arrival": {"time": "1694890905"}, "stopId": "39791"}, {"stopSequence": 52, "arrival": {"time": "1694890934"}, "stopId": "38506"}, {"stopSequence": 53, "arrival": {"time": "1694890987"}, "stopId": "38635"}, {"stopSequence": 54, "arrival": {"time": "1694891022"}, "stopId": "38509"}, {"stopSequence": 55, "arrival": {"time": "1694891069"}, "stopId": "38642"}, {"stopSequence": 56, "arrival": {"time": "1694891117"}, "stopId": "39795"}, {"stopSequence": 57, "arrival": {"time": "1694891151"}, "stopId": "38502"}, {"stopSequence": 58, "arrival": {"time": "1694891219"}, "stopId": "38503"}, {"stopSequence": 59, "arrival": {"time": "1694891398"}, "stopId": "35691"}, {"stopSequence": 60, "arrival": {"time": "1694891510"}, "stopId": "35693"}, {"stopSequence": 61, "arrival": {"time": "1694891579"}, "stopId": "35694"}, {"stopSequence": 62, "arrival": {"time": "1694891628"}, "stopId": "35695"}, {"stopSequence": 63, "arrival": {"time": "1694891686"}, "stopId": "35696"}, {"stopSequence": 64, "arrival": {"time": "1694891903"}, "stopId": "35697"}, {"stopSequence": 65, "arrival": {"time": "1694892030"}, "stopId": "2-Jan"}, {"stopSequence": 66, "arrival": {"time": "1694892070"}, "stopId": "42460"}, {"stopSequence": 67, "arrival": {"time": "1694892128"}, "stopId": "35690"}, {"stopSequence": 68, "arrival": {"time": "1694892266"}, "stopId": "35700"}, {"stopSequence": 69, "arrival": {"time": "1694892403"}, "stopId": "35703"}, {"stopSequence": 70, "arrival": {"time": "1694892426"}, "stopId": "35704"}, {"stopSequence": 71, "arrival": {"time": "1694892459"}, "stopId": "35705"}, {"stopSequence": 72, "arrival": {"time": "1694892488"}, "stopId": "35706"}, {"stopSequence": 73, "arrival": {"time": "1694892572"}, "stopId": "35707"}, {"stopSequence": 74, "arrival": {"time": "1694892611"}, "stopId": "35708"}, {"stopSequence": 75, "arrival": {"time": "1694892640"}, "stopId": "35709"}, {"stopSequence": 76, "arrival": {"time": "1694892795"}, "stopId": "37522"}, {"stopSequence": 77, "arrival": {"time": "1694892854"}, "stopId": "39599"}, {"stopSequence": 78, "arrival": {"time": "1694892922"}, "stopId": "50034"}, {"stopSequence": 79, "arrival": {"time": "1694892994"}, "stopId": "40903"}, {"stopSequence": 80, "arrival": {"time": "1694893049"}, "stopId": "40904"}, {"stopSequence": 81, "arrival": {"time": "1694893142"}, "stopId": "35814"}, {"stopSequence": 82, "arrival": {"time": "1694893281"}, "stopId": "35815"}, {"stopSequence": 83, "arrival": {"time": "1694893331"}, "stopId": "35816"}, {"stopSequence": 84, "arrival": {"time": "1694893354"}, "stopId": "35817"}, {"stopSequence": 85, "arrival": {"time": "1694893421"}, "stopId": "35818"}, {"stopSequence": 86, "arrival": {"time": "1694893497"}, "stopId": "35819"}, {"stopSequence": 87, "arrival": {"time": "1694893895"}, "stopId": "35822"}, {"stopSequence": 88, "arrival": {"time": "1694894066"}, "stopId": "38833"}, {"stopSequence": 89, "arrival": {"time": "1694894916"}, "stopId": "38814"}, {"stopSequence": 90, "arrival": {"time": "1694895064"}, "stopId": "38815"}, {"stopSequence": 91, "arrival": {"time": "1694895101"}, "stopId": "38816"}, {"stopSequence": 92, "arrival": {"time": "1694895383"}, "stopId": "40565"}, {"stopSequence": 93, "arrival": {"time": "1694895570"}, "stopId": "40566"}, {"stopSequence": 94, "arrival": {"time": "1694895635"}, "stopId": "40567"}, {"stopSequence": 95, "arrival": {"time": "1694899128"}, "stopId": "50010"}, {"stopSequence": 96, "arrival": {"time": "1694899239"}, "stopId": "50011"}], "vehicle": {"licensePlate": "CTDG25"}, "timestamp": "1694888974"}, "vehicle": {"trip": {"tripId": "25137-701ff27f-2", "startTime": "15:37:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "728", "directionId": 1}, "position": {"latitude": -36.71284, "longitude": -73.11538, "bearing": 4.0, "odometer": 0.0, "speed": 3.0555556}, "timestamp": "1694888974", "vehicle": {"licensePlate": "CTDG25"}}}, {"id": "3bc74813-4d5e-4d7a-b4a5-cc4c7f733dba", "tripUpdate": {"trip": {"tripId": "25135-701ff27f-2", "startTime": "15:13:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "728", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 45, "arrival": {"time": "1694888997"}, "stopId": "38664"}, {"stopSequence": 46, "arrival": {"time": "1694889054"}, "stopId": "38702"}, {"stopSequence": 47, "arrival": {"time": "1694889101"}, "stopId": "39787"}, {"stopSequence": 48, "arrival": {"time": "1694889144"}, "stopId": "38501"}, {"stopSequence": 49, "arrival": {"time": "1694889215"}, "stopId": "38692"}, {"stopSequence": 50, "arrival": {"time": "1694889286"}, "stopId": "38714"}, {"stopSequence": 51, "arrival": {"time": "1694889334"}, "stopId": "39791"}, {"stopSequence": 52, "arrival": {"time": "1694889362"}, "stopId": "38506"}, {"stopSequence": 53, "arrival": {"time": "1694889412"}, "stopId": "38635"}, {"stopSequence": 54, "arrival": {"time": "1694889445"}, "stopId": "38509"}, {"stopSequence": 55, "arrival": {"time": "1694889489"}, "stopId": "38642"}, {"stopSequence": 56, "arrival": {"time": "1694889532"}, "stopId": "39795"}, {"stopSequence": 57, "arrival": {"time": "1694889563"}, "stopId": "38502"}, {"stopSequence": 58, "arrival": {"time": "1694889624"}, "stopId": "38503"}, {"stopSequence": 59, "arrival": {"time": "1694889778"}, "stopId": "35691"}, {"stopSequence": 60, "arrival": {"time": "1694889871"}, "stopId": "35693"}, {"stopSequence": 61, "arrival": {"time": "1694889927"}, "stopId": "35694"}, {"stopSequence": 62, "arrival": {"time": "1694889966"}, "stopId": "35695"}, {"stopSequence": 63, "arrival": {"time": "1694890012"}, "stopId": "35696"}, {"stopSequence": 64, "arrival": {"time": "1694890178"}, "stopId": "35697"}, {"stopSequence": 65, "arrival": {"time": "1694890272"}, "stopId": "2-Jan"}, {"stopSequence": 66, "arrival": {"time": "1694890301"}, "stopId": "42460"}, {"stopSequence": 67, "arrival": {"time": "1694890343"}, "stopId": "35690"}, {"stopSequence": 68, "arrival": {"time": "1694890439"}, "stopId": "35700"}, {"stopSequence": 69, "arrival": {"time": "1694890533"}, "stopId": "35703"}, {"stopSequence": 70, "arrival": {"time": "1694890548"}, "stopId": "35704"}, {"stopSequence": 71, "arrival": {"time": "1694890570"}, "stopId": "35705"}, {"stopSequence": 72, "arrival": {"time": "1694890590"}, "stopId": "35706"}, {"stopSequence": 73, "arrival": {"time": "1694890645"}, "stopId": "35707"}, {"stopSequence": 74, "arrival": {"time": "1694890671"}, "stopId": "35708"}, {"stopSequence": 75, "arrival": {"time": "1694890689"}, "stopId": "35709"}, {"stopSequence": 76, "arrival": {"time": "1694890788"}, "stopId": "37522"}, {"stopSequence": 77, "arrival": {"time": "1694890824"}, "stopId": "39599"}, {"stopSequence": 78, "arrival": {"time": "1694890866"}, "stopId": "50034"}, {"stopSequence": 79, "arrival": {"time": "1694890910"}, "stopId": "40903"}, {"stopSequence": 80, "arrival": {"time": "1694890943"}, "stopId": "40904"}, {"stopSequence": 81, "arrival": {"time": "1694890998"}, "stopId": "35814"}, {"stopSequence": 82, "arrival": {"time": "1694891079"}, "stopId": "35815"}, {"stopSequence": 83, "arrival": {"time": "1694891108"}, "stopId": "35816"}, {"stopSequence": 84, "arrival": {"time": "1694891121"}, "stopId": "35817"}, {"stopSequence": 85, "arrival": {"time": "1694891159"}, "stopId": "35818"}, {"stopSequence": 86, "arrival": {"time": "1694891202"}, "stopId": "35819"}, {"stopSequence": 87, "arrival": {"time": "1694891417"}, "stopId": "35822"}, {"stopSequence": 88, "arrival": {"time": "1694891505"}, "stopId": "38833"}, {"stopSequence": 89, "arrival": {"time": "1694891917"}, "stopId": "38814"}, {"stopSequence": 90, "arrival": {"time": "1694891983"}, "stopId": "38815"}, {"stopSequence": 91, "arrival": {"time": "1694892000"}, "stopId": "38816"}, {"stopSequence": 92, "arrival": {"time": "1694892124"}, "stopId": "40565"}, {"stopSequence": 93, "arrival": {"time": "1694892204"}, "stopId": "40566"}, {"stopSequence": 94, "arrival": {"time": "1694892231"}, "stopId": "40567"}, {"stopSequence": 95, "arrival": {"time": "1694893452"}, "stopId": "50010"}, {"stopSequence": 96, "arrival": {"time": "1694893484"}, "stopId": "50011"}], "vehicle": {"licensePlate": "CYDL42"}, "timestamp": "1694888982"}, "vehicle": {"trip": {"tripId": "25135-701ff27f-2", "startTime": "15:13:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "728", "directionId": 1}, "position": {"latitude": -36.774822, "longitude": -73.087685, "bearing": 180.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888982", "vehicle": {"licensePlate": "CYDL42"}}}, {"id": "6a0d0cad-5fd3-440c-b37f-262ec92986df", "tripUpdate": {"trip": {"tripId": "25138-701ff27f-2", "startTime": "15:49:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "728", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 1, "arrival": {"time": "1694889022"}, "stopId": "40439"}, {"stopSequence": 2, "arrival": {"time": "1694889073"}, "stopId": "40440"}, {"stopSequence": 3, "arrival": {"time": "1694889175"}, "stopId": "40441"}, {"stopSequence": 4, "arrival": {"time": "1694889266"}, "stopId": "40443"}, {"stopSequence": 5, "arrival": {"time": "1694889294"}, "stopId": "40548"}, {"stopSequence": 6, "arrival": {"time": "1694889343"}, "stopId": "40348"}, {"stopSequence": 7, "arrival": {"time": "1694889394"}, "stopId": "40349"}, {"stopSequence": 8, "arrival": {"time": "1694889428"}, "stopId": "40350"}, {"stopSequence": 9, "arrival": {"time": "1694889488"}, "stopId": "40351"}, {"stopSequence": 10, "arrival": {"time": "1694889575"}, "stopId": "40352"}, {"stopSequence": 11, "arrival": {"time": "1694889656"}, "stopId": "41970"}, {"stopSequence": 12, "arrival": {"time": "1694889664"}, "stopId": "40542"}, {"stopSequence": 13, "arrival": {"time": "1694889681"}, "stopId": "41971"}, {"stopSequence": 14, "arrival": {"time": "1694889708"}, "stopId": "40541"}, {"stopSequence": 15, "arrival": {"time": "1694889721"}, "stopId": "41972"}, {"stopSequence": 16, "arrival": {"time": "1694889738"}, "stopId": "40540"}, {"stopSequence": 17, "arrival": {"time": "1694889785"}, "stopId": "40539"}, {"stopSequence": 18, "arrival": {"time": "1694889846"}, "stopId": "42855"}, {"stopSequence": 19, "arrival": {"time": "1694889884"}, "stopId": "41975"}, {"stopSequence": 20, "arrival": {"time": "1694889904"}, "stopId": "42857"}, {"stopSequence": 21, "arrival": {"time": "1694889934"}, "stopId": "38697"}, {"stopSequence": 22, "arrival": {"time": "1694889981"}, "stopId": "38646"}, {"stopSequence": 23, "arrival": {"time": "1694890010"}, "stopId": "38632"}, {"stopSequence": 24, "arrival": {"time": "1694890093"}, "stopId": "38767"}, {"stopSequence": 25, "arrival": {"time": "1694890157"}, "stopId": "38768"}, {"stopSequence": 26, "arrival": {"time": "1694890201"}, "stopId": "38769"}, {"stopSequence": 27, "arrival": {"time": "1694890238"}, "stopId": "49357"}, {"stopSequence": 28, "arrival": {"time": "1694890280"}, "stopId": "38771"}, {"stopSequence": 29, "arrival": {"time": "1694890323"}, "stopId": "38668"}, {"stopSequence": 30, "arrival": {"time": "1694890419"}, "stopId": "38661"}, {"stopSequence": 31, "arrival": {"time": "1694890502"}, "stopId": "38657"}, {"stopSequence": 32, "arrival": {"time": "1694890563"}, "stopId": "38743"}, {"stopSequence": 33, "arrival": {"time": "1694890629"}, "stopId": "38652"}, {"stopSequence": 34, "arrival": {"time": "1694890694"}, "stopId": "38721"}, {"stopSequence": 35, "arrival": {"time": "1694890752"}, "stopId": "38659"}, {"stopSequence": 36, "arrival": {"time": "1694890838"}, "stopId": "38674"}, {"stopSequence": 37, "arrival": {"time": "1694890915"}, "stopId": "38649"}, {"stopSequence": 38, "arrival": {"time": "1694890982"}, "stopId": "38718"}, {"stopSequence": 39, "arrival": {"time": "1694891053"}, "stopId": "38735"}, {"stopSequence": 40, "arrival": {"time": "1694891118"}, "stopId": "42270"}, {"stopSequence": 41, "arrival": {"time": "1694891170"}, "stopId": "42271"}, {"stopSequence": 42, "arrival": {"time": "1694891389"}, "stopId": "38688"}, {"stopSequence": 43, "arrival": {"time": "1694891454"}, "stopId": "38673"}, {"stopSequence": 44, "arrival": {"time": "1694891545"}, "stopId": "39785"}, {"stopSequence": 45, "arrival": {"time": "1694891591"}, "stopId": "38664"}, {"stopSequence": 46, "arrival": {"time": "1694891656"}, "stopId": "38702"}, {"stopSequence": 47, "arrival": {"time": "1694891710"}, "stopId": "39787"}, {"stopSequence": 48, "arrival": {"time": "1694891762"}, "stopId": "38501"}, {"stopSequence": 49, "arrival": {"time": "1694891848"}, "stopId": "38692"}, {"stopSequence": 50, "arrival": {"time": "1694891938"}, "stopId": "38714"}, {"stopSequence": 51, "arrival": {"time": "1694892000"}, "stopId": "39791"}, {"stopSequence": 52, "arrival": {"time": "1694892037"}, "stopId": "38506"}, {"stopSequence": 53, "arrival": {"time": "1694892104"}, "stopId": "38635"}, {"stopSequence": 54, "arrival": {"time": "1694892150"}, "stopId": "38509"}, {"stopSequence": 55, "arrival": {"time": "1694892211"}, "stopId": "38642"}, {"stopSequence": 56, "arrival": {"time": "1694892273"}, "stopId": "39795"}, {"stopSequence": 57, "arrival": {"time": "1694892317"}, "stopId": "38502"}, {"stopSequence": 58, "arrival": {"time": "1694892408"}, "stopId": "38503"}, {"stopSequence": 59, "arrival": {"time": "1694892648"}, "stopId": "35691"}, {"stopSequence": 60, "arrival": {"time": "1694892802"}, "stopId": "35693"}, {"stopSequence": 61, "arrival": {"time": "1694892899"}, "stopId": "35694"}, {"stopSequence": 62, "arrival": {"time": "1694892967"}, "stopId": "35695"}, {"stopSequence": 63, "arrival": {"time": "1694893050"}, "stopId": "35696"}, {"stopSequence": 64, "arrival": {"time": "1694893364"}, "stopId": "35697"}, {"stopSequence": 65, "arrival": {"time": "1694893553"}, "stopId": "2-Jan"}, {"stopSequence": 66, "arrival": {"time": "1694893612"}, "stopId": "42460"}, {"stopSequence": 67, "arrival": {"time": "1694893701"}, "stopId": "35690"}, {"stopSequence": 68, "arrival": {"time": "1694893911"}, "stopId": "35700"}, {"stopSequence": 69, "arrival": {"time": "1694894126"}, "stopId": "35703"}, {"stopSequence": 70, "arrival": {"time": "1694894161"}, "stopId": "35704"}, {"stopSequence": 71, "arrival": {"time": "1694894213"}, "stopId": "35705"}, {"stopSequence": 72, "arrival": {"time": "1694894259"}, "stopId": "35706"}, {"stopSequence": 73, "arrival": {"time": "1694894395"}, "stopId": "35707"}, {"stopSequence": 74, "arrival": {"time": "1694894458"}, "stopId": "35708"}, {"stopSequence": 75, "arrival": {"time": "1694894505"}, "stopId": "35709"}, {"stopSequence": 76, "arrival": {"time": "1694894760"}, "stopId": "37522"}, {"stopSequence": 77, "arrival": {"time": "1694894859"}, "stopId": "39599"}, {"stopSequence": 78, "arrival": {"time": "1694894974"}, "stopId": "50034"}, {"stopSequence": 79, "arrival": {"time": "1694895094"}, "stopId": "40903"}, {"stopSequence": 80, "arrival": {"time": "1694895190"}, "stopId": "40904"}, {"stopSequence": 81, "arrival": {"time": "1694895351"}, "stopId": "35814"}, {"stopSequence": 82, "arrival": {"time": "1694895595"}, "stopId": "35815"}, {"stopSequence": 83, "arrival": {"time": "1694895684"}, "stopId": "35816"}, {"stopSequence": 84, "arrival": {"time": "1694895726"}, "stopId": "35817"}, {"stopSequence": 85, "arrival": {"time": "1694895846"}, "stopId": "35818"}, {"stopSequence": 86, "arrival": {"time": "1694895985"}, "stopId": "35819"}, {"stopSequence": 87, "arrival": {"time": "1694896733"}, "stopId": "35822"}, {"stopSequence": 88, "arrival": {"time": "1694897068"}, "stopId": "38833"}, {"stopSequence": 89, "arrival": {"time": "1694898859"}, "stopId": "38814"}, {"stopSequence": 90, "arrival": {"time": "1694899192"}, "stopId": "38815"}, {"stopSequence": 91, "arrival": {"time": "1694899278"}, "stopId": "38816"}, {"stopSequence": 92, "arrival": {"time": "1694899939"}, "stopId": "40565"}, {"stopSequence": 93, "arrival": {"time": "1694900393"}, "stopId": "40566"}, {"stopSequence": 94, "arrival": {"time": "1694900556"}, "stopId": "40567"}, {"stopSequence": 95, "arrival": {"time": "1694912349"}, "stopId": "50010"}, {"stopSequence": 96, "arrival": {"time": "1694912858"}, "stopId": "50011"}], "vehicle": {"licensePlate": "DPZZ49"}, "timestamp": "1694888986"}, "vehicle": {"trip": {"tripId": "25138-701ff27f-2", "startTime": "15:49:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "728", "directionId": 1}, "position": {"latitude": -36.72002, "longitude": -73.14718, "bearing": 18.0, "odometer": 0.0, "speed": 1.3888888}, "timestamp": "1694888986", "vehicle": {"licensePlate": "DPZZ49"}}}, {"id": "7ce564d4-a958-48e4-b19e-3de170c7d47c", "tripUpdate": {"trip": {"tripId": "25132-701ff27f-2", "startTime": "14:37:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "728", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 81, "arrival": {"time": "1694889046"}, "stopId": "35814"}, {"stopSequence": 82, "arrival": {"time": "1694889126"}, "stopId": "35815"}, {"stopSequence": 83, "arrival": {"time": "1694889153"}, "stopId": "35816"}, {"stopSequence": 84, "arrival": {"time": "1694889166"}, "stopId": "35817"}, {"stopSequence": 85, "arrival": {"time": "1694889202"}, "stopId": "35818"}, {"stopSequence": 86, "arrival": {"time": "1694889242"}, "stopId": "35819"}, {"stopSequence": 87, "arrival": {"time": "1694889435"}, "stopId": "35822"}, {"stopSequence": 88, "arrival": {"time": "1694889511"}, "stopId": "38833"}, {"stopSequence": 89, "arrival": {"time": "1694889837"}, "stopId": "38814"}, {"stopSequence": 90, "arrival": {"time": "1694889886"}, "stopId": "38815"}, {"stopSequence": 91, "arrival": {"time": "1694889898"}, "stopId": "38816"}, {"stopSequence": 92, "arrival": {"time": "1694889987"}, "stopId": "40565"}, {"stopSequence": 93, "arrival": {"time": "1694890043"}, "stopId": "40566"}, {"stopSequence": 94, "arrival": {"time": "1694890062"}, "stopId": "40567"}, {"stopSequence": 95, "arrival": {"time": "1694890792"}, "stopId": "50010"}, {"stopSequence": 96, "arrival": {"time": "1694890808"}, "stopId": "50011"}], "vehicle": {"licensePlate": "DRTL47"}, "timestamp": "1694888998"}, "vehicle": {"trip": {"tripId": "25132-701ff27f-2", "startTime": "14:37:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "728", "directionId": 1}, "position": {"latitude": -36.81613, "longitude": -73.03164, "bearing": 60.0, "odometer": 0.0, "speed": 1.3888888}, "timestamp": "1694888998", "vehicle": {"licensePlate": "DRTL47"}}}, {"id": "4844bb59-0b7c-4b4e-b230-22f6edac4a15", "tripUpdate": {"trip": {"tripId": "25136-701ff27f-2", "startTime": "15:25:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "728", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 24, "arrival": {"time": "1694889026"}, "stopId": "38767"}, {"stopSequence": 25, "arrival": {"time": "1694889096"}, "stopId": "38768"}, {"stopSequence": 26, "arrival": {"time": "1694889143"}, "stopId": "38769"}, {"stopSequence": 27, "arrival": {"time": "1694889183"}, "stopId": "49357"}, {"stopSequence": 28, "arrival": {"time": "1694889227"}, "stopId": "38771"}, {"stopSequence": 29, "arrival": {"time": "1694889272"}, "stopId": "38668"}, {"stopSequence": 30, "arrival": {"time": "1694889371"}, "stopId": "38661"}, {"stopSequence": 31, "arrival": {"time": "1694889455"}, "stopId": "38657"}, {"stopSequence": 32, "arrival": {"time": "1694889516"}, "stopId": "38743"}, {"stopSequence": 33, "arrival": {"time": "1694889581"}, "stopId": "38652"}, {"stopSequence": 34, "arrival": {"time": "1694889644"}, "stopId": "38721"}, {"stopSequence": 35, "arrival": {"time": "1694889700"}, "stopId": "38659"}, {"stopSequence": 36, "arrival": {"time": "1694889781"}, "stopId": "38674"}, {"stopSequence": 37, "arrival": {"time": "1694889853"}, "stopId": "38649"}, {"stopSequence": 38, "arrival": {"time": "1694889914"}, "stopId": "38718"}, {"stopSequence": 39, "arrival": {"time": "1694889979"}, "stopId": "38735"}, {"stopSequence": 40, "arrival": {"time": "1694890037"}, "stopId": "42270"}, {"stopSequence": 41, "arrival": {"time": "1694890084"}, "stopId": "42271"}, {"stopSequence": 42, "arrival": {"time": "1694890273"}, "stopId": "38688"}, {"stopSequence": 43, "arrival": {"time": "1694890328"}, "stopId": "38673"}, {"stopSequence": 44, "arrival": {"time": "1694890404"}, "stopId": "39785"}, {"stopSequence": 45, "arrival": {"time": "1694890442"}, "stopId": "38664"}, {"stopSequence": 46, "arrival": {"time": "1694890495"}, "stopId": "38702"}, {"stopSequence": 47, "arrival": {"time": "1694890539"}, "stopId": "39787"}, {"stopSequence": 48, "arrival": {"time": "1694890581"}, "stopId": "38501"}, {"stopSequence": 49, "arrival": {"time": "1694890649"}, "stopId": "38692"}, {"stopSequence": 50, "arrival": {"time": "1694890719"}, "stopId": "38714"}, {"stopSequence": 51, "arrival": {"time": "1694890768"}, "stopId": "39791"}, {"stopSequence": 52, "arrival": {"time": "1694890797"}, "stopId": "38506"}, {"stopSequence": 53, "arrival": {"time": "1694890848"}, "stopId": "38635"}, {"stopSequence": 54, "arrival": {"time": "1694890882"}, "stopId": "38509"}, {"stopSequence": 55, "arrival": {"time": "1694890928"}, "stopId": "38642"}, {"stopSequence": 56, "arrival": {"time": "1694890975"}, "stopId": "39795"}, {"stopSequence": 57, "arrival": {"time": "1694891007"}, "stopId": "38502"}, {"stopSequence": 58, "arrival": {"time": "1694891074"}, "stopId": "38503"}, {"stopSequence": 59, "arrival": {"time": "1694891247"}, "stopId": "35691"}, {"stopSequence": 60, "arrival": {"time": "1694891356"}, "stopId": "35693"}, {"stopSequence": 61, "arrival": {"time": "1694891422"}, "stopId": "35694"}, {"stopSequence": 62, "arrival": {"time": "1694891469"}, "stopId": "35695"}, {"stopSequence": 63, "arrival": {"time": "1694891525"}, "stopId": "35696"}, {"stopSequence": 64, "arrival": {"time": "1694891734"}, "stopId": "35697"}, {"stopSequence": 65, "arrival": {"time": "1694891856"}, "stopId": "2-Jan"}, {"stopSequence": 66, "arrival": {"time": "1694891894"}, "stopId": "42460"}, {"stopSequence": 67, "arrival": {"time": "1694891950"}, "stopId": "35690"}, {"stopSequence": 68, "arrival": {"time": "1694892080"}, "stopId": "35700"}, {"stopSequence": 69, "arrival": {"time": "1694892211"}, "stopId": "35703"}, {"stopSequence": 70, "arrival": {"time": "1694892233"}, "stopId": "35704"}, {"stopSequence": 71, "arrival": {"time": "1694892264"}, "stopId": "35705"}, {"stopSequence": 72, "arrival": {"time": "1694892291"}, "stopId": "35706"}, {"stopSequence": 73, "arrival": {"time": "1694892371"}, "stopId": "35707"}, {"stopSequence": 74, "arrival": {"time": "1694892408"}, "stopId": "35708"}, {"stopSequence": 75, "arrival": {"time": "1694892435"}, "stopId": "35709"}, {"stopSequence": 76, "arrival": {"time": "1694892582"}, "stopId": "37522"}, {"stopSequence": 77, "arrival": {"time": "1694892638"}, "stopId": "39599"}, {"stopSequence": 78, "arrival": {"time": "1694892702"}, "stopId": "50034"}, {"stopSequence": 79, "arrival": {"time": "1694892769"}, "stopId": "40903"}, {"stopSequence": 80, "arrival": {"time": "1694892821"}, "stopId": "40904"}, {"stopSequence": 81, "arrival": {"time": "1694892908"}, "stopId": "35814"}, {"stopSequence": 82, "arrival": {"time": "1694893038"}, "stopId": "35815"}, {"stopSequence": 83, "arrival": {"time": "1694893085"}, "stopId": "35816"}, {"stopSequence": 84, "arrival": {"time": "1694893107"}, "stopId": "35817"}, {"stopSequence": 85, "arrival": {"time": "1694893169"}, "stopId": "35818"}, {"stopSequence": 86, "arrival": {"time": "1694893240"}, "stopId": "35819"}, {"stopSequence": 87, "arrival": {"time": "1694893610"}, "stopId": "35822"}, {"stopSequence": 88, "arrival": {"time": "1694893768"}, "stopId": "38833"}, {"stopSequence": 89, "arrival": {"time": "1694894550"}, "stopId": "38814"}, {"stopSequence": 90, "arrival": {"time": "1694894685"}, "stopId": "38815"}, {"stopSequence": 91, "arrival": {"time": "1694894719"}, "stopId": "38816"}, {"stopSequence": 92, "arrival": {"time": "1694894975"}, "stopId": "40565"}, {"stopSequence": 93, "arrival": {"time": "1694895144"}, "stopId": "40566"}, {"stopSequence": 94, "arrival": {"time": "1694895204"}, "stopId": "40567"}, {"stopSequence": 95, "arrival": {"time": "1694898288"}, "stopId": "50010"}, {"stopSequence": 96, "arrival": {"time": "1694898383"}, "stopId": "50011"}], "vehicle": {"licensePlate": "HGRP70"}, "timestamp": "1694888978"}, "vehicle": {"trip": {"tripId": "25136-701ff27f-2", "startTime": "15:25:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "728", "directionId": 1}, "position": {"latitude": -36.715515, "longitude": -73.11017, "bearing": 158.0, "odometer": 0.0, "speed": 11.388889}, "timestamp": "1694888978", "vehicle": {"licensePlate": "HGRP70"}}}, {"id": "99ba1a54-54f9-42b0-96fc-e093ae8356de", "tripUpdate": {"trip": {"tripId": "25133-701ff27f-2", "startTime": "14:49:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "728", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 71, "arrival": {"time": "1694889009"}, "stopId": "35705"}, {"stopSequence": 72, "arrival": {"time": "1694889029"}, "stopId": "35706"}, {"stopSequence": 73, "arrival": {"time": "1694889088"}, "stopId": "35707"}, {"stopSequence": 74, "arrival": {"time": "1694889114"}, "stopId": "35708"}, {"stopSequence": 75, "arrival": {"time": "1694889133"}, "stopId": "35709"}, {"stopSequence": 76, "arrival": {"time": "1694889233"}, "stopId": "37522"}, {"stopSequence": 77, "arrival": {"time": "1694889270"}, "stopId": "39599"}, {"stopSequence": 78, "arrival": {"time": "1694889311"}, "stopId": "50034"}, {"stopSequence": 79, "arrival": {"time": "1694889353"}, "stopId": "40903"}, {"stopSequence": 80, "arrival": {"time": "1694889385"}, "stopId": "40904"}, {"stopSequence": 81, "arrival": {"time": "1694889438"}, "stopId": "35814"}, {"stopSequence": 82, "arrival": {"time": "1694889513"}, "stopId": "35815"}, {"stopSequence": 83, "arrival": {"time": "1694889539"}, "stopId": "35816"}, {"stopSequence": 84, "arrival": {"time": "1694889551"}, "stopId": "35817"}, {"stopSequence": 85, "arrival": {"time": "1694889585"}, "stopId": "35818"}, {"stopSequence": 86, "arrival": {"time": "1694889623"}, "stopId": "35819"}, {"stopSequence": 87, "arrival": {"time": "1694889809"}, "stopId": "35822"}, {"stopSequence": 88, "arrival": {"time": "1694889883"}, "stopId": "38833"}, {"stopSequence": 89, "arrival": {"time": "1694890205"}, "stopId": "38814"}, {"stopSequence": 90, "arrival": {"time": "1694890254"}, "stopId": "38815"}, {"stopSequence": 91, "arrival": {"time": "1694890267"}, "stopId": "38816"}, {"stopSequence": 92, "arrival": {"time": "1694890356"}, "stopId": "40565"}, {"stopSequence": 93, "arrival": {"time": "1694890413"}, "stopId": "40566"}, {"stopSequence": 94, "arrival": {"time": "1694890432"}, "stopId": "40567"}, {"stopSequence": 95, "arrival": {"time": "1694891196"}, "stopId": "50010"}, {"stopSequence": 96, "arrival": {"time": "1694891214"}, "stopId": "50011"}], "vehicle": {"licensePlate": "HHKP77"}, "timestamp": "1694888988"}, "vehicle": {"trip": {"tripId": "25133-701ff27f-2", "startTime": "14:49:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "728", "directionId": 1}, "position": {"latitude": -36.823692, "longitude": -73.04987, "bearing": 58.0, "odometer": 0.0, "speed": 3.0555556}, "timestamp": "1694888988", "vehicle": {"licensePlate": "HHKP77"}}}, {"id": "e3def9ae-236e-4f51-8766-4e9eb7e0d38b", "tripUpdate": {"trip": {"tripId": "25131-701ff27f-2", "startTime": "14:25:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "728", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 92, "arrival": {"time": "1694889009"}, "stopId": "40565"}, {"stopSequence": 93, "arrival": {"time": "1694889071"}, "stopId": "40566"}, {"stopSequence": 94, "arrival": {"time": "1694889091"}, "stopId": "40567"}, {"stopSequence": 95, "arrival": {"time": "1694889832"}, "stopId": "50010"}, {"stopSequence": 96, "arrival": {"time": "1694889848"}, "stopId": "50011"}], "vehicle": {"licensePlate": "HYYX44"}, "timestamp": "1694889008"}, "vehicle": {"trip": {"tripId": "25131-701ff27f-2", "startTime": "14:25:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "728", "directionId": 1}, "position": {"latitude": -36.82089, "longitude": -72.99087, "bearing": 56.0, "odometer": 0.0, "speed": 5.5555553}, "timestamp": "1694889008", "vehicle": {"licensePlate": "HYYX44"}}}, {"id": "64aded04-25d9-44b9-a720-b3cb929e3c94", "tripUpdate": {"trip": {"tripId": "25134-701ff27f-2", "startTime": "15:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "728", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 61, "arrival": {"time": "1694889059"}, "stopId": "35694"}, {"stopSequence": 62, "arrival": {"time": "1694889101"}, "stopId": "35695"}, {"stopSequence": 63, "arrival": {"time": "1694889151"}, "stopId": "35696"}, {"stopSequence": 64, "arrival": {"time": "1694889328"}, "stopId": "35697"}, {"stopSequence": 65, "arrival": {"time": "1694889426"}, "stopId": "2-Jan"}, {"stopSequence": 66, "arrival": {"time": "1694889455"}, "stopId": "42460"}, {"stopSequence": 67, "arrival": {"time": "1694889498"}, "stopId": "35690"}, {"stopSequence": 68, "arrival": {"time": "1694889595"}, "stopId": "35700"}, {"stopSequence": 69, "arrival": {"time": "1694889688"}, "stopId": "35703"}, {"stopSequence": 70, "arrival": {"time": "1694889703"}, "stopId": "35704"}, {"stopSequence": 71, "arrival": {"time": "1694889724"}, "stopId": "35705"}, {"stopSequence": 72, "arrival": {"time": "1694889743"}, "stopId": "35706"}, {"stopSequence": 73, "arrival": {"time": "1694889797"}, "stopId": "35707"}, {"stopSequence": 74, "arrival": {"time": "1694889821"}, "stopId": "35708"}, {"stopSequence": 75, "arrival": {"time": "1694889839"}, "stopId": "35709"}, {"stopSequence": 76, "arrival": {"time": "1694889933"}, "stopId": "37522"}, {"stopSequence": 77, "arrival": {"time": "1694889967"}, "stopId": "39599"}, {"stopSequence": 78, "arrival": {"time": "1694890006"}, "stopId": "50034"}, {"stopSequence": 79, "arrival": {"time": "1694890046"}, "stopId": "40903"}, {"stopSequence": 80, "arrival": {"time": "1694890077"}, "stopId": "40904"}, {"stopSequence": 81, "arrival": {"time": "1694890127"}, "stopId": "35814"}, {"stopSequence": 82, "arrival": {"time": "1694890201"}, "stopId": "35815"}, {"stopSequence": 83, "arrival": {"time": "1694890226"}, "stopId": "35816"}, {"stopSequence": 84, "arrival": {"time": "1694890238"}, "stopId": "35817"}, {"stopSequence": 85, "arrival": {"time": "1694890272"}, "stopId": "35818"}, {"stopSequence": 86, "arrival": {"time": "1694890310"}, "stopId": "35819"}, {"stopSequence": 87, "arrival": {"time": "1694890497"}, "stopId": "35822"}, {"stopSequence": 88, "arrival": {"time": "1694890572"}, "stopId": "38833"}, {"stopSequence": 89, "arrival": {"time": "1694890911"}, "stopId": "38814"}, {"stopSequence": 90, "arrival": {"time": "1694890964"}, "stopId": "38815"}, {"stopSequence": 91, "arrival": {"time": "1694890977"}, "stopId": "38816"}, {"stopSequence": 92, "arrival": {"time": "1694891075"}, "stopId": "40565"}, {"stopSequence": 93, "arrival": {"time": "1694891137"}, "stopId": "40566"}, {"stopSequence": 94, "arrival": {"time": "1694891158"}, "stopId": "40567"}, {"stopSequence": 95, "arrival": {"time": "1694892043"}, "stopId": "50010"}, {"stopSequence": 96, "arrival": {"time": "1694892065"}, "stopId": "50011"}], "vehicle": {"licensePlate": "XW9773"}, "timestamp": "1694889010"}, "vehicle": {"trip": {"tripId": "25134-701ff27f-2", "startTime": "15:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "728", "directionId": 1}, "position": {"latitude": -36.81113, "longitude": -73.07286, "bearing": 120.0, "odometer": 0.0, "speed": 8.333333}, "timestamp": "1694889010", "vehicle": {"licensePlate": "XW9773"}}}, {"id": "c9292222-58a6-4d79-b66b-f1e96856610f", "tripUpdate": {"trip": {"tripId": "25711-701ff27f-2", "startTime": "14:31:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "730", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 71, "arrival": {"time": "1694889026"}, "stopId": "42318"}, {"stopSequence": 72, "arrival": {"time": "1694889107"}, "stopId": "8606396"}, {"stopSequence": 73, "arrival": {"time": "1694889187"}, "stopId": "38514"}, {"stopSequence": 74, "arrival": {"time": "1694889230"}, "stopId": "38516"}, {"stopSequence": 75, "arrival": {"time": "1694889290"}, "stopId": "38518"}, {"stopSequence": 76, "arrival": {"time": "1694889392"}, "stopId": "38520"}, {"stopSequence": 77, "arrival": {"time": "1694889437"}, "stopId": "38521"}, {"stopSequence": 78, "arrival": {"time": "1694889482"}, "stopId": "38522"}, {"stopSequence": 79, "arrival": {"time": "1694889532"}, "stopId": "38523"}, {"stopSequence": 80, "arrival": {"time": "1694889584"}, "stopId": "38524"}, {"stopSequence": 81, "arrival": {"time": "1694889633"}, "stopId": "38525"}, {"stopSequence": 82, "arrival": {"time": "1694889684"}, "stopId": "38526"}, {"stopSequence": 83, "arrival": {"time": "1694889731"}, "stopId": "38527"}, {"stopSequence": 84, "arrival": {"time": "1694889817"}, "stopId": "38528"}, {"stopSequence": 85, "arrival": {"time": "1694889928"}, "stopId": "38529"}, {"stopSequence": 86, "arrival": {"time": "1694890127"}, "stopId": "38530"}, {"stopSequence": 87, "arrival": {"time": "1694890145"}, "stopId": "16005209"}, {"stopSequence": 88, "arrival": {"time": "1694890376"}, "stopId": "38531"}, {"stopSequence": 89, "arrival": {"time": "1694890430"}, "stopId": "8921285"}, {"stopSequence": 90, "arrival": {"time": "1694890540"}, "stopId": "38532"}, {"stopSequence": 91, "arrival": {"time": "1694890584"}, "stopId": "38533"}, {"stopSequence": 92, "arrival": {"time": "1694890647"}, "stopId": "38534"}, {"stopSequence": 93, "arrival": {"time": "1694890696"}, "stopId": "38535"}, {"stopSequence": 94, "arrival": {"time": "1694890762"}, "stopId": "38536"}, {"stopSequence": 95, "arrival": {"time": "1694890799"}, "stopId": "4838437"}, {"stopSequence": 96, "arrival": {"time": "1694890855"}, "stopId": "45085"}, {"stopSequence": 97, "arrival": {"time": "1694890939"}, "stopId": "45086"}, {"stopSequence": 98, "arrival": {"time": "1694890993"}, "stopId": "38539"}, {"stopSequence": 99, "arrival": {"time": "1694891063"}, "stopId": "38540"}, {"stopSequence": 100, "arrival": {"time": "1694891147"}, "stopId": "38544"}, {"stopSequence": 101, "arrival": {"time": "1694891223"}, "stopId": "38545"}, {"stopSequence": 102, "arrival": {"time": "1694891322"}, "stopId": "38546"}, {"stopSequence": 103, "arrival": {"time": "1694891461"}, "stopId": "38548"}, {"stopSequence": 104, "arrival": {"time": "1694891541"}, "stopId": "38549"}, {"stopSequence": 105, "arrival": {"time": "1694891608"}, "stopId": "38550"}, {"stopSequence": 106, "arrival": {"time": "1694891830"}, "stopId": "38552"}, {"stopSequence": 107, "arrival": {"time": "1694891936"}, "stopId": "49359"}, {"stopSequence": 108, "arrival": {"time": "1694892001"}, "stopId": "49360"}, {"stopSequence": 109, "arrival": {"time": "1694892150"}, "stopId": "49361"}, {"stopSequence": 110, "arrival": {"time": "1694892188"}, "stopId": "49362"}, {"stopSequence": 111, "arrival": {"time": "1694892253"}, "stopId": "49363"}, {"stopSequence": 112, "arrival": {"time": "1694892322"}, "stopId": "49364"}, {"stopSequence": 113, "arrival": {"time": "1694892375"}, "stopId": "49365"}, {"stopSequence": 114, "arrival": {"time": "1694892476"}, "stopId": "38560"}, {"stopSequence": 115, "arrival": {"time": "1694892534"}, "stopId": "42857"}, {"stopSequence": 116, "arrival": {"time": "1694892581"}, "stopId": "38562"}, {"stopSequence": 117, "arrival": {"time": "1694892634"}, "stopId": "38563"}, {"stopSequence": 118, "arrival": {"time": "1694892696"}, "stopId": "42854"}, {"stopSequence": 119, "arrival": {"time": "1694892854"}, "stopId": "38565"}, {"stopSequence": 120, "arrival": {"time": "1694892934"}, "stopId": "40932"}, {"stopSequence": 121, "arrival": {"time": "1694893007"}, "stopId": "38566"}, {"stopSequence": 122, "arrival": {"time": "1694893062"}, "stopId": "38567"}, {"stopSequence": 123, "arrival": {"time": "1694893144"}, "stopId": "38568"}, {"stopSequence": 124, "arrival": {"time": "1694893196"}, "stopId": "38569"}, {"stopSequence": 125, "arrival": {"time": "1694893273"}, "stopId": "38570"}, {"stopSequence": 126, "arrival": {"time": "1694893377"}, "stopId": "38571"}, {"stopSequence": 127, "arrival": {"time": "1694893479"}, "stopId": "38572"}], "vehicle": {"licensePlate": "DDDZ67"}, "timestamp": "1694889004"}, "vehicle": {"trip": {"tripId": "25711-701ff27f-2", "startTime": "14:31:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "730", "directionId": 0}, "position": {"latitude": -36.829597, "longitude": -73.05177, "bearing": 57.0, "odometer": 0.0, "speed": 6.111111}, "timestamp": "1694889004", "vehicle": {"licensePlate": "DDDZ67"}}}, {"id": "080c3df7-3ab7-4851-a7e8-c098ca923f8d", "tripUpdate": {"trip": {"tripId": "25714-701ff27f-2", "startTime": "15:16:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "730", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 14, "arrival": {"time": "1694889039"}, "stopId": "49256"}, {"stopSequence": 15, "arrival": {"time": "1694889195"}, "stopId": "49214"}, {"stopSequence": 16, "arrival": {"time": "1694889245"}, "stopId": "49218"}, {"stopSequence": 17, "arrival": {"time": "1694889269"}, "stopId": "49257"}, {"stopSequence": 18, "arrival": {"time": "1694889392"}, "stopId": "49258"}, {"stopSequence": 19, "arrival": {"time": "1694889449"}, "stopId": "49259"}, {"stopSequence": 20, "arrival": {"time": "1694889457"}, "stopId": "49260"}, {"stopSequence": 21, "arrival": {"time": "1694889625"}, "stopId": "49261"}, {"stopSequence": 22, "arrival": {"time": "1694889656"}, "stopId": "49262"}, {"stopSequence": 23, "arrival": {"time": "1694889677"}, "stopId": "49263"}, {"stopSequence": 24, "arrival": {"time": "1694890434"}, "stopId": "34549"}, {"stopSequence": 25, "arrival": {"time": "1694890776"}, "stopId": "49264"}, {"stopSequence": 26, "arrival": {"time": "1694890778"}, "stopId": "49265"}, {"stopSequence": 27, "arrival": {"time": "1694890953"}, "stopId": "42274"}, {"stopSequence": 28, "arrival": {"time": "1694891035"}, "stopId": "42275"}, {"stopSequence": 29, "arrival": {"time": "1694891079"}, "stopId": "42276"}, {"stopSequence": 30, "arrival": {"time": "1694891169"}, "stopId": "42277"}, {"stopSequence": 31, "arrival": {"time": "1694891259"}, "stopId": "42278"}, {"stopSequence": 32, "arrival": {"time": "1694891305"}, "stopId": "42279"}, {"stopSequence": 33, "arrival": {"time": "1694891398"}, "stopId": "42280"}, {"stopSequence": 34, "arrival": {"time": "1694891447"}, "stopId": "42281"}, {"stopSequence": 35, "arrival": {"time": "1694891535"}, "stopId": "42282"}, {"stopSequence": 36, "arrival": {"time": "1694891601"}, "stopId": "42283"}, {"stopSequence": 37, "arrival": {"time": "1694891680"}, "stopId": "49279"}, {"stopSequence": 38, "arrival": {"time": "1694891777"}, "stopId": "42285"}, {"stopSequence": 39, "arrival": {"time": "1694891889"}, "stopId": "42286"}, {"stopSequence": 40, "arrival": {"time": "1694891910"}, "stopId": "42287"}, {"stopSequence": 41, "arrival": {"time": "1694891984"}, "stopId": "42288"}, {"stopSequence": 42, "arrival": {"time": "1694892030"}, "stopId": "42289"}, {"stopSequence": 43, "arrival": {"time": "1694892136"}, "stopId": "42290"}, {"stopSequence": 44, "arrival": {"time": "1694892212"}, "stopId": "42291"}, {"stopSequence": 45, "arrival": {"time": "1694892335"}, "stopId": "42292"}, {"stopSequence": 46, "arrival": {"time": "1694892438"}, "stopId": "42293"}, {"stopSequence": 47, "arrival": {"time": "1694892711"}, "stopId": "42294"}, {"stopSequence": 48, "arrival": {"time": "1694892923"}, "stopId": "42295"}, {"stopSequence": 49, "arrival": {"time": "1694893121"}, "stopId": "42296"}, {"stopSequence": 50, "arrival": {"time": "1694893352"}, "stopId": "42297"}, {"stopSequence": 51, "arrival": {"time": "1694893539"}, "stopId": "42298"}, {"stopSequence": 52, "arrival": {"time": "1694893669"}, "stopId": "42299"}, {"stopSequence": 53, "arrival": {"time": "1694893757"}, "stopId": "49295"}, {"stopSequence": 54, "arrival": {"time": "1694894012"}, "stopId": "49296"}, {"stopSequence": 55, "arrival": {"time": "1694894222"}, "stopId": "49297"}, {"stopSequence": 56, "arrival": {"time": "1694894307"}, "stopId": "49298"}, {"stopSequence": 57, "arrival": {"time": "1694894479"}, "stopId": "49299"}, {"stopSequence": 58, "arrival": {"time": "1694894589"}, "stopId": "49300"}, {"stopSequence": 59, "arrival": {"time": "1694894813"}, "stopId": "49301"}, {"stopSequence": 60, "arrival": {"time": "1694895005"}, "stopId": "49302"}, {"stopSequence": 61, "arrival": {"time": "1694895137"}, "stopId": "49303"}, {"stopSequence": 62, "arrival": {"time": "1694895294"}, "stopId": "49304"}, {"stopSequence": 63, "arrival": {"time": "1694895382"}, "stopId": "49305"}, {"stopSequence": 64, "arrival": {"time": "1694895565"}, "stopId": "49306"}, {"stopSequence": 65, "arrival": {"time": "1694895698"}, "stopId": "49307"}, {"stopSequence": 66, "arrival": {"time": "1694895781"}, "stopId": "49308"}, {"stopSequence": 67, "arrival": {"time": "1694895866"}, "stopId": "49309"}, {"stopSequence": 68, "arrival": {"time": "1694895966"}, "stopId": "42315"}, {"stopSequence": 69, "arrival": {"time": "1694896050"}, "stopId": "42316"}, {"stopSequence": 70, "arrival": {"time": "1694896241"}, "stopId": "42317"}, {"stopSequence": 71, "arrival": {"time": "1694896413"}, "stopId": "42318"}, {"stopSequence": 72, "arrival": {"time": "1694896725"}, "stopId": "8606396"}, {"stopSequence": 73, "arrival": {"time": "1694897061"}, "stopId": "38514"}, {"stopSequence": 74, "arrival": {"time": "1694897253"}, "stopId": "38516"}, {"stopSequence": 75, "arrival": {"time": "1694897534"}, "stopId": "38518"}, {"stopSequence": 76, "arrival": {"time": "1694898063"}, "stopId": "38520"}, {"stopSequence": 77, "arrival": {"time": "1694898312"}, "stopId": "38521"}, {"stopSequence": 78, "arrival": {"time": "1694898582"}, "stopId": "38522"}, {"stopSequence": 79, "arrival": {"time": "1694898893"}, "stopId": "38523"}, {"stopSequence": 80, "arrival": {"time": "1694899240"}, "stopId": "38524"}, {"stopSequence": 81, "arrival": {"time": "1694899582"}, "stopId": "38525"}, {"stopSequence": 82, "arrival": {"time": "1694899968"}, "stopId": "38526"}, {"stopSequence": 83, "arrival": {"time": "1694900348"}, "stopId": "38527"}, {"stopSequence": 84, "arrival": {"time": "1694901104"}, "stopId": "38528"}, {"stopSequence": 85, "arrival": {"time": "1694902231"}, "stopId": "38529"}, {"stopSequence": 86, "arrival": {"time": "1694904801"}, "stopId": "38530"}, {"stopSequence": 87, "arrival": {"time": "1694905073"}, "stopId": "16005209"}, {"stopSequence": 88, "arrival": {"time": "1694909594"}, "stopId": "38531"}, {"stopSequence": 89, "arrival": {"time": "1694910999"}, "stopId": "8921285"}, {"stopSequence": 90, "arrival": {"time": "1694914491"}, "stopId": "38532"}, {"stopSequence": 91, "arrival": {"time": "1694916191"}, "stopId": "38533"}, {"stopSequence": 92, "arrival": {"time": "1694919012"}, "stopId": "38534"}, {"stopSequence": 93, "arrival": {"time": "1694921593"}, "stopId": "38535"}, {"stopSequence": 94, "arrival": {"time": "1694925836"}, "stopId": "38536"}, {"stopSequence": 95, "arrival": {"time": "1694928673"}, "stopId": "4838437"}, {"stopSequence": 96, "arrival": {"time": "1694933833"}, "stopId": "45085"}, {"stopSequence": 97, "arrival": {"time": "1694944443"}, "stopId": "45086"}, {"stopSequence": 98, "arrival": {"time": "1694954227"}, "stopId": "38539"}, {"stopSequence": 99, "arrival": {"time": "1694973047"}, "stopId": "38540"}, {"stopSequence": 100, "arrival": {"time": "1695016797"}, "stopId": "38544"}, {"stopSequence": 101, "arrival": {"time": "1695123283"}, "stopId": "38545"}], "vehicle": {"licensePlate": "DPZZ52"}, "timestamp": "1694889007"}, "vehicle": {"trip": {"tripId": "25714-701ff27f-2", "startTime": "15:16:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "730", "directionId": 0}, "position": {"latitude": -36.97449, "longitude": -72.93576, "bearing": 268.0, "odometer": 0.0, "speed": 7.7777777}, "timestamp": "1694889007", "vehicle": {"licensePlate": "DPZZ52"}}}, {"id": "c78b1aca-62ed-4c05-830d-43fe35397b65", "tripUpdate": {"trip": {"tripId": "25707-701ff27f-2", "startTime": "13:31:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "730", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 123, "arrival": {"time": "1694889055"}, "stopId": "38568"}, {"stopSequence": 124, "arrival": {"time": "1694889085"}, "stopId": "38569"}, {"stopSequence": 125, "arrival": {"time": "1694889129"}, "stopId": "38570"}, {"stopSequence": 126, "arrival": {"time": "1694889188"}, "stopId": "38571"}, {"stopSequence": 127, "arrival": {"time": "1694889242"}, "stopId": "38572"}], "vehicle": {"licensePlate": "GDBP49"}, "timestamp": "1694889012"}, "vehicle": {"trip": {"tripId": "25707-701ff27f-2", "startTime": "13:31:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "730", "directionId": 0}, "position": {"latitude": -36.724224, "longitude": -73.11991, "bearing": 32.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889012", "vehicle": {"licensePlate": "GDBP49"}}}, {"id": "ea2ab4d5-d766-4915-8730-59900b063a49", "tripUpdate": {"trip": {"tripId": "25713-701ff27f-2", "startTime": "15:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "730", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 35, "arrival": {"time": "1694889090"}, "stopId": "42282"}, {"stopSequence": 36, "arrival": {"time": "1694889149"}, "stopId": "42283"}, {"stopSequence": 37, "arrival": {"time": "1694889218"}, "stopId": "49279"}, {"stopSequence": 38, "arrival": {"time": "1694889299"}, "stopId": "42285"}, {"stopSequence": 39, "arrival": {"time": "1694889389"}, "stopId": "42286"}, {"stopSequence": 40, "arrival": {"time": "1694889405"}, "stopId": "42287"}, {"stopSequence": 41, "arrival": {"time": "1694889462"}, "stopId": "42288"}, {"stopSequence": 42, "arrival": {"time": "1694889497"}, "stopId": "42289"}, {"stopSequence": 43, "arrival": {"time": "1694889575"}, "stopId": "42290"}, {"stopSequence": 44, "arrival": {"time": "1694889630"}, "stopId": "42291"}, {"stopSequence": 45, "arrival": {"time": "1694889715"}, "stopId": "42292"}, {"stopSequence": 46, "arrival": {"time": "1694889783"}, "stopId": "42293"}, {"stopSequence": 47, "arrival": {"time": "1694889957"}, "stopId": "42294"}, {"stopSequence": 48, "arrival": {"time": "1694890081"}, "stopId": "42295"}, {"stopSequence": 49, "arrival": {"time": "1694890192"}, "stopId": "42296"}, {"stopSequence": 50, "arrival": {"time": "1694890314"}, "stopId": "42297"}, {"stopSequence": 51, "arrival": {"time": "1694890409"}, "stopId": "42298"}, {"stopSequence": 52, "arrival": {"time": "1694890472"}, "stopId": "42299"}, {"stopSequence": 53, "arrival": {"time": "1694890514"}, "stopId": "49295"}, {"stopSequence": 54, "arrival": {"time": "1694890630"}, "stopId": "49296"}, {"stopSequence": 55, "arrival": {"time": "1694890722"}, "stopId": "49297"}, {"stopSequence": 56, "arrival": {"time": "1694890757"}, "stopId": "49298"}, {"stopSequence": 57, "arrival": {"time": "1694890828"}, "stopId": "49299"}, {"stopSequence": 58, "arrival": {"time": "1694890873"}, "stopId": "49300"}, {"stopSequence": 59, "arrival": {"time": "1694890960"}, "stopId": "49301"}, {"stopSequence": 60, "arrival": {"time": "1694891031"}, "stopId": "49302"}, {"stopSequence": 61, "arrival": {"time": "1694891079"}, "stopId": "49303"}, {"stopSequence": 62, "arrival": {"time": "1694891135"}, "stopId": "49304"}, {"stopSequence": 63, "arrival": {"time": "1694891166"}, "stopId": "49305"}, {"stopSequence": 64, "arrival": {"time": "1694891227"}, "stopId": "49306"}, {"stopSequence": 65, "arrival": {"time": "1694891272"}, "stopId": "49307"}, {"stopSequence": 66, "arrival": {"time": "1694891298"}, "stopId": "49308"}, {"stopSequence": 67, "arrival": {"time": "1694891326"}, "stopId": "49309"}, {"stopSequence": 68, "arrival": {"time": "1694891357"}, "stopId": "42315"}, {"stopSequence": 69, "arrival": {"time": "1694891384"}, "stopId": "42316"}, {"stopSequence": 70, "arrival": {"time": "1694891442"}, "stopId": "42317"}, {"stopSequence": 71, "arrival": {"time": "1694891493"}, "stopId": "42318"}, {"stopSequence": 72, "arrival": {"time": "1694891582"}, "stopId": "8606396"}, {"stopSequence": 73, "arrival": {"time": "1694891674"}, "stopId": "38514"}, {"stopSequence": 74, "arrival": {"time": "1694891725"}, "stopId": "38516"}, {"stopSequence": 75, "arrival": {"time": "1694891796"}, "stopId": "38518"}, {"stopSequence": 76, "arrival": {"time": "1694891924"}, "stopId": "38520"}, {"stopSequence": 77, "arrival": {"time": "1694891982"}, "stopId": "38521"}, {"stopSequence": 78, "arrival": {"time": "1694892042"}, "stopId": "38522"}, {"stopSequence": 79, "arrival": {"time": "1694892109"}, "stopId": "38523"}, {"stopSequence": 80, "arrival": {"time": "1694892181"}, "stopId": "38524"}, {"stopSequence": 81, "arrival": {"time": "1694892249"}, "stopId": "38525"}, {"stopSequence": 82, "arrival": {"time": "1694892323"}, "stopId": "38526"}, {"stopSequence": 83, "arrival": {"time": "1694892392"}, "stopId": "38527"}, {"stopSequence": 84, "arrival": {"time": "1694892522"}, "stopId": "38528"}, {"stopSequence": 85, "arrival": {"time": "1694892699"}, "stopId": "38529"}, {"stopSequence": 86, "arrival": {"time": "1694893038"}, "stopId": "38530"}, {"stopSequence": 87, "arrival": {"time": "1694893070"}, "stopId": "16005209"}, {"stopSequence": 88, "arrival": {"time": "1694893507"}, "stopId": "38531"}, {"stopSequence": 89, "arrival": {"time": "1694893616"}, "stopId": "8921285"}, {"stopSequence": 90, "arrival": {"time": "1694893847"}, "stopId": "38532"}, {"stopSequence": 91, "arrival": {"time": "1694893944"}, "stopId": "38533"}, {"stopSequence": 92, "arrival": {"time": "1694894084"}, "stopId": "38534"}, {"stopSequence": 93, "arrival": {"time": "1694894196"}, "stopId": "38535"}, {"stopSequence": 94, "arrival": {"time": "1694894352"}, "stopId": "38536"}, {"stopSequence": 95, "arrival": {"time": "1694894441"}, "stopId": "4838437"}, {"stopSequence": 96, "arrival": {"time": "1694894579"}, "stopId": "45085"}, {"stopSequence": 97, "arrival": {"time": "1694894791"}, "stopId": "45086"}, {"stopSequence": 98, "arrival": {"time": "1694894934"}, "stopId": "38539"}, {"stopSequence": 99, "arrival": {"time": "1694895122"}, "stopId": "38540"}, {"stopSequence": 100, "arrival": {"time": "1694895360"}, "stopId": "38544"}, {"stopSequence": 101, "arrival": {"time": "1694895580"}, "stopId": "38545"}, {"stopSequence": 102, "arrival": {"time": "1694895882"}, "stopId": "38546"}, {"stopSequence": 103, "arrival": {"time": "1694896328"}, "stopId": "38548"}, {"stopSequence": 104, "arrival": {"time": "1694896603"}, "stopId": "38549"}, {"stopSequence": 105, "arrival": {"time": "1694896837"}, "stopId": "38550"}, {"stopSequence": 106, "arrival": {"time": "1694897682"}, "stopId": "38552"}, {"stopSequence": 107, "arrival": {"time": "1694898119"}, "stopId": "49359"}, {"stopSequence": 108, "arrival": {"time": "1694898400"}, "stopId": "49360"}, {"stopSequence": 109, "arrival": {"time": "1694899087"}, "stopId": "49361"}, {"stopSequence": 110, "arrival": {"time": "1694899268"}, "stopId": "49362"}, {"stopSequence": 111, "arrival": {"time": "1694899594"}, "stopId": "49363"}, {"stopSequence": 112, "arrival": {"time": "1694899950"}, "stopId": "49364"}, {"stopSequence": 113, "arrival": {"time": "1694900233"}, "stopId": "49365"}, {"stopSequence": 114, "arrival": {"time": "1694900799"}, "stopId": "38560"}, {"stopSequence": 115, "arrival": {"time": "1694901137"}, "stopId": "42857"}, {"stopSequence": 116, "arrival": {"time": "1694901424"}, "stopId": "38562"}, {"stopSequence": 117, "arrival": {"time": "1694901756"}, "stopId": "38563"}, {"stopSequence": 118, "arrival": {"time": "1694902155"}, "stopId": "42854"}, {"stopSequence": 119, "arrival": {"time": "1694903256"}, "stopId": "38565"}, {"stopSequence": 120, "arrival": {"time": "1694903861"}, "stopId": "40932"}, {"stopSequence": 121, "arrival": {"time": "1694904433"}, "stopId": "38566"}, {"stopSequence": 122, "arrival": {"time": "1694904892"}, "stopId": "38567"}, {"stopSequence": 123, "arrival": {"time": "1694905608"}, "stopId": "38568"}, {"stopSequence": 124, "arrival": {"time": "1694906076"}, "stopId": "38569"}, {"stopSequence": 125, "arrival": {"time": "1694906814"}, "stopId": "38570"}, {"stopSequence": 126, "arrival": {"time": "1694907892"}, "stopId": "38571"}, {"stopSequence": 127, "arrival": {"time": "1694909022"}, "stopId": "38572"}], "vehicle": {"licensePlate": "GYGP39"}, "timestamp": "1694889034"}, "vehicle": {"trip": {"tripId": "25713-701ff27f-2", "startTime": "15:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "730", "directionId": 0}, "position": {"latitude": -36.930576, "longitude": -73.02307, "bearing": 341.0, "odometer": 0.0, "speed": 10.0}, "timestamp": "1694889034", "vehicle": {"licensePlate": "GYGP39"}}}, {"id": "74bf276a-7b41-42dd-acea-78c11ed204c8", "tripUpdate": {"trip": {"tripId": "25709-701ff27f-2", "startTime": "14:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "730", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 126, "arrival": {"time": "1694889017"}, "stopId": "38571"}, {"stopSequence": 127, "arrival": {"time": "1694889073"}, "stopId": "38572"}], "vehicle": {"licensePlate": "KXVG62"}, "timestamp": "1694889004"}, "vehicle": {"trip": {"tripId": "25709-701ff27f-2", "startTime": "14:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "730", "directionId": 0}, "position": {"latitude": -36.7226, "longitude": -73.12709, "bearing": 231.0, "odometer": 0.0, "speed": 10.833333}, "timestamp": "1694889004", "vehicle": {"licensePlate": "KXVG62"}}}, {"id": "e1e9cf41-6efc-4e8e-8416-a5f5819f2c2c", "tripUpdate": {"trip": {"tripId": "25710-701ff27f-2", "startTime": "14:16:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "730", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 89, "arrival": {"time": "1694888982"}, "stopId": "8921285"}, {"stopSequence": 90, "arrival": {"time": "1694889101"}, "stopId": "38532"}, {"stopSequence": 91, "arrival": {"time": "1694889147"}, "stopId": "38533"}, {"stopSequence": 92, "arrival": {"time": "1694889212"}, "stopId": "38534"}, {"stopSequence": 93, "arrival": {"time": "1694889262"}, "stopId": "38535"}, {"stopSequence": 94, "arrival": {"time": "1694889328"}, "stopId": "38536"}, {"stopSequence": 95, "arrival": {"time": "1694889364"}, "stopId": "4838437"}, {"stopSequence": 96, "arrival": {"time": "1694889419"}, "stopId": "45085"}, {"stopSequence": 97, "arrival": {"time": "1694889499"}, "stopId": "45086"}, {"stopSequence": 98, "arrival": {"time": "1694889550"}, "stopId": "38539"}, {"stopSequence": 99, "arrival": {"time": "1694889614"}, "stopId": "38540"}, {"stopSequence": 100, "arrival": {"time": "1694889691"}, "stopId": "38544"}, {"stopSequence": 101, "arrival": {"time": "1694889758"}, "stopId": "38545"}, {"stopSequence": 102, "arrival": {"time": "1694889844"}, "stopId": "38546"}, {"stopSequence": 103, "arrival": {"time": "1694889961"}, "stopId": "38548"}, {"stopSequence": 104, "arrival": {"time": "1694890028"}, "stopId": "38549"}, {"stopSequence": 105, "arrival": {"time": "1694890082"}, "stopId": "38550"}, {"stopSequence": 106, "arrival": {"time": "1694890257"}, "stopId": "38552"}, {"stopSequence": 107, "arrival": {"time": "1694890338"}, "stopId": "49359"}, {"stopSequence": 108, "arrival": {"time": "1694890386"}, "stopId": "49360"}, {"stopSequence": 109, "arrival": {"time": "1694890496"}, "stopId": "49361"}, {"stopSequence": 110, "arrival": {"time": "1694890523"}, "stopId": "49362"}, {"stopSequence": 111, "arrival": {"time": "1694890570"}, "stopId": "49363"}, {"stopSequence": 112, "arrival": {"time": "1694890618"}, "stopId": "49364"}, {"stopSequence": 113, "arrival": {"time": "1694890655"}, "stopId": "49365"}, {"stopSequence": 114, "arrival": {"time": "1694890724"}, "stopId": "38560"}, {"stopSequence": 115, "arrival": {"time": "1694890764"}, "stopId": "42857"}, {"stopSequence": 116, "arrival": {"time": "1694890795"}, "stopId": "38562"}, {"stopSequence": 117, "arrival": {"time": "1694890831"}, "stopId": "38563"}, {"stopSequence": 118, "arrival": {"time": "1694890871"}, "stopId": "42854"}, {"stopSequence": 119, "arrival": {"time": "1694890974"}, "stopId": "38565"}, {"stopSequence": 120, "arrival": {"time": "1694891025"}, "stopId": "40932"}, {"stopSequence": 121, "arrival": {"time": "1694891071"}, "stopId": "38566"}, {"stopSequence": 122, "arrival": {"time": "1694891105"}, "stopId": "38567"}, {"stopSequence": 123, "arrival": {"time": "1694891156"}, "stopId": "38568"}, {"stopSequence": 124, "arrival": {"time": "1694891187"}, "stopId": "38569"}, {"stopSequence": 125, "arrival": {"time": "1694891234"}, "stopId": "38570"}, {"stopSequence": 126, "arrival": {"time": "1694891296"}, "stopId": "38571"}, {"stopSequence": 127, "arrival": {"time": "1694891356"}, "stopId": "38572"}], "vehicle": {"licensePlate": "RFDS28"}, "timestamp": "1694888978"}, "vehicle": {"trip": {"tripId": "25710-701ff27f-2", "startTime": "14:16:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "730", "directionId": 0}, "position": {"latitude": -36.779324, "longitude": -73.07765, "bearing": 346.0, "odometer": 0.0, "speed": 4.1666665}, "timestamp": "1694888978", "vehicle": {"licensePlate": "RFDS28"}}}, {"id": "00e5aa91-99e9-4633-8816-c14bc0724c7d", "tripUpdate": {"trip": {"tripId": "25749-701ff27f-2", "startTime": "05:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "731", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 70, "arrival": {"time": "1694889148"}, "stopId": "42209"}, {"stopSequence": 71, "arrival": {"time": "1694889271"}, "stopId": "42210"}, {"stopSequence": 72, "arrival": {"time": "1694889461"}, "stopId": "42215"}, {"stopSequence": 73, "arrival": {"time": "1694889492"}, "stopId": "42216"}, {"stopSequence": 74, "arrival": {"time": "1694889533"}, "stopId": "42217"}, {"stopSequence": 75, "arrival": {"time": "1694889608"}, "stopId": "42218"}, {"stopSequence": 76, "arrival": {"time": "1694889651"}, "stopId": "42219"}, {"stopSequence": 77, "arrival": {"time": "1694889749"}, "stopId": "42220"}, {"stopSequence": 78, "arrival": {"time": "1694889792"}, "stopId": "42221"}, {"stopSequence": 79, "arrival": {"time": "1694889857"}, "stopId": "42222"}, {"stopSequence": 80, "arrival": {"time": "1694889924"}, "stopId": "42223"}, {"stopSequence": 81, "arrival": {"time": "1694889951"}, "stopId": "42224"}, {"stopSequence": 82, "arrival": {"time": "1694890022"}, "stopId": "42225"}, {"stopSequence": 83, "arrival": {"time": "1694890084"}, "stopId": "42226"}, {"stopSequence": 84, "arrival": {"time": "1694890139"}, "stopId": "42227"}, {"stopSequence": 85, "arrival": {"time": "1694890211"}, "stopId": "42228"}, {"stopSequence": 86, "arrival": {"time": "1694890254"}, "stopId": "42229"}, {"stopSequence": 87, "arrival": {"time": "1694890336"}, "stopId": "42230"}, {"stopSequence": 88, "arrival": {"time": "1694890378"}, "stopId": "42231"}, {"stopSequence": 89, "arrival": {"time": "1694890456"}, "stopId": "42232"}, {"stopSequence": 90, "arrival": {"time": "1694890538"}, "stopId": "42233"}, {"stopSequence": 91, "arrival": {"time": "1694890580"}, "stopId": "42234"}, {"stopSequence": 92, "arrival": {"time": "1694890655"}, "stopId": "42235"}, {"stopSequence": 93, "arrival": {"time": "1694890676"}, "stopId": "42211"}, {"stopSequence": 94, "arrival": {"time": "1694890736"}, "stopId": "49203"}, {"stopSequence": 95, "arrival": {"time": "1694890794"}, "stopId": "49204"}, {"stopSequence": 96, "arrival": {"time": "1694890812"}, "stopId": "42503"}, {"stopSequence": 97, "arrival": {"time": "1694890820"}, "stopId": "34564"}, {"stopSequence": 98, "arrival": {"time": "1694891174"}, "stopId": "34789"}, {"stopSequence": 99, "arrival": {"time": "1694891203"}, "stopId": "49163"}, {"stopSequence": 100, "arrival": {"time": "1694892107"}, "stopId": "49208"}, {"stopSequence": 101, "arrival": {"time": "1694892141"}, "stopId": "49209"}, {"stopSequence": 102, "arrival": {"time": "1694892162"}, "stopId": "49210"}, {"stopSequence": 103, "arrival": {"time": "1694892428"}, "stopId": "49211"}, {"stopSequence": 104, "arrival": {"time": "1694892463"}, "stopId": "49212"}, {"stopSequence": 105, "arrival": {"time": "1694892546"}, "stopId": "49213"}, {"stopSequence": 106, "arrival": {"time": "1694892830"}, "stopId": "49206"}, {"stopSequence": 107, "arrival": {"time": "1694892941"}, "stopId": "49215"}, {"stopSequence": 108, "arrival": {"time": "1694893044"}, "stopId": "38041"}, {"stopSequence": 109, "arrival": {"time": "1694893100"}, "stopId": "38042"}, {"stopSequence": 110, "arrival": {"time": "1694893160"}, "stopId": "38043"}, {"stopSequence": 111, "arrival": {"time": "1694893246"}, "stopId": "38044"}, {"stopSequence": 112, "arrival": {"time": "1694893319"}, "stopId": "38045"}, {"stopSequence": 113, "arrival": {"time": "1694893446"}, "stopId": "49247"}, {"stopSequence": 114, "arrival": {"time": "1694893485"}, "stopId": "49222"}, {"stopSequence": 115, "arrival": {"time": "1694893501"}, "stopId": "49223"}, {"stopSequence": 116, "arrival": {"time": "1694893535"}, "stopId": "38049"}, {"stopSequence": 117, "arrival": {"time": "1694893560"}, "stopId": "49224"}, {"stopSequence": 118, "arrival": {"time": "1694893601"}, "stopId": "49225"}, {"stopSequence": 119, "arrival": {"time": "1694893649"}, "stopId": "49226"}, {"stopSequence": 120, "arrival": {"time": "1694893702"}, "stopId": "49227"}, {"stopSequence": 121, "arrival": {"time": "1694893764"}, "stopId": "49229"}, {"stopSequence": 122, "arrival": {"time": "1694893797"}, "stopId": "49228"}, {"stopSequence": 123, "arrival": {"time": "1694893871"}, "stopId": "49230"}, {"stopSequence": 124, "arrival": {"time": "1694893964"}, "stopId": "49235"}, {"stopSequence": 125, "arrival": {"time": "1694894362"}, "stopId": "49233"}, {"stopSequence": 126, "arrival": {"time": "1694895052"}, "stopId": "40343"}, {"stopSequence": 127, "arrival": {"time": "1694895238"}, "stopId": "49251"}, {"stopSequence": 128, "arrival": {"time": "1694895289"}, "stopId": "49242"}, {"stopSequence": 129, "arrival": {"time": "1694895433"}, "stopId": "38054"}], "vehicle": {"licensePlate": "RTPX58"}, "timestamp": "1694889038"}, "vehicle": {"trip": {"tripId": "25749-701ff27f-2", "startTime": "05:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "731", "directionId": 1}, "position": {"latitude": -36.880302, "longitude": -73.038025, "bearing": 175.0, "odometer": 0.0, "speed": 0.2777778}, "timestamp": "1694889038", "vehicle": {"licensePlate": "RTPX58"}}}, {"id": "efc9eb12-dce1-4523-b7d0-51b00c084673", "tripUpdate": {"trip": {"tripId": "25853-701ff27f-2", "startTime": "14:46:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "732", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 51, "arrival": {"time": "1694889126"}, "stopId": "42298"}, {"stopSequence": 52, "arrival": {"time": "1694889193"}, "stopId": "42299"}, {"stopSequence": 53, "arrival": {"time": "1694889237"}, "stopId": "49295"}, {"stopSequence": 54, "arrival": {"time": "1694889361"}, "stopId": "49296"}, {"stopSequence": 55, "arrival": {"time": "1694889449"}, "stopId": "49297"}, {"stopSequence": 56, "arrival": {"time": "1694889485"}, "stopId": "49298"}, {"stopSequence": 57, "arrival": {"time": "1694889554"}, "stopId": "49299"}, {"stopSequence": 58, "arrival": {"time": "1694889596"}, "stopId": "49300"}, {"stopSequence": 59, "arrival": {"time": "1694889674"}, "stopId": "49301"}, {"stopSequence": 60, "arrival": {"time": "1694889745"}, "stopId": "49302"}, {"stopSequence": 61, "arrival": {"time": "1694889789"}, "stopId": "49303"}, {"stopSequence": 62, "arrival": {"time": "1694889840"}, "stopId": "49304"}, {"stopSequence": 63, "arrival": {"time": "1694889922"}, "stopId": "49306"}, {"stopSequence": 64, "arrival": {"time": "1694889961"}, "stopId": "49307"}, {"stopSequence": 65, "arrival": {"time": "1694889984"}, "stopId": "49308"}, {"stopSequence": 66, "arrival": {"time": "1694890008"}, "stopId": "49309"}, {"stopSequence": 67, "arrival": {"time": "1694890035"}, "stopId": "42315"}, {"stopSequence": 68, "arrival": {"time": "1694890057"}, "stopId": "42316"}, {"stopSequence": 69, "arrival": {"time": "1694890107"}, "stopId": "42317"}, {"stopSequence": 70, "arrival": {"time": "1694890157"}, "stopId": "42318"}, {"stopSequence": 71, "arrival": {"time": "1694890227"}, "stopId": "8606396"}, {"stopSequence": 72, "arrival": {"time": "1694890298"}, "stopId": "38514"}, {"stopSequence": 73, "arrival": {"time": "1694890336"}, "stopId": "38516"}, {"stopSequence": 74, "arrival": {"time": "1694890394"}, "stopId": "38518"}, {"stopSequence": 75, "arrival": {"time": "1694890493"}, "stopId": "38520"}, {"stopSequence": 76, "arrival": {"time": "1694890533"}, "stopId": "38521"}, {"stopSequence": 77, "arrival": {"time": "1694890582"}, "stopId": "38522"}, {"stopSequence": 78, "arrival": {"time": "1694890632"}, "stopId": "38523"}, {"stopSequence": 79, "arrival": {"time": "1694890685"}, "stopId": "38524"}, {"stopSequence": 80, "arrival": {"time": "1694890735"}, "stopId": "38525"}, {"stopSequence": 81, "arrival": {"time": "1694890788"}, "stopId": "38526"}, {"stopSequence": 82, "arrival": {"time": "1694890838"}, "stopId": "38527"}, {"stopSequence": 83, "arrival": {"time": "1694890928"}, "stopId": "38528"}, {"stopSequence": 84, "arrival": {"time": "1694891055"}, "stopId": "38529"}, {"stopSequence": 85, "arrival": {"time": "1694891279"}, "stopId": "38530"}, {"stopSequence": 86, "arrival": {"time": "1694891293"}, "stopId": "16005209"}, {"stopSequence": 87, "arrival": {"time": "1694891565"}, "stopId": "38531"}, {"stopSequence": 88, "arrival": {"time": "1694891630"}, "stopId": "8921285"}, {"stopSequence": 89, "arrival": {"time": "1694891766"}, "stopId": "38532"}, {"stopSequence": 90, "arrival": {"time": "1694891832"}, "stopId": "38533"}, {"stopSequence": 91, "arrival": {"time": "1694891901"}, "stopId": "38534"}, {"stopSequence": 92, "arrival": {"time": "1694891964"}, "stopId": "38535"}, {"stopSequence": 93, "arrival": {"time": "1694892049"}, "stopId": "38536"}, {"stopSequence": 94, "arrival": {"time": "1694892098"}, "stopId": "4838437"}, {"stopSequence": 95, "arrival": {"time": "1694892171"}, "stopId": "45085"}, {"stopSequence": 96, "arrival": {"time": "1694892280"}, "stopId": "45086"}, {"stopSequence": 97, "arrival": {"time": "1694892353"}, "stopId": "38539"}, {"stopSequence": 98, "arrival": {"time": "1694892448"}, "stopId": "38540"}, {"stopSequence": 99, "arrival": {"time": "1694892566"}, "stopId": "38544"}, {"stopSequence": 100, "arrival": {"time": "1694892672"}, "stopId": "38545"}, {"stopSequence": 101, "arrival": {"time": "1694892814"}, "stopId": "38546"}, {"stopSequence": 102, "arrival": {"time": "1694892920"}, "stopId": "38547"}, {"stopSequence": 103, "arrival": {"time": "1694893020"}, "stopId": "38548"}, {"stopSequence": 104, "arrival": {"time": "1694893136"}, "stopId": "38549"}, {"stopSequence": 105, "arrival": {"time": "1694893235"}, "stopId": "38550"}, {"stopSequence": 106, "arrival": {"time": "1694893414"}, "stopId": "38551"}, {"stopSequence": 107, "arrival": {"time": "1694893580"}, "stopId": "38552"}, {"stopSequence": 108, "arrival": {"time": "1694893748"}, "stopId": "49359"}, {"stopSequence": 109, "arrival": {"time": "1694893852"}, "stopId": "49360"}, {"stopSequence": 110, "arrival": {"time": "1694894098"}, "stopId": "49361"}, {"stopSequence": 111, "arrival": {"time": "1694894161"}, "stopId": "49362"}, {"stopSequence": 112, "arrival": {"time": "1694894271"}, "stopId": "49363"}, {"stopSequence": 113, "arrival": {"time": "1694894389"}, "stopId": "49364"}, {"stopSequence": 114, "arrival": {"time": "1694894479"}, "stopId": "49365"}, {"stopSequence": 115, "arrival": {"time": "1694894656"}, "stopId": "38560"}, {"stopSequence": 116, "arrival": {"time": "1694894758"}, "stopId": "42857"}, {"stopSequence": 117, "arrival": {"time": "1694894842"}, "stopId": "38562"}, {"stopSequence": 118, "arrival": {"time": "1694894938"}, "stopId": "38563"}, {"stopSequence": 119, "arrival": {"time": "1694895076"}, "stopId": "42854"}, {"stopSequence": 120, "arrival": {"time": "1694895342"}, "stopId": "38565"}, {"stopSequence": 121, "arrival": {"time": "1694895503"}, "stopId": "40932"}, {"stopSequence": 122, "arrival": {"time": "1694895739"}, "stopId": "38567"}, {"stopSequence": 123, "arrival": {"time": "1694895900"}, "stopId": "38568"}, {"stopSequence": 124, "arrival": {"time": "1694896001"}, "stopId": "38569"}, {"stopSequence": 125, "arrival": {"time": "1694896155"}, "stopId": "38570"}, {"stopSequence": 126, "arrival": {"time": "1694896359"}, "stopId": "38571"}, {"stopSequence": 127, "arrival": {"time": "1694896577"}, "stopId": "38572"}], "vehicle": {"licensePlate": "DDKB35"}, "timestamp": "1694889035"}, "vehicle": {"trip": {"tripId": "25853-701ff27f-2", "startTime": "14:46:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "732", "directionId": 0}, "position": {"latitude": -36.874016, "longitude": -73.04084, "bearing": 334.0, "odometer": 0.0, "speed": 21.38889}, "timestamp": "1694889035", "vehicle": {"licensePlate": "DDKB35"}}}, {"id": "bddd4675-e59c-4640-b50a-dd37071ebbb8", "tripUpdate": {"trip": {"tripId": "25855-701ff27f-2", "startTime": "15:16:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "732", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 21, "arrival": {"time": "1694888990"}, "stopId": "49263"}, {"stopSequence": 22, "arrival": {"time": "1694889773"}, "stopId": "34549"}, {"stopSequence": 23, "arrival": {"time": "1694890103"}, "stopId": "49264"}, {"stopSequence": 24, "arrival": {"time": "1694890109"}, "stopId": "49265"}, {"stopSequence": 25, "arrival": {"time": "1694890144"}, "stopId": "49266"}, {"stopSequence": 26, "arrival": {"time": "1694890197"}, "stopId": "49267"}, {"stopSequence": 27, "arrival": {"time": "1694890269"}, "stopId": "42274"}, {"stopSequence": 28, "arrival": {"time": "1694890345"}, "stopId": "42275"}, {"stopSequence": 29, "arrival": {"time": "1694890385"}, "stopId": "42276"}, {"stopSequence": 30, "arrival": {"time": "1694890467"}, "stopId": "42277"}, {"stopSequence": 31, "arrival": {"time": "1694890548"}, "stopId": "42278"}, {"stopSequence": 32, "arrival": {"time": "1694890589"}, "stopId": "42279"}, {"stopSequence": 33, "arrival": {"time": "1694890672"}, "stopId": "42280"}, {"stopSequence": 34, "arrival": {"time": "1694890715"}, "stopId": "42281"}, {"stopSequence": 35, "arrival": {"time": "1694890792"}, "stopId": "42282"}, {"stopSequence": 36, "arrival": {"time": "1694890850"}, "stopId": "42283"}, {"stopSequence": 37, "arrival": {"time": "1694890918"}, "stopId": "49279"}, {"stopSequence": 38, "arrival": {"time": "1694891001"}, "stopId": "42285"}, {"stopSequence": 39, "arrival": {"time": "1694891095"}, "stopId": "42286"}, {"stopSequence": 40, "arrival": {"time": "1694891114"}, "stopId": "42287"}, {"stopSequence": 41, "arrival": {"time": "1694891175"}, "stopId": "42288"}, {"stopSequence": 42, "arrival": {"time": "1694891214"}, "stopId": "42289"}, {"stopSequence": 43, "arrival": {"time": "1694891307"}, "stopId": "42290"}, {"stopSequence": 44, "arrival": {"time": "1694891354"}, "stopId": "42291"}, {"stopSequence": 45, "arrival": {"time": "1694891464"}, "stopId": "42292"}, {"stopSequence": 46, "arrival": {"time": "1694891547"}, "stopId": "42293"}, {"stopSequence": 47, "arrival": {"time": "1694891765"}, "stopId": "42294"}, {"stopSequence": 48, "arrival": {"time": "1694891930"}, "stopId": "42295"}, {"stopSequence": 49, "arrival": {"time": "1694892082"}, "stopId": "42296"}, {"stopSequence": 50, "arrival": {"time": "1694892257"}, "stopId": "42297"}, {"stopSequence": 51, "arrival": {"time": "1694892397"}, "stopId": "42298"}, {"stopSequence": 52, "arrival": {"time": "1694892492"}, "stopId": "42299"}, {"stopSequence": 53, "arrival": {"time": "1694892557"}, "stopId": "49295"}, {"stopSequence": 54, "arrival": {"time": "1694892747"}, "stopId": "49296"}, {"stopSequence": 55, "arrival": {"time": "1694892892"}, "stopId": "49297"}, {"stopSequence": 56, "arrival": {"time": "1694892951"}, "stopId": "49298"}, {"stopSequence": 57, "arrival": {"time": "1694893072"}, "stopId": "49299"}, {"stopSequence": 58, "arrival": {"time": "1694893148"}, "stopId": "49300"}, {"stopSequence": 59, "arrival": {"time": "1694893294"}, "stopId": "49301"}, {"stopSequence": 60, "arrival": {"time": "1694893433"}, "stopId": "49302"}, {"stopSequence": 61, "arrival": {"time": "1694893522"}, "stopId": "49303"}, {"stopSequence": 62, "arrival": {"time": "1694893626"}, "stopId": "49304"}, {"stopSequence": 63, "arrival": {"time": "1694893804"}, "stopId": "49306"}, {"stopSequence": 64, "arrival": {"time": "1694893891"}, "stopId": "49307"}, {"stopSequence": 65, "arrival": {"time": "1694893944"}, "stopId": "49308"}, {"stopSequence": 66, "arrival": {"time": "1694893999"}, "stopId": "49309"}, {"stopSequence": 67, "arrival": {"time": "1694894063"}, "stopId": "42315"}, {"stopSequence": 68, "arrival": {"time": "1694894117"}, "stopId": "42316"}, {"stopSequence": 69, "arrival": {"time": "1694894238"}, "stopId": "42317"}, {"stopSequence": 70, "arrival": {"time": "1694894365"}, "stopId": "42318"}, {"stopSequence": 71, "arrival": {"time": "1694894548"}, "stopId": "8606396"}, {"stopSequence": 72, "arrival": {"time": "1694894741"}, "stopId": "38514"}, {"stopSequence": 73, "arrival": {"time": "1694894848"}, "stopId": "38516"}, {"stopSequence": 74, "arrival": {"time": "1694895017"}, "stopId": "38518"}, {"stopSequence": 75, "arrival": {"time": "1694895322"}, "stopId": "38520"}, {"stopSequence": 76, "arrival": {"time": "1694895451"}, "stopId": "38521"}, {"stopSequence": 77, "arrival": {"time": "1694895613"}, "stopId": "38522"}, {"stopSequence": 78, "arrival": {"time": "1694895785"}, "stopId": "38523"}, {"stopSequence": 79, "arrival": {"time": "1694895972"}, "stopId": "38524"}, {"stopSequence": 80, "arrival": {"time": "1694896153"}, "stopId": "38525"}, {"stopSequence": 81, "arrival": {"time": "1694896355"}, "stopId": "38526"}, {"stopSequence": 82, "arrival": {"time": "1694896549"}, "stopId": "38527"}, {"stopSequence": 83, "arrival": {"time": "1694896923"}, "stopId": "38528"}, {"stopSequence": 84, "arrival": {"time": "1694897488"}, "stopId": "38529"}, {"stopSequence": 85, "arrival": {"time": "1694898621"}, "stopId": "38530"}, {"stopSequence": 86, "arrival": {"time": "1694898701"}, "stopId": "16005209"}, {"stopSequence": 87, "arrival": {"time": "1694900386"}, "stopId": "38531"}, {"stopSequence": 88, "arrival": {"time": "1694900851"}, "stopId": "8921285"}, {"stopSequence": 89, "arrival": {"time": "1694901905"}, "stopId": "38532"}, {"stopSequence": 90, "arrival": {"time": "1694902471"}, "stopId": "38533"}, {"stopSequence": 91, "arrival": {"time": "1694903094"}, "stopId": "38534"}, {"stopSequence": 92, "arrival": {"time": "1694903695"}, "stopId": "38535"}, {"stopSequence": 93, "arrival": {"time": "1694904583"}, "stopId": "38536"}, {"stopSequence": 94, "arrival": {"time": "1694905117"}, "stopId": "4838437"}, {"stopSequence": 95, "arrival": {"time": "1694905986"}, "stopId": "45085"}, {"stopSequence": 96, "arrival": {"time": "1694907413"}, "stopId": "45086"}, {"stopSequence": 97, "arrival": {"time": "1694908464"}, "stopId": "38539"}, {"stopSequence": 98, "arrival": {"time": "1694909989"}, "stopId": "38540"}, {"stopSequence": 99, "arrival": {"time": "1694912136"}, "stopId": "38544"}, {"stopSequence": 100, "arrival": {"time": "1694914398"}, "stopId": "38545"}, {"stopSequence": 101, "arrival": {"time": "1694918020"}, "stopId": "38546"}, {"stopSequence": 102, "arrival": {"time": "1694921325"}, "stopId": "38547"}, {"stopSequence": 103, "arrival": {"time": "1694925067"}, "stopId": "38548"}, {"stopSequence": 104, "arrival": {"time": "1694930400"}, "stopId": "38549"}, {"stopSequence": 105, "arrival": {"time": "1694936220"}, "stopId": "38550"}, {"stopSequence": 106, "arrival": {"time": "1694951116"}, "stopId": "38551"}, {"stopSequence": 107, "arrival": {"time": "1694974855"}, "stopId": "38552"}, {"stopSequence": 108, "arrival": {"time": "1695024697"}, "stopId": "49359"}, {"stopSequence": 109, "arrival": {"time": "1695096621"}, "stopId": "49360"}], "vehicle": {"licensePlate": "FPZB41"}, "timestamp": "1694888982"}, "vehicle": {"trip": {"tripId": "25855-701ff27f-2", "startTime": "15:16:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "732", "directionId": 0}, "position": {"latitude": -36.964268, "longitude": -72.955124, "bearing": 264.0, "odometer": 0.0, "speed": 8.611111}, "timestamp": "1694888982", "vehicle": {"licensePlate": "FPZB41"}}}, {"id": "76cc0109-4f88-4f20-91cf-94ad56951ff4", "tripUpdate": {"trip": {"tripId": "25852-701ff27f-2", "startTime": "14:31:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "732", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 85, "arrival": {"time": "1694889224"}, "stopId": "38530"}, {"stopSequence": 86, "arrival": {"time": "1694889237"}, "stopId": "16005209"}, {"stopSequence": 87, "arrival": {"time": "1694889478"}, "stopId": "38531"}, {"stopSequence": 88, "arrival": {"time": "1694889533"}, "stopId": "8921285"}, {"stopSequence": 89, "arrival": {"time": "1694889643"}, "stopId": "38532"}, {"stopSequence": 90, "arrival": {"time": "1694889696"}, "stopId": "38533"}, {"stopSequence": 91, "arrival": {"time": "1694889749"}, "stopId": "38534"}, {"stopSequence": 92, "arrival": {"time": "1694889796"}, "stopId": "38535"}, {"stopSequence": 93, "arrival": {"time": "1694889859"}, "stopId": "38536"}, {"stopSequence": 94, "arrival": {"time": "1694889894"}, "stopId": "4838437"}, {"stopSequence": 95, "arrival": {"time": "1694889947"}, "stopId": "45085"}, {"stopSequence": 96, "arrival": {"time": "1694890023"}, "stopId": "45086"}, {"stopSequence": 97, "arrival": {"time": "1694890072"}, "stopId": "38539"}, {"stopSequence": 98, "arrival": {"time": "1694890136"}, "stopId": "38540"}, {"stopSequence": 99, "arrival": {"time": "1694890212"}, "stopId": "38544"}, {"stopSequence": 100, "arrival": {"time": "1694890279"}, "stopId": "38545"}, {"stopSequence": 101, "arrival": {"time": "1694890365"}, "stopId": "38546"}, {"stopSequence": 102, "arrival": {"time": "1694890428"}, "stopId": "38547"}, {"stopSequence": 103, "arrival": {"time": "1694890487"}, "stopId": "38548"}, {"stopSequence": 104, "arrival": {"time": "1694890552"}, "stopId": "38549"}, {"stopSequence": 105, "arrival": {"time": "1694890608"}, "stopId": "38550"}, {"stopSequence": 106, "arrival": {"time": "1694890704"}, "stopId": "38551"}, {"stopSequence": 107, "arrival": {"time": "1694890790"}, "stopId": "38552"}, {"stopSequence": 108, "arrival": {"time": "1694890874"}, "stopId": "49359"}, {"stopSequence": 109, "arrival": {"time": "1694890926"}, "stopId": "49360"}, {"stopSequence": 110, "arrival": {"time": "1694891042"}, "stopId": "49361"}, {"stopSequence": 111, "arrival": {"time": "1694891071"}, "stopId": "49362"}, {"stopSequence": 112, "arrival": {"time": "1694891122"}, "stopId": "49363"}, {"stopSequence": 113, "arrival": {"time": "1694891174"}, "stopId": "49364"}, {"stopSequence": 114, "arrival": {"time": "1694891214"}, "stopId": "49365"}, {"stopSequence": 115, "arrival": {"time": "1694891289"}, "stopId": "38560"}, {"stopSequence": 116, "arrival": {"time": "1694891332"}, "stopId": "42857"}, {"stopSequence": 117, "arrival": {"time": "1694891367"}, "stopId": "38562"}, {"stopSequence": 118, "arrival": {"time": "1694891406"}, "stopId": "38563"}, {"stopSequence": 119, "arrival": {"time": "1694891461"}, "stopId": "42854"}, {"stopSequence": 120, "arrival": {"time": "1694891564"}, "stopId": "38565"}, {"stopSequence": 121, "arrival": {"time": "1694891625"}, "stopId": "40932"}, {"stopSequence": 122, "arrival": {"time": "1694891711"}, "stopId": "38567"}, {"stopSequence": 123, "arrival": {"time": "1694891768"}, "stopId": "38568"}, {"stopSequence": 124, "arrival": {"time": "1694891803"}, "stopId": "38569"}, {"stopSequence": 125, "arrival": {"time": "1694891856"}, "stopId": "38570"}, {"stopSequence": 126, "arrival": {"time": "1694891924"}, "stopId": "38571"}, {"stopSequence": 127, "arrival": {"time": "1694891995"}, "stopId": "38572"}], "vehicle": {"licensePlate": "GSZY28"}, "timestamp": "1694889038"}, "vehicle": {"trip": {"tripId": "25852-701ff27f-2", "startTime": "14:31:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "732", "directionId": 0}, "position": {"latitude": -36.79699, "longitude": -73.062965, "bearing": 299.0, "odometer": 0.0, "speed": 20.0}, "timestamp": "1694889038", "vehicle": {"licensePlate": "GSZY28"}}}, {"id": "3fabe906-2f83-40b6-8e3c-7ad603de86ad", "tripUpdate": {"trip": {"tripId": "25851-701ff27f-2", "startTime": "14:16:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "732", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 102, "arrival": {"time": "1694889040"}, "stopId": "38547"}, {"stopSequence": 103, "arrival": {"time": "1694889103"}, "stopId": "38548"}, {"stopSequence": 104, "arrival": {"time": "1694889172"}, "stopId": "38549"}, {"stopSequence": 105, "arrival": {"time": "1694889230"}, "stopId": "38550"}, {"stopSequence": 106, "arrival": {"time": "1694889328"}, "stopId": "38551"}, {"stopSequence": 107, "arrival": {"time": "1694889414"}, "stopId": "38552"}, {"stopSequence": 108, "arrival": {"time": "1694889496"}, "stopId": "49359"}, {"stopSequence": 109, "arrival": {"time": "1694889545"}, "stopId": "49360"}, {"stopSequence": 110, "arrival": {"time": "1694889654"}, "stopId": "49361"}, {"stopSequence": 111, "arrival": {"time": "1694889681"}, "stopId": "49362"}, {"stopSequence": 112, "arrival": {"time": "1694889727"}, "stopId": "49363"}, {"stopSequence": 113, "arrival": {"time": "1694889774"}, "stopId": "49364"}, {"stopSequence": 114, "arrival": {"time": "1694889809"}, "stopId": "49365"}, {"stopSequence": 115, "arrival": {"time": "1694889876"}, "stopId": "38560"}, {"stopSequence": 116, "arrival": {"time": "1694889913"}, "stopId": "42857"}, {"stopSequence": 117, "arrival": {"time": "1694889943"}, "stopId": "38562"}, {"stopSequence": 118, "arrival": {"time": "1694889976"}, "stopId": "38563"}, {"stopSequence": 119, "arrival": {"time": "1694890023"}, "stopId": "42854"}, {"stopSequence": 120, "arrival": {"time": "1694890108"}, "stopId": "38565"}, {"stopSequence": 121, "arrival": {"time": "1694890158"}, "stopId": "40932"}, {"stopSequence": 122, "arrival": {"time": "1694890227"}, "stopId": "38567"}, {"stopSequence": 123, "arrival": {"time": "1694890272"}, "stopId": "38568"}, {"stopSequence": 124, "arrival": {"time": "1694890300"}, "stopId": "38569"}, {"stopSequence": 125, "arrival": {"time": "1694890341"}, "stopId": "38570"}, {"stopSequence": 126, "arrival": {"time": "1694890393"}, "stopId": "38571"}, {"stopSequence": 127, "arrival": {"time": "1694890447"}, "stopId": "38572"}], "vehicle": {"licensePlate": "JGJV64"}, "timestamp": "1694889003"}, "vehicle": {"trip": {"tripId": "25851-701ff27f-2", "startTime": "14:16:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "732", "directionId": 0}, "position": {"latitude": -36.742455, "longitude": -73.09796, "bearing": 336.0, "odometer": 0.0, "speed": 11.111111}, "timestamp": "1694889003", "vehicle": {"licensePlate": "JGJV64"}}}, {"id": "33c73830-3671-4437-b3e9-6952a02f11ae", "tripUpdate": {"trip": {"tripId": "25856-701ff27f-2", "startTime": "15:31:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "732", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 3, "arrival": {"time": "1694888988"}, "stopId": "38094"}, {"stopSequence": 4, "arrival": {"time": "1694889036"}, "stopId": "49252"}, {"stopSequence": 5, "arrival": {"time": "1694889144"}, "stopId": "38096"}, {"stopSequence": 6, "arrival": {"time": "1694889243"}, "stopId": "49248"}, {"stopSequence": 7, "arrival": {"time": "1694889284"}, "stopId": "49254"}, {"stopSequence": 8, "arrival": {"time": "1694889317"}, "stopId": "49255"}, {"stopSequence": 9, "arrival": {"time": "1694889374"}, "stopId": "49256"}, {"stopSequence": 10, "arrival": {"time": "1694889512"}, "stopId": "49216"}, {"stopSequence": 11, "arrival": {"time": "1694889551"}, "stopId": "49217"}, {"stopSequence": 12, "arrival": {"time": "1694889574"}, "stopId": "49214"}, {"stopSequence": 13, "arrival": {"time": "1694889605"}, "stopId": "49249"}, {"stopSequence": 14, "arrival": {"time": "1694889622"}, "stopId": "49218"}, {"stopSequence": 15, "arrival": {"time": "1694889645"}, "stopId": "49257"}, {"stopSequence": 16, "arrival": {"time": "1694889763"}, "stopId": "49258"}, {"stopSequence": 17, "arrival": {"time": "1694889819"}, "stopId": "49259"}, {"stopSequence": 18, "arrival": {"time": "1694889827"}, "stopId": "49260"}, {"stopSequence": 19, "arrival": {"time": "1694889991"}, "stopId": "49261"}, {"stopSequence": 20, "arrival": {"time": "1694890025"}, "stopId": "49262"}, {"stopSequence": 21, "arrival": {"time": "1694890046"}, "stopId": "49263"}, {"stopSequence": 22, "arrival": {"time": "1694890813"}, "stopId": "34549"}, {"stopSequence": 23, "arrival": {"time": "1694891175"}, "stopId": "49264"}, {"stopSequence": 24, "arrival": {"time": "1694891182"}, "stopId": "49265"}, {"stopSequence": 25, "arrival": {"time": "1694891222"}, "stopId": "49266"}, {"stopSequence": 26, "arrival": {"time": "1694891283"}, "stopId": "49267"}, {"stopSequence": 27, "arrival": {"time": "1694891367"}, "stopId": "42274"}, {"stopSequence": 28, "arrival": {"time": "1694891456"}, "stopId": "42275"}, {"stopSequence": 29, "arrival": {"time": "1694891504"}, "stopId": "42276"}, {"stopSequence": 30, "arrival": {"time": "1694891603"}, "stopId": "42277"}, {"stopSequence": 31, "arrival": {"time": "1694891702"}, "stopId": "42278"}, {"stopSequence": 32, "arrival": {"time": "1694891753"}, "stopId": "42279"}, {"stopSequence": 33, "arrival": {"time": "1694891857"}, "stopId": "42280"}, {"stopSequence": 34, "arrival": {"time": "1694891912"}, "stopId": "42281"}, {"stopSequence": 35, "arrival": {"time": "1694892010"}, "stopId": "42282"}, {"stopSequence": 36, "arrival": {"time": "1694892085"}, "stopId": "42283"}, {"stopSequence": 37, "arrival": {"time": "1694892175"}, "stopId": "49279"}, {"stopSequence": 38, "arrival": {"time": "1694892286"}, "stopId": "42285"}, {"stopSequence": 39, "arrival": {"time": "1694892414"}, "stopId": "42286"}, {"stopSequence": 40, "arrival": {"time": "1694892438"}, "stopId": "42287"}, {"stopSequence": 41, "arrival": {"time": "1694892523"}, "stopId": "42288"}, {"stopSequence": 42, "arrival": {"time": "1694892578"}, "stopId": "42289"}, {"stopSequence": 43, "arrival": {"time": "1694892707"}, "stopId": "42290"}, {"stopSequence": 44, "arrival": {"time": "1694892774"}, "stopId": "42291"}, {"stopSequence": 45, "arrival": {"time": "1694892933"}, "stopId": "42292"}, {"stopSequence": 46, "arrival": {"time": "1694893055"}, "stopId": "42293"}, {"stopSequence": 47, "arrival": {"time": "1694893382"}, "stopId": "42294"}, {"stopSequence": 48, "arrival": {"time": "1694893638"}, "stopId": "42295"}, {"stopSequence": 49, "arrival": {"time": "1694893880"}, "stopId": "42296"}, {"stopSequence": 50, "arrival": {"time": "1694894166"}, "stopId": "42297"}, {"stopSequence": 51, "arrival": {"time": "1694894400"}, "stopId": "42298"}, {"stopSequence": 52, "arrival": {"time": "1694894563"}, "stopId": "42299"}, {"stopSequence": 53, "arrival": {"time": "1694894675"}, "stopId": "49295"}, {"stopSequence": 54, "arrival": {"time": "1694895012"}, "stopId": "49296"}, {"stopSequence": 55, "arrival": {"time": "1694895274"}, "stopId": "49297"}, {"stopSequence": 56, "arrival": {"time": "1694895383"}, "stopId": "49298"}, {"stopSequence": 57, "arrival": {"time": "1694895609"}, "stopId": "49299"}, {"stopSequence": 58, "arrival": {"time": "1694895755"}, "stopId": "49300"}, {"stopSequence": 59, "arrival": {"time": "1694896036"}, "stopId": "49301"}, {"stopSequence": 60, "arrival": {"time": "1694896311"}, "stopId": "49302"}, {"stopSequence": 61, "arrival": {"time": "1694896490"}, "stopId": "49303"}, {"stopSequence": 62, "arrival": {"time": "1694896704"}, "stopId": "49304"}, {"stopSequence": 63, "arrival": {"time": "1694897077"}, "stopId": "49306"}, {"stopSequence": 64, "arrival": {"time": "1694897264"}, "stopId": "49307"}, {"stopSequence": 65, "arrival": {"time": "1694897380"}, "stopId": "49308"}, {"stopSequence": 66, "arrival": {"time": "1694897499"}, "stopId": "49309"}, {"stopSequence": 67, "arrival": {"time": "1694897640"}, "stopId": "42315"}, {"stopSequence": 68, "arrival": {"time": "1694897760"}, "stopId": "42316"}, {"stopSequence": 69, "arrival": {"time": "1694898034"}, "stopId": "42317"}, {"stopSequence": 70, "arrival": {"time": "1694898328"}, "stopId": "42318"}, {"stopSequence": 71, "arrival": {"time": "1694898763"}, "stopId": "8606396"}, {"stopSequence": 72, "arrival": {"time": "1694899236"}, "stopId": "38514"}, {"stopSequence": 73, "arrival": {"time": "1694899504"}, "stopId": "38516"}, {"stopSequence": 74, "arrival": {"time": "1694899942"}, "stopId": "38518"}, {"stopSequence": 75, "arrival": {"time": "1694900761"}, "stopId": "38520"}, {"stopSequence": 76, "arrival": {"time": "1694901121"}, "stopId": "38521"}, {"stopSequence": 77, "arrival": {"time": "1694901587"}, "stopId": "38522"}, {"stopSequence": 78, "arrival": {"time": "1694902094"}, "stopId": "38523"}, {"stopSequence": 79, "arrival": {"time": "1694902667"}, "stopId": "38524"}, {"stopSequence": 80, "arrival": {"time": "1694903244"}, "stopId": "38525"}, {"stopSequence": 81, "arrival": {"time": "1694903907"}, "stopId": "38526"}, {"stopSequence": 82, "arrival": {"time": "1694904573"}, "stopId": "38527"}, {"stopSequence": 83, "arrival": {"time": "1694905929"}, "stopId": "38528"}, {"stopSequence": 84, "arrival": {"time": "1694908195"}, "stopId": "38529"}, {"stopSequence": 85, "arrival": {"time": "1694913708"}, "stopId": "38530"}, {"stopSequence": 86, "arrival": {"time": "1694914158"}, "stopId": "16005209"}, {"stopSequence": 87, "arrival": {"time": "1694926346"}, "stopId": "38531"}, {"stopSequence": 88, "arrival": {"time": "1694930978"}, "stopId": "8921285"}, {"stopSequence": 89, "arrival": {"time": "1694944906"}, "stopId": "38532"}, {"stopSequence": 90, "arrival": {"time": "1694955354"}, "stopId": "38533"}, {"stopSequence": 91, "arrival": {"time": "1694970815"}, "stopId": "38534"}, {"stopSequence": 92, "arrival": {"time": "1694992080"}, "stopId": "38535"}, {"stopSequence": 93, "arrival": {"time": "1695047191"}, "stopId": "38536"}, {"stopSequence": 94, "arrival": {"time": "1695113021"}, "stopId": "4838437"}, {"stopSequence": 95, "arrival": {"time": "1695482151"}, "stopId": "45085"}], "vehicle": {"licensePlate": "JZGR12"}, "timestamp": "1694888988"}, "vehicle": {"trip": {"tripId": "25856-701ff27f-2", "startTime": "15:31:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "732", "directionId": 0}, "position": {"latitude": -36.968277, "longitude": -72.92809, "bearing": 336.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888988", "vehicle": {"licensePlate": "JZGR12"}}}, {"id": "396c0def-1442-42f0-9041-b74d18c19897", "tripUpdate": {"trip": {"tripId": "25790-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "733", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 30, "arrival": {"time": "1694889083"}, "stopId": "38735"}, {"stopSequence": 31, "arrival": {"time": "1694889132"}, "stopId": "42270"}, {"stopSequence": 32, "arrival": {"time": "1694889188"}, "stopId": "42271"}, {"stopSequence": 33, "arrival": {"time": "1694889255"}, "stopId": "4838438"}, {"stopSequence": 34, "arrival": {"time": "1694889407"}, "stopId": "44896"}, {"stopSequence": 35, "arrival": {"time": "1694889455"}, "stopId": "44897"}, {"stopSequence": 36, "arrival": {"time": "1694889529"}, "stopId": "44898"}, {"stopSequence": 37, "arrival": {"time": "1694889939"}, "stopId": "16005188"}, {"stopSequence": 38, "arrival": {"time": "1694890177"}, "stopId": "40995"}, {"stopSequence": 39, "arrival": {"time": "1694890255"}, "stopId": "40996"}, {"stopSequence": 40, "arrival": {"time": "1694890358"}, "stopId": "40997"}, {"stopSequence": 41, "arrival": {"time": "1694890416"}, "stopId": "39614"}, {"stopSequence": 42, "arrival": {"time": "1694890463"}, "stopId": "39615"}, {"stopSequence": 43, "arrival": {"time": "1694890512"}, "stopId": "39616"}, {"stopSequence": 44, "arrival": {"time": "1694890566"}, "stopId": "39617"}, {"stopSequence": 45, "arrival": {"time": "1694890623"}, "stopId": "39618"}, {"stopSequence": 46, "arrival": {"time": "1694890669"}, "stopId": "39619"}, {"stopSequence": 47, "arrival": {"time": "1694890708"}, "stopId": "39620"}, {"stopSequence": 48, "arrival": {"time": "1694890779"}, "stopId": "39621"}, {"stopSequence": 49, "arrival": {"time": "1694890829"}, "stopId": "38281"}, {"stopSequence": 50, "arrival": {"time": "1694890886"}, "stopId": "37506"}, {"stopSequence": 51, "arrival": {"time": "1694890928"}, "stopId": "45068"}, {"stopSequence": 52, "arrival": {"time": "1694891060"}, "stopId": "37480"}, {"stopSequence": 53, "arrival": {"time": "1694891126"}, "stopId": "37477"}, {"stopSequence": 54, "arrival": {"time": "1694891200"}, "stopId": "40848"}, {"stopSequence": 55, "arrival": {"time": "1694891293"}, "stopId": "2-Apr"}, {"stopSequence": 56, "arrival": {"time": "1694891357"}, "stopId": "39728"}, {"stopSequence": 57, "arrival": {"time": "1694891471"}, "stopId": "39729"}, {"stopSequence": 58, "arrival": {"time": "1694891499"}, "stopId": "39730"}, {"stopSequence": 59, "arrival": {"time": "1694891626"}, "stopId": "42200"}, {"stopSequence": 60, "arrival": {"time": "1694891677"}, "stopId": "42203"}, {"stopSequence": 61, "arrival": {"time": "1694891754"}, "stopId": "42204"}, {"stopSequence": 62, "arrival": {"time": "1694891786"}, "stopId": "42205"}, {"stopSequence": 63, "arrival": {"time": "1694891875"}, "stopId": "42201"}, {"stopSequence": 64, "arrival": {"time": "1694892195"}, "stopId": "42206"}, {"stopSequence": 65, "arrival": {"time": "1694892282"}, "stopId": "42207"}, {"stopSequence": 66, "arrival": {"time": "1694892378"}, "stopId": "42208"}, {"stopSequence": 67, "arrival": {"time": "1694892560"}, "stopId": "42564"}, {"stopSequence": 68, "arrival": {"time": "1694892720"}, "stopId": "42214"}, {"stopSequence": 69, "arrival": {"time": "1694892890"}, "stopId": "42209"}, {"stopSequence": 70, "arrival": {"time": "1694893091"}, "stopId": "42210"}, {"stopSequence": 71, "arrival": {"time": "1694893434"}, "stopId": "42215"}, {"stopSequence": 72, "arrival": {"time": "1694893494"}, "stopId": "42216"}, {"stopSequence": 73, "arrival": {"time": "1694893575"}, "stopId": "42217"}, {"stopSequence": 74, "arrival": {"time": "1694893728"}, "stopId": "42218"}, {"stopSequence": 75, "arrival": {"time": "1694893801"}, "stopId": "42219"}, {"stopSequence": 76, "arrival": {"time": "1694894037"}, "stopId": "42220"}, {"stopSequence": 77, "arrival": {"time": "1694894129"}, "stopId": "42221"}, {"stopSequence": 78, "arrival": {"time": "1694894277"}, "stopId": "42222"}, {"stopSequence": 79, "arrival": {"time": "1694894452"}, "stopId": "42223"}, {"stopSequence": 80, "arrival": {"time": "1694894523"}, "stopId": "42224"}, {"stopSequence": 81, "arrival": {"time": "1694894726"}, "stopId": "42225"}, {"stopSequence": 82, "arrival": {"time": "1694894902"}, "stopId": "42226"}, {"stopSequence": 83, "arrival": {"time": "1694895062"}, "stopId": "42227"}, {"stopSequence": 84, "arrival": {"time": "1694895286"}, "stopId": "42228"}, {"stopSequence": 85, "arrival": {"time": "1694895422"}, "stopId": "42229"}, {"stopSequence": 86, "arrival": {"time": "1694895697"}, "stopId": "42230"}, {"stopSequence": 87, "arrival": {"time": "1694895843"}, "stopId": "42231"}, {"stopSequence": 88, "arrival": {"time": "1694896132"}, "stopId": "42232"}, {"stopSequence": 89, "arrival": {"time": "1694896449"}, "stopId": "42233"}, {"stopSequence": 90, "arrival": {"time": "1694896619"}, "stopId": "42234"}, {"stopSequence": 91, "arrival": {"time": "1694896940"}, "stopId": "42235"}, {"stopSequence": 92, "arrival": {"time": "1694897033"}, "stopId": "42211"}, {"stopSequence": 93, "arrival": {"time": "1694897306"}, "stopId": "49203"}, {"stopSequence": 94, "arrival": {"time": "1694897584"}, "stopId": "49204"}, {"stopSequence": 95, "arrival": {"time": "1694897672"}, "stopId": "42503"}, {"stopSequence": 96, "arrival": {"time": "1694897710"}, "stopId": "34564"}, {"stopSequence": 97, "arrival": {"time": "1694899771"}, "stopId": "34789"}, {"stopSequence": 98, "arrival": {"time": "1694899968"}, "stopId": "49163"}, {"stopSequence": 99, "arrival": {"time": "1694910404"}, "stopId": "49208"}, {"stopSequence": 100, "arrival": {"time": "1694910914"}, "stopId": "49209"}, {"stopSequence": 101, "arrival": {"time": "1694911455"}, "stopId": "49210"}, {"stopSequence": 102, "arrival": {"time": "1694918249"}, "stopId": "49211"}, {"stopSequence": 103, "arrival": {"time": "1694919621"}, "stopId": "49212"}, {"stopSequence": 104, "arrival": {"time": "1694922741"}, "stopId": "49213"}, {"stopSequence": 105, "arrival": {"time": "1694938809"}, "stopId": "49206"}, {"stopSequence": 106, "arrival": {"time": "1694947261"}, "stopId": "49216"}, {"stopSequence": 107, "arrival": {"time": "1694950413"}, "stopId": "49217"}, {"stopSequence": 108, "arrival": {"time": "1694956913"}, "stopId": "49214"}, {"stopSequence": 109, "arrival": {"time": "1694965243"}, "stopId": "49249"}, {"stopSequence": 110, "arrival": {"time": "1694971042"}, "stopId": "49218"}, {"stopSequence": 111, "arrival": {"time": "1694978858"}, "stopId": "49219"}, {"stopSequence": 112, "arrival": {"time": "1695028237"}, "stopId": "38041"}, {"stopSequence": 113, "arrival": {"time": "1695066867"}, "stopId": "38042"}, {"stopSequence": 114, "arrival": {"time": "1695147457"}, "stopId": "38043"}, {"stopSequence": 115, "arrival": {"time": "1695590339"}, "stopId": "38044"}], "vehicle": {"licensePlate": "DZFC48"}, "timestamp": "1694889038"}, "vehicle": {"trip": {"tripId": "25790-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "733", "directionId": 1}, "position": {"latitude": -36.7549, "longitude": -73.09225, "bearing": 173.0, "odometer": 0.0, "speed": 16.944445}, "timestamp": "1694889038", "vehicle": {"licensePlate": "DZFC48"}}}, {"id": "8e8cd704-b102-41ad-b19b-1e8a9a25bd6b", "tripUpdate": {"trip": {"tripId": "25788-701ff27f-2", "startTime": "14:30:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "733", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 82, "arrival": {"time": "1694889092"}, "stopId": "42226"}, {"stopSequence": 83, "arrival": {"time": "1694889151"}, "stopId": "42227"}, {"stopSequence": 84, "arrival": {"time": "1694889230"}, "stopId": "42228"}, {"stopSequence": 85, "arrival": {"time": "1694889275"}, "stopId": "42229"}, {"stopSequence": 86, "arrival": {"time": "1694889361"}, "stopId": "42230"}, {"stopSequence": 87, "arrival": {"time": "1694889404"}, "stopId": "42231"}, {"stopSequence": 88, "arrival": {"time": "1694889485"}, "stopId": "42232"}, {"stopSequence": 89, "arrival": {"time": "1694889567"}, "stopId": "42233"}, {"stopSequence": 90, "arrival": {"time": "1694889609"}, "stopId": "42234"}, {"stopSequence": 91, "arrival": {"time": "1694889683"}, "stopId": "42235"}, {"stopSequence": 92, "arrival": {"time": "1694889704"}, "stopId": "42211"}, {"stopSequence": 93, "arrival": {"time": "1694889761"}, "stopId": "49203"}, {"stopSequence": 94, "arrival": {"time": "1694889817"}, "stopId": "49204"}, {"stopSequence": 95, "arrival": {"time": "1694889834"}, "stopId": "42503"}, {"stopSequence": 96, "arrival": {"time": "1694889841"}, "stopId": "34564"}, {"stopSequence": 97, "arrival": {"time": "1694890167"}, "stopId": "34789"}, {"stopSequence": 98, "arrival": {"time": "1694890192"}, "stopId": "49163"}, {"stopSequence": 99, "arrival": {"time": "1694890938"}, "stopId": "49208"}, {"stopSequence": 100, "arrival": {"time": "1694890959"}, "stopId": "49209"}, {"stopSequence": 101, "arrival": {"time": "1694890979"}, "stopId": "49210"}, {"stopSequence": 102, "arrival": {"time": "1694891179"}, "stopId": "49211"}, {"stopSequence": 103, "arrival": {"time": "1694891210"}, "stopId": "49212"}, {"stopSequence": 104, "arrival": {"time": "1694891271"}, "stopId": "49213"}, {"stopSequence": 105, "arrival": {"time": "1694891473"}, "stopId": "49206"}, {"stopSequence": 106, "arrival": {"time": "1694891537"}, "stopId": "49216"}, {"stopSequence": 107, "arrival": {"time": "1694891557"}, "stopId": "49217"}, {"stopSequence": 108, "arrival": {"time": "1694891592"}, "stopId": "49214"}, {"stopSequence": 109, "arrival": {"time": "1694891628"}, "stopId": "49249"}, {"stopSequence": 110, "arrival": {"time": "1694891650"}, "stopId": "49218"}, {"stopSequence": 111, "arrival": {"time": "1694891674"}, "stopId": "49219"}, {"stopSequence": 112, "arrival": {"time": "1694891767"}, "stopId": "38041"}, {"stopSequence": 113, "arrival": {"time": "1694891805"}, "stopId": "38042"}, {"stopSequence": 114, "arrival": {"time": "1694891848"}, "stopId": "38043"}, {"stopSequence": 115, "arrival": {"time": "1694891909"}, "stopId": "38044"}, {"stopSequence": 116, "arrival": {"time": "1694891959"}, "stopId": "38045"}, {"stopSequence": 117, "arrival": {"time": "1694892048"}, "stopId": "49247"}, {"stopSequence": 118, "arrival": {"time": "1694892075"}, "stopId": "49222"}, {"stopSequence": 119, "arrival": {"time": "1694892086"}, "stopId": "49223"}, {"stopSequence": 120, "arrival": {"time": "1694892109"}, "stopId": "38049"}, {"stopSequence": 121, "arrival": {"time": "1694892126"}, "stopId": "49224"}, {"stopSequence": 122, "arrival": {"time": "1694892251"}, "stopId": "49239"}, {"stopSequence": 123, "arrival": {"time": "1694892271"}, "stopId": "49240"}, {"stopSequence": 124, "arrival": {"time": "1694892283"}, "stopId": "49241"}, {"stopSequence": 125, "arrival": {"time": "1694892412"}, "stopId": "38054"}], "vehicle": {"licensePlate": "FBLL32"}, "timestamp": "1694889034"}, "vehicle": {"trip": {"tripId": "25788-701ff27f-2", "startTime": "14:30:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "733", "directionId": 1}, "position": {"latitude": -36.923622, "longitude": -73.026115, "bearing": 160.0, "odometer": 0.0, "speed": 3.8888888}, "timestamp": "1694889034", "vehicle": {"licensePlate": "FBLL32"}}}, {"id": "d15e823e-c6e0-48e6-aacb-e38739ec0ebc", "tripUpdate": {"trip": {"tripId": "25786-701ff27f-2", "startTime": "14:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "733", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 113, "arrival": {"time": "1694889050"}, "stopId": "38042"}, {"stopSequence": 114, "arrival": {"time": "1694889086"}, "stopId": "38043"}, {"stopSequence": 115, "arrival": {"time": "1694889137"}, "stopId": "38044"}, {"stopSequence": 116, "arrival": {"time": "1694889178"}, "stopId": "38045"}, {"stopSequence": 117, "arrival": {"time": "1694889248"}, "stopId": "49247"}, {"stopSequence": 118, "arrival": {"time": "1694889269"}, "stopId": "49222"}, {"stopSequence": 119, "arrival": {"time": "1694889277"}, "stopId": "49223"}, {"stopSequence": 120, "arrival": {"time": "1694889295"}, "stopId": "38049"}, {"stopSequence": 121, "arrival": {"time": "1694889308"}, "stopId": "49224"}, {"stopSequence": 122, "arrival": {"time": "1694889400"}, "stopId": "49239"}, {"stopSequence": 123, "arrival": {"time": "1694889415"}, "stopId": "49240"}, {"stopSequence": 124, "arrival": {"time": "1694889423"}, "stopId": "49241"}, {"stopSequence": 125, "arrival": {"time": "1694889514"}, "stopId": "38054"}], "vehicle": {"licensePlate": "FLVX57"}, "timestamp": "1694889036"}, "vehicle": {"trip": {"tripId": "25786-701ff27f-2", "startTime": "14:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "733", "directionId": 1}, "position": {"latitude": -36.97865, "longitude": -72.93686, "bearing": 71.0, "odometer": 0.0, "speed": 11.111111}, "timestamp": "1694889036", "vehicle": {"licensePlate": "FLVX57"}}}, {"id": "26682cb1-d625-41ca-b1b4-cd55b0625f5c", "tripUpdate": {"trip": {"tripId": "25792-701ff27f-2", "startTime": "15:30:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "733", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 5, "arrival": {"time": "1694888859"}, "stopId": "40947"}, {"stopSequence": 6, "arrival": {"time": "1694888945"}, "stopId": "40932"}, {"stopSequence": 7, "arrival": {"time": "1694888994"}, "stopId": "42853"}, {"stopSequence": 8, "arrival": {"time": "1694889086"}, "stopId": "42854"}, {"stopSequence": 9, "arrival": {"time": "1694889144"}, "stopId": "42855"}, {"stopSequence": 10, "arrival": {"time": "1694889181"}, "stopId": "41975"}, {"stopSequence": 11, "arrival": {"time": "1694889204"}, "stopId": "42857"}, {"stopSequence": 12, "arrival": {"time": "1694889234"}, "stopId": "38697"}, {"stopSequence": 13, "arrival": {"time": "1694889283"}, "stopId": "38646"}, {"stopSequence": 14, "arrival": {"time": "1694889313"}, "stopId": "38632"}, {"stopSequence": 15, "arrival": {"time": "1694889398"}, "stopId": "38767"}, {"stopSequence": 16, "arrival": {"time": "1694889464"}, "stopId": "38768"}, {"stopSequence": 17, "arrival": {"time": "1694889508"}, "stopId": "38769"}, {"stopSequence": 18, "arrival": {"time": "1694889548"}, "stopId": "49357"}, {"stopSequence": 19, "arrival": {"time": "1694889587"}, "stopId": "38771"}, {"stopSequence": 20, "arrival": {"time": "1694889630"}, "stopId": "38668"}, {"stopSequence": 21, "arrival": {"time": "1694889722"}, "stopId": "38661"}, {"stopSequence": 22, "arrival": {"time": "1694889798"}, "stopId": "38657"}, {"stopSequence": 23, "arrival": {"time": "1694889860"}, "stopId": "38743"}, {"stopSequence": 24, "arrival": {"time": "1694889922"}, "stopId": "38652"}, {"stopSequence": 25, "arrival": {"time": "1694889992"}, "stopId": "38721"}, {"stopSequence": 26, "arrival": {"time": "1694890042"}, "stopId": "38659"}, {"stopSequence": 27, "arrival": {"time": "1694890130"}, "stopId": "38674"}, {"stopSequence": 28, "arrival": {"time": "1694890203"}, "stopId": "38649"}, {"stopSequence": 29, "arrival": {"time": "1694890265"}, "stopId": "38718"}, {"stopSequence": 30, "arrival": {"time": "1694890337"}, "stopId": "38735"}, {"stopSequence": 31, "arrival": {"time": "1694890383"}, "stopId": "42270"}, {"stopSequence": 32, "arrival": {"time": "1694890437"}, "stopId": "42271"}, {"stopSequence": 33, "arrival": {"time": "1694890501"}, "stopId": "4838438"}, {"stopSequence": 34, "arrival": {"time": "1694890652"}, "stopId": "44896"}, {"stopSequence": 35, "arrival": {"time": "1694890702"}, "stopId": "44897"}, {"stopSequence": 36, "arrival": {"time": "1694890778"}, "stopId": "44898"}, {"stopSequence": 37, "arrival": {"time": "1694891235"}, "stopId": "16005188"}, {"stopSequence": 38, "arrival": {"time": "1694891525"}, "stopId": "40995"}, {"stopSequence": 39, "arrival": {"time": "1694891624"}, "stopId": "40996"}, {"stopSequence": 40, "arrival": {"time": "1694891759"}, "stopId": "40997"}, {"stopSequence": 41, "arrival": {"time": "1694891836"}, "stopId": "39614"}, {"stopSequence": 42, "arrival": {"time": "1694891899"}, "stopId": "39615"}, {"stopSequence": 43, "arrival": {"time": "1694891965"}, "stopId": "39616"}, {"stopSequence": 44, "arrival": {"time": "1694892040"}, "stopId": "39617"}, {"stopSequence": 45, "arrival": {"time": "1694892122"}, "stopId": "39618"}, {"stopSequence": 46, "arrival": {"time": "1694892187"}, "stopId": "39619"}, {"stopSequence": 47, "arrival": {"time": "1694892243"}, "stopId": "39620"}, {"stopSequence": 48, "arrival": {"time": "1694892346"}, "stopId": "39621"}, {"stopSequence": 49, "arrival": {"time": "1694892420"}, "stopId": "38281"}, {"stopSequence": 50, "arrival": {"time": "1694892506"}, "stopId": "37506"}, {"stopSequence": 51, "arrival": {"time": "1694892570"}, "stopId": "45068"}, {"stopSequence": 52, "arrival": {"time": "1694892776"}, "stopId": "37480"}, {"stopSequence": 53, "arrival": {"time": "1694892882"}, "stopId": "37477"}, {"stopSequence": 54, "arrival": {"time": "1694893002"}, "stopId": "40848"}, {"stopSequence": 55, "arrival": {"time": "1694893156"}, "stopId": "2-Apr"}, {"stopSequence": 56, "arrival": {"time": "1694893265"}, "stopId": "39728"}, {"stopSequence": 57, "arrival": {"time": "1694893461"}, "stopId": "39729"}, {"stopSequence": 58, "arrival": {"time": "1694893511"}, "stopId": "39730"}, {"stopSequence": 59, "arrival": {"time": "1694893738"}, "stopId": "42200"}, {"stopSequence": 60, "arrival": {"time": "1694893831"}, "stopId": "42203"}, {"stopSequence": 61, "arrival": {"time": "1694893975"}, "stopId": "42204"}, {"stopSequence": 62, "arrival": {"time": "1694894036"}, "stopId": "42205"}, {"stopSequence": 63, "arrival": {"time": "1694894206"}, "stopId": "42201"}, {"stopSequence": 64, "arrival": {"time": "1694894850"}, "stopId": "42206"}, {"stopSequence": 65, "arrival": {"time": "1694895034"}, "stopId": "42207"}, {"stopSequence": 66, "arrival": {"time": "1694895242"}, "stopId": "42208"}, {"stopSequence": 67, "arrival": {"time": "1694895648"}, "stopId": "42564"}, {"stopSequence": 68, "arrival": {"time": "1694896023"}, "stopId": "42214"}, {"stopSequence": 69, "arrival": {"time": "1694896436"}, "stopId": "42209"}, {"stopSequence": 70, "arrival": {"time": "1694896948"}, "stopId": "42210"}, {"stopSequence": 71, "arrival": {"time": "1694897884"}, "stopId": "42215"}, {"stopSequence": 72, "arrival": {"time": "1694898055"}, "stopId": "42216"}, {"stopSequence": 73, "arrival": {"time": "1694898293"}, "stopId": "42217"}, {"stopSequence": 74, "arrival": {"time": "1694898754"}, "stopId": "42218"}, {"stopSequence": 75, "arrival": {"time": "1694898983"}, "stopId": "42219"}, {"stopSequence": 76, "arrival": {"time": "1694899750"}, "stopId": "42220"}, {"stopSequence": 77, "arrival": {"time": "1694900062"}, "stopId": "42221"}, {"stopSequence": 78, "arrival": {"time": "1694900581"}, "stopId": "42222"}, {"stopSequence": 79, "arrival": {"time": "1694901224"}, "stopId": "42223"}, {"stopSequence": 80, "arrival": {"time": "1694901496"}, "stopId": "42224"}, {"stopSequence": 81, "arrival": {"time": "1694902303"}, "stopId": "42225"}, {"stopSequence": 82, "arrival": {"time": "1694903041"}, "stopId": "42226"}, {"stopSequence": 83, "arrival": {"time": "1694903752"}, "stopId": "42227"}, {"stopSequence": 84, "arrival": {"time": "1694904809"}, "stopId": "42228"}, {"stopSequence": 85, "arrival": {"time": "1694905484"}, "stopId": "42229"}, {"stopSequence": 86, "arrival": {"time": "1694906959"}, "stopId": "42230"}, {"stopSequence": 87, "arrival": {"time": "1694907803"}, "stopId": "42231"}, {"stopSequence": 88, "arrival": {"time": "1694909603"}, "stopId": "42232"}, {"stopSequence": 89, "arrival": {"time": "1694911824"}, "stopId": "42233"}, {"stopSequence": 90, "arrival": {"time": "1694913130"}, "stopId": "42234"}, {"stopSequence": 91, "arrival": {"time": "1694915880"}, "stopId": "42235"}, {"stopSequence": 92, "arrival": {"time": "1694916749"}, "stopId": "42211"}, {"stopSequence": 93, "arrival": {"time": "1694919530"}, "stopId": "49203"}, {"stopSequence": 94, "arrival": {"time": "1694922768"}, "stopId": "49204"}, {"stopSequence": 95, "arrival": {"time": "1694923886"}, "stopId": "42503"}, {"stopSequence": 96, "arrival": {"time": "1694924395"}, "stopId": "34564"}, {"stopSequence": 97, "arrival": {"time": "1694985879"}, "stopId": "34789"}, {"stopSequence": 98, "arrival": {"time": "1695000725"}, "stopId": "49163"}], "vehicle": {"licensePlate": "LCXP28"}, "timestamp": "1694888858"}, "vehicle": {"trip": {"tripId": "25792-701ff27f-2", "startTime": "15:30:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "733", "directionId": 1}, "position": {"latitude": -36.72441, "longitude": -73.11895, "bearing": 124.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889018", "vehicle": {"licensePlate": "LCXP28"}}}, {"id": "aa638911-f340-476d-b69c-dfd606fe62b3", "tripUpdate": {"trip": {"tripId": "25789-701ff27f-2", "startTime": "14:45:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "733", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 52, "arrival": {"time": "1694889116"}, "stopId": "37480"}, {"stopSequence": 53, "arrival": {"time": "1694889180"}, "stopId": "37477"}, {"stopSequence": 54, "arrival": {"time": "1694889251"}, "stopId": "40848"}, {"stopSequence": 55, "arrival": {"time": "1694889337"}, "stopId": "2-Apr"}, {"stopSequence": 56, "arrival": {"time": "1694889395"}, "stopId": "39728"}, {"stopSequence": 57, "arrival": {"time": "1694889494"}, "stopId": "39729"}, {"stopSequence": 58, "arrival": {"time": "1694889519"}, "stopId": "39730"}, {"stopSequence": 59, "arrival": {"time": "1694889624"}, "stopId": "42200"}, {"stopSequence": 60, "arrival": {"time": "1694889666"}, "stopId": "42203"}, {"stopSequence": 61, "arrival": {"time": "1694889728"}, "stopId": "42204"}, {"stopSequence": 62, "arrival": {"time": "1694889753"}, "stopId": "42205"}, {"stopSequence": 63, "arrival": {"time": "1694889822"}, "stopId": "42201"}, {"stopSequence": 64, "arrival": {"time": "1694890057"}, "stopId": "42206"}, {"stopSequence": 65, "arrival": {"time": "1694890117"}, "stopId": "42207"}, {"stopSequence": 66, "arrival": {"time": "1694890182"}, "stopId": "42208"}, {"stopSequence": 67, "arrival": {"time": "1694890302"}, "stopId": "42564"}, {"stopSequence": 68, "arrival": {"time": "1694890403"}, "stopId": "42214"}, {"stopSequence": 69, "arrival": {"time": "1694890507"}, "stopId": "42209"}, {"stopSequence": 70, "arrival": {"time": "1694890624"}, "stopId": "42210"}, {"stopSequence": 71, "arrival": {"time": "1694890815"}, "stopId": "42215"}, {"stopSequence": 72, "arrival": {"time": "1694890847"}, "stopId": "42216"}, {"stopSequence": 73, "arrival": {"time": "1694890889"}, "stopId": "42217"}, {"stopSequence": 74, "arrival": {"time": "1694890968"}, "stopId": "42218"}, {"stopSequence": 75, "arrival": {"time": "1694891005"}, "stopId": "42219"}, {"stopSequence": 76, "arrival": {"time": "1694891121"}, "stopId": "42220"}, {"stopSequence": 77, "arrival": {"time": "1694891165"}, "stopId": "42221"}, {"stopSequence": 78, "arrival": {"time": "1694891234"}, "stopId": "42222"}, {"stopSequence": 79, "arrival": {"time": "1694891314"}, "stopId": "42223"}, {"stopSequence": 80, "arrival": {"time": "1694891346"}, "stopId": "42224"}, {"stopSequence": 81, "arrival": {"time": "1694891435"}, "stopId": "42225"}, {"stopSequence": 82, "arrival": {"time": "1694891510"}, "stopId": "42226"}, {"stopSequence": 83, "arrival": {"time": "1694891577"}, "stopId": "42227"}, {"stopSequence": 84, "arrival": {"time": "1694891667"}, "stopId": "42228"}, {"stopSequence": 85, "arrival": {"time": "1694891721"}, "stopId": "42229"}, {"stopSequence": 86, "arrival": {"time": "1694891826"}, "stopId": "42230"}, {"stopSequence": 87, "arrival": {"time": "1694891881"}, "stopId": "42231"}, {"stopSequence": 88, "arrival": {"time": "1694891985"}, "stopId": "42232"}, {"stopSequence": 89, "arrival": {"time": "1694892095"}, "stopId": "42233"}, {"stopSequence": 90, "arrival": {"time": "1694892153"}, "stopId": "42234"}, {"stopSequence": 91, "arrival": {"time": "1694892258"}, "stopId": "42235"}, {"stopSequence": 92, "arrival": {"time": "1694892288"}, "stopId": "42211"}, {"stopSequence": 93, "arrival": {"time": "1694892373"}, "stopId": "49203"}, {"stopSequence": 94, "arrival": {"time": "1694892457"}, "stopId": "49204"}, {"stopSequence": 95, "arrival": {"time": "1694892483"}, "stopId": "42503"}, {"stopSequence": 96, "arrival": {"time": "1694892494"}, "stopId": "34564"}, {"stopSequence": 97, "arrival": {"time": "1694893038"}, "stopId": "34789"}, {"stopSequence": 98, "arrival": {"time": "1694893084"}, "stopId": "49163"}, {"stopSequence": 99, "arrival": {"time": "1694894702"}, "stopId": "49208"}, {"stopSequence": 100, "arrival": {"time": "1694894754"}, "stopId": "49209"}, {"stopSequence": 101, "arrival": {"time": "1694894808"}, "stopId": "49210"}, {"stopSequence": 102, "arrival": {"time": "1694895357"}, "stopId": "49211"}, {"stopSequence": 103, "arrival": {"time": "1694895446"}, "stopId": "49212"}, {"stopSequence": 104, "arrival": {"time": "1694895627"}, "stopId": "49213"}, {"stopSequence": 105, "arrival": {"time": "1694896266"}, "stopId": "49206"}, {"stopSequence": 106, "arrival": {"time": "1694896483"}, "stopId": "49216"}, {"stopSequence": 107, "arrival": {"time": "1694896551"}, "stopId": "49217"}, {"stopSequence": 108, "arrival": {"time": "1694896674"}, "stopId": "49214"}, {"stopSequence": 109, "arrival": {"time": "1694896804"}, "stopId": "49249"}, {"stopSequence": 110, "arrival": {"time": "1694896881"}, "stopId": "49218"}, {"stopSequence": 111, "arrival": {"time": "1694896971"}, "stopId": "49219"}, {"stopSequence": 112, "arrival": {"time": "1694897322"}, "stopId": "38041"}, {"stopSequence": 113, "arrival": {"time": "1694897469"}, "stopId": "38042"}, {"stopSequence": 114, "arrival": {"time": "1694897639"}, "stopId": "38043"}, {"stopSequence": 115, "arrival": {"time": "1694897887"}, "stopId": "38044"}, {"stopSequence": 116, "arrival": {"time": "1694898101"}, "stopId": "38045"}, {"stopSequence": 117, "arrival": {"time": "1694898487"}, "stopId": "49247"}, {"stopSequence": 118, "arrival": {"time": "1694898609"}, "stopId": "49222"}, {"stopSequence": 119, "arrival": {"time": "1694898659"}, "stopId": "49223"}, {"stopSequence": 120, "arrival": {"time": "1694898767"}, "stopId": "38049"}, {"stopSequence": 121, "arrival": {"time": "1694898845"}, "stopId": "49224"}, {"stopSequence": 122, "arrival": {"time": "1694899450"}, "stopId": "49239"}, {"stopSequence": 123, "arrival": {"time": "1694899550"}, "stopId": "49240"}, {"stopSequence": 124, "arrival": {"time": "1694899611"}, "stopId": "49241"}, {"stopSequence": 125, "arrival": {"time": "1694900297"}, "stopId": "38054"}], "vehicle": {"licensePlate": "LJKK82"}, "timestamp": "1694889004"}, "vehicle": {"trip": {"tripId": "25789-701ff27f-2", "startTime": "14:45:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "733", "directionId": 1}, "position": {"latitude": -36.82636, "longitude": -73.04686, "bearing": 238.0, "odometer": 0.0, "speed": 8.611111}, "timestamp": "1694889004", "vehicle": {"licensePlate": "LJKK82"}}}, {"id": "de85a6f6-fe0d-42bb-879a-cbf51135dac5", "tripUpdate": {"trip": {"tripId": "25953-701ff27f-2", "startTime": "15:30:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "734", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 56, "arrival": {"time": "1694889057"}, "stopId": "38514"}, {"stopSequence": 57, "arrival": {"time": "1694889098"}, "stopId": "38516"}, {"stopSequence": 58, "arrival": {"time": "1694889161"}, "stopId": "38518"}, {"stopSequence": 59, "arrival": {"time": "1694889264"}, "stopId": "38520"}, {"stopSequence": 60, "arrival": {"time": "1694889307"}, "stopId": "38521"}, {"stopSequence": 61, "arrival": {"time": "1694889358"}, "stopId": "38522"}, {"stopSequence": 62, "arrival": {"time": "1694889408"}, "stopId": "38523"}, {"stopSequence": 63, "arrival": {"time": "1694889461"}, "stopId": "38524"}, {"stopSequence": 64, "arrival": {"time": "1694889511"}, "stopId": "38525"}, {"stopSequence": 65, "arrival": {"time": "1694889562"}, "stopId": "38526"}, {"stopSequence": 66, "arrival": {"time": "1694889610"}, "stopId": "38527"}, {"stopSequence": 67, "arrival": {"time": "1694889696"}, "stopId": "38528"}, {"stopSequence": 68, "arrival": {"time": "1694889809"}, "stopId": "38529"}, {"stopSequence": 69, "arrival": {"time": "1694890014"}, "stopId": "38530"}, {"stopSequence": 70, "arrival": {"time": "1694890026"}, "stopId": "16005209"}, {"stopSequence": 71, "arrival": {"time": "1694890256"}, "stopId": "38531"}, {"stopSequence": 72, "arrival": {"time": "1694890301"}, "stopId": "8921285"}, {"stopSequence": 73, "arrival": {"time": "1694890419"}, "stopId": "38532"}, {"stopSequence": 74, "arrival": {"time": "1694890471"}, "stopId": "38533"}, {"stopSequence": 75, "arrival": {"time": "1694890525"}, "stopId": "38534"}, {"stopSequence": 76, "arrival": {"time": "1694890573"}, "stopId": "38535"}, {"stopSequence": 77, "arrival": {"time": "1694890638"}, "stopId": "38536"}, {"stopSequence": 78, "arrival": {"time": "1694890674"}, "stopId": "4838437"}, {"stopSequence": 79, "arrival": {"time": "1694890728"}, "stopId": "45085"}, {"stopSequence": 80, "arrival": {"time": "1694890808"}, "stopId": "45086"}, {"stopSequence": 81, "arrival": {"time": "1694890864"}, "stopId": "38539"}, {"stopSequence": 82, "arrival": {"time": "1694890931"}, "stopId": "38540"}, {"stopSequence": 83, "arrival": {"time": "1694891013"}, "stopId": "38544"}, {"stopSequence": 84, "arrival": {"time": "1694891086"}, "stopId": "38545"}, {"stopSequence": 85, "arrival": {"time": "1694891182"}, "stopId": "38546"}, {"stopSequence": 86, "arrival": {"time": "1694891316"}, "stopId": "38548"}, {"stopSequence": 87, "arrival": {"time": "1694891394"}, "stopId": "38549"}, {"stopSequence": 88, "arrival": {"time": "1694891457"}, "stopId": "38550"}, {"stopSequence": 89, "arrival": {"time": "1694891569"}, "stopId": "38551"}, {"stopSequence": 90, "arrival": {"time": "1694891671"}, "stopId": "38552"}, {"stopSequence": 91, "arrival": {"time": "1694891769"}, "stopId": "49359"}, {"stopSequence": 92, "arrival": {"time": "1694891833"}, "stopId": "49360"}, {"stopSequence": 93, "arrival": {"time": "1694891976"}, "stopId": "49361"}, {"stopSequence": 94, "arrival": {"time": "1694892011"}, "stopId": "49362"}, {"stopSequence": 95, "arrival": {"time": "1694892074"}, "stopId": "49363"}, {"stopSequence": 96, "arrival": {"time": "1694892139"}, "stopId": "49364"}, {"stopSequence": 97, "arrival": {"time": "1694892189"}, "stopId": "49365"}, {"stopSequence": 98, "arrival": {"time": "1694892284"}, "stopId": "38560"}, {"stopSequence": 99, "arrival": {"time": "1694892338"}, "stopId": "42857"}, {"stopSequence": 100, "arrival": {"time": "1694892383"}, "stopId": "38562"}, {"stopSequence": 101, "arrival": {"time": "1694892433"}, "stopId": "38563"}, {"stopSequence": 102, "arrival": {"time": "1694892505"}, "stopId": "42854"}, {"stopSequence": 103, "arrival": {"time": "1694892639"}, "stopId": "38565"}, {"stopSequence": 104, "arrival": {"time": "1694892715"}, "stopId": "40932"}, {"stopSequence": 105, "arrival": {"time": "1694892834"}, "stopId": "38567"}, {"stopSequence": 106, "arrival": {"time": "1694892911"}, "stopId": "38568"}, {"stopSequence": 107, "arrival": {"time": "1694892958"}, "stopId": "38569"}, {"stopSequence": 108, "arrival": {"time": "1694893030"}, "stopId": "38570"}, {"stopSequence": 109, "arrival": {"time": "1694893127"}, "stopId": "38571"}, {"stopSequence": 110, "arrival": {"time": "1694893221"}, "stopId": "38572"}], "vehicle": {"licensePlate": "DHTY90"}, "timestamp": "1694889033"}, "vehicle": {"trip": {"tripId": "25953-701ff27f-2", "startTime": "15:30:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "734", "directionId": 0}, "position": {"latitude": -36.82645, "longitude": -73.044075, "bearing": 63.0, "odometer": 0.0, "speed": 8.055555}, "timestamp": "1694889033", "vehicle": {"licensePlate": "DHTY90"}}}, {"id": "89202739-2cdb-44ed-9256-da8227f112d4", "tripUpdate": {"trip": {"tripId": "25955-701ff27f-2", "startTime": "15:50:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "734", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 14, "arrival": {"time": "1694889108"}, "stopId": "40606"}, {"stopSequence": 15, "arrival": {"time": "1694889146"}, "stopId": "40607"}, {"stopSequence": 16, "arrival": {"time": "1694889210"}, "stopId": "40609"}, {"stopSequence": 17, "arrival": {"time": "1694889269"}, "stopId": "40610"}, {"stopSequence": 18, "arrival": {"time": "1694889326"}, "stopId": "40611"}, {"stopSequence": 19, "arrival": {"time": "1694889376"}, "stopId": "40612"}, {"stopSequence": 20, "arrival": {"time": "1694889441"}, "stopId": "40620"}, {"stopSequence": 21, "arrival": {"time": "1694889512"}, "stopId": "49281"}, {"stopSequence": 22, "arrival": {"time": "1694889577"}, "stopId": "49282"}, {"stopSequence": 23, "arrival": {"time": "1694889620"}, "stopId": "49283"}, {"stopSequence": 24, "arrival": {"time": "1694889676"}, "stopId": "49284"}, {"stopSequence": 25, "arrival": {"time": "1694889742"}, "stopId": "49285"}, {"stopSequence": 26, "arrival": {"time": "1694889808"}, "stopId": "49286"}, {"stopSequence": 27, "arrival": {"time": "1694889850"}, "stopId": "49287"}, {"stopSequence": 28, "arrival": {"time": "1694889895"}, "stopId": "49288"}, {"stopSequence": 29, "arrival": {"time": "1694889944"}, "stopId": "49289"}, {"stopSequence": 30, "arrival": {"time": "1694890074"}, "stopId": "42294"}, {"stopSequence": 31, "arrival": {"time": "1694890201"}, "stopId": "42295"}, {"stopSequence": 32, "arrival": {"time": "1694890313"}, "stopId": "42296"}, {"stopSequence": 33, "arrival": {"time": "1694890436"}, "stopId": "42297"}, {"stopSequence": 34, "arrival": {"time": "1694890531"}, "stopId": "42298"}, {"stopSequence": 35, "arrival": {"time": "1694890595"}, "stopId": "42299"}, {"stopSequence": 36, "arrival": {"time": "1694890637"}, "stopId": "49295"}, {"stopSequence": 37, "arrival": {"time": "1694890759"}, "stopId": "49296"}, {"stopSequence": 38, "arrival": {"time": "1694890848"}, "stopId": "49297"}, {"stopSequence": 39, "arrival": {"time": "1694890884"}, "stopId": "49298"}, {"stopSequence": 40, "arrival": {"time": "1694890957"}, "stopId": "49299"}, {"stopSequence": 41, "arrival": {"time": "1694891002"}, "stopId": "49300"}, {"stopSequence": 42, "arrival": {"time": "1694891091"}, "stopId": "49301"}, {"stopSequence": 43, "arrival": {"time": "1694891164"}, "stopId": "49302"}, {"stopSequence": 44, "arrival": {"time": "1694891213"}, "stopId": "49303"}, {"stopSequence": 45, "arrival": {"time": "1694891270"}, "stopId": "49304"}, {"stopSequence": 46, "arrival": {"time": "1694891302"}, "stopId": "49305"}, {"stopSequence": 47, "arrival": {"time": "1694891365"}, "stopId": "49306"}, {"stopSequence": 48, "arrival": {"time": "1694891411"}, "stopId": "49307"}, {"stopSequence": 49, "arrival": {"time": "1694891438"}, "stopId": "49308"}, {"stopSequence": 50, "arrival": {"time": "1694891466"}, "stopId": "49309"}, {"stopSequence": 51, "arrival": {"time": "1694891499"}, "stopId": "42315"}, {"stopSequence": 52, "arrival": {"time": "1694891526"}, "stopId": "42316"}, {"stopSequence": 53, "arrival": {"time": "1694891586"}, "stopId": "42317"}, {"stopSequence": 54, "arrival": {"time": "1694891648"}, "stopId": "42318"}, {"stopSequence": 55, "arrival": {"time": "1694891736"}, "stopId": "8606396"}, {"stopSequence": 56, "arrival": {"time": "1694891826"}, "stopId": "38514"}, {"stopSequence": 57, "arrival": {"time": "1694891875"}, "stopId": "38516"}, {"stopSequence": 58, "arrival": {"time": "1694891952"}, "stopId": "38518"}, {"stopSequence": 59, "arrival": {"time": "1694892083"}, "stopId": "38520"}, {"stopSequence": 60, "arrival": {"time": "1694892139"}, "stopId": "38521"}, {"stopSequence": 61, "arrival": {"time": "1694892207"}, "stopId": "38522"}, {"stopSequence": 62, "arrival": {"time": "1694892277"}, "stopId": "38523"}, {"stopSequence": 63, "arrival": {"time": "1694892352"}, "stopId": "38524"}, {"stopSequence": 64, "arrival": {"time": "1694892423"}, "stopId": "38525"}, {"stopSequence": 65, "arrival": {"time": "1694892500"}, "stopId": "38526"}, {"stopSequence": 66, "arrival": {"time": "1694892573"}, "stopId": "38527"}, {"stopSequence": 67, "arrival": {"time": "1694892709"}, "stopId": "38528"}, {"stopSequence": 68, "arrival": {"time": "1694892896"}, "stopId": "38529"}, {"stopSequence": 69, "arrival": {"time": "1694893265"}, "stopId": "38530"}, {"stopSequence": 70, "arrival": {"time": "1694893289"}, "stopId": "16005209"}, {"stopSequence": 71, "arrival": {"time": "1694893753"}, "stopId": "38531"}, {"stopSequence": 72, "arrival": {"time": "1694893852"}, "stopId": "8921285"}, {"stopSequence": 73, "arrival": {"time": "1694894120"}, "stopId": "38532"}, {"stopSequence": 74, "arrival": {"time": "1694894243"}, "stopId": "38533"}, {"stopSequence": 75, "arrival": {"time": "1694894374"}, "stopId": "38534"}, {"stopSequence": 76, "arrival": {"time": "1694894495"}, "stopId": "38535"}, {"stopSequence": 77, "arrival": {"time": "1694894663"}, "stopId": "38536"}, {"stopSequence": 78, "arrival": {"time": "1694894759"}, "stopId": "4838437"}, {"stopSequence": 79, "arrival": {"time": "1694894904"}, "stopId": "45085"}, {"stopSequence": 80, "arrival": {"time": "1694895131"}, "stopId": "45086"}, {"stopSequence": 81, "arrival": {"time": "1694895294"}, "stopId": "38539"}, {"stopSequence": 82, "arrival": {"time": "1694895497"}, "stopId": "38540"}, {"stopSequence": 83, "arrival": {"time": "1694895757"}, "stopId": "38544"}, {"stopSequence": 84, "arrival": {"time": "1694895999"}, "stopId": "38545"}, {"stopSequence": 85, "arrival": {"time": "1694896331"}, "stopId": "38546"}, {"stopSequence": 86, "arrival": {"time": "1694896824"}, "stopId": "38548"}, {"stopSequence": 87, "arrival": {"time": "1694897129"}, "stopId": "38549"}, {"stopSequence": 88, "arrival": {"time": "1694897390"}, "stopId": "38550"}, {"stopSequence": 89, "arrival": {"time": "1694897874"}, "stopId": "38551"}, {"stopSequence": 90, "arrival": {"time": "1694898341"}, "stopId": "38552"}, {"stopSequence": 91, "arrival": {"time": "1694898821"}, "stopId": "49359"}, {"stopSequence": 92, "arrival": {"time": "1694899156"}, "stopId": "49360"}, {"stopSequence": 93, "arrival": {"time": "1694899943"}, "stopId": "49361"}, {"stopSequence": 94, "arrival": {"time": "1694900152"}, "stopId": "49362"}, {"stopSequence": 95, "arrival": {"time": "1694900530"}, "stopId": "49363"}, {"stopSequence": 96, "arrival": {"time": "1694900944"}, "stopId": "49364"}, {"stopSequence": 97, "arrival": {"time": "1694901273"}, "stopId": "49365"}, {"stopSequence": 98, "arrival": {"time": "1694901937"}, "stopId": "38560"}, {"stopSequence": 99, "arrival": {"time": "1694902337"}, "stopId": "42857"}, {"stopSequence": 100, "arrival": {"time": "1694902678"}, "stopId": "38562"}, {"stopSequence": 101, "arrival": {"time": "1694903073"}, "stopId": "38563"}, {"stopSequence": 102, "arrival": {"time": "1694903669"}, "stopId": "42854"}, {"stopSequence": 103, "arrival": {"time": "1694904882"}, "stopId": "38565"}, {"stopSequence": 104, "arrival": {"time": "1694905622"}, "stopId": "40932"}, {"stopSequence": 105, "arrival": {"time": "1694906897"}, "stopId": "38567"}, {"stopSequence": 106, "arrival": {"time": "1694907795"}, "stopId": "38568"}, {"stopSequence": 107, "arrival": {"time": "1694908386"}, "stopId": "38569"}, {"stopSequence": 108, "arrival": {"time": "1694909326"}, "stopId": "38570"}, {"stopSequence": 109, "arrival": {"time": "1694910715"}, "stopId": "38571"}, {"stopSequence": 110, "arrival": {"time": "1694912196"}, "stopId": "38572"}], "vehicle": {"licensePlate": "DPGK86"}, "timestamp": "1694889036"}, "vehicle": {"trip": {"tripId": "25955-701ff27f-2", "startTime": "15:50:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "734", "directionId": 0}, "position": {"latitude": -36.93322, "longitude": -73.01389, "bearing": 322.0, "odometer": 0.0, "speed": 3.6111112}, "timestamp": "1694889036", "vehicle": {"licensePlate": "DPGK86"}}}, {"id": "830def33-4849-46cd-a0b6-408c1ccd755c", "tripUpdate": {"trip": {"tripId": "25950-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "734", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 98, "arrival": {"time": "1694889102"}, "stopId": "38560"}, {"stopSequence": 99, "arrival": {"time": "1694889143"}, "stopId": "42857"}, {"stopSequence": 100, "arrival": {"time": "1694889175"}, "stopId": "38562"}, {"stopSequence": 101, "arrival": {"time": "1694889211"}, "stopId": "38563"}, {"stopSequence": 102, "arrival": {"time": "1694889261"}, "stopId": "42854"}, {"stopSequence": 103, "arrival": {"time": "1694889352"}, "stopId": "38565"}, {"stopSequence": 104, "arrival": {"time": "1694889400"}, "stopId": "40932"}, {"stopSequence": 105, "arrival": {"time": "1694889475"}, "stopId": "38567"}, {"stopSequence": 106, "arrival": {"time": "1694889521"}, "stopId": "38568"}, {"stopSequence": 107, "arrival": {"time": "1694889549"}, "stopId": "38569"}, {"stopSequence": 108, "arrival": {"time": "1694889591"}, "stopId": "38570"}, {"stopSequence": 109, "arrival": {"time": "1694889646"}, "stopId": "38571"}, {"stopSequence": 110, "arrival": {"time": "1694889698"}, "stopId": "38572"}], "vehicle": {"licensePlate": "GGJJ59"}, "timestamp": "1694889037"}, "vehicle": {"trip": {"tripId": "25950-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "734", "directionId": 0}, "position": {"latitude": -36.712296, "longitude": -73.11359, "bearing": 315.0, "odometer": 0.0, "speed": 0.5555556}, "timestamp": "1694889037", "vehicle": {"licensePlate": "GGJJ59"}}}, {"id": "44fed9f4-5b18-45e1-a292-6e2a9eb9f639", "tripUpdate": {"trip": {"tripId": "25952-701ff27f-2", "startTime": "15:20:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "734", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 84, "arrival": {"time": "1694889060"}, "stopId": "38545"}, {"stopSequence": 85, "arrival": {"time": "1694889153"}, "stopId": "38546"}, {"stopSequence": 86, "arrival": {"time": "1694889278"}, "stopId": "38548"}, {"stopSequence": 87, "arrival": {"time": "1694889348"}, "stopId": "38549"}, {"stopSequence": 88, "arrival": {"time": "1694889405"}, "stopId": "38550"}, {"stopSequence": 89, "arrival": {"time": "1694889501"}, "stopId": "38551"}, {"stopSequence": 90, "arrival": {"time": "1694889585"}, "stopId": "38552"}, {"stopSequence": 91, "arrival": {"time": "1694889663"}, "stopId": "49359"}, {"stopSequence": 92, "arrival": {"time": "1694889714"}, "stopId": "49360"}, {"stopSequence": 93, "arrival": {"time": "1694889822"}, "stopId": "49361"}, {"stopSequence": 94, "arrival": {"time": "1694889848"}, "stopId": "49362"}, {"stopSequence": 95, "arrival": {"time": "1694889894"}, "stopId": "49363"}, {"stopSequence": 96, "arrival": {"time": "1694889941"}, "stopId": "49364"}, {"stopSequence": 97, "arrival": {"time": "1694889976"}, "stopId": "49365"}, {"stopSequence": 98, "arrival": {"time": "1694890042"}, "stopId": "38560"}, {"stopSequence": 99, "arrival": {"time": "1694890079"}, "stopId": "42857"}, {"stopSequence": 100, "arrival": {"time": "1694890109"}, "stopId": "38562"}, {"stopSequence": 101, "arrival": {"time": "1694890142"}, "stopId": "38563"}, {"stopSequence": 102, "arrival": {"time": "1694890189"}, "stopId": "42854"}, {"stopSequence": 103, "arrival": {"time": "1694890275"}, "stopId": "38565"}, {"stopSequence": 104, "arrival": {"time": "1694890322"}, "stopId": "40932"}, {"stopSequence": 105, "arrival": {"time": "1694890395"}, "stopId": "38567"}, {"stopSequence": 106, "arrival": {"time": "1694890440"}, "stopId": "38568"}, {"stopSequence": 107, "arrival": {"time": "1694890468"}, "stopId": "38569"}, {"stopSequence": 108, "arrival": {"time": "1694890510"}, "stopId": "38570"}, {"stopSequence": 109, "arrival": {"time": "1694890565"}, "stopId": "38571"}, {"stopSequence": 110, "arrival": {"time": "1694890618"}, "stopId": "38572"}], "vehicle": {"licensePlate": "GSRZ32"}, "timestamp": "1694889005"}, "vehicle": {"trip": {"tripId": "25952-701ff27f-2", "startTime": "15:20:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "734", "directionId": 0}, "position": {"latitude": -36.749306, "longitude": -73.09373, "bearing": 342.0, "odometer": 0.0, "speed": 14.722222}, "timestamp": "1694889005", "vehicle": {"licensePlate": "GSRZ32"}}}, {"id": "7338c480-acc0-491d-a9b6-1d3ca961c2dd", "tripUpdate": {"trip": {"tripId": "25949-701ff27f-2", "startTime": "14:50:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "734", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 109, "arrival": {"time": "1694889063"}, "stopId": "38571"}, {"stopSequence": 110, "arrival": {"time": "1694889119"}, "stopId": "38572"}], "vehicle": {"licensePlate": "GYGL94"}, "timestamp": "1694889036"}, "vehicle": {"trip": {"tripId": "25949-701ff27f-2", "startTime": "14:50:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "734", "directionId": 0}, "position": {"latitude": -36.72225, "longitude": -73.12652, "bearing": 231.0, "odometer": 0.0, "speed": 13.888889}, "timestamp": "1694889036", "vehicle": {"licensePlate": "GYGL94"}}}, {"id": "2d7d9ae4-c9c9-48c4-b7e9-0118f0f060f0", "tripUpdate": {"trip": {"tripId": "25956-701ff27f-2", "startTime": "16:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "734", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 3, "arrival": {"time": "1694889047"}, "stopId": "40584"}, {"stopSequence": 4, "arrival": {"time": "1694889087"}, "stopId": "40594"}, {"stopSequence": 5, "arrival": {"time": "1694889236"}, "stopId": "40593"}, {"stopSequence": 6, "arrival": {"time": "1694889292"}, "stopId": "40597"}, {"stopSequence": 7, "arrival": {"time": "1694889322"}, "stopId": "40598"}, {"stopSequence": 8, "arrival": {"time": "1694889363"}, "stopId": "40599"}, {"stopSequence": 9, "arrival": {"time": "1694889402"}, "stopId": "30963"}, {"stopSequence": 10, "arrival": {"time": "1694889416"}, "stopId": "40601"}, {"stopSequence": 11, "arrival": {"time": "1694889431"}, "stopId": "40602"}, {"stopSequence": 12, "arrival": {"time": "1694889477"}, "stopId": "40603"}, {"stopSequence": 13, "arrival": {"time": "1694889517"}, "stopId": "40604"}, {"stopSequence": 14, "arrival": {"time": "1694889587"}, "stopId": "40606"}, {"stopSequence": 15, "arrival": {"time": "1694889622"}, "stopId": "40607"}, {"stopSequence": 16, "arrival": {"time": "1694889682"}, "stopId": "40609"}, {"stopSequence": 17, "arrival": {"time": "1694889738"}, "stopId": "40610"}, {"stopSequence": 18, "arrival": {"time": "1694889792"}, "stopId": "40611"}, {"stopSequence": 19, "arrival": {"time": "1694889840"}, "stopId": "40612"}, {"stopSequence": 20, "arrival": {"time": "1694889902"}, "stopId": "40620"}, {"stopSequence": 21, "arrival": {"time": "1694889972"}, "stopId": "49281"}, {"stopSequence": 22, "arrival": {"time": "1694890035"}, "stopId": "49282"}, {"stopSequence": 23, "arrival": {"time": "1694890077"}, "stopId": "49283"}, {"stopSequence": 24, "arrival": {"time": "1694890132"}, "stopId": "49284"}, {"stopSequence": 25, "arrival": {"time": "1694890197"}, "stopId": "49285"}, {"stopSequence": 26, "arrival": {"time": "1694890263"}, "stopId": "49286"}, {"stopSequence": 27, "arrival": {"time": "1694890305"}, "stopId": "49287"}, {"stopSequence": 28, "arrival": {"time": "1694890350"}, "stopId": "49288"}, {"stopSequence": 29, "arrival": {"time": "1694890400"}, "stopId": "49289"}, {"stopSequence": 30, "arrival": {"time": "1694890532"}, "stopId": "42294"}, {"stopSequence": 31, "arrival": {"time": "1694890663"}, "stopId": "42295"}, {"stopSequence": 32, "arrival": {"time": "1694890779"}, "stopId": "42296"}, {"stopSequence": 33, "arrival": {"time": "1694890909"}, "stopId": "42297"}, {"stopSequence": 34, "arrival": {"time": "1694891010"}, "stopId": "42298"}, {"stopSequence": 35, "arrival": {"time": "1694891078"}, "stopId": "42299"}, {"stopSequence": 36, "arrival": {"time": "1694891124"}, "stopId": "49295"}, {"stopSequence": 37, "arrival": {"time": "1694891256"}, "stopId": "49296"}, {"stopSequence": 38, "arrival": {"time": "1694891354"}, "stopId": "49297"}, {"stopSequence": 39, "arrival": {"time": "1694891393"}, "stopId": "49298"}, {"stopSequence": 40, "arrival": {"time": "1694891473"}, "stopId": "49299"}, {"stopSequence": 41, "arrival": {"time": "1694891523"}, "stopId": "49300"}, {"stopSequence": 42, "arrival": {"time": "1694891622"}, "stopId": "49301"}, {"stopSequence": 43, "arrival": {"time": "1694891705"}, "stopId": "49302"}, {"stopSequence": 44, "arrival": {"time": "1694891760"}, "stopId": "49303"}, {"stopSequence": 45, "arrival": {"time": "1694891825"}, "stopId": "49304"}, {"stopSequence": 46, "arrival": {"time": "1694891860"}, "stopId": "49305"}, {"stopSequence": 47, "arrival": {"time": "1694891933"}, "stopId": "49306"}, {"stopSequence": 48, "arrival": {"time": "1694891985"}, "stopId": "49307"}, {"stopSequence": 49, "arrival": {"time": "1694892017"}, "stopId": "49308"}, {"stopSequence": 50, "arrival": {"time": "1694892049"}, "stopId": "49309"}, {"stopSequence": 51, "arrival": {"time": "1694892086"}, "stopId": "42315"}, {"stopSequence": 52, "arrival": {"time": "1694892118"}, "stopId": "42316"}, {"stopSequence": 53, "arrival": {"time": "1694892188"}, "stopId": "42317"}, {"stopSequence": 54, "arrival": {"time": "1694892260"}, "stopId": "42318"}, {"stopSequence": 55, "arrival": {"time": "1694892363"}, "stopId": "8606396"}, {"stopSequence": 56, "arrival": {"time": "1694892469"}, "stopId": "38514"}, {"stopSequence": 57, "arrival": {"time": "1694892527"}, "stopId": "38516"}, {"stopSequence": 58, "arrival": {"time": "1694892618"}, "stopId": "38518"}, {"stopSequence": 59, "arrival": {"time": "1694892776"}, "stopId": "38520"}, {"stopSequence": 60, "arrival": {"time": "1694892843"}, "stopId": "38521"}, {"stopSequence": 61, "arrival": {"time": "1694892925"}, "stopId": "38522"}, {"stopSequence": 62, "arrival": {"time": "1694893010"}, "stopId": "38523"}, {"stopSequence": 63, "arrival": {"time": "1694893102"}, "stopId": "38524"}, {"stopSequence": 64, "arrival": {"time": "1694893190"}, "stopId": "38525"}, {"stopSequence": 65, "arrival": {"time": "1694893285"}, "stopId": "38526"}, {"stopSequence": 66, "arrival": {"time": "1694893375"}, "stopId": "38527"}, {"stopSequence": 67, "arrival": {"time": "1694893545"}, "stopId": "38528"}, {"stopSequence": 68, "arrival": {"time": "1694893781"}, "stopId": "38529"}, {"stopSequence": 69, "arrival": {"time": "1694894255"}, "stopId": "38530"}, {"stopSequence": 70, "arrival": {"time": "1694894286"}, "stopId": "16005209"}, {"stopSequence": 71, "arrival": {"time": "1694894900"}, "stopId": "38531"}, {"stopSequence": 72, "arrival": {"time": "1694895032"}, "stopId": "8921285"}, {"stopSequence": 73, "arrival": {"time": "1694895396"}, "stopId": "38532"}, {"stopSequence": 74, "arrival": {"time": "1694895566"}, "stopId": "38533"}, {"stopSequence": 75, "arrival": {"time": "1694895748"}, "stopId": "38534"}, {"stopSequence": 76, "arrival": {"time": "1694895916"}, "stopId": "38535"}, {"stopSequence": 77, "arrival": {"time": "1694896153"}, "stopId": "38536"}, {"stopSequence": 78, "arrival": {"time": "1694896290"}, "stopId": "4838437"}, {"stopSequence": 79, "arrival": {"time": "1694896498"}, "stopId": "45085"}, {"stopSequence": 80, "arrival": {"time": "1694896826"}, "stopId": "45086"}, {"stopSequence": 81, "arrival": {"time": "1694897065"}, "stopId": "38539"}, {"stopSequence": 82, "arrival": {"time": "1694897366"}, "stopId": "38540"}, {"stopSequence": 83, "arrival": {"time": "1694897757"}, "stopId": "38544"}, {"stopSequence": 84, "arrival": {"time": "1694898126"}, "stopId": "38545"}, {"stopSequence": 85, "arrival": {"time": "1694898643"}, "stopId": "38546"}, {"stopSequence": 86, "arrival": {"time": "1694899430"}, "stopId": "38548"}, {"stopSequence": 87, "arrival": {"time": "1694899929"}, "stopId": "38549"}, {"stopSequence": 88, "arrival": {"time": "1694900365"}, "stopId": "38550"}, {"stopSequence": 89, "arrival": {"time": "1694901189"}, "stopId": "38551"}, {"stopSequence": 90, "arrival": {"time": "1694902013"}, "stopId": "38552"}, {"stopSequence": 91, "arrival": {"time": "1694902884"}, "stopId": "49359"}, {"stopSequence": 92, "arrival": {"time": "1694903509"}, "stopId": "49360"}, {"stopSequence": 93, "arrival": {"time": "1694905035"}, "stopId": "49361"}, {"stopSequence": 94, "arrival": {"time": "1694905455"}, "stopId": "49362"}, {"stopSequence": 95, "arrival": {"time": "1694906227"}, "stopId": "49363"}, {"stopSequence": 96, "arrival": {"time": "1694907099"}, "stopId": "49364"}, {"stopSequence": 97, "arrival": {"time": "1694907812"}, "stopId": "49365"}, {"stopSequence": 98, "arrival": {"time": "1694909300"}, "stopId": "38560"}, {"stopSequence": 99, "arrival": {"time": "1694910232"}, "stopId": "42857"}, {"stopSequence": 100, "arrival": {"time": "1694911048"}, "stopId": "38562"}, {"stopSequence": 101, "arrival": {"time": "1694912023"}, "stopId": "38563"}, {"stopSequence": 102, "arrival": {"time": "1694913550"}, "stopId": "42854"}, {"stopSequence": 103, "arrival": {"time": "1694916893"}, "stopId": "38565"}, {"stopSequence": 104, "arrival": {"time": "1694919100"}, "stopId": "40932"}, {"stopSequence": 105, "arrival": {"time": "1694923255"}, "stopId": "38567"}, {"stopSequence": 106, "arrival": {"time": "1694926479"}, "stopId": "38568"}, {"stopSequence": 107, "arrival": {"time": "1694928755"}, "stopId": "38569"}, {"stopSequence": 108, "arrival": {"time": "1694932656"}, "stopId": "38570"}, {"stopSequence": 109, "arrival": {"time": "1694939159"}, "stopId": "38571"}, {"stopSequence": 110, "arrival": {"time": "1694947272"}, "stopId": "38572"}], "vehicle": {"licensePlate": "HDBZ49"}, "timestamp": "1694889027"}, "vehicle": {"trip": {"tripId": "25956-701ff27f-2", "startTime": "16:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "734", "directionId": 0}, "position": {"latitude": -36.951656, "longitude": -73.01099, "bearing": 32.0, "odometer": 0.0, "speed": 2.7777777}, "timestamp": "1694889027", "vehicle": {"licensePlate": "HDBZ49"}}}, {"id": "829fb8ed-0e4d-4407-baf6-4e633c5458da", "tripUpdate": {"trip": {"tripId": "25954-701ff27f-2", "startTime": "15:40:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "734", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 31, "arrival": {"time": "1694889033"}, "stopId": "42295"}, {"stopSequence": 32, "arrival": {"time": "1694889153"}, "stopId": "42296"}, {"stopSequence": 33, "arrival": {"time": "1694889284"}, "stopId": "42297"}, {"stopSequence": 34, "arrival": {"time": "1694889382"}, "stopId": "42298"}, {"stopSequence": 35, "arrival": {"time": "1694889446"}, "stopId": "42299"}, {"stopSequence": 36, "arrival": {"time": "1694889488"}, "stopId": "49295"}, {"stopSequence": 37, "arrival": {"time": "1694889608"}, "stopId": "49296"}, {"stopSequence": 38, "arrival": {"time": "1694889694"}, "stopId": "49297"}, {"stopSequence": 39, "arrival": {"time": "1694889728"}, "stopId": "49298"}, {"stopSequence": 40, "arrival": {"time": "1694889796"}, "stopId": "49299"}, {"stopSequence": 41, "arrival": {"time": "1694889837"}, "stopId": "49300"}, {"stopSequence": 42, "arrival": {"time": "1694889918"}, "stopId": "49301"}, {"stopSequence": 43, "arrival": {"time": "1694889984"}, "stopId": "49302"}, {"stopSequence": 44, "arrival": {"time": "1694890028"}, "stopId": "49303"}, {"stopSequence": 45, "arrival": {"time": "1694890078"}, "stopId": "49304"}, {"stopSequence": 46, "arrival": {"time": "1694890105"}, "stopId": "49305"}, {"stopSequence": 47, "arrival": {"time": "1694890160"}, "stopId": "49306"}, {"stopSequence": 48, "arrival": {"time": "1694890199"}, "stopId": "49307"}, {"stopSequence": 49, "arrival": {"time": "1694890222"}, "stopId": "49308"}, {"stopSequence": 50, "arrival": {"time": "1694890246"}, "stopId": "49309"}, {"stopSequence": 51, "arrival": {"time": "1694890273"}, "stopId": "42315"}, {"stopSequence": 52, "arrival": {"time": "1694890296"}, "stopId": "42316"}, {"stopSequence": 53, "arrival": {"time": "1694890346"}, "stopId": "42317"}, {"stopSequence": 54, "arrival": {"time": "1694890397"}, "stopId": "42318"}, {"stopSequence": 55, "arrival": {"time": "1694890468"}, "stopId": "8606396"}, {"stopSequence": 56, "arrival": {"time": "1694890540"}, "stopId": "38514"}, {"stopSequence": 57, "arrival": {"time": "1694890578"}, "stopId": "38516"}, {"stopSequence": 58, "arrival": {"time": "1694890638"}, "stopId": "38518"}, {"stopSequence": 59, "arrival": {"time": "1694890739"}, "stopId": "38520"}, {"stopSequence": 60, "arrival": {"time": "1694890782"}, "stopId": "38521"}, {"stopSequence": 61, "arrival": {"time": "1694890833"}, "stopId": "38522"}, {"stopSequence": 62, "arrival": {"time": "1694890885"}, "stopId": "38523"}, {"stopSequence": 63, "arrival": {"time": "1694890940"}, "stopId": "38524"}, {"stopSequence": 64, "arrival": {"time": "1694890991"}, "stopId": "38525"}, {"stopSequence": 65, "arrival": {"time": "1694891047"}, "stopId": "38526"}, {"stopSequence": 66, "arrival": {"time": "1694891099"}, "stopId": "38527"}, {"stopSequence": 67, "arrival": {"time": "1694891194"}, "stopId": "38528"}, {"stopSequence": 68, "arrival": {"time": "1694891323"}, "stopId": "38529"}, {"stopSequence": 69, "arrival": {"time": "1694891567"}, "stopId": "38530"}, {"stopSequence": 70, "arrival": {"time": "1694891583"}, "stopId": "16005209"}, {"stopSequence": 71, "arrival": {"time": "1694891876"}, "stopId": "38531"}, {"stopSequence": 72, "arrival": {"time": "1694891936"}, "stopId": "8921285"}, {"stopSequence": 73, "arrival": {"time": "1694892096"}, "stopId": "38532"}, {"stopSequence": 74, "arrival": {"time": "1694892168"}, "stopId": "38533"}, {"stopSequence": 75, "arrival": {"time": "1694892244"}, "stopId": "38534"}, {"stopSequence": 76, "arrival": {"time": "1694892313"}, "stopId": "38535"}, {"stopSequence": 77, "arrival": {"time": "1694892407"}, "stopId": "38536"}, {"stopSequence": 78, "arrival": {"time": "1694892461"}, "stopId": "4838437"}, {"stopSequence": 79, "arrival": {"time": "1694892540"}, "stopId": "45085"}, {"stopSequence": 80, "arrival": {"time": "1694892662"}, "stopId": "45086"}, {"stopSequence": 81, "arrival": {"time": "1694892748"}, "stopId": "38539"}, {"stopSequence": 82, "arrival": {"time": "1694892854"}, "stopId": "38540"}, {"stopSequence": 83, "arrival": {"time": "1694892986"}, "stopId": "38544"}, {"stopSequence": 84, "arrival": {"time": "1694893106"}, "stopId": "38545"}, {"stopSequence": 85, "arrival": {"time": "1694893267"}, "stopId": "38546"}, {"stopSequence": 86, "arrival": {"time": "1694893498"}, "stopId": "38548"}, {"stopSequence": 87, "arrival": {"time": "1694893636"}, "stopId": "38549"}, {"stopSequence": 88, "arrival": {"time": "1694893752"}, "stopId": "38550"}, {"stopSequence": 89, "arrival": {"time": "1694893959"}, "stopId": "38551"}, {"stopSequence": 90, "arrival": {"time": "1694894152"}, "stopId": "38552"}, {"stopSequence": 91, "arrival": {"time": "1694894343"}, "stopId": "49359"}, {"stopSequence": 92, "arrival": {"time": "1694894473"}, "stopId": "49360"}, {"stopSequence": 93, "arrival": {"time": "1694894764"}, "stopId": "49361"}, {"stopSequence": 94, "arrival": {"time": "1694894839"}, "stopId": "49362"}, {"stopSequence": 95, "arrival": {"time": "1694894971"}, "stopId": "49363"}, {"stopSequence": 96, "arrival": {"time": "1694895113"}, "stopId": "49364"}, {"stopSequence": 97, "arrival": {"time": "1694895222"}, "stopId": "49365"}, {"stopSequence": 98, "arrival": {"time": "1694895435"}, "stopId": "38560"}, {"stopSequence": 99, "arrival": {"time": "1694895559"}, "stopId": "42857"}, {"stopSequence": 100, "arrival": {"time": "1694895662"}, "stopId": "38562"}, {"stopSequence": 101, "arrival": {"time": "1694895779"}, "stopId": "38563"}, {"stopSequence": 102, "arrival": {"time": "1694895950"}, "stopId": "42854"}, {"stopSequence": 103, "arrival": {"time": "1694896278"}, "stopId": "38565"}, {"stopSequence": 104, "arrival": {"time": "1694896467"}, "stopId": "40932"}, {"stopSequence": 105, "arrival": {"time": "1694896774"}, "stopId": "38567"}, {"stopSequence": 106, "arrival": {"time": "1694896978"}, "stopId": "38568"}, {"stopSequence": 107, "arrival": {"time": "1694897106"}, "stopId": "38569"}, {"stopSequence": 108, "arrival": {"time": "1694897302"}, "stopId": "38570"}, {"stopSequence": 109, "arrival": {"time": "1694897575"}, "stopId": "38571"}, {"stopSequence": 110, "arrival": {"time": "1694897845"}, "stopId": "38572"}], "vehicle": {"licensePlate": "HJXW52"}, "timestamp": "1694889004"}, "vehicle": {"trip": {"tripId": "25954-701ff27f-2", "startTime": "15:40:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "734", "directionId": 0}, "position": {"latitude": -36.88615, "longitude": -73.03735, "bearing": 343.0, "odometer": 0.0, "speed": 21.11111}, "timestamp": "1694889004", "vehicle": {"licensePlate": "HJXW52"}}}, {"id": "8907e924-141d-47fa-a840-d4fd719470b5", "tripUpdate": {"trip": {"tripId": "25951-701ff27f-2", "startTime": "15:10:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "734", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 85, "arrival": {"time": "1694889104"}, "stopId": "38546"}, {"stopSequence": 86, "arrival": {"time": "1694889231"}, "stopId": "38548"}, {"stopSequence": 87, "arrival": {"time": "1694889302"}, "stopId": "38549"}, {"stopSequence": 88, "arrival": {"time": "1694889359"}, "stopId": "38550"}, {"stopSequence": 89, "arrival": {"time": "1694889456"}, "stopId": "38551"}, {"stopSequence": 90, "arrival": {"time": "1694889540"}, "stopId": "38552"}, {"stopSequence": 91, "arrival": {"time": "1694889619"}, "stopId": "49359"}, {"stopSequence": 92, "arrival": {"time": "1694889671"}, "stopId": "49360"}, {"stopSequence": 93, "arrival": {"time": "1694889779"}, "stopId": "49361"}, {"stopSequence": 94, "arrival": {"time": "1694889806"}, "stopId": "49362"}, {"stopSequence": 95, "arrival": {"time": "1694889851"}, "stopId": "49363"}, {"stopSequence": 96, "arrival": {"time": "1694889898"}, "stopId": "49364"}, {"stopSequence": 97, "arrival": {"time": "1694889934"}, "stopId": "49365"}, {"stopSequence": 98, "arrival": {"time": "1694890000"}, "stopId": "38560"}, {"stopSequence": 99, "arrival": {"time": "1694890037"}, "stopId": "42857"}, {"stopSequence": 100, "arrival": {"time": "1694890067"}, "stopId": "38562"}, {"stopSequence": 101, "arrival": {"time": "1694890100"}, "stopId": "38563"}, {"stopSequence": 102, "arrival": {"time": "1694890147"}, "stopId": "42854"}, {"stopSequence": 103, "arrival": {"time": "1694890233"}, "stopId": "38565"}, {"stopSequence": 104, "arrival": {"time": "1694890279"}, "stopId": "40932"}, {"stopSequence": 105, "arrival": {"time": "1694890351"}, "stopId": "38567"}, {"stopSequence": 106, "arrival": {"time": "1694890397"}, "stopId": "38568"}, {"stopSequence": 107, "arrival": {"time": "1694890425"}, "stopId": "38569"}, {"stopSequence": 108, "arrival": {"time": "1694890466"}, "stopId": "38570"}, {"stopSequence": 109, "arrival": {"time": "1694890521"}, "stopId": "38571"}, {"stopSequence": 110, "arrival": {"time": "1694890573"}, "stopId": "38572"}], "vehicle": {"licensePlate": "HWCW48"}, "timestamp": "1694889036"}, "vehicle": {"trip": {"tripId": "25951-701ff27f-2", "startTime": "15:10:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "734", "directionId": 0}, "position": {"latitude": -36.74612, "longitude": -73.09534, "bearing": 323.0, "odometer": 0.0, "speed": 16.11111}, "timestamp": "1694889036", "vehicle": {"licensePlate": "HWCW48"}}}, {"id": "d91b04ea-a0fd-41d7-9225-057aff2d90e1", "tripUpdate": {"trip": {"tripId": "26064-701ff27f-2", "startTime": "15:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "735", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 49, "arrival": {"time": "1694889077"}, "stopId": "39621"}, {"stopSequence": 50, "arrival": {"time": "1694889128"}, "stopId": "38281"}, {"stopSequence": 51, "arrival": {"time": "1694889186"}, "stopId": "37506"}, {"stopSequence": 52, "arrival": {"time": "1694889228"}, "stopId": "45068"}, {"stopSequence": 53, "arrival": {"time": "1694889357"}, "stopId": "37480"}, {"stopSequence": 54, "arrival": {"time": "1694889420"}, "stopId": "37477"}, {"stopSequence": 55, "arrival": {"time": "1694889488"}, "stopId": "40848"}, {"stopSequence": 56, "arrival": {"time": "1694889572"}, "stopId": "2-Apr"}, {"stopSequence": 57, "arrival": {"time": "1694889632"}, "stopId": "39728"}, {"stopSequence": 58, "arrival": {"time": "1694889725"}, "stopId": "39729"}, {"stopSequence": 59, "arrival": {"time": "1694889749"}, "stopId": "39730"}, {"stopSequence": 60, "arrival": {"time": "1694889849"}, "stopId": "42200"}, {"stopSequence": 61, "arrival": {"time": "1694889893"}, "stopId": "42203"}, {"stopSequence": 62, "arrival": {"time": "1694889946"}, "stopId": "42204"}, {"stopSequence": 63, "arrival": {"time": "1694889987"}, "stopId": "42205"}, {"stopSequence": 64, "arrival": {"time": "1694890046"}, "stopId": "42201"}, {"stopSequence": 65, "arrival": {"time": "1694890291"}, "stopId": "42206"}, {"stopSequence": 66, "arrival": {"time": "1694890345"}, "stopId": "42207"}, {"stopSequence": 67, "arrival": {"time": "1694890403"}, "stopId": "42208"}, {"stopSequence": 68, "arrival": {"time": "1694890527"}, "stopId": "42564"}, {"stopSequence": 69, "arrival": {"time": "1694890628"}, "stopId": "42214"}, {"stopSequence": 70, "arrival": {"time": "1694890741"}, "stopId": "42209"}, {"stopSequence": 71, "arrival": {"time": "1694890862"}, "stopId": "42210"}, {"stopSequence": 72, "arrival": {"time": "1694891048"}, "stopId": "40951"}, {"stopSequence": 73, "arrival": {"time": "1694891114"}, "stopId": "40952"}, {"stopSequence": 74, "arrival": {"time": "1694891178"}, "stopId": "40953"}, {"stopSequence": 75, "arrival": {"time": "1694891227"}, "stopId": "40954"}, {"stopSequence": 76, "arrival": {"time": "1694891306"}, "stopId": "40955"}, {"stopSequence": 77, "arrival": {"time": "1694891349"}, "stopId": "40956"}, {"stopSequence": 78, "arrival": {"time": "1694891412"}, "stopId": "40957"}, {"stopSequence": 79, "arrival": {"time": "1694891479"}, "stopId": "40958"}, {"stopSequence": 80, "arrival": {"time": "1694891507"}, "stopId": "40959"}, {"stopSequence": 81, "arrival": {"time": "1694891671"}, "stopId": "40960"}, {"stopSequence": 82, "arrival": {"time": "1694891796"}, "stopId": "30962"}, {"stopSequence": 83, "arrival": {"time": "1694891867"}, "stopId": "40961"}, {"stopSequence": 84, "arrival": {"time": "1694891937"}, "stopId": "40608"}, {"stopSequence": 85, "arrival": {"time": "1694892080"}, "stopId": "40605"}, {"stopSequence": 86, "arrival": {"time": "1694892372"}, "stopId": "40597"}, {"stopSequence": 87, "arrival": {"time": "1694892471"}, "stopId": "40593"}, {"stopSequence": 88, "arrival": {"time": "1694892576"}, "stopId": "40962"}, {"stopSequence": 89, "arrival": {"time": "1694892591"}, "stopId": "40588"}, {"stopSequence": 90, "arrival": {"time": "1694892683"}, "stopId": "40594"}, {"stopSequence": 92, "arrival": {"time": "1694892726"}, "stopId": "40585"}, {"stopSequence": 93, "arrival": {"time": "1694892743"}, "stopId": "40584"}, {"stopSequence": 94, "arrival": {"time": "1694892931"}, "stopId": "40587"}], "vehicle": {"licensePlate": "DVYS80"}, "timestamp": "1694889036"}, "vehicle": {"trip": {"tripId": "26064-701ff27f-2", "startTime": "15:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "735", "directionId": 1}, "position": {"latitude": -36.820053, "longitude": -73.0443, "bearing": 154.0, "odometer": 0.0, "speed": 10.0}, "timestamp": "1694889036", "vehicle": {"licensePlate": "DVYS80"}}}, {"id": "85705a2e-2455-4970-9523-d9306ed5efa0", "tripUpdate": {"trip": {"tripId": "26062-701ff27f-2", "startTime": "14:41:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "735", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 72, "arrival": {"time": "1694889220"}, "stopId": "40951"}, {"stopSequence": 73, "arrival": {"time": "1694889284"}, "stopId": "40952"}, {"stopSequence": 74, "arrival": {"time": "1694889344"}, "stopId": "40953"}, {"stopSequence": 75, "arrival": {"time": "1694889389"}, "stopId": "40954"}, {"stopSequence": 76, "arrival": {"time": "1694889462"}, "stopId": "40955"}, {"stopSequence": 77, "arrival": {"time": "1694889500"}, "stopId": "40956"}, {"stopSequence": 78, "arrival": {"time": "1694889555"}, "stopId": "40957"}, {"stopSequence": 79, "arrival": {"time": "1694889613"}, "stopId": "40958"}, {"stopSequence": 80, "arrival": {"time": "1694889637"}, "stopId": "40959"}, {"stopSequence": 81, "arrival": {"time": "1694889771"}, "stopId": "40960"}, {"stopSequence": 82, "arrival": {"time": "1694889871"}, "stopId": "30962"}, {"stopSequence": 83, "arrival": {"time": "1694889926"}, "stopId": "40961"}, {"stopSequence": 84, "arrival": {"time": "1694889979"}, "stopId": "40608"}, {"stopSequence": 85, "arrival": {"time": "1694890084"}, "stopId": "40605"}, {"stopSequence": 86, "arrival": {"time": "1694890288"}, "stopId": "40597"}, {"stopSequence": 87, "arrival": {"time": "1694890354"}, "stopId": "40593"}, {"stopSequence": 88, "arrival": {"time": "1694890422"}, "stopId": "40962"}, {"stopSequence": 89, "arrival": {"time": "1694890432"}, "stopId": "40588"}, {"stopSequence": 90, "arrival": {"time": "1694890490"}, "stopId": "40594"}, {"stopSequence": 92, "arrival": {"time": "1694890517"}, "stopId": "40585"}, {"stopSequence": 93, "arrival": {"time": "1694890528"}, "stopId": "40584"}, {"stopSequence": 94, "arrival": {"time": "1694890643"}, "stopId": "40587"}], "vehicle": {"licensePlate": "DXSH17"}, "timestamp": "1694889039"}, "vehicle": {"trip": {"tripId": "26062-701ff27f-2", "startTime": "14:41:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "735", "directionId": 1}, "position": {"latitude": -36.890526, "longitude": -73.03594, "bearing": 176.0, "odometer": 0.0, "speed": 20.833334}, "timestamp": "1694889039", "vehicle": {"licensePlate": "DXSH17"}}}, {"id": "e051bdb8-9b85-4162-b92b-c8518ef62bb8", "tripUpdate": {"trip": {"tripId": "26065-701ff27f-2", "startTime": "15:11:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "735", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 36, "arrival": {"time": "1694889042"}, "stopId": "44898"}, {"stopSequence": 37, "arrival": {"time": "1694889223"}, "stopId": "40993"}, {"stopSequence": 38, "arrival": {"time": "1694889476"}, "stopId": "16005188"}, {"stopSequence": 39, "arrival": {"time": "1694889718"}, "stopId": "40995"}, {"stopSequence": 40, "arrival": {"time": "1694889797"}, "stopId": "40996"}, {"stopSequence": 41, "arrival": {"time": "1694889873"}, "stopId": "40997"}, {"stopSequence": 42, "arrival": {"time": "1694889930"}, "stopId": "39614"}, {"stopSequence": 43, "arrival": {"time": "1694889976"}, "stopId": "39615"}, {"stopSequence": 44, "arrival": {"time": "1694890031"}, "stopId": "39616"}, {"stopSequence": 45, "arrival": {"time": "1694890077"}, "stopId": "39617"}, {"stopSequence": 46, "arrival": {"time": "1694890133"}, "stopId": "39618"}, {"stopSequence": 47, "arrival": {"time": "1694890176"}, "stopId": "39619"}, {"stopSequence": 48, "arrival": {"time": "1694890216"}, "stopId": "39620"}, {"stopSequence": 49, "arrival": {"time": "1694890282"}, "stopId": "39621"}, {"stopSequence": 50, "arrival": {"time": "1694890329"}, "stopId": "38281"}, {"stopSequence": 51, "arrival": {"time": "1694890384"}, "stopId": "37506"}, {"stopSequence": 52, "arrival": {"time": "1694890423"}, "stopId": "45068"}, {"stopSequence": 53, "arrival": {"time": "1694890547"}, "stopId": "37480"}, {"stopSequence": 54, "arrival": {"time": "1694890609"}, "stopId": "37477"}, {"stopSequence": 55, "arrival": {"time": "1694890677"}, "stopId": "40848"}, {"stopSequence": 56, "arrival": {"time": "1694890762"}, "stopId": "2-Apr"}, {"stopSequence": 57, "arrival": {"time": "1694890824"}, "stopId": "39728"}, {"stopSequence": 58, "arrival": {"time": "1694890922"}, "stopId": "39729"}, {"stopSequence": 59, "arrival": {"time": "1694890947"}, "stopId": "39730"}, {"stopSequence": 60, "arrival": {"time": "1694891056"}, "stopId": "42200"}, {"stopSequence": 61, "arrival": {"time": "1694891105"}, "stopId": "42203"}, {"stopSequence": 62, "arrival": {"time": "1694891164"}, "stopId": "42204"}, {"stopSequence": 63, "arrival": {"time": "1694891210"}, "stopId": "42205"}, {"stopSequence": 64, "arrival": {"time": "1694891277"}, "stopId": "42201"}, {"stopSequence": 65, "arrival": {"time": "1694891566"}, "stopId": "42206"}, {"stopSequence": 66, "arrival": {"time": "1694891632"}, "stopId": "42207"}, {"stopSequence": 67, "arrival": {"time": "1694891704"}, "stopId": "42208"}, {"stopSequence": 68, "arrival": {"time": "1694891861"}, "stopId": "42564"}, {"stopSequence": 69, "arrival": {"time": "1694891991"}, "stopId": "42214"}, {"stopSequence": 70, "arrival": {"time": "1694892141"}, "stopId": "42209"}, {"stopSequence": 71, "arrival": {"time": "1694892305"}, "stopId": "42210"}, {"stopSequence": 72, "arrival": {"time": "1694892565"}, "stopId": "40951"}, {"stopSequence": 73, "arrival": {"time": "1694892661"}, "stopId": "40952"}, {"stopSequence": 74, "arrival": {"time": "1694892754"}, "stopId": "40953"}, {"stopSequence": 75, "arrival": {"time": "1694892826"}, "stopId": "40954"}, {"stopSequence": 76, "arrival": {"time": "1694892945"}, "stopId": "40955"}, {"stopSequence": 77, "arrival": {"time": "1694893010"}, "stopId": "40956"}, {"stopSequence": 78, "arrival": {"time": "1694893106"}, "stopId": "40957"}, {"stopSequence": 79, "arrival": {"time": "1694893210"}, "stopId": "40958"}, {"stopSequence": 80, "arrival": {"time": "1694893254"}, "stopId": "40959"}, {"stopSequence": 81, "arrival": {"time": "1694893514"}, "stopId": "40960"}, {"stopSequence": 82, "arrival": {"time": "1694893720"}, "stopId": "30962"}, {"stopSequence": 83, "arrival": {"time": "1694893839"}, "stopId": "40961"}, {"stopSequence": 84, "arrival": {"time": "1694893958"}, "stopId": "40608"}, {"stopSequence": 85, "arrival": {"time": "1694894206"}, "stopId": "40605"}, {"stopSequence": 86, "arrival": {"time": "1694894734"}, "stopId": "40597"}, {"stopSequence": 87, "arrival": {"time": "1694894918"}, "stopId": "40593"}, {"stopSequence": 88, "arrival": {"time": "1694895119"}, "stopId": "40962"}, {"stopSequence": 89, "arrival": {"time": "1694895148"}, "stopId": "40588"}, {"stopSequence": 90, "arrival": {"time": "1694895328"}, "stopId": "40594"}, {"stopSequence": 92, "arrival": {"time": "1694895414"}, "stopId": "40585"}, {"stopSequence": 93, "arrival": {"time": "1694895448"}, "stopId": "40584"}, {"stopSequence": 94, "arrival": {"time": "1694895831"}, "stopId": "40587"}], "vehicle": {"licensePlate": "FFRL22"}, "timestamp": "1694889035"}, "vehicle": {"trip": {"tripId": "26065-701ff27f-2", "startTime": "15:11:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "735", "directionId": 1}, "position": {"latitude": -36.774303, "longitude": -73.08086, "bearing": 153.0, "odometer": 0.0, "speed": 13.888889}, "timestamp": "1694889035", "vehicle": {"licensePlate": "FFRL22"}}}, {"id": "4bc3cfe9-e79f-431d-95ae-1a510d006a39", "tripUpdate": {"trip": {"tripId": "26063-701ff27f-2", "startTime": "14:51:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "735", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 57, "arrival": {"time": "1694889065"}, "stopId": "39728"}, {"stopSequence": 58, "arrival": {"time": "1694889164"}, "stopId": "39729"}, {"stopSequence": 59, "arrival": {"time": "1694889190"}, "stopId": "39730"}, {"stopSequence": 60, "arrival": {"time": "1694889296"}, "stopId": "42200"}, {"stopSequence": 61, "arrival": {"time": "1694889342"}, "stopId": "42203"}, {"stopSequence": 62, "arrival": {"time": "1694889397"}, "stopId": "42204"}, {"stopSequence": 63, "arrival": {"time": "1694889439"}, "stopId": "42205"}, {"stopSequence": 64, "arrival": {"time": "1694889500"}, "stopId": "42201"}, {"stopSequence": 65, "arrival": {"time": "1694889749"}, "stopId": "42206"}, {"stopSequence": 66, "arrival": {"time": "1694889803"}, "stopId": "42207"}, {"stopSequence": 67, "arrival": {"time": "1694889861"}, "stopId": "42208"}, {"stopSequence": 68, "arrival": {"time": "1694889983"}, "stopId": "42564"}, {"stopSequence": 69, "arrival": {"time": "1694890081"}, "stopId": "42214"}, {"stopSequence": 70, "arrival": {"time": "1694890189"}, "stopId": "42209"}, {"stopSequence": 71, "arrival": {"time": "1694890304"}, "stopId": "42210"}, {"stopSequence": 72, "arrival": {"time": "1694890479"}, "stopId": "40951"}, {"stopSequence": 73, "arrival": {"time": "1694890540"}, "stopId": "40952"}, {"stopSequence": 74, "arrival": {"time": "1694890599"}, "stopId": "40953"}, {"stopSequence": 75, "arrival": {"time": "1694890644"}, "stopId": "40954"}, {"stopSequence": 76, "arrival": {"time": "1694890717"}, "stopId": "40955"}, {"stopSequence": 77, "arrival": {"time": "1694890755"}, "stopId": "40956"}, {"stopSequence": 78, "arrival": {"time": "1694890812"}, "stopId": "40957"}, {"stopSequence": 79, "arrival": {"time": "1694890872"}, "stopId": "40958"}, {"stopSequence": 80, "arrival": {"time": "1694890898"}, "stopId": "40959"}, {"stopSequence": 81, "arrival": {"time": "1694891043"}, "stopId": "40960"}, {"stopSequence": 82, "arrival": {"time": "1694891153"}, "stopId": "30962"}, {"stopSequence": 83, "arrival": {"time": "1694891215"}, "stopId": "40961"}, {"stopSequence": 84, "arrival": {"time": "1694891276"}, "stopId": "40608"}, {"stopSequence": 85, "arrival": {"time": "1694891399"}, "stopId": "40605"}, {"stopSequence": 86, "arrival": {"time": "1694891647"}, "stopId": "40597"}, {"stopSequence": 87, "arrival": {"time": "1694891729"}, "stopId": "40593"}, {"stopSequence": 88, "arrival": {"time": "1694891817"}, "stopId": "40962"}, {"stopSequence": 89, "arrival": {"time": "1694891829"}, "stopId": "40588"}, {"stopSequence": 90, "arrival": {"time": "1694891905"}, "stopId": "40594"}, {"stopSequence": 92, "arrival": {"time": "1694891941"}, "stopId": "40585"}, {"stopSequence": 93, "arrival": {"time": "1694891954"}, "stopId": "40584"}, {"stopSequence": 94, "arrival": {"time": "1694892108"}, "stopId": "40587"}], "vehicle": {"licensePlate": "GGPS79"}, "timestamp": "1694889003"}, "vehicle": {"trip": {"tripId": "26063-701ff27f-2", "startTime": "14:51:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "735", "directionId": 1}, "position": {"latitude": -36.834167, "longitude": -73.05734, "bearing": 153.0, "odometer": 0.0, "speed": 0.2777778}, "timestamp": "1694889003", "vehicle": {"licensePlate": "GGPS79"}}}, {"id": "792651fb-fa8b-4514-b7c2-f73244f6030f", "tripUpdate": {"trip": {"tripId": "26067-701ff27f-2", "startTime": "15:31:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "735", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 6, "arrival": {"time": "1694889038"}, "stopId": "40932"}, {"stopSequence": 7, "arrival": {"time": "1694889088"}, "stopId": "42853"}, {"stopSequence": 8, "arrival": {"time": "1694889189"}, "stopId": "42854"}, {"stopSequence": 9, "arrival": {"time": "1694889239"}, "stopId": "42855"}, {"stopSequence": 10, "arrival": {"time": "1694889277"}, "stopId": "41975"}, {"stopSequence": 11, "arrival": {"time": "1694889300"}, "stopId": "42857"}, {"stopSequence": 12, "arrival": {"time": "1694889330"}, "stopId": "38697"}, {"stopSequence": 13, "arrival": {"time": "1694889380"}, "stopId": "38646"}, {"stopSequence": 14, "arrival": {"time": "1694889410"}, "stopId": "38632"}, {"stopSequence": 15, "arrival": {"time": "1694889495"}, "stopId": "38767"}, {"stopSequence": 16, "arrival": {"time": "1694889558"}, "stopId": "38768"}, {"stopSequence": 17, "arrival": {"time": "1694889606"}, "stopId": "38769"}, {"stopSequence": 18, "arrival": {"time": "1694889646"}, "stopId": "49357"}, {"stopSequence": 19, "arrival": {"time": "1694889685"}, "stopId": "38771"}, {"stopSequence": 20, "arrival": {"time": "1694889728"}, "stopId": "38668"}, {"stopSequence": 21, "arrival": {"time": "1694889823"}, "stopId": "38661"}, {"stopSequence": 22, "arrival": {"time": "1694889897"}, "stopId": "38657"}, {"stopSequence": 23, "arrival": {"time": "1694889964"}, "stopId": "38743"}, {"stopSequence": 24, "arrival": {"time": "1694890028"}, "stopId": "38652"}, {"stopSequence": 25, "arrival": {"time": "1694890090"}, "stopId": "38721"}, {"stopSequence": 26, "arrival": {"time": "1694890145"}, "stopId": "38659"}, {"stopSequence": 27, "arrival": {"time": "1694890226"}, "stopId": "38674"}, {"stopSequence": 28, "arrival": {"time": "1694890289"}, "stopId": "38649"}, {"stopSequence": 29, "arrival": {"time": "1694890368"}, "stopId": "38718"}, {"stopSequence": 30, "arrival": {"time": "1694890425"}, "stopId": "38735"}, {"stopSequence": 31, "arrival": {"time": "1694890479"}, "stopId": "42270"}, {"stopSequence": 32, "arrival": {"time": "1694890533"}, "stopId": "42271"}, {"stopSequence": 33, "arrival": {"time": "1694890597"}, "stopId": "4838438"}, {"stopSequence": 34, "arrival": {"time": "1694890746"}, "stopId": "44896"}, {"stopSequence": 35, "arrival": {"time": "1694890796"}, "stopId": "44897"}, {"stopSequence": 36, "arrival": {"time": "1694890871"}, "stopId": "44898"}, {"stopSequence": 37, "arrival": {"time": "1694891052"}, "stopId": "40993"}, {"stopSequence": 38, "arrival": {"time": "1694891324"}, "stopId": "16005188"}, {"stopSequence": 39, "arrival": {"time": "1694891610"}, "stopId": "40995"}, {"stopSequence": 40, "arrival": {"time": "1694891708"}, "stopId": "40996"}, {"stopSequence": 41, "arrival": {"time": "1694891805"}, "stopId": "40997"}, {"stopSequence": 42, "arrival": {"time": "1694891879"}, "stopId": "39614"}, {"stopSequence": 43, "arrival": {"time": "1694891941"}, "stopId": "39615"}, {"stopSequence": 44, "arrival": {"time": "1694892015"}, "stopId": "39616"}, {"stopSequence": 45, "arrival": {"time": "1694892079"}, "stopId": "39617"}, {"stopSequence": 46, "arrival": {"time": "1694892158"}, "stopId": "39618"}, {"stopSequence": 47, "arrival": {"time": "1694892220"}, "stopId": "39619"}, {"stopSequence": 48, "arrival": {"time": "1694892278"}, "stopId": "39620"}, {"stopSequence": 49, "arrival": {"time": "1694892376"}, "stopId": "39621"}, {"stopSequence": 50, "arrival": {"time": "1694892447"}, "stopId": "38281"}, {"stopSequence": 51, "arrival": {"time": "1694892531"}, "stopId": "37506"}, {"stopSequence": 52, "arrival": {"time": "1694892593"}, "stopId": "45068"}, {"stopSequence": 53, "arrival": {"time": "1694892792"}, "stopId": "37480"}, {"stopSequence": 54, "arrival": {"time": "1694892894"}, "stopId": "37477"}, {"stopSequence": 55, "arrival": {"time": "1694893010"}, "stopId": "40848"}, {"stopSequence": 56, "arrival": {"time": "1694893158"}, "stopId": "2-Apr"}, {"stopSequence": 57, "arrival": {"time": "1694893269"}, "stopId": "39728"}, {"stopSequence": 58, "arrival": {"time": "1694893448"}, "stopId": "39729"}, {"stopSequence": 59, "arrival": {"time": "1694893496"}, "stopId": "39730"}, {"stopSequence": 60, "arrival": {"time": "1694893705"}, "stopId": "42200"}, {"stopSequence": 61, "arrival": {"time": "1694893800"}, "stopId": "42203"}, {"stopSequence": 62, "arrival": {"time": "1694893919"}, "stopId": "42204"}, {"stopSequence": 63, "arrival": {"time": "1694894012"}, "stopId": "42205"}, {"stopSequence": 64, "arrival": {"time": "1694894152"}, "stopId": "42201"}, {"stopSequence": 65, "arrival": {"time": "1694894792"}, "stopId": "42206"}, {"stopSequence": 66, "arrival": {"time": "1694894946"}, "stopId": "42207"}, {"stopSequence": 67, "arrival": {"time": "1694895120"}, "stopId": "42208"}, {"stopSequence": 68, "arrival": {"time": "1694895512"}, "stopId": "42564"}, {"stopSequence": 69, "arrival": {"time": "1694895855"}, "stopId": "42214"}, {"stopSequence": 70, "arrival": {"time": "1694896267"}, "stopId": "42209"}, {"stopSequence": 71, "arrival": {"time": "1694896745"}, "stopId": "42210"}, {"stopSequence": 72, "arrival": {"time": "1694897565"}, "stopId": "40951"}, {"stopSequence": 73, "arrival": {"time": "1694897886"}, "stopId": "40952"}, {"stopSequence": 74, "arrival": {"time": "1694898210"}, "stopId": "40953"}, {"stopSequence": 75, "arrival": {"time": "1694898467"}, "stopId": "40954"}, {"stopSequence": 76, "arrival": {"time": "1694898910"}, "stopId": "40955"}, {"stopSequence": 77, "arrival": {"time": "1694899159"}, "stopId": "40956"}, {"stopSequence": 78, "arrival": {"time": "1694899544"}, "stopId": "40957"}, {"stopSequence": 79, "arrival": {"time": "1694899972"}, "stopId": "40958"}, {"stopSequence": 80, "arrival": {"time": "1694900161"}, "stopId": "40959"}, {"stopSequence": 81, "arrival": {"time": "1694901342"}, "stopId": "40960"}, {"stopSequence": 82, "arrival": {"time": "1694902373"}, "stopId": "30962"}, {"stopSequence": 83, "arrival": {"time": "1694903012"}, "stopId": "40961"}, {"stopSequence": 84, "arrival": {"time": "1694903687"}, "stopId": "40608"}, {"stopSequence": 85, "arrival": {"time": "1694905219"}, "stopId": "40605"}, {"stopSequence": 86, "arrival": {"time": "1694909196"}, "stopId": "40597"}, {"stopSequence": 87, "arrival": {"time": "1694910880"}, "stopId": "40593"}, {"stopSequence": 88, "arrival": {"time": "1694912935"}, "stopId": "40962"}, {"stopSequence": 89, "arrival": {"time": "1694913249"}, "stopId": "40588"}, {"stopSequence": 90, "arrival": {"time": "1694915357"}, "stopId": "40594"}, {"stopSequence": 91, "arrival": {"time": "1694915358"}, "stopId": "40586"}, {"stopSequence": 92, "arrival": {"time": "1694916459"}, "stopId": "40585"}, {"stopSequence": 93, "arrival": {"time": "1694916909"}, "stopId": "40584"}, {"stopSequence": 94, "arrival": {"time": "1694922862"}, "stopId": "40587"}], "vehicle": {"licensePlate": "GLCY28"}, "timestamp": "1694889003"}, "vehicle": {"trip": {"tripId": "26067-701ff27f-2", "startTime": "15:31:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "735", "directionId": 1}, "position": {"latitude": -36.7249, "longitude": -73.11769, "bearing": 76.0, "odometer": 0.0, "speed": 1.9444444}, "timestamp": "1694889003", "vehicle": {"licensePlate": "GLCY28"}}}, {"id": "d42c6bd0-fc9b-4f3f-ab98-0de126ac7a45", "tripUpdate": {"trip": {"tripId": "26066-701ff27f-2", "startTime": "15:21:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "735", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 14, "arrival": {"time": "1694889038"}, "stopId": "38632"}, {"stopSequence": 15, "arrival": {"time": "1694889128"}, "stopId": "38767"}, {"stopSequence": 16, "arrival": {"time": "1694889194"}, "stopId": "38768"}, {"stopSequence": 17, "arrival": {"time": "1694889244"}, "stopId": "38769"}, {"stopSequence": 18, "arrival": {"time": "1694889286"}, "stopId": "49357"}, {"stopSequence": 19, "arrival": {"time": "1694889327"}, "stopId": "38771"}, {"stopSequence": 20, "arrival": {"time": "1694889372"}, "stopId": "38668"}, {"stopSequence": 21, "arrival": {"time": "1694889470"}, "stopId": "38661"}, {"stopSequence": 22, "arrival": {"time": "1694889546"}, "stopId": "38657"}, {"stopSequence": 23, "arrival": {"time": "1694889614"}, "stopId": "38743"}, {"stopSequence": 24, "arrival": {"time": "1694889679"}, "stopId": "38652"}, {"stopSequence": 25, "arrival": {"time": "1694889741"}, "stopId": "38721"}, {"stopSequence": 26, "arrival": {"time": "1694889797"}, "stopId": "38659"}, {"stopSequence": 27, "arrival": {"time": "1694889878"}, "stopId": "38674"}, {"stopSequence": 28, "arrival": {"time": "1694889941"}, "stopId": "38649"}, {"stopSequence": 29, "arrival": {"time": "1694890018"}, "stopId": "38718"}, {"stopSequence": 30, "arrival": {"time": "1694890075"}, "stopId": "38735"}, {"stopSequence": 31, "arrival": {"time": "1694890128"}, "stopId": "42270"}, {"stopSequence": 32, "arrival": {"time": "1694890180"}, "stopId": "42271"}, {"stopSequence": 33, "arrival": {"time": "1694890242"}, "stopId": "4838438"}, {"stopSequence": 34, "arrival": {"time": "1694890387"}, "stopId": "44896"}, {"stopSequence": 35, "arrival": {"time": "1694890435"}, "stopId": "44897"}, {"stopSequence": 36, "arrival": {"time": "1694890506"}, "stopId": "44898"}, {"stopSequence": 37, "arrival": {"time": "1694890678"}, "stopId": "40993"}, {"stopSequence": 38, "arrival": {"time": "1694890933"}, "stopId": "16005188"}, {"stopSequence": 39, "arrival": {"time": "1694891196"}, "stopId": "40995"}, {"stopSequence": 40, "arrival": {"time": "1694891286"}, "stopId": "40996"}, {"stopSequence": 41, "arrival": {"time": "1694891374"}, "stopId": "40997"}, {"stopSequence": 42, "arrival": {"time": "1694891441"}, "stopId": "39614"}, {"stopSequence": 43, "arrival": {"time": "1694891497"}, "stopId": "39615"}, {"stopSequence": 44, "arrival": {"time": "1694891563"}, "stopId": "39616"}, {"stopSequence": 45, "arrival": {"time": "1694891620"}, "stopId": "39617"}, {"stopSequence": 46, "arrival": {"time": "1694891690"}, "stopId": "39618"}, {"stopSequence": 47, "arrival": {"time": "1694891745"}, "stopId": "39619"}, {"stopSequence": 48, "arrival": {"time": "1694891796"}, "stopId": "39620"}, {"stopSequence": 49, "arrival": {"time": "1694891883"}, "stopId": "39621"}, {"stopSequence": 50, "arrival": {"time": "1694891946"}, "stopId": "38281"}, {"stopSequence": 51, "arrival": {"time": "1694892018"}, "stopId": "37506"}, {"stopSequence": 52, "arrival": {"time": "1694892073"}, "stopId": "45068"}, {"stopSequence": 53, "arrival": {"time": "1694892245"}, "stopId": "37480"}, {"stopSequence": 54, "arrival": {"time": "1694892333"}, "stopId": "37477"}, {"stopSequence": 55, "arrival": {"time": "1694892432"}, "stopId": "40848"}, {"stopSequence": 56, "arrival": {"time": "1694892559"}, "stopId": "2-Apr"}, {"stopSequence": 57, "arrival": {"time": "1694892653"}, "stopId": "39728"}, {"stopSequence": 58, "arrival": {"time": "1694892804"}, "stopId": "39729"}, {"stopSequence": 59, "arrival": {"time": "1694892844"}, "stopId": "39730"}, {"stopSequence": 60, "arrival": {"time": "1694893019"}, "stopId": "42200"}, {"stopSequence": 61, "arrival": {"time": "1694893098"}, "stopId": "42203"}, {"stopSequence": 62, "arrival": {"time": "1694893196"}, "stopId": "42204"}, {"stopSequence": 63, "arrival": {"time": "1694893273"}, "stopId": "42205"}, {"stopSequence": 64, "arrival": {"time": "1694893387"}, "stopId": "42201"}, {"stopSequence": 65, "arrival": {"time": "1694893904"}, "stopId": "42206"}, {"stopSequence": 66, "arrival": {"time": "1694894026"}, "stopId": "42207"}, {"stopSequence": 67, "arrival": {"time": "1694894164"}, "stopId": "42208"}, {"stopSequence": 68, "arrival": {"time": "1694894471"}, "stopId": "42564"}, {"stopSequence": 69, "arrival": {"time": "1694894736"}, "stopId": "42214"}, {"stopSequence": 70, "arrival": {"time": "1694895051"}, "stopId": "42209"}, {"stopSequence": 71, "arrival": {"time": "1694895410"}, "stopId": "42210"}, {"stopSequence": 72, "arrival": {"time": "1694896013"}, "stopId": "40951"}, {"stopSequence": 73, "arrival": {"time": "1694896245"}, "stopId": "40952"}, {"stopSequence": 74, "arrival": {"time": "1694896477"}, "stopId": "40953"}, {"stopSequence": 75, "arrival": {"time": "1694896659"}, "stopId": "40954"}, {"stopSequence": 76, "arrival": {"time": "1694896969"}, "stopId": "40955"}, {"stopSequence": 77, "arrival": {"time": "1694897141"}, "stopId": "40956"}, {"stopSequence": 78, "arrival": {"time": "1694897405"}, "stopId": "40957"}, {"stopSequence": 79, "arrival": {"time": "1694897694"}, "stopId": "40958"}, {"stopSequence": 80, "arrival": {"time": "1694897821"}, "stopId": "40959"}, {"stopSequence": 81, "arrival": {"time": "1694898596"}, "stopId": "40960"}, {"stopSequence": 82, "arrival": {"time": "1694899251"}, "stopId": "30962"}, {"stopSequence": 83, "arrival": {"time": "1694899647"}, "stopId": "40961"}, {"stopSequence": 84, "arrival": {"time": "1694900057"}, "stopId": "40608"}, {"stopSequence": 85, "arrival": {"time": "1694900958"}, "stopId": "40605"}, {"stopSequence": 86, "arrival": {"time": "1694903126"}, "stopId": "40597"}, {"stopSequence": 87, "arrival": {"time": "1694903976"}, "stopId": "40593"}, {"stopSequence": 88, "arrival": {"time": "1694904963"}, "stopId": "40962"}, {"stopSequence": 89, "arrival": {"time": "1694905109"}, "stopId": "40588"}, {"stopSequence": 90, "arrival": {"time": "1694906062"}, "stopId": "40594"}, {"stopSequence": 91, "arrival": {"time": "1694906063"}, "stopId": "40586"}, {"stopSequence": 92, "arrival": {"time": "1694906541"}, "stopId": "40585"}, {"stopSequence": 93, "arrival": {"time": "1694906733"}, "stopId": "40584"}, {"stopSequence": 94, "arrival": {"time": "1694909087"}, "stopId": "40587"}], "vehicle": {"licensePlate": "GWSG58"}, "timestamp": "1694889008"}, "vehicle": {"trip": {"tripId": "26066-701ff27f-2", "startTime": "15:21:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "735", "directionId": 1}, "position": {"latitude": -36.713505, "longitude": -73.11313, "bearing": 135.0, "odometer": 0.0, "speed": 1.1111112}, "timestamp": "1694889008", "vehicle": {"licensePlate": "GWSG58"}}}, {"id": "382197bf-3c91-4856-855e-cd7977896cab", "tripUpdate": {"trip": {"tripId": "21062-701ff27f-2", "startTime": "14:21:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "736", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 86, "arrival": {"time": "1694889130"}, "stopId": "7-Jul"}, {"stopSequence": 87, "arrival": {"time": "1694889344"}, "stopId": "7-Feb"}, {"stopSequence": 88, "arrival": {"time": "1694889413"}, "stopId": "8-Jan"}, {"stopSequence": 89, "arrival": {"time": "1694889444"}, "stopId": "9-Jan"}, {"stopSequence": 90, "arrival": {"time": "1694889484"}, "stopId": "10-Apr"}, {"stopSequence": 91, "arrival": {"time": "1694889542"}, "stopId": "10-Jan"}, {"stopSequence": 92, "arrival": {"time": "1694889583"}, "stopId": "44863"}, {"stopSequence": 93, "arrival": {"time": "1694889614"}, "stopId": "10-Mar"}, {"stopSequence": 94, "arrival": {"time": "1694889668"}, "stopId": "11-Jan"}, {"stopSequence": 95, "arrival": {"time": "1694889711"}, "stopId": "44866"}, {"stopSequence": 96, "arrival": {"time": "1694889756"}, "stopId": "44867"}, {"stopSequence": 97, "arrival": {"time": "1694889788"}, "stopId": "44868"}, {"stopSequence": 98, "arrival": {"time": "1694889807"}, "stopId": "44869"}, {"stopSequence": 99, "arrival": {"time": "1694889842"}, "stopId": "44870"}, {"stopSequence": 100, "arrival": {"time": "1694889871"}, "stopId": "44871"}, {"stopSequence": 101, "arrival": {"time": "1694889909"}, "stopId": "44872"}, {"stopSequence": 102, "arrival": {"time": "1694889968"}, "stopId": "50020"}, {"stopSequence": 103, "arrival": {"time": "1694890049"}, "stopId": "14-11"}, {"stopSequence": 104, "arrival": {"time": "1694890086"}, "stopId": "91162"}, {"stopSequence": 105, "arrival": {"time": "1694890164"}, "stopId": "50023"}, {"stopSequence": 106, "arrival": {"time": "1694890261"}, "stopId": "14-Jul"}, {"stopSequence": 107, "arrival": {"time": "1694890294"}, "stopId": "14-Apr"}, {"stopSequence": 108, "arrival": {"time": "1694890340"}, "stopId": "37474"}, {"stopSequence": 109, "arrival": {"time": "1694890381"}, "stopId": "44879"}, {"stopSequence": 110, "arrival": {"time": "1694890410"}, "stopId": "44880"}, {"stopSequence": 111, "arrival": {"time": "1694890441"}, "stopId": "44881"}, {"stopSequence": 112, "arrival": {"time": "1694890458"}, "stopId": "50028"}, {"stopSequence": 113, "arrival": {"time": "1694890518"}, "stopId": "38151"}, {"stopSequence": 114, "arrival": {"time": "1694890664"}, "stopId": "15-13"}, {"stopSequence": 115, "arrival": {"time": "1694890719"}, "stopId": "38194"}, {"stopSequence": 116, "arrival": {"time": "1694890744"}, "stopId": "50029"}, {"stopSequence": 118, "arrival": {"time": "1694890757"}, "stopId": "50014"}, {"stopSequence": 119, "arrival": {"time": "1694890771"}, "stopId": "38204"}, {"stopSequence": 120, "arrival": {"time": "1694890809"}, "stopId": "50013"}, {"stopSequence": 121, "arrival": {"time": "1694890849"}, "stopId": "38127"}, {"stopSequence": 122, "arrival": {"time": "1694890888"}, "stopId": "50015"}, {"stopSequence": 123, "arrival": {"time": "1694891096"}, "stopId": "38149"}, {"stopSequence": 124, "arrival": {"time": "1694891162"}, "stopId": "14-Feb"}], "vehicle": {"licensePlate": "BVRP53"}, "timestamp": "1694889009"}, "vehicle": {"trip": {"tripId": "21062-701ff27f-2", "startTime": "14:21:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "736", "directionId": 1}, "position": {"latitude": -36.756535, "longitude": -73.00246, "bearing": 47.0, "odometer": 0.0, "speed": 18.61111}, "timestamp": "1694889009", "vehicle": {"licensePlate": "BVRP53"}}}, {"id": "3246cf03-b840-4daf-bd33-fb5e05ecfd1b", "tripUpdate": {"trip": {"tripId": "21132-701ff27f-2", "startTime": "15:17:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "736", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 14, "arrival": {"time": "1694889027"}, "stopId": "1566267"}, {"stopSequence": 15, "arrival": {"time": "1694889110"}, "stopId": "44967"}, {"stopSequence": 16, "arrival": {"time": "1694889161"}, "stopId": "44968"}, {"stopSequence": 17, "arrival": {"time": "1694889217"}, "stopId": "14-May"}, {"stopSequence": 18, "arrival": {"time": "1694889249"}, "stopId": "14-Jun"}, {"stopSequence": 19, "arrival": {"time": "1694889308"}, "stopId": "14-Aug"}, {"stopSequence": 20, "arrival": {"time": "1694889355"}, "stopId": "50024"}, {"stopSequence": 21, "arrival": {"time": "1694889477"}, "stopId": "14-12"}, {"stopSequence": 22, "arrival": {"time": "1694889555"}, "stopId": "37471"}, {"stopSequence": 23, "arrival": {"time": "1694889587"}, "stopId": "37560"}, {"stopSequence": 24, "arrival": {"time": "1694889620"}, "stopId": "37564"}, {"stopSequence": 25, "arrival": {"time": "1694889657"}, "stopId": "37517"}, {"stopSequence": 26, "arrival": {"time": "1694889687"}, "stopId": "37475"}, {"stopSequence": 27, "arrival": {"time": "1694889721"}, "stopId": "37508"}, {"stopSequence": 28, "arrival": {"time": "1694889748"}, "stopId": "37476"}, {"stopSequence": 29, "arrival": {"time": "1694889777"}, "stopId": "37526"}, {"stopSequence": 30, "arrival": {"time": "1694889843"}, "stopId": "37567"}, {"stopSequence": 31, "arrival": {"time": "1694889861"}, "stopId": "13-Jan"}, {"stopSequence": 32, "arrival": {"time": "1694889916"}, "stopId": "13-Feb"}, {"stopSequence": 33, "arrival": {"time": "1694889940"}, "stopId": "28-Jan"}, {"stopSequence": 34, "arrival": {"time": "1694889986"}, "stopId": "12-3"}, {"stopSequence": 35, "arrival": {"time": "1694890055"}, "stopId": "12-Jan"}, {"stopSequence": 36, "arrival": {"time": "1694890102"}, "stopId": "12-Feb"}, {"stopSequence": 37, "arrival": {"time": "1694890154"}, "stopId": "7-Jan"}, {"stopSequence": 38, "arrival": {"time": "1694890206"}, "stopId": "7-Mar"}, {"stopSequence": 39, "arrival": {"time": "1694890346"}, "stopId": "7-Jun"}, {"stopSequence": 40, "arrival": {"time": "1694890405"}, "stopId": "7-Aug"}, {"stopSequence": 41, "arrival": {"time": "1694890549"}, "stopId": "6-Mar"}, {"stopSequence": 42, "arrival": {"time": "1694890651"}, "stopId": "6-May"}, {"stopSequence": 43, "arrival": {"time": "1694890810"}, "stopId": "6-Jul"}, {"stopSequence": 44, "arrival": {"time": "1694890879"}, "stopId": "6-Sep"}, {"stopSequence": 45, "arrival": {"time": "1694890976"}, "stopId": "6-Nov"}, {"stopSequence": 46, "arrival": {"time": "1694891085"}, "stopId": "6-Dec"}, {"stopSequence": 47, "arrival": {"time": "1694891185"}, "stopId": "Jun-14"}, {"stopSequence": 48, "arrival": {"time": "1694891353"}, "stopId": "Jun-17"}, {"stopSequence": 49, "arrival": {"time": "1694891445"}, "stopId": "Jun-19"}, {"stopSequence": 50, "arrival": {"time": "1694891515"}, "stopId": "Jun-20"}, {"stopSequence": 51, "arrival": {"time": "1694891590"}, "stopId": "Jun-22"}, {"stopSequence": 52, "arrival": {"time": "1694891668"}, "stopId": "Jun-24"}, {"stopSequence": 53, "arrival": {"time": "1694891779"}, "stopId": "Jun-25"}, {"stopSequence": 54, "arrival": {"time": "1694892158"}, "stopId": "90003"}, {"stopSequence": 55, "arrival": {"time": "1694892223"}, "stopId": "90007"}, {"stopSequence": 56, "arrival": {"time": "1694892295"}, "stopId": "90008"}, {"stopSequence": 57, "arrival": {"time": "1694892458"}, "stopId": "39599"}, {"stopSequence": 58, "arrival": {"time": "1694892492"}, "stopId": "39600"}, {"stopSequence": 59, "arrival": {"time": "1694892594"}, "stopId": "37496"}, {"stopSequence": 60, "arrival": {"time": "1694892672"}, "stopId": "45064"}, {"stopSequence": 61, "arrival": {"time": "1694892791"}, "stopId": "37506"}, {"stopSequence": 62, "arrival": {"time": "1694892915"}, "stopId": "45069"}, {"stopSequence": 63, "arrival": {"time": "1694893111"}, "stopId": "37523"}, {"stopSequence": 64, "arrival": {"time": "1694893184"}, "stopId": "37477"}, {"stopSequence": 65, "arrival": {"time": "1694893347"}, "stopId": "49310"}, {"stopSequence": 66, "arrival": {"time": "1694893408"}, "stopId": "49311"}, {"stopSequence": 67, "arrival": {"time": "1694893518"}, "stopId": "39634"}, {"stopSequence": 68, "arrival": {"time": "1694893569"}, "stopId": "39635"}, {"stopSequence": 69, "arrival": {"time": "1694893663"}, "stopId": "39636"}, {"stopSequence": 70, "arrival": {"time": "1694893776"}, "stopId": "49503"}, {"stopSequence": 71, "arrival": {"time": "1694894057"}, "stopId": "39637"}, {"stopSequence": 72, "arrival": {"time": "1694894173"}, "stopId": "49317"}, {"stopSequence": 73, "arrival": {"time": "1694894249"}, "stopId": "49318"}, {"stopSequence": 74, "arrival": {"time": "1694894411"}, "stopId": "49319"}, {"stopSequence": 75, "arrival": {"time": "1694894575"}, "stopId": "39641"}, {"stopSequence": 76, "arrival": {"time": "1694894669"}, "stopId": "39642"}, {"stopSequence": 77, "arrival": {"time": "1694895362"}, "stopId": "49324"}, {"stopSequence": 78, "arrival": {"time": "1694895498"}, "stopId": "49325"}, {"stopSequence": 79, "arrival": {"time": "1694895708"}, "stopId": "49326"}, {"stopSequence": 80, "arrival": {"time": "1694895799"}, "stopId": "39648"}, {"stopSequence": 81, "arrival": {"time": "1694895969"}, "stopId": "39649"}, {"stopSequence": 82, "arrival": {"time": "1694896115"}, "stopId": "45112"}, {"stopSequence": 83, "arrival": {"time": "1694896283"}, "stopId": "45113"}, {"stopSequence": 84, "arrival": {"time": "1694896605"}, "stopId": "37490"}, {"stopSequence": 85, "arrival": {"time": "1694896835"}, "stopId": "45115"}, {"stopSequence": 86, "arrival": {"time": "1694896943"}, "stopId": "45116"}, {"stopSequence": 87, "arrival": {"time": "1694897268"}, "stopId": "45118"}, {"stopSequence": 88, "arrival": {"time": "1694897637"}, "stopId": "45119"}, {"stopSequence": 89, "arrival": {"time": "1694897870"}, "stopId": "45120"}, {"stopSequence": 90, "arrival": {"time": "1694898172"}, "stopId": "45121"}, {"stopSequence": 91, "arrival": {"time": "1694898413"}, "stopId": "38535"}, {"stopSequence": 92, "arrival": {"time": "1694898883"}, "stopId": "38536"}, {"stopSequence": 93, "arrival": {"time": "1694899064"}, "stopId": "4838437"}, {"stopSequence": 94, "arrival": {"time": "1694899496"}, "stopId": "45085"}, {"stopSequence": 95, "arrival": {"time": "1694900086"}, "stopId": "45086"}, {"stopSequence": 96, "arrival": {"time": "1694900499"}, "stopId": "38539"}, {"stopSequence": 97, "arrival": {"time": "1694901068"}, "stopId": "38540"}, {"stopSequence": 98, "arrival": {"time": "1694901816"}, "stopId": "38544"}, {"stopSequence": 99, "arrival": {"time": "1694902547"}, "stopId": "38545"}, {"stopSequence": 100, "arrival": {"time": "1694905329"}, "stopId": "38548"}, {"stopSequence": 101, "arrival": {"time": "1694906430"}, "stopId": "38549"}, {"stopSequence": 102, "arrival": {"time": "1694907468"}, "stopId": "38550"}, {"stopSequence": 103, "arrival": {"time": "1694909549"}, "stopId": "38551"}, {"stopSequence": 104, "arrival": {"time": "1694911796"}, "stopId": "38552"}, {"stopSequence": 105, "arrival": {"time": "1694914388"}, "stopId": "49359"}, {"stopSequence": 106, "arrival": {"time": "1694916378"}, "stopId": "49360"}, {"stopSequence": 107, "arrival": {"time": "1694921936"}, "stopId": "49361"}, {"stopSequence": 108, "arrival": {"time": "1694923347"}, "stopId": "49362"}, {"stopSequence": 109, "arrival": {"time": "1694926850"}, "stopId": "49363"}, {"stopSequence": 110, "arrival": {"time": "1694930989"}, "stopId": "49364"}, {"stopSequence": 111, "arrival": {"time": "1694934739"}, "stopId": "49365"}, {"stopSequence": 112, "arrival": {"time": "1694943859"}, "stopId": "38560"}, {"stopSequence": 113, "arrival": {"time": "1694950703"}, "stopId": "42857"}, {"stopSequence": 114, "arrival": {"time": "1694957601"}, "stopId": "38562"}, {"stopSequence": 115, "arrival": {"time": "1694967247"}, "stopId": "38563"}, {"stopSequence": 116, "arrival": {"time": "1694982118"}, "stopId": "42854"}, {"stopSequence": 117, "arrival": {"time": "1695065181"}, "stopId": "38565"}, {"stopSequence": 118, "arrival": {"time": "1695200619"}, "stopId": "40932"}], "vehicle": {"licensePlate": "CDTF40"}, "timestamp": "1694888980"}, "vehicle": {"trip": {"tripId": "21132-701ff27f-2", "startTime": "15:17:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "736", "directionId": 0}, "position": {"latitude": -36.711063, "longitude": -72.97395, "bearing": 242.0, "odometer": 0.0, "speed": 3.3333333}, "timestamp": "1694888980", "vehicle": {"licensePlate": "CDTF40"}}}, {"id": "9aef2024-9eb1-4374-bbba-ca344b76d6ef", "tripUpdate": {"trip": {"tripId": "21064-701ff27f-2", "startTime": "15:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "736", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 19, "arrival": {"time": "1694889025"}, "stopId": "38646"}, {"stopSequence": 20, "arrival": {"time": "1694889065"}, "stopId": "38632"}, {"stopSequence": 21, "arrival": {"time": "1694889146"}, "stopId": "38767"}, {"stopSequence": 22, "arrival": {"time": "1694889218"}, "stopId": "38768"}, {"stopSequence": 23, "arrival": {"time": "1694889261"}, "stopId": "38769"}, {"stopSequence": 24, "arrival": {"time": "1694889303"}, "stopId": "49357"}, {"stopSequence": 25, "arrival": {"time": "1694889341"}, "stopId": "38771"}, {"stopSequence": 26, "arrival": {"time": "1694889388"}, "stopId": "38668"}, {"stopSequence": 27, "arrival": {"time": "1694889486"}, "stopId": "38661"}, {"stopSequence": 28, "arrival": {"time": "1694889568"}, "stopId": "38657"}, {"stopSequence": 29, "arrival": {"time": "1694889629"}, "stopId": "38743"}, {"stopSequence": 30, "arrival": {"time": "1694889694"}, "stopId": "38652"}, {"stopSequence": 31, "arrival": {"time": "1694889756"}, "stopId": "38721"}, {"stopSequence": 32, "arrival": {"time": "1694889811"}, "stopId": "38659"}, {"stopSequence": 33, "arrival": {"time": "1694889899"}, "stopId": "38674"}, {"stopSequence": 34, "arrival": {"time": "1694889964"}, "stopId": "38649"}, {"stopSequence": 35, "arrival": {"time": "1694890096"}, "stopId": "38735"}, {"stopSequence": 36, "arrival": {"time": "1694890149"}, "stopId": "42270"}, {"stopSequence": 37, "arrival": {"time": "1694890193"}, "stopId": "42271"}, {"stopSequence": 38, "arrival": {"time": "1694890382"}, "stopId": "38688"}, {"stopSequence": 39, "arrival": {"time": "1694890438"}, "stopId": "38673"}, {"stopSequence": 40, "arrival": {"time": "1694890513"}, "stopId": "39785"}, {"stopSequence": 41, "arrival": {"time": "1694890552"}, "stopId": "38664"}, {"stopSequence": 42, "arrival": {"time": "1694890606"}, "stopId": "38702"}, {"stopSequence": 43, "arrival": {"time": "1694890650"}, "stopId": "39787"}, {"stopSequence": 44, "arrival": {"time": "1694890693"}, "stopId": "38501"}, {"stopSequence": 45, "arrival": {"time": "1694890761"}, "stopId": "38692"}, {"stopSequence": 46, "arrival": {"time": "1694890829"}, "stopId": "38714"}, {"stopSequence": 47, "arrival": {"time": "1694890881"}, "stopId": "39791"}, {"stopSequence": 48, "arrival": {"time": "1694890910"}, "stopId": "38506"}, {"stopSequence": 49, "arrival": {"time": "1694890962"}, "stopId": "38635"}, {"stopSequence": 50, "arrival": {"time": "1694891000"}, "stopId": "38509"}, {"stopSequence": 51, "arrival": {"time": "1694891044"}, "stopId": "38642"}, {"stopSequence": 52, "arrival": {"time": "1694891092"}, "stopId": "39795"}, {"stopSequence": 53, "arrival": {"time": "1694891120"}, "stopId": "38502"}, {"stopSequence": 54, "arrival": {"time": "1694891194"}, "stopId": "38503"}, {"stopSequence": 55, "arrival": {"time": "1694891417"}, "stopId": "35692"}, {"stopSequence": 56, "arrival": {"time": "1694891490"}, "stopId": "35693"}, {"stopSequence": 57, "arrival": {"time": "1694891558"}, "stopId": "35694"}, {"stopSequence": 58, "arrival": {"time": "1694891589"}, "stopId": "35695"}, {"stopSequence": 59, "arrival": {"time": "1694891660"}, "stopId": "35696"}, {"stopSequence": 60, "arrival": {"time": "1694891865"}, "stopId": "35697"}, {"stopSequence": 61, "arrival": {"time": "1694892024"}, "stopId": "39778"}, {"stopSequence": 62, "arrival": {"time": "1694892165"}, "stopId": "35797"}, {"stopSequence": 63, "arrival": {"time": "1694892231"}, "stopId": "35798"}, {"stopSequence": 64, "arrival": {"time": "1694892280"}, "stopId": "35799"}, {"stopSequence": 65, "arrival": {"time": "1694892377"}, "stopId": "35800"}, {"stopSequence": 66, "arrival": {"time": "1694892450"}, "stopId": "35801"}, {"stopSequence": 67, "arrival": {"time": "1694892489"}, "stopId": "35802"}, {"stopSequence": 68, "arrival": {"time": "1694892562"}, "stopId": "35803"}, {"stopSequence": 69, "arrival": {"time": "1694892649"}, "stopId": "38507"}, {"stopSequence": 70, "arrival": {"time": "1694892730"}, "stopId": "34473"}, {"stopSequence": 71, "arrival": {"time": "1694892802"}, "stopId": "38500"}, {"stopSequence": 72, "arrival": {"time": "1694892864"}, "stopId": "35808"}, {"stopSequence": 73, "arrival": {"time": "1694892976"}, "stopId": "35710"}, {"stopSequence": 74, "arrival": {"time": "1694893054"}, "stopId": "50036"}, {"stopSequence": 75, "arrival": {"time": "1694893480"}, "stopId": "50037"}, {"stopSequence": 76, "arrival": {"time": "1694893775"}, "stopId": "50038"}, {"stopSequence": 77, "arrival": {"time": "1694893942"}, "stopId": "50039"}, {"stopSequence": 78, "arrival": {"time": "1694894061"}, "stopId": "50040"}, {"stopSequence": 79, "arrival": {"time": "1694894284"}, "stopId": "50041"}, {"stopSequence": 80, "arrival": {"time": "1694894647"}, "stopId": "Jun-15"}, {"stopSequence": 81, "arrival": {"time": "1694894898"}, "stopId": "Jun-13"}, {"stopSequence": 82, "arrival": {"time": "1694895488"}, "stopId": "6-Oct"}, {"stopSequence": 83, "arrival": {"time": "1694895681"}, "stopId": "6-Aug"}, {"stopSequence": 84, "arrival": {"time": "1694896248"}, "stopId": "6-Jun"}, {"stopSequence": 85, "arrival": {"time": "1694896726"}, "stopId": "6-Feb"}, {"stopSequence": 86, "arrival": {"time": "1694897331"}, "stopId": "7-Jul"}, {"stopSequence": 87, "arrival": {"time": "1694898441"}, "stopId": "7-Feb"}, {"stopSequence": 88, "arrival": {"time": "1694898854"}, "stopId": "8-Jan"}, {"stopSequence": 89, "arrival": {"time": "1694899059"}, "stopId": "9-Jan"}, {"stopSequence": 90, "arrival": {"time": "1694899327"}, "stopId": "10-Apr"}, {"stopSequence": 91, "arrival": {"time": "1694899740"}, "stopId": "10-Jan"}, {"stopSequence": 92, "arrival": {"time": "1694900056"}, "stopId": "44863"}, {"stopSequence": 93, "arrival": {"time": "1694900306"}, "stopId": "10-Mar"}, {"stopSequence": 94, "arrival": {"time": "1694900762"}, "stopId": "11-Jan"}, {"stopSequence": 95, "arrival": {"time": "1694901154"}, "stopId": "44866"}, {"stopSequence": 96, "arrival": {"time": "1694901588"}, "stopId": "44867"}, {"stopSequence": 97, "arrival": {"time": "1694901914"}, "stopId": "44868"}, {"stopSequence": 98, "arrival": {"time": "1694902118"}, "stopId": "44869"}, {"stopSequence": 99, "arrival": {"time": "1694902512"}, "stopId": "44870"}, {"stopSequence": 100, "arrival": {"time": "1694902850"}, "stopId": "44871"}, {"stopSequence": 101, "arrival": {"time": "1694903310"}, "stopId": "44872"}, {"stopSequence": 102, "arrival": {"time": "1694904099"}, "stopId": "50020"}, {"stopSequence": 103, "arrival": {"time": "1694905315"}, "stopId": "14-11"}, {"stopSequence": 104, "arrival": {"time": "1694905941"}, "stopId": "91162"}, {"stopSequence": 105, "arrival": {"time": "1694907401"}, "stopId": "50023"}, {"stopSequence": 106, "arrival": {"time": "1694909548"}, "stopId": "14-Jul"}, {"stopSequence": 107, "arrival": {"time": "1694910411"}, "stopId": "14-Apr"}, {"stopSequence": 108, "arrival": {"time": "1694911689"}, "stopId": "37474"}, {"stopSequence": 109, "arrival": {"time": "1694912966"}, "stopId": "44879"}, {"stopSequence": 110, "arrival": {"time": "1694913962"}, "stopId": "44880"}, {"stopSequence": 111, "arrival": {"time": "1694915109"}, "stopId": "44881"}, {"stopSequence": 112, "arrival": {"time": "1694915740"}, "stopId": "50028"}, {"stopSequence": 113, "arrival": {"time": "1694918403"}, "stopId": "38151"}, {"stopSequence": 114, "arrival": {"time": "1694927297"}, "stopId": "15-13"}, {"stopSequence": 115, "arrival": {"time": "1694932161"}, "stopId": "38194"}, {"stopSequence": 116, "arrival": {"time": "1694934807"}, "stopId": "50029"}, {"stopSequence": 118, "arrival": {"time": "1694936206"}, "stopId": "50014"}, {"stopSequence": 119, "arrival": {"time": "1694937917"}, "stopId": "38204"}, {"stopSequence": 120, "arrival": {"time": "1694943169"}, "stopId": "50013"}, {"stopSequence": 121, "arrival": {"time": "1694949922"}, "stopId": "38127"}, {"stopSequence": 122, "arrival": {"time": "1694958162"}, "stopId": "50015"}, {"stopSequence": 123, "arrival": {"time": "1695123991"}, "stopId": "38149"}, {"stopSequence": 124, "arrival": {"time": "1695803865"}, "stopId": "14-Feb"}], "vehicle": {"licensePlate": "CDTF83"}, "timestamp": "1694888988"}, "vehicle": {"trip": {"tripId": "21064-701ff27f-2", "startTime": "15:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "736", "directionId": 1}, "position": {"latitude": -36.71242, "longitude": -73.1147, "bearing": 136.0, "odometer": 0.0, "speed": 0.5555556}, "timestamp": "1694888988", "vehicle": {"licensePlate": "CDTF83"}}}, {"id": "ace21c3f-fa61-451a-ae52-b23ed0242f81", "tripUpdate": {"trip": {"tripId": "21130-701ff27f-2", "startTime": "14:47:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "736", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 47, "arrival": {"time": "1694889015"}, "stopId": "Jun-14"}, {"stopSequence": 48, "arrival": {"time": "1694889173"}, "stopId": "Jun-17"}, {"stopSequence": 49, "arrival": {"time": "1694889255"}, "stopId": "Jun-19"}, {"stopSequence": 50, "arrival": {"time": "1694889316"}, "stopId": "Jun-20"}, {"stopSequence": 51, "arrival": {"time": "1694889379"}, "stopId": "Jun-22"}, {"stopSequence": 52, "arrival": {"time": "1694889444"}, "stopId": "Jun-24"}, {"stopSequence": 53, "arrival": {"time": "1694889532"}, "stopId": "Jun-25"}, {"stopSequence": 54, "arrival": {"time": "1694889814"}, "stopId": "90003"}, {"stopSequence": 55, "arrival": {"time": "1694889859"}, "stopId": "90007"}, {"stopSequence": 56, "arrival": {"time": "1694889908"}, "stopId": "90008"}, {"stopSequence": 57, "arrival": {"time": "1694890015"}, "stopId": "39599"}, {"stopSequence": 58, "arrival": {"time": "1694890037"}, "stopId": "39600"}, {"stopSequence": 59, "arrival": {"time": "1694890102"}, "stopId": "37496"}, {"stopSequence": 60, "arrival": {"time": "1694890150"}, "stopId": "45064"}, {"stopSequence": 61, "arrival": {"time": "1694890221"}, "stopId": "37506"}, {"stopSequence": 62, "arrival": {"time": "1694890294"}, "stopId": "45069"}, {"stopSequence": 63, "arrival": {"time": "1694890405"}, "stopId": "37523"}, {"stopSequence": 64, "arrival": {"time": "1694890445"}, "stopId": "37477"}, {"stopSequence": 65, "arrival": {"time": "1694890531"}, "stopId": "49310"}, {"stopSequence": 66, "arrival": {"time": "1694890563"}, "stopId": "49311"}, {"stopSequence": 67, "arrival": {"time": "1694890619"}, "stopId": "39634"}, {"stopSequence": 68, "arrival": {"time": "1694890645"}, "stopId": "39635"}, {"stopSequence": 69, "arrival": {"time": "1694890692"}, "stopId": "39636"}, {"stopSequence": 70, "arrival": {"time": "1694890746"}, "stopId": "49503"}, {"stopSequence": 71, "arrival": {"time": "1694890878"}, "stopId": "39637"}, {"stopSequence": 72, "arrival": {"time": "1694890930"}, "stopId": "49317"}, {"stopSequence": 73, "arrival": {"time": "1694890963"}, "stopId": "49318"}, {"stopSequence": 74, "arrival": {"time": "1694891034"}, "stopId": "49319"}, {"stopSequence": 75, "arrival": {"time": "1694891102"}, "stopId": "39641"}, {"stopSequence": 76, "arrival": {"time": "1694891141"}, "stopId": "39642"}, {"stopSequence": 77, "arrival": {"time": "1694891409"}, "stopId": "49324"}, {"stopSequence": 78, "arrival": {"time": "1694891458"}, "stopId": "49325"}, {"stopSequence": 79, "arrival": {"time": "1694891532"}, "stopId": "49326"}, {"stopSequence": 80, "arrival": {"time": "1694891564"}, "stopId": "39648"}, {"stopSequence": 81, "arrival": {"time": "1694891621"}, "stopId": "39649"}, {"stopSequence": 82, "arrival": {"time": "1694891670"}, "stopId": "45112"}, {"stopSequence": 83, "arrival": {"time": "1694891724"}, "stopId": "45113"}, {"stopSequence": 84, "arrival": {"time": "1694891825"}, "stopId": "37490"}, {"stopSequence": 85, "arrival": {"time": "1694891894"}, "stopId": "45115"}, {"stopSequence": 86, "arrival": {"time": "1694891926"}, "stopId": "45116"}, {"stopSequence": 87, "arrival": {"time": "1694892019"}, "stopId": "45118"}, {"stopSequence": 88, "arrival": {"time": "1694892121"}, "stopId": "45119"}, {"stopSequence": 89, "arrival": {"time": "1694892183"}, "stopId": "45120"}, {"stopSequence": 90, "arrival": {"time": "1694892260"}, "stopId": "45121"}, {"stopSequence": 91, "arrival": {"time": "1694892320"}, "stopId": "38535"}, {"stopSequence": 92, "arrival": {"time": "1694892432"}, "stopId": "38536"}, {"stopSequence": 93, "arrival": {"time": "1694892474"}, "stopId": "4838437"}, {"stopSequence": 94, "arrival": {"time": "1694892570"}, "stopId": "45085"}, {"stopSequence": 95, "arrival": {"time": "1694892695"}, "stopId": "45086"}, {"stopSequence": 96, "arrival": {"time": "1694892778"}, "stopId": "38539"}, {"stopSequence": 97, "arrival": {"time": "1694892886"}, "stopId": "38540"}, {"stopSequence": 98, "arrival": {"time": "1694893021"}, "stopId": "38544"}, {"stopSequence": 99, "arrival": {"time": "1694893143"}, "stopId": "38545"}, {"stopSequence": 100, "arrival": {"time": "1694893544"}, "stopId": "38548"}, {"stopSequence": 101, "arrival": {"time": "1694893679"}, "stopId": "38549"}, {"stopSequence": 102, "arrival": {"time": "1694893797"}, "stopId": "38550"}, {"stopSequence": 103, "arrival": {"time": "1694894008"}, "stopId": "38551"}, {"stopSequence": 104, "arrival": {"time": "1694894205"}, "stopId": "38552"}, {"stopSequence": 105, "arrival": {"time": "1694894401"}, "stopId": "49359"}, {"stopSequence": 106, "arrival": {"time": "1694894532"}, "stopId": "49360"}, {"stopSequence": 107, "arrival": {"time": "1694894834"}, "stopId": "49361"}, {"stopSequence": 108, "arrival": {"time": "1694894899"}, "stopId": "49362"}, {"stopSequence": 109, "arrival": {"time": "1694895042"}, "stopId": "49363"}, {"stopSequence": 110, "arrival": {"time": "1694895187"}, "stopId": "49364"}, {"stopSequence": 111, "arrival": {"time": "1694895299"}, "stopId": "49365"}, {"stopSequence": 112, "arrival": {"time": "1694895517"}, "stopId": "38560"}, {"stopSequence": 113, "arrival": {"time": "1694895644"}, "stopId": "42857"}, {"stopSequence": 114, "arrival": {"time": "1694895750"}, "stopId": "38562"}, {"stopSequence": 115, "arrival": {"time": "1694895870"}, "stopId": "38563"}, {"stopSequence": 116, "arrival": {"time": "1694896011"}, "stopId": "42854"}, {"stopSequence": 117, "arrival": {"time": "1694896383"}, "stopId": "38565"}, {"stopSequence": 118, "arrival": {"time": "1694896577"}, "stopId": "40932"}, {"stopSequence": 119, "arrival": {"time": "1694896890"}, "stopId": "38567"}, {"stopSequence": 120, "arrival": {"time": "1694897103"}, "stopId": "38568"}, {"stopSequence": 121, "arrival": {"time": "1694897235"}, "stopId": "38569"}, {"stopSequence": 122, "arrival": {"time": "1694897437"}, "stopId": "38570"}, {"stopSequence": 123, "arrival": {"time": "1694897719"}, "stopId": "38571"}, {"stopSequence": 124, "arrival": {"time": "1694897998"}, "stopId": "38572"}, {"stopSequence": 125, "arrival": {"time": "1694899000"}, "stopId": "38393"}, {"stopSequence": 126, "arrival": {"time": "1694899343"}, "stopId": "38394"}, {"stopSequence": 127, "arrival": {"time": "1694899657"}, "stopId": "38395"}, {"stopSequence": 128, "arrival": {"time": "1694899911"}, "stopId": "38396"}, {"stopSequence": 129, "arrival": {"time": "1694900381"}, "stopId": "38397"}, {"stopSequence": 130, "arrival": {"time": "1694900575"}, "stopId": "38398"}, {"stopSequence": 131, "arrival": {"time": "1694900792"}, "stopId": "38399"}, {"stopSequence": 132, "arrival": {"time": "1694901367"}, "stopId": "38400"}, {"stopSequence": 133, "arrival": {"time": "1694901826"}, "stopId": "38401"}, {"stopSequence": 134, "arrival": {"time": "1694902289"}, "stopId": "38402"}, {"stopSequence": 135, "arrival": {"time": "1694903181"}, "stopId": "38433"}], "vehicle": {"licensePlate": "CXLY26"}, "timestamp": "1694888978"}, "vehicle": {"trip": {"tripId": "21130-701ff27f-2", "startTime": "14:47:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "736", "directionId": 0}, "position": {"latitude": -36.780014, "longitude": -73.019875, "bearing": 206.0, "odometer": 0.0, "speed": 17.777779}, "timestamp": "1694888978", "vehicle": {"licensePlate": "CXLY26"}}}, {"id": "9cd347c3-b7a1-4d21-bea6-4611d7e839d9", "tripUpdate": {"trip": {"tripId": "21126-701ff27f-2", "startTime": "13:47:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "736", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 113, "arrival": {"time": "1694888943"}, "stopId": "42857"}, {"stopSequence": 114, "arrival": {"time": "1694888976"}, "stopId": "38562"}, {"stopSequence": 115, "arrival": {"time": "1694889013"}, "stopId": "38563"}, {"stopSequence": 116, "arrival": {"time": "1694889054"}, "stopId": "42854"}, {"stopSequence": 117, "arrival": {"time": "1694889156"}, "stopId": "38565"}, {"stopSequence": 118, "arrival": {"time": "1694889205"}, "stopId": "40932"}, {"stopSequence": 119, "arrival": {"time": "1694889280"}, "stopId": "38567"}, {"stopSequence": 120, "arrival": {"time": "1694889327"}, "stopId": "38568"}, {"stopSequence": 121, "arrival": {"time": "1694889356"}, "stopId": "38569"}, {"stopSequence": 122, "arrival": {"time": "1694889398"}, "stopId": "38570"}, {"stopSequence": 123, "arrival": {"time": "1694889454"}, "stopId": "38571"}, {"stopSequence": 124, "arrival": {"time": "1694889505"}, "stopId": "38572"}, {"stopSequence": 125, "arrival": {"time": "1694889670"}, "stopId": "38393"}, {"stopSequence": 126, "arrival": {"time": "1694889720"}, "stopId": "38394"}, {"stopSequence": 127, "arrival": {"time": "1694889763"}, "stopId": "38395"}, {"stopSequence": 128, "arrival": {"time": "1694889796"}, "stopId": "38396"}, {"stopSequence": 129, "arrival": {"time": "1694889854"}, "stopId": "38397"}, {"stopSequence": 130, "arrival": {"time": "1694889876"}, "stopId": "38398"}, {"stopSequence": 131, "arrival": {"time": "1694889901"}, "stopId": "38399"}, {"stopSequence": 132, "arrival": {"time": "1694889962"}, "stopId": "38400"}, {"stopSequence": 133, "arrival": {"time": "1694890008"}, "stopId": "38401"}, {"stopSequence": 134, "arrival": {"time": "1694890051"}, "stopId": "38402"}, {"stopSequence": 135, "arrival": {"time": "1694890126"}, "stopId": "38433"}], "vehicle": {"licensePlate": "DRFJ16"}, "timestamp": "1694888936"}, "vehicle": {"trip": {"tripId": "21126-701ff27f-2", "startTime": "13:47:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "736", "directionId": 0}, "position": {"latitude": -36.712807, "longitude": -73.1155, "bearing": 185.0, "odometer": 0.0, "speed": 5.5555553}, "timestamp": "1694888936", "vehicle": {"licensePlate": "DRFJ16"}}}, {"id": "f003275a-7e73-4967-aafd-d45d4626d1b1", "tripUpdate": {"trip": {"tripId": "21065-701ff27f-2", "startTime": "15:21:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "736", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 3, "arrival": {"time": "1694889017"}, "stopId": "38508"}, {"stopSequence": 4, "arrival": {"time": "1694889083"}, "stopId": "38511"}, {"stopSequence": 5, "arrival": {"time": "1694889129"}, "stopId": "38482"}, {"stopSequence": 6, "arrival": {"time": "1694889151"}, "stopId": "38440"}, {"stopSequence": 7, "arrival": {"time": "1694889179"}, "stopId": "38446"}, {"stopSequence": 8, "arrival": {"time": "1694889246"}, "stopId": "38491"}, {"stopSequence": 9, "arrival": {"time": "1694889326"}, "stopId": "38498"}, {"stopSequence": 10, "arrival": {"time": "1694889366"}, "stopId": "38495"}, {"stopSequence": 11, "arrival": {"time": "1694889542"}, "stopId": "37446"}, {"stopSequence": 12, "arrival": {"time": "1694889606"}, "stopId": "37447"}, {"stopSequence": 13, "arrival": {"time": "1694889634"}, "stopId": "40929"}, {"stopSequence": 14, "arrival": {"time": "1694889696"}, "stopId": "40946"}, {"stopSequence": 15, "arrival": {"time": "1694889751"}, "stopId": "40947"}, {"stopSequence": 16, "arrival": {"time": "1694890015"}, "stopId": "42855"}, {"stopSequence": 17, "arrival": {"time": "1694890039"}, "stopId": "41975"}, {"stopSequence": 18, "arrival": {"time": "1694890094"}, "stopId": "38697"}, {"stopSequence": 19, "arrival": {"time": "1694890143"}, "stopId": "38646"}, {"stopSequence": 20, "arrival": {"time": "1694890179"}, "stopId": "38632"}, {"stopSequence": 21, "arrival": {"time": "1694890254"}, "stopId": "38767"}, {"stopSequence": 22, "arrival": {"time": "1694890322"}, "stopId": "38768"}, {"stopSequence": 23, "arrival": {"time": "1694890363"}, "stopId": "38769"}, {"stopSequence": 24, "arrival": {"time": "1694890403"}, "stopId": "49357"}, {"stopSequence": 25, "arrival": {"time": "1694890440"}, "stopId": "38771"}, {"stopSequence": 26, "arrival": {"time": "1694890486"}, "stopId": "38668"}, {"stopSequence": 27, "arrival": {"time": "1694890584"}, "stopId": "38661"}, {"stopSequence": 28, "arrival": {"time": "1694890668"}, "stopId": "38657"}, {"stopSequence": 29, "arrival": {"time": "1694890730"}, "stopId": "38743"}, {"stopSequence": 30, "arrival": {"time": "1694890798"}, "stopId": "38652"}, {"stopSequence": 31, "arrival": {"time": "1694890865"}, "stopId": "38721"}, {"stopSequence": 32, "arrival": {"time": "1694890924"}, "stopId": "38659"}, {"stopSequence": 33, "arrival": {"time": "1694891020"}, "stopId": "38674"}, {"stopSequence": 34, "arrival": {"time": "1694891093"}, "stopId": "38649"}, {"stopSequence": 35, "arrival": {"time": "1694891242"}, "stopId": "38735"}, {"stopSequence": 36, "arrival": {"time": "1694891304"}, "stopId": "42270"}, {"stopSequence": 37, "arrival": {"time": "1694891356"}, "stopId": "42271"}, {"stopSequence": 38, "arrival": {"time": "1694891583"}, "stopId": "38688"}, {"stopSequence": 39, "arrival": {"time": "1694891651"}, "stopId": "38673"}, {"stopSequence": 40, "arrival": {"time": "1694891746"}, "stopId": "39785"}, {"stopSequence": 41, "arrival": {"time": "1694891795"}, "stopId": "38664"}, {"stopSequence": 42, "arrival": {"time": "1694891863"}, "stopId": "38702"}, {"stopSequence": 43, "arrival": {"time": "1694891921"}, "stopId": "39787"}, {"stopSequence": 44, "arrival": {"time": "1694891976"}, "stopId": "38501"}, {"stopSequence": 45, "arrival": {"time": "1694892065"}, "stopId": "38692"}, {"stopSequence": 46, "arrival": {"time": "1694892156"}, "stopId": "38714"}, {"stopSequence": 47, "arrival": {"time": "1694892227"}, "stopId": "39791"}, {"stopSequence": 48, "arrival": {"time": "1694892266"}, "stopId": "38506"}, {"stopSequence": 49, "arrival": {"time": "1694892337"}, "stopId": "38635"}, {"stopSequence": 50, "arrival": {"time": "1694892389"}, "stopId": "38509"}, {"stopSequence": 51, "arrival": {"time": "1694892451"}, "stopId": "38642"}, {"stopSequence": 52, "arrival": {"time": "1694892518"}, "stopId": "39795"}, {"stopSequence": 53, "arrival": {"time": "1694892558"}, "stopId": "38502"}, {"stopSequence": 54, "arrival": {"time": "1694892663"}, "stopId": "38503"}, {"stopSequence": 55, "arrival": {"time": "1694892991"}, "stopId": "35692"}, {"stopSequence": 56, "arrival": {"time": "1694893102"}, "stopId": "35693"}, {"stopSequence": 57, "arrival": {"time": "1694893207"}, "stopId": "35694"}, {"stopSequence": 58, "arrival": {"time": "1694893254"}, "stopId": "35695"}, {"stopSequence": 59, "arrival": {"time": "1694893365"}, "stopId": "35696"}, {"stopSequence": 60, "arrival": {"time": "1694893693"}, "stopId": "35697"}, {"stopSequence": 61, "arrival": {"time": "1694893955"}, "stopId": "39778"}, {"stopSequence": 62, "arrival": {"time": "1694894195"}, "stopId": "35797"}, {"stopSequence": 63, "arrival": {"time": "1694894309"}, "stopId": "35798"}, {"stopSequence": 64, "arrival": {"time": "1694894394"}, "stopId": "35799"}, {"stopSequence": 65, "arrival": {"time": "1694894567"}, "stopId": "35800"}, {"stopSequence": 66, "arrival": {"time": "1694894698"}, "stopId": "35801"}, {"stopSequence": 67, "arrival": {"time": "1694894769"}, "stopId": "35802"}, {"stopSequence": 68, "arrival": {"time": "1694894903"}, "stopId": "35803"}, {"stopSequence": 69, "arrival": {"time": "1694895064"}, "stopId": "38507"}, {"stopSequence": 70, "arrival": {"time": "1694895218"}, "stopId": "34473"}, {"stopSequence": 71, "arrival": {"time": "1694895355"}, "stopId": "38500"}, {"stopSequence": 72, "arrival": {"time": "1694895476"}, "stopId": "35808"}, {"stopSequence": 73, "arrival": {"time": "1694895696"}, "stopId": "35710"}, {"stopSequence": 74, "arrival": {"time": "1694895852"}, "stopId": "50036"}, {"stopSequence": 75, "arrival": {"time": "1694896744"}, "stopId": "50037"}, {"stopSequence": 76, "arrival": {"time": "1694897404"}, "stopId": "50038"}, {"stopSequence": 77, "arrival": {"time": "1694897793"}, "stopId": "50039"}, {"stopSequence": 78, "arrival": {"time": "1694898080"}, "stopId": "50040"}, {"stopSequence": 79, "arrival": {"time": "1694898631"}, "stopId": "50041"}, {"stopSequence": 80, "arrival": {"time": "1694899582"}, "stopId": "Jun-15"}, {"stopSequence": 81, "arrival": {"time": "1694900280"}, "stopId": "Jun-13"}, {"stopSequence": 82, "arrival": {"time": "1694902068"}, "stopId": "6-Oct"}, {"stopSequence": 83, "arrival": {"time": "1694902700"}, "stopId": "6-Aug"}, {"stopSequence": 84, "arrival": {"time": "1694904725"}, "stopId": "6-Jun"}, {"stopSequence": 85, "arrival": {"time": "1694906648"}, "stopId": "6-Feb"}, {"stopSequence": 86, "arrival": {"time": "1694909419"}, "stopId": "7-Jul"}, {"stopSequence": 87, "arrival": {"time": "1694915826"}, "stopId": "7-Feb"}, {"stopSequence": 88, "arrival": {"time": "1694918797"}, "stopId": "8-Jan"}, {"stopSequence": 89, "arrival": {"time": "1694920417"}, "stopId": "9-Jan"}, {"stopSequence": 90, "arrival": {"time": "1694922714"}, "stopId": "10-Apr"}, {"stopSequence": 91, "arrival": {"time": "1694926706"}, "stopId": "10-Jan"}, {"stopSequence": 92, "arrival": {"time": "1694930209"}, "stopId": "44863"}, {"stopSequence": 93, "arrival": {"time": "1694933293"}, "stopId": "10-Mar"}, {"stopSequence": 94, "arrival": {"time": "1694939851"}, "stopId": "11-Jan"}, {"stopSequence": 95, "arrival": {"time": "1694946700"}, "stopId": "44866"}, {"stopSequence": 96, "arrival": {"time": "1694956083"}, "stopId": "44867"}, {"stopSequence": 97, "arrival": {"time": "1694964803"}, "stopId": "44868"}, {"stopSequence": 98, "arrival": {"time": "1694971237"}, "stopId": "44869"}, {"stopSequence": 99, "arrival": {"time": "1694986532"}, "stopId": "44870"}, {"stopSequence": 100, "arrival": {"time": "1695003930"}, "stopId": "44871"}, {"stopSequence": 101, "arrival": {"time": "1695038138"}, "stopId": "44872"}, {"stopSequence": 102, "arrival": {"time": "1695170431"}, "stopId": "50020"}], "vehicle": {"licensePlate": "WT1876"}, "timestamp": "1694888972"}, "vehicle": {"trip": {"tripId": "21065-701ff27f-2", "startTime": "15:21:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "736", "directionId": 1}, "position": {"latitude": -36.722805, "longitude": -73.142296, "bearing": 165.0, "odometer": 0.0, "speed": 1.1111112}, "timestamp": "1694889034", "vehicle": {"licensePlate": "WT1876"}}}, {"id": "09d10caa-eb5b-49db-8c8b-a9ab470272d8", "tripUpdate": {"trip": {"tripId": "21198-701ff27f-2", "startTime": "15:21:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "737", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 9, "arrival": {"time": "1694889064"}, "stopId": "38495"}, {"stopSequence": 10, "arrival": {"time": "1694889218"}, "stopId": "40928"}, {"stopSequence": 11, "arrival": {"time": "1694889262"}, "stopId": "37446"}, {"stopSequence": 12, "arrival": {"time": "1694889338"}, "stopId": "37447"}, {"stopSequence": 13, "arrival": {"time": "1694889360"}, "stopId": "40929"}, {"stopSequence": 14, "arrival": {"time": "1694889424"}, "stopId": "40946"}, {"stopSequence": 15, "arrival": {"time": "1694889480"}, "stopId": "40947"}, {"stopSequence": 16, "arrival": {"time": "1694889522"}, "stopId": "42245"}, {"stopSequence": 17, "arrival": {"time": "1694889564"}, "stopId": "42246"}, {"stopSequence": 18, "arrival": {"time": "1694889617"}, "stopId": "38779"}, {"stopSequence": 19, "arrival": {"time": "1694889663"}, "stopId": "42247"}, {"stopSequence": 20, "arrival": {"time": "1694889708"}, "stopId": "42248"}, {"stopSequence": 21, "arrival": {"time": "1694889738"}, "stopId": "38782"}, {"stopSequence": 22, "arrival": {"time": "1694889847"}, "stopId": "42249"}, {"stopSequence": 23, "arrival": {"time": "1694890008"}, "stopId": "42250"}, {"stopSequence": 24, "arrival": {"time": "1694890084"}, "stopId": "38630"}, {"stopSequence": 25, "arrival": {"time": "1694890146"}, "stopId": "42252"}, {"stopSequence": 26, "arrival": {"time": "1694890176"}, "stopId": "42253"}, {"stopSequence": 27, "arrival": {"time": "1694890214"}, "stopId": "42254"}, {"stopSequence": 28, "arrival": {"time": "1694890255"}, "stopId": "42255"}, {"stopSequence": 29, "arrival": {"time": "1694890283"}, "stopId": "42256"}, {"stopSequence": 30, "arrival": {"time": "1694890302"}, "stopId": "42257"}, {"stopSequence": 31, "arrival": {"time": "1694890324"}, "stopId": "42258"}, {"stopSequence": 32, "arrival": {"time": "1694890350"}, "stopId": "42259"}, {"stopSequence": 33, "arrival": {"time": "1694890398"}, "stopId": "42260"}, {"stopSequence": 34, "arrival": {"time": "1694890435"}, "stopId": "42261"}, {"stopSequence": 35, "arrival": {"time": "1694890512"}, "stopId": "38659"}, {"stopSequence": 36, "arrival": {"time": "1694890595"}, "stopId": "38674"}, {"stopSequence": 37, "arrival": {"time": "1694890665"}, "stopId": "38649"}, {"stopSequence": 38, "arrival": {"time": "1694890808"}, "stopId": "38735"}, {"stopSequence": 39, "arrival": {"time": "1694890864"}, "stopId": "42270"}, {"stopSequence": 40, "arrival": {"time": "1694890911"}, "stopId": "42271"}, {"stopSequence": 41, "arrival": {"time": "1694891124"}, "stopId": "38688"}, {"stopSequence": 42, "arrival": {"time": "1694891177"}, "stopId": "38673"}, {"stopSequence": 43, "arrival": {"time": "1694891261"}, "stopId": "39785"}, {"stopSequence": 44, "arrival": {"time": "1694891304"}, "stopId": "38664"}, {"stopSequence": 45, "arrival": {"time": "1694891365"}, "stopId": "38702"}, {"stopSequence": 46, "arrival": {"time": "1694891415"}, "stopId": "39787"}, {"stopSequence": 47, "arrival": {"time": "1694891463"}, "stopId": "38501"}, {"stopSequence": 48, "arrival": {"time": "1694891530"}, "stopId": "38692"}, {"stopSequence": 49, "arrival": {"time": "1694891612"}, "stopId": "38714"}, {"stopSequence": 50, "arrival": {"time": "1694891672"}, "stopId": "39791"}, {"stopSequence": 51, "arrival": {"time": "1694891714"}, "stopId": "38506"}, {"stopSequence": 52, "arrival": {"time": "1694891815"}, "stopId": "49326"}, {"stopSequence": 53, "arrival": {"time": "1694891934"}, "stopId": "49324"}, {"stopSequence": 54, "arrival": {"time": "1694891985"}, "stopId": "49323"}, {"stopSequence": 55, "arrival": {"time": "1694892042"}, "stopId": "38503"}, {"stopSequence": 56, "arrival": {"time": "1694892265"}, "stopId": "35691"}, {"stopSequence": 57, "arrival": {"time": "1694892407"}, "stopId": "35693"}, {"stopSequence": 58, "arrival": {"time": "1694892488"}, "stopId": "35694"}, {"stopSequence": 59, "arrival": {"time": "1694892548"}, "stopId": "35695"}, {"stopSequence": 60, "arrival": {"time": "1694892620"}, "stopId": "35696"}, {"stopSequence": 61, "arrival": {"time": "1694892891"}, "stopId": "35697"}, {"stopSequence": 62, "arrival": {"time": "1694893100"}, "stopId": "39778"}, {"stopSequence": 63, "arrival": {"time": "1694893290"}, "stopId": "35797"}, {"stopSequence": 64, "arrival": {"time": "1694893367"}, "stopId": "35798"}, {"stopSequence": 65, "arrival": {"time": "1694893440"}, "stopId": "35799"}, {"stopSequence": 66, "arrival": {"time": "1694893576"}, "stopId": "35800"}, {"stopSequence": 67, "arrival": {"time": "1694893676"}, "stopId": "35801"}, {"stopSequence": 68, "arrival": {"time": "1694893729"}, "stopId": "35802"}, {"stopSequence": 69, "arrival": {"time": "1694893830"}, "stopId": "35803"}, {"stopSequence": 70, "arrival": {"time": "1694893950"}, "stopId": "38507"}, {"stopSequence": 71, "arrival": {"time": "1694894063"}, "stopId": "34473"}, {"stopSequence": 72, "arrival": {"time": "1694894164"}, "stopId": "38500"}, {"stopSequence": 73, "arrival": {"time": "1694894273"}, "stopId": "35808"}, {"stopSequence": 74, "arrival": {"time": "1694894414"}, "stopId": "35710"}, {"stopSequence": 75, "arrival": {"time": "1694894527"}, "stopId": "50036"}, {"stopSequence": 76, "arrival": {"time": "1694895160"}, "stopId": "50037"}, {"stopSequence": 77, "arrival": {"time": "1694895612"}, "stopId": "50038"}, {"stopSequence": 78, "arrival": {"time": "1694895872"}, "stopId": "50039"}, {"stopSequence": 79, "arrival": {"time": "1694896082"}, "stopId": "50040"}, {"stopSequence": 80, "arrival": {"time": "1694896403"}, "stopId": "50041"}, {"stopSequence": 81, "arrival": {"time": "1694897004"}, "stopId": "Jun-15"}, {"stopSequence": 82, "arrival": {"time": "1694897451"}, "stopId": "Jun-13"}, {"stopSequence": 83, "arrival": {"time": "1694898500"}, "stopId": "6-Oct"}, {"stopSequence": 84, "arrival": {"time": "1694898821"}, "stopId": "6-Aug"}, {"stopSequence": 85, "arrival": {"time": "1694899876"}, "stopId": "6-Jun"}, {"stopSequence": 86, "arrival": {"time": "1694900949"}, "stopId": "6-Feb"}, {"stopSequence": 87, "arrival": {"time": "1694902175"}, "stopId": "10940386"}, {"stopSequence": 88, "arrival": {"time": "1694902689"}, "stopId": "10940383"}, {"stopSequence": 89, "arrival": {"time": "1694903131"}, "stopId": "10940382"}, {"stopSequence": 90, "arrival": {"time": "1694903634"}, "stopId": "10940381"}, {"stopSequence": 91, "arrival": {"time": "1694904468"}, "stopId": "10940374"}, {"stopSequence": 92, "arrival": {"time": "1694905547"}, "stopId": "10940370"}, {"stopSequence": 93, "arrival": {"time": "1694905962"}, "stopId": "10940367"}, {"stopSequence": 94, "arrival": {"time": "1694906449"}, "stopId": "10940368"}, {"stopSequence": 95, "arrival": {"time": "1694907886"}, "stopId": "10940388"}, {"stopSequence": 96, "arrival": {"time": "1694911955"}, "stopId": "10-Apr"}, {"stopSequence": 97, "arrival": {"time": "1694914031"}, "stopId": "10-Jan"}, {"stopSequence": 98, "arrival": {"time": "1694915571"}, "stopId": "44863"}, {"stopSequence": 99, "arrival": {"time": "1694916856"}, "stopId": "10-Mar"}, {"stopSequence": 100, "arrival": {"time": "1694919414"}, "stopId": "11-Jan"}, {"stopSequence": 101, "arrival": {"time": "1694922225"}, "stopId": "44866"}, {"stopSequence": 102, "arrival": {"time": "1694924714"}, "stopId": "44867"}, {"stopSequence": 103, "arrival": {"time": "1694926613"}, "stopId": "44868"}, {"stopSequence": 104, "arrival": {"time": "1694928760"}, "stopId": "44869"}, {"stopSequence": 105, "arrival": {"time": "1694931694"}, "stopId": "44870"}, {"stopSequence": 106, "arrival": {"time": "1694935218"}, "stopId": "44871"}, {"stopSequence": 107, "arrival": {"time": "1694940208"}, "stopId": "44872"}, {"stopSequence": 108, "arrival": {"time": "1694950764"}, "stopId": "50020"}, {"stopSequence": 109, "arrival": {"time": "1694974468"}, "stopId": "14-11"}, {"stopSequence": 110, "arrival": {"time": "1694992240"}, "stopId": "91162"}, {"stopSequence": 111, "arrival": {"time": "1695069728"}, "stopId": "50023"}, {"stopSequence": 112, "arrival": {"time": "1697128150"}, "stopId": "14-Jul"}], "vehicle": {"licensePlate": "BGBL13"}, "timestamp": "1694889033"}, "vehicle": {"trip": {"tripId": "21198-701ff27f-2", "startTime": "15:21:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "737", "directionId": 1}, "position": {"latitude": -36.723183, "longitude": -73.13582, "bearing": 227.0, "odometer": 0.0, "speed": 8.333333}, "timestamp": "1694889033", "vehicle": {"licensePlate": "BGBL13"}}}, {"id": "5a12e27a-fd61-4f8d-839b-0c1bde1a3fa5", "tripUpdate": {"trip": {"tripId": "21255-701ff27f-2", "startTime": "15:20:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "737", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 29, "arrival": {"time": "1694889033"}, "stopId": "37567"}, {"stopSequence": 30, "arrival": {"time": "1694889058"}, "stopId": "13-Jan"}, {"stopSequence": 31, "arrival": {"time": "1694889112"}, "stopId": "13-Feb"}, {"stopSequence": 32, "arrival": {"time": "1694889139"}, "stopId": "28-Jan"}, {"stopSequence": 33, "arrival": {"time": "1694889188"}, "stopId": "12-3"}, {"stopSequence": 34, "arrival": {"time": "1694889267"}, "stopId": "12-Jan"}, {"stopSequence": 35, "arrival": {"time": "1694889311"}, "stopId": "12-Feb"}, {"stopSequence": 36, "arrival": {"time": "1694889401"}, "stopId": "10940364"}, {"stopSequence": 37, "arrival": {"time": "1694889473"}, "stopId": "10940365"}, {"stopSequence": 38, "arrival": {"time": "1694889513"}, "stopId": "10940366"}, {"stopSequence": 39, "arrival": {"time": "1694889542"}, "stopId": "10940369"}, {"stopSequence": 40, "arrival": {"time": "1694889589"}, "stopId": "10940372"}, {"stopSequence": 41, "arrival": {"time": "1694889649"}, "stopId": "10940380"}, {"stopSequence": 42, "arrival": {"time": "1694889908"}, "stopId": "6-Jan"}, {"stopSequence": 43, "arrival": {"time": "1694889975"}, "stopId": "6-Mar"}, {"stopSequence": 44, "arrival": {"time": "1694890073"}, "stopId": "6-May"}, {"stopSequence": 45, "arrival": {"time": "1694890224"}, "stopId": "6-Jul"}, {"stopSequence": 46, "arrival": {"time": "1694890287"}, "stopId": "6-Sep"}, {"stopSequence": 47, "arrival": {"time": "1694890378"}, "stopId": "6-Nov"}, {"stopSequence": 48, "arrival": {"time": "1694890479"}, "stopId": "6-Dec"}, {"stopSequence": 49, "arrival": {"time": "1694890569"}, "stopId": "Jun-14"}, {"stopSequence": 50, "arrival": {"time": "1694890721"}, "stopId": "Jun-17"}, {"stopSequence": 51, "arrival": {"time": "1694890803"}, "stopId": "Jun-19"}, {"stopSequence": 52, "arrival": {"time": "1694890865"}, "stopId": "Jun-20"}, {"stopSequence": 53, "arrival": {"time": "1694890929"}, "stopId": "Jun-22"}, {"stopSequence": 54, "arrival": {"time": "1694890998"}, "stopId": "Jun-24"}, {"stopSequence": 55, "arrival": {"time": "1694891093"}, "stopId": "Jun-25"}, {"stopSequence": 56, "arrival": {"time": "1694891414"}, "stopId": "90003"}, {"stopSequence": 57, "arrival": {"time": "1694891468"}, "stopId": "90007"}, {"stopSequence": 58, "arrival": {"time": "1694891528"}, "stopId": "90008"}, {"stopSequence": 59, "arrival": {"time": "1694891661"}, "stopId": "39599"}, {"stopSequence": 60, "arrival": {"time": "1694891689"}, "stopId": "39600"}, {"stopSequence": 61, "arrival": {"time": "1694891772"}, "stopId": "37496"}, {"stopSequence": 62, "arrival": {"time": "1694891834"}, "stopId": "45064"}, {"stopSequence": 63, "arrival": {"time": "1694891929"}, "stopId": "37506"}, {"stopSequence": 64, "arrival": {"time": "1694892028"}, "stopId": "45069"}, {"stopSequence": 65, "arrival": {"time": "1694892181"}, "stopId": "37523"}, {"stopSequence": 66, "arrival": {"time": "1694892238"}, "stopId": "37477"}, {"stopSequence": 67, "arrival": {"time": "1694892363"}, "stopId": "49310"}, {"stopSequence": 68, "arrival": {"time": "1694892410"}, "stopId": "49311"}, {"stopSequence": 69, "arrival": {"time": "1694892491"}, "stopId": "39634"}, {"stopSequence": 70, "arrival": {"time": "1694892532"}, "stopId": "39635"}, {"stopSequence": 71, "arrival": {"time": "1694892603"}, "stopId": "39636"}, {"stopSequence": 72, "arrival": {"time": "1694892687"}, "stopId": "49503"}, {"stopSequence": 73, "arrival": {"time": "1694892895"}, "stopId": "39637"}, {"stopSequence": 74, "arrival": {"time": "1694892980"}, "stopId": "49317"}, {"stopSequence": 75, "arrival": {"time": "1694893035"}, "stopId": "49318"}, {"stopSequence": 76, "arrival": {"time": "1694893152"}, "stopId": "49319"}, {"stopSequence": 77, "arrival": {"time": "1694893269"}, "stopId": "39641"}, {"stopSequence": 78, "arrival": {"time": "1694893822"}, "stopId": "49324"}, {"stopSequence": 79, "arrival": {"time": "1694893907"}, "stopId": "49325"}, {"stopSequence": 80, "arrival": {"time": "1694894036"}, "stopId": "49326"}, {"stopSequence": 81, "arrival": {"time": "1694894089"}, "stopId": "39648"}, {"stopSequence": 82, "arrival": {"time": "1694894212"}, "stopId": "39649"}, {"stopSequence": 83, "arrival": {"time": "1694894298"}, "stopId": "45112"}, {"stopSequence": 84, "arrival": {"time": "1694894426"}, "stopId": "45113"}, {"stopSequence": 85, "arrival": {"time": "1694894609"}, "stopId": "37490"}, {"stopSequence": 86, "arrival": {"time": "1694894778"}, "stopId": "45115"}, {"stopSequence": 87, "arrival": {"time": "1694894846"}, "stopId": "45116"}, {"stopSequence": 88, "arrival": {"time": "1694895049"}, "stopId": "45118"}, {"stopSequence": 89, "arrival": {"time": "1694895274"}, "stopId": "45119"}, {"stopSequence": 90, "arrival": {"time": "1694895414"}, "stopId": "45120"}, {"stopSequence": 91, "arrival": {"time": "1694895593"}, "stopId": "45121"}, {"stopSequence": 92, "arrival": {"time": "1694895735"}, "stopId": "38535"}, {"stopSequence": 93, "arrival": {"time": "1694896006"}, "stopId": "38536"}, {"stopSequence": 94, "arrival": {"time": "1694896139"}, "stopId": "4838437"}, {"stopSequence": 95, "arrival": {"time": "1694896349"}, "stopId": "45085"}, {"stopSequence": 96, "arrival": {"time": "1694896672"}, "stopId": "45086"}, {"stopSequence": 97, "arrival": {"time": "1694896919"}, "stopId": "38539"}, {"stopSequence": 98, "arrival": {"time": "1694897178"}, "stopId": "38540"}, {"stopSequence": 99, "arrival": {"time": "1694897557"}, "stopId": "38544"}, {"stopSequence": 100, "arrival": {"time": "1694897869"}, "stopId": "38545"}, {"stopSequence": 101, "arrival": {"time": "1694898805"}, "stopId": "45095"}, {"stopSequence": 102, "arrival": {"time": "1694899072"}, "stopId": "45096"}, {"stopSequence": 103, "arrival": {"time": "1694899550"}, "stopId": "45098"}, {"stopSequence": 104, "arrival": {"time": "1694899775"}, "stopId": "45099"}, {"stopSequence": 105, "arrival": {"time": "1694899928"}, "stopId": "45100"}, {"stopSequence": 106, "arrival": {"time": "1694900133"}, "stopId": "45101"}, {"stopSequence": 107, "arrival": {"time": "1694900426"}, "stopId": "45102"}, {"stopSequence": 108, "arrival": {"time": "1694900643"}, "stopId": "45103"}, {"stopSequence": 109, "arrival": {"time": "1694900852"}, "stopId": "45104"}, {"stopSequence": 110, "arrival": {"time": "1694901082"}, "stopId": "45122"}, {"stopSequence": 111, "arrival": {"time": "1694901582"}, "stopId": "38630"}, {"stopSequence": 112, "arrival": {"time": "1694904202"}, "stopId": "49349"}, {"stopSequence": 113, "arrival": {"time": "1694906030"}, "stopId": "49350"}, {"stopSequence": 114, "arrival": {"time": "1694906866"}, "stopId": "49351"}, {"stopSequence": 115, "arrival": {"time": "1694907514"}, "stopId": "49352"}, {"stopSequence": 116, "arrival": {"time": "1694908316"}, "stopId": "49353"}, {"stopSequence": 117, "arrival": {"time": "1694909256"}, "stopId": "49354"}, {"stopSequence": 118, "arrival": {"time": "1694910627"}, "stopId": "38566"}, {"stopSequence": 119, "arrival": {"time": "1694911420"}, "stopId": "38567"}, {"stopSequence": 120, "arrival": {"time": "1694912813"}, "stopId": "38568"}, {"stopSequence": 121, "arrival": {"time": "1694913748"}, "stopId": "38569"}, {"stopSequence": 122, "arrival": {"time": "1694915264"}, "stopId": "38570"}, {"stopSequence": 123, "arrival": {"time": "1694917574"}, "stopId": "38571"}, {"stopSequence": 124, "arrival": {"time": "1694920132"}, "stopId": "38572"}, {"stopSequence": 125, "arrival": {"time": "1694932322"}, "stopId": "38393"}, {"stopSequence": 126, "arrival": {"time": "1694937812"}, "stopId": "38394"}, {"stopSequence": 127, "arrival": {"time": "1694944597"}, "stopId": "38395"}, {"stopSequence": 128, "arrival": {"time": "1694950791"}, "stopId": "38396"}, {"stopSequence": 129, "arrival": {"time": "1694965663"}, "stopId": "38397"}, {"stopSequence": 130, "arrival": {"time": "1694973575"}, "stopId": "38398"}, {"stopSequence": 131, "arrival": {"time": "1694984273"}, "stopId": "38399"}, {"stopSequence": 132, "arrival": {"time": "1695027711"}, "stopId": "38400"}, {"stopSequence": 133, "arrival": {"time": "1695097904"}, "stopId": "38401"}, {"stopSequence": 134, "arrival": {"time": "1695287869"}, "stopId": "38402"}], "vehicle": {"licensePlate": "CFWC16"}, "timestamp": "1694888988"}, "vehicle": {"trip": {"tripId": "21255-701ff27f-2", "startTime": "15:20:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "737", "directionId": 0}, "position": {"latitude": -36.731625, "longitude": -72.98898, "bearing": 244.0, "odometer": 0.0, "speed": 8.888889}, "timestamp": "1694888988", "vehicle": {"licensePlate": "CFWC16"}}}, {"id": "6c1f2d20-073a-4190-bd59-6a14489a1b2c", "tripUpdate": {"trip": {"tripId": "21253-701ff27f-2", "startTime": "14:40:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "737", "directionId": 0}, "stopTimeUpdate": [{"stopSequence": 59, "arrival": {"time": "1694889067"}, "stopId": "39599"}, {"stopSequence": 60, "arrival": {"time": "1694889091"}, "stopId": "39600"}, {"stopSequence": 61, "arrival": {"time": "1694889161"}, "stopId": "37496"}, {"stopSequence": 62, "arrival": {"time": "1694889212"}, "stopId": "45064"}, {"stopSequence": 63, "arrival": {"time": "1694889287"}, "stopId": "37506"}, {"stopSequence": 64, "arrival": {"time": "1694889363"}, "stopId": "45069"}, {"stopSequence": 65, "arrival": {"time": "1694889476"}, "stopId": "37523"}, {"stopSequence": 66, "arrival": {"time": "1694889516"}, "stopId": "37477"}, {"stopSequence": 67, "arrival": {"time": "1694889602"}, "stopId": "49310"}, {"stopSequence": 68, "arrival": {"time": "1694889633"}, "stopId": "49311"}, {"stopSequence": 69, "arrival": {"time": "1694889686"}, "stopId": "39634"}, {"stopSequence": 70, "arrival": {"time": "1694889713"}, "stopId": "39635"}, {"stopSequence": 71, "arrival": {"time": "1694889758"}, "stopId": "39636"}, {"stopSequence": 72, "arrival": {"time": "1694889810"}, "stopId": "49503"}, {"stopSequence": 73, "arrival": {"time": "1694889933"}, "stopId": "39637"}, {"stopSequence": 74, "arrival": {"time": "1694889981"}, "stopId": "49317"}, {"stopSequence": 75, "arrival": {"time": "1694890012"}, "stopId": "49318"}, {"stopSequence": 76, "arrival": {"time": "1694890076"}, "stopId": "49319"}, {"stopSequence": 77, "arrival": {"time": "1694890138"}, "stopId": "39641"}, {"stopSequence": 78, "arrival": {"time": "1694890408"}, "stopId": "49324"}, {"stopSequence": 79, "arrival": {"time": "1694890446"}, "stopId": "49325"}, {"stopSequence": 80, "arrival": {"time": "1694890503"}, "stopId": "49326"}, {"stopSequence": 81, "arrival": {"time": "1694890526"}, "stopId": "39648"}, {"stopSequence": 82, "arrival": {"time": "1694890578"}, "stopId": "39649"}, {"stopSequence": 83, "arrival": {"time": "1694890615"}, "stopId": "45112"}, {"stopSequence": 84, "arrival": {"time": "1694890667"}, "stopId": "45113"}, {"stopSequence": 85, "arrival": {"time": "1694890739"}, "stopId": "37490"}, {"stopSequence": 86, "arrival": {"time": "1694890804"}, "stopId": "45115"}, {"stopSequence": 87, "arrival": {"time": "1694890829"}, "stopId": "45116"}, {"stopSequence": 88, "arrival": {"time": "1694890903"}, "stopId": "45118"}, {"stopSequence": 89, "arrival": {"time": "1694890982"}, "stopId": "45119"}, {"stopSequence": 90, "arrival": {"time": "1694891030"}, "stopId": "45120"}, {"stopSequence": 91, "arrival": {"time": "1694891089"}, "stopId": "45121"}, {"stopSequence": 92, "arrival": {"time": "1694891134"}, "stopId": "38535"}, {"stopSequence": 93, "arrival": {"time": "1694891219"}, "stopId": "38536"}, {"stopSequence": 94, "arrival": {"time": "1694891259"}, "stopId": "4838437"}, {"stopSequence": 95, "arrival": {"time": "1694891320"}, "stopId": "45085"}, {"stopSequence": 96, "arrival": {"time": "1694891411"}, "stopId": "45086"}, {"stopSequence": 97, "arrival": {"time": "1694891478"}, "stopId": "38539"}, {"stopSequence": 98, "arrival": {"time": "1694891545"}, "stopId": "38540"}, {"stopSequence": 99, "arrival": {"time": "1694891640"}, "stopId": "38544"}, {"stopSequence": 100, "arrival": {"time": "1694891714"}, "stopId": "38545"}, {"stopSequence": 101, "arrival": {"time": "1694891919"}, "stopId": "45095"}, {"stopSequence": 102, "arrival": {"time": "1694891974"}, "stopId": "45096"}, {"stopSequence": 103, "arrival": {"time": "1694892067"}, "stopId": "45098"}, {"stopSequence": 104, "arrival": {"time": "1694892109"}, "stopId": "45099"}, {"stopSequence": 105, "arrival": {"time": "1694892137"}, "stopId": "45100"}, {"stopSequence": 106, "arrival": {"time": "1694892174"}, "stopId": "45101"}, {"stopSequence": 107, "arrival": {"time": "1694892225"}, "stopId": "45102"}, {"stopSequence": 108, "arrival": {"time": "1694892261"}, "stopId": "45103"}, {"stopSequence": 109, "arrival": {"time": "1694892296"}, "stopId": "45104"}, {"stopSequence": 110, "arrival": {"time": "1694892333"}, "stopId": "45122"}, {"stopSequence": 111, "arrival": {"time": "1694892411"}, "stopId": "38630"}, {"stopSequence": 112, "arrival": {"time": "1694892763"}, "stopId": "49349"}, {"stopSequence": 113, "arrival": {"time": "1694892964"}, "stopId": "49350"}, {"stopSequence": 114, "arrival": {"time": "1694893047"}, "stopId": "49351"}, {"stopSequence": 115, "arrival": {"time": "1694893107"}, "stopId": "49352"}, {"stopSequence": 116, "arrival": {"time": "1694893177"}, "stopId": "49353"}, {"stopSequence": 117, "arrival": {"time": "1694893255"}, "stopId": "49354"}, {"stopSequence": 118, "arrival": {"time": "1694893359"}, "stopId": "38566"}, {"stopSequence": 119, "arrival": {"time": "1694893414"}, "stopId": "38567"}, {"stopSequence": 120, "arrival": {"time": "1694893506"}, "stopId": "38568"}, {"stopSequence": 121, "arrival": {"time": "1694893563"}, "stopId": "38569"}, {"stopSequence": 122, "arrival": {"time": "1694893648"}, "stopId": "38570"}, {"stopSequence": 123, "arrival": {"time": "1694893765"}, "stopId": "38571"}, {"stopSequence": 124, "arrival": {"time": "1694893879"}, "stopId": "38572"}, {"stopSequence": 125, "arrival": {"time": "1694894264"}, "stopId": "38393"}, {"stopSequence": 126, "arrival": {"time": "1694894383"}, "stopId": "38394"}, {"stopSequence": 127, "arrival": {"time": "1694894503"}, "stopId": "38395"}, {"stopSequence": 128, "arrival": {"time": "1694894591"}, "stopId": "38396"}, {"stopSequence": 129, "arrival": {"time": "1694894751"}, "stopId": "38397"}, {"stopSequence": 130, "arrival": {"time": "1694894816"}, "stopId": "38398"}, {"stopSequence": 131, "arrival": {"time": "1694894887"}, "stopId": "38399"}, {"stopSequence": 132, "arrival": {"time": "1694895070"}, "stopId": "38400"}, {"stopSequence": 133, "arrival": {"time": "1694895211"}, "stopId": "38401"}, {"stopSequence": 134, "arrival": {"time": "1694895349"}, "stopId": "38402"}, {"stopSequence": 135, "arrival": {"time": "1694895602"}, "stopId": "38433"}], "vehicle": {"licensePlate": "CTDG26"}, "timestamp": "1694888976"}, "vehicle": {"trip": {"tripId": "21253-701ff27f-2", "startTime": "14:40:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "737", "directionId": 0}, "position": {"latitude": -36.816154, "longitude": -73.03784, "bearing": 235.0, "odometer": 0.0, "speed": 9.166667}, "timestamp": "1694888976", "vehicle": {"licensePlate": "CTDG26"}}}, {"id": "6f40a23a-cc78-4f23-b342-2d947adcaa4d", "tripUpdate": {"trip": {"tripId": "21193-701ff27f-2", "startTime": "13:41:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "737", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 107, "arrival": {"time": "1694889045"}, "stopId": "44872"}, {"stopSequence": 108, "arrival": {"time": "1694889112"}, "stopId": "50020"}, {"stopSequence": 109, "arrival": {"time": "1694889201"}, "stopId": "14-11"}, {"stopSequence": 110, "arrival": {"time": "1694889241"}, "stopId": "91162"}, {"stopSequence": 111, "arrival": {"time": "1694889323"}, "stopId": "50023"}, {"stopSequence": 112, "arrival": {"time": "1694889423"}, "stopId": "14-Jul"}, {"stopSequence": 113, "arrival": {"time": "1694889461"}, "stopId": "14-Apr"}, {"stopSequence": 114, "arrival": {"time": "1694889507"}, "stopId": "37474"}, {"stopSequence": 115, "arrival": {"time": "1694889555"}, "stopId": "44879"}, {"stopSequence": 116, "arrival": {"time": "1694889577"}, "stopId": "44880"}, {"stopSequence": 117, "arrival": {"time": "1694889608"}, "stopId": "44881"}, {"stopSequence": 118, "arrival": {"time": "1694889631"}, "stopId": "44874"}, {"stopSequence": 119, "arrival": {"time": "1694889686"}, "stopId": "38151"}, {"stopSequence": 120, "arrival": {"time": "1694889826"}, "stopId": "15-13"}, {"stopSequence": 121, "arrival": {"time": "1694889879"}, "stopId": "38194"}, {"stopSequence": 122, "arrival": {"time": "1694889902"}, "stopId": "38124"}, {"stopSequence": 123, "arrival": {"time": "1694889915"}, "stopId": "50014"}, {"stopSequence": 124, "arrival": {"time": "1694889928"}, "stopId": "38204"}, {"stopSequence": 125, "arrival": {"time": "1694889969"}, "stopId": "50013"}, {"stopSequence": 126, "arrival": {"time": "1694890003"}, "stopId": "38127"}, {"stopSequence": 127, "arrival": {"time": "1694890018"}, "stopId": "50029"}, {"stopSequence": 128, "arrival": {"time": "1694890040"}, "stopId": "50015"}, {"stopSequence": 129, "arrival": {"time": "1694890229"}, "stopId": "38149"}, {"stopSequence": 130, "arrival": {"time": "1694890294"}, "stopId": "14-Feb"}, {"stopSequence": 131, "arrival": {"time": "1694890311"}, "stopId": "50028"}], "vehicle": {"licensePlate": "DGLT68"}, "timestamp": "1694889004"}, "vehicle": {"trip": {"tripId": "21193-701ff27f-2", "startTime": "13:41:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "737", "directionId": 1}, "position": {"latitude": -36.72733, "longitude": -72.98685, "bearing": 6.0, "odometer": 0.0, "speed": 6.388889}, "timestamp": "1694889004", "vehicle": {"licensePlate": "DGLT68"}}}, {"id": "9d34577b-08b0-4b32-ab9c-7a64ac2505a7", "tripUpdate": {"trip": {"tripId": "21196-701ff27f-2", "startTime": "14:41:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "737", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 38, "arrival": {"time": "1694889107"}, "stopId": "38735"}, {"stopSequence": 39, "arrival": {"time": "1694889164"}, "stopId": "42270"}, {"stopSequence": 40, "arrival": {"time": "1694889212"}, "stopId": "42271"}, {"stopSequence": 41, "arrival": {"time": "1694889417"}, "stopId": "38688"}, {"stopSequence": 42, "arrival": {"time": "1694889467"}, "stopId": "38673"}, {"stopSequence": 43, "arrival": {"time": "1694889543"}, "stopId": "39785"}, {"stopSequence": 44, "arrival": {"time": "1694889582"}, "stopId": "38664"}, {"stopSequence": 45, "arrival": {"time": "1694889635"}, "stopId": "38702"}, {"stopSequence": 46, "arrival": {"time": "1694889678"}, "stopId": "39787"}, {"stopSequence": 47, "arrival": {"time": "1694889719"}, "stopId": "38501"}, {"stopSequence": 48, "arrival": {"time": "1694889775"}, "stopId": "38692"}, {"stopSequence": 49, "arrival": {"time": "1694889843"}, "stopId": "38714"}, {"stopSequence": 50, "arrival": {"time": "1694889891"}, "stopId": "39791"}, {"stopSequence": 51, "arrival": {"time": "1694889925"}, "stopId": "38506"}, {"stopSequence": 52, "arrival": {"time": "1694890003"}, "stopId": "49326"}, {"stopSequence": 53, "arrival": {"time": "1694890094"}, "stopId": "49324"}, {"stopSequence": 54, "arrival": {"time": "1694890132"}, "stopId": "49323"}, {"stopSequence": 55, "arrival": {"time": "1694890174"}, "stopId": "38503"}, {"stopSequence": 56, "arrival": {"time": "1694890333"}, "stopId": "35691"}, {"stopSequence": 57, "arrival": {"time": "1694890430"}, "stopId": "35693"}, {"stopSequence": 58, "arrival": {"time": "1694890484"}, "stopId": "35694"}, {"stopSequence": 59, "arrival": {"time": "1694890524"}, "stopId": "35695"}, {"stopSequence": 60, "arrival": {"time": "1694890571"}, "stopId": "35696"}, {"stopSequence": 61, "arrival": {"time": "1694890741"}, "stopId": "35697"}, {"stopSequence": 62, "arrival": {"time": "1694890866"}, "stopId": "39778"}, {"stopSequence": 63, "arrival": {"time": "1694890975"}, "stopId": "35797"}, {"stopSequence": 64, "arrival": {"time": "1694891019"}, "stopId": "35798"}, {"stopSequence": 65, "arrival": {"time": "1694891059"}, "stopId": "35799"}, {"stopSequence": 66, "arrival": {"time": "1694891134"}, "stopId": "35800"}, {"stopSequence": 67, "arrival": {"time": "1694891188"}, "stopId": "35801"}, {"stopSequence": 68, "arrival": {"time": "1694891216"}, "stopId": "35802"}, {"stopSequence": 69, "arrival": {"time": "1694891269"}, "stopId": "35803"}, {"stopSequence": 70, "arrival": {"time": "1694891331"}, "stopId": "38507"}, {"stopSequence": 71, "arrival": {"time": "1694891388"}, "stopId": "34473"}, {"stopSequence": 72, "arrival": {"time": "1694891438"}, "stopId": "38500"}, {"stopSequence": 73, "arrival": {"time": "1694891491"}, "stopId": "35808"}, {"stopSequence": 74, "arrival": {"time": "1694891559"}, "stopId": "35710"}, {"stopSequence": 75, "arrival": {"time": "1694891612"}, "stopId": "50036"}, {"stopSequence": 76, "arrival": {"time": "1694891896"}, "stopId": "50037"}, {"stopSequence": 77, "arrival": {"time": "1694892085"}, "stopId": "50038"}, {"stopSequence": 78, "arrival": {"time": "1694892189"}, "stopId": "50039"}, {"stopSequence": 79, "arrival": {"time": "1694892270"}, "stopId": "50040"}, {"stopSequence": 80, "arrival": {"time": "1694892391"}, "stopId": "50041"}, {"stopSequence": 81, "arrival": {"time": "1694892605"}, "stopId": "Jun-15"}, {"stopSequence": 82, "arrival": {"time": "1694892755"}, "stopId": "Jun-13"}, {"stopSequence": 83, "arrival": {"time": "1694893081"}, "stopId": "6-Oct"}, {"stopSequence": 84, "arrival": {"time": "1694893175"}, "stopId": "6-Aug"}, {"stopSequence": 85, "arrival": {"time": "1694893461"}, "stopId": "6-Jun"}, {"stopSequence": 86, "arrival": {"time": "1694893726"}, "stopId": "6-Feb"}, {"stopSequence": 87, "arrival": {"time": "1694893999"}, "stopId": "10940386"}, {"stopSequence": 88, "arrival": {"time": "1694894106"}, "stopId": "10940383"}, {"stopSequence": 89, "arrival": {"time": "1694894194"}, "stopId": "10940382"}, {"stopSequence": 90, "arrival": {"time": "1694894291"}, "stopId": "10940381"}, {"stopSequence": 91, "arrival": {"time": "1694894444"}, "stopId": "10940374"}, {"stopSequence": 92, "arrival": {"time": "1694894627"}, "stopId": "10940370"}, {"stopSequence": 93, "arrival": {"time": "1694894695"}, "stopId": "10940367"}, {"stopSequence": 94, "arrival": {"time": "1694894771"}, "stopId": "10940368"}, {"stopSequence": 95, "arrival": {"time": "1694894981"}, "stopId": "10940388"}, {"stopSequence": 96, "arrival": {"time": "1694895483"}, "stopId": "10-Apr"}, {"stopSequence": 97, "arrival": {"time": "1694895697"}, "stopId": "10-Jan"}, {"stopSequence": 98, "arrival": {"time": "1694895840"}, "stopId": "44863"}, {"stopSequence": 99, "arrival": {"time": "1694895951"}, "stopId": "10-Mar"}, {"stopSequence": 100, "arrival": {"time": "1694896152"}, "stopId": "11-Jan"}, {"stopSequence": 101, "arrival": {"time": "1694896347"}, "stopId": "44866"}, {"stopSequence": 102, "arrival": {"time": "1694896500"}, "stopId": "44867"}, {"stopSequence": 103, "arrival": {"time": "1694896607"}, "stopId": "44868"}, {"stopSequence": 104, "arrival": {"time": "1694896718"}, "stopId": "44869"}, {"stopSequence": 105, "arrival": {"time": "1694896856"}, "stopId": "44870"}, {"stopSequence": 106, "arrival": {"time": "1694897003"}, "stopId": "44871"}, {"stopSequence": 107, "arrival": {"time": "1694897183"}, "stopId": "44872"}, {"stopSequence": 108, "arrival": {"time": "1694897484"}, "stopId": "50020"}, {"stopSequence": 109, "arrival": {"time": "1694897922"}, "stopId": "14-11"}, {"stopSequence": 110, "arrival": {"time": "1694898132"}, "stopId": "91162"}, {"stopSequence": 111, "arrival": {"time": "1694898596"}, "stopId": "50023"}, {"stopSequence": 112, "arrival": {"time": "1694899228"}, "stopId": "14-Jul"}, {"stopSequence": 113, "arrival": {"time": "1694899483"}, "stopId": "14-Apr"}, {"stopSequence": 114, "arrival": {"time": "1694899818"}, "stopId": "37474"}, {"stopSequence": 115, "arrival": {"time": "1694900185"}, "stopId": "44879"}, {"stopSequence": 116, "arrival": {"time": "1694900363"}, "stopId": "44880"}, {"stopSequence": 117, "arrival": {"time": "1694900624"}, "stopId": "44881"}, {"stopSequence": 118, "arrival": {"time": "1694900823"}, "stopId": "44874"}, {"stopSequence": 119, "arrival": {"time": "1694901326"}, "stopId": "38151"}, {"stopSequence": 120, "arrival": {"time": "1694902811"}, "stopId": "15-13"}, {"stopSequence": 121, "arrival": {"time": "1694903466"}, "stopId": "38194"}, {"stopSequence": 122, "arrival": {"time": "1694903771"}, "stopId": "38124"}, {"stopSequence": 123, "arrival": {"time": "1694903943"}, "stopId": "50014"}, {"stopSequence": 124, "arrival": {"time": "1694904129"}, "stopId": "38204"}, {"stopSequence": 125, "arrival": {"time": "1694904713"}, "stopId": "50013"}, {"stopSequence": 126, "arrival": {"time": "1694905242"}, "stopId": "38127"}, {"stopSequence": 127, "arrival": {"time": "1694905484"}, "stopId": "50029"}, {"stopSequence": 128, "arrival": {"time": "1694905845"}, "stopId": "50015"}, {"stopSequence": 129, "arrival": {"time": "1694909752"}, "stopId": "38149"}, {"stopSequence": 130, "arrival": {"time": "1694911507"}, "stopId": "14-Feb"}, {"stopSequence": 131, "arrival": {"time": "1694912011"}, "stopId": "50028"}], "vehicle": {"licensePlate": "FYBB73"}, "timestamp": "1694889034"}, "vehicle": {"trip": {"tripId": "21196-701ff27f-2", "startTime": "14:41:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "737", "directionId": 1}, "position": {"latitude": -36.753693, "longitude": -73.0923, "bearing": 178.0, "odometer": 0.0, "speed": 6.388889}, "timestamp": "1694889034", "vehicle": {"licensePlate": "FYBB73"}}}, {"id": "787773c6-f684-4c61-ab34-3aa91ce01722", "tripUpdate": {"trip": {"tripId": "21195-701ff27f-2", "startTime": "14:21:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "737", "directionId": 1}, "stopTimeUpdate": [{"stopSequence": 70, "arrival": {"time": "1694889065"}, "stopId": "38507"}, {"stopSequence": 71, "arrival": {"time": "1694889119"}, "stopId": "34473"}, {"stopSequence": 72, "arrival": {"time": "1694889165"}, "stopId": "38500"}, {"stopSequence": 73, "arrival": {"time": "1694889213"}, "stopId": "35808"}, {"stopSequence": 74, "arrival": {"time": "1694889273"}, "stopId": "35710"}, {"stopSequence": 75, "arrival": {"time": "1694889318"}, "stopId": "50036"}, {"stopSequence": 76, "arrival": {"time": "1694889549"}, "stopId": "50037"}, {"stopSequence": 77, "arrival": {"time": "1694889691"}, "stopId": "50038"}, {"stopSequence": 78, "arrival": {"time": "1694889766"}, "stopId": "50039"}, {"stopSequence": 79, "arrival": {"time": "1694889823"}, "stopId": "50040"}, {"stopSequence": 80, "arrival": {"time": "1694889905"}, "stopId": "50041"}, {"stopSequence": 81, "arrival": {"time": "1694890043"}, "stopId": "Jun-15"}, {"stopSequence": 82, "arrival": {"time": "1694890136"}, "stopId": "Jun-13"}, {"stopSequence": 83, "arrival": {"time": "1694890326"}, "stopId": "6-Oct"}, {"stopSequence": 84, "arrival": {"time": "1694890377"}, "stopId": "6-Aug"}, {"stopSequence": 85, "arrival": {"time": "1694890529"}, "stopId": "6-Jun"}, {"stopSequence": 86, "arrival": {"time": "1694890661"}, "stopId": "6-Feb"}, {"stopSequence": 87, "arrival": {"time": "1694890790"}, "stopId": "10940386"}, {"stopSequence": 88, "arrival": {"time": "1694890839"}, "stopId": "10940383"}, {"stopSequence": 89, "arrival": {"time": "1694890878"}, "stopId": "10940382"}, {"stopSequence": 90, "arrival": {"time": "1694890921"}, "stopId": "10940381"}, {"stopSequence": 91, "arrival": {"time": "1694890986"}, "stopId": "10940374"}, {"stopSequence": 92, "arrival": {"time": "1694891063"}, "stopId": "10940370"}, {"stopSequence": 93, "arrival": {"time": "1694891090"}, "stopId": "10940367"}, {"stopSequence": 94, "arrival": {"time": "1694891121"}, "stopId": "10940368"}, {"stopSequence": 95, "arrival": {"time": "1694891204"}, "stopId": "10940388"}, {"stopSequence": 96, "arrival": {"time": "1694891390"}, "stopId": "10-Apr"}, {"stopSequence": 97, "arrival": {"time": "1694891464"}, "stopId": "10-Jan"}, {"stopSequence": 98, "arrival": {"time": "1694891513"}, "stopId": "44863"}, {"stopSequence": 99, "arrival": {"time": "1694891550"}, "stopId": "10-Mar"}, {"stopSequence": 100, "arrival": {"time": "1694891616"}, "stopId": "11-Jan"}, {"stopSequence": 101, "arrival": {"time": "1694891678"}, "stopId": "44866"}, {"stopSequence": 102, "arrival": {"time": "1694891725"}, "stopId": "44867"}, {"stopSequence": 103, "arrival": {"time": "1694891758"}, "stopId": "44868"}, {"stopSequence": 104, "arrival": {"time": "1694891791"}, "stopId": "44869"}, {"stopSequence": 105, "arrival": {"time": "1694891832"}, "stopId": "44870"}, {"stopSequence": 106, "arrival": {"time": "1694891874"}, "stopId": "44871"}, {"stopSequence": 107, "arrival": {"time": "1694891925"}, "stopId": "44872"}, {"stopSequence": 108, "arrival": {"time": "1694892008"}, "stopId": "50020"}, {"stopSequence": 109, "arrival": {"time": "1694892123"}, "stopId": "14-11"}, {"stopSequence": 110, "arrival": {"time": "1694892176"}, "stopId": "91162"}, {"stopSequence": 111, "arrival": {"time": "1694892288"}, "stopId": "50023"}, {"stopSequence": 112, "arrival": {"time": "1694892432"}, "stopId": "14-Jul"}, {"stopSequence": 113, "arrival": {"time": "1694892487"}, "stopId": "14-Apr"}, {"stopSequence": 114, "arrival": {"time": "1694892557"}, "stopId": "37474"}, {"stopSequence": 115, "arrival": {"time": "1694892631"}, "stopId": "44879"}, {"stopSequence": 116, "arrival": {"time": "1694892666"}, "stopId": "44880"}, {"stopSequence": 117, "arrival": {"time": "1694892716"}, "stopId": "44881"}, {"stopSequence": 118, "arrival": {"time": "1694892754"}, "stopId": "44874"}, {"stopSequence": 119, "arrival": {"time": "1694892845"}, "stopId": "38151"}, {"stopSequence": 120, "arrival": {"time": "1694893090"}, "stopId": "15-13"}, {"stopSequence": 121, "arrival": {"time": "1694893187"}, "stopId": "38194"}, {"stopSequence": 122, "arrival": {"time": "1694893231"}, "stopId": "38124"}, {"stopSequence": 123, "arrival": {"time": "1694893255"}, "stopId": "50014"}, {"stopSequence": 124, "arrival": {"time": "1694893281"}, "stopId": "38204"}, {"stopSequence": 125, "arrival": {"time": "1694893359"}, "stopId": "50013"}, {"stopSequence": 126, "arrival": {"time": "1694893427"}, "stopId": "38127"}, {"stopSequence": 127, "arrival": {"time": "1694893457"}, "stopId": "50029"}, {"stopSequence": 128, "arrival": {"time": "1694893500"}, "stopId": "50015"}, {"stopSequence": 129, "arrival": {"time": "1694893905"}, "stopId": "38149"}, {"stopSequence": 130, "arrival": {"time": "1694894054"}, "stopId": "14-Feb"}, {"stopSequence": 131, "arrival": {"time": "1694894094"}, "stopId": "50028"}], "vehicle": {"licensePlate": "YE2808"}, "timestamp": "1694889012"}, "vehicle": {"trip": {"tripId": "21195-701ff27f-2", "startTime": "14:21:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "737", "directionId": 1}, "position": {"latitude": -36.8198, "longitude": -73.04331, "bearing": 62.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889012", "vehicle": {"licensePlate": "YE2808"}}}]} \ No newline at end of file diff --git a/data/output/json_file/without_trip_update.json b/data/output/json_file/without_trip_update.json new file mode 100644 index 0000000..2569886 --- /dev/null +++ b/data/output/json_file/without_trip_update.json @@ -0,0 +1 @@ +{"entity": [{"id": "2e18ba50-f505-4306-8721-6880d50cddf1", "vehicle": {"trip": {"tripId": "15574-701ff27f-2", "startTime": "13:42:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "549", "directionId": 1}, "position": {"latitude": -36.95093, "longitude": -73.01543, "bearing": 162.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888576", "vehicle": {"licensePlate": "HZYR24"}}}, {"id": "1a5f41b1-26e5-4ed5-84a7-fb63b7f07910", "vehicle": {"trip": {"tripId": "16063-701ff27f-2", "startTime": "14:02:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "553", "directionId": 1}, "position": {"latitude": -36.950912, "longitude": -73.015495, "bearing": 156.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888784", "vehicle": {"licensePlate": "YA1635"}}}, {"id": "e55e0ce1-6fb4-4f96-997b-b425d951326b", "vehicle": {"trip": {"tripId": "16119-701ff27f-2", "startTime": "13:41:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "554", "directionId": 1}, "position": {"latitude": -36.951046, "longitude": -73.015305, "bearing": 160.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888726", "vehicle": {"licensePlate": "BLYT49"}}}, {"id": "f2d09d37-1488-477e-adae-71749442eaa2", "vehicle": {"trip": {"tripId": "16884-701ff27f-2", "startTime": "12:47:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "560", "directionId": 1}, "position": {"latitude": -36.817726, "longitude": -73.06533, "bearing": 104.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888718", "vehicle": {"licensePlate": "CSFY68"}}}, {"id": "48dc9b29-853c-4d95-8e10-b610c31453da", "vehicle": {"trip": {"tripId": "17076-701ff27f-2", "startTime": "15:26:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "561", "directionId": 0}, "position": {"latitude": -36.94114, "longitude": -73.027016, "bearing": 172.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889008", "vehicle": {"licensePlate": "CBTT38"}}}, {"id": "ade4a3ff-d56a-4d09-8b20-5960f5af96a3", "vehicle": {"trip": {"tripId": "16974-701ff27f-2", "startTime": "14:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "561", "directionId": 1}, "position": {"latitude": -36.941517, "longitude": -73.02701, "bearing": 212.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888508", "vehicle": {"licensePlate": "FDBY83"}}}, {"id": "b295565a-1e8f-4d02-969c-2dc1e96d79dd", "vehicle": {"trip": {"tripId": "aa9d5aab-c-701ff27f-2", "startTime": "15:25:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "562", "directionId": 1}, "position": {"latitude": -36.81517, "longitude": -73.022385, "bearing": 202.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889010", "vehicle": {"licensePlate": "CPHW48"}}}, {"id": "c70768a5-f68e-4418-a7ad-25ca15e36501", "vehicle": {"trip": {"tripId": "17361-701ff27f-2", "startTime": "16:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "565", "directionId": 1}, "position": {"latitude": -36.744045, "longitude": -72.99526, "bearing": 343.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888998", "vehicle": {"licensePlate": "ZJ6154"}}}, {"id": "4571f63a-a4b2-4077-be57-b8b1821d6014", "vehicle": {"trip": {"tripId": "18210-701ff27f-2", "startTime": "14:01:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "575", "directionId": 0}, "position": {"latitude": -36.710148, "longitude": -73.11436, "bearing": 16.0, "odometer": 0.0, "speed": 3.8888888}, "timestamp": "1694889007", "vehicle": {"licensePlate": "WR5810"}}}, {"id": "38420c18-90e1-409e-94d5-923e728f0c5a", "vehicle": {"trip": {"tripId": "18355-701ff27f-2", "startTime": "14:45:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "576", "directionId": 0}, "position": {"latitude": -36.815235, "longitude": -73.022484, "bearing": 206.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889004", "vehicle": {"licensePlate": "JPRZ15"}}}, {"id": "02e2d6b2-49c6-4397-83d0-b637e8e7b725", "vehicle": {"trip": {"tripId": "18629-701ff27f-2", "startTime": "14:21:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "578", "directionId": 1}, "position": {"latitude": -36.84955, "longitude": -73.14239, "bearing": 24.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888866", "vehicle": {"licensePlate": "YN2777"}}}, {"id": "5f430ac2-382b-41c4-bed8-9e4594e48440", "vehicle": {"trip": {"tripId": "19398-701ff27f-2", "startTime": "14:15:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "585", "directionId": 1}, "position": {"latitude": -36.84662, "longitude": -73.144295, "bearing": 174.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888879", "vehicle": {"licensePlate": "RLHV39"}}}, {"id": "43e09d32-1902-451c-99d5-8401ad45a8c1", "vehicle": {"trip": {"tripId": "19389-701ff27f-2", "startTime": "12:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "585", "directionId": 1}, "position": {"latitude": -36.846825, "longitude": -73.14416, "bearing": 277.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888849", "vehicle": {"licensePlate": "XY7449"}}}, {"id": "aa091111-434a-45cf-a167-5fbda4505a62", "vehicle": {"trip": {"tripId": "19624-701ff27f-2", "startTime": "13:53:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "586", "directionId": 1}, "position": {"latitude": -36.84662, "longitude": -73.144, "bearing": 87.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888895", "vehicle": {"licensePlate": "JRKP971"}}}, {"id": "a0ec8b87-bead-42d7-93bd-d5839d6e2698", "vehicle": {"trip": {"tripId": "19629-701ff27f-2", "startTime": "15:08:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "586", "directionId": 1}, "position": {"latitude": -36.816444, "longitude": -73.02319, "bearing": 205.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888913", "vehicle": {"licensePlate": "ZT3402"}}}, {"id": "0d7d082e-eef8-41ec-9ef8-a0eabe8cb2f3", "vehicle": {"trip": {"tripId": "20335-701ff27f-2", "startTime": "15:30:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "591", "directionId": 1}, "position": {"latitude": -36.761837, "longitude": -73.1182, "bearing": 336.0, "odometer": 0.0, "speed": 9.444445}, "timestamp": "1694888976", "vehicle": {"licensePlate": "HYHP91"}}}, {"id": "5c1cb788-27e2-4f7c-a36c-f9b5e40cb9a0", "vehicle": {"trip": {"tripId": "23484-701ff27f-2", "startTime": "15:36:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "611", "directionId": 0}, "position": {"latitude": -36.794815, "longitude": -73.04594, "bearing": 186.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889026", "vehicle": {"licensePlate": "DRBB22"}}}, {"id": "f8e1c463-a381-413a-81a2-a33186e9f799", "vehicle": {"trip": {"tripId": "24107-701ff27f-2", "startTime": "15:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "616", "directionId": 1}, "position": {"latitude": -36.80534, "longitude": -73.039825, "bearing": 82.0, "odometer": 0.0, "speed": 5.0}, "timestamp": "1694889005", "vehicle": {"licensePlate": "FXRL51"}}}, {"id": "fa2f9405-f619-4ff0-bdf3-1d82e9dbe67d", "vehicle": {"trip": {"tripId": "13bb2b47-1-701ff27f-2", "startTime": "13:16:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "626", "directionId": 1}, "position": {"latitude": -36.839214, "longitude": -73.00835, "bearing": 183.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888885", "vehicle": {"licensePlate": "WV66891"}}}, {"id": "9f92c2eb-bc29-49b7-b247-1f42d7eabbad", "vehicle": {"trip": {"tripId": "e6cf8df5-5-701ff27f-2", "startTime": "14:55:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "628", "directionId": 1}, "position": {"latitude": -36.866585, "longitude": -73.03593, "bearing": 72.0, "odometer": 0.0, "speed": 22.0}, "timestamp": "1694888939", "vehicle": {"licensePlate": "GVXX98"}}}, {"id": "9a5b8f2e-3f5c-4ba7-b1ac-a07eb49d142f", "vehicle": {"trip": {"tripId": "84c3b11a-5-701ff27f-2", "startTime": "14:00:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "725", "directionId": 0}, "position": {"latitude": -36.710735, "longitude": -73.147224, "bearing": 204.0, "odometer": 0.0, "speed": 2.7777777}, "timestamp": "1694888460", "vehicle": {"licensePlate": "DVWY24"}}}, {"id": "64c1c484-cb39-4c3f-9c29-d09685751b5b", "vehicle": {"trip": {"tripId": "fa471084-a-701ff27f-2", "startTime": "14:24:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "726", "directionId": 1}, "position": {"latitude": -36.841778, "longitude": -73.00877, "bearing": 202.0, "odometer": 0.0, "speed": 8.888889}, "timestamp": "1694889018", "vehicle": {"licensePlate": "FHZB98"}}}, {"id": "97a6e275-05ad-431c-b45e-4b80689fd6e7", "vehicle": {"trip": {"tripId": "25849-701ff27f-2", "startTime": "13:46:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "732", "directionId": 0}, "position": {"latitude": -36.724243, "longitude": -73.130806, "bearing": 126.0, "odometer": 0.0, "speed": 8.333333}, "timestamp": "1694888973", "vehicle": {"licensePlate": "GGJC36"}}}, {"id": "94ca2494-3e84-48d4-9bf9-1f218ffc6b18", "vehicle": {"trip": {"tripId": "25948-701ff27f-2", "startTime": "14:40:00", "startDate": "20230916", "scheduleRelationship": "SCHEDULED", "routeId": "734", "directionId": 0}, "position": {"latitude": -36.724133, "longitude": -73.13123, "bearing": 74.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888769", "vehicle": {"licensePlate": "HJXW59"}}}, {"id": "babef592-7fab-4fe8-b46c-ff6966a36337", "vehicle": {"position": {"latitude": -36.883656, "longitude": -73.13538, "bearing": 276.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694872628", "vehicle": {"licensePlate": "XN9621"}}}, {"id": "8bcd713e-a5d9-492b-8540-8e007abfb272", "vehicle": {"position": {"latitude": -36.795036, "longitude": -73.10714, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1693424652", "vehicle": {"licensePlate": "WE5957"}}}, {"id": "bf3c2053-73c5-4eda-ba2b-2705d5365ba4", "vehicle": {"position": {"latitude": -36.95384, "longitude": -73.02221, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1684343364", "vehicle": {"licensePlate": "HGRP52"}}}, {"id": "218c2428-53c4-4f39-83b2-5b17bbcd7630", "vehicle": {"position": {"latitude": -36.85339, "longitude": -73.10213, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1688170739", "vehicle": {"licensePlate": "ZB9417"}}}, {"id": "80c38e17-5868-45cb-aeed-71b264f34af6", "vehicle": {"position": {"latitude": -36.82445, "longitude": -73.13032, "bearing": 320.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1684257764", "vehicle": {"licensePlate": "FXRL64"}}}, {"id": "c31caed9-2f9c-4d2d-ad93-c14dcaf632f3", "vehicle": {"position": {"latitude": -36.941143, "longitude": -73.02722, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1685478532", "vehicle": {"licensePlate": "BKSH49"}}}, {"id": "cc744b19-08ad-4f6a-b31b-fd631d137e5f", "vehicle": {"position": {"latitude": -36.953735, "longitude": -73.022125, "bearing": 50.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694643378", "vehicle": {"licensePlate": "BSRF27"}}}, {"id": "27e00cca-b83b-4f33-8231-2a433d7afe57", "vehicle": {"position": {"latitude": -36.76691, "longitude": -73.11322, "bearing": 104.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1693592084", "vehicle": {"licensePlate": "YU2038"}}}, {"id": "88503255-747e-4eb8-a49f-dc6632fb3919", "vehicle": {"position": {"latitude": -36.79506, "longitude": -73.106926, "bearing": 272.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1686092168", "vehicle": {"licensePlate": "WE5918"}}}, {"id": "830deda2-11db-4949-8d23-1e758946eba4", "vehicle": {"position": {"latitude": -36.73586, "longitude": -73.10278, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1685462186", "vehicle": {"licensePlate": "HJPL35"}}}, {"id": "d0a2bebc-ecf2-4af7-90e9-0a8b0a5b9551", "vehicle": {"position": {"latitude": -36.778706, "longitude": -73.10891, "bearing": 260.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694830716", "vehicle": {"licensePlate": "JSBB23"}}}, {"id": "e0b67022-8378-40d7-9900-22995afe9a8b", "vehicle": {"position": {"latitude": -36.735706, "longitude": -73.10246, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1677099788", "vehicle": {"licensePlate": "GZGH37"}}}, {"id": "9641c90c-4bbd-4869-8a2b-d3ff178a87ba", "vehicle": {"position": {"latitude": -36.710915, "longitude": -72.97394, "bearing": 82.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1689197358", "vehicle": {"licensePlate": "WA9269"}}}, {"id": "d3d5a544-4718-4ccd-92f7-6d258a2bc260", "vehicle": {"position": {"latitude": -36.842693, "longitude": -73.00929, "bearing": 352.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1683314528", "vehicle": {"licensePlate": "YJ2035"}}}, {"id": "0946cc3c-2e4b-4bdf-a763-a978277ed8e2", "vehicle": {"position": {"latitude": -36.723434, "longitude": -73.12888, "bearing": 201.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694425086", "vehicle": {"licensePlate": "BDWB37"}}}, {"id": "736c7bdf-7639-4f46-91b1-751457c125fa", "vehicle": {"position": {"latitude": -36.752224, "longitude": -73.124275, "bearing": 226.0, "odometer": 0.0, "speed": 38.0}, "timestamp": "1690465917", "vehicle": {"licensePlate": "FDCB31"}}}, {"id": "9c5c9098-a605-466b-bc1e-44791e579b9a", "vehicle": {"position": {"latitude": -36.957626, "longitude": -73.0103, "bearing": 318.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694652314", "vehicle": {"licensePlate": "DYSZ71"}}}, {"id": "baab916a-3381-4b6f-89ca-12b2f097b366", "vehicle": {"position": {"latitude": -36.778553, "longitude": -73.099144, "bearing": 2.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694830970", "vehicle": {"licensePlate": "CRVH47"}}}, {"id": "3a10d216-8237-426c-8bfd-c5021d4c6b30", "vehicle": {"position": {"latitude": -36.769295, "longitude": -73.11373, "bearing": 10.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1689702404", "vehicle": {"licensePlate": "YA5668"}}}, {"id": "91849378-3a42-4da5-a0b3-7f74ee9421a9", "vehicle": {"position": {"latitude": -36.94105, "longitude": -73.02738, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694458754", "vehicle": {"licensePlate": "ZY4200"}}}, {"id": "292c39df-e0f6-42e7-9933-1fd7418849b8", "vehicle": {"position": {"latitude": -36.71747, "longitude": -73.12458, "bearing": 56.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694469209", "vehicle": {"licensePlate": "BTZY53"}}}, {"id": "f83084af-f915-43ec-a48b-e3d809bbe9c8", "vehicle": {"position": {"latitude": -36.7667, "longitude": -73.113396, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694858624", "vehicle": {"licensePlate": "FPZY99"}}}, {"id": "3d33455d-114a-4fb7-b58e-89326424ee7e", "vehicle": {"position": {"latitude": -36.84231, "longitude": -73.00972, "bearing": 34.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694441986", "vehicle": {"licensePlate": "LDZT10"}}}, {"id": "9b4425b3-04db-40b4-ac04-9967c95f174e", "vehicle": {"position": {"latitude": -36.795166, "longitude": -73.10671, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1693961218", "vehicle": {"licensePlate": "WE5919"}}}, {"id": "0dfbd5c2-7ad7-4dd1-b784-351f3d333ab2", "vehicle": {"position": {"latitude": -36.829926, "longitude": -73.10792, "bearing": 242.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694212230", "vehicle": {"licensePlate": "HWHK89"}}}, {"id": "05ff798d-f2e4-47f1-8d03-9cb201177466", "vehicle": {"position": {"latitude": -36.779797, "longitude": -73.08481, "bearing": 104.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694828820", "vehicle": {"licensePlate": "HZGX71"}}}, {"id": "03fb3cc5-bf26-4244-9e75-64e2155e0d27", "vehicle": {"position": {"latitude": -36.715496, "longitude": -72.97816, "bearing": 195.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694270955", "vehicle": {"licensePlate": "HYYX25"}}}, {"id": "daf013d5-8c81-4dc7-af77-c1d40b9f392c", "vehicle": {"position": {"latitude": -36.926773, "longitude": -73.02829, "bearing": 320.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694823120", "vehicle": {"licensePlate": "XU7351"}}}, {"id": "792ec025-4ad4-46de-a48e-edb860ba0499", "vehicle": {"position": {"latitude": -36.76864, "longitude": -73.11401, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1693866383", "vehicle": {"licensePlate": "KRXK39"}}}, {"id": "452a305f-fd9b-4f7f-942a-b9df2826c6c1", "vehicle": {"position": {"latitude": -36.79396, "longitude": -73.04547, "bearing": 189.0, "odometer": 0.0, "speed": 6.111111}, "timestamp": "1694530643", "vehicle": {"licensePlate": "YR4145"}}}, {"id": "5069bf16-e951-4026-a04f-c950f0c9d32d", "vehicle": {"position": {"latitude": -36.714104, "longitude": -72.97779, "bearing": 194.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694541326", "vehicle": {"licensePlate": "PW1335"}}}, {"id": "ce2aa4c5-db11-43e9-8576-c480495c9d0b", "vehicle": {"position": {"latitude": -36.79982, "longitude": -73.05058, "bearing": 166.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1692830028", "vehicle": {"licensePlate": "FXJS20"}}}, {"id": "83f64a00-e343-4389-8ee3-37cf67c170f1", "vehicle": {"position": {"latitude": -36.940914, "longitude": -73.0272, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694610632", "vehicle": {"licensePlate": "DRVV44"}}}, {"id": "be2547f6-6f76-4b90-964d-0b8bd2f519e6", "vehicle": {"position": {"latitude": -36.806957, "longitude": -73.05145, "bearing": 228.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694642386", "vehicle": {"licensePlate": "FXFW85"}}}, {"id": "f21aa6ce-954c-4066-bff4-cf72539aeb64", "vehicle": {"position": {"latitude": -36.766937, "longitude": -73.112785, "bearing": 4.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1693573674", "vehicle": {"licensePlate": "YV1949"}}}, {"id": "d3653a6a-afe4-4773-9679-6e99cdb2c341", "vehicle": {"position": {"latitude": -36.94914, "longitude": -73.011566, "bearing": 7.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694827751", "vehicle": {"licensePlate": "DWHH91"}}}, {"id": "19c166bd-64d5-462e-8e26-2d0ca3aa3825", "vehicle": {"position": {"latitude": -36.82426, "longitude": -73.13002, "bearing": 198.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694887969", "vehicle": {"licensePlate": "DTYV58"}}}, {"id": "6d823810-9e77-4c52-ba69-d84df0d05e75", "vehicle": {"position": {"latitude": -36.795296, "longitude": -73.107086, "bearing": 100.0, "odometer": 0.0, "speed": 2.2222223}, "timestamp": "1683400518", "vehicle": {"licensePlate": "FFTL53"}}}, {"id": "62d0b114-b00e-4f30-9a13-2cb2dd0073b2", "vehicle": {"position": {"latitude": -36.839157, "longitude": -73.09828, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1681485109", "vehicle": {"licensePlate": "XS8721"}}}, {"id": "df89fb26-b9bf-47ec-9c83-d0df8ac0eaba", "vehicle": {"position": {"latitude": -36.839157, "longitude": -73.09828, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1681485258", "vehicle": {"licensePlate": "RVRL 27"}}}, {"id": "6f31455f-1436-4615-b0b2-3b756b358507", "vehicle": {"position": {"latitude": -36.78932, "longitude": -73.1129, "bearing": 18.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1680743130", "vehicle": {"licensePlate": "FFFFFF"}}}, {"id": "30744488-28b2-40da-9904-54e95ec7be51", "vehicle": {"position": {"latitude": -36.941174, "longitude": -73.02707, "bearing": 338.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1692235912", "vehicle": {"licensePlate": "XZ9788"}}}, {"id": "482cf3a4-c2de-4596-9067-7870825c2e28", "vehicle": {"position": {"latitude": -36.957832, "longitude": -73.0104, "bearing": 93.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1693958545", "vehicle": {"licensePlate": "DWWB26"}}}, {"id": "8cabae95-bddd-4a78-b2ee-e0d7242fa333", "vehicle": {"position": {"latitude": -36.741318, "longitude": -73.10118, "bearing": 324.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694611068", "vehicle": {"licensePlate": "YU8561"}}}, {"id": "94fc4699-16cb-4232-9163-5c9bfd4c4547", "vehicle": {"position": {"latitude": -36.77905, "longitude": -73.09954, "bearing": 306.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1689027012", "vehicle": {"licensePlate": "DYCS25"}}}, {"id": "b7af1998-5f9e-4c98-a3e3-77288a229b6e", "vehicle": {"position": {"latitude": -36.95825, "longitude": -73.01113, "bearing": 154.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694824782", "vehicle": {"licensePlate": "LHWX56"}}}, {"id": "b69f5415-8063-4463-a2fd-b9c27d1534b4", "vehicle": {"position": {"latitude": -36.795147, "longitude": -73.10689, "bearing": 288.0, "odometer": 0.0, "speed": 2.5}, "timestamp": "1694879302", "vehicle": {"licensePlate": "DWHP41"}}}, {"id": "0d9ff9b5-1826-4dbe-9571-e83d4aec4cc9", "vehicle": {"position": {"latitude": -36.948963, "longitude": -72.93163, "bearing": 229.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1690932936", "vehicle": {"licensePlate": "CPZZ79"}}}, {"id": "c00b1b71-7438-40bc-ac2e-1fa16022ca31", "vehicle": {"position": {"latitude": -36.794136, "longitude": -73.04601, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694534580", "vehicle": {"licensePlate": "YV2344"}}}, {"id": "854e9434-c282-45b5-b466-d33de6ee8515", "vehicle": {"position": {"latitude": -36.83248, "longitude": -73.003784, "bearing": 178.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1686945646", "vehicle": {"licensePlate": "WV1924"}}}, {"id": "e3e354dd-ae2b-4759-aeb7-0ca436124b80", "vehicle": {"position": {"latitude": -36.85309, "longitude": -73.05043, "bearing": 162.0, "odometer": 0.0, "speed": 56.0}, "timestamp": "1681132136", "vehicle": {"licensePlate": "ZT3922"}}}, {"id": "f4ff8244-e794-4ed1-bdd4-dabe734da0cb", "vehicle": {"position": {"latitude": -36.81293, "longitude": -73.05192, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694552582", "vehicle": {"licensePlate": "RW9671"}}}, {"id": "6235f0ef-32cf-41bb-8bc9-4e632aa095eb", "vehicle": {"position": {"latitude": -36.83998, "longitude": -73.05635, "bearing": 78.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1683641984", "vehicle": {"licensePlate": "YX2769"}}}, {"id": "9d93050d-0e3f-4ac6-bc96-e103cd8316a0", "vehicle": {"position": {"latitude": -36.839893, "longitude": -73.05621, "bearing": 214.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1692554856", "vehicle": {"licensePlate": "WZ6629"}}}, {"id": "4b8c125d-ff53-4622-87a4-811c48ac9869", "vehicle": {"position": {"latitude": -36.79524, "longitude": -73.107216, "bearing": 76.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694861584", "vehicle": {"licensePlate": "DRXZ77"}}}, {"id": "328b2321-7460-487e-a696-0814dcaef51d", "vehicle": {"position": {"latitude": -36.94912, "longitude": -73.011505, "bearing": 6.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888871", "vehicle": {"licensePlate": "GYGK16"}}}, {"id": "766a4cd6-f056-4ff0-9230-f01f34e8ab43", "vehicle": {"position": {"latitude": -36.827717, "longitude": -73.05, "bearing": 244.0, "odometer": 0.0, "speed": 12.0}, "timestamp": "1682553659", "vehicle": {"licensePlate": "XU7350"}}}, {"id": "d0eff6da-fce0-498f-8c50-f1be0cb1d23e", "vehicle": {"position": {"latitude": -36.76686, "longitude": -73.113464, "bearing": 216.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694294392", "vehicle": {"licensePlate": "YV2206"}}}, {"id": "7c6ec234-0f1a-419a-8733-07b91ef635c4", "vehicle": {"position": {"latitude": -36.84141, "longitude": -73.129364, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1693580401", "vehicle": {"licensePlate": "RWJG38"}}}, {"id": "ed16bb00-39d2-4e9b-88e2-3995ab5ac55d", "vehicle": {"position": {"latitude": -36.76317, "longitude": -73.09889, "bearing": 104.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694381729", "vehicle": {"licensePlate": "FVHK54"}}}, {"id": "9af56033-b38a-4586-8941-d29d941cb07c", "vehicle": {"position": {"latitude": -36.71052, "longitude": -72.97431, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1690578406", "vehicle": {"licensePlate": "WH6315"}}}, {"id": "b8535ab1-7d3c-4cc5-b724-8aba40809037", "vehicle": {"position": {"latitude": -36.76704, "longitude": -73.11317, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694004530", "vehicle": {"licensePlate": "WK7487"}}}, {"id": "958fea87-0c00-4ef3-b8ca-b0eea9e893a7", "vehicle": {"position": {"latitude": -36.73738, "longitude": -72.988075, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694868307", "vehicle": {"licensePlate": "ZR8924"}}}, {"id": "f2cace55-229d-4bd3-ad3c-d8828eaa5eda", "vehicle": {"position": {"latitude": -36.71088, "longitude": -73.14031, "bearing": 118.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694823304", "vehicle": {"licensePlate": "FFBW89"}}}, {"id": "1bbf03ae-bf71-4ff6-be6e-eec19cf56daa", "vehicle": {"position": {"latitude": -36.94916, "longitude": -72.931496, "bearing": 106.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1692475282", "vehicle": {"licensePlate": "GSRS42"}}}, {"id": "f27e7f1c-45f0-4d98-80fd-5565367e6a4c", "vehicle": {"position": {"latitude": -36.766903, "longitude": -73.112946, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694021440", "vehicle": {"licensePlate": "YU2128"}}}, {"id": "e72be77a-a193-4d1e-b0fe-29f3dbfc9f76", "vehicle": {"position": {"latitude": -36.7774, "longitude": -73.11258, "bearing": 346.0, "odometer": 0.0, "speed": 2.2222223}, "timestamp": "1694705396", "vehicle": {"licensePlate": "FXJS23"}}}, {"id": "9252bac4-2863-41ac-92e4-36500c34e6ed", "vehicle": {"position": {"latitude": -36.77711, "longitude": -73.11263, "bearing": 270.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694619042", "vehicle": {"licensePlate": "JJJD20"}}}, {"id": "0de1926e-04e7-41a1-8724-a19abbea0a6f", "vehicle": {"position": {"latitude": -36.76935, "longitude": -73.11379, "bearing": 20.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694712898", "vehicle": {"licensePlate": "HLZX24"}}}, {"id": "fcc5b458-8b5d-440a-8807-0855065868cb", "vehicle": {"position": {"latitude": -36.778572, "longitude": -73.099174, "bearing": 12.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888842", "vehicle": {"licensePlate": "DLRD46"}}}, {"id": "eae784cf-1007-498f-8e13-f2215cc38e31", "vehicle": {"position": {"latitude": -36.7133, "longitude": -72.97742, "bearing": 18.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694824094", "vehicle": {"licensePlate": "FCBR73"}}}, {"id": "f33bd178-b17a-4acd-b2e8-82bfd41fa837", "vehicle": {"position": {"latitude": -36.957474, "longitude": -73.010086, "bearing": 234.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694875122", "vehicle": {"licensePlate": "BZLY10"}}}, {"id": "8ca6ee03-518f-4ba7-8467-00a151d4e7a4", "vehicle": {"position": {"latitude": -36.846752, "longitude": -73.14419, "bearing": 261.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694735136", "vehicle": {"licensePlate": "ZT3265"}}}, {"id": "0919c21c-0676-4d21-a93b-1c89ef0a46e0", "vehicle": {"position": {"latitude": -36.949398, "longitude": -72.93176, "bearing": 132.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694829242", "vehicle": {"licensePlate": "CYZZ54"}}}, {"id": "fa3ebea3-8220-4de9-8144-ce017fb80697", "vehicle": {"position": {"latitude": -36.71348, "longitude": -72.97747, "bearing": 113.0, "odometer": 0.0, "speed": 1.6666666}, "timestamp": "1694872658", "vehicle": {"licensePlate": "DJGD74"}}}, {"id": "27057910-1aec-42e0-a628-e2c30928010b", "vehicle": {"position": {"latitude": -36.82069, "longitude": -73.01194, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1690213478", "vehicle": {"licensePlate": "XY1716"}}}, {"id": "780b6a55-177c-4692-b57a-d82e4c7b8883", "vehicle": {"position": {"latitude": -36.822445, "longitude": -73.05006, "bearing": 242.0, "odometer": 0.0, "speed": 3.8888888}, "timestamp": "1694888978", "vehicle": {"licensePlate": "HWDG47"}}}, {"id": "d73a5423-dc52-4d93-a132-8f01dcb3b310", "vehicle": {"position": {"latitude": -36.602745, "longitude": -72.96179, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888848", "vehicle": {"licensePlate": "FYBB87"}}}, {"id": "2cfe871e-dc87-4982-a78f-acd56b7dc350", "vehicle": {"position": {"latitude": -36.795197, "longitude": -73.107056, "bearing": 94.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694554538", "vehicle": {"licensePlate": "DKFS37"}}}, {"id": "a6e97c00-2836-4552-95d3-bc0c6d306370", "vehicle": {"position": {"latitude": -36.82424, "longitude": -73.13003, "bearing": 17.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888133", "vehicle": {"licensePlate": "JRKL79"}}}, {"id": "2a5c7173-cddc-4295-b25e-bba7a3b3dc89", "vehicle": {"position": {"latitude": -36.74146, "longitude": -72.99291, "bearing": 310.0, "odometer": 0.0, "speed": 1.1111112}, "timestamp": "1694883908", "vehicle": {"licensePlate": "JGKH38"}}}, {"id": "a72980a5-2b8a-4253-b485-923ddd92d52a", "vehicle": {"position": {"latitude": -36.784164, "longitude": -73.112915, "bearing": 346.0, "odometer": 0.0, "speed": 8.055555}, "timestamp": "1694889002", "vehicle": {"licensePlate": "WT9905"}}}, {"id": "ff897dfe-0068-414c-a966-c6f46b4c20bc", "vehicle": {"position": {"latitude": -36.94109, "longitude": -73.027054, "bearing": 338.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694823888", "vehicle": {"licensePlate": "BDCH87"}}}, {"id": "8bd450fe-40c5-49b3-b3d0-a894e9bd8258", "vehicle": {"position": {"latitude": -36.778202, "longitude": -73.097206, "bearing": 198.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888984", "vehicle": {"licensePlate": "YK4862"}}}, {"id": "fc27ebb6-d800-4f75-ac4e-262941c48081", "vehicle": {"position": {"latitude": -36.846653, "longitude": -73.14407, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1693586193", "vehicle": {"licensePlate": "YT2529"}}}, {"id": "7ad3816a-8cfb-43de-b007-49de739dbb09", "vehicle": {"position": {"latitude": -36.95793, "longitude": -73.01048, "bearing": 314.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694823033", "vehicle": {"licensePlate": "HYHF21"}}}, {"id": "5618e73a-1f90-4b26-bcd9-fc31b4f1ccf6", "vehicle": {"position": {"latitude": -36.962906, "longitude": -72.935585, "bearing": 106.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694823050", "vehicle": {"licensePlate": "CDTK12"}}}, {"id": "b1961468-be8b-4846-afa5-d0633cd0140b", "vehicle": {"position": {"latitude": -36.740063, "longitude": -73.09458, "bearing": 36.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694024939", "vehicle": {"licensePlate": "BRPV57"}}}, {"id": "0aaf93d1-c5b8-4c1d-aec4-d8964034b5bd", "vehicle": {"position": {"latitude": -36.805565, "longitude": -73.03838, "bearing": 262.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1693495866", "vehicle": {"licensePlate": "DTRZ89"}}}, {"id": "8ef2a994-ec18-4bfd-9b50-9c8a9b57274c", "vehicle": {"position": {"latitude": -36.973347, "longitude": -72.9265, "bearing": 302.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694830450", "vehicle": {"licensePlate": "HYPR25"}}}, {"id": "1b6ccb61-d316-45f6-850b-2034304ffcd9", "vehicle": {"position": {"latitude": -36.94154, "longitude": -73.02714, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1680712144", "vehicle": {"licensePlate": "VX5220"}}}, {"id": "49931496-e734-4657-80f2-03951fc3a33d", "vehicle": {"position": {"latitude": -36.768612, "longitude": -73.114006, "bearing": 164.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694554800", "vehicle": {"licensePlate": "YR1500"}}}, {"id": "0b2b54ec-4de5-42e6-8540-c64ce05626d4", "vehicle": {"position": {"latitude": -36.941906, "longitude": -73.01515, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694879522", "vehicle": {"licensePlate": "HYHR16"}}}, {"id": "b152883e-03c6-43c0-bcb1-f44d40a4e44a", "vehicle": {"position": {"latitude": -36.816174, "longitude": -73.03494, "bearing": 250.0, "odometer": 0.0, "speed": 0.5555556}, "timestamp": "1694889013", "vehicle": {"licensePlate": "HBPJ88"}}}, {"id": "ed621499-bb0f-447c-8477-40f56c447fab", "vehicle": {"position": {"latitude": -36.95818, "longitude": -73.01113, "bearing": 314.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889012", "vehicle": {"licensePlate": "DPDF83"}}}, {"id": "6574656e-071c-4f68-b72d-a841b47d6b92", "vehicle": {"position": {"latitude": -36.71411, "longitude": -72.97779, "bearing": 200.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889019", "vehicle": {"licensePlate": "HYCZ69"}}}, {"id": "f6ac16cd-f393-46b8-b292-1f60bdeee53f", "vehicle": {"position": {"latitude": -36.79713, "longitude": -73.05399, "bearing": 13.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1690205926", "vehicle": {"licensePlate": "YW4212"}}}, {"id": "b4d43b07-e126-4ada-b459-a59ed037eed3", "vehicle": {"position": {"latitude": -36.958294, "longitude": -73.01107, "bearing": 68.0, "odometer": 0.0, "speed": 0.2777778}, "timestamp": "1694606611", "vehicle": {"licensePlate": "YU8303"}}}, {"id": "5d50a1c1-d755-406f-a29a-b691f6cd640b", "vehicle": {"position": {"latitude": -36.77848, "longitude": -73.09917, "bearing": 176.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1687522511", "vehicle": {"licensePlate": "CXLF11"}}}, {"id": "7d33df46-97c8-4a33-a37a-5fd92785db3d", "vehicle": {"position": {"latitude": -36.849796, "longitude": -73.1425, "bearing": 338.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694560008", "vehicle": {"licensePlate": "DZFG54"}}}, {"id": "d807e8b4-c57c-49d0-b996-3af5fc9840b2", "vehicle": {"position": {"latitude": -36.80991, "longitude": -73.034615, "bearing": 36.0, "odometer": 0.0, "speed": 10.555555}, "timestamp": "1694889007", "vehicle": {"licensePlate": "YU3543"}}}, {"id": "6870e621-c66b-433d-984c-885f38432bed", "vehicle": {"position": {"latitude": -36.807007, "longitude": -73.029396, "bearing": 280.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694266404", "vehicle": {"licensePlate": "JPWD29"}}}, {"id": "1d7c18f5-efb6-451e-9f74-0a468e7b1fa8", "vehicle": {"position": {"latitude": -36.828922, "longitude": -73.14803, "bearing": 357.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888982", "vehicle": {"licensePlate": "YR3358"}}}, {"id": "1ff75269-d65b-490a-884f-d7f99554b67c", "vehicle": {"position": {"latitude": -36.957626, "longitude": -73.01012, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1689625513", "vehicle": {"licensePlate": "YP2184"}}}, {"id": "3453c5b9-4e39-435c-8f1a-c0edf6877207", "vehicle": {"position": {"latitude": -36.941387, "longitude": -73.018425, "bearing": 160.0, "odometer": 0.0, "speed": 11.111111}, "timestamp": "1694889010", "vehicle": {"licensePlate": "HBSR21"}}}, {"id": "91da8c19-aba5-4c51-8ab9-4b34e33c03c7", "vehicle": {"position": {"latitude": -36.789692, "longitude": -73.07907, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694867738", "vehicle": {"licensePlate": "KTFG51"}}}, {"id": "a38f2a67-a54b-4fd7-ab72-d50346ddef7a", "vehicle": {"position": {"latitude": -36.80714, "longitude": -73.05157, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1691098014", "vehicle": {"licensePlate": "YU8176"}}}, {"id": "ccbc9053-686b-4ebe-aeb2-0fb9809c7881", "vehicle": {"position": {"latitude": -36.790874, "longitude": -73.10696, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694301733", "vehicle": {"licensePlate": "JTZW19"}}}, {"id": "2f8946f1-2b94-467b-b762-9865a4ca6234", "vehicle": {"position": {"latitude": -36.71367, "longitude": -72.97753, "bearing": 356.0, "odometer": 0.0, "speed": 1.6666666}, "timestamp": "1694868934", "vehicle": {"licensePlate": "FBKZ10"}}}, {"id": "7d7d4777-9316-4c2e-984d-645afb547d6f", "vehicle": {"position": {"latitude": -36.805595, "longitude": -73.038284, "bearing": 322.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888886", "vehicle": {"licensePlate": "DBHL19"}}}, {"id": "d07325ce-dbb9-4e8e-aab7-35d6ae846f93", "vehicle": {"position": {"latitude": -36.766975, "longitude": -73.11285, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694831624", "vehicle": {"licensePlate": "DWHD12"}}}, {"id": "681a7090-cc4d-478e-873d-9cf9cd9ef6ae", "vehicle": {"position": {"latitude": -36.76874, "longitude": -73.11409, "bearing": 102.0, "odometer": 0.0, "speed": 0.2777778}, "timestamp": "1694884768", "vehicle": {"licensePlate": "PW1344"}}}, {"id": "53427dff-1a7e-44df-ae9e-e64e1f5a647a", "vehicle": {"position": {"latitude": -36.76944, "longitude": -73.11394, "bearing": 286.0, "odometer": 0.0, "speed": 0.8333333}, "timestamp": "1694865458", "vehicle": {"licensePlate": "LRJD60"}}}, {"id": "0a051435-3510-4efa-98e4-e5864ad5a76b", "vehicle": {"position": {"latitude": -36.82427, "longitude": -73.130066, "bearing": 205.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888376", "vehicle": {"licensePlate": "FXVS87"}}}, {"id": "ac7cdfd8-3b14-476e-9a9c-9fa017ae1753", "vehicle": {"position": {"latitude": -36.774338, "longitude": -73.02337, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694487169", "vehicle": {"licensePlate": "XW8849"}}}, {"id": "557d7e72-a4bf-409b-bfa9-ecc31401178a", "vehicle": {"position": {"latitude": -36.973457, "longitude": -72.92662, "bearing": 23.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694821927", "vehicle": {"licensePlate": "LLGV63"}}}, {"id": "37fe9390-ff33-4b51-8fca-ccaf900bcbf6", "vehicle": {"position": {"latitude": -36.96319, "longitude": -72.93315, "bearing": 24.0, "odometer": 0.0, "speed": 25.0}, "timestamp": "1683853559", "vehicle": {"licensePlate": "HYPH74"}}}, {"id": "bff016c0-bcd1-4fa4-9fc0-b82f0113f2fb", "vehicle": {"position": {"latitude": -36.842438, "longitude": -73.01032, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1691078410", "vehicle": {"licensePlate": "FYBC98"}}}, {"id": "8665f192-a605-4bce-a2be-66a0d1cef8d7", "vehicle": {"position": {"latitude": -36.7355, "longitude": -73.102356, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1691096099", "vehicle": {"licensePlate": "HJPL66"}}}, {"id": "4bd3f246-4db0-4cab-8f88-4a86610a6d6b", "vehicle": {"position": {"latitude": -36.714233, "longitude": -72.97789, "bearing": 237.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694458073", "vehicle": {"licensePlate": "FRVC70"}}}, {"id": "1a91030b-e0ee-46e3-a5b5-d0dc99aa3f4c", "vehicle": {"position": {"latitude": -36.763237, "longitude": -73.09907, "bearing": 296.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694378945", "vehicle": {"licensePlate": "FYBD35"}}}, {"id": "8e17f051-cb79-47bb-bca7-cc1db39037cd", "vehicle": {"position": {"latitude": -36.87927, "longitude": -73.03813, "bearing": 176.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1691802388", "vehicle": {"licensePlate": "YP7094"}}}, {"id": "4d37e74e-9094-4673-9f62-df4e36399e1b", "vehicle": {"position": {"latitude": -36.752388, "longitude": -73.0932, "bearing": 142.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1693346503", "vehicle": {"licensePlate": "GYLT64"}}}, {"id": "5ae981f1-b531-4dbc-83c7-89cc7b7e7904", "vehicle": {"position": {"latitude": -36.81172, "longitude": -72.978325, "bearing": 12288.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1692219362", "vehicle": {"licensePlate": "FXJS60"}}}, {"id": "58b75b3b-b3f4-4e1b-9ab5-6b8def14ec35", "vehicle": {"position": {"latitude": -36.830597, "longitude": -73.123474, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888760", "vehicle": {"licensePlate": "YH2181"}}}, {"id": "a6578e13-f890-46ba-ab64-42847a6154eb", "vehicle": {"position": {"latitude": -36.832592, "longitude": -73.003975, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1686268208", "vehicle": {"licensePlate": "HRXJ96"}}}, {"id": "f914466f-5840-4208-80a4-dca1691ba688", "vehicle": {"position": {"latitude": -36.77945, "longitude": -73.09891, "bearing": 198.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694881178", "vehicle": {"licensePlate": "DBLS55"}}}, {"id": "29b2bf3d-eed9-411e-bb48-8b3fb7ac5f46", "vehicle": {"position": {"latitude": -36.941906, "longitude": -73.02202, "bearing": 244.0, "odometer": 0.0, "speed": 8.888889}, "timestamp": "1694700982", "vehicle": {"licensePlate": "YX1806"}}}, {"id": "fbfd2c6a-427b-4999-abe8-d341ac82984f", "vehicle": {"position": {"latitude": -36.826767, "longitude": -73.150116, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694887933", "vehicle": {"licensePlate": "FLHK55"}}}, {"id": "b3407bdb-dc86-44be-bc3f-f73230f02bc4", "vehicle": {"position": {"latitude": -36.846718, "longitude": -73.144005, "bearing": 98.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694781467", "vehicle": {"licensePlate": "BBZZ94"}}}, {"id": "1bf93978-a7b3-4baa-a23d-6718462eec26", "vehicle": {"position": {"latitude": -36.796898, "longitude": -73.10668, "bearing": 66.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694827379", "vehicle": {"licensePlate": "GCJW93"}}}, {"id": "4b30fca9-8b8e-42b3-8da0-6c84a0b8369b", "vehicle": {"position": {"latitude": -36.888752, "longitude": -73.1331, "bearing": 7.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888933", "vehicle": {"licensePlate": "YG5846"}}}, {"id": "26ef2a39-1880-4a03-a354-7ed0ce6cc84c", "vehicle": {"position": {"latitude": -36.739082, "longitude": -73.10702, "bearing": 238.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694655956", "vehicle": {"licensePlate": "RW8962"}}}, {"id": "89ff023c-a066-4d43-a36e-44f011ab2ff8", "vehicle": {"position": {"latitude": -36.82978, "longitude": -73.05979, "bearing": 116.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888972", "vehicle": {"licensePlate": "STJZ94"}}}, {"id": "b21d7447-df2d-48f4-bfc9-11318406357d", "vehicle": {"position": {"latitude": -36.953835, "longitude": -73.02233, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1683219770", "vehicle": {"licensePlate": "XG3134"}}}, {"id": "af630b48-aa4a-4343-9d89-f5aaa41bb6be", "vehicle": {"position": {"latitude": -36.711098, "longitude": -72.97434, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1687886842", "vehicle": {"licensePlate": "ZV8812"}}}, {"id": "43394c2c-73b6-4cfd-bb2e-0f20cca5480e", "vehicle": {"position": {"latitude": -36.9494, "longitude": -72.93178, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694881078", "vehicle": {"licensePlate": "YC9522"}}}, {"id": "f031fc7a-6aaf-49da-8f76-74186eb74fd7", "vehicle": {"position": {"latitude": -36.77631, "longitude": -73.0882, "bearing": 270.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694865814", "vehicle": {"licensePlate": "JHJF79"}}}, {"id": "d4bb0807-c408-438f-8682-c1a0842b82df", "vehicle": {"position": {"latitude": -36.958355, "longitude": -73.0112, "bearing": 112.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694887676", "vehicle": {"licensePlate": "DPZZ47"}}}, {"id": "dafc21a4-70a9-425b-a52f-5dbc5bcabd8b", "vehicle": {"position": {"latitude": -36.794624, "longitude": -73.04583, "bearing": 13.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694885649", "vehicle": {"licensePlate": "FYBU85"}}}, {"id": "69fcd988-c3fb-4611-8652-5e5ea45af6ab", "vehicle": {"position": {"latitude": -36.76699, "longitude": -73.113144, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1692622852", "vehicle": {"licensePlate": "YD2159"}}}, {"id": "42478694-5202-421e-8b3a-8be68608b11e", "vehicle": {"position": {"latitude": -36.80037, "longitude": -73.04971, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694549961", "vehicle": {"licensePlate": "CVUK99"}}}, {"id": "f22e0b8e-708a-474b-83b7-b23a22a4b648", "vehicle": {"position": {"latitude": -36.77855, "longitude": -73.09919, "bearing": 223.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694868062", "vehicle": {"licensePlate": "CDTJ50"}}}, {"id": "df8e5179-77b4-4065-b75b-db5f0c00b7bc", "vehicle": {"position": {"latitude": -36.95787, "longitude": -73.01037, "bearing": 306.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694822044", "vehicle": {"licensePlate": "FWGD54"}}}, {"id": "ab03cb26-cc75-4ea9-8091-99d5652cbcdc", "vehicle": {"position": {"latitude": -36.82451, "longitude": -73.13057, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694204400", "vehicle": {"licensePlate": "CVTG84"}}}, {"id": "91649449-728c-4644-8938-88e356340178", "vehicle": {"position": {"latitude": -36.714874, "longitude": -72.978065, "bearing": 176.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1691504409", "vehicle": {"licensePlate": "FGPH72"}}}, {"id": "c937e95d-c4e1-4b34-b731-a84e61f74706", "vehicle": {"position": {"latitude": -36.929054, "longitude": -73.02366, "bearing": 332.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1681944596", "vehicle": {"licensePlate": "WY2954"}}}, {"id": "1aeccc67-c8c8-45ba-8bfd-797d498385e8", "vehicle": {"position": {"latitude": -36.958447, "longitude": -73.01112, "bearing": 305.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694822813", "vehicle": {"licensePlate": "CVTG93"}}}, {"id": "f7c78a48-b180-42a5-8f1b-c5eb756d2250", "vehicle": {"position": {"latitude": -36.9583, "longitude": -73.01091, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1693494858", "vehicle": {"licensePlate": "BPDX96"}}}, {"id": "a3e9f473-534b-42d7-93c2-a194e360c174", "vehicle": {"position": {"latitude": -36.768967, "longitude": -73.113525, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694710042", "vehicle": {"licensePlate": "WE9097"}}}, {"id": "48f6e583-e7b7-4a1e-8a7b-197fdc6ade7c", "vehicle": {"position": {"latitude": -36.73315, "longitude": -73.11695, "bearing": 136.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694537578", "vehicle": {"licensePlate": "BGCF44"}}}, {"id": "33775b8d-c929-49f8-9e4b-a36613cb2a6d", "vehicle": {"position": {"latitude": -36.76948, "longitude": -73.11397, "bearing": 250.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694605874", "vehicle": {"licensePlate": "YE2425"}}}, {"id": "2c7740bc-2d12-46fc-8613-4c52e07fc1d7", "vehicle": {"position": {"latitude": -36.941288, "longitude": -73.02714, "bearing": 168.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888780", "vehicle": {"licensePlate": "ZJ6881"}}}, {"id": "904b1359-aeb4-443b-9951-f7bc55f71beb", "vehicle": {"position": {"latitude": -36.789585, "longitude": -73.079056, "bearing": 18.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694818840", "vehicle": {"licensePlate": "FBWF90"}}}, {"id": "007c9caa-2bce-4038-bd75-b5e35a099ed3", "vehicle": {"position": {"latitude": -36.957924, "longitude": -73.01064, "bearing": 245.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694816385", "vehicle": {"licensePlate": "HLXH 62"}}}, {"id": "ab27809a-95ac-4e69-acb5-71873c7b77a6", "vehicle": {"position": {"latitude": -36.716614, "longitude": -72.97905, "bearing": 38.0, "odometer": 0.0, "speed": 5.2777777}, "timestamp": "1694448354", "vehicle": {"licensePlate": "DBHL17"}}}, {"id": "62f3faae-4db6-4be1-932a-6b2cbc070499", "vehicle": {"position": {"latitude": -36.75615, "longitude": -73.0936, "bearing": 48.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694822685", "vehicle": {"licensePlate": "BWYH56"}}}, {"id": "b00cdf94-18f1-4682-8351-1e9bc2e2d980", "vehicle": {"position": {"latitude": -36.94215, "longitude": -73.01494, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694886194", "vehicle": {"licensePlate": "XY6995"}}}, {"id": "2558628a-65b6-4704-99a0-3b07f20d3732", "vehicle": {"position": {"latitude": -36.775833, "longitude": -73.11518, "bearing": 286.0, "odometer": 0.0, "speed": 1.0}, "timestamp": "1689193608", "vehicle": {"licensePlate": "BTST46"}}}, {"id": "e1ffa5d0-302a-4c5d-9d4b-e985c0048e0e", "vehicle": {"position": {"latitude": -36.792233, "longitude": -73.089836, "bearing": 210.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694717752", "vehicle": {"licensePlate": "FXRL49"}}}, {"id": "1e5e22f1-cf37-4be8-86b7-b50028d414bd", "vehicle": {"position": {"latitude": -36.71868, "longitude": -73.12115, "bearing": 66.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694820014", "vehicle": {"licensePlate": "FDHJ42"}}}, {"id": "242531b4-a7eb-4b62-a470-3a07b431c930", "vehicle": {"position": {"latitude": -36.84077, "longitude": -73.00747, "bearing": 48.0, "odometer": 0.0, "speed": 8.888889}, "timestamp": "1694889006", "vehicle": {"licensePlate": "DDDW23"}}}, {"id": "23fe2d4e-226c-41e6-8e3f-133fabc6e485", "vehicle": {"position": {"latitude": -36.76834, "longitude": -73.11453, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1693077020", "vehicle": {"licensePlate": "FXRZ38"}}}, {"id": "0c1c1409-f7ff-4a03-8952-eae2d97cd784", "vehicle": {"position": {"latitude": -36.805058, "longitude": -73.038765, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1690811470", "vehicle": {"licensePlate": "ZT3361"}}}, {"id": "7bd2817f-171a-40c6-81fd-20c72080537c", "vehicle": {"position": {"latitude": -36.794563, "longitude": -73.04613, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694879692", "vehicle": {"licensePlate": "FYBD32"}}}, {"id": "fc5652b2-3428-4fc8-8e1e-3c061a495203", "vehicle": {"position": {"latitude": -36.79714, "longitude": -73.10463, "bearing": 190.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694566378", "vehicle": {"licensePlate": "FYBC87"}}}, {"id": "9dc385d5-d930-4d91-90a5-60b062f123e8", "vehicle": {"position": {"latitude": -36.794285, "longitude": -73.045944, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1691759424", "vehicle": {"licensePlate": "XS5122"}}}, {"id": "bdea0b00-56c4-4a83-9cb7-8617479205dd", "vehicle": {"position": {"latitude": -36.8468, "longitude": -73.143936, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1693263739", "vehicle": {"licensePlate": "DZKC37"}}}, {"id": "15c01b6d-5881-4751-8608-ceeac54896a5", "vehicle": {"position": {"latitude": -36.768696, "longitude": -73.1133, "bearing": 82.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694563800", "vehicle": {"licensePlate": "RWSZ69"}}}, {"id": "337fa4b2-a2fa-4cab-973d-67ed2879b71d", "vehicle": {"position": {"latitude": -36.941235, "longitude": -73.02715, "bearing": 156.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888814", "vehicle": {"licensePlate": "LBKD62"}}}, {"id": "b7730879-0742-4a61-8af5-a17ec4c14bf1", "vehicle": {"position": {"latitude": -36.794277, "longitude": -73.04585, "bearing": 288.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1688571588", "vehicle": {"licensePlate": "YS3883"}}}, {"id": "8b1e5ddb-fb4c-4f74-84c8-08e367e96f96", "vehicle": {"position": {"latitude": -36.82893, "longitude": -73.14782, "bearing": 76.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888902", "vehicle": {"licensePlate": "JBTS23"}}}, {"id": "5e46906c-ba29-431a-8146-5b2dde4dbafb", "vehicle": {"position": {"latitude": -36.778606, "longitude": -73.09913, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694861142", "vehicle": {"licensePlate": "WK9936"}}}, {"id": "63487cf8-1347-4125-a5a0-433de5bf71aa", "vehicle": {"position": {"latitude": -36.95803, "longitude": -73.01037, "bearing": 165.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694821654", "vehicle": {"licensePlate": "ZT4009"}}}, {"id": "eef8ef58-558b-469d-a1ac-bb0b170d8cfc", "vehicle": {"position": {"latitude": -36.714016, "longitude": -72.97772, "bearing": 249.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694882021", "vehicle": {"licensePlate": "DJBB52"}}}, {"id": "7866c3cc-41f4-4da9-b9b1-464d18372a12", "vehicle": {"position": {"latitude": -36.789734, "longitude": -73.079056, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694868462", "vehicle": {"licensePlate": "DZTJ18"}}}, {"id": "9eea7ea5-5472-4946-adb8-5c8f8b05d2c6", "vehicle": {"position": {"latitude": -36.789875, "longitude": -73.07871, "bearing": 88.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1681413300", "vehicle": {"licensePlate": "WF1391"}}}, {"id": "879ef85d-0f6d-4bb0-855a-4946f8fdd702", "vehicle": {"position": {"latitude": -36.777344, "longitude": -73.112656, "bearing": 344.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694882154", "vehicle": {"licensePlate": "DKFS35"}}}, {"id": "730a6208-e4e8-4127-8551-eda2cecf3dd9", "vehicle": {"position": {"latitude": -36.778515, "longitude": -73.099075, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1693858464", "vehicle": {"licensePlate": "ZV6259"}}}, {"id": "918bac75-118b-4670-8faa-296c2a1ca548", "vehicle": {"position": {"latitude": -36.83135, "longitude": -73.00578, "bearing": 170.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1693492132", "vehicle": {"licensePlate": "HYCZ26"}}}, {"id": "83dfc87f-c46a-43ae-b6a8-94fb3c1d353e", "vehicle": {"position": {"latitude": -36.768806, "longitude": -73.11338, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694880576", "vehicle": {"licensePlate": "FXRR70"}}}, {"id": "5b836f27-cfd8-4b41-8969-7853ff94c769", "vehicle": {"position": {"latitude": -36.832577, "longitude": -73.00349, "bearing": 43.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694880265", "vehicle": {"licensePlate": "WF1309"}}}, {"id": "a99aa49b-8ac2-4ebc-9bf6-af8c627b1740", "vehicle": {"position": {"latitude": -36.97375, "longitude": -72.92679, "bearing": 106.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888661", "vehicle": {"licensePlate": "GZGD14"}}}, {"id": "3549abae-a8b2-4a9d-8498-683c6dec0379", "vehicle": {"position": {"latitude": -36.748756, "longitude": -73.09095, "bearing": 18.0, "odometer": 0.0, "speed": 1.3888888}, "timestamp": "1694869314", "vehicle": {"licensePlate": "HDLW63"}}}, {"id": "167fd7d9-59b2-4702-b4c9-2cbec65888ec", "vehicle": {"position": {"latitude": -36.754997, "longitude": -73.08853, "bearing": 136.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1693610542", "vehicle": {"licensePlate": "FYGP85"}}}, {"id": "45a75417-fd48-491d-9a86-6137e604fcb2", "vehicle": {"position": {"latitude": -36.83065, "longitude": -73.123505, "bearing": 210.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694816788", "vehicle": {"licensePlate": "JCKS60"}}}, {"id": "79db8453-cdf0-4a81-bdec-de6ed5cf11dc", "vehicle": {"position": {"latitude": -36.7951, "longitude": -73.106766, "bearing": 90.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694886198", "vehicle": {"licensePlate": "DKFS34"}}}, {"id": "2397dada-b228-4fc7-bb89-edbe9b0bb8c2", "vehicle": {"position": {"latitude": -36.795227, "longitude": -73.10699, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694535956", "vehicle": {"licensePlate": "CYJS22"}}}, {"id": "b8d87bc8-cede-4ad8-90a0-c2f4642ab074", "vehicle": {"position": {"latitude": -36.89235, "longitude": -73.13398, "bearing": 282.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1689954755", "vehicle": {"licensePlate": "ZT3981"}}}, {"id": "4201fdd0-33ee-49f3-8a71-a5513180021b", "vehicle": {"position": {"latitude": -36.810455, "longitude": -73.04722, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1693318964", "vehicle": {"licensePlate": "DRTS58"}}}, {"id": "a66cb9d5-0821-49d9-9db2-4c456b54d15a", "vehicle": {"position": {"latitude": -36.794872, "longitude": -73.04595, "bearing": 67.0, "odometer": 0.0, "speed": 2.5}, "timestamp": "1694544653", "vehicle": {"licensePlate": "FXRL30"}}}, {"id": "502375db-39a6-420d-a47d-83bc0e818df9", "vehicle": {"position": {"latitude": -36.611515, "longitude": -72.95683, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1693052506", "vehicle": {"licensePlate": "KKPV69"}}}, {"id": "61a1381d-10b8-4384-8c5f-36d8b4630e14", "vehicle": {"position": {"latitude": -36.9016, "longitude": -73.149994, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888574", "vehicle": {"licensePlate": "FXRL52"}}}, {"id": "61854c7c-d2b9-4009-a33f-85cb0def796a", "vehicle": {"position": {"latitude": -36.553814, "longitude": -72.93811, "bearing": 284.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694730348", "vehicle": {"licensePlate": "FFVP44"}}}, {"id": "e398de81-2538-4267-9433-793ec19b3894", "vehicle": {"position": {"latitude": -36.78779, "longitude": -73.12787, "bearing": 98.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1693346099", "vehicle": {"licensePlate": "YV2164"}}}, {"id": "bb183487-6609-4124-8b10-d6100add07f2", "vehicle": {"position": {"latitude": -36.778526, "longitude": -73.09892, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694750916", "vehicle": {"licensePlate": "CVJG34"}}}, {"id": "88657fa0-b33d-4ab4-89c2-f07df8c91e96", "vehicle": {"position": {"latitude": -36.777275, "longitude": -73.112656, "bearing": 150.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694736092", "vehicle": {"licensePlate": "DKFS36"}}}, {"id": "1024518a-7a64-4950-9dd4-4adae3c4b0cc", "vehicle": {"position": {"latitude": -36.810905, "longitude": -73.04703, "bearing": 347.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694450405", "vehicle": {"licensePlate": "JGVX43"}}}, {"id": "f233316c-17d9-454c-b089-af6849eac3c3", "vehicle": {"position": {"latitude": -36.718967, "longitude": -73.12088, "bearing": 244.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694820110", "vehicle": {"licensePlate": "ZT3329"}}}, {"id": "2d23f3ee-bfae-46a5-b117-2891090ae9b3", "vehicle": {"position": {"latitude": -36.794365, "longitude": -73.04611, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694866014", "vehicle": {"licensePlate": "DPDH66"}}}, {"id": "7a07deeb-b036-458d-b908-564f0b23cbec", "vehicle": {"position": {"latitude": -36.795273, "longitude": -73.10719, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1690982580", "vehicle": {"licensePlate": "FFTL51"}}}, {"id": "6b5e482f-ec13-4c95-b1a1-876d0736643e", "vehicle": {"position": {"latitude": -36.941856, "longitude": -73.01511, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1680355898", "vehicle": {"licensePlate": "VV6157"}}}, {"id": "daf9cb19-d3be-4c2f-a063-08657c863aa4", "vehicle": {"position": {"latitude": -36.767075, "longitude": -73.113106, "bearing": 194.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694870230", "vehicle": {"licensePlate": "BBVC71"}}}, {"id": "34d26f5d-ce44-43cf-9300-a28b76fad299", "vehicle": {"position": {"latitude": -36.713844, "longitude": -72.97765, "bearing": 344.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694883726", "vehicle": {"licensePlate": "DXSH14"}}}, {"id": "e7039c46-52f4-4eb1-819b-0cc663a8dea7", "vehicle": {"position": {"latitude": -36.958126, "longitude": -73.01071, "bearing": 148.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1683306004", "vehicle": {"licensePlate": "BVPW59"}}}, {"id": "a0d034c4-41a2-4f39-9218-8526419d159b", "vehicle": {"position": {"latitude": -36.84311, "longitude": -73.01068, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694615314", "vehicle": {"licensePlate": "FXRZ28"}}}, {"id": "98498bd7-5a73-41d2-8468-f2e98ab425ad", "vehicle": {"position": {"latitude": -36.767036, "longitude": -73.112816, "bearing": 320.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694183073", "vehicle": {"licensePlate": "DWGZ59"}}}, {"id": "1df7d795-627b-43e3-bd5b-595b6f4d0fe2", "vehicle": {"position": {"latitude": -36.958107, "longitude": -73.01063, "bearing": 165.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694879372", "vehicle": {"licensePlate": "BHVF83"}}}, {"id": "9aaec4e1-2c90-4cfb-8dce-f1c60a9fec41", "vehicle": {"position": {"latitude": -36.736378, "longitude": -72.98867, "bearing": 68.0, "odometer": 0.0, "speed": 6.9444447}, "timestamp": "1694888984", "vehicle": {"licensePlate": "FFTL50"}}}, {"id": "494032a6-e9cb-49d6-9715-4c0977970228", "vehicle": {"position": {"latitude": -36.72359, "longitude": -73.141365, "bearing": 16.0, "odometer": 0.0, "speed": 8.888889}, "timestamp": "1694889008", "vehicle": {"licensePlate": "ZV6539"}}}, {"id": "d23b9e33-bde2-427d-9bec-a5bd7ef88fb2", "vehicle": {"position": {"latitude": -36.82453, "longitude": -73.05181, "bearing": 62.0, "odometer": 0.0, "speed": 4.7222223}, "timestamp": "1694889024", "vehicle": {"licensePlate": "FPZY98"}}}, {"id": "c34e7a19-0061-4887-8bed-6b7dc303bca7", "vehicle": {"position": {"latitude": -36.779526, "longitude": -73.09888, "bearing": 158.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1684252896", "vehicle": {"licensePlate": "DZYS89"}}}, {"id": "16a8c29f-3898-4063-95d8-cc7dd7b6b583", "vehicle": {"position": {"latitude": -36.794506, "longitude": -73.067245, "bearing": 24.0, "odometer": 0.0, "speed": 10.0}, "timestamp": "1692823838", "vehicle": {"licensePlate": "HHKP75"}}}, {"id": "8bc3e16e-4d80-43c5-9669-10a2c1371488", "vehicle": {"position": {"latitude": -36.779377, "longitude": -73.098946, "bearing": 160.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694772978", "vehicle": {"licensePlate": "FXRR75"}}}, {"id": "975cd5ac-6c1c-448e-b43a-b08913146f3a", "vehicle": {"position": {"latitude": -36.79653, "longitude": -73.099785, "bearing": 300.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694868794", "vehicle": {"licensePlate": "ZJ6621"}}}, {"id": "439e18d9-529a-43b3-9f7f-0070b37c010a", "vehicle": {"position": {"latitude": -36.718758, "longitude": -73.12109, "bearing": 72.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694886922", "vehicle": {"licensePlate": "ZR7259"}}}, {"id": "5090a07f-df83-4627-b6e3-57cc7be56d1b", "vehicle": {"position": {"latitude": -36.941143, "longitude": -73.02713, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1689346278", "vehicle": {"licensePlate": "XZ1167"}}}, {"id": "f8cb9b40-ce86-4faf-9eb6-5a10515105d9", "vehicle": {"position": {"latitude": -36.79466, "longitude": -73.04623, "bearing": 142.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694880754", "vehicle": {"licensePlate": "JLZV94"}}}, {"id": "cdb00712-4165-4a21-a660-98c9b187743b", "vehicle": {"position": {"latitude": -36.79447, "longitude": -73.045845, "bearing": 324.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888758", "vehicle": {"licensePlate": "RWDP81"}}}, {"id": "bd9228b0-84f6-4f8d-b3bf-c22b379b1f07", "vehicle": {"position": {"latitude": -36.8418, "longitude": -73.1292, "bearing": 25.0, "odometer": 0.0, "speed": 6.9444447}, "timestamp": "1683032430", "vehicle": {"licensePlate": "DWVX28"}}}, {"id": "8843d295-43e5-4f41-a459-4a8532ee0069", "vehicle": {"position": {"latitude": -36.801216, "longitude": -73.02585, "bearing": 178.0, "odometer": 0.0, "speed": 16.38889}, "timestamp": "1694888974", "vehicle": {"licensePlate": "BKSD38"}}}, {"id": "3ac9c1b1-4a7c-4627-8cd4-a5bc7347f8c7", "vehicle": {"position": {"latitude": -36.80401, "longitude": -73.02633, "bearing": 156.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694820298", "vehicle": {"licensePlate": "DZTL12"}}}, {"id": "edc0edd5-dc84-49c2-960f-6b58219fbc5d", "vehicle": {"position": {"latitude": -36.713863, "longitude": -72.977646, "bearing": 85.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888591", "vehicle": {"licensePlate": "HYHR39"}}}, {"id": "c5b875dc-f97f-4ac8-85b7-8b5c066c0ff4", "vehicle": {"position": {"latitude": -36.788357, "longitude": -73.10429, "bearing": 86.0, "odometer": 0.0, "speed": 5.2777777}, "timestamp": "1694889008", "vehicle": {"licensePlate": "HDLR87"}}}, {"id": "b77f77ef-9e85-4815-aebc-5d2784109471", "vehicle": {"position": {"latitude": -36.76704, "longitude": -73.11275, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694184524", "vehicle": {"licensePlate": "FXJS62"}}}, {"id": "30c20370-4833-40ac-b24e-4d298174eb3e", "vehicle": {"position": {"latitude": -36.709736, "longitude": -73.1406, "bearing": 138.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888774", "vehicle": {"licensePlate": "DPZY99"}}}, {"id": "fd22c398-3fbc-4f2c-8b70-e3ee87f76751", "vehicle": {"position": {"latitude": -36.84311, "longitude": -73.009705, "bearing": 178.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888762", "vehicle": {"licensePlate": "FHJD81"}}}, {"id": "58317737-d700-4b1c-9e8a-3b831c0b532b", "vehicle": {"position": {"latitude": -36.779385, "longitude": -73.099525, "bearing": 290.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888668", "vehicle": {"licensePlate": "RPYG63"}}}, {"id": "c82e1914-46dc-4ab1-8d98-61a2031aaf75", "vehicle": {"position": {"latitude": -36.806988, "longitude": -73.0515, "bearing": 52.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888734", "vehicle": {"licensePlate": "RVBV19"}}}, {"id": "bb26dad4-8515-4e1c-8ea3-ee223495e6ca", "vehicle": {"position": {"latitude": -36.828957, "longitude": -73.14811, "bearing": 78.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888808", "vehicle": {"licensePlate": "RYRV73"}}}, {"id": "f0e0fea6-6ac0-4935-bb21-394d6ac99de8", "vehicle": {"position": {"latitude": -36.94315, "longitude": -73.01988, "bearing": 64.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694883608", "vehicle": {"licensePlate": "XN3257"}}}, {"id": "80d32062-4f0a-4ef0-81bc-6b9d9a0e3647", "vehicle": {"position": {"latitude": -36.951214, "longitude": -73.01523, "bearing": 334.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694867334", "vehicle": {"licensePlate": "BLYJ29"}}}, {"id": "1dbb794a-09fe-4e34-9f75-928de3563271", "vehicle": {"position": {"latitude": -36.789604, "longitude": -73.07913, "bearing": 124.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694869448", "vehicle": {"licensePlate": "LKCZ18"}}}, {"id": "32b85c2c-3899-44df-9440-bc76b74c17c1", "vehicle": {"position": {"latitude": -36.949375, "longitude": -72.93202, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694821517", "vehicle": {"licensePlate": "SSBD61"}}}, {"id": "e0d6f3a1-f99f-48cc-97f1-5503faf2f607", "vehicle": {"position": {"latitude": -36.603687, "longitude": -72.96871, "bearing": 24.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888594", "vehicle": {"licensePlate": "HYHR47"}}}, {"id": "78177a8f-86dc-4e15-a8f8-af1d6c621e72", "vehicle": {"position": {"latitude": -36.713917, "longitude": -72.97743, "bearing": 29696.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1689185804", "vehicle": {"licensePlate": "ZY4796"}}}, {"id": "9bba3422-2af6-4b69-8e13-7a63cd61f3f9", "vehicle": {"position": {"latitude": -36.76937, "longitude": -73.11363, "bearing": 190.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694723868", "vehicle": {"licensePlate": "ZR7406"}}}, {"id": "7d3d0763-ff39-4697-a32b-3fa9ad1afb15", "vehicle": {"position": {"latitude": -36.70479, "longitude": -72.97253, "bearing": 194.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888709", "vehicle": {"licensePlate": "JSBB51"}}}, {"id": "f7413153-6e73-4595-94ec-8379bd211640", "vehicle": {"position": {"latitude": -36.735798, "longitude": -73.10273, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694816460", "vehicle": {"licensePlate": "WW4900"}}}, {"id": "944d4f6b-f982-4787-8381-3483ab2b4499", "vehicle": {"position": {"latitude": -36.714405, "longitude": -72.97463, "bearing": 108.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888906", "vehicle": {"licensePlate": "BFDR20"}}}, {"id": "c31194a5-cd9f-43e3-97bf-8aab709ee1e0", "vehicle": {"position": {"latitude": -36.710945, "longitude": -72.97414, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1693071104", "vehicle": {"licensePlate": "YW5590"}}}, {"id": "b921b955-29ff-4035-9361-6a0994b089cf", "vehicle": {"position": {"latitude": -36.766796, "longitude": -73.11344, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889011", "vehicle": {"licensePlate": "YU2131"}}}, {"id": "5679bba4-ec23-4450-99c5-e6b6520013b4", "vehicle": {"position": {"latitude": -36.777283, "longitude": -73.1126, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889012", "vehicle": {"licensePlate": "FDHJ54"}}}, {"id": "e690826c-b6d5-48fa-a759-d30e054b3e45", "vehicle": {"position": {"latitude": -36.59929, "longitude": -72.95177, "bearing": 136.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888942", "vehicle": {"licensePlate": "JJJC38"}}}, {"id": "60772fcf-3d6a-42dd-ba4f-a95b9e9e8867", "vehicle": {"position": {"latitude": -36.95317, "longitude": -73.022385, "bearing": 148.0, "odometer": 0.0, "speed": 2.7777777}, "timestamp": "1694889010", "vehicle": {"licensePlate": "CTZT10"}}}, {"id": "d941d8b1-ed02-4d2b-8f8b-c31c30335193", "vehicle": {"position": {"latitude": -36.958076, "longitude": -73.01085, "bearing": 224.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694709604", "vehicle": {"licensePlate": "FXVK52"}}}, {"id": "73ce7e91-e1aa-427e-84a0-22992ec7bafd", "vehicle": {"position": {"latitude": -36.723507, "longitude": -73.129005, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888302", "vehicle": {"licensePlate": "ZL3449"}}}, {"id": "b8a988fc-cec2-451a-821d-d5b078fff9de", "vehicle": {"position": {"latitude": -36.726376, "longitude": -72.98692, "bearing": 295.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694886491", "vehicle": {"licensePlate": "YK7908"}}}, {"id": "9839e13c-5b4f-4230-a496-00e1bc017384", "vehicle": {"position": {"latitude": -36.77862, "longitude": -73.09957, "bearing": 228.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694868386", "vehicle": {"licensePlate": "FXRR79"}}}, {"id": "46ef7f7a-b945-4e05-af2d-e500152ec40a", "vehicle": {"position": {"latitude": -36.80688, "longitude": -73.0513, "bearing": 162.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1689619468", "vehicle": {"licensePlate": "XY7377"}}}, {"id": "b1945a5c-20e6-4ed3-b7d8-5dde7a594c2a", "vehicle": {"position": {"latitude": -36.76957, "longitude": -73.11368, "bearing": 74.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694465516", "vehicle": {"licensePlate": "BTSZ61"}}}, {"id": "a6632bea-4ffd-4971-8156-ed008af2b02b", "vehicle": {"position": {"latitude": -36.718773, "longitude": -73.121025, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694884220", "vehicle": {"licensePlate": "TW2933"}}}, {"id": "03d7b103-a8c3-4ff1-a6b3-c38698272a4f", "vehicle": {"position": {"latitude": -36.778797, "longitude": -73.10282, "bearing": 105.0, "odometer": 0.0, "speed": 11.666667}, "timestamp": "1694439019", "vehicle": {"licensePlate": "WD9612"}}}, {"id": "4a0af0f6-6f2b-49c3-bf89-148be19dd0c5", "vehicle": {"position": {"latitude": -36.607212, "longitude": -72.96876, "bearing": 232.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888952", "vehicle": {"licensePlate": "DFFL12"}}}, {"id": "fc8e84f0-179f-4096-aab7-cf0a92bef9c7", "vehicle": {"position": {"latitude": -36.824245, "longitude": -73.13005, "bearing": 144.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694885738", "vehicle": {"licensePlate": "JFSP65"}}}, {"id": "15627506-997a-486c-be42-d1a0652a31c1", "vehicle": {"position": {"latitude": -36.76895, "longitude": -73.11304, "bearing": 148.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694816730", "vehicle": {"licensePlate": "DPZY75"}}}, {"id": "8a396781-0a70-4c70-bce7-e3867c44e7a2", "vehicle": {"position": {"latitude": -36.777725, "longitude": -73.112595, "bearing": 316.0, "odometer": 0.0, "speed": 1.6666666}, "timestamp": "1694881516", "vehicle": {"licensePlate": "CVTR61"}}}, {"id": "c05e7086-6a35-48cc-b78f-ce7fa32e1807", "vehicle": {"position": {"latitude": -36.766922, "longitude": -73.11312, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694873588", "vehicle": {"licensePlate": "BFPL36"}}}, {"id": "e43ddde9-515f-47e5-a99b-dcf36097758d", "vehicle": {"position": {"latitude": -36.83045, "longitude": -73.1241, "bearing": 146.0, "odometer": 0.0, "speed": 5.0}, "timestamp": "1694885418", "vehicle": {"licensePlate": "JYRR14"}}}, {"id": "aafa089a-ac1b-4df8-9d86-232097cdd3d0", "vehicle": {"position": {"latitude": -36.778614, "longitude": -73.099396, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1693409644", "vehicle": {"licensePlate": "HZGZ95"}}}, {"id": "92294c23-3f31-4bfb-9ead-b4dc58bfedbd", "vehicle": {"position": {"latitude": -36.918144, "longitude": -73.02784, "bearing": 334.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694603250", "vehicle": {"licensePlate": "YW5485"}}}, {"id": "49d0cf67-7ec9-4c80-a75b-8c548ca5df02", "vehicle": {"position": {"latitude": -36.795177, "longitude": -73.10678, "bearing": 92.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1693943542", "vehicle": {"licensePlate": "DKFS38"}}}, {"id": "a6b22c30-f04c-429b-88f5-9942bb68e209", "vehicle": {"position": {"latitude": -36.72337, "longitude": -73.128815, "bearing": 329.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694869306", "vehicle": {"licensePlate": "ZJ6730"}}}, {"id": "a2fce729-5819-4cc8-b399-240ddb52b112", "vehicle": {"position": {"latitude": -36.958443, "longitude": -73.011314, "bearing": 119.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694817763", "vehicle": {"licensePlate": "FXRL48"}}}, {"id": "648c6bfd-187a-43d8-a147-43b9e7aa2fa5", "vehicle": {"position": {"latitude": -36.714203, "longitude": -72.97786, "bearing": 274.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694545943", "vehicle": {"licensePlate": "LPDK40"}}}, {"id": "5a37e66e-19ce-48c5-8259-961e12edf47d", "vehicle": {"position": {"latitude": -36.82691, "longitude": -73.06043, "bearing": 62.0, "odometer": 0.0, "speed": 12.4}, "timestamp": "1694888938", "vehicle": {"licensePlate": "DKTB43"}}}, {"id": "9a3c4357-396d-4ab2-b9d5-9322d43423c3", "vehicle": {"position": {"latitude": -36.94112, "longitude": -73.02725, "bearing": 146.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694883304", "vehicle": {"licensePlate": "FPRY67"}}}, {"id": "9d9c9278-6cf9-4813-8227-f68e56847dd0", "vehicle": {"position": {"latitude": -36.76623, "longitude": -73.17346, "bearing": 135.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694868775", "vehicle": {"licensePlate": "FGYZ20"}}}, {"id": "f32c54c3-1c29-4bca-8acc-aad721965927", "vehicle": {"position": {"latitude": -36.80553, "longitude": -73.03838, "bearing": 272.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694193094", "vehicle": {"licensePlate": "JZLB59"}}}, {"id": "5e59c174-9502-45d8-b654-fbe1f19c7f99", "vehicle": {"position": {"latitude": -36.844406, "longitude": -73.12997, "bearing": 9.0, "odometer": 0.0, "speed": 10.8}, "timestamp": "1684517224", "vehicle": {"licensePlate": "KCDS85"}}}, {"id": "f34af194-4447-4fb7-ba15-9ca0a8e5cd82", "vehicle": {"position": {"latitude": -36.824257, "longitude": -73.12995, "bearing": 199.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694176750", "vehicle": {"licensePlate": "JJJD52"}}}, {"id": "0c85a6b6-aadb-4436-8e83-e0103a53d106", "vehicle": {"position": {"latitude": -36.832573, "longitude": -73.00392, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694090216", "vehicle": {"licensePlate": "HLZX32"}}}, {"id": "3e67b66e-32e9-413d-a92b-f46e30cce42d", "vehicle": {"position": {"latitude": -36.829037, "longitude": -73.14792, "bearing": 168.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888828", "vehicle": {"licensePlate": "BKXH47"}}}, {"id": "f10df46e-80e9-4c63-a503-28ceb97074cc", "vehicle": {"position": {"latitude": -36.82878, "longitude": -73.14749, "bearing": 82.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888824", "vehicle": {"licensePlate": "CCHL61"}}}, {"id": "423260db-cb79-445f-98c9-47b447287642", "vehicle": {"position": {"latitude": -36.82903, "longitude": -73.147934, "bearing": 170.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1685142018", "vehicle": {"licensePlate": "GWXT25"}}}, {"id": "297a03ab-5f96-484c-8cdd-d0b4cdab2c07", "vehicle": {"position": {"latitude": -36.957527, "longitude": -73.01012, "bearing": 80.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694823446", "vehicle": {"licensePlate": "WW5316"}}}, {"id": "319207ce-b2cb-4cbb-936b-8dc327f60f7d", "vehicle": {"position": {"latitude": -36.958214, "longitude": -73.01087, "bearing": 41.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694824199", "vehicle": {"licensePlate": "GVFL21"}}}, {"id": "ab077297-d396-4926-a814-b56425317f08", "vehicle": {"position": {"latitude": -36.735737, "longitude": -73.10253, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1687987763", "vehicle": {"licensePlate": "HJPL47"}}}, {"id": "241ed3be-f163-4309-abd9-af3271c5e16c", "vehicle": {"position": {"latitude": -36.769325, "longitude": -73.114, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1686875329", "vehicle": {"licensePlate": "WE12000"}}}, {"id": "4a619f9a-75f3-4499-8093-59c72cb739cc", "vehicle": {"position": {"latitude": -36.843044, "longitude": -73.009735, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1693945654", "vehicle": {"licensePlate": "JXLW51"}}}, {"id": "083a8fc9-8a6b-47d6-a2ee-dd61f51bf6d5", "vehicle": {"position": {"latitude": -36.794373, "longitude": -73.0459, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1683903723", "vehicle": {"licensePlate": "XY3622"}}}, {"id": "893a79ff-43f0-42fb-8bea-4593fd7dfe39", "vehicle": {"position": {"latitude": -36.795135, "longitude": -73.10721, "bearing": 314.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694721214", "vehicle": {"licensePlate": "FDHJ43"}}}, {"id": "9ebe96aa-57bc-4f96-859a-af8677b7ca00", "vehicle": {"position": {"latitude": -36.800037, "longitude": -72.95979, "bearing": 260.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888788", "vehicle": {"licensePlate": "JJJC69"}}}, {"id": "ed4615b0-d9ce-4846-9eb9-ec0f83bd2d9d", "vehicle": {"position": {"latitude": -36.76687, "longitude": -73.11344, "bearing": 100.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1693424454", "vehicle": {"licensePlate": "UW8554"}}}, {"id": "6d173656-96bf-4cc7-9b95-a8e63fa6a389", "vehicle": {"position": {"latitude": -36.842567, "longitude": -73.010086, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888642", "vehicle": {"licensePlate": "RVSK43"}}}, {"id": "225e5725-e86e-4ea6-a657-27a9a9fef152", "vehicle": {"position": {"latitude": -36.973526, "longitude": -72.92677, "bearing": 330.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694875638", "vehicle": {"licensePlate": "GJLJ42"}}}, {"id": "836103a4-93d5-4283-8bf5-d6bea411f6f3", "vehicle": {"position": {"latitude": -36.80563, "longitude": -73.038315, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888732", "vehicle": {"licensePlate": "FXZY72"}}}, {"id": "c9c4f84b-7ba3-4d82-ba50-6db43976cc5a", "vehicle": {"position": {"latitude": -36.958443, "longitude": -73.01126, "bearing": 134.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888764", "vehicle": {"licensePlate": "HYZD26"}}}, {"id": "4525f7af-1bfd-45dc-a9cc-ac5df2e322fd", "vehicle": {"position": {"latitude": -36.82429, "longitude": -73.12996, "bearing": 215.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694887684", "vehicle": {"licensePlate": "RVRL27"}}}, {"id": "653f222c-12e8-4eec-a6ca-739170fa4904", "vehicle": {"position": {"latitude": -36.79531, "longitude": -73.106964, "bearing": 100.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694804760", "vehicle": {"licensePlate": "JHJF67"}}}, {"id": "b9ab8091-5755-4156-97f8-f9917baec463", "vehicle": {"position": {"latitude": -36.77933, "longitude": -73.0992, "bearing": 341.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888907", "vehicle": {"licensePlate": "KVZH52"}}}, {"id": "83f68ee1-baeb-416a-9d05-3c6abe862a2d", "vehicle": {"position": {"latitude": -36.941616, "longitude": -73.026794, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1692724882", "vehicle": {"licensePlate": "BDJP62"}}}, {"id": "c6fa9b2e-ce86-4b5b-b2dc-d8d3edf4e386", "vehicle": {"position": {"latitude": -36.768482, "longitude": -73.11418, "bearing": 258.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694885292", "vehicle": {"licensePlate": "RTZB48"}}}, {"id": "6aa17a74-b741-4f92-8826-5f9a84087351", "vehicle": {"position": {"latitude": -36.828556, "longitude": -73.00981, "bearing": 79.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888952", "vehicle": {"licensePlate": "JFSP63"}}}, {"id": "df175ca7-596a-4f11-9ad2-37464190da5e", "vehicle": {"position": {"latitude": -36.95807, "longitude": -73.01075, "bearing": 341.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888606", "vehicle": {"licensePlate": "YU5091"}}}, {"id": "3137d8e5-ff5c-4d98-99ce-fd3c44d26915", "vehicle": {"position": {"latitude": -36.599407, "longitude": -72.95444, "bearing": 302.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888680", "vehicle": {"licensePlate": "SKPL57"}}}, {"id": "615ea201-8d5a-4c0c-ad63-416c24c6219c", "vehicle": {"position": {"latitude": -36.842945, "longitude": -73.00984, "bearing": 296.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1682689340", "vehicle": {"licensePlate": "YX2285"}}}, {"id": "88aa5642-f479-46a2-a7ed-2a84172f90f1", "vehicle": {"position": {"latitude": -36.821606, "longitude": -72.992905, "bearing": 198.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1693326149", "vehicle": {"licensePlate": "WX6016"}}}, {"id": "3e3e073a-d804-462d-957c-2f020d51fbba", "vehicle": {"position": {"latitude": -36.71875, "longitude": -73.12108, "bearing": 66.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888982", "vehicle": {"licensePlate": "RTXW96"}}}, {"id": "e68c8861-38e7-4892-8385-55a330cb7af8", "vehicle": {"position": {"latitude": -36.83063, "longitude": -73.123634, "bearing": 216.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888868", "vehicle": {"licensePlate": "FXZX45"}}}, {"id": "ea61c0bb-5bc6-4f85-b744-b252b3d3a541", "vehicle": {"position": {"latitude": -36.82909, "longitude": -73.14827, "bearing": 158.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694827528", "vehicle": {"licensePlate": "ZK7783"}}}, {"id": "cee33753-1519-4b0a-89e3-280d615df4c0", "vehicle": {"position": {"latitude": -36.95356, "longitude": -73.02225, "bearing": 66.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694826900", "vehicle": {"licensePlate": "XY1722"}}}, {"id": "d883cb04-c951-4082-b848-5c6b270e9210", "vehicle": {"position": {"latitude": -36.826733, "longitude": -73.150024, "bearing": 180.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694818254", "vehicle": {"licensePlate": "FXRL47"}}}, {"id": "4b83e4a9-7cbc-40a9-9b01-8ac00e635248", "vehicle": {"position": {"latitude": -36.84293, "longitude": -73.009895, "bearing": 294.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888538", "vehicle": {"licensePlate": "PPGD32"}}}, {"id": "8de7bece-7157-4e8f-9a6b-a2f4e1635996", "vehicle": {"position": {"latitude": -36.830673, "longitude": -73.12463, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694878910", "vehicle": {"licensePlate": "DRTS95"}}}, {"id": "a3afb1d8-d021-4219-815e-e80e4b54f301", "vehicle": {"position": {"latitude": -36.95824, "longitude": -73.010994, "bearing": 307.0, "odometer": 0.0, "speed": 1.9444444}, "timestamp": "1694795511", "vehicle": {"licensePlate": "YN2862"}}}, {"id": "728d0126-c919-43d5-ae31-c07d6712bc69", "vehicle": {"position": {"latitude": -36.957966, "longitude": -73.01069, "bearing": 325.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694882046", "vehicle": {"licensePlate": "ZT1069"}}}, {"id": "bd3e804c-4040-43dc-8a35-6e09658a854a", "vehicle": {"position": {"latitude": -36.941753, "longitude": -73.015144, "bearing": 156.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888060", "vehicle": {"licensePlate": "GGJG63"}}}, {"id": "739a0059-0f69-4d2d-a906-92ff8e399052", "vehicle": {"position": {"latitude": -36.79526, "longitude": -73.10733, "bearing": 66.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694879322", "vehicle": {"licensePlate": "CSDS17"}}}, {"id": "fbb0870d-a646-45de-ab58-3805e71efca5", "vehicle": {"position": {"latitude": -36.789692, "longitude": -73.07918, "bearing": 106.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694819310", "vehicle": {"licensePlate": "FGHW36"}}}, {"id": "050be756-1f54-4357-acfc-97d885f6c97b", "vehicle": {"position": {"latitude": -36.828922, "longitude": -73.147675, "bearing": 189.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889024", "vehicle": {"licensePlate": "CCHP85"}}}, {"id": "33ad06c7-5aed-4a2b-8e89-7fb5269ad654", "vehicle": {"position": {"latitude": -36.830654, "longitude": -73.12363, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888778", "vehicle": {"licensePlate": "KHYD29"}}}, {"id": "3373bc62-cbdf-4f8f-b7eb-c10960ed71f4", "vehicle": {"position": {"latitude": -36.794296, "longitude": -73.046036, "bearing": 178.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888844", "vehicle": {"licensePlate": "FHSX94"}}}, {"id": "a6aebcf7-22b6-4b29-9051-3bf237cd9ec9", "vehicle": {"position": {"latitude": -36.807117, "longitude": -73.08879, "bearing": 230.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888850", "vehicle": {"licensePlate": "FSYW69"}}}, {"id": "bd78b111-6211-4ff2-8ad8-40a72c3480de", "vehicle": {"position": {"latitude": -36.713806, "longitude": -72.97773, "bearing": 26.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694096927", "vehicle": {"licensePlate": "XV1998"}}}, {"id": "ef0938af-44c6-4167-9cde-16465d0bd604", "vehicle": {"position": {"latitude": -36.794163, "longitude": -73.0461, "bearing": 14.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888752", "vehicle": {"licensePlate": "JZZP54"}}}, {"id": "2ae7dd47-8ad4-4d89-9a43-0c4340074413", "vehicle": {"position": {"latitude": -36.769417, "longitude": -73.11356, "bearing": 82.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888812", "vehicle": {"licensePlate": "RW9266"}}}, {"id": "b27af132-700b-48ce-aaf6-c8705335d777", "vehicle": {"position": {"latitude": -36.958164, "longitude": -73.01111, "bearing": 209.0, "odometer": 0.0, "speed": 1.9444444}, "timestamp": "1694888103", "vehicle": {"licensePlate": "WW3719"}}}, {"id": "7c45f425-9e57-4920-a584-8121d3f30d29", "vehicle": {"position": {"latitude": -36.77852, "longitude": -73.09915, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888506", "vehicle": {"licensePlate": "JGYB32"}}}, {"id": "d41a5cfb-40e7-4cb2-a3ea-627340fafd83", "vehicle": {"position": {"latitude": -36.88302, "longitude": -73.13101, "bearing": 213.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888749", "vehicle": {"licensePlate": "HJPL24"}}}, {"id": "b4be97f1-8913-4a58-a6d1-4968f1b2d7e0", "vehicle": {"position": {"latitude": -36.949257, "longitude": -72.93142, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694477413", "vehicle": {"licensePlate": "DCXX34"}}}, {"id": "4f9f9d2a-5ac9-4118-9297-a156cf25db2d", "vehicle": {"position": {"latitude": -36.80033, "longitude": -73.0847, "bearing": 150.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1693169485", "vehicle": {"licensePlate": "WC5272"}}}, {"id": "06f390f7-fa50-4ae4-ab8b-b577e7cdacb9", "vehicle": {"position": {"latitude": -36.79428, "longitude": -73.046036, "bearing": 258.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694830680", "vehicle": {"licensePlate": "ZT3358"}}}, {"id": "63eed79b-6e3d-4dcf-9fdc-e793447723da", "vehicle": {"position": {"latitude": -36.766823, "longitude": -73.11336, "bearing": 116.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888798", "vehicle": {"licensePlate": "JKVB23"}}}, {"id": "7f8a9462-0270-4ff0-93b1-32ee5c68f3c0", "vehicle": {"position": {"latitude": -36.84945, "longitude": -73.14242, "bearing": 162.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888745", "vehicle": {"licensePlate": "LHWX31"}}}, {"id": "a6fc8e33-49b6-49b4-9914-5b3bc6b728ae", "vehicle": {"position": {"latitude": -36.79441, "longitude": -73.04554, "bearing": 198.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694829464", "vehicle": {"licensePlate": "WR7272"}}}, {"id": "c66d85c0-d242-4046-a4f9-33291fcf7bfa", "vehicle": {"position": {"latitude": -36.821762, "longitude": -72.993065, "bearing": 334.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694820638", "vehicle": {"licensePlate": "HJPY79"}}}, {"id": "e8e8930b-ad20-4d9c-a3dd-9e6eba511c73", "vehicle": {"position": {"latitude": -36.79442, "longitude": -73.045876, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694875752", "vehicle": {"licensePlate": "WU2419"}}}, {"id": "f912c1c2-a84b-49ad-82ef-9ebc79b36b8e", "vehicle": {"position": {"latitude": -36.714115, "longitude": -72.9778, "bearing": 47.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694545798", "vehicle": {"licensePlate": "GWFD39"}}}, {"id": "498edd88-93c4-4bcc-8390-508427cbd3dd", "vehicle": {"position": {"latitude": -36.740784, "longitude": -72.99199, "bearing": 252.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694823758", "vehicle": {"licensePlate": "WK6987"}}}, {"id": "301899b4-45f2-48f0-8cec-2034028eb4d3", "vehicle": {"position": {"latitude": -36.834553, "longitude": -73.12313, "bearing": 321.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888895", "vehicle": {"licensePlate": "JSBB34"}}}, {"id": "0666f956-43f9-477d-9516-7a8a59fef268", "vehicle": {"position": {"latitude": -36.806915, "longitude": -73.05143, "bearing": 334.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888222", "vehicle": {"licensePlate": "ZJ6055"}}}, {"id": "5b50f722-1052-4618-94f6-da76c59682e5", "vehicle": {"position": {"latitude": -36.959164, "longitude": -73.01056, "bearing": 68.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694830199", "vehicle": {"licensePlate": "GWZC20"}}}, {"id": "47fa9ebe-e641-419d-8466-1e14440fb052", "vehicle": {"position": {"latitude": -36.957973, "longitude": -73.01032, "bearing": 93.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694818423", "vehicle": {"licensePlate": "FFRB35"}}}, {"id": "93fd740b-3e9a-4d68-97b4-9d1a81f9ce68", "vehicle": {"position": {"latitude": -36.903458, "longitude": -73.14751, "bearing": 157.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888801", "vehicle": {"licensePlate": "YF1011"}}}, {"id": "61d84786-9831-476a-960c-aa2b3cbdff19", "vehicle": {"position": {"latitude": -36.723248, "longitude": -73.128944, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694205723", "vehicle": {"licensePlate": "DBGH98"}}}, {"id": "bf5f1550-5301-4058-a44c-0c7d1ca27295", "vehicle": {"position": {"latitude": -36.957787, "longitude": -73.01061, "bearing": 331.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694815935", "vehicle": {"licensePlate": "DXSH18"}}}, {"id": "25d2d82b-3bfe-4b3c-8f00-32ee5563d86e", "vehicle": {"position": {"latitude": -36.72487, "longitude": -73.11743, "bearing": 78.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694870968", "vehicle": {"licensePlate": "LRGY25"}}}, {"id": "c5055477-fef7-4c9d-bb93-6c92e8fd6a87", "vehicle": {"position": {"latitude": -36.82906, "longitude": -73.1482, "bearing": 158.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694819258", "vehicle": {"licensePlate": "FJZZ67"}}}, {"id": "ecfeee68-af02-4ed0-bc58-f6e54587e293", "vehicle": {"position": {"latitude": -36.796402, "longitude": -73.10002, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694829571", "vehicle": {"licensePlate": "CYWK78"}}}, {"id": "e8992845-0eee-4998-be44-544ade7058b2", "vehicle": {"position": {"latitude": -36.78971, "longitude": -73.079124, "bearing": 196.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694818260", "vehicle": {"licensePlate": "YE3093"}}}, {"id": "9f2dc56d-a9b8-4d3a-9cfc-4334da32d5db", "vehicle": {"position": {"latitude": -36.718822, "longitude": -73.12089, "bearing": 174.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694816894", "vehicle": {"licensePlate": "HYCZ60"}}}, {"id": "37fcf44b-a012-4dcd-aafe-81ca3f1951bd", "vehicle": {"position": {"latitude": -36.721912, "longitude": -73.142784, "bearing": 204.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694874894", "vehicle": {"licensePlate": "FRKD98"}}}, {"id": "63726e18-db88-4dae-ac5f-7322c5a27ae9", "vehicle": {"position": {"latitude": -36.849792, "longitude": -73.1424, "bearing": 27.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694799994", "vehicle": {"licensePlate": "WT9888"}}}, {"id": "b735744a-03ad-42af-a154-03d5f9db5066", "vehicle": {"position": {"latitude": -36.958286, "longitude": -73.01084, "bearing": 140.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694870204", "vehicle": {"licensePlate": "BBGF22"}}}, {"id": "5328ff28-30ce-4ead-935e-9d068a6eb21c", "vehicle": {"position": {"latitude": -36.714027, "longitude": -72.97772, "bearing": 357.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694874438", "vehicle": {"licensePlate": "ZT1825"}}}, {"id": "99df40c7-94c3-40f5-b3f9-b4a33c1b08ac", "vehicle": {"position": {"latitude": -36.795097, "longitude": -73.107, "bearing": 82.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694882342", "vehicle": {"licensePlate": "FDHJ53"}}}, {"id": "0f3091bf-1183-41e1-a14e-708003791ef9", "vehicle": {"position": {"latitude": -36.951523, "longitude": -73.01405, "bearing": 164.0, "odometer": 0.0, "speed": 8.333333}, "timestamp": "1694732304", "vehicle": {"licensePlate": "DJJH69"}}}, {"id": "d74d5652-2982-4591-b384-06ce66ccc686", "vehicle": {"position": {"latitude": -36.789757, "longitude": -73.07919, "bearing": 208.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694821266", "vehicle": {"licensePlate": "BZLX96"}}}, {"id": "80dc78d7-afbd-44c5-b279-9fac046c1325", "vehicle": {"position": {"latitude": -36.779415, "longitude": -73.09916, "bearing": 139.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694702810", "vehicle": {"licensePlate": "FFTW83"}}}, {"id": "7a90b4bf-0043-42fa-9cd3-d6a52e7690a3", "vehicle": {"position": {"latitude": -36.828827, "longitude": -73.14761, "bearing": 175.0, "odometer": 0.0, "speed": 0.8333333}, "timestamp": "1694888942", "vehicle": {"licensePlate": "RTYX44"}}}, {"id": "3f389a2b-55bd-465e-850e-00bab15c7400", "vehicle": {"position": {"latitude": -36.958347, "longitude": -73.011055, "bearing": 150.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1691072238", "vehicle": {"licensePlate": "BJFK98"}}}, {"id": "c195f90e-5dc8-4be4-8f8a-738fe36d7ab6", "vehicle": {"position": {"latitude": -36.9262, "longitude": -73.03469, "bearing": 174.0, "odometer": 0.0, "speed": 6.111111}, "timestamp": "1694820359", "vehicle": {"licensePlate": "HYCZ54"}}}, {"id": "7d216689-0d42-48b0-a813-ecddb3b580d4", "vehicle": {"position": {"latitude": -36.805325, "longitude": -73.03842, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888607", "vehicle": {"licensePlate": "BSLJ49"}}}, {"id": "853b8dd1-3dbd-4fb5-acb8-b7cb141e412d", "vehicle": {"position": {"latitude": -36.78763, "longitude": -73.10399, "bearing": 84.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694820888", "vehicle": {"licensePlate": "CSYZ74"}}}, {"id": "45c10aeb-ddf2-4ecd-8ba1-50a1c5f33395", "vehicle": {"position": {"latitude": -36.766953, "longitude": -73.11287, "bearing": 244.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694206464", "vehicle": {"licensePlate": "YS1125"}}}, {"id": "2296cd92-d93a-42f5-8b98-30beab92ff30", "vehicle": {"position": {"latitude": -36.60135, "longitude": -72.961105, "bearing": 118.0, "odometer": 0.0, "speed": 4.7222223}, "timestamp": "1694888676", "vehicle": {"licensePlate": "JJJC67"}}}, {"id": "9b1e1bfe-bd87-4c59-a6ed-dc3e0524ad38", "vehicle": {"position": {"latitude": -36.60338, "longitude": -72.96835, "bearing": 14.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888810", "vehicle": {"licensePlate": "CYWK15"}}}, {"id": "1b7854b1-3bfa-41bc-85ef-0a712016fb9f", "vehicle": {"position": {"latitude": -36.82594, "longitude": -73.04293, "bearing": 64.0, "odometer": 0.0, "speed": 15.1}, "timestamp": "1694888911", "vehicle": {"licensePlate": "FXFW83"}}}, {"id": "2f1e0597-e2cf-4d18-b453-21a56ea45ff5", "vehicle": {"position": {"latitude": -36.941223, "longitude": -73.02717, "bearing": 122.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694870764", "vehicle": {"licensePlate": "ZV6191"}}}, {"id": "50c9a640-43ce-49e6-bfed-ec5b8ba893ef", "vehicle": {"position": {"latitude": -36.769432, "longitude": -73.11371, "bearing": 260.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889015", "vehicle": {"licensePlate": "DBPC39"}}}, {"id": "5b5870cb-62e6-43dc-b823-4b79511de6f5", "vehicle": {"position": {"latitude": -36.76941, "longitude": -73.11387, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889000", "vehicle": {"licensePlate": "JTZY38"}}}, {"id": "d04e4219-7556-41a7-aac6-56f1ded81471", "vehicle": {"position": {"latitude": -36.604176, "longitude": -72.96848, "bearing": 292.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694820238", "vehicle": {"licensePlate": "LVLG34"}}}, {"id": "7808d218-3bc3-4adc-aea2-716b4aa9b4ac", "vehicle": {"position": {"latitude": -36.713562, "longitude": -72.9776, "bearing": 266.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888982", "vehicle": {"licensePlate": "DPZY62"}}}, {"id": "2e857e78-5820-4a95-9e21-40eda7f45531", "vehicle": {"position": {"latitude": -36.92825, "longitude": -73.021286, "bearing": 54.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694834508", "vehicle": {"licensePlate": "YG2312"}}}, {"id": "5470aad7-af87-405b-91d4-7c4d2714d2b4", "vehicle": {"position": {"latitude": -36.84264, "longitude": -73.009705, "bearing": 292.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889006", "vehicle": {"licensePlate": "YS3101"}}}, {"id": "33e35ea3-c65c-4b00-9f3b-1122b820c109", "vehicle": {"position": {"latitude": -36.830593, "longitude": -73.12349, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1690659538", "vehicle": {"licensePlate": "YE2192"}}}, {"id": "6f2945dc-7c0c-471a-9afd-49ad5db2f2ef", "vehicle": {"position": {"latitude": -36.715225, "longitude": -72.97685, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1689091006", "vehicle": {"licensePlate": "FHZB99"}}}, {"id": "a7cbc6e4-f479-44e2-9d5e-dd55d700fd1e", "vehicle": {"position": {"latitude": -36.94937, "longitude": -72.93178, "bearing": 308.0, "odometer": 0.0, "speed": 1.6666666}, "timestamp": "1694818748", "vehicle": {"licensePlate": "SSBD60"}}}, {"id": "95402368-8889-45a8-a879-42eec67c32f5", "vehicle": {"position": {"latitude": -36.94629, "longitude": -73.0139, "bearing": 344.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694819120", "vehicle": {"licensePlate": "WW3307"}}}, {"id": "f180b007-40aa-43f4-9aca-057e7c7c35c8", "vehicle": {"position": {"latitude": -36.790794, "longitude": -73.09223, "bearing": 288.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888836", "vehicle": {"licensePlate": "GDBK11"}}}, {"id": "eeef2229-835c-4573-b01c-a05ea73c55e3", "vehicle": {"position": {"latitude": -36.8495, "longitude": -73.14236, "bearing": 121.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694879712", "vehicle": {"licensePlate": "YU1955"}}}, {"id": "67a7edf5-e0e6-4f04-b2ac-ec7c9bf3d581", "vehicle": {"position": {"latitude": -36.824226, "longitude": -73.12997, "bearing": 203.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888565", "vehicle": {"licensePlate": "FXJS51"}}}, {"id": "801b8186-b15b-4ebe-a6d9-ea4ec4b51fc9", "vehicle": {"position": {"latitude": -36.80558, "longitude": -73.03837, "bearing": 230.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694882350", "vehicle": {"licensePlate": "YU8640"}}}, {"id": "95a4c9d5-1c57-4725-888d-0642458ca042", "vehicle": {"position": {"latitude": -36.79425, "longitude": -73.04591, "bearing": 112.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694819424", "vehicle": {"licensePlate": "LPSX78"}}}, {"id": "01ca1d22-2113-4c96-9096-492c03e3ef1d", "vehicle": {"position": {"latitude": -36.949234, "longitude": -73.011505, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694876246", "vehicle": {"licensePlate": "HYCZ20"}}}, {"id": "1d7e9628-bc00-4d9e-8c5b-e83eebff03b0", "vehicle": {"position": {"latitude": -36.71094, "longitude": -72.97391, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694787798", "vehicle": {"licensePlate": "ZR7137"}}}, {"id": "a605b913-9ae4-421b-9dc6-15ad261841a7", "vehicle": {"position": {"latitude": -36.77846, "longitude": -73.0991, "bearing": 61.0, "odometer": 0.0, "speed": 2.2222223}, "timestamp": "1694731299", "vehicle": {"licensePlate": "BFWV72"}}}, {"id": "377ac708-c347-4892-b076-eb54d6fb6a19", "vehicle": {"position": {"latitude": -36.957535, "longitude": -73.01004, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1690948799", "vehicle": {"licensePlate": "YB6655"}}}, {"id": "5c4c6e41-2b37-480b-a857-148ee55a95e2", "vehicle": {"position": {"latitude": -36.833836, "longitude": -73.149155, "bearing": 121.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1692553359", "vehicle": {"licensePlate": "CVTG80"}}}, {"id": "3fdc4a70-0212-4d75-992b-659fbb0aa7dd", "vehicle": {"position": {"latitude": -36.75118, "longitude": -73.00647, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694825524", "vehicle": {"licensePlate": "DCVZ45"}}}, {"id": "f61295ae-ec13-4a81-ac6a-2075e8c2f4d3", "vehicle": {"position": {"latitude": -36.807102, "longitude": -73.02947, "bearing": 96.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694817729", "vehicle": {"licensePlate": "JCCK42"}}}, {"id": "11cdd616-583f-4a45-9a5e-693ce44c0aed", "vehicle": {"position": {"latitude": -37.84301, "longitude": -73.4251, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888506", "vehicle": {"licensePlate": "CJHT88"}}}, {"id": "877dc403-44b6-490b-befd-c3a9c3dda7be", "vehicle": {"position": {"latitude": -36.6038, "longitude": -72.96866, "bearing": 184.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694823782", "vehicle": {"licensePlate": "FYDV15"}}}, {"id": "acf5707a-03d6-43a8-9a54-84c2a35c98ca", "vehicle": {"position": {"latitude": -36.846573, "longitude": -73.14431, "bearing": 191.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694824164", "vehicle": {"licensePlate": "YU1586"}}}, {"id": "44574553-7628-423e-aa87-25cf21eeb2fc", "vehicle": {"position": {"latitude": -36.797173, "longitude": -73.03799, "bearing": 51.0, "odometer": 0.0, "speed": 1.3888888}, "timestamp": "1694811274", "vehicle": {"licensePlate": "BPZW59"}}}, {"id": "3cf0178a-a2ee-498e-9dbe-97b5e10ca4b4", "vehicle": {"position": {"latitude": -36.829327, "longitude": -73.06129, "bearing": 194.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694787930", "vehicle": {"licensePlate": "YE2820"}}}, {"id": "63be7389-bdbd-4cee-9a02-33aff3b1b75e", "vehicle": {"position": {"latitude": -36.85488, "longitude": -73.14383, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694559296", "vehicle": {"licensePlate": "KXWS22"}}}, {"id": "00dc4224-f897-46c1-8279-83a1bbcc5a8e", "vehicle": {"position": {"latitude": -36.76884, "longitude": -73.11322, "bearing": 94.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889018", "vehicle": {"licensePlate": "JGJV29"}}}, {"id": "1e70fb56-ac33-41fb-b02c-8640f78f574c", "vehicle": {"position": {"latitude": -36.779263, "longitude": -73.09923, "bearing": 186.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889004", "vehicle": {"licensePlate": "JGJV35"}}}, {"id": "09f75ca0-58c3-4cd3-ab4c-bfba69d4264b", "vehicle": {"position": {"latitude": -36.973114, "longitude": -72.92674, "bearing": 273.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889010", "vehicle": {"licensePlate": "HBRB50"}}}, {"id": "9f028e3e-773d-4de4-91b4-d1d733af6102", "vehicle": {"position": {"latitude": -36.604248, "longitude": -72.9682, "bearing": 56.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694830678", "vehicle": {"licensePlate": "HRXG55"}}}, {"id": "b7b8b95e-179e-4513-bf70-669547980a0f", "vehicle": {"position": {"latitude": -36.603645, "longitude": -72.96849, "bearing": 56.0, "odometer": 0.0, "speed": 0.8333333}, "timestamp": "1694818382", "vehicle": {"licensePlate": "FXJS39"}}}, {"id": "59b21f62-c803-4a73-a1cb-fdbd88063d08", "vehicle": {"position": {"latitude": -36.80564, "longitude": -73.03822, "bearing": 84.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888880", "vehicle": {"licensePlate": "CKRB11"}}}, {"id": "9e532018-f5bb-441c-a7f8-5ab761b9d218", "vehicle": {"position": {"latitude": -36.691128, "longitude": -73.11417, "bearing": 292.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694655008", "vehicle": {"licensePlate": "CBKD60"}}}, {"id": "14d686da-6791-45f0-be9c-cd7f1157f7d1", "vehicle": {"position": {"latitude": -36.76619, "longitude": -73.1131, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1693675234", "vehicle": {"licensePlate": "ZY4351"}}}, {"id": "eb46d922-dc2b-492c-94f5-ed0349385a30", "vehicle": {"position": {"latitude": -36.603584, "longitude": -72.96854, "bearing": 14.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888802", "vehicle": {"licensePlate": "CXLC99"}}}, {"id": "38906fc4-c0d1-4b20-b841-6cde0dc61961", "vehicle": {"position": {"latitude": -36.799927, "longitude": -73.02728, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694863292", "vehicle": {"licensePlate": "LCTG92"}}}, {"id": "5b8913cf-37ff-4738-9840-ce90d5f4712e", "vehicle": {"position": {"latitude": -36.82414, "longitude": -73.13015, "bearing": 191.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694821436", "vehicle": {"licensePlate": "CYSD90"}}}, {"id": "d051226e-108f-4b16-b500-73d43f7db67f", "vehicle": {"position": {"latitude": -36.74359, "longitude": -73.002144, "bearing": 210.0, "odometer": 0.0, "speed": 12.222222}, "timestamp": "1694888982", "vehicle": {"licensePlate": "YB7528"}}}, {"id": "3c214f86-bcb3-4a5b-b3fe-a4bf6939cb1a", "vehicle": {"position": {"latitude": -36.81924, "longitude": -73.06197, "bearing": 158.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888990", "vehicle": {"licensePlate": "HYYX67"}}}, {"id": "83a07ec1-1d44-4710-bec2-880f6a415240", "vehicle": {"position": {"latitude": -36.71243, "longitude": -73.13561, "bearing": 92.0, "odometer": 0.0, "speed": 2.5}, "timestamp": "1694888974", "vehicle": {"licensePlate": "CXSS25"}}}, {"id": "a4cfaabd-45e0-4960-8ae7-1d345a7830e6", "vehicle": {"position": {"latitude": -36.76697, "longitude": -73.112724, "bearing": 236.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694116922", "vehicle": {"licensePlate": "DVYW29"}}}, {"id": "12b3de53-0541-4e1c-a44f-1d553b35fe6e", "vehicle": {"position": {"latitude": -36.95799, "longitude": -73.0107, "bearing": 335.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888325", "vehicle": {"licensePlate": "YJ3033"}}}, {"id": "9dc4d098-26ad-41de-ad33-f7e1145cd64e", "vehicle": {"position": {"latitude": -36.766766, "longitude": -73.11323, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888850", "vehicle": {"licensePlate": "CGXR99"}}}, {"id": "f248089d-7972-45ff-96d1-42f612357606", "vehicle": {"position": {"latitude": -36.82879, "longitude": -73.14746, "bearing": 80.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889008", "vehicle": {"licensePlate": "ZY4652"}}}, {"id": "b36ef04b-f18a-4906-ab10-13a8c268b099", "vehicle": {"position": {"latitude": -36.713894, "longitude": -72.97763, "bearing": 200.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889030", "vehicle": {"licensePlate": "JYBH89"}}}, {"id": "6ad67278-4909-405c-ae43-d4c09d320517", "vehicle": {"position": {"latitude": -36.957985, "longitude": -73.010414, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889032", "vehicle": {"licensePlate": "YV1859"}}}, {"id": "25488f38-5d33-4741-a80f-34506add8d53", "vehicle": {"position": {"latitude": -36.72006, "longitude": -72.97519, "bearing": 45.0, "odometer": 0.0, "speed": 13.333333}, "timestamp": "1694888989", "vehicle": {"licensePlate": "ZJ6367"}}}, {"id": "fb92ae69-0f6a-412f-8dbf-803f5b0c5003", "vehicle": {"position": {"latitude": -36.766823, "longitude": -73.11341, "bearing": 104.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694815032", "vehicle": {"licensePlate": "FSRS64"}}}, {"id": "d719d81b-8405-4bfc-8616-7c58b659a49a", "vehicle": {"position": {"latitude": -36.81746, "longitude": -73.03805, "bearing": 242.0, "odometer": 0.0, "speed": 18.9}, "timestamp": "1694888921", "vehicle": {"licensePlate": "FCBR41"}}}, {"id": "8b1fde3d-e05e-4634-9253-d6791d5c4c58", "vehicle": {"position": {"latitude": -36.76682, "longitude": -73.11353, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694784110", "vehicle": {"licensePlate": "WG9925"}}}, {"id": "75a8726e-d1bc-4346-b47f-6880835e85c7", "vehicle": {"position": {"latitude": -36.94095, "longitude": -73.02718, "bearing": 322.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694876230", "vehicle": {"licensePlate": "RRDZ68"}}}, {"id": "2511168d-1f58-4e3e-a88f-16f20ea65668", "vehicle": {"position": {"latitude": -36.94177, "longitude": -73.018234, "bearing": 161.0, "odometer": 0.0, "speed": 10.833333}, "timestamp": "1694889031", "vehicle": {"licensePlate": "HYCZ53"}}}, {"id": "0234c1bf-7d84-47c9-8992-1cc3a14a27c3", "vehicle": {"position": {"latitude": -36.95446, "longitude": -73.02074, "bearing": 232.0, "odometer": 0.0, "speed": 9.166667}, "timestamp": "1694888972", "vehicle": {"licensePlate": "XU2925"}}}, {"id": "88e1f408-b55a-4c15-8bff-4bd7dcbe2ece", "vehicle": {"position": {"latitude": -36.79433, "longitude": -73.04583, "bearing": 188.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888838", "vehicle": {"licensePlate": "LBKD81"}}}, {"id": "25c5a4da-3380-4537-87a4-04506bb2ad11", "vehicle": {"position": {"latitude": -36.888683, "longitude": -73.13301, "bearing": 168.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694821950", "vehicle": {"licensePlate": "FXRL70"}}}, {"id": "7ac65e0c-8cd1-49a8-a776-38afdc5be633", "vehicle": {"position": {"latitude": -37.0008, "longitude": -73.16135, "bearing": 331.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888965", "vehicle": {"licensePlate": "YJ2354"}}}, {"id": "1ef95687-b8ed-47e7-86a9-19f1ae674711", "vehicle": {"position": {"latitude": -36.805626, "longitude": -73.038345, "bearing": 332.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889016", "vehicle": {"licensePlate": "HXTT64"}}}, {"id": "ae06ac2e-eaf8-4525-967f-d3ec06778f6a", "vehicle": {"position": {"latitude": -36.889, "longitude": -73.14062, "bearing": 187.0, "odometer": 0.0, "speed": 2.777778}, "timestamp": "1694888980", "vehicle": {"licensePlate": "XF4441"}}}, {"id": "ee8483c8-6827-4e53-9cef-44a2dab18f00", "vehicle": {"position": {"latitude": -36.7148, "longitude": -72.97808, "bearing": 128.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889034", "vehicle": {"licensePlate": "DPGK80"}}}, {"id": "ccdeb069-8d55-4096-8e5e-a487134a7af2", "vehicle": {"position": {"latitude": -36.79825, "longitude": -73.08266, "bearing": 348.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694815710", "vehicle": {"licensePlate": "DYCS26"}}}, {"id": "8fabe4da-31ba-4d10-b97a-6a50437fbfcc", "vehicle": {"position": {"latitude": -36.71377, "longitude": -72.977615, "bearing": 307.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889020", "vehicle": {"licensePlate": "BBFV11"}}}, {"id": "03e8c155-40f7-4fc9-8816-ddab65f12bf3", "vehicle": {"position": {"latitude": -36.824818, "longitude": -73.04332, "bearing": 241.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888908", "vehicle": {"licensePlate": "KFTW20"}}}, {"id": "8ecc1a17-0517-4c4d-b92f-10997e222105", "vehicle": {"position": {"latitude": -36.718502, "longitude": -73.13025, "bearing": 40.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888980", "vehicle": {"licensePlate": "JZZJ60"}}}, {"id": "06a6abac-5c1a-4002-a2be-0d344f205006", "vehicle": {"position": {"latitude": -36.794636, "longitude": -73.04583, "bearing": 358.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694816084", "vehicle": {"licensePlate": "BSZK41"}}}, {"id": "2943f578-421f-415e-98bd-3ad0114d17cd", "vehicle": {"position": {"latitude": -36.95366, "longitude": -73.022255, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694192188", "vehicle": {"licensePlate": "ZT3855"}}}, {"id": "93baef9b-aaa8-4546-b6af-f188b1428c9c", "vehicle": {"position": {"latitude": -36.843548, "longitude": -73.09428, "bearing": 59.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888889", "vehicle": {"licensePlate": "YE2813"}}}, {"id": "8c0827d9-1ab2-417e-b81f-bb4bf0cadf59", "vehicle": {"position": {"latitude": -36.94105, "longitude": -73.02722, "bearing": 30.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889008", "vehicle": {"licensePlate": "RTXX13"}}}, {"id": "248f7681-0c10-4284-8ff2-793fa67c081b", "vehicle": {"position": {"latitude": -36.794025, "longitude": -73.04541, "bearing": 188.0, "odometer": 0.0, "speed": 6.9444447}, "timestamp": "1694811903", "vehicle": {"licensePlate": "XA3080"}}}, {"id": "0ff5f335-ae68-4adc-97f9-82c6b759a33e", "vehicle": {"position": {"latitude": -36.949368, "longitude": -72.93189, "bearing": 285.0, "odometer": 0.0, "speed": 0.2777778}, "timestamp": "1694816928", "vehicle": {"licensePlate": "HJYB80"}}}, {"id": "f34d0bba-4ef0-43a9-bf16-5efe35f1575c", "vehicle": {"position": {"latitude": -36.829056, "longitude": -73.14851, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889013", "vehicle": {"licensePlate": "LJKK23"}}}, {"id": "f7e24071-ab53-4560-a937-ce1042b932ca", "vehicle": {"position": {"latitude": -36.94925, "longitude": -73.01952, "bearing": 244.0, "odometer": 0.0, "speed": 6.388889}, "timestamp": "1694888986", "vehicle": {"licensePlate": "RYHY66"}}}, {"id": "77829db0-a940-406a-972e-5602069e1361", "vehicle": {"position": {"latitude": -36.83811, "longitude": -73.11516, "bearing": 344.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694121016", "vehicle": {"licensePlate": "FYBB80"}}}, {"id": "36603737-738d-4610-a70f-1faba96db50d", "vehicle": {"position": {"latitude": -36.953457, "longitude": -73.02246, "bearing": 264.0, "odometer": 0.0, "speed": 0.2777778}, "timestamp": "1694888980", "vehicle": {"licensePlate": "LJKK86"}}}, {"id": "0364c522-ecce-40cb-ba92-77692f3170a9", "vehicle": {"position": {"latitude": -36.714066, "longitude": -72.977806, "bearing": 343.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694818154", "vehicle": {"licensePlate": "HTYJ27"}}}, {"id": "0e3dab73-3811-4cf4-b2cf-17cfd63108b9", "vehicle": {"position": {"latitude": -36.941113, "longitude": -73.02719, "bearing": 196.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694808782", "vehicle": {"licensePlate": "DCRD27"}}}, {"id": "f18c2aeb-850b-4a98-b2a0-d3cb3fea88a7", "vehicle": {"position": {"latitude": -36.80678, "longitude": -73.05129, "bearing": 336.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889010", "vehicle": {"licensePlate": "DHSP89"}}}, {"id": "03e06f2e-4ae5-45d1-9b31-bf3a5a226746", "vehicle": {"position": {"latitude": -36.715477, "longitude": -72.97835, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889022", "vehicle": {"licensePlate": "KXCT29"}}}, {"id": "e09d2f1a-6a10-4312-86e3-41a1b5ba012a", "vehicle": {"position": {"latitude": -36.71426, "longitude": -72.9779, "bearing": 44.0, "odometer": 0.0, "speed": 3.6111112}, "timestamp": "1694802565", "vehicle": {"licensePlate": "CZBY42"}}}, {"id": "15972446-57f8-4846-8dc3-99285deee61d", "vehicle": {"position": {"latitude": -36.711147, "longitude": -72.97441, "bearing": 161.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888701", "vehicle": {"licensePlate": "BZFV64"}}}, {"id": "cfef994b-58bc-4052-b29f-3d8d3c8506dd", "vehicle": {"position": {"latitude": -36.802887, "longitude": -73.0442, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694763188", "vehicle": {"licensePlate": "BHWD20"}}}, {"id": "c2d2fd12-703a-460a-a8ed-5366714af4fd", "vehicle": {"position": {"latitude": -36.78983, "longitude": -73.079025, "bearing": 116.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694719488", "vehicle": {"licensePlate": "GVXX89"}}}, {"id": "f04ef51d-95a6-4db0-be3f-0eb5156cae1e", "vehicle": {"position": {"latitude": -36.735855, "longitude": -73.10269, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694817950", "vehicle": {"licensePlate": "HZRP11"}}}, {"id": "f3446974-df0f-4265-b038-8ca49811e9ed", "vehicle": {"position": {"latitude": -36.598965, "longitude": -72.95199, "bearing": 298.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694823558", "vehicle": {"licensePlate": "LVLG33"}}}, {"id": "012cc0fa-7040-4f0f-a5fb-aad6f8e240c3", "vehicle": {"position": {"latitude": -36.804077, "longitude": -73.045135, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694876898", "vehicle": {"licensePlate": "CGCR16"}}}, {"id": "865c2107-5b6a-4abc-aae7-5a1edf64b4b8", "vehicle": {"position": {"latitude": -36.824665, "longitude": -73.1301, "bearing": 44.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694814530", "vehicle": {"licensePlate": "HPRP54"}}}, {"id": "21229d97-f9ec-415c-a0da-ace03c809037", "vehicle": {"position": {"latitude": -36.84307, "longitude": -73.009735, "bearing": 38.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694872880", "vehicle": {"licensePlate": "HYYX15"}}}, {"id": "36c641bf-4066-41de-af08-dbed5cf9ca4c", "vehicle": {"position": {"latitude": -36.94118, "longitude": -73.027016, "bearing": 350.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694845696", "vehicle": {"licensePlate": "FCBR88"}}}, {"id": "474f1f8b-7606-4b5c-987c-0fa648c21bff", "vehicle": {"position": {"latitude": -36.71401, "longitude": -72.977715, "bearing": 13.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694800354", "vehicle": {"licensePlate": "FXRZ53"}}}, {"id": "422827b3-d577-41a9-aa77-1f242aa52209", "vehicle": {"position": {"latitude": -36.79982, "longitude": -73.050514, "bearing": 9.0, "odometer": 0.0, "speed": 1.6666666}, "timestamp": "1694812896", "vehicle": {"licensePlate": "CLYS37"}}}, {"id": "12196ee8-0535-4e43-8254-b7674f3ff32c", "vehicle": {"position": {"latitude": -36.849754, "longitude": -73.14239, "bearing": 34.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694802459", "vehicle": {"licensePlate": "FVZD15"}}}, {"id": "2932f601-793c-4f1a-885b-5c06dbf2e972", "vehicle": {"position": {"latitude": -36.937378, "longitude": -73.01621, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694814476", "vehicle": {"licensePlate": "FXRL46"}}}, {"id": "03039d96-6ae4-4448-aedf-b523161c2b84", "vehicle": {"position": {"latitude": -36.832478, "longitude": -73.00386, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694437557", "vehicle": {"licensePlate": "CXBG41"}}}, {"id": "27e3a903-629e-4c6b-92c7-99bfbc5d3c40", "vehicle": {"position": {"latitude": -36.941128, "longitude": -73.027176, "bearing": 2.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889010", "vehicle": {"licensePlate": "HJRY28"}}}, {"id": "292714c7-d898-47b6-85b6-f1be33bdae23", "vehicle": {"position": {"latitude": -36.769054, "longitude": -73.11351, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694808332", "vehicle": {"licensePlate": "FXRZ73"}}}, {"id": "d49e38cf-7fdc-45ca-8a2d-7919498d3a2b", "vehicle": {"position": {"latitude": -36.76869, "longitude": -73.113396, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694862364", "vehicle": {"licensePlate": "BBJZ67"}}}, {"id": "cb8740d8-d738-4a37-8788-24f2b02e8eea", "vehicle": {"position": {"latitude": -36.77765, "longitude": -73.11256, "bearing": 354.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694799138", "vehicle": {"licensePlate": "ZR7462"}}}, {"id": "798e3db1-19a0-4bbe-8a56-7abe6ff1ef37", "vehicle": {"position": {"latitude": -36.820717, "longitude": -73.00623, "bearing": 206.0, "odometer": 0.0, "speed": 0.2777778}, "timestamp": "1693863856", "vehicle": {"licensePlate": "LVLG35"}}}, {"id": "1c9360bc-1e29-4f96-ae8c-e416f6f43608", "vehicle": {"position": {"latitude": -36.953663, "longitude": -73.02228, "bearing": 258.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694821870", "vehicle": {"licensePlate": "HKCZ76"}}}, {"id": "238887a5-17da-4947-9ca9-67117c1ff8d3", "vehicle": {"position": {"latitude": -36.71414, "longitude": -72.9778, "bearing": 239.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694795036", "vehicle": {"licensePlate": "LPDK12"}}}, {"id": "50f7a62b-819f-407e-afa8-4e8f656a0d75", "vehicle": {"position": {"latitude": -36.800037, "longitude": -73.05043, "bearing": 296.0, "odometer": 0.0, "speed": 1.6666666}, "timestamp": "1694808838", "vehicle": {"licensePlate": "BFRP17"}}}, {"id": "c9c12328-1c43-47e0-92cd-d016717a89ee", "vehicle": {"position": {"latitude": -36.78105, "longitude": -73.091545, "bearing": 249.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694818763", "vehicle": {"licensePlate": "HSTC57"}}}, {"id": "fe542b7d-3979-4713-8f0d-ad6a5fb20c22", "vehicle": {"position": {"latitude": -36.829914, "longitude": -73.0679, "bearing": 318.0, "odometer": 0.0, "speed": 24.3}, "timestamp": "1694817022", "vehicle": {"licensePlate": "YU8095"}}}, {"id": "303d191c-2106-47c1-a5b3-40ef04e6c4ae", "vehicle": {"position": {"latitude": -36.718727, "longitude": -73.12096, "bearing": 138.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694831544", "vehicle": {"licensePlate": "YV2161"}}}, {"id": "534eaabd-a05b-44aa-9051-357a94fd7f2a", "vehicle": {"position": {"latitude": -36.768574, "longitude": -73.11375, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694721720", "vehicle": {"licensePlate": "JGJW97"}}}, {"id": "4efdd9c0-6413-4032-a952-3593d3adf888", "vehicle": {"position": {"latitude": -36.77884, "longitude": -73.09952, "bearing": 12.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694825664", "vehicle": {"licensePlate": "LKCK13"}}}, {"id": "fc48fa3c-9207-4bd2-bffa-cf8b1b18984f", "vehicle": {"position": {"latitude": -36.85722, "longitude": -73.14047, "bearing": 140.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888882", "vehicle": {"licensePlate": "YP2189"}}}, {"id": "00f9c363-31f3-4a60-be53-1833fac54c6e", "vehicle": {"position": {"latitude": -36.8301, "longitude": -73.12333, "bearing": 356.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694877773", "vehicle": {"licensePlate": "YE2440"}}}, {"id": "8902e930-88ed-4ef0-b981-e2f343dc933a", "vehicle": {"position": {"latitude": -36.953594, "longitude": -73.02221, "bearing": 48.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694817690", "vehicle": {"licensePlate": "YT2604"}}}, {"id": "4ac372e2-a0b0-46ec-9f15-fdfe3fca4b2a", "vehicle": {"position": {"latitude": -36.815834, "longitude": -73.07178, "bearing": 14.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694811474", "vehicle": {"licensePlate": "YV3678"}}}, {"id": "0e8a512c-07b3-4d2f-88ce-514a322a6a88", "vehicle": {"position": {"latitude": -36.79514, "longitude": -73.1071, "bearing": 152.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694806012", "vehicle": {"licensePlate": "BLDT29"}}}, {"id": "054b9609-5a9f-4376-881d-8beb2b88750b", "vehicle": {"position": {"latitude": -36.95825, "longitude": -73.011, "bearing": 165.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694814256", "vehicle": {"licensePlate": "KHSW59"}}}, {"id": "b5caabbe-d662-4b17-a4f7-986f4b4aedc0", "vehicle": {"position": {"latitude": -36.79504, "longitude": -73.10468, "bearing": 300.0, "odometer": 0.0, "speed": 2.5}, "timestamp": "1694814088", "vehicle": {"licensePlate": "FXRL37"}}}, {"id": "77fc2049-2a46-429c-bde8-d3605ffc7ded", "vehicle": {"position": {"latitude": -36.849632, "longitude": -73.14256, "bearing": 296.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694806390", "vehicle": {"licensePlate": "YU1981"}}}, {"id": "3ce9fb26-8868-43d0-b022-9cf0c7071aaa", "vehicle": {"position": {"latitude": -36.941025, "longitude": -73.02721, "bearing": 64.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694873770", "vehicle": {"licensePlate": "YA5387"}}}, {"id": "16acbe17-babd-499a-8c09-09d6060b1927", "vehicle": {"position": {"latitude": -36.829014, "longitude": -73.14758, "bearing": 162.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694883908", "vehicle": {"licensePlate": "ZT4240"}}}, {"id": "01c0d732-13e3-4772-b0df-9061c4c37c99", "vehicle": {"position": {"latitude": -36.8496, "longitude": -73.14241, "bearing": 284.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694193324", "vehicle": {"licensePlate": "FSLC63"}}}, {"id": "bbf89a32-bf25-4ea2-b550-f7be2d3b780a", "vehicle": {"position": {"latitude": -36.60421, "longitude": -72.9683, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1693745978", "vehicle": {"licensePlate": "KKPV71"}}}, {"id": "3dc6704e-0a9c-46a7-8927-8d2515f49dbc", "vehicle": {"position": {"latitude": -36.738464, "longitude": -73.12108, "bearing": 208.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694797859", "vehicle": {"licensePlate": "HYPH76"}}}, {"id": "28c3e801-9afb-457e-8802-3813c310f663", "vehicle": {"position": {"latitude": -36.722397, "longitude": -73.14304, "bearing": 48.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888791", "vehicle": {"licensePlate": "CYWK96"}}}, {"id": "451a48ac-5de8-41ef-b228-319c9f444437", "vehicle": {"position": {"latitude": -36.93873, "longitude": -73.018196, "bearing": 80.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694829146", "vehicle": {"licensePlate": "CSYR79"}}}, {"id": "e0174052-4338-4e7a-b640-4dce60764d3a", "vehicle": {"position": {"latitude": -36.829018, "longitude": -73.147766, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694874874", "vehicle": {"licensePlate": "HYYX24"}}}, {"id": "2b3715f8-0921-45d4-ba73-f63b4539db90", "vehicle": {"position": {"latitude": -36.789593, "longitude": -73.0791, "bearing": 18.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694823638", "vehicle": {"licensePlate": "BKVY89"}}}, {"id": "1c98ecad-abe7-4f6d-ac87-f8f83e9d2dd2", "vehicle": {"position": {"latitude": -36.789722, "longitude": -73.078964, "bearing": 292.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888834", "vehicle": {"licensePlate": "FXRL29"}}}, {"id": "0d07b326-1ac8-4831-bc6e-f47241bfdcf7", "vehicle": {"position": {"latitude": -36.779476, "longitude": -73.09903, "bearing": 192.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694820570", "vehicle": {"licensePlate": "FXRR81"}}}, {"id": "2e98cdaf-bd35-4c41-b678-d525523bc1d8", "vehicle": {"position": {"latitude": -36.803574, "longitude": -73.04423, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694811926", "vehicle": {"licensePlate": "YU8293"}}}, {"id": "7ebc980f-7ac5-4a3a-ab36-5ce086147361", "vehicle": {"position": {"latitude": -36.83002, "longitude": -73.06099, "bearing": 43.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694885784", "vehicle": {"licensePlate": "WF1304"}}}, {"id": "680d9b20-c172-41ee-9095-990b53c08452", "vehicle": {"position": {"latitude": -36.80554, "longitude": -73.03835, "bearing": 59.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888774", "vehicle": {"licensePlate": "ZV6223"}}}, {"id": "ed04ed1f-b6ad-4a5c-9f30-541ec1e85254", "vehicle": {"position": {"latitude": -36.71109, "longitude": -72.97464, "bearing": 262.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694887803", "vehicle": {"licensePlate": "DRFP52"}}}, {"id": "0f7348bf-aa66-4700-beef-fbc79ac57a3a", "vehicle": {"position": {"latitude": -36.830738, "longitude": -73.12365, "bearing": 81.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1693934635", "vehicle": {"licensePlate": "CTRG85"}}}, {"id": "6bcfaa68-05ce-48f5-ace1-00731bbd4e6e", "vehicle": {"position": {"latitude": -36.78966, "longitude": -73.07923, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694875394", "vehicle": {"licensePlate": "FXRL38"}}}, {"id": "4bb73092-8079-4231-93aa-b7c2b96d09a0", "vehicle": {"position": {"latitude": -36.95798, "longitude": -73.01085, "bearing": 306.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888730", "vehicle": {"licensePlate": "ZJ6739"}}}, {"id": "2b21abb6-f00b-4235-95de-7a08872dba6f", "vehicle": {"position": {"latitude": -36.768757, "longitude": -73.11349, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694729780", "vehicle": {"licensePlate": "WE9164"}}}, {"id": "9535b101-5686-4c6f-a31b-a7b1f48504f5", "vehicle": {"position": {"latitude": -36.806953, "longitude": -73.05161, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694876148", "vehicle": {"licensePlate": "DWVV72"}}}, {"id": "035172da-dba9-4623-8429-f580202d53d4", "vehicle": {"position": {"latitude": -36.862247, "longitude": -73.14175, "bearing": 88.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694807036", "vehicle": {"licensePlate": "XV1767"}}}, {"id": "081d55e3-d6ae-47c4-bbb1-fd857e277f1b", "vehicle": {"position": {"latitude": -36.94098, "longitude": -73.02721, "bearing": 312.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694803622", "vehicle": {"licensePlate": "CSYZ79"}}}, {"id": "6a0018a7-60a6-468b-9129-2e31738e68c1", "vehicle": {"position": {"latitude": -36.778038, "longitude": -73.09921, "bearing": 20.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1693577314", "vehicle": {"licensePlate": "FXRL45"}}}, {"id": "5d8f25fa-288d-4ad3-859a-dcf2d6a6fe81", "vehicle": {"position": {"latitude": -36.825397, "longitude": -73.143906, "bearing": 110.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888711", "vehicle": {"licensePlate": "HPVS38"}}}, {"id": "59aacc30-67f9-42de-9a04-234f54236a9c", "vehicle": {"position": {"latitude": -36.971516, "longitude": -72.93278, "bearing": 336.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694812558", "vehicle": {"licensePlate": "ZY5134"}}}, {"id": "d8501c44-7b69-44ec-88a1-22f1a51f5b4a", "vehicle": {"position": {"latitude": -36.72892, "longitude": -73.1174, "bearing": 16.0, "odometer": 0.0, "speed": 11.388889}, "timestamp": "1694889038", "vehicle": {"licensePlate": "XF4443"}}}, {"id": "577b71b9-daf1-45aa-89d6-d95bfcb47682", "vehicle": {"position": {"latitude": -36.796227, "longitude": -73.08239, "bearing": 66.0, "odometer": 0.0, "speed": 3.3333333}, "timestamp": "1694888972", "vehicle": {"licensePlate": "HYYX95"}}}, {"id": "1720bf95-29ee-4186-bc23-c19b7a0323d7", "vehicle": {"position": {"latitude": -36.77848, "longitude": -73.09958, "bearing": 272.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694838694", "vehicle": {"licensePlate": "CDTJ66"}}}, {"id": "d227341b-b220-4e40-8d44-640837ee6ee1", "vehicle": {"position": {"latitude": -36.828953, "longitude": -73.14816, "bearing": 150.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694639638", "vehicle": {"licensePlate": "WR7738"}}}, {"id": "8c128846-d6d4-4a5a-8291-5448239477d6", "vehicle": {"position": {"latitude": -36.78471, "longitude": -73.105286, "bearing": 221.0, "odometer": 0.0, "speed": 5.8333335}, "timestamp": "1694874947", "vehicle": {"licensePlate": "RBTW74"}}}, {"id": "dcadc6a0-a206-4994-a245-598c92a57897", "vehicle": {"position": {"latitude": -36.807137, "longitude": -73.0293, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694813094", "vehicle": {"licensePlate": "JPRX77"}}}, {"id": "e9f1c2d1-bda6-4733-9160-e000c4861b29", "vehicle": {"position": {"latitude": -36.860104, "longitude": -73.14513, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694875708", "vehicle": {"licensePlate": "XW2187"}}}, {"id": "5935e7c2-d41f-46fb-8b90-9b009198a738", "vehicle": {"position": {"latitude": -36.780884, "longitude": -73.11254, "bearing": 4.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694884732", "vehicle": {"licensePlate": "HHKP76"}}}, {"id": "eb27e864-859a-4c3c-acad-afc345ebbd0d", "vehicle": {"position": {"latitude": -36.805508, "longitude": -73.03856, "bearing": 85.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694805568", "vehicle": {"licensePlate": "FXZX44"}}}, {"id": "a171d374-f635-4e8b-acb0-2e4e3903b873", "vehicle": {"position": {"latitude": -36.766838, "longitude": -73.11336, "bearing": 330.0, "odometer": 0.0, "speed": 0.2777778}, "timestamp": "1694861488", "vehicle": {"licensePlate": "YR1889"}}}, {"id": "70f484e1-7917-45ab-bd09-e967f9f319fb", "vehicle": {"position": {"latitude": -36.825596, "longitude": -73.057785, "bearing": 242.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694029375", "vehicle": {"licensePlate": "RBKY78"}}}, {"id": "18d2c88b-73c2-4414-9fa2-fdfb5462f618", "vehicle": {"position": {"latitude": -36.7975, "longitude": -73.05094, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888980", "vehicle": {"licensePlate": "HYCZ73"}}}, {"id": "4c43cbd3-1028-49c6-917f-e28b3a2c6126", "vehicle": {"position": {"latitude": -36.779438, "longitude": -73.098915, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694876340", "vehicle": {"licensePlate": "CTRY45"}}}, {"id": "c8c6c228-94ff-49f0-a933-a9438600b9a8", "vehicle": {"position": {"latitude": -36.77143, "longitude": -73.08496, "bearing": 90.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889010", "vehicle": {"licensePlate": "FXRZ39"}}}, {"id": "5e91bfce-d9a1-4442-bcf4-d85cb94f2822", "vehicle": {"position": {"latitude": -36.77883, "longitude": -73.09956, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694801458", "vehicle": {"licensePlate": "WK3617"}}}, {"id": "1f061ad3-4140-49ab-adcd-547897688326", "vehicle": {"position": {"latitude": -36.795086, "longitude": -73.10709, "bearing": 104.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888528", "vehicle": {"licensePlate": "YE3019"}}}, {"id": "4d831fe8-0c3c-47ea-a5ad-ca0976b67b09", "vehicle": {"position": {"latitude": -36.830494, "longitude": -73.123856, "bearing": 208.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889015", "vehicle": {"licensePlate": "FPHW76"}}}, {"id": "ad0836a6-6570-4fe7-a4b2-59feced933ca", "vehicle": {"position": {"latitude": -36.76695, "longitude": -73.11281, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694698156", "vehicle": {"licensePlate": "FXZX33"}}}, {"id": "d751bb71-5818-47ef-a4bd-bf350993dddb", "vehicle": {"position": {"latitude": -36.71094, "longitude": -72.97408, "bearing": 75.0, "odometer": 0.0, "speed": 1.1111112}, "timestamp": "1694889035", "vehicle": {"licensePlate": "DJGD75"}}}, {"id": "1e8456ac-5bcd-46b1-8337-16be5898087c", "vehicle": {"position": {"latitude": -36.711132, "longitude": -72.97464, "bearing": 78.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694790863", "vehicle": {"licensePlate": "ZV6537"}}}, {"id": "e8427425-7985-46e6-823e-ef88e70f6ce6", "vehicle": {"position": {"latitude": -36.78469, "longitude": -73.10412, "bearing": 91.0, "odometer": 0.0, "speed": 0.2777778}, "timestamp": "1694888722", "vehicle": {"licensePlate": "DPTC24"}}}, {"id": "19acc275-cd5b-4fb6-aeb0-48de464d84c3", "vehicle": {"position": {"latitude": -36.941326, "longitude": -73.02702, "bearing": 194.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694804026", "vehicle": {"licensePlate": "WK7571"}}}, {"id": "2db8f34e-76ce-4f34-b212-358993f50bfb", "vehicle": {"position": {"latitude": -36.744724, "longitude": -73.10031, "bearing": 242.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888978", "vehicle": {"licensePlate": "BHYR93"}}}, {"id": "50b5fbab-9bec-40dc-bdc9-48151ad1f866", "vehicle": {"position": {"latitude": -36.824074, "longitude": -73.13022, "bearing": 30.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694886556", "vehicle": {"licensePlate": "HLBC96"}}}, {"id": "da20b1d6-f3a6-4c0c-abb8-9059459646f6", "vehicle": {"position": {"latitude": -36.766834, "longitude": -73.11357, "bearing": 278.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888976", "vehicle": {"licensePlate": "RKKW55"}}}, {"id": "bd9fcb8d-1952-4cce-a41a-e62af7fb23f4", "vehicle": {"position": {"latitude": -36.953636, "longitude": -73.022354, "bearing": 268.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694812950", "vehicle": {"licensePlate": "XZ9717"}}}, {"id": "a7aebe38-4d13-4a67-a9e9-258969ba1527", "vehicle": {"position": {"latitude": -36.82601, "longitude": -73.057686, "bearing": 235.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694639765", "vehicle": {"licensePlate": "YE2443"}}}, {"id": "5aac42e4-682d-437a-a606-9f774fa5d143", "vehicle": {"position": {"latitude": -36.82727, "longitude": -73.139175, "bearing": 332.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888836", "vehicle": {"licensePlate": "LBWD97"}}}, {"id": "98925789-e768-4e2b-8d30-b8a1349f0c03", "vehicle": {"position": {"latitude": -36.7695, "longitude": -73.11372, "bearing": 208.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889002", "vehicle": {"licensePlate": "ZY5136"}}}, {"id": "12d63c4e-1170-435d-bbdf-8e817543ce23", "vehicle": {"position": {"latitude": -36.817734, "longitude": -73.03834, "bearing": 61.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888923", "vehicle": {"licensePlate": "YE1783"}}}, {"id": "b50f5c3e-5f06-49af-9bfd-a28e233d6eca", "vehicle": {"position": {"latitude": -36.71696, "longitude": -72.97221, "bearing": 250.0, "odometer": 0.0, "speed": 1.6666666}, "timestamp": "1694888388", "vehicle": {"licensePlate": "DCHP85"}}}, {"id": "d5240286-12f5-424a-9df7-69fcff0132f5", "vehicle": {"position": {"latitude": -36.79448, "longitude": -73.04558, "bearing": 174.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888842", "vehicle": {"licensePlate": "KHXX65"}}}, {"id": "d2f016a2-0988-4af3-a928-bdc87cdde38b", "vehicle": {"position": {"latitude": -36.95801, "longitude": -73.0105, "bearing": 342.0, "odometer": 0.0, "speed": 1.6666666}, "timestamp": "1694888457", "vehicle": {"licensePlate": "DRFP47"}}}, {"id": "ac329f5d-62fa-4acc-8399-438100457fb2", "vehicle": {"position": {"latitude": -36.710934, "longitude": -72.97419, "bearing": 72.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888942", "vehicle": {"licensePlate": "DBLS50"}}}, {"id": "181fc332-fa7f-4c0d-b2ca-600386740501", "vehicle": {"position": {"latitude": -36.82508, "longitude": -73.13318, "bearing": 317.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888852", "vehicle": {"licensePlate": "KHSW70"}}}, {"id": "ba1d487f-c65d-4502-a4ca-e4c0d25e4bb5", "vehicle": {"position": {"latitude": -36.814205, "longitude": -73.07361, "bearing": 42.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694826412", "vehicle": {"licensePlate": "FYDV28"}}}, {"id": "57ab6cea-1252-48cc-b1f9-1dc66f02abf7", "vehicle": {"position": {"latitude": -36.719124, "longitude": -73.12091, "bearing": 268.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694884720", "vehicle": {"licensePlate": "XW2188"}}}, {"id": "01a561da-d865-4282-a458-30156814a4e5", "vehicle": {"position": {"latitude": -36.940815, "longitude": -73.027245, "bearing": 48.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694811998", "vehicle": {"licensePlate": "BBPB65"}}}, {"id": "4a931a44-85e5-4781-87b4-3b9b028aefad", "vehicle": {"position": {"latitude": -36.61944, "longitude": -72.87657, "bearing": 260.0, "odometer": 0.0, "speed": 14.722222}, "timestamp": "1694888792", "vehicle": {"licensePlate": "GWZC90"}}}, {"id": "14dc1b71-32cc-4ace-870c-e85637ff79e9", "vehicle": {"position": {"latitude": -36.79469, "longitude": -73.04589, "bearing": 3.0, "odometer": 0.0, "speed": 1.6666666}, "timestamp": "1694866835", "vehicle": {"licensePlate": "DYSZ94"}}}, {"id": "b114c23e-82a1-43df-933d-e8c2456e60c7", "vehicle": {"position": {"latitude": -36.61689, "longitude": -72.91994, "bearing": 70.0, "odometer": 0.0, "speed": 13.333333}, "timestamp": "1694888522", "vehicle": {"licensePlate": "JXFY30"}}}, {"id": "fea39816-1e49-4c29-9509-bec387ff0589", "vehicle": {"position": {"latitude": -36.794712, "longitude": -73.04622, "bearing": 331.0, "odometer": 0.0, "speed": 1.6666666}, "timestamp": "1694821856", "vehicle": {"licensePlate": "FXRR36"}}}, {"id": "3f0e3c57-b4ff-4162-84a8-8fd9babc6411", "vehicle": {"position": {"latitude": -36.936623, "longitude": -73.020546, "bearing": 161.0, "odometer": 0.0, "speed": 13.611111}, "timestamp": "1694889039", "vehicle": {"licensePlate": "FVDC88"}}}, {"id": "81f685b9-8cd4-439c-bacb-1e46ad316e6c", "vehicle": {"position": {"latitude": -36.81912, "longitude": -73.06194, "bearing": 322.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888906", "vehicle": {"licensePlate": "HYHR42"}}}, {"id": "5b0f4ed7-adf1-4fc6-9128-09e52a42fe02", "vehicle": {"position": {"latitude": -36.794712, "longitude": -73.046, "bearing": 22.0, "odometer": 0.0, "speed": 3.3333333}, "timestamp": "1694863440", "vehicle": {"licensePlate": "CXPR39"}}}, {"id": "c27bf4e2-0b8d-4fb0-992d-b145e37df871", "vehicle": {"position": {"latitude": -36.76679, "longitude": -73.11366, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1693527286", "vehicle": {"licensePlate": "WV1925"}}}, {"id": "943fc7b1-7c32-4d0a-ac09-b1532aa9e8d1", "vehicle": {"position": {"latitude": -36.829716, "longitude": -73.060486, "bearing": 340.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694823159", "vehicle": {"licensePlate": "ZL3558"}}}, {"id": "c92845f0-b353-4a25-a9e9-40c3ff04f7c7", "vehicle": {"position": {"latitude": -36.794636, "longitude": -73.04604, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694816619", "vehicle": {"licensePlate": "FPJK12"}}}, {"id": "b040cf9d-fb97-435a-bed6-aa146dca297f", "vehicle": {"position": {"latitude": -36.73967, "longitude": -73.09494, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694638834", "vehicle": {"licensePlate": "XC3923"}}}, {"id": "19727c65-818b-487d-b308-a1cafda30e0c", "vehicle": {"position": {"latitude": -36.77885, "longitude": -73.09961, "bearing": 282.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888760", "vehicle": {"licensePlate": "KVZH51"}}}, {"id": "9a3a1e5f-0799-408d-8735-6a85ffde9dab", "vehicle": {"position": {"latitude": -36.74893, "longitude": -72.999275, "bearing": 316.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694815594", "vehicle": {"licensePlate": "CFTD78"}}}, {"id": "d54ea130-650b-448f-a171-0135a283a21f", "vehicle": {"position": {"latitude": -36.79641, "longitude": -73.03116, "bearing": 332.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694816968", "vehicle": {"licensePlate": "YG6214"}}}, {"id": "b9546a50-0a88-455e-a46c-6194c9fc52de", "vehicle": {"position": {"latitude": -36.975163, "longitude": -72.93207, "bearing": 58.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888974", "vehicle": {"licensePlate": "FXRY44"}}}, {"id": "cda0f620-56e5-482f-9810-19073f349d85", "vehicle": {"position": {"latitude": -36.84623, "longitude": -73.09938, "bearing": 268.0, "odometer": 0.0, "speed": 12.4}, "timestamp": "1694888950", "vehicle": {"licensePlate": "HYCZ18"}}}, {"id": "8dcde36e-8316-40ff-9668-0ffb3ff755d0", "vehicle": {"position": {"latitude": -36.714306, "longitude": -73.1391, "bearing": 262.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889008", "vehicle": {"licensePlate": "KPRK17"}}}, {"id": "805a75b2-2c43-41e4-9e85-06ec66aeec17", "vehicle": {"position": {"latitude": -36.94069, "longitude": -73.0187, "bearing": 340.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694438757", "vehicle": {"licensePlate": "FYDV91"}}}, {"id": "2890aa19-07e0-4eb3-9354-3d55c5e6229e", "vehicle": {"position": {"latitude": -36.78147, "longitude": -73.10423, "bearing": 134.0, "odometer": 0.0, "speed": 4.1666665}, "timestamp": "1694888984", "vehicle": {"licensePlate": "FBLG82"}}}, {"id": "23d53fbe-e2b6-43b9-861a-602d62f88953", "vehicle": {"position": {"latitude": -36.76694, "longitude": -73.11276, "bearing": 58.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888980", "vehicle": {"licensePlate": "SGYW74"}}}, {"id": "58e78ea8-8127-4b35-a3da-d09f5a6e35a1", "vehicle": {"position": {"latitude": -36.83067, "longitude": -73.12361, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694812860", "vehicle": {"licensePlate": "ZT3768"}}}, {"id": "64a86e0f-a56f-4723-9e3b-0bbb29c732b7", "vehicle": {"position": {"latitude": -36.715973, "longitude": -73.144, "bearing": 122.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889029", "vehicle": {"licensePlate": "JVXY88"}}}, {"id": "328d7c9d-0555-450a-94c4-ef7151fddbde", "vehicle": {"position": {"latitude": -36.843056, "longitude": -73.00968, "bearing": 86.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888864", "vehicle": {"licensePlate": "JSGK92"}}}, {"id": "cf2275d5-fe8d-4a6f-9711-f515ab110ea2", "vehicle": {"position": {"latitude": -36.957947, "longitude": -73.01062, "bearing": 344.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888628", "vehicle": {"licensePlate": "CTKY35"}}}, {"id": "b5fe92e0-dce2-431b-97e2-11cbd959f0c6", "vehicle": {"position": {"latitude": -36.940598, "longitude": -73.02457, "bearing": 162.0, "odometer": 0.0, "speed": 6.6666665}, "timestamp": "1694889000", "vehicle": {"licensePlate": "DRSD23"}}}, {"id": "20e6a69e-2d10-4781-9c67-55423626c156", "vehicle": {"position": {"latitude": -36.713295, "longitude": -72.97758, "bearing": 205.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889030", "vehicle": {"licensePlate": "CYRT91"}}}, {"id": "7ffbb23c-cfa3-4485-b36d-f10fa6981f8b", "vehicle": {"position": {"latitude": -36.954044, "longitude": -73.02188, "bearing": 150.0, "odometer": 0.0, "speed": 2.2222223}, "timestamp": "1694876980", "vehicle": {"licensePlate": "XY7393"}}}, {"id": "99261b3e-4b0d-40ec-8f8e-1b85b0159e78", "vehicle": {"position": {"latitude": -36.828846, "longitude": -73.14771, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889016", "vehicle": {"licensePlate": "MY5524"}}}, {"id": "f591d695-cfa7-491c-8b26-8fb29994fa2a", "vehicle": {"position": {"latitude": -36.805496, "longitude": -73.038475, "bearing": 139.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694799646", "vehicle": {"licensePlate": "HJPY82"}}}, {"id": "b1e17a54-f9ec-4702-93f7-c19da1783ab7", "vehicle": {"position": {"latitude": -36.828976, "longitude": -73.14805, "bearing": 64.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888666", "vehicle": {"licensePlate": "GWZC86"}}}, {"id": "17c28f94-9a17-4d56-88bf-66a2fd34f602", "vehicle": {"position": {"latitude": -36.853283, "longitude": -73.14922, "bearing": 356.0, "odometer": 0.0, "speed": 9.722222}, "timestamp": "1694888984", "vehicle": {"licensePlate": "FXRL53"}}}, {"id": "0a63e1aa-0da8-495b-afed-807e9ff80580", "vehicle": {"position": {"latitude": -36.80714, "longitude": -73.02929, "bearing": 121.0, "odometer": 0.0, "speed": 1.1111112}, "timestamp": "1694825161", "vehicle": {"licensePlate": "JPRX94"}}}, {"id": "40eb583b-d89d-4a2c-878b-6512de5efbb4", "vehicle": {"position": {"latitude": -36.798786, "longitude": -73.0321, "bearing": 330.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694813604", "vehicle": {"licensePlate": "BFDL71"}}}, {"id": "6e0b632f-801b-47cd-aad4-3ff0daae14a8", "vehicle": {"position": {"latitude": -36.94878, "longitude": -73.01153, "bearing": 12.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694801140", "vehicle": {"licensePlate": "KFJH91"}}}, {"id": "0cc39a7b-5b4a-445d-b04a-6787d58ebda7", "vehicle": {"position": {"latitude": -36.953747, "longitude": -73.02221, "bearing": 316.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889010", "vehicle": {"licensePlate": "YE2821"}}}, {"id": "b10edc15-d621-452a-9500-7c444d539597", "vehicle": {"position": {"latitude": -36.78734, "longitude": -73.112434, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888978", "vehicle": {"licensePlate": "DFJK59"}}}, {"id": "e6a2b64e-95f4-4b6a-a0c0-8bae874917e0", "vehicle": {"position": {"latitude": -36.779438, "longitude": -73.09943, "bearing": 278.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889008", "vehicle": {"licensePlate": "JXFX28"}}}, {"id": "b230b5f1-9445-44fa-bf5c-af1ca88a55ae", "vehicle": {"position": {"latitude": -36.777977, "longitude": -73.08762, "bearing": 264.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694830892", "vehicle": {"licensePlate": "JGJV70"}}}, {"id": "c47a5fbb-4fd3-4678-aa0b-623bd4d6e5c0", "vehicle": {"position": {"latitude": -36.710968, "longitude": -72.97414, "bearing": 344.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888942", "vehicle": {"licensePlate": "BTSS99"}}}, {"id": "906e5ef8-8005-4a8b-82f8-fb2abd2f71ed", "vehicle": {"position": {"latitude": -36.710968, "longitude": -72.974304, "bearing": 265.0, "odometer": 0.0, "speed": 1.3888888}, "timestamp": "1694888904", "vehicle": {"licensePlate": "BWXZ15"}}}, {"id": "6361cbcb-190b-4b52-bad2-130c2c27140e", "vehicle": {"position": {"latitude": -36.789803, "longitude": -73.07909, "bearing": 312.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888976", "vehicle": {"licensePlate": "KGYF43"}}}, {"id": "7ae74349-f991-4fa1-aeab-e8028865750f", "vehicle": {"position": {"latitude": -36.956528, "longitude": -73.01365, "bearing": 342.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889012", "vehicle": {"licensePlate": "DRTS98"}}}, {"id": "a6b2463f-6a9c-493d-96c4-f488117a9bf1", "vehicle": {"position": {"latitude": -36.82499, "longitude": -73.12815, "bearing": 294.0, "odometer": 0.0, "speed": 9.722222}, "timestamp": "1694817653", "vehicle": {"licensePlate": "DWKX27"}}}, {"id": "9373169c-3841-4c5a-a668-f7e7af3eb066", "vehicle": {"position": {"latitude": -36.778645, "longitude": -73.09917, "bearing": 22.0, "odometer": 0.0, "speed": 0.8333333}, "timestamp": "1694864052", "vehicle": {"licensePlate": "JLZB27"}}}, {"id": "52db5cff-8a39-4630-8497-122aebf11d27", "vehicle": {"position": {"latitude": -36.941116, "longitude": -73.02723, "bearing": 242.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694808506", "vehicle": {"licensePlate": "RTRF83"}}}, {"id": "bb9b8656-3264-42d4-94a2-2d9de73bf55f", "vehicle": {"position": {"latitude": -36.778934, "longitude": -73.11237, "bearing": 344.0, "odometer": 0.0, "speed": 3.8888888}, "timestamp": "1694889006", "vehicle": {"licensePlate": "WD9835"}}}, {"id": "9befb5b2-57b8-422d-b0f3-47ef49860978", "vehicle": {"position": {"latitude": -36.714222, "longitude": -72.97793, "bearing": 246.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888984", "vehicle": {"licensePlate": "JRSK24"}}}, {"id": "c3b4e7a2-0f23-460f-8c7a-ef16604c056b", "vehicle": {"position": {"latitude": -36.953693, "longitude": -73.02226, "bearing": 146.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888992", "vehicle": {"licensePlate": "WF2069"}}}, {"id": "0b5de451-9250-4e34-b7c6-c105b934f7e7", "vehicle": {"position": {"latitude": -36.713814, "longitude": -72.97767, "bearing": 1.0, "odometer": 0.0, "speed": 2.5}, "timestamp": "1694888788", "vehicle": {"licensePlate": "HVLT13"}}}, {"id": "1dba47d9-e1c8-4176-b419-a57738525f69", "vehicle": {"position": {"latitude": -36.78983, "longitude": -73.07902, "bearing": 284.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888680", "vehicle": {"licensePlate": "JRHH20"}}}, {"id": "ce2ef144-27ed-45a3-9ced-02aa44bcc5a7", "vehicle": {"position": {"latitude": -36.832348, "longitude": -73.003494, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694801954", "vehicle": {"licensePlate": "WG3479"}}}, {"id": "31481478-6711-4909-b69d-fde78d144bc6", "vehicle": {"position": {"latitude": -36.83446, "longitude": -73.00584, "bearing": 352.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694806422", "vehicle": {"licensePlate": "FXJS31"}}}, {"id": "a68da8fc-4746-4ef9-a874-3f3cab1192f5", "vehicle": {"position": {"latitude": -36.780537, "longitude": -73.08348, "bearing": 90.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694877426", "vehicle": {"licensePlate": "DDXX31"}}}, {"id": "7577c2ff-dce7-43d6-b61f-1e62c5e0d7b9", "vehicle": {"position": {"latitude": -36.78841, "longitude": -73.10051, "bearing": 73.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888983", "vehicle": {"licensePlate": "BGTL84"}}}, {"id": "b890f031-a376-483e-94a9-e129b5f4da9d", "vehicle": {"position": {"latitude": -36.84979, "longitude": -73.14249, "bearing": 307.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888752", "vehicle": {"licensePlate": "WT9898"}}}, {"id": "9ab5cc7a-2117-49c7-9d53-9fa7bcdcebe3", "vehicle": {"position": {"latitude": -36.94149, "longitude": -73.02675, "bearing": 62.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888612", "vehicle": {"licensePlate": "DVWY63"}}}, {"id": "b05f3e7d-2f5e-4905-a811-e7166137119b", "vehicle": {"position": {"latitude": -36.794872, "longitude": -73.04582, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694824780", "vehicle": {"licensePlate": "RVGP32"}}}, {"id": "b33cbd0b-95b2-44dc-bde6-e6b7aa7d05ec", "vehicle": {"position": {"latitude": -36.82869, "longitude": -73.14776, "bearing": 286.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888996", "vehicle": {"licensePlate": "BJFP86"}}}, {"id": "ba541b41-e534-485a-aad9-7e1fee45e582", "vehicle": {"position": {"latitude": -36.828957, "longitude": -73.14769, "bearing": 46.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888742", "vehicle": {"licensePlate": "GSRS44"}}}, {"id": "70fd799c-4d76-487a-b7c5-b9fb9ba1e58c", "vehicle": {"position": {"latitude": -36.805614, "longitude": -73.03838, "bearing": 130.0, "odometer": 0.0, "speed": 1.9444444}, "timestamp": "1694888457", "vehicle": {"licensePlate": "BBGK91"}}}, {"id": "d7d0f319-260e-471c-8a80-6958f734dffc", "vehicle": {"position": {"latitude": -36.7687, "longitude": -73.11414, "bearing": 162.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888986", "vehicle": {"licensePlate": "CFTK25"}}}, {"id": "f13dbef5-7f5d-409b-9cf6-d93c6c3a3232", "vehicle": {"position": {"latitude": -36.80552, "longitude": -73.03839, "bearing": 59.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888945", "vehicle": {"licensePlate": "WK3881"}}}, {"id": "ffc0937f-ab53-4d72-b389-8dc43f712c46", "vehicle": {"position": {"latitude": -36.76868, "longitude": -73.11415, "bearing": 170.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888708", "vehicle": {"licensePlate": "BZPB50"}}}, {"id": "40281954-b5ac-4fd1-8eae-5049bdc4ac66", "vehicle": {"position": {"latitude": -36.973278, "longitude": -72.92658, "bearing": 9.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888947", "vehicle": {"licensePlate": "HBSS36"}}}, {"id": "0e0e695d-f9b3-41af-9085-fc0f9cb827b5", "vehicle": {"position": {"latitude": -36.94936, "longitude": -72.93174, "bearing": 126.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694818316", "vehicle": {"licensePlate": "CYSD24"}}}, {"id": "0593618c-abcc-401b-abe2-ebe8af4a509c", "vehicle": {"position": {"latitude": -36.60339, "longitude": -72.96834, "bearing": 92.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888868", "vehicle": {"licensePlate": "FYBC11"}}}, {"id": "28ae2e2d-247d-4f01-92a3-f40b19ccb6c1", "vehicle": {"position": {"latitude": -36.84991, "longitude": -73.13549, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888955", "vehicle": {"licensePlate": "BJFP66"}}}, {"id": "ee07032c-0973-41d5-ab5e-c39906519f20", "vehicle": {"position": {"latitude": -36.794315, "longitude": -73.04598, "bearing": 230.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694702784", "vehicle": {"licensePlate": "HRBS81"}}}, {"id": "f3c4880e-6ebf-46c5-917f-b5150c253051", "vehicle": {"position": {"latitude": -36.957943, "longitude": -73.0102, "bearing": 41.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888949", "vehicle": {"licensePlate": "JSBB44"}}}, {"id": "aed12c6b-11b3-41d4-ba2f-ec8ffabce07c", "vehicle": {"position": {"latitude": -36.809948, "longitude": -73.05068, "bearing": 152.0, "odometer": 0.0, "speed": 13.611111}, "timestamp": "1694889039", "vehicle": {"licensePlate": "CYVL58"}}}, {"id": "a782e11d-4479-4eb0-a443-9280bd632070", "vehicle": {"position": {"latitude": -36.81036, "longitude": -73.03203, "bearing": 344.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694808611", "vehicle": {"licensePlate": "WW3721"}}}, {"id": "71c62178-d81e-4b02-9697-d4ebfa533ead", "vehicle": {"position": {"latitude": -36.846657, "longitude": -73.144035, "bearing": 102.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888280", "vehicle": {"licensePlate": "YX2282"}}}, {"id": "9a45d000-410d-47d1-a213-bcae8371e009", "vehicle": {"position": {"latitude": -36.794373, "longitude": -73.04619, "bearing": 189.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694808231", "vehicle": {"licensePlate": "BWYC26"}}}, {"id": "c10a43b5-fc43-4ab9-8cc4-2014ebe21a52", "vehicle": {"position": {"latitude": -36.80552, "longitude": -73.03836, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888864", "vehicle": {"licensePlate": "BGFD11"}}}, {"id": "b1da4325-0b4c-4e43-97f7-1b799c77ff9a", "vehicle": {"position": {"latitude": -36.71527, "longitude": -72.9781, "bearing": 236.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694544512", "vehicle": {"licensePlate": "FGPH71"}}}, {"id": "c75cc13d-ed61-4cb0-be3b-a59fb6b2e793", "vehicle": {"position": {"latitude": -36.9491, "longitude": -73.01147, "bearing": 12.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694831860", "vehicle": {"licensePlate": "HJXW56"}}}, {"id": "2db1b09c-6b24-40d9-b9c3-960eab861408", "vehicle": {"position": {"latitude": -36.76339, "longitude": -73.09233, "bearing": 152.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694826178", "vehicle": {"licensePlate": "XG3191"}}}, {"id": "6e3227de-5291-4e65-8190-d011d26f00d6", "vehicle": {"position": {"latitude": -36.952847, "longitude": -73.013756, "bearing": 352.0, "odometer": 0.0, "speed": 2.7777777}, "timestamp": "1694794018", "vehicle": {"licensePlate": "ZP2769"}}}, {"id": "9c881459-8372-4c0e-ba86-45605dd5843d", "vehicle": {"position": {"latitude": -36.84052, "longitude": -73.114365, "bearing": 348.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694725976", "vehicle": {"licensePlate": "DHJC14"}}}, {"id": "a489c174-99ab-479f-ac60-c8128b69d0d2", "vehicle": {"position": {"latitude": -36.708992, "longitude": -73.13945, "bearing": 200.0, "odometer": 0.0, "speed": 0.5555556}, "timestamp": "1694812176", "vehicle": {"licensePlate": "JCGF99"}}}, {"id": "fad302d1-53e4-40b4-ab18-3214f06e27d8", "vehicle": {"position": {"latitude": -36.941467, "longitude": -73.02707, "bearing": 142.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888834", "vehicle": {"licensePlate": "HFLS53"}}}, {"id": "365f48e7-272e-4cc5-848f-440fa97c811c", "vehicle": {"position": {"latitude": -36.603405, "longitude": -72.96844, "bearing": 334.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889010", "vehicle": {"licensePlate": "HYYX68"}}}, {"id": "0995a59a-c67d-4dfc-ad68-daed079164e0", "vehicle": {"position": {"latitude": -36.823692, "longitude": -73.06927, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694810002", "vehicle": {"licensePlate": "GLCW10"}}}, {"id": "a2649979-f929-46b7-8c28-bae2a93d6956", "vehicle": {"position": {"latitude": -36.778698, "longitude": -73.09921, "bearing": 38.0, "odometer": 0.0, "speed": 1.9444444}, "timestamp": "1694803200", "vehicle": {"licensePlate": "JVTK83"}}}, {"id": "b55782c4-7bbb-4ff1-900d-d00882d74d9e", "vehicle": {"position": {"latitude": -36.829063, "longitude": -73.14821, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694807674", "vehicle": {"licensePlate": "MY2239"}}}, {"id": "38f117de-c91a-431a-91bc-e0b0d9b33fab", "vehicle": {"position": {"latitude": -36.76946, "longitude": -73.11357, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694791710", "vehicle": {"licensePlate": "YK7897"}}}, {"id": "87d2185a-5684-480d-b203-73c5b4ff83de", "vehicle": {"position": {"latitude": -36.843075, "longitude": -73.00966, "bearing": 200.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694881704", "vehicle": {"licensePlate": "RHRY49"}}}, {"id": "593e2c62-acc4-4268-8aca-1491072498ae", "vehicle": {"position": {"latitude": -36.9538, "longitude": -73.02223, "bearing": 330.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694804270", "vehicle": {"licensePlate": "ZT3771"}}}, {"id": "98875317-8572-4709-830e-9de4ed958103", "vehicle": {"position": {"latitude": -36.94935, "longitude": -72.93196, "bearing": 289.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694817764", "vehicle": {"licensePlate": "JCPJ32"}}}, {"id": "427ad44b-7566-41e0-93fb-49e81f7beabd", "vehicle": {"position": {"latitude": -36.778614, "longitude": -73.099434, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694798092", "vehicle": {"licensePlate": "CTZW20"}}}, {"id": "d24d6f85-2d72-4c76-baee-81a4367ab802", "vehicle": {"position": {"latitude": -36.786682, "longitude": -73.10151, "bearing": 272.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888988", "vehicle": {"licensePlate": "BWYJ83"}}}, {"id": "76c6d4ec-1edd-4655-8c39-608b93bc1d0e", "vehicle": {"position": {"latitude": -36.957535, "longitude": -73.01025, "bearing": 287.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694826818", "vehicle": {"licensePlate": "RTXW61"}}}, {"id": "4bfd62c6-0b75-47a2-8b4e-34e9da3d14aa", "vehicle": {"position": {"latitude": -36.95798, "longitude": -73.010704, "bearing": 332.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694808459", "vehicle": {"licensePlate": "BBGL85"}}}, {"id": "d96f4369-a6bc-4e7a-8ef0-c6d717e445e7", "vehicle": {"position": {"latitude": -36.94159, "longitude": -73.014946, "bearing": 196.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694887756", "vehicle": {"licensePlate": "BFRT89"}}}, {"id": "af09183c-3f60-4758-a88f-250d5f401aec", "vehicle": {"position": {"latitude": -36.95805, "longitude": -73.01092, "bearing": 229.0, "odometer": 0.0, "speed": 1.9444444}, "timestamp": "1694802669", "vehicle": {"licensePlate": "XU3135"}}}, {"id": "24861ad2-7f6e-4fcb-b362-db0fee1d382b", "vehicle": {"position": {"latitude": -36.805584, "longitude": -73.03835, "bearing": 187.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694809134", "vehicle": {"licensePlate": "YX1620"}}}, {"id": "05153a8a-dab7-4fa5-99b8-214808f3b277", "vehicle": {"position": {"latitude": -36.71068, "longitude": -73.14432, "bearing": 96.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694817706", "vehicle": {"licensePlate": "HYHP69"}}}, {"id": "0316dbbc-e71c-4a56-9dd3-35cdb73fb0af", "vehicle": {"position": {"latitude": -36.718952, "longitude": -73.12093, "bearing": 256.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694806376", "vehicle": {"licensePlate": "FYDV22"}}}, {"id": "e22666b8-4dee-493a-935a-60be89d3f1c7", "vehicle": {"position": {"latitude": -36.599174, "longitude": -72.951584, "bearing": 56.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888822", "vehicle": {"licensePlate": "KKPV66"}}}, {"id": "10b87f47-bce6-47e0-a551-2750593d5d9d", "vehicle": {"position": {"latitude": -36.849476, "longitude": -73.14221, "bearing": 230.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888999", "vehicle": {"licensePlate": "RWTK95"}}}, {"id": "07c18b89-0a72-41e2-905f-28f442c21369", "vehicle": {"position": {"latitude": -36.717216, "longitude": -73.11838, "bearing": 276.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694824375", "vehicle": {"licensePlate": "KHSW56"}}}, {"id": "13998fd4-26fc-4153-9faa-0494e773aa7f", "vehicle": {"position": {"latitude": -36.95759, "longitude": -73.01018, "bearing": 331.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694823610", "vehicle": {"licensePlate": "FZWC15"}}}, {"id": "52dfdc40-84d0-4477-a618-de0773ebc6fb", "vehicle": {"position": {"latitude": -36.804268, "longitude": -73.046486, "bearing": 240.0, "odometer": 0.0, "speed": 2.2222223}, "timestamp": "1694476604", "vehicle": {"licensePlate": "RXVT18"}}}, {"id": "13a00b97-42da-4af9-a987-d215377e2a4f", "vehicle": {"position": {"latitude": -36.941174, "longitude": -73.027214, "bearing": 294.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694820418", "vehicle": {"licensePlate": "RTRF77"}}}, {"id": "9111d57c-b373-4b46-8ec9-18f982aa797d", "vehicle": {"position": {"latitude": -36.95796, "longitude": -73.01078, "bearing": 327.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694814765", "vehicle": {"licensePlate": "GWLK25"}}}, {"id": "9d3cabd0-b86e-4247-ab47-7acad76e3bda", "vehicle": {"position": {"latitude": -36.606377, "longitude": -72.95244, "bearing": 198.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888562", "vehicle": {"licensePlate": "RFWX26"}}}, {"id": "35ba13a7-17cc-49aa-9d29-ace1981bde91", "vehicle": {"position": {"latitude": -36.828865, "longitude": -73.14748, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888765", "vehicle": {"licensePlate": "FXRL43"}}}, {"id": "a1372cf6-3bef-412a-ac23-3f13b1bf8916", "vehicle": {"position": {"latitude": -36.713554, "longitude": -72.977615, "bearing": 226.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888726", "vehicle": {"licensePlate": "SVYW40"}}}, {"id": "08378a4c-94da-40c1-89c5-bcb3fdae277a", "vehicle": {"position": {"latitude": -36.777153, "longitude": -73.112434, "bearing": 286.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694881310", "vehicle": {"licensePlate": "JHJF65"}}}, {"id": "2df0c2ee-a15e-4c2c-bfc9-8a4352acab70", "vehicle": {"position": {"latitude": -36.94878, "longitude": -73.01176, "bearing": 216.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694822842", "vehicle": {"licensePlate": "GRWL98"}}}, {"id": "815e2c3e-2ac5-4b9d-97ba-a579a65ab75a", "vehicle": {"position": {"latitude": -36.941277, "longitude": -73.02711, "bearing": 350.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888808", "vehicle": {"licensePlate": "FXJB65"}}}, {"id": "11570f05-753d-43ec-a5bf-9446b53b5fee", "vehicle": {"position": {"latitude": -36.77938, "longitude": -73.09931, "bearing": 194.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889034", "vehicle": {"licensePlate": "HXKJ49"}}}, {"id": "ca2c76a2-8cdc-4bd9-838c-c7bca1d56c33", "vehicle": {"position": {"latitude": -36.964344, "longitude": -72.93385, "bearing": 209.0, "odometer": 0.0, "speed": 3.6111112}, "timestamp": "1694820910", "vehicle": {"licensePlate": "HRBS34"}}}, {"id": "5d197202-8dc2-4a47-838c-fbeb5eb6aea0", "vehicle": {"position": {"latitude": -36.713608, "longitude": -72.97755, "bearing": 61.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694880897", "vehicle": {"licensePlate": "HYYX66"}}}, {"id": "780f5bcb-3a4d-42fe-b1cd-79440432f23c", "vehicle": {"position": {"latitude": -36.844475, "longitude": -73.126236, "bearing": 196.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888988", "vehicle": {"licensePlate": "WH1336"}}}, {"id": "af92bec4-f5ad-4835-94a7-f5996fcb7aba", "vehicle": {"position": {"latitude": -36.78977, "longitude": -73.07906, "bearing": 290.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888518", "vehicle": {"licensePlate": "FJPD97"}}}, {"id": "e78afb30-0855-4ae7-82ca-03fc35a635b3", "vehicle": {"position": {"latitude": -36.80697, "longitude": -73.05139, "bearing": 240.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694790550", "vehicle": {"licensePlate": "DSKF39"}}}, {"id": "4cdfaaa8-fd7e-401c-8f8a-6045fb196ed7", "vehicle": {"position": {"latitude": -36.828686, "longitude": -73.01036, "bearing": 79.0, "odometer": 0.0, "speed": 11.9}, "timestamp": "1694888889", "vehicle": {"licensePlate": "JXKG53"}}}, {"id": "0b79ece0-587d-4ab8-848c-923b553ad3e5", "vehicle": {"position": {"latitude": -36.83062, "longitude": -73.123474, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694810585", "vehicle": {"licensePlate": "KFTV32"}}}, {"id": "c8a64b50-a29c-4290-89d1-7754f2351a52", "vehicle": {"position": {"latitude": -36.83757, "longitude": -73.08782, "bearing": 244.0, "odometer": 0.0, "speed": 37.3}, "timestamp": "1694804712", "vehicle": {"licensePlate": "WD9971"}}}, {"id": "c79fe072-f9cd-4313-a422-847a34b1a4f3", "vehicle": {"position": {"latitude": -36.958374, "longitude": -73.01103, "bearing": 150.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694794906", "vehicle": {"licensePlate": "FLRY73"}}}, {"id": "a5aae311-ab7b-43c0-a482-9120c4d5348c", "vehicle": {"position": {"latitude": -36.941406, "longitude": -73.026955, "bearing": 340.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694817414", "vehicle": {"licensePlate": "FWJX86"}}}, {"id": "fedb7f5d-4597-4c9b-9d14-6f30b933cd3b", "vehicle": {"position": {"latitude": -36.941376, "longitude": -73.02731, "bearing": 174.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694829906", "vehicle": {"licensePlate": "YX2292"}}}, {"id": "aafdb77d-f501-4e78-8f6d-0c951be702ea", "vehicle": {"position": {"latitude": -36.941357, "longitude": -73.02712, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694864552", "vehicle": {"licensePlate": "WW3021"}}}, {"id": "76d1b1d2-f36e-4bd0-ac62-657b5bc774ef", "vehicle": {"position": {"latitude": -36.718952, "longitude": -73.12116, "bearing": 76.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694802086", "vehicle": {"licensePlate": "YF1863"}}}, {"id": "297844ad-468a-4264-96ef-d97b42eed47c", "vehicle": {"position": {"latitude": -36.829037, "longitude": -73.14829, "bearing": 36.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694809614", "vehicle": {"licensePlate": "FRPG39"}}}, {"id": "ecb61d10-209a-4d90-a9c4-034ce5945358", "vehicle": {"position": {"latitude": -36.723354, "longitude": -73.12874, "bearing": 143.0, "odometer": 0.0, "speed": 1.1111112}, "timestamp": "1694808966", "vehicle": {"licensePlate": "WW4028"}}}, {"id": "3a078b6e-d98a-4f84-8080-211e4f8fcd36", "vehicle": {"position": {"latitude": -36.842705, "longitude": -73.00978, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694878372", "vehicle": {"licensePlate": "BU6919"}}}, {"id": "b1c1865a-c235-474a-a81d-99fa02b6e84f", "vehicle": {"position": {"latitude": -36.71391, "longitude": -72.97767, "bearing": 140.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694885862", "vehicle": {"licensePlate": "LFVD12"}}}, {"id": "f333b3ed-8e0c-491c-bea2-a078db09a5f1", "vehicle": {"position": {"latitude": -36.942314, "longitude": -73.01223, "bearing": 252.0, "odometer": 0.0, "speed": 4.4444447}, "timestamp": "1694724826", "vehicle": {"licensePlate": "YE2812"}}}, {"id": "6c2c56c3-ff7b-4130-acd9-e5447ba85662", "vehicle": {"position": {"latitude": -36.832626, "longitude": -73.00383, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694798342", "vehicle": {"licensePlate": "FFTL54"}}}, {"id": "1badd376-fb6a-4289-8bac-b530bf68c017", "vehicle": {"position": {"latitude": -36.62914, "longitude": -72.954185, "bearing": 76.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888951", "vehicle": {"licensePlate": "RWKY42"}}}, {"id": "4cb4ebce-c737-4d83-b6a8-dc92dad7ec4d", "vehicle": {"position": {"latitude": -36.82724, "longitude": -73.12708, "bearing": 292.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694825958", "vehicle": {"licensePlate": "BBFT99"}}}, {"id": "a0f2e47c-7e4f-41ee-9d92-3f81c4e080f5", "vehicle": {"position": {"latitude": -36.85017, "longitude": -73.142365, "bearing": 22.0, "odometer": 0.0, "speed": 1.6666667}, "timestamp": "1694889023", "vehicle": {"licensePlate": "BFHJ55"}}}, {"id": "f8285b7e-42a4-4b22-9964-e76ae6f17e34", "vehicle": {"position": {"latitude": -36.796936, "longitude": -73.114876, "bearing": 258.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888984", "vehicle": {"licensePlate": "YR3387"}}}, {"id": "b4780ca7-1e0b-4a6e-ac47-fe0dfb01e4e9", "vehicle": {"position": {"latitude": -36.957977, "longitude": -73.01069, "bearing": 322.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694815698", "vehicle": {"licensePlate": "XZ9640"}}}, {"id": "0e696444-2a61-4679-b8bd-f6268078474d", "vehicle": {"position": {"latitude": -36.94251, "longitude": -73.00962, "bearing": 78.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888904", "vehicle": {"licensePlate": "CYVP95"}}}, {"id": "e8278091-ea33-42bb-bfd3-05ae79fbaf21", "vehicle": {"position": {"latitude": -36.949047, "longitude": -72.931656, "bearing": 34.0, "odometer": 0.0, "speed": 1.1111112}, "timestamp": "1694091032", "vehicle": {"licensePlate": "DCHR62"}}}, {"id": "ae5fdecb-a33e-4285-aa07-fa2803cec409", "vehicle": {"position": {"latitude": -36.710957, "longitude": -72.974014, "bearing": 206.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694808612", "vehicle": {"licensePlate": "DRFP55"}}}, {"id": "48cd2327-7718-4de0-839c-56b8e20e2540", "vehicle": {"position": {"latitude": -36.824944, "longitude": -73.12524, "bearing": 283.0, "odometer": 0.0, "speed": 2.2}, "timestamp": "1694815322", "vehicle": {"licensePlate": "FXFW82"}}}, {"id": "66e0c29a-986a-4819-9662-5eda52af5f94", "vehicle": {"position": {"latitude": -36.78843, "longitude": -73.100464, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694635258", "vehicle": {"licensePlate": "CXLY24"}}}, {"id": "37a1f091-b28b-4062-b52b-8a81c5198ce5", "vehicle": {"position": {"latitude": -36.793987, "longitude": -73.09109, "bearing": 161.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694795358", "vehicle": {"licensePlate": "WS7665"}}}, {"id": "bd2da293-6467-4749-a74c-2658c2c976d9", "vehicle": {"position": {"latitude": -36.829494, "longitude": -73.05984, "bearing": 128.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888816", "vehicle": {"licensePlate": "KHXV50"}}}, {"id": "7069d025-2415-4931-bd02-da01e23ce531", "vehicle": {"position": {"latitude": -36.965893, "longitude": -72.92608, "bearing": 146.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888944", "vehicle": {"licensePlate": "GVYD71"}}}, {"id": "abf50f9c-6382-4e95-8125-e80d0232e00a", "vehicle": {"position": {"latitude": -36.94142, "longitude": -73.02707, "bearing": 326.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694887482", "vehicle": {"licensePlate": "CJSD72"}}}, {"id": "556571ba-dbb1-48d3-b4ca-43ea5c9221ed", "vehicle": {"position": {"latitude": -36.79273, "longitude": -73.10272, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694645560", "vehicle": {"licensePlate": "FDHJ52"}}}, {"id": "92133084-dc0e-4828-9628-c9fb6a31baed", "vehicle": {"position": {"latitude": -36.91014, "longitude": -73.02792, "bearing": 343.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888873", "vehicle": {"licensePlate": "HJXG47"}}}, {"id": "d477903a-3051-4569-a7b2-e2a5512a692f", "vehicle": {"position": {"latitude": -36.82939, "longitude": -73.06089, "bearing": 99.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888829", "vehicle": {"licensePlate": "KHXV29"}}}, {"id": "53662e2f-652b-4404-8a93-79e45a057c94", "vehicle": {"position": {"latitude": -36.82902, "longitude": -73.147995, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694815075", "vehicle": {"licensePlate": "BYPX40"}}}, {"id": "7c530d85-fdaf-4598-ac10-4784ed1cbd8f", "vehicle": {"position": {"latitude": -36.84691, "longitude": -73.14406, "bearing": 248.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694824764", "vehicle": {"licensePlate": "GZRC77"}}}, {"id": "17200a37-14dd-41d6-9d5a-0cf49745c9fa", "vehicle": {"position": {"latitude": -36.941044, "longitude": -73.02712, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694880970", "vehicle": {"licensePlate": "YU8141"}}}, {"id": "a2394b1c-8178-4b4b-ae21-9a7c4d3667d0", "vehicle": {"position": {"latitude": -36.800217, "longitude": -72.96008, "bearing": 356.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694795410", "vehicle": {"licensePlate": "DZFG16"}}}, {"id": "0be64288-9b2e-4048-9b20-9ee6d12d8107", "vehicle": {"position": {"latitude": -36.941555, "longitude": -73.02713, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694881080", "vehicle": {"licensePlate": "FXRL55"}}}, {"id": "f25ee9f2-0f1a-4f71-9628-d3e007242085", "vehicle": {"position": {"latitude": -36.8055, "longitude": -73.03837, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694879477", "vehicle": {"licensePlate": "BBGL62"}}}, {"id": "386555f1-d66e-4892-bed7-6da250d22bbb", "vehicle": {"position": {"latitude": -36.94132, "longitude": -73.02712, "bearing": 162.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694887322", "vehicle": {"licensePlate": "DZYS83"}}}, {"id": "b2bd1998-5cf6-45e1-956d-c30e6ac05c55", "vehicle": {"position": {"latitude": -36.602947, "longitude": -72.95935, "bearing": 250.0, "odometer": 0.0, "speed": 4.4444447}, "timestamp": "1694889006", "vehicle": {"licensePlate": "KKPV67"}}}, {"id": "ce1df667-0770-474e-9c75-8549240409d0", "vehicle": {"position": {"latitude": -36.789703, "longitude": -73.07912, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694879794", "vehicle": {"licensePlate": "DRFP48"}}}, {"id": "cd339500-58d5-4877-ac8a-9868af3b08a9", "vehicle": {"position": {"latitude": -36.78316, "longitude": -73.03956, "bearing": 52.0, "odometer": 0.0, "speed": 0.2777778}, "timestamp": "1694881648", "vehicle": {"licensePlate": "CRVH45"}}}, {"id": "5327d30e-7237-4012-8f05-bee8e6848d12", "vehicle": {"position": {"latitude": -36.948795, "longitude": -73.01174, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888567", "vehicle": {"licensePlate": "DHTZ45"}}}, {"id": "572be774-269f-4ef2-9c42-bdd601bb1a56", "vehicle": {"position": {"latitude": -36.805614, "longitude": -73.038284, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694799313", "vehicle": {"licensePlate": "BKTP80"}}}, {"id": "3e2686c7-3b8a-44d2-9871-dbc800778e25", "vehicle": {"position": {"latitude": -36.807068, "longitude": -73.05179, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694797930", "vehicle": {"licensePlate": "FXRL35"}}}, {"id": "7b3e9bc9-eba3-4b84-ab0c-a32874573c85", "vehicle": {"position": {"latitude": -36.618397, "longitude": -72.954346, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694778116", "vehicle": {"licensePlate": "WK9163"}}}, {"id": "68275099-2816-42f0-8f0a-cae33266b540", "vehicle": {"position": {"latitude": -36.716667, "longitude": -73.12548, "bearing": 348.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694882590", "vehicle": {"licensePlate": "LRJG53"}}}, {"id": "fcb42fab-8abe-43ac-8040-abcf3b49363c", "vehicle": {"position": {"latitude": -36.7141, "longitude": -72.97777, "bearing": 152.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888770", "vehicle": {"licensePlate": "JSBB14"}}}, {"id": "89585351-cf5e-40ad-aa89-3a5659140048", "vehicle": {"position": {"latitude": -36.806152, "longitude": -73.05166, "bearing": 102.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694789760", "vehicle": {"licensePlate": "FYBD34"}}}, {"id": "1c5ee8c3-46af-4c3a-ae61-16a128560815", "vehicle": {"position": {"latitude": -36.60369, "longitude": -72.96865, "bearing": 142.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694878344", "vehicle": {"licensePlate": "MZ6641"}}}, {"id": "3f98a721-0c0d-4c9b-a8bd-aa55e2d6f80f", "vehicle": {"position": {"latitude": -36.8581, "longitude": -73.140816, "bearing": 120.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694879243", "vehicle": {"licensePlate": "CVTG86"}}}, {"id": "59cb8498-551d-4210-91dc-09195cea0668", "vehicle": {"position": {"latitude": -36.95773, "longitude": -73.01036, "bearing": 63.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694728671", "vehicle": {"licensePlate": "DRTS68"}}}, {"id": "0bfc2ead-2228-470f-9241-9a3439b03c71", "vehicle": {"position": {"latitude": -36.958027, "longitude": -73.01073, "bearing": 209.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694635896", "vehicle": {"licensePlate": "WK6958"}}}, {"id": "e095183c-153d-46a6-b86f-8bf8621cdd28", "vehicle": {"position": {"latitude": -36.76681, "longitude": -73.11338, "bearing": 16.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694663062", "vehicle": {"licensePlate": "WG9761"}}}, {"id": "180bafa1-8219-462a-9dce-f59589c35766", "vehicle": {"position": {"latitude": -36.828888, "longitude": -73.147896, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694868428", "vehicle": {"licensePlate": "FXJS18"}}}, {"id": "d4dd01df-eb1b-49ed-867a-bda2a062b94b", "vehicle": {"position": {"latitude": -36.735783, "longitude": -73.102776, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694882324", "vehicle": {"licensePlate": "KDXL37"}}}, {"id": "b5df92d1-cfc8-4fd2-9f4f-1d959f891416", "vehicle": {"position": {"latitude": -36.829025, "longitude": -73.14811, "bearing": 161.0, "odometer": 0.0, "speed": 1.3888888}, "timestamp": "1694817460", "vehicle": {"licensePlate": "FXRL71"}}}, {"id": "41986478-2dbc-45d7-9d71-10b16b2f85e6", "vehicle": {"position": {"latitude": -36.83067, "longitude": -73.12362, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694879786", "vehicle": {"licensePlate": "HJRY66"}}}, {"id": "32b42c9b-1ce6-4206-8736-2fe599e3948d", "vehicle": {"position": {"latitude": -36.842945, "longitude": -73.00958, "bearing": 150.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694879800", "vehicle": {"licensePlate": "CYSD10"}}}, {"id": "4945993e-a300-41a5-a672-0c4999eeeac3", "vehicle": {"position": {"latitude": -36.941433, "longitude": -73.02709, "bearing": 154.0, "odometer": 0.0, "speed": 3.3333333}, "timestamp": "1694795272", "vehicle": {"licensePlate": "CGHC78"}}}, {"id": "76309832-1aba-4b75-aa5a-9b236ebfc686", "vehicle": {"position": {"latitude": -36.710968, "longitude": -72.974205, "bearing": 280.0, "odometer": 0.0, "speed": 0.5555556}, "timestamp": "1694812302", "vehicle": {"licensePlate": "WC7740"}}}, {"id": "e31c723a-76be-43f4-b0ab-aa053156d0fd", "vehicle": {"position": {"latitude": -36.94943, "longitude": -72.931526, "bearing": 318.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888710", "vehicle": {"licensePlate": "CYWK97"}}}, {"id": "1a3d3661-8424-4862-869d-4e20ec2ad19b", "vehicle": {"position": {"latitude": -36.94929, "longitude": -72.93171, "bearing": 316.0, "odometer": 0.0, "speed": 3.3333333}, "timestamp": "1694882928", "vehicle": {"licensePlate": "BZRG35"}}}, {"id": "d273a4f7-7ece-4709-ad3b-da8a6b5a1408", "vehicle": {"position": {"latitude": -36.840103, "longitude": -73.00167, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694824017", "vehicle": {"licensePlate": "FXZY61"}}}, {"id": "5f0a1c13-366d-4620-9739-405325c5eaae", "vehicle": {"position": {"latitude": -36.997772, "longitude": -73.1716, "bearing": 160.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888982", "vehicle": {"licensePlate": "HFYB65"}}}, {"id": "f6d66b8c-9b9a-4974-b30a-c422cff5138c", "vehicle": {"position": {"latitude": -36.721714, "longitude": -73.142494, "bearing": 356.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888938", "vehicle": {"licensePlate": "DHSL59"}}}, {"id": "083227df-45c3-493f-9768-508570466deb", "vehicle": {"position": {"latitude": -36.82425, "longitude": -73.1299, "bearing": 208.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888172", "vehicle": {"licensePlate": "FCBR42"}}}, {"id": "8b48e555-75b6-49a7-9b0d-800f0b54a67b", "vehicle": {"position": {"latitude": -36.829983, "longitude": -73.123276, "bearing": 38.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694861357", "vehicle": {"licensePlate": "FVDD42"}}}, {"id": "0c1dc551-ccfd-48d4-a50f-34092fd1972d", "vehicle": {"position": {"latitude": -36.79521, "longitude": -73.10714, "bearing": 38.0, "odometer": 0.0, "speed": 2.2222223}, "timestamp": "1694101156", "vehicle": {"licensePlate": "FXJS22"}}}, {"id": "2522bed6-9832-45cc-825b-22c8a40a9e36", "vehicle": {"position": {"latitude": -36.80385, "longitude": -73.04449, "bearing": 157.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889018", "vehicle": {"licensePlate": "YU8228"}}}, {"id": "9656fc5b-25d3-42c0-b755-46f12b734e27", "vehicle": {"position": {"latitude": -36.810867, "longitude": -73.05002, "bearing": 330.0, "odometer": 0.0, "speed": 10.0}, "timestamp": "1694889004", "vehicle": {"licensePlate": "FWTT74"}}}, {"id": "50ba7353-d7a9-4d59-9caa-8e5eb9e3f1b7", "vehicle": {"position": {"latitude": -36.771706, "longitude": -73.1143, "bearing": 346.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888978", "vehicle": {"licensePlate": "YA5666"}}}, {"id": "0b5260ff-86b6-4494-a1a5-29b07f2732da", "vehicle": {"position": {"latitude": -36.941166, "longitude": -73.02715, "bearing": 290.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694797232", "vehicle": {"licensePlate": "DKYW13"}}}, {"id": "c1d63286-038c-424c-a2cb-2c4d60533c98", "vehicle": {"position": {"latitude": -36.79484, "longitude": -73.04616, "bearing": 247.0, "odometer": 0.0, "speed": 0.2777778}, "timestamp": "1694533585", "vehicle": {"licensePlate": "KYKJ75"}}}, {"id": "751b9315-f47e-420e-9a55-e2b97011f065", "vehicle": {"position": {"latitude": -36.766808, "longitude": -73.11355, "bearing": 26.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694796580", "vehicle": {"licensePlate": "WG9613"}}}, {"id": "fba0c994-8927-467f-9689-6f3a25bf0e5d", "vehicle": {"position": {"latitude": -36.841896, "longitude": -73.11271, "bearing": 269.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694811434", "vehicle": {"licensePlate": "XP4106"}}}, {"id": "7a0c84a2-4d17-43ab-a770-b70383fa8816", "vehicle": {"position": {"latitude": -36.717236, "longitude": -72.97176, "bearing": 123.0, "odometer": 0.0, "speed": 11.388889}, "timestamp": "1694889031", "vehicle": {"licensePlate": "LPDK21"}}}, {"id": "0b75799d-fbee-40bc-a9ff-f8991ce949d5", "vehicle": {"position": {"latitude": -36.941, "longitude": -73.02722, "bearing": 240.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888754", "vehicle": {"licensePlate": "YA5908"}}}, {"id": "38f93b88-564a-40d0-8451-398c27199501", "vehicle": {"position": {"latitude": -36.830452, "longitude": -73.12383, "bearing": 14.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888873", "vehicle": {"licensePlate": "JKYZ60"}}}, {"id": "64c5a24f-c234-416c-bf00-12e59debb144", "vehicle": {"position": {"latitude": -36.81395, "longitude": -73.040665, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694793838", "vehicle": {"licensePlate": "CGFG49"}}}, {"id": "358abc93-856a-4941-bd93-ebe4081fd6ef", "vehicle": {"position": {"latitude": -36.846653, "longitude": -73.14419, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1693678486", "vehicle": {"licensePlate": "JGJW90"}}}, {"id": "6a0cf819-1e96-464a-a62f-f2ea8c00be1a", "vehicle": {"position": {"latitude": -36.76867, "longitude": -73.113304, "bearing": 74.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694822940", "vehicle": {"licensePlate": "DPZY61"}}}, {"id": "df3ae136-7868-433b-8c66-e41c9bb3fbe9", "vehicle": {"position": {"latitude": -37.626892, "longitude": -73.45958, "bearing": 294.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694885634", "vehicle": {"licensePlate": "LVLG31"}}}, {"id": "a2ec3e6f-6042-4e55-b6f7-e17208e080ca", "vehicle": {"position": {"latitude": -36.718872, "longitude": -73.12098, "bearing": 54.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694805672", "vehicle": {"licensePlate": "HWHK16"}}}, {"id": "c91f254b-2c75-4774-8a64-db2ffd304651", "vehicle": {"position": {"latitude": -36.849567, "longitude": -73.1425, "bearing": 5.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694818240", "vehicle": {"licensePlate": "XB8589"}}}, {"id": "b903550d-91aa-452d-93d6-ca80ae81528e", "vehicle": {"position": {"latitude": -36.714916, "longitude": -72.978035, "bearing": 309.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694546014", "vehicle": {"licensePlate": "CWJW16"}}}, {"id": "13181fd5-0643-4de5-b18c-cb40f6ca67f7", "vehicle": {"position": {"latitude": -36.841137, "longitude": -73.11429, "bearing": 344.0, "odometer": 0.0, "speed": 2.7}, "timestamp": "1694812630", "vehicle": {"licensePlate": "KHFY70"}}}, {"id": "b4a46bf8-bd8e-4934-9c6f-491569b098b9", "vehicle": {"position": {"latitude": -36.769035, "longitude": -73.113914, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694800972", "vehicle": {"licensePlate": "FYBB45"}}}, {"id": "f7538592-7d4c-4070-af9b-070196dfd2b8", "vehicle": {"position": {"latitude": -36.805668, "longitude": -73.038246, "bearing": 156.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1693584704", "vehicle": {"licensePlate": "XZ9669"}}}, {"id": "3914e6e5-9137-4acb-9bff-ff0f0e84f127", "vehicle": {"position": {"latitude": -36.603397, "longitude": -72.96849, "bearing": 340.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888612", "vehicle": {"licensePlate": "DRJZ49"}}}, {"id": "62ee3e74-7793-42bf-abae-bd879d9c65bf", "vehicle": {"position": {"latitude": -36.828915, "longitude": -73.14815, "bearing": 348.0, "odometer": 0.0, "speed": 2.2222223}, "timestamp": "1694877899", "vehicle": {"licensePlate": "BBZC61"}}}, {"id": "58f8e4da-ecb4-4aa3-a20d-c33dbe59e0e6", "vehicle": {"position": {"latitude": -36.76905, "longitude": -73.113434, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694865618", "vehicle": {"licensePlate": "YR1542"}}}, {"id": "38c10acb-d823-490f-8814-9844ff3965fc", "vehicle": {"position": {"latitude": -36.768425, "longitude": -73.11369, "bearing": 283.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694808661", "vehicle": {"licensePlate": "RFSC38"}}}, {"id": "12d8928c-3962-4986-955f-f9568b77c829", "vehicle": {"position": {"latitude": -36.768574, "longitude": -73.11331, "bearing": 106.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694817650", "vehicle": {"licensePlate": "YR1543"}}}, {"id": "59ed885b-2112-4878-b461-48064fc892aa", "vehicle": {"position": {"latitude": -36.604107, "longitude": -72.96833, "bearing": 98.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694821004", "vehicle": {"licensePlate": "LVLG32"}}}, {"id": "0c8f5e44-cc8c-40c2-b96c-7b110828fb0b", "vehicle": {"position": {"latitude": -36.795433, "longitude": -73.10677, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1691586254", "vehicle": {"licensePlate": "DWHF41"}}}, {"id": "81829781-2a43-4d54-9325-6f6c4576db7b", "vehicle": {"position": {"latitude": -36.778584, "longitude": -73.09913, "bearing": 352.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694738137", "vehicle": {"licensePlate": "CRVH48"}}}, {"id": "36491eff-9dc1-4604-869e-e3a2a35026e7", "vehicle": {"position": {"latitude": -36.954098, "longitude": -73.021965, "bearing": 40.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694810484", "vehicle": {"licensePlate": "BLYY25"}}}, {"id": "2620c76e-d3eb-49fa-b7a1-e94153a7062b", "vehicle": {"position": {"latitude": -36.82896, "longitude": -73.14814, "bearing": 65.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888982", "vehicle": {"licensePlate": "FXRZ33"}}}, {"id": "35435903-6c33-469f-b964-afa221b7466d", "vehicle": {"position": {"latitude": -36.83062, "longitude": -73.12352, "bearing": 18.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694726937", "vehicle": {"licensePlate": "DDDW22"}}}, {"id": "36ae3c88-9fff-473a-a3a7-e3adfc37ef32", "vehicle": {"position": {"latitude": -36.82621, "longitude": -73.121605, "bearing": 357.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694798339", "vehicle": {"licensePlate": "FYDV31"}}}, {"id": "e17d47bc-c496-40c8-99a3-a052fd3515e9", "vehicle": {"position": {"latitude": -36.7137, "longitude": -72.97766, "bearing": 326.0, "odometer": 0.0, "speed": 0.8333333}, "timestamp": "1694812736", "vehicle": {"licensePlate": "BLFS44"}}}, {"id": "fe8e1623-0c73-44c4-96c1-bb6d88015180", "vehicle": {"position": {"latitude": -36.7772, "longitude": -73.11253, "bearing": 36.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889014", "vehicle": {"licensePlate": "YG6209"}}}, {"id": "698a78cd-1baf-42f2-84f9-bfbceb926daf", "vehicle": {"position": {"latitude": -36.79473, "longitude": -73.04582, "bearing": 230.0, "odometer": 0.0, "speed": 1.6666666}, "timestamp": "1694511349", "vehicle": {"licensePlate": "FYBF70"}}}, {"id": "b46020ce-2552-4765-b75e-a0e899b43919", "vehicle": {"position": {"latitude": -36.804653, "longitude": -73.05299, "bearing": 77.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694454843", "vehicle": {"licensePlate": "YV3065"}}}, {"id": "8c6c206c-2327-4fc2-90bf-585acb297685", "vehicle": {"position": {"latitude": -36.824127, "longitude": -73.13031, "bearing": 355.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694737095", "vehicle": {"licensePlate": "YJ3032"}}}, {"id": "f80703dd-d72f-4400-badb-03d5241a3190", "vehicle": {"position": {"latitude": -36.76888, "longitude": -73.11336, "bearing": 275.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694824788", "vehicle": {"licensePlate": "WZ6732"}}}, {"id": "4729ca8b-f544-44da-8dd3-2dbc9cd56607", "vehicle": {"position": {"latitude": -36.71402, "longitude": -72.97776, "bearing": 348.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694832418", "vehicle": {"licensePlate": "FPYZ68"}}}, {"id": "9621a391-84cd-4357-81d2-d8f340210e1a", "vehicle": {"position": {"latitude": -36.824017, "longitude": -73.13031, "bearing": 317.0, "odometer": 0.0, "speed": 0.5}, "timestamp": "1694708461", "vehicle": {"licensePlate": "YE2805"}}}, {"id": "76327583-224b-4c7b-9044-b17dedd3b093", "vehicle": {"position": {"latitude": -36.60422, "longitude": -72.96823, "bearing": 60.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694834204", "vehicle": {"licensePlate": "JRZZ95"}}}, {"id": "12617f8b-ef49-4156-b6e4-d228f8bad49c", "vehicle": {"position": {"latitude": -36.768585, "longitude": -73.114174, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694865299", "vehicle": {"licensePlate": "RW9264"}}}, {"id": "c79ed8ba-9647-4048-b548-4dc5596bca05", "vehicle": {"position": {"latitude": -36.71321, "longitude": -72.9775, "bearing": 150.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694473818", "vehicle": {"licensePlate": "ZY9303"}}}, {"id": "f29c20d0-545c-453a-a7bf-f7f4ce2f70e2", "vehicle": {"position": {"latitude": -36.722145, "longitude": -73.14241, "bearing": 162.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694825326", "vehicle": {"licensePlate": "JHJJ51"}}}, {"id": "998c9992-8b32-470b-b020-648b45799f06", "vehicle": {"position": {"latitude": -36.718754, "longitude": -73.12108, "bearing": 146.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694730812", "vehicle": {"licensePlate": "ZR7483"}}}, {"id": "2fd5ff6e-5211-49ae-b269-b369cf632887", "vehicle": {"position": {"latitude": -36.794884, "longitude": -73.04589, "bearing": 180.0, "odometer": 0.0, "speed": 1.1111112}, "timestamp": "1694459223", "vehicle": {"licensePlate": "YG2262"}}}, {"id": "c4faa539-7e6b-4d4e-9b4d-b00306ca8ae7", "vehicle": {"position": {"latitude": -36.941437, "longitude": -73.02726, "bearing": 136.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694819098", "vehicle": {"licensePlate": "DZKF35"}}}, {"id": "3107d47f-c1da-475b-a6d4-c0c32535efb7", "vehicle": {"position": {"latitude": -36.76688, "longitude": -73.11354, "bearing": 106.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694620070", "vehicle": {"licensePlate": "DLYW10"}}}, {"id": "181fdd81-d75d-498a-97b0-4b804deac51e", "vehicle": {"position": {"latitude": -36.72285, "longitude": -73.143616, "bearing": 152.0, "odometer": 0.0, "speed": 5.8333335}, "timestamp": "1694889002", "vehicle": {"licensePlate": "DRTS69"}}}, {"id": "c03c7de5-4c7b-4297-ba8e-a0b316b38df0", "vehicle": {"position": {"latitude": -36.72245, "longitude": -73.14303, "bearing": 58.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888726", "vehicle": {"licensePlate": "BJFL97"}}}, {"id": "85c3e80f-2f2b-4eb3-92dc-9f8e28e26e40", "vehicle": {"position": {"latitude": -36.72251, "longitude": -73.14301, "bearing": 94.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888816", "vehicle": {"licensePlate": "RKFC66"}}}, {"id": "add4d0e5-d126-4159-9b73-a122ca63adcb", "vehicle": {"position": {"latitude": -36.71096, "longitude": -72.974464, "bearing": 224.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888926", "vehicle": {"licensePlate": "BZPV75"}}}, {"id": "1902f37d-a0b7-488c-89ab-7ce0477c264f", "vehicle": {"position": {"latitude": -36.798515, "longitude": -73.06061, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694688028", "vehicle": {"licensePlate": "FXRZ70"}}}, {"id": "e8761268-846a-41d1-8877-9fa4baf77285", "vehicle": {"position": {"latitude": -36.784172, "longitude": -73.1124, "bearing": 162.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694829839", "vehicle": {"licensePlate": "XZ9729"}}}, {"id": "7b97afe3-dad9-45bf-ad25-0ef97fac9d84", "vehicle": {"position": {"latitude": -36.80557, "longitude": -73.03813, "bearing": 178.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1692300960", "vehicle": {"licensePlate": "YJ1864"}}}, {"id": "703b0895-bf02-416c-8aad-5078f57b1798", "vehicle": {"position": {"latitude": -36.72274, "longitude": -73.124466, "bearing": 119.0, "odometer": 0.0, "speed": 1.9444444}, "timestamp": "1694889026", "vehicle": {"licensePlate": "FCJS56"}}}, {"id": "de35a8f6-0891-4200-ac4d-326f1bc6d2c3", "vehicle": {"position": {"latitude": -36.79463, "longitude": -73.04577, "bearing": 190.0, "odometer": 0.0, "speed": 1.9444444}, "timestamp": "1694549313", "vehicle": {"licensePlate": "CVJL53"}}}, {"id": "dfea6313-5421-4510-b19a-5e289d821994", "vehicle": {"position": {"latitude": -36.79546, "longitude": -73.04858, "bearing": 201.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888961", "vehicle": {"licensePlate": "BHRY90"}}}, {"id": "2bf88050-66fd-467c-afe0-a8c2fa772467", "vehicle": {"position": {"latitude": -36.79482, "longitude": -73.04608, "bearing": 300.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888732", "vehicle": {"licensePlate": "FYBF99"}}}, {"id": "f31e70fe-343b-4887-986f-9ce1e877a3c9", "vehicle": {"position": {"latitude": -36.704376, "longitude": -72.97119, "bearing": 44.0, "odometer": 0.0, "speed": 6.9444447}, "timestamp": "1694889006", "vehicle": {"licensePlate": "HSTC56"}}}, {"id": "a7543736-3de0-4370-9366-6c9e4d664aea", "vehicle": {"position": {"latitude": -36.79082, "longitude": -73.05397, "bearing": 59.0, "odometer": 0.0, "speed": 8.611111}, "timestamp": "1694889035", "vehicle": {"licensePlate": "GDBP20"}}}, {"id": "c52a638a-0fd7-421a-a0b5-af087f93d801", "vehicle": {"position": {"latitude": -36.959103, "longitude": -73.011055, "bearing": 16.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694832597", "vehicle": {"licensePlate": "CZCF67"}}}, {"id": "97c64bd4-09f0-4524-bd6c-5385bf61ca72", "vehicle": {"position": {"latitude": -36.77934, "longitude": -73.0989, "bearing": 192.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889014", "vehicle": {"licensePlate": "RTZZ74"}}}, {"id": "13c0b732-60b5-4deb-822d-7fc3a0f584e6", "vehicle": {"position": {"latitude": -36.779446, "longitude": -73.099, "bearing": 112.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889008", "vehicle": {"licensePlate": "HBSK85"}}}, {"id": "74ead062-eb6b-4d34-bc98-cc193e6e3c0f", "vehicle": {"position": {"latitude": -36.808647, "longitude": -73.07712, "bearing": 316.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888980", "vehicle": {"licensePlate": "FWTT75"}}}, {"id": "f6c7df0b-714d-443e-82e7-4ee60942fccb", "vehicle": {"position": {"latitude": -36.77935, "longitude": -73.09935, "bearing": 240.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888982", "vehicle": {"licensePlate": "FBLC45"}}}, {"id": "7fac6d7a-da25-4d8f-b4f6-935d1130696c", "vehicle": {"position": {"latitude": -36.72341, "longitude": -73.12887, "bearing": 178.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888976", "vehicle": {"licensePlate": "ZT1157"}}}, {"id": "1115fc5b-e3f1-489b-8c06-9e1a124e8e3b", "vehicle": {"position": {"latitude": -36.77933, "longitude": -73.09928, "bearing": 290.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888984", "vehicle": {"licensePlate": "PCLT48"}}}, {"id": "12cb4185-9e13-4748-bbf5-e01d552397db", "vehicle": {"position": {"latitude": -36.958015, "longitude": -73.01049, "bearing": 16.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694819325", "vehicle": {"licensePlate": "GVFL65"}}}, {"id": "601e198d-2d71-4545-bd70-7ad00472d046", "vehicle": {"position": {"latitude": -36.7669, "longitude": -73.11301, "bearing": 108.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888922", "vehicle": {"licensePlate": "JKTZ69"}}}, {"id": "9ecde173-5de2-4691-a3c6-422b982fa081", "vehicle": {"position": {"latitude": -36.735943, "longitude": -73.102646, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694887805", "vehicle": {"licensePlate": "JSBB58"}}}, {"id": "1474f368-bbeb-43cc-ab9e-c994ce927d66", "vehicle": {"position": {"latitude": -36.78147, "longitude": -73.11269, "bearing": 74.0, "odometer": 0.0, "speed": 10.833333}, "timestamp": "1694889002", "vehicle": {"licensePlate": "RFSF88"}}}, {"id": "4c95ad46-99d3-4fbc-ab90-fb3330d71352", "vehicle": {"position": {"latitude": -36.76953, "longitude": -73.11399, "bearing": 244.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888598", "vehicle": {"licensePlate": "BDLT43"}}}, {"id": "e0cacf90-4fb8-4cd5-a81a-6ef1ff4d166a", "vehicle": {"position": {"latitude": -36.76938, "longitude": -73.11398, "bearing": 12.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888978", "vehicle": {"licensePlate": "XF4445"}}}, {"id": "69f5625a-aa24-4acb-ab0d-ea0c02b3e071", "vehicle": {"position": {"latitude": -36.793835, "longitude": -73.08784, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694844186", "vehicle": {"licensePlate": "YR1523"}}}, {"id": "4ccc4b0a-14dd-45a6-a83b-be43d8e55193", "vehicle": {"position": {"latitude": -36.824215, "longitude": -73.12998, "bearing": 211.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888890", "vehicle": {"licensePlate": "JKYY10"}}}, {"id": "8389f15a-2e43-4524-8aff-d646492fbba7", "vehicle": {"position": {"latitude": -36.71366, "longitude": -72.977394, "bearing": 192.0, "odometer": 0.0, "speed": 9.166667}, "timestamp": "1694889036", "vehicle": {"licensePlate": "LJKK94"}}}, {"id": "0b56f10d-a02e-4ed5-b1f8-4f80a188fd22", "vehicle": {"position": {"latitude": -36.711166, "longitude": -72.97445, "bearing": 135.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1692831606", "vehicle": {"licensePlate": "FXRZ49"}}}, {"id": "da99d0e9-e2b3-4c3c-b1d4-087d0305c3c8", "vehicle": {"position": {"latitude": -36.96435, "longitude": -72.92207, "bearing": 344.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1691158668", "vehicle": {"licensePlate": "LRJF10"}}}, {"id": "81aa659b-fad2-4a24-a97b-c07689db1f9c", "vehicle": {"position": {"latitude": -36.80705, "longitude": -73.05163, "bearing": 142.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694780450", "vehicle": {"licensePlate": "JBXY19"}}}, {"id": "ffd795f1-6027-44af-9a4c-9f1383c15775", "vehicle": {"position": {"latitude": -36.79337, "longitude": -73.117096, "bearing": 176.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694816830", "vehicle": {"licensePlate": "BLLW65"}}}, {"id": "79c63404-fde1-47ae-a6e8-813c56ad5f57", "vehicle": {"position": {"latitude": -36.949406, "longitude": -72.932014, "bearing": 136.0, "odometer": 0.0, "speed": 1.6666666}, "timestamp": "1694817361", "vehicle": {"licensePlate": "CZZL73"}}}, {"id": "e7cf2fc3-0a65-451a-9abb-4b43e5f69fd9", "vehicle": {"position": {"latitude": -36.7695, "longitude": -73.11393, "bearing": 322.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694699304", "vehicle": {"licensePlate": "HYYX38"}}}, {"id": "4547772f-e85f-4074-972b-618609033bc8", "vehicle": {"position": {"latitude": -36.949398, "longitude": -72.93192, "bearing": 86.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694824164", "vehicle": {"licensePlate": "DCXX33"}}}, {"id": "744372a0-65b7-415b-8651-f40021ba1c78", "vehicle": {"position": {"latitude": -36.766815, "longitude": -73.11358, "bearing": 98.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694816222", "vehicle": {"licensePlate": "BVBG99"}}}, {"id": "38b7d0a4-5447-4c13-8b0c-64f5b2bb8e42", "vehicle": {"position": {"latitude": -36.777145, "longitude": -73.112724, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888842", "vehicle": {"licensePlate": "CRGF19"}}}, {"id": "95d44f7c-a140-40b8-80ba-fbf343ded659", "vehicle": {"position": {"latitude": -36.97358, "longitude": -72.92663, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1693853886", "vehicle": {"licensePlate": "CHXX47"}}}, {"id": "064b1481-400f-45de-aa2e-f46bf68ece94", "vehicle": {"position": {"latitude": -36.95812, "longitude": -73.0107, "bearing": 151.0, "odometer": 0.0, "speed": 1.1111112}, "timestamp": "1694796109", "vehicle": {"licensePlate": "FCHP83"}}}, {"id": "52fb7ed5-4f8f-4bfe-a763-9c4c6d59853b", "vehicle": {"position": {"latitude": -36.949074, "longitude": -72.93167, "bearing": 42.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694821825", "vehicle": {"licensePlate": "FSRV92"}}}, {"id": "039cbcbb-54ac-4e51-9a36-e431ff791917", "vehicle": {"position": {"latitude": -36.71407, "longitude": -72.97777, "bearing": 199.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889008", "vehicle": {"licensePlate": "HYHP90"}}}, {"id": "7b3a30e9-aa06-4827-ab66-8475ece01472", "vehicle": {"position": {"latitude": -36.75243, "longitude": -73.09356, "bearing": 256.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1693945950", "vehicle": {"licensePlate": "BJFL93"}}}, {"id": "859df95d-4b4d-434c-bb4b-ecd7ef35755c", "vehicle": {"position": {"latitude": -36.79467, "longitude": -73.045876, "bearing": 3.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694813537", "vehicle": {"licensePlate": "YA5779"}}}, {"id": "c6c64f30-2f54-4350-9030-3630a47a87ea", "vehicle": {"position": {"latitude": -36.80979, "longitude": -73.07555, "bearing": 120.0, "odometer": 0.0, "speed": 53.0}, "timestamp": "1694810877", "vehicle": {"licensePlate": "BLLW54"}}}, {"id": "4fe85acf-69b3-4244-a116-80d2ea36592b", "vehicle": {"position": {"latitude": -36.78583, "longitude": -73.11002, "bearing": 358.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888412", "vehicle": {"licensePlate": "GLZD60"}}}, {"id": "78debfcb-e5b2-40f4-8a65-1d7f911ced05", "vehicle": {"position": {"latitude": -36.727077, "longitude": -72.98674, "bearing": 19.0, "odometer": 0.0, "speed": 7.5}, "timestamp": "1694889036", "vehicle": {"licensePlate": "FRVC68"}}}, {"id": "c4d22d53-5028-4a8f-a43a-210df0a5c8e4", "vehicle": {"position": {"latitude": -36.745605, "longitude": -73.08572, "bearing": 86.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694817782", "vehicle": {"licensePlate": "LTHR61"}}}, {"id": "c295bdee-94a4-4af2-a6f6-330b724271ac", "vehicle": {"position": {"latitude": -36.77741, "longitude": -73.1126, "bearing": 344.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888960", "vehicle": {"licensePlate": "FXRL31"}}}, {"id": "054a9445-9c7f-4fdd-a95e-6504f804c68b", "vehicle": {"position": {"latitude": -36.830532, "longitude": -73.1236, "bearing": 10.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694720142", "vehicle": {"licensePlate": "DRTS90"}}}, {"id": "10990262-5357-4a5c-9286-1eb712cb2be1", "vehicle": {"position": {"latitude": -36.779427, "longitude": -73.09899, "bearing": 156.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694880876", "vehicle": {"licensePlate": "FHDP28"}}}, {"id": "90c86390-bbd1-4683-a66e-6065d6d843d1", "vehicle": {"position": {"latitude": -36.79459, "longitude": -73.04583, "bearing": 81.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694466537", "vehicle": {"licensePlate": "YE1782"}}}, {"id": "7b6c3969-94dc-42ae-b940-780b1328fcab", "vehicle": {"position": {"latitude": -36.778843, "longitude": -73.09941, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1693495982", "vehicle": {"licensePlate": "JXFY29"}}}, {"id": "1d85f4c3-c124-4790-bd1a-a5f13ce04106", "vehicle": {"position": {"latitude": -36.76684, "longitude": -73.11312, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1693661228", "vehicle": {"licensePlate": "YU1587"}}}, {"id": "e279da8a-dcef-43bf-99fb-fbddb5f5743e", "vehicle": {"position": {"latitude": -36.7186, "longitude": -73.121056, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694812468", "vehicle": {"licensePlate": "ZR7384"}}}, {"id": "861f1d86-33b4-426b-b395-e97c21279c26", "vehicle": {"position": {"latitude": -36.82429, "longitude": -73.129944, "bearing": 203.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694626887", "vehicle": {"licensePlate": "FTPC89"}}}, {"id": "cbb1752b-6a3f-4269-b317-8ae9924b7551", "vehicle": {"position": {"latitude": -36.718773, "longitude": -73.120964, "bearing": 222.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694815936", "vehicle": {"licensePlate": "FXRL59"}}}, {"id": "3691fe2b-644c-4a1b-a29d-c93386175126", "vehicle": {"position": {"latitude": -36.778786, "longitude": -73.09956, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694863500", "vehicle": {"licensePlate": "TW8157"}}}, {"id": "5e76fdbf-7653-4b6c-a691-1846d8b7706e", "vehicle": {"position": {"latitude": -36.76686, "longitude": -73.11312, "bearing": 32.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888710", "vehicle": {"licensePlate": "WG9762"}}}, {"id": "4ec35611-6b2e-41c0-a965-c74413394ccc", "vehicle": {"position": {"latitude": -36.71338, "longitude": -72.977325, "bearing": 18.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694821624", "vehicle": {"licensePlate": "FLVZ61"}}}, {"id": "0ae3bce0-d5c3-48e9-9eef-c33935e1938d", "vehicle": {"position": {"latitude": -36.800014, "longitude": -73.05045, "bearing": 282.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694819464", "vehicle": {"licensePlate": "CDWP68"}}}, {"id": "199eb4a3-91d5-4be8-9e6d-f8c922ee798f", "vehicle": {"position": {"latitude": -36.794514, "longitude": -73.045715, "bearing": 350.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694815342", "vehicle": {"licensePlate": "FHDR27"}}}, {"id": "d4078b98-d09e-4b1f-9d8e-7bf8b7d65688", "vehicle": {"position": {"latitude": -36.8055, "longitude": -73.0385, "bearing": 112.0, "odometer": 0.0, "speed": 2.5}, "timestamp": "1694877938", "vehicle": {"licensePlate": "ZJ6338"}}}, {"id": "cabcc5f6-55b1-4ffe-8f87-c1bb9ebbac06", "vehicle": {"position": {"latitude": -36.805614, "longitude": -73.03834, "bearing": 156.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694815340", "vehicle": {"licensePlate": "ZV6534"}}}, {"id": "43a1c77d-02d4-49da-9b97-854f8cea310c", "vehicle": {"position": {"latitude": -36.805584, "longitude": -73.03829, "bearing": 74.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694813867", "vehicle": {"licensePlate": "BKTP81"}}}, {"id": "04ef7780-fad7-46c8-ad17-91c4fbd2996e", "vehicle": {"position": {"latitude": -36.810303, "longitude": -73.03217, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888736", "vehicle": {"licensePlate": "YH1687"}}}, {"id": "54f7968c-0a7f-4ec8-be9b-5d70deff41ee", "vehicle": {"position": {"latitude": -36.80554, "longitude": -73.03853, "bearing": 126.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888567", "vehicle": {"licensePlate": "DLJX56"}}}, {"id": "998601e8-03d1-4061-9a69-e2b23b3bff8c", "vehicle": {"position": {"latitude": -36.807133, "longitude": -73.029366, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694821080", "vehicle": {"licensePlate": "JPWD30"}}}, {"id": "6356ec63-f11d-4f11-a7db-afc75ad8cfdd", "vehicle": {"position": {"latitude": -36.803875, "longitude": -73.02642, "bearing": 164.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694827660", "vehicle": {"licensePlate": "JJJD44"}}}, {"id": "1e1d9256-c82f-45dc-bc6f-7b2406040f32", "vehicle": {"position": {"latitude": -36.795277, "longitude": -73.08986, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694876938", "vehicle": {"licensePlate": "YG6361"}}}, {"id": "15fd77d6-ce09-4834-ad6e-3cb32f3559b9", "vehicle": {"position": {"latitude": -36.79937, "longitude": -73.03421, "bearing": 242.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694826784", "vehicle": {"licensePlate": "WT7224"}}}, {"id": "27f481f7-530b-4ae8-9df2-63769c301973", "vehicle": {"position": {"latitude": -36.779377, "longitude": -73.09916, "bearing": 283.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888332", "vehicle": {"licensePlate": "FXRS15"}}}, {"id": "f8142647-9f05-4579-bede-01f0733718b1", "vehicle": {"position": {"latitude": -36.8184, "longitude": -73.06737, "bearing": 90.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888976", "vehicle": {"licensePlate": "FFVR31"}}}, {"id": "67ca6374-3eba-452b-8487-2a8050ee7ce1", "vehicle": {"position": {"latitude": -36.769512, "longitude": -73.113945, "bearing": 314.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694726516", "vehicle": {"licensePlate": "WE9170"}}}, {"id": "06b06cc9-ed37-43e7-898e-8f1efe13c1f4", "vehicle": {"position": {"latitude": -36.778706, "longitude": -73.09917, "bearing": 198.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888624", "vehicle": {"licensePlate": "JGYB33"}}}, {"id": "3e604404-a092-42b1-af68-b4b70d4e11aa", "vehicle": {"position": {"latitude": -36.79466, "longitude": -73.04617, "bearing": 262.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694871636", "vehicle": {"licensePlate": "DTCF89"}}}, {"id": "6570bf89-22fb-4658-b6b1-24d18312e207", "vehicle": {"position": {"latitude": -36.941303, "longitude": -73.02708, "bearing": 326.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694656926", "vehicle": {"licensePlate": "FFBT96"}}}, {"id": "1d47db63-17b1-4b11-ba9f-36531519824a", "vehicle": {"position": {"latitude": -36.843014, "longitude": -73.00952, "bearing": 256.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888832", "vehicle": {"licensePlate": "HWHK90"}}}, {"id": "6ece4f50-6fb2-4fe3-add2-a24f3bec9aa9", "vehicle": {"position": {"latitude": -36.72088, "longitude": -73.14266, "bearing": 22.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694880560", "vehicle": {"licensePlate": "DRTK88"}}}, {"id": "2f12a63e-ae04-4d36-a058-ae020d908e6c", "vehicle": {"position": {"latitude": -36.768753, "longitude": -73.11392, "bearing": 342.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888502", "vehicle": {"licensePlate": "JWXT11"}}}, {"id": "64fe14f0-a9bc-4c5b-8d4f-062556ae6f55", "vehicle": {"position": {"latitude": -36.78947, "longitude": -73.07878, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888736", "vehicle": {"licensePlate": "HSPJ76"}}}, {"id": "fc5fe03e-0530-4fc6-911c-2bfeb955500d", "vehicle": {"position": {"latitude": -36.799973, "longitude": -73.05056, "bearing": 284.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694824656", "vehicle": {"licensePlate": "BKFG52"}}}, {"id": "0d816fec-93fd-4296-a80a-1ae98177efbd", "vehicle": {"position": {"latitude": -36.973858, "longitude": -72.92699, "bearing": 284.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888778", "vehicle": {"licensePlate": "CJVF87"}}}, {"id": "7927e664-e0b9-4cbb-9901-cafe957ca73a", "vehicle": {"position": {"latitude": -36.96522, "longitude": -72.93555, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888743", "vehicle": {"licensePlate": "DHTZ43"}}}, {"id": "13d435dd-d414-4f20-8f57-cb98462b0a83", "vehicle": {"position": {"latitude": -36.794292, "longitude": -73.046165, "bearing": 194.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888974", "vehicle": {"licensePlate": "HYCZ75"}}}, {"id": "eb0dbe80-4493-4ffe-9a3f-d83dd3dac5b8", "vehicle": {"position": {"latitude": -36.935867, "longitude": -73.01321, "bearing": 64.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888864", "vehicle": {"licensePlate": "FLDG65"}}}, {"id": "0d4b5798-029a-4d0a-b1f8-113f6f6a10b1", "vehicle": {"position": {"latitude": -36.97311, "longitude": -72.926735, "bearing": 263.0, "odometer": 0.0, "speed": 0.5555556}, "timestamp": "1694815219", "vehicle": {"licensePlate": "HFLR38"}}}, {"id": "615cf9a4-03d5-4103-8928-de26fb90eb4e", "vehicle": {"position": {"latitude": -36.715034, "longitude": -72.97803, "bearing": 200.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888684", "vehicle": {"licensePlate": "HVLT91"}}}, {"id": "f94caef0-3f98-4d66-ade7-a59e242b8282", "vehicle": {"position": {"latitude": -36.794178, "longitude": -73.04571, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889024", "vehicle": {"licensePlate": "JJJD24"}}}, {"id": "a309f682-2a51-4b20-b7ac-d00c00995d19", "vehicle": {"position": {"latitude": -36.788364, "longitude": -73.10072, "bearing": 295.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694876277", "vehicle": {"licensePlate": "CFWC94"}}}, {"id": "915b4d0c-4d5a-456f-9761-1378d783b24d", "vehicle": {"position": {"latitude": -36.973602, "longitude": -72.92683, "bearing": 117.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888498", "vehicle": {"licensePlate": "GYGJ28"}}}, {"id": "a3146647-98d8-4e9d-9195-4780b5e7eb2f", "vehicle": {"position": {"latitude": -36.843014, "longitude": -73.009834, "bearing": 182.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888754", "vehicle": {"licensePlate": "DDFB28"}}}, {"id": "97576001-6ad8-4f83-b44d-2789094b4f25", "vehicle": {"position": {"latitude": -36.94874, "longitude": -73.01178, "bearing": 2.0, "odometer": 0.0, "speed": 1.1111112}, "timestamp": "1694877029", "vehicle": {"licensePlate": "DPGK78"}}}, {"id": "7869c912-62da-494a-b62c-c578207084c1", "vehicle": {"position": {"latitude": -36.70941, "longitude": -73.13959, "bearing": 64.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694816766", "vehicle": {"licensePlate": "WC2556"}}}, {"id": "e8ee2b8b-7db6-4dea-83b7-f09fdbd0b298", "vehicle": {"position": {"latitude": -36.84283, "longitude": -73.009514, "bearing": 20.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694882250", "vehicle": {"licensePlate": "HYYX49"}}}, {"id": "e130472c-c3a3-4ad2-88b3-89d53e43e264", "vehicle": {"position": {"latitude": -36.80797, "longitude": -73.06859, "bearing": 308.0, "odometer": 0.0, "speed": 9.166667}, "timestamp": "1694888990", "vehicle": {"licensePlate": "BLYR50"}}}, {"id": "b5a5d891-0b75-430c-9b22-8e921adbbd8f", "vehicle": {"position": {"latitude": -36.710533, "longitude": -73.14478, "bearing": 280.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694816098", "vehicle": {"licensePlate": "JZYF47"}}}, {"id": "007f660c-5bc3-4904-b0f4-148edf9a483f", "vehicle": {"position": {"latitude": -36.78965, "longitude": -73.07887, "bearing": 20.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694818360", "vehicle": {"licensePlate": "JSBC90"}}}, {"id": "c3caebe2-ae60-49cd-840c-2ed7b4e249a3", "vehicle": {"position": {"latitude": -36.842693, "longitude": -73.00978, "bearing": 286.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694878620", "vehicle": {"licensePlate": "CFZD34"}}}, {"id": "dd639815-cc89-482d-b09a-ef7ee1785b5c", "vehicle": {"position": {"latitude": -36.747234, "longitude": -73.08941, "bearing": 200.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694876538", "vehicle": {"licensePlate": "LCCH59"}}}, {"id": "d2965af3-587e-49be-aeec-007fb506eb2d", "vehicle": {"position": {"latitude": -36.78982, "longitude": -73.07911, "bearing": 254.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888524", "vehicle": {"licensePlate": "GZPF58"}}}, {"id": "48872e08-1c10-465d-a5be-5848be908a62", "vehicle": {"position": {"latitude": -36.843067, "longitude": -73.009544, "bearing": 264.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888792", "vehicle": {"licensePlate": "HKWG94"}}}, {"id": "4f3fda8a-333a-4f11-9ec2-6296609d6ead", "vehicle": {"position": {"latitude": -36.928516, "longitude": -73.018394, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694877249", "vehicle": {"licensePlate": "FFCC61"}}}, {"id": "9e2ff753-ed1b-4618-bc85-80b17fe2fca9", "vehicle": {"position": {"latitude": -36.94165, "longitude": -73.01533, "bearing": 154.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888986", "vehicle": {"licensePlate": "WR4056"}}}, {"id": "52c6d5da-0015-4056-b222-956bd900626c", "vehicle": {"position": {"latitude": -36.919727, "longitude": -73.02464, "bearing": 333.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888967", "vehicle": {"licensePlate": "HFLR39"}}}, {"id": "1341105c-fed9-471f-86d9-afe4ce5fd06b", "vehicle": {"position": {"latitude": -36.914047, "longitude": -73.02446, "bearing": 273.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694828063", "vehicle": {"licensePlate": "DKYR64"}}}, {"id": "dc9ea0ab-7e68-4f0e-abfb-b01b74442343", "vehicle": {"position": {"latitude": -36.94872, "longitude": -73.01175, "bearing": 57.0, "odometer": 0.0, "speed": 1.6666666}, "timestamp": "1694817028", "vehicle": {"licensePlate": "DBXV69"}}}, {"id": "6eec68de-cf7d-4692-97a1-64899170d5bb", "vehicle": {"position": {"latitude": -36.8429, "longitude": -73.01005, "bearing": 328.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694694096", "vehicle": {"licensePlate": "FYBC41"}}}, {"id": "c7d11308-fdde-4b6e-9a21-1b2c8e40d576", "vehicle": {"position": {"latitude": -36.93224, "longitude": -73.02534, "bearing": 301.0, "odometer": 0.0, "speed": 2.2222223}, "timestamp": "1694827956", "vehicle": {"licensePlate": "CXLW89"}}}, {"id": "e0985350-2f77-430d-bbb6-4acb92966a8c", "vehicle": {"position": {"latitude": -36.94876, "longitude": -73.01173, "bearing": 284.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888762", "vehicle": {"licensePlate": "HYYX18"}}}, {"id": "5536ab73-b062-403d-b4c8-574b9cc93af3", "vehicle": {"position": {"latitude": -36.75289, "longitude": -73.10897, "bearing": 104.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694783976", "vehicle": {"licensePlate": "FYDV51"}}}, {"id": "c890d07a-3ae0-44cf-a5db-6d2035293887", "vehicle": {"position": {"latitude": -36.972878, "longitude": -72.92676, "bearing": 24.0, "odometer": 0.0, "speed": 1.6666666}, "timestamp": "1694875780", "vehicle": {"licensePlate": "GJLW52"}}}, {"id": "db7a9db2-19ee-413e-9be3-5115a2593856", "vehicle": {"position": {"latitude": -36.962757, "longitude": -72.93211, "bearing": 46.0, "odometer": 0.0, "speed": 7.5}, "timestamp": "1694889036", "vehicle": {"licensePlate": "HYHP59"}}}, {"id": "a3287553-3d57-499f-8d9c-741fb7b4943d", "vehicle": {"position": {"latitude": -36.772896, "longitude": -73.09065, "bearing": 3.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694817992", "vehicle": {"licensePlate": "GLDB89"}}}, {"id": "8cbcbebe-ea13-4625-8add-71fd3ea7460d", "vehicle": {"position": {"latitude": -36.973484, "longitude": -72.92656, "bearing": 24.0, "odometer": 0.0, "speed": 2.7777777}, "timestamp": "1694818430", "vehicle": {"licensePlate": "FPYX34"}}}, {"id": "ac903df6-6eb7-43a5-aa90-280ac0fea0e1", "vehicle": {"position": {"latitude": -36.77454, "longitude": -73.023674, "bearing": 62.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694872256", "vehicle": {"licensePlate": "FGDF53"}}}, {"id": "b280bcec-dd66-4762-bd0f-db8e4438018b", "vehicle": {"position": {"latitude": -36.830593, "longitude": -73.12356, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694804994", "vehicle": {"licensePlate": "FTPC88"}}}, {"id": "e8afc77b-548c-48b6-8282-c806dbe84674", "vehicle": {"position": {"latitude": -36.832527, "longitude": -73.004585, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1693001512", "vehicle": {"licensePlate": "BKXV50"}}}, {"id": "1e2f9bb6-c998-426c-8d09-b13772029025", "vehicle": {"position": {"latitude": -36.94207, "longitude": -73.01708, "bearing": 242.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694879422", "vehicle": {"licensePlate": "FPHX87"}}}, {"id": "7b4f83dd-7c58-43e4-9fed-0454d9aabc0f", "vehicle": {"position": {"latitude": -36.830704, "longitude": -73.12387, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694877810", "vehicle": {"licensePlate": "DRTS93"}}}, {"id": "df3e17f8-70cf-4803-bc5e-635168c70d57", "vehicle": {"position": {"latitude": -36.789684, "longitude": -73.07881, "bearing": 352.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694782372", "vehicle": {"licensePlate": "ZP1890"}}}, {"id": "522a9470-85bd-49ec-b125-9848ae5f269c", "vehicle": {"position": {"latitude": -36.779446, "longitude": -73.09951, "bearing": 122.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694865884", "vehicle": {"licensePlate": "DJTS15"}}}, {"id": "a7ffd3de-081c-4a50-a8b1-d8f7e06ad9be", "vehicle": {"position": {"latitude": -36.805656, "longitude": -73.03833, "bearing": 11.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694876341", "vehicle": {"licensePlate": "CDGG94"}}}, {"id": "0a3e857e-1ce6-4de6-a3d9-7d26d46ee932", "vehicle": {"position": {"latitude": -36.77158, "longitude": -73.08646, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694873910", "vehicle": {"licensePlate": "JSBB39"}}}, {"id": "ccce4dce-f250-4b9f-a9ed-711db0510e3b", "vehicle": {"position": {"latitude": -36.800636, "longitude": -73.09935, "bearing": 216.0, "odometer": 0.0, "speed": 0.8333333}, "timestamp": "1694888968", "vehicle": {"licensePlate": "DRFL61"}}}, {"id": "046ea81c-9d29-41c8-ae6e-94aeeb7fc831", "vehicle": {"position": {"latitude": -36.84298, "longitude": -73.00948, "bearing": 176.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694814234", "vehicle": {"licensePlate": "YR1526"}}}, {"id": "2d70e19a-1070-4608-afa4-e07903de28ef", "vehicle": {"position": {"latitude": -36.97336, "longitude": -72.926636, "bearing": 12.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888775", "vehicle": {"licensePlate": "DLDW43"}}}, {"id": "aaf39940-4f32-421a-87c2-1b2a6b577ec0", "vehicle": {"position": {"latitude": -36.84308, "longitude": -73.009705, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694783994", "vehicle": {"licensePlate": "DBHL18"}}}, {"id": "9de81ea6-7dcf-4cec-9a48-e1da349465fe", "vehicle": {"position": {"latitude": -36.84278, "longitude": -73.009865, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694784648", "vehicle": {"licensePlate": "GRWD85"}}}, {"id": "a7ff5181-b228-4f71-b45d-c7a9e0b10b1f", "vehicle": {"position": {"latitude": -36.884567, "longitude": -73.03762, "bearing": 174.0, "odometer": 0.0, "speed": 18.61111}, "timestamp": "1694889008", "vehicle": {"licensePlate": "UW8145"}}}, {"id": "21a1404d-347d-4ebc-8d58-d7e97e8652bb", "vehicle": {"position": {"latitude": -36.806793, "longitude": -73.05143, "bearing": 242.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694882188", "vehicle": {"licensePlate": "HZHG85"}}}, {"id": "0b1c5178-88e4-49f1-aef2-21754c820a90", "vehicle": {"position": {"latitude": -36.852882, "longitude": -73.13289, "bearing": 196.0, "odometer": 0.0, "speed": 7.7777777}, "timestamp": "1694889002", "vehicle": {"licensePlate": "JSBB22"}}}, {"id": "ba2f8ae3-d48e-45fc-847e-41c45a56de9e", "vehicle": {"position": {"latitude": -36.82787, "longitude": -73.14771, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888578", "vehicle": {"licensePlate": "ZY3567"}}}, {"id": "ddfb9840-ff36-4a03-8a70-db9373a8ce8b", "vehicle": {"position": {"latitude": -36.793663, "longitude": -73.02433, "bearing": 79.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888900", "vehicle": {"licensePlate": "FTBB80"}}}, {"id": "16c072e1-b88b-4542-a62a-1fb1f3fa2278", "vehicle": {"position": {"latitude": -36.83343, "longitude": -73.147736, "bearing": 95.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888858", "vehicle": {"licensePlate": "FDCG86"}}}, {"id": "ac88e0fe-15f5-4bd3-bc9b-ad4cfd7fd68c", "vehicle": {"position": {"latitude": -36.829037, "longitude": -73.14792, "bearing": 160.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694872994", "vehicle": {"licensePlate": "WK9937"}}}, {"id": "76ed5738-0a1c-4192-96e0-797aec9d61ab", "vehicle": {"position": {"latitude": -36.828896, "longitude": -73.147766, "bearing": 81.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694886334", "vehicle": {"licensePlate": "HYZB31"}}}, {"id": "951612b4-df65-46a4-a71f-b480a74f6346", "vehicle": {"position": {"latitude": -36.795227, "longitude": -73.08623, "bearing": 271.0, "odometer": 0.0, "speed": 0.5555556}, "timestamp": "1694880253", "vehicle": {"licensePlate": "FFZZ68"}}}, {"id": "018aca5b-c022-4123-983a-52c1d8cf76f2", "vehicle": {"position": {"latitude": -36.718998, "longitude": -73.12084, "bearing": 153.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694801025", "vehicle": {"licensePlate": "XY6939"}}}, {"id": "8ae25a4c-744a-4323-86e1-7f90545b49aa", "vehicle": {"position": {"latitude": -36.97289, "longitude": -72.92677, "bearing": 249.0, "odometer": 0.0, "speed": 0.8333333}, "timestamp": "1694828215", "vehicle": {"licensePlate": "HDBZ78"}}}, {"id": "bc00a0bc-64e7-4af8-b7b6-d695d7cc2477", "vehicle": {"position": {"latitude": -36.94581, "longitude": -73.016464, "bearing": 158.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694735940", "vehicle": {"licensePlate": "DVYS10"}}}, {"id": "4bc88f53-ccf2-49cb-bcfd-e2febb4b474e", "vehicle": {"position": {"latitude": -36.971027, "longitude": -72.9408, "bearing": 292.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888961", "vehicle": {"licensePlate": "GSRS43"}}}, {"id": "2721d4dd-b18d-4dfa-b2cf-be610d1cd34d", "vehicle": {"position": {"latitude": -36.957985, "longitude": -73.01073, "bearing": 176.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694883630", "vehicle": {"licensePlate": "JXFY79"}}}, {"id": "0ab46b8e-0706-4faf-bc05-de08e5088596", "vehicle": {"position": {"latitude": -36.95792, "longitude": -73.01052, "bearing": 284.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694827928", "vehicle": {"licensePlate": "JHHJ90"}}}, {"id": "66b98987-9a1e-43e1-b485-3ba5a86679f3", "vehicle": {"position": {"latitude": -36.775074, "longitude": -73.08732, "bearing": 266.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694824226", "vehicle": {"licensePlate": "RJWZ86"}}}, {"id": "a4c4a7fc-65e0-4862-b595-c99cef0d11b5", "vehicle": {"position": {"latitude": -36.797504, "longitude": -73.048645, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694887101", "vehicle": {"licensePlate": "CXLF12"}}}, {"id": "2f49c0e2-1fea-4738-8c77-c9bc38e0a300", "vehicle": {"position": {"latitude": -36.794735, "longitude": -73.04582, "bearing": 190.0, "odometer": 0.0, "speed": 1.6666666}, "timestamp": "1694723563", "vehicle": {"licensePlate": "YE1784"}}}, {"id": "53451c10-b977-43d5-b5d8-49fa2215ce7b", "vehicle": {"position": {"latitude": -36.79443, "longitude": -73.045525, "bearing": 208.0, "odometer": 0.0, "speed": 3.3333333}, "timestamp": "1694810354", "vehicle": {"licensePlate": "BZPH33"}}}, {"id": "085fd450-b1e9-4a28-9d1f-d5ed28be53c0", "vehicle": {"position": {"latitude": -36.789608, "longitude": -73.078964, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694877282", "vehicle": {"licensePlate": "FXRL34"}}}, {"id": "133c0be7-3362-4e1b-8936-c00a8a9f0592", "vehicle": {"position": {"latitude": -36.78967, "longitude": -73.078804, "bearing": 12.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694820102", "vehicle": {"licensePlate": "RFSF84"}}}, {"id": "86128e48-9e3a-4b04-8fa9-522f22ecc960", "vehicle": {"position": {"latitude": -36.78988, "longitude": -73.07872, "bearing": 170.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694822512", "vehicle": {"licensePlate": "LRJX48"}}}, {"id": "e54da266-10f8-4e35-b72f-15f5c1708678", "vehicle": {"position": {"latitude": -36.78986, "longitude": -73.07873, "bearing": 22.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694820638", "vehicle": {"licensePlate": "FYBD64"}}}, {"id": "7390cde2-e8f8-4d06-bf4f-a4b56f7cb5ba", "vehicle": {"position": {"latitude": -36.78981, "longitude": -73.078865, "bearing": 320.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888582", "vehicle": {"licensePlate": "CXPR28"}}}, {"id": "73b6a552-16ce-4da8-bae8-a322d604854f", "vehicle": {"position": {"latitude": -36.803593, "longitude": -73.044266, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694789194", "vehicle": {"licensePlate": "FXJV68"}}}, {"id": "69f270fa-8eea-4e56-a7df-3aed67958e42", "vehicle": {"position": {"latitude": -36.82903, "longitude": -73.14786, "bearing": 174.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888574", "vehicle": {"licensePlate": "LJKK69"}}}, {"id": "062bb761-d9d1-4214-8d48-78f7ef450f6f", "vehicle": {"position": {"latitude": -36.72462, "longitude": -72.9876, "bearing": 300.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694884744", "vehicle": {"licensePlate": "FXJV67"}}}, {"id": "12b9e65a-2a20-47bc-8500-9bf61683dbe8", "vehicle": {"position": {"latitude": -36.710606, "longitude": -73.14439, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694873748", "vehicle": {"licensePlate": "YS1136"}}}, {"id": "320af8b8-2d0d-4ae1-9f31-b5d733d1d4a5", "vehicle": {"position": {"latitude": -36.807, "longitude": -73.05142, "bearing": 236.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694797934", "vehicle": {"licensePlate": "FXRL36"}}}, {"id": "c6b4759d-1519-4802-b599-db9162fa6dce", "vehicle": {"position": {"latitude": -36.78073, "longitude": -73.108955, "bearing": 254.0, "odometer": 0.0, "speed": 1.3888888}, "timestamp": "1694889010", "vehicle": {"licensePlate": "HRBZ32"}}}, {"id": "58026ef8-017d-426d-bc5d-c00a20a12b7a", "vehicle": {"position": {"latitude": -36.715717, "longitude": -72.978424, "bearing": 18.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694530611", "vehicle": {"licensePlate": "BHVB23"}}}, {"id": "b9733c71-8877-4ae1-b65c-c83aa2d641f4", "vehicle": {"position": {"latitude": -36.79509, "longitude": -73.107376, "bearing": 342.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694817156", "vehicle": {"licensePlate": "FXRZ75"}}}, {"id": "483d7e86-5c87-4cd4-84c0-383b5b3ad4d2", "vehicle": {"position": {"latitude": -36.82396, "longitude": -73.05618, "bearing": 334.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889014", "vehicle": {"licensePlate": "HYYX56"}}}, {"id": "e28ae597-0bba-48ab-912c-357c17c2e180", "vehicle": {"position": {"latitude": -36.769424, "longitude": -73.11378, "bearing": 190.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694869062", "vehicle": {"licensePlate": "DRTS62"}}}, {"id": "70f7d3cf-2d51-46ca-b6e4-ada861c4e186", "vehicle": {"position": {"latitude": -36.777275, "longitude": -73.111496, "bearing": 106.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889016", "vehicle": {"licensePlate": "GKGT94"}}}, {"id": "8d5006ea-c308-47b8-b062-6cc2848f60f4", "vehicle": {"position": {"latitude": -36.779366, "longitude": -73.09904, "bearing": 113.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694877888", "vehicle": {"licensePlate": "HVXY10"}}}, {"id": "c1cd8ce9-6d86-4321-a9c8-95b94be2d8f2", "vehicle": {"position": {"latitude": -36.769485, "longitude": -73.11358, "bearing": 56.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694730126", "vehicle": {"licensePlate": "BBGR90"}}}, {"id": "df811357-3072-4719-9c0a-b270047bd2bd", "vehicle": {"position": {"latitude": -36.769436, "longitude": -73.11363, "bearing": 110.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694884162", "vehicle": {"licensePlate": "HKRJ92"}}}, {"id": "c7588801-53ea-4eae-bee6-4f5082d29fe0", "vehicle": {"position": {"latitude": -36.769093, "longitude": -73.11384, "bearing": 108.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694884658", "vehicle": {"licensePlate": "BFVR84"}}}, {"id": "038f4c9a-6491-4a86-99fd-a51ed0447efe", "vehicle": {"position": {"latitude": -36.824497, "longitude": -73.13021, "bearing": 62.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694745034", "vehicle": {"licensePlate": "HRPG11"}}}, {"id": "eb4f5c9f-740e-4074-8f16-389b5f15270c", "vehicle": {"position": {"latitude": -36.76959, "longitude": -73.11365, "bearing": 230.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694865797", "vehicle": {"licensePlate": "DLVT14"}}}, {"id": "c539b8b8-ba62-44b0-8edb-d62b04c4d3c4", "vehicle": {"position": {"latitude": -36.828903, "longitude": -73.147644, "bearing": 173.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888998", "vehicle": {"licensePlate": "LJKK18"}}}, {"id": "7fe120a9-a024-4f91-95e0-364e8c6818b8", "vehicle": {"position": {"latitude": -36.940697, "longitude": -73.02318, "bearing": 166.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889006", "vehicle": {"licensePlate": "CBKL86"}}}, {"id": "199de7ce-561d-490f-99d1-877e9cb8661c", "vehicle": {"position": {"latitude": -36.949436, "longitude": -72.93189, "bearing": 154.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694826400", "vehicle": {"licensePlate": "HJYB84"}}}, {"id": "d3e2379f-1688-40e6-9171-12065ac5e815", "vehicle": {"position": {"latitude": -36.966022, "longitude": -72.95627, "bearing": 117.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1693850863", "vehicle": {"licensePlate": "FLHL95"}}}, {"id": "4740a8ec-7b2b-4f81-abe9-3bc5a7cd9f0c", "vehicle": {"position": {"latitude": -36.958187, "longitude": -73.010796, "bearing": 250.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694814006", "vehicle": {"licensePlate": "YG6026"}}}, {"id": "90af81c0-cdd6-4788-b613-66b950551978", "vehicle": {"position": {"latitude": -36.794632, "longitude": -73.046196, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694469361", "vehicle": {"licensePlate": "HXZV35"}}}, {"id": "6d891daf-43f1-483b-92b5-00a7f96400db", "vehicle": {"position": {"latitude": -37.091557, "longitude": -73.155334, "bearing": 34.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888830", "vehicle": {"licensePlate": "RLXS59"}}}, {"id": "31869138-3302-42b5-9d91-02973f0b125e", "vehicle": {"position": {"latitude": -36.95816, "longitude": -73.01102, "bearing": 21.0, "odometer": 0.0, "speed": 1.6666666}, "timestamp": "1694886612", "vehicle": {"licensePlate": "FFVP27"}}}, {"id": "8c7d74f8-bc96-4b45-bfdd-2bcb83230bb6", "vehicle": {"position": {"latitude": -36.94175, "longitude": -73.015335, "bearing": 352.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889025", "vehicle": {"licensePlate": "YR3697"}}}, {"id": "b5863d80-b1a0-4218-a879-c82c997f4b9a", "vehicle": {"position": {"latitude": -36.78956, "longitude": -73.09641, "bearing": 264.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889006", "vehicle": {"licensePlate": "GZGH33"}}}, {"id": "29229c27-527b-435e-9383-107754c779a5", "vehicle": {"position": {"latitude": -36.824646, "longitude": -73.130165, "bearing": 154.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888738", "vehicle": {"licensePlate": "FXRL61"}}}, {"id": "d69f93d6-f434-4536-b56c-eb4163806b8f", "vehicle": {"position": {"latitude": -36.89408, "longitude": -73.13311, "bearing": 12.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888979", "vehicle": {"licensePlate": "JZVD74"}}}, {"id": "9d69b4bc-9a94-4f91-9b5c-1c1ac346d335", "vehicle": {"position": {"latitude": -36.789642, "longitude": -73.086914, "bearing": 182.0, "odometer": 0.0, "speed": 10.555555}, "timestamp": "1694889002", "vehicle": {"licensePlate": "HLHP85"}}}, {"id": "f751c932-24f7-4828-8d08-93c7c7217e96", "vehicle": {"position": {"latitude": -36.95813, "longitude": -73.010956, "bearing": 34.0, "odometer": 0.0, "speed": 3.0555556}, "timestamp": "1694889034", "vehicle": {"licensePlate": "TJ9644"}}}, {"id": "7b155959-78dc-47ec-b6ab-edd87e24d805", "vehicle": {"position": {"latitude": -36.949135, "longitude": -72.93185, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694874776", "vehicle": {"licensePlate": "LPCT47"}}}, {"id": "4f1d7439-fddc-4cfc-9d0f-5cdc16a1b732", "vehicle": {"position": {"latitude": -36.849583, "longitude": -73.14228, "bearing": 93.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694644147", "vehicle": {"licensePlate": "FSLC61"}}}, {"id": "b0bdff69-a36d-4682-8a55-df48fcbb81d3", "vehicle": {"position": {"latitude": -36.950096, "longitude": -73.02429, "bearing": 248.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694816118", "vehicle": {"licensePlate": "XV4457"}}}, {"id": "b3faa8d6-cac9-4bd9-a981-f803e30af70b", "vehicle": {"position": {"latitude": -36.79445, "longitude": -73.04613, "bearing": 267.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694875575", "vehicle": {"licensePlate": "XZ9797"}}}, {"id": "84c9f6ea-8e02-44ab-a53f-40564b5d8160", "vehicle": {"position": {"latitude": -36.7948, "longitude": -73.04586, "bearing": 17.0, "odometer": 0.0, "speed": 2.7777777}, "timestamp": "1694816586", "vehicle": {"licensePlate": "BHXT56"}}}, {"id": "c6765fd9-80a9-470e-b47b-250831d895be", "vehicle": {"position": {"latitude": -36.78975, "longitude": -73.07916, "bearing": 234.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694828086", "vehicle": {"licensePlate": "FXRL32"}}}, {"id": "52f66dc9-f11e-46e9-9a22-acf5c4d034c6", "vehicle": {"position": {"latitude": -36.966053, "longitude": -72.95629, "bearing": 132.0, "odometer": 0.0, "speed": 3.0555556}, "timestamp": "1694889004", "vehicle": {"licensePlate": "FXRZ71"}}}, {"id": "0fc93254-7482-4115-bb41-00804adf9e66", "vehicle": {"position": {"latitude": -36.941498, "longitude": -73.027115, "bearing": 244.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694878722", "vehicle": {"licensePlate": "FGYZ21"}}}, {"id": "3b598e23-c948-42fe-8e4b-8157ff4fa700", "vehicle": {"position": {"latitude": -36.828964, "longitude": -73.14821, "bearing": 15.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694816909", "vehicle": {"licensePlate": "XY6941"}}}, {"id": "825a39e2-b6ce-4869-8a3d-719af192dc27", "vehicle": {"position": {"latitude": -36.735687, "longitude": -73.1025, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694871587", "vehicle": {"licensePlate": "JCPP91"}}}, {"id": "ae91457f-ad93-45cd-9508-2c06202581c0", "vehicle": {"position": {"latitude": -36.71401, "longitude": -72.977745, "bearing": 241.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888518", "vehicle": {"licensePlate": "GVFL97"}}}, {"id": "755f6c0c-5988-46b4-bd88-08eb830a0681", "vehicle": {"position": {"latitude": -36.77941, "longitude": -73.09891, "bearing": 14.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694797138", "vehicle": {"licensePlate": "CSYY24"}}}, {"id": "ea3e05ec-a748-4449-b6a8-e271f0eda0de", "vehicle": {"position": {"latitude": -36.824677, "longitude": -73.13006, "bearing": 200.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889001", "vehicle": {"licensePlate": "FFTL52"}}}, {"id": "f787c927-1ca3-458c-8d90-965901ed1051", "vehicle": {"position": {"latitude": -36.828884, "longitude": -73.14752, "bearing": 87.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888612", "vehicle": {"licensePlate": "ZB7134"}}}, {"id": "b5a1ed52-7609-42bb-8143-772d23016fb6", "vehicle": {"position": {"latitude": -36.86916, "longitude": -73.13617, "bearing": 193.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889018", "vehicle": {"licensePlate": "HPVS37"}}}, {"id": "48272865-6049-44ce-a784-2a41934c1d09", "vehicle": {"position": {"latitude": -36.843494, "longitude": -73.05609, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888978", "vehicle": {"licensePlate": "JHJF80"}}}, {"id": "11353411-3eed-4e8b-b339-1a47b5ded816", "vehicle": {"position": {"latitude": -36.805588, "longitude": -73.03829, "bearing": 78.0, "odometer": 0.0, "speed": 3.3333333}, "timestamp": "1694882258", "vehicle": {"licensePlate": "DRFP69"}}}, {"id": "ffbd2a42-280d-440d-a778-77276c192642", "vehicle": {"position": {"latitude": -36.79468, "longitude": -73.04583, "bearing": 100.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694776444", "vehicle": {"licensePlate": "FXJV64"}}}, {"id": "1d76bd8f-9935-4bac-95dd-e41d5093e937", "vehicle": {"position": {"latitude": -36.794815, "longitude": -73.04585, "bearing": 46.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888838", "vehicle": {"licensePlate": "BFGY14"}}}, {"id": "0ddabeae-d38c-42a6-bdb7-4673125d8d89", "vehicle": {"position": {"latitude": -36.79468, "longitude": -73.04587, "bearing": 195.0, "odometer": 0.0, "speed": 1.6666666}, "timestamp": "1694517514", "vehicle": {"licensePlate": "DRZR92"}}}, {"id": "26757fa7-e4c7-4be8-8784-be2a513e88f3", "vehicle": {"position": {"latitude": -36.794807, "longitude": -73.046, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694720146", "vehicle": {"licensePlate": "WZ6630"}}}, {"id": "734aa647-8889-45f0-98d7-dd36ea7d6e6d", "vehicle": {"position": {"latitude": -36.79453, "longitude": -73.04576, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694006397", "vehicle": {"licensePlate": "BBFC20"}}}, {"id": "38e66bc7-e2e4-44f9-9705-d9c62367b0af", "vehicle": {"position": {"latitude": -36.829945, "longitude": -73.12101, "bearing": 158.0, "odometer": 0.0, "speed": 3.3333335}, "timestamp": "1694889007", "vehicle": {"licensePlate": "DWKX29"}}}, {"id": "6c4f7a72-d68d-4a78-9471-c574cf33fad1", "vehicle": {"position": {"latitude": -36.8306, "longitude": -73.12343, "bearing": 10.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694880702", "vehicle": {"licensePlate": "HYVR34"}}}, {"id": "96e32aa1-0714-4e7d-b4fa-ffa52b5fdbb3", "vehicle": {"position": {"latitude": -36.794254, "longitude": -73.0461, "bearing": 186.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888982", "vehicle": {"licensePlate": "DRXZ78"}}}, {"id": "18068472-c02e-4309-9868-83a5ce34f7bd", "vehicle": {"position": {"latitude": -36.805275, "longitude": -73.03941, "bearing": 260.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889002", "vehicle": {"licensePlate": "FXRZ72"}}}, {"id": "a3c5a734-3a07-40b4-a69d-196331de49cc", "vehicle": {"position": {"latitude": -36.794167, "longitude": -73.04609, "bearing": 10.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888652", "vehicle": {"licensePlate": "HYCZ50"}}}, {"id": "8b60b0f0-2a06-4abb-a63b-b254081265ae", "vehicle": {"position": {"latitude": -36.80711, "longitude": -73.0293, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1693496706", "vehicle": {"licensePlate": "JPWD28"}}}, {"id": "1c12bad9-6da9-4bb9-895d-9cc17bf1a49b", "vehicle": {"position": {"latitude": -36.794098, "longitude": -73.04608, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694867060", "vehicle": {"licensePlate": "FHTB59"}}}, {"id": "6e67335e-4328-4919-ba20-cf5b2840daf5", "vehicle": {"position": {"latitude": -36.794308, "longitude": -73.04601, "bearing": 196.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888598", "vehicle": {"licensePlate": "CBKD97"}}}, {"id": "0142b8aa-0eed-473f-be01-b5bf83df65e8", "vehicle": {"position": {"latitude": -36.79415, "longitude": -73.04609, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694867272", "vehicle": {"licensePlate": "RFSC18"}}}, {"id": "3ca68ecd-9293-4e5e-88d2-c2ade37738c1", "vehicle": {"position": {"latitude": -36.792072, "longitude": -73.0409, "bearing": 312.0, "odometer": 0.0, "speed": 10.0}, "timestamp": "1694888912", "vehicle": {"licensePlate": "UW8872"}}}, {"id": "01659232-f63e-4a1e-b670-9a98a1c80760", "vehicle": {"position": {"latitude": -36.711685, "longitude": -73.13327, "bearing": 250.0, "odometer": 0.0, "speed": 5.5555553}, "timestamp": "1694883050", "vehicle": {"licensePlate": "YR1525"}}}, {"id": "7003047b-bf86-4306-b96e-c186e0399808", "vehicle": {"position": {"latitude": -36.789608, "longitude": -73.079155, "bearing": 158.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694867078", "vehicle": {"licensePlate": "BWYH23"}}}, {"id": "21aa3323-5d59-4c26-b8bf-153220686fc3", "vehicle": {"position": {"latitude": -36.789818, "longitude": -73.078896, "bearing": 298.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694778988", "vehicle": {"licensePlate": "WC7555"}}}, {"id": "e5c6ec68-2868-4510-8606-417644b7284b", "vehicle": {"position": {"latitude": -36.789867, "longitude": -73.078674, "bearing": 96.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694829148", "vehicle": {"licensePlate": "ZT3952"}}}, {"id": "e86c23ef-f3e3-42f0-a91e-55db4467ac41", "vehicle": {"position": {"latitude": -36.82417, "longitude": -73.13022, "bearing": 214.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694697714", "vehicle": {"licensePlate": "YE2817"}}}, {"id": "a129d775-bac6-4b38-99fe-acc06f8853dc", "vehicle": {"position": {"latitude": -36.8243, "longitude": -73.12985, "bearing": 145.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694700878", "vehicle": {"licensePlate": "FYBD16"}}}, {"id": "1facd996-e12c-483b-85bc-cc40afce8d16", "vehicle": {"position": {"latitude": -36.800953, "longitude": -73.05095, "bearing": 182.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1692738670", "vehicle": {"licensePlate": "FPZJ47"}}}, {"id": "4cb1016a-1929-4651-9c0f-afebc17c5e18", "vehicle": {"position": {"latitude": -36.973167, "longitude": -72.926605, "bearing": 99.0, "odometer": 0.0, "speed": 0.8333333}, "timestamp": "1694880259", "vehicle": {"licensePlate": "HFLX60"}}}, {"id": "f148e20f-e66e-4d33-b422-519ecb07b2fd", "vehicle": {"position": {"latitude": -36.71435, "longitude": -73.13594, "bearing": 170.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694819338", "vehicle": {"licensePlate": "HYHP70"}}}, {"id": "13d6b35f-ca28-499f-9e8b-f8f33b9e6f86", "vehicle": {"position": {"latitude": -36.94872, "longitude": -73.011604, "bearing": 354.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888968", "vehicle": {"licensePlate": "GJLK17"}}}, {"id": "7d19b2a9-06f8-4551-8fd6-f04bea9a0078", "vehicle": {"position": {"latitude": -36.973473, "longitude": -72.92675, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694874522", "vehicle": {"licensePlate": "HDKL63"}}}, {"id": "eacc131b-64cc-4b7b-b2fd-7a27a4ca2893", "vehicle": {"position": {"latitude": -36.843067, "longitude": -73.00964, "bearing": 202.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694613738", "vehicle": {"licensePlate": "FYBD24"}}}, {"id": "4eaecc90-240c-4700-bee5-a6d0dad66135", "vehicle": {"position": {"latitude": -36.720238, "longitude": -73.147156, "bearing": 294.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694815778", "vehicle": {"licensePlate": "DRTS59"}}}, {"id": "4f15521c-a8d2-481a-9415-3e4ee8dacda5", "vehicle": {"position": {"latitude": -36.71975, "longitude": -73.14715, "bearing": 12.0, "odometer": 0.0, "speed": 1.9444444}, "timestamp": "1694889002", "vehicle": {"licensePlate": "JRZZ56"}}}, {"id": "243df18f-568b-4334-bbed-c9bd973aad82", "vehicle": {"position": {"latitude": -36.842777, "longitude": -73.00971, "bearing": 192.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694779424", "vehicle": {"licensePlate": "DBHL20"}}}, {"id": "43428290-a5f4-4010-8982-2f1434e4e823", "vehicle": {"position": {"latitude": -36.800037, "longitude": -72.951775, "bearing": 268.0, "odometer": 0.0, "speed": 10.277778}, "timestamp": "1694889008", "vehicle": {"licensePlate": "KDXL77"}}}, {"id": "cb81695c-a66b-4eba-868c-0032c40ee17b", "vehicle": {"position": {"latitude": -36.973206, "longitude": -72.92657, "bearing": 307.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694826411", "vehicle": {"licensePlate": "FKLX54"}}}, {"id": "a23b4f26-70cb-48d4-8b63-ae7a3235ebbd", "vehicle": {"position": {"latitude": -36.73184, "longitude": -73.11727, "bearing": 13.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888613", "vehicle": {"licensePlate": "GRWB12"}}}, {"id": "8629855a-0fd4-413a-985b-adee00af4cbc", "vehicle": {"position": {"latitude": -36.722298, "longitude": -73.142975, "bearing": 204.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888624", "vehicle": {"licensePlate": "HFBC38"}}}, {"id": "00350871-c1d5-420a-9177-c51a60f0c2ea", "vehicle": {"position": {"latitude": -36.80475, "longitude": -73.04494, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1693350845", "vehicle": {"licensePlate": "HWHP18"}}}, {"id": "ae83db35-f6e8-4578-aeb4-794f223ed37c", "vehicle": {"position": {"latitude": -36.71094, "longitude": -72.974205, "bearing": 278.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888890", "vehicle": {"licensePlate": "HYHR27"}}}, {"id": "fb0abe2d-fa17-4371-a153-d6d7d2455baf", "vehicle": {"position": {"latitude": -36.794567, "longitude": -73.04595, "bearing": 300.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888702", "vehicle": {"licensePlate": "GZRC58"}}}, {"id": "ee9fa836-7209-4f2b-92b1-6b33c4ac7467", "vehicle": {"position": {"latitude": -36.828808, "longitude": -73.14821, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694620934", "vehicle": {"licensePlate": "YU5093"}}}, {"id": "68b3b46a-6cb0-4b71-a7ba-091ceb63c647", "vehicle": {"position": {"latitude": -36.795933, "longitude": -73.096535, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694868750", "vehicle": {"licensePlate": "DRFJ89"}}}, {"id": "95f9742c-876d-4d9e-b75a-0a79f8d140c0", "vehicle": {"position": {"latitude": -36.723324, "longitude": -73.12889, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694886102", "vehicle": {"licensePlate": "ZR9367"}}}, {"id": "739ac32d-cc86-4624-ae73-13443e0d7809", "vehicle": {"position": {"latitude": -36.76662, "longitude": -73.113716, "bearing": 272.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888654", "vehicle": {"licensePlate": "CKRB20"}}}, {"id": "532a11a4-c141-4a61-acf0-712019a0ac0f", "vehicle": {"position": {"latitude": -36.71724, "longitude": -72.97264, "bearing": 244.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888667", "vehicle": {"licensePlate": "DCGT36"}}}, {"id": "197a0308-4975-447c-a8f7-31122c622fb1", "vehicle": {"position": {"latitude": -36.76957, "longitude": -73.113846, "bearing": 104.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889014", "vehicle": {"licensePlate": "KBZD95"}}}, {"id": "6ed5f241-0d77-470a-9ceb-872b2914b371", "vehicle": {"position": {"latitude": -36.79136, "longitude": -73.07022, "bearing": 340.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889020", "vehicle": {"licensePlate": "RLLV59"}}}, {"id": "ac6fd527-d93e-4098-a49b-f2e57a0047bc", "vehicle": {"position": {"latitude": -36.60354, "longitude": -72.968475, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694875970", "vehicle": {"licensePlate": "BDBB66"}}}, {"id": "b8530620-56d3-480d-bf02-1971606c0b8e", "vehicle": {"position": {"latitude": -36.853996, "longitude": -73.14081, "bearing": 76.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888957", "vehicle": {"licensePlate": "FXRL62"}}}, {"id": "0b86b4a6-855f-4c33-8b33-ffb17f434b28", "vehicle": {"position": {"latitude": -36.94139, "longitude": -73.02712, "bearing": 156.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694814658", "vehicle": {"licensePlate": "FYBB77"}}}, {"id": "6bf663a3-50fb-4bc8-81e4-c99bc8f0a0bd", "vehicle": {"position": {"latitude": -36.770363, "longitude": -73.11464, "bearing": 348.0, "odometer": 0.0, "speed": 9.444445}, "timestamp": "1694811058", "vehicle": {"licensePlate": "YJ2007"}}}, {"id": "48142910-7a23-4e3e-affc-106710e16b2e", "vehicle": {"position": {"latitude": -36.723377, "longitude": -73.12881, "bearing": 142.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889032", "vehicle": {"licensePlate": "FDCL34"}}}, {"id": "45b17efc-6fe6-4dba-9c1a-0eb4f5750dc3", "vehicle": {"position": {"latitude": -36.794655, "longitude": -73.04702, "bearing": 295.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889027", "vehicle": {"licensePlate": "HTYG77"}}}, {"id": "df9360eb-0568-4ca7-ad0d-09dba2591b61", "vehicle": {"position": {"latitude": -36.828976, "longitude": -73.14816, "bearing": 47.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889024", "vehicle": {"licensePlate": "DSSY59"}}}, {"id": "e0d8de9e-bcd8-4c18-9fae-19c7e750803e", "vehicle": {"position": {"latitude": -36.793972, "longitude": -73.109146, "bearing": 254.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889010", "vehicle": {"licensePlate": "DXYT55"}}}, {"id": "c051e879-d3e7-403d-a7c0-9fc4fc9915ba", "vehicle": {"position": {"latitude": -36.769394, "longitude": -73.113914, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694571300", "vehicle": {"licensePlate": "HRBX77"}}}, {"id": "4b3abc37-c034-444d-bbbf-055a13397587", "vehicle": {"position": {"latitude": -36.805656, "longitude": -73.0383, "bearing": 233.0, "odometer": 0.0, "speed": 0.8333333}, "timestamp": "1694711230", "vehicle": {"licensePlate": "DPGH46"}}}, {"id": "23adf2d0-a1f5-4471-bf82-785d2864df9b", "vehicle": {"position": {"latitude": -36.84332, "longitude": -73.00985, "bearing": 154.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694824061", "vehicle": {"licensePlate": "RBXL22"}}}, {"id": "36dc61f1-6bcc-4e92-a716-c32a3d4ac647", "vehicle": {"position": {"latitude": -36.777897, "longitude": -73.08842, "bearing": 276.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694822378", "vehicle": {"licensePlate": "DBYY95"}}}, {"id": "c0e3aa63-56d7-44d1-b48d-2f7e91d3f413", "vehicle": {"position": {"latitude": -36.733913, "longitude": -73.10658, "bearing": 318.0, "odometer": 0.0, "speed": 1.1111112}, "timestamp": "1694889014", "vehicle": {"licensePlate": "RWSZ61"}}}, {"id": "323f1c94-ec50-48c5-b941-ab6d10397e73", "vehicle": {"position": {"latitude": -36.772427, "longitude": -73.08971, "bearing": 178.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694811357", "vehicle": {"licensePlate": "XU2768"}}}, {"id": "56f98cab-ef4c-478f-92f9-0a1df657a83e", "vehicle": {"position": {"latitude": -36.972958, "longitude": -72.92684, "bearing": 107.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694830742", "vehicle": {"licensePlate": "HJXW49"}}}, {"id": "dd98a238-8259-47fc-88b4-efa1c335c76e", "vehicle": {"position": {"latitude": -36.78059, "longitude": -73.09532, "bearing": 280.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889016", "vehicle": {"licensePlate": "FPZY97"}}}, {"id": "9e9d0166-26ea-4804-a270-6ef02a2286cb", "vehicle": {"position": {"latitude": -36.753628, "longitude": -73.095245, "bearing": 286.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694885480", "vehicle": {"licensePlate": "YG6205"}}}, {"id": "54f1295d-4b3d-483a-aeb7-eaee19a94e11", "vehicle": {"position": {"latitude": -36.97328, "longitude": -72.92654, "bearing": 356.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888921", "vehicle": {"licensePlate": "DLDW48"}}}, {"id": "0f72cf54-bda1-4d1f-9707-58ccad24ef2c", "vehicle": {"position": {"latitude": -36.733437, "longitude": -73.116615, "bearing": 318.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888986", "vehicle": {"licensePlate": "UW8655"}}}, {"id": "a2fec028-62b5-4c05-b8f2-13467e42e349", "vehicle": {"position": {"latitude": -36.90433, "longitude": -73.149635, "bearing": 181.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694878146", "vehicle": {"licensePlate": "FHDR37"}}}, {"id": "c730d4b3-9c0d-4935-91e0-cc79bbc5e46a", "vehicle": {"position": {"latitude": -36.71386, "longitude": -72.97771, "bearing": 221.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694803112", "vehicle": {"licensePlate": "JGJV56"}}}, {"id": "2e7a5ec7-39fe-42dd-900a-826ea39af0b2", "vehicle": {"position": {"latitude": -36.797688, "longitude": -73.11283, "bearing": 26.0, "odometer": 0.0, "speed": 1.1111112}, "timestamp": "1694879650", "vehicle": {"licensePlate": "JVTK97"}}}, {"id": "9151222c-a584-4ade-b380-f6ec35fd01b6", "vehicle": {"position": {"latitude": -36.766544, "longitude": -73.080246, "bearing": 118.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694887018", "vehicle": {"licensePlate": "BVPW81"}}}, {"id": "f787412b-ea11-4e7e-9417-dca7a62c28da", "vehicle": {"position": {"latitude": -36.941444, "longitude": -73.027054, "bearing": 190.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694883758", "vehicle": {"licensePlate": "XR8763"}}}, {"id": "1752bff3-5ce7-497a-83f3-e0eaaf5ac0d4", "vehicle": {"position": {"latitude": -36.79075, "longitude": -73.1001, "bearing": 20.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694707216", "vehicle": {"licensePlate": "CTRZ85"}}}, {"id": "4162cce4-20fe-4cbb-8eff-b132713bab72", "vehicle": {"position": {"latitude": -36.83282, "longitude": -73.06041, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694833154", "vehicle": {"licensePlate": "CVDY56"}}}, {"id": "d2cbf3bf-8747-4d24-8813-10c0f58da427", "vehicle": {"position": {"latitude": -36.842945, "longitude": -73.00979, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694807414", "vehicle": {"licensePlate": "JLZX49"}}}, {"id": "b8d7f200-3643-4a93-be28-7c7fd9b6edcc", "vehicle": {"position": {"latitude": -36.94883, "longitude": -73.01164, "bearing": 286.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888975", "vehicle": {"licensePlate": "GZGD13"}}}, {"id": "d698b0ed-efa0-4d49-b302-fc09b6436a74", "vehicle": {"position": {"latitude": -36.68656, "longitude": -73.11708, "bearing": 172.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694625990", "vehicle": {"licensePlate": "BFPL99"}}}, {"id": "ac49743c-1cb6-4318-a20c-3cfd0678935f", "vehicle": {"position": {"latitude": -36.973164, "longitude": -72.92651, "bearing": 110.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694876628", "vehicle": {"licensePlate": "HFLX61"}}}, {"id": "265ed417-e64f-4216-a46f-d13218cdedda", "vehicle": {"position": {"latitude": -36.958187, "longitude": -73.01093, "bearing": 162.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694887919", "vehicle": {"licensePlate": "WZ6604"}}}, {"id": "1b55e6c2-e14a-4a01-96f7-152953f3cf69", "vehicle": {"position": {"latitude": -36.82988, "longitude": -73.138756, "bearing": 12.0, "odometer": 0.0, "speed": 6.9444447}, "timestamp": "1694888982", "vehicle": {"licensePlate": "YR1744"}}}, {"id": "25da5f19-62e8-41a9-8020-1fc6a006374c", "vehicle": {"position": {"latitude": -36.84951, "longitude": -73.142525, "bearing": 11.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694822830", "vehicle": {"licensePlate": "WC8942"}}}, {"id": "9db12984-1fdc-4821-b43a-c2162863c19e", "vehicle": {"position": {"latitude": -36.712322, "longitude": -73.11545, "bearing": 1.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889036", "vehicle": {"licensePlate": "DXSH15"}}}, {"id": "7c34adf5-30c5-4950-bc62-dade6c741c32", "vehicle": {"position": {"latitude": -36.968086, "longitude": -72.928154, "bearing": 25.0, "odometer": 0.0, "speed": 2.2222223}, "timestamp": "1694889027", "vehicle": {"licensePlate": "HDCD41"}}}, {"id": "2d4fc684-27bb-46c6-850a-c565b51b8b45", "vehicle": {"position": {"latitude": -36.97287, "longitude": -72.926735, "bearing": 0.0, "odometer": 0.0, "speed": 1.1111112}, "timestamp": "1694831362", "vehicle": {"licensePlate": "FPZB46"}}}, {"id": "50d86988-4f7f-47d3-8dab-c1715819a931", "vehicle": {"position": {"latitude": -36.948803, "longitude": -73.01164, "bearing": 287.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888992", "vehicle": {"licensePlate": "FRPH90"}}}, {"id": "68e3f55d-66ba-4112-8c84-f2cf5d2b4fcd", "vehicle": {"position": {"latitude": -36.779476, "longitude": -73.09892, "bearing": 154.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694698186", "vehicle": {"licensePlate": "ZR7180"}}}, {"id": "3b0619ef-89bd-4403-a9bd-55bdfde3b897", "vehicle": {"position": {"latitude": -36.714077, "longitude": -72.97777, "bearing": 281.0, "odometer": 0.0, "speed": 0.2777778}, "timestamp": "1694708007", "vehicle": {"licensePlate": "KVYR52"}}}, {"id": "6a3ec6a3-c637-408a-843c-8cdce6f0ae53", "vehicle": {"position": {"latitude": -36.814228, "longitude": -73.07378, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694824602", "vehicle": {"licensePlate": "GWZC18"}}}, {"id": "966dcdc4-477f-4de4-844c-eef7fcaba9b2", "vehicle": {"position": {"latitude": -36.797077, "longitude": -73.110245, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888068", "vehicle": {"licensePlate": "WR9449"}}}, {"id": "94bfa256-36c1-48c8-9bb8-3fd9169774fe", "vehicle": {"position": {"latitude": -36.78898, "longitude": -73.043236, "bearing": 262.0, "odometer": 0.0, "speed": 0.2777778}, "timestamp": "1694889010", "vehicle": {"licensePlate": "HFYB66"}}}, {"id": "1630085d-0882-42ac-bf3b-36bd0ad7fa5d", "vehicle": {"position": {"latitude": -36.794113, "longitude": -73.04615, "bearing": 356.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888978", "vehicle": {"licensePlate": "RSZG38"}}}, {"id": "de6bfb62-75f4-426e-883a-276665358b1a", "vehicle": {"position": {"latitude": -36.794388, "longitude": -73.04622, "bearing": 172.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694814858", "vehicle": {"licensePlate": "YX2547"}}}, {"id": "eb0cf9b3-5d9e-49d9-82a9-803ca22dbfc3", "vehicle": {"position": {"latitude": -36.79434, "longitude": -73.04621, "bearing": 288.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694881154", "vehicle": {"licensePlate": "BGLH33"}}}, {"id": "92d7324b-8e1f-4bcf-9305-7e628b059832", "vehicle": {"position": {"latitude": -36.80702, "longitude": -73.051636, "bearing": 85.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694885311", "vehicle": {"licensePlate": "WK4116"}}}, {"id": "1cd30962-ffb7-4c73-8b83-b9098a14f96c", "vehicle": {"position": {"latitude": -36.8056, "longitude": -73.038414, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694805364", "vehicle": {"licensePlate": "CXLY25"}}}, {"id": "a239182e-5889-41ee-a4c4-20950702b2fc", "vehicle": {"position": {"latitude": -36.77936, "longitude": -73.09893, "bearing": 208.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694623639", "vehicle": {"licensePlate": "DRPF80"}}}, {"id": "1ac73fb9-bddd-4678-a6d4-030bf6daebd3", "vehicle": {"position": {"latitude": -36.778896, "longitude": -73.09947, "bearing": 59.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694873246", "vehicle": {"licensePlate": "KHXV45"}}}, {"id": "50a5c390-bded-4480-8e74-2778fb003de4", "vehicle": {"position": {"latitude": -36.71087, "longitude": -72.97409, "bearing": 62.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888654", "vehicle": {"licensePlate": "FXRZ50"}}}, {"id": "71304650-62c2-416a-98a1-46dc9c3eb430", "vehicle": {"position": {"latitude": -36.71148, "longitude": -73.13936, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694839496", "vehicle": {"licensePlate": "ZR7429"}}}, {"id": "4d7f6037-5221-4e77-9766-bc3774d7c456", "vehicle": {"position": {"latitude": -36.84961, "longitude": -73.14222, "bearing": 322.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694801449", "vehicle": {"licensePlate": "DWVX25"}}}, {"id": "87853e1a-e977-48b5-ac74-e441bcf055a6", "vehicle": {"position": {"latitude": -36.953587, "longitude": -73.0223, "bearing": 304.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694873700", "vehicle": {"licensePlate": "FXRR89"}}}, {"id": "83dd22e1-bf9e-42e9-b99f-d1c3185b443b", "vehicle": {"position": {"latitude": -36.78969, "longitude": -73.07903, "bearing": 88.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694877624", "vehicle": {"licensePlate": "FXRL65"}}}, {"id": "c90df090-2367-452b-9c53-a24937b5a9e2", "vehicle": {"position": {"latitude": -36.80015, "longitude": -73.05049, "bearing": 150.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694878160", "vehicle": {"licensePlate": "XS5094"}}}, {"id": "34d41ce9-6365-4bc4-a54a-b5f702764508", "vehicle": {"position": {"latitude": -36.716633, "longitude": -73.13407, "bearing": 212.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694813680", "vehicle": {"licensePlate": "YR2263"}}}, {"id": "6c091fe3-f828-49a8-bc1b-f451655463c7", "vehicle": {"position": {"latitude": -36.806824, "longitude": -73.05181, "bearing": 286.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694881856", "vehicle": {"licensePlate": "JXFX71"}}}, {"id": "71ddd3a2-556f-44bf-965d-01d85c62138d", "vehicle": {"position": {"latitude": -36.77845, "longitude": -73.09957, "bearing": 277.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694804503", "vehicle": {"licensePlate": "WF1305"}}}, {"id": "e55d6c9e-53b6-4583-b3da-b0d5aa9b5cf1", "vehicle": {"position": {"latitude": -36.850952, "longitude": -73.13798, "bearing": 280.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694887069", "vehicle": {"licensePlate": "XY1975"}}}, {"id": "21068c60-d79f-43c8-aa45-b4b1661def8e", "vehicle": {"position": {"latitude": -36.7669, "longitude": -73.11311, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694865594", "vehicle": {"licensePlate": "DWVL55"}}}, {"id": "e52e83a8-dc56-4223-984c-09f593a05319", "vehicle": {"position": {"latitude": -36.824505, "longitude": -73.13027, "bearing": 33.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694883402", "vehicle": {"licensePlate": "CVTG83"}}}, {"id": "e0876e20-b042-4f77-a762-6cf998676431", "vehicle": {"position": {"latitude": -36.84819, "longitude": -73.14182, "bearing": 129.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694876451", "vehicle": {"licensePlate": "WV1926"}}}, {"id": "be0092cc-0475-4d82-8f68-e956fb1d6c61", "vehicle": {"position": {"latitude": -36.735806, "longitude": -73.10222, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694871145", "vehicle": {"licensePlate": "KXWX33"}}}, {"id": "7bc040c9-af2a-4e70-98db-ad994f1df8bb", "vehicle": {"position": {"latitude": -36.7925, "longitude": -73.11341, "bearing": 300.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889012", "vehicle": {"licensePlate": "HYHP63"}}}, {"id": "c6e108fb-0bcd-4d4f-a335-213ec4413003", "vehicle": {"position": {"latitude": -36.82892, "longitude": -73.14786, "bearing": 270.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889014", "vehicle": {"licensePlate": "YU8449"}}}, {"id": "6bdce928-248f-465e-9892-fa703adbffbf", "vehicle": {"position": {"latitude": -36.766956, "longitude": -73.11259, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694184742", "vehicle": {"licensePlate": "YU2039"}}}, {"id": "78556ef7-2fd1-4fd4-8502-b95ef664cff2", "vehicle": {"position": {"latitude": -36.716797, "longitude": -73.14421, "bearing": 66.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888988", "vehicle": {"licensePlate": "HYZC41"}}}, {"id": "58cbbb7c-df09-4c24-92b0-34407c5d6161", "vehicle": {"position": {"latitude": -36.7568, "longitude": -73.094604, "bearing": 18.0, "odometer": 0.0, "speed": 11.944445}, "timestamp": "1694889008", "vehicle": {"licensePlate": "ZT4461"}}}, {"id": "4182c6b7-265d-4ad9-8080-98a25c4e869f", "vehicle": {"position": {"latitude": -36.95796, "longitude": -73.010475, "bearing": 168.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694817964", "vehicle": {"licensePlate": "FCBR61"}}}, {"id": "85732ec2-7c90-4888-a53f-2163352f4804", "vehicle": {"position": {"latitude": -36.953472, "longitude": -73.022316, "bearing": 210.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694788722", "vehicle": {"licensePlate": "XG3133"}}}, {"id": "4a521c29-e8a9-48ee-a5ec-ca45e1c9b066", "vehicle": {"position": {"latitude": -36.950695, "longitude": -73.01729, "bearing": 268.0, "odometer": 0.0, "speed": 8.055555}, "timestamp": "1694883564", "vehicle": {"licensePlate": "WK3744"}}}, {"id": "997b4960-a02f-4f1f-a3ef-776f4dcf64ed", "vehicle": {"position": {"latitude": -36.95354, "longitude": -73.0223, "bearing": 52.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694884210", "vehicle": {"licensePlate": "CPFB37"}}}, {"id": "e3342340-6f3d-421d-8df5-840f13310e0e", "vehicle": {"position": {"latitude": -36.599205, "longitude": -72.951546, "bearing": 68.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694817534", "vehicle": {"licensePlate": "LVLG30"}}}, {"id": "0fb4570d-0130-4e35-9ea1-8ffc889eedde", "vehicle": {"position": {"latitude": -36.768436, "longitude": -73.11389, "bearing": 268.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888782", "vehicle": {"licensePlate": "LDDD47"}}}, {"id": "b52084db-a20a-45d9-87df-58b4fba8623d", "vehicle": {"position": {"latitude": -36.88338, "longitude": -73.13129, "bearing": 218.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888683", "vehicle": {"licensePlate": "YU2268"}}}, {"id": "ede2bf44-938e-47c1-9c5d-caeed041adef", "vehicle": {"position": {"latitude": -36.824516, "longitude": -73.13092, "bearing": 146.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889021", "vehicle": {"licensePlate": "CVTG78"}}}, {"id": "5f9c2f98-add0-4f7e-b450-20c84b818bd3", "vehicle": {"position": {"latitude": -36.953556, "longitude": -73.014404, "bearing": 172.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888398", "vehicle": {"licensePlate": "XY9416"}}}, {"id": "566fce30-3fc9-44bd-9587-09e864b42109", "vehicle": {"position": {"latitude": -36.71366, "longitude": -72.97761, "bearing": 243.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889015", "vehicle": {"licensePlate": "HXKL13"}}}, {"id": "c1775363-d8b4-4c79-801b-75894330b30e", "vehicle": {"position": {"latitude": -36.94166, "longitude": -73.008354, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888982", "vehicle": {"licensePlate": "FWBZ36"}}}, {"id": "33b87190-5ec0-44a4-9cd0-2505f3719db2", "vehicle": {"position": {"latitude": -36.828724, "longitude": -73.14757, "bearing": 210.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888463", "vehicle": {"licensePlate": "FXRL56"}}}, {"id": "b1892b4b-da71-4de4-9b75-c9e7f79ef3a1", "vehicle": {"position": {"latitude": -36.803055, "longitude": -73.045616, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694553936", "vehicle": {"licensePlate": "DWVZ74"}}}, {"id": "e7e07fd3-a160-47bd-9ef9-917e716960f0", "vehicle": {"position": {"latitude": -36.828926, "longitude": -73.14771, "bearing": 149.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694815953", "vehicle": {"licensePlate": "WZ6588"}}}, {"id": "2a8e0f7d-c134-4dbd-b78c-84479e132d6d", "vehicle": {"position": {"latitude": -36.83018, "longitude": -73.05298, "bearing": 71.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888986", "vehicle": {"licensePlate": "FXRL63"}}}, {"id": "3fa96681-40ee-4002-8759-1ff9c129541d", "vehicle": {"position": {"latitude": -36.830643, "longitude": -73.12366, "bearing": 224.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694739368", "vehicle": {"licensePlate": "GXYY76"}}}, {"id": "26067a7e-78c9-457d-b5a0-6bb93848542c", "vehicle": {"position": {"latitude": -36.849693, "longitude": -73.1424, "bearing": 84.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694884754", "vehicle": {"licensePlate": "CVTG85"}}}, {"id": "51b87b17-76cd-4e2c-9154-edb8ebc09c10", "vehicle": {"position": {"latitude": -36.603657, "longitude": -72.96869, "bearing": 240.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889000", "vehicle": {"licensePlate": "RWWZ52"}}}, {"id": "613a2f21-8753-4f8b-bf05-842da9e7bd6e", "vehicle": {"position": {"latitude": -36.842716, "longitude": -73.00974, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694713946", "vehicle": {"licensePlate": "DWVZ19"}}}, {"id": "5639bb22-3c8f-459d-94f0-2772ea2b9002", "vehicle": {"position": {"latitude": -36.73199, "longitude": -73.10851, "bearing": 328.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889010", "vehicle": {"licensePlate": "FXRZ32"}}}, {"id": "9e455aaa-6a58-4b0e-9356-2f7da2dbb247", "vehicle": {"position": {"latitude": -36.842808, "longitude": -73.00948, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694867508", "vehicle": {"licensePlate": "YR2018"}}}, {"id": "e61d7dbf-e6c3-4e1e-8aae-70d3ffd578af", "vehicle": {"position": {"latitude": -36.743793, "longitude": -73.09435, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1693776031", "vehicle": {"licensePlate": "FVYT17"}}}, {"id": "99a1bc56-5258-4597-b496-7e31e8630c09", "vehicle": {"position": {"latitude": -36.721897, "longitude": -73.12625, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694777924", "vehicle": {"licensePlate": "HYYX93"}}}, {"id": "9e8af14a-701c-40a6-a5df-47a0284ca120", "vehicle": {"position": {"latitude": -36.969055, "longitude": -72.9342, "bearing": 330.0, "odometer": 0.0, "speed": 1.6666666}, "timestamp": "1694888974", "vehicle": {"licensePlate": "RGGJ91"}}}, {"id": "b1a4c0fa-dce5-442e-b584-8372ecc21b71", "vehicle": {"position": {"latitude": -36.84298, "longitude": -73.01005, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888780", "vehicle": {"licensePlate": "BXFC65"}}}, {"id": "c6c79f07-fca3-44ac-bc7a-bf5fbd17f72f", "vehicle": {"position": {"latitude": -36.95524, "longitude": -73.01732, "bearing": 78.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889008", "vehicle": {"licensePlate": "LRGR48"}}}, {"id": "8c0111cd-7370-481a-9a9d-5dc923c6170a", "vehicle": {"position": {"latitude": -36.843033, "longitude": -73.01012, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694804358", "vehicle": {"licensePlate": "BKKS46"}}}, {"id": "2a5de641-27b6-4720-9a32-104c2980aa84", "vehicle": {"position": {"latitude": -36.839577, "longitude": -73.055595, "bearing": 256.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694821019", "vehicle": {"licensePlate": "FXRZ21"}}}, {"id": "43f7049f-4345-4c5d-b46c-3d699d792703", "vehicle": {"position": {"latitude": -36.726437, "longitude": -73.11004, "bearing": 103.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694619779", "vehicle": {"licensePlate": "CSRS64"}}}, {"id": "b296b965-f4c7-4f63-9b8d-6eb7f248de80", "vehicle": {"position": {"latitude": -36.835354, "longitude": -73.04014, "bearing": 156.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889010", "vehicle": {"licensePlate": "KYDT38"}}}, {"id": "73e79cff-4574-45c8-a74e-dc025c2d5f14", "vehicle": {"position": {"latitude": -36.74934, "longitude": -73.09541, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694649806", "vehicle": {"licensePlate": "YU1608"}}}, {"id": "cfda979a-1494-4f24-af84-376ced4e3a4a", "vehicle": {"position": {"latitude": -36.72189, "longitude": -73.14276, "bearing": 22.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888702", "vehicle": {"licensePlate": "KKYJ64"}}}, {"id": "738ab4fa-990c-4893-bdec-fcd474c70054", "vehicle": {"position": {"latitude": -36.775112, "longitude": -73.02316, "bearing": 311.0, "odometer": 0.0, "speed": 3.3333333}, "timestamp": "1694873679", "vehicle": {"licensePlate": "FHGK25"}}}, {"id": "8f9d8a1d-df37-4b01-9d65-769e633432c5", "vehicle": {"position": {"latitude": -36.603573, "longitude": -72.96846, "bearing": 64.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888716", "vehicle": {"licensePlate": "GPGG82"}}}, {"id": "4a794435-4b40-484a-8d64-a5247f2579f6", "vehicle": {"position": {"latitude": -36.768795, "longitude": -73.114, "bearing": 194.0, "odometer": 0.0, "speed": 1.6666666}, "timestamp": "1694879629", "vehicle": {"licensePlate": "FXRR68"}}}, {"id": "9bb171a7-8b40-41dc-96a5-7d71545e3f50", "vehicle": {"position": {"latitude": -36.7607, "longitude": -73.089066, "bearing": 156.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889000", "vehicle": {"licensePlate": "RTZB49"}}}, {"id": "6568ef50-ef83-46e5-9724-551c01905e7f", "vehicle": {"position": {"latitude": -36.597183, "longitude": -72.96929, "bearing": 358.0, "odometer": 0.0, "speed": 4.1666665}, "timestamp": "1694818288", "vehicle": {"licensePlate": "KHSW77"}}}, {"id": "773819c8-b69b-40cb-a3b2-b7e3d5eb8c0b", "vehicle": {"position": {"latitude": -36.6186, "longitude": -72.93647, "bearing": 94.0, "odometer": 0.0, "speed": 1.9444444}, "timestamp": "1694822166", "vehicle": {"licensePlate": "DWHF71"}}}, {"id": "813c9ab5-c809-473c-9834-bac15cb8efe2", "vehicle": {"position": {"latitude": -36.768604, "longitude": -73.11414, "bearing": 202.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694818720", "vehicle": {"licensePlate": "KRXK40"}}}, {"id": "b91040c7-50af-409e-9f5d-2417f70f7fc5", "vehicle": {"position": {"latitude": -36.713634, "longitude": -73.13713, "bearing": 192.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694812592", "vehicle": {"licensePlate": "FYBB62"}}}, {"id": "81ab9d58-c49d-40a7-8f0c-f697f874b4af", "vehicle": {"position": {"latitude": -36.768658, "longitude": -73.11335, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694879996", "vehicle": {"licensePlate": "LJKK98"}}}, {"id": "5dfa428a-0fbd-4207-96e0-e800166daa0d", "vehicle": {"position": {"latitude": -36.603806, "longitude": -72.96869, "bearing": 4.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694827352", "vehicle": {"licensePlate": "JRZZ58"}}}, {"id": "ce4c3eae-c332-4575-a344-dca4b62a54c4", "vehicle": {"position": {"latitude": -36.59909, "longitude": -72.95174, "bearing": 90.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888654", "vehicle": {"licensePlate": "JJJC36"}}}, {"id": "42caac29-6296-4e90-ab94-7f5b8dd09941", "vehicle": {"position": {"latitude": -36.60358, "longitude": -72.96844, "bearing": 62.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694297710", "vehicle": {"licensePlate": "FLRY75"}}}, {"id": "5d9c2140-e92d-47a0-8ed7-be9d13739336", "vehicle": {"position": {"latitude": -36.742565, "longitude": -73.08828, "bearing": 176.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694821122", "vehicle": {"licensePlate": "FCBR16"}}}, {"id": "dfb89f11-02f4-44e2-89f1-ab6dc902cf10", "vehicle": {"position": {"latitude": -36.770596, "longitude": -73.06582, "bearing": 24.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694814302", "vehicle": {"licensePlate": "LGVV84"}}}, {"id": "1d67c1c3-fe38-431d-8240-0af6861ffa80", "vehicle": {"position": {"latitude": -36.93875, "longitude": -73.03048, "bearing": 328.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694808932", "vehicle": {"licensePlate": "XW8423"}}}, {"id": "02b6113b-f706-4be4-b5e6-efd6328b4948", "vehicle": {"position": {"latitude": -36.749397, "longitude": -73.09959, "bearing": 279.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888840", "vehicle": {"licensePlate": "DPGK83"}}}, {"id": "221df7ef-0020-49d9-94bb-8ea4c79ce86a", "vehicle": {"position": {"latitude": -36.925137, "longitude": -73.02178, "bearing": 142.0, "odometer": 0.0, "speed": 0.8333333}, "timestamp": "1694888918", "vehicle": {"licensePlate": "LZPT78"}}}, {"id": "3109e028-0817-484b-8be4-33d280f35529", "vehicle": {"position": {"latitude": -36.93264, "longitude": -73.01493, "bearing": 88.0, "odometer": 0.0, "speed": 3.6111112}, "timestamp": "1694817245", "vehicle": {"licensePlate": "GYGG99"}}}, {"id": "680068f6-ae74-4729-a4ee-26ceaf6eeb0d", "vehicle": {"position": {"latitude": -36.932056, "longitude": -73.02247, "bearing": 154.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694723850", "vehicle": {"licensePlate": "FTPC75"}}}, {"id": "fae6af9a-0241-4f2b-8522-43ca0fb170a8", "vehicle": {"position": {"latitude": -36.791553, "longitude": -73.07071, "bearing": 154.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694814571", "vehicle": {"licensePlate": "CZBW17"}}}, {"id": "3be70b4d-6cf8-4420-8c69-b56f0ec9e500", "vehicle": {"position": {"latitude": -36.95847, "longitude": -73.01105, "bearing": 197.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889026", "vehicle": {"licensePlate": "ZY4551"}}}, {"id": "de5b2c9c-6a2d-4a42-b343-d587af108234", "vehicle": {"position": {"latitude": -36.94157, "longitude": -73.02724, "bearing": 340.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694819796", "vehicle": {"licensePlate": "YJ7926"}}}, {"id": "48d2f4ca-c80f-4cc5-9bce-faec203b8faf", "vehicle": {"position": {"latitude": -36.958195, "longitude": -73.01078, "bearing": 45.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694879188", "vehicle": {"licensePlate": "KTFG32"}}}, {"id": "ce425c77-231e-4a59-bf1c-c0c140015a72", "vehicle": {"position": {"latitude": -36.957848, "longitude": -73.0105, "bearing": 14.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694874446", "vehicle": {"licensePlate": "LGVH69"}}}, {"id": "1b5877e3-0481-47a9-ad2e-acf678f22354", "vehicle": {"position": {"latitude": -36.828804, "longitude": -73.14759, "bearing": 180.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888986", "vehicle": {"licensePlate": "HWHL53"}}}, {"id": "64fe0313-575b-4840-a6b8-158652d78bf1", "vehicle": {"position": {"latitude": -36.828987, "longitude": -73.14755, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694887552", "vehicle": {"licensePlate": "HJRY42"}}}, {"id": "22595704-f725-448b-82b6-ce50cb49d8a8", "vehicle": {"position": {"latitude": -36.830658, "longitude": -73.123344, "bearing": 22.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694802692", "vehicle": {"licensePlate": "YT2219"}}}, {"id": "d919c1f2-6bd4-4aa9-b040-7f5798bccfa8", "vehicle": {"position": {"latitude": -36.82878, "longitude": -73.147606, "bearing": 182.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888980", "vehicle": {"licensePlate": "WF9290"}}}, {"id": "55b67ba0-3dc8-4ad0-af48-18469138658e", "vehicle": {"position": {"latitude": -36.829094, "longitude": -73.14769, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888720", "vehicle": {"licensePlate": "FXRL54"}}}, {"id": "09a1acfb-1b84-4b90-af4d-faf6314c90fb", "vehicle": {"position": {"latitude": -36.828957, "longitude": -73.148346, "bearing": 315.0, "odometer": 0.0, "speed": 0.2777778}, "timestamp": "1694888726", "vehicle": {"licensePlate": "FLHP40"}}}, {"id": "82a599d5-f68d-41cb-a962-f710b8181dbd", "vehicle": {"position": {"latitude": -36.849407, "longitude": -73.14225, "bearing": 345.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888674", "vehicle": {"licensePlate": "HZSD20"}}}, {"id": "caae6e26-f625-4cd2-873f-0f3a973b1393", "vehicle": {"position": {"latitude": -36.826576, "longitude": -73.15008, "bearing": 342.0, "odometer": 0.0, "speed": 0.5555556}, "timestamp": "1694815974", "vehicle": {"licensePlate": "LJKK13"}}}, {"id": "d3424fb3-135d-4778-b380-5e2cc8c0ffdf", "vehicle": {"position": {"latitude": -36.849735, "longitude": -73.14236, "bearing": 106.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694870531", "vehicle": {"licensePlate": "FSLB58"}}}, {"id": "aa383a41-96b6-4e46-a19a-d29c90828b10", "vehicle": {"position": {"latitude": -36.84957, "longitude": -73.14211, "bearing": 55.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694819401", "vehicle": {"licensePlate": "YE1570"}}}, {"id": "d6da138b-b563-47d7-87fc-9fe34fe6403c", "vehicle": {"position": {"latitude": -36.849655, "longitude": -73.14227, "bearing": 114.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694815468", "vehicle": {"licensePlate": "YU2126"}}}, {"id": "bc2355f0-a774-438b-bd29-2f2f634e8b90", "vehicle": {"position": {"latitude": -36.84968, "longitude": -73.142426, "bearing": 88.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694812240", "vehicle": {"licensePlate": "WR8678"}}}, {"id": "78deb406-5057-4635-bf8b-d357cf754153", "vehicle": {"position": {"latitude": -36.71399, "longitude": -72.97777, "bearing": 61.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888596", "vehicle": {"licensePlate": "GLZD62"}}}, {"id": "b764eeae-5569-4cd9-83ff-3fd673b5a0bf", "vehicle": {"position": {"latitude": -36.721886, "longitude": -73.14267, "bearing": 302.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694822538", "vehicle": {"licensePlate": "DKTD35"}}}, {"id": "e56f00e6-b44b-4bdd-9f74-76eff9ee1513", "vehicle": {"position": {"latitude": -36.714073, "longitude": -72.977776, "bearing": 195.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694537714", "vehicle": {"licensePlate": "CRVL31"}}}, {"id": "4a17817f-bc30-465f-9366-df70be7122b7", "vehicle": {"position": {"latitude": -36.71089, "longitude": -72.974304, "bearing": 246.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889013", "vehicle": {"licensePlate": "BLYK22"}}}, {"id": "b54c5771-cd60-4bd5-a8d2-74f8bae6ae3f", "vehicle": {"position": {"latitude": -36.741413, "longitude": -72.992485, "bearing": 225.0, "odometer": 0.0, "speed": 1.6666666}, "timestamp": "1694817030", "vehicle": {"licensePlate": "BLYY38"}}}, {"id": "ebfc601a-2048-4aa3-8461-349e4370dcde", "vehicle": {"position": {"latitude": -36.713497, "longitude": -72.9775, "bearing": 332.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694819162", "vehicle": {"licensePlate": "CKVL24"}}}, {"id": "22f7d3be-391b-47b0-8e64-dd14f455a29c", "vehicle": {"position": {"latitude": -36.723347, "longitude": -73.1288, "bearing": 132.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694457191", "vehicle": {"licensePlate": "FCJS57"}}}, {"id": "9443e8f2-e4f5-4c0a-97fc-3f2261f127f3", "vehicle": {"position": {"latitude": -36.71098, "longitude": -72.974495, "bearing": 247.0, "odometer": 0.0, "speed": 1.1111112}, "timestamp": "1694888826", "vehicle": {"licensePlate": "FYBB66"}}}, {"id": "0f9d02a6-c1d2-4ce9-99cb-c67b1b2660f2", "vehicle": {"position": {"latitude": -36.71081, "longitude": -72.97414, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694629916", "vehicle": {"licensePlate": "FVZD67"}}}, {"id": "17818b5c-954c-4487-bf74-97e5dd7a12a1", "vehicle": {"position": {"latitude": -36.778877, "longitude": -73.1136, "bearing": 348.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888984", "vehicle": {"licensePlate": "HDLR86"}}}, {"id": "a7d8a996-261c-4ad0-bcff-eacd6fc20024", "vehicle": {"position": {"latitude": -36.766846, "longitude": -73.11378, "bearing": 196.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888766", "vehicle": {"licensePlate": "RKKW57"}}}, {"id": "f3489563-8241-4497-96fc-e64fb9c2c15d", "vehicle": {"position": {"latitude": -36.766853, "longitude": -73.11327, "bearing": 224.0, "odometer": 0.0, "speed": 0.2777778}, "timestamp": "1694884776", "vehicle": {"licensePlate": "RLYS69"}}}, {"id": "c7d4e058-08a0-4b54-84b7-d356a53f7009", "vehicle": {"position": {"latitude": -36.71752, "longitude": -73.13734, "bearing": 74.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888980", "vehicle": {"licensePlate": "DHDV83"}}}, {"id": "7710501d-8d81-4b3b-8d8d-0fcd139396e1", "vehicle": {"position": {"latitude": -36.77152, "longitude": -73.114655, "bearing": 166.0, "odometer": 0.0, "speed": 5.0}, "timestamp": "1694888974", "vehicle": {"licensePlate": "YV2199"}}}, {"id": "e7ba6391-ad7f-481c-9427-729330db1c3c", "vehicle": {"position": {"latitude": -36.791595, "longitude": -73.10615, "bearing": 18.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694450021", "vehicle": {"licensePlate": "DWHP44"}}}, {"id": "f174bea3-e1c1-4e3e-8ac2-8fc1e06acd71", "vehicle": {"position": {"latitude": -36.72124, "longitude": -73.13288, "bearing": 202.0, "odometer": 0.0, "speed": 5.8333335}, "timestamp": "1694888984", "vehicle": {"licensePlate": "YR4587"}}}, {"id": "3b04c105-c2a8-4506-b915-e13e67ef39e0", "vehicle": {"position": {"latitude": -36.76932, "longitude": -73.1138, "bearing": 271.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694873978", "vehicle": {"licensePlate": "FYBD31"}}}, {"id": "14ca2a90-4341-45a3-97dd-8dca32918ec3", "vehicle": {"position": {"latitude": -36.832554, "longitude": -73.00372, "bearing": 16.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694797070", "vehicle": {"licensePlate": "FXRL50"}}}, {"id": "29a0df92-be05-4615-a97b-cfd013241da1", "vehicle": {"position": {"latitude": -36.77946, "longitude": -73.098976, "bearing": 229.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694889014", "vehicle": {"licensePlate": "JRSS99"}}}, {"id": "39778789-5b79-4557-a261-e6c963b52154", "vehicle": {"position": {"latitude": -36.79473, "longitude": -73.04583, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694546273", "vehicle": {"licensePlate": "CYVJ50"}}}, {"id": "08646c91-9cd5-4137-9a9d-df293f1c63fd", "vehicle": {"position": {"latitude": -36.77935, "longitude": -73.09905, "bearing": 298.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694822990", "vehicle": {"licensePlate": "HRCC76"}}}, {"id": "7ae21568-e5d4-448b-a4bb-746a35e70b06", "vehicle": {"position": {"latitude": -36.774704, "longitude": -73.087135, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694380283", "vehicle": {"licensePlate": "WC4676"}}}, {"id": "9a46132a-86ac-4bd8-bfdd-6b6f91636d12", "vehicle": {"position": {"latitude": -36.740364, "longitude": -73.09482, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694805587", "vehicle": {"licensePlate": "XU2661"}}}, {"id": "609b2e9a-227d-4db7-95db-fdabdd257482", "vehicle": {"position": {"latitude": -36.779346, "longitude": -73.09909, "bearing": 290.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888774", "vehicle": {"licensePlate": "RTZZ72"}}}, {"id": "b53bb5fb-0396-41d4-a7ae-eb6480f14566", "vehicle": {"position": {"latitude": -36.77937, "longitude": -73.098785, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694872200", "vehicle": {"licensePlate": "XY6940"}}}, {"id": "90e8daf2-472b-4fd2-bbfe-1a12fab35f8e", "vehicle": {"position": {"latitude": -36.7794, "longitude": -73.09883, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694873382", "vehicle": {"licensePlate": "FWGC75"}}}, {"id": "bfe8f4e2-c324-45af-a712-6251b3ea6d6e", "vehicle": {"position": {"latitude": -36.794556, "longitude": -73.04582, "bearing": 247.0, "odometer": 0.0, "speed": 2.5}, "timestamp": "1694643404", "vehicle": {"licensePlate": "DCZK29"}}}, {"id": "ab6767dc-d73b-47a5-b53b-7cd7e817ec10", "vehicle": {"position": {"latitude": -36.788338, "longitude": -73.10299, "bearing": 269.0, "odometer": 0.0, "speed": 0.2777778}, "timestamp": "1694889003", "vehicle": {"licensePlate": "WW5182"}}}, {"id": "760a0029-aff1-4bd7-b7ef-be4150ebd67e", "vehicle": {"position": {"latitude": -36.778427, "longitude": -73.09914, "bearing": 190.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694873434", "vehicle": {"licensePlate": "FCHP81"}}}, {"id": "8f28c26a-8555-477e-8eb3-7c30b496d6c9", "vehicle": {"position": {"latitude": -36.77952, "longitude": -73.099304, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694857069", "vehicle": {"licensePlate": "FXRS14"}}}, {"id": "c65cb4fe-1bdf-47d4-9d7f-8a8f459e6da9", "vehicle": {"position": {"latitude": -36.780476, "longitude": -73.04998, "bearing": 250.0, "odometer": 0.0, "speed": 6.9444447}, "timestamp": "1694888986", "vehicle": {"licensePlate": "FXZX50"}}}, {"id": "a7238dc1-cd2f-47ff-a134-a1ed32bb756b", "vehicle": {"position": {"latitude": -36.797287, "longitude": -73.0486, "bearing": 4.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888774", "vehicle": {"licensePlate": "JSBB13"}}}, {"id": "33bd6961-15bb-438e-8348-a9d933cbeb19", "vehicle": {"position": {"latitude": -36.789246, "longitude": -73.04267, "bearing": 336.0, "odometer": 0.0, "speed": 8.333333}, "timestamp": "1694889037", "vehicle": {"licensePlate": "XV3434"}}}, {"id": "ed103d3b-322d-4414-a282-700d06ff9b50", "vehicle": {"position": {"latitude": -36.7188, "longitude": -73.12097, "bearing": 328.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888978", "vehicle": {"licensePlate": "FYBB82"}}}, {"id": "cecc1a88-2eed-4936-acee-dc3fb95ede8b", "vehicle": {"position": {"latitude": -36.794884, "longitude": -73.04575, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694744105", "vehicle": {"licensePlate": "YF9154"}}}, {"id": "6e55e460-3cab-48cc-b844-bf14b6fe297a", "vehicle": {"position": {"latitude": -36.803604, "longitude": -73.04421, "bearing": 62.0, "odometer": 0.0, "speed": 4.4444447}, "timestamp": "1694888718", "vehicle": {"licensePlate": "ZT4054"}}}, {"id": "5042c1cd-1d3c-4064-93ea-7d8213da8e31", "vehicle": {"position": {"latitude": -36.79485, "longitude": -73.04587, "bearing": 339.0, "odometer": 0.0, "speed": 1.6666666}, "timestamp": "1694819547", "vehicle": {"licensePlate": "YR4140"}}}, {"id": "e71bb626-bed5-4cac-a756-f6662288188f", "vehicle": {"position": {"latitude": -36.794575, "longitude": -73.04586, "bearing": 332.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694882496", "vehicle": {"licensePlate": "BZXX79"}}}, {"id": "79be5e6b-a681-4678-be5e-56a06fe48387", "vehicle": {"position": {"latitude": -36.719242, "longitude": -73.12078, "bearing": 332.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694791538", "vehicle": {"licensePlate": "RSTV25"}}}, {"id": "797d2b5c-986a-4cab-bf00-094f32b691a1", "vehicle": {"position": {"latitude": -36.892105, "longitude": -73.13804, "bearing": 288.0, "odometer": 0.0, "speed": 3.6111112}, "timestamp": "1694812246", "vehicle": {"licensePlate": "FNJS27"}}}, {"id": "b7db8e5b-7a6e-4f6a-b1e2-39f441f00e10", "vehicle": {"position": {"latitude": -36.80277, "longitude": -73.04577, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694533644", "vehicle": {"licensePlate": "YR4142"}}}, {"id": "7deb199b-71a9-415a-8c26-7d39f00d930c", "vehicle": {"position": {"latitude": -36.718803, "longitude": -73.12106, "bearing": 238.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694712296", "vehicle": {"licensePlate": "WV6704"}}}, {"id": "b987cc97-4c16-4cc6-90db-84e3af870450", "vehicle": {"position": {"latitude": -36.718925, "longitude": -73.121155, "bearing": 254.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694879362", "vehicle": {"licensePlate": "HJRY46"}}}, {"id": "1dccd6be-5c21-49eb-8400-dd139e324a58", "vehicle": {"position": {"latitude": -36.794353, "longitude": -73.04626, "bearing": 224.0, "odometer": 0.0, "speed": 0.5555556}, "timestamp": "1694885856", "vehicle": {"licensePlate": "YB7527"}}}, {"id": "c339ea41-0a7d-4c24-919b-90263ec2fbbb", "vehicle": {"position": {"latitude": -36.794277, "longitude": -73.04589, "bearing": 274.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694821832", "vehicle": {"licensePlate": "YR1886"}}}, {"id": "928bf190-7521-4e31-9544-ffcdb3315439", "vehicle": {"position": {"latitude": -36.810333, "longitude": -73.03213, "bearing": 298.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694821922", "vehicle": {"licensePlate": "CPHW22"}}}, {"id": "b2625d35-725f-4921-8b5e-434be8083e76", "vehicle": {"position": {"latitude": -36.80559, "longitude": -73.03015, "bearing": 309.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694722822", "vehicle": {"licensePlate": "CKRB19"}}}, {"id": "12bd7037-f853-4fcf-818c-2e7a246a5d0a", "vehicle": {"position": {"latitude": -36.719437, "longitude": -73.13871, "bearing": 66.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694532100", "vehicle": {"licensePlate": "XY9669"}}}, {"id": "ff3a827a-d657-4e01-9e95-e0fca8bd0779", "vehicle": {"position": {"latitude": -36.794106, "longitude": -73.04617, "bearing": 346.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694888998", "vehicle": {"licensePlate": "RSZG39"}}}, {"id": "bce4d453-22dd-4398-b17a-9249995ffc01", "vehicle": {"position": {"latitude": -36.805347, "longitude": -73.03872, "bearing": 324.0, "odometer": 0.0, "speed": 1.1111112}, "timestamp": "1694858839", "vehicle": {"licensePlate": "YE2806"}}}, {"id": "06a06471-ef8f-437c-90fd-dca570fe139c", "vehicle": {"position": {"latitude": -36.794666, "longitude": -73.1064, "bearing": 302.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694870948", "vehicle": {"licensePlate": "HFYB67"}}}, {"id": "3238bfcd-8105-40c7-9518-cb5c6537eeb0", "vehicle": {"position": {"latitude": -36.80551, "longitude": -73.03843, "bearing": 144.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694815924", "vehicle": {"licensePlate": "CKGR61"}}}, {"id": "f7c79721-13f9-4862-b778-221a893ce05c", "vehicle": {"position": {"latitude": -36.808308, "longitude": -73.050316, "bearing": 0.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694822334", "vehicle": {"licensePlate": "BVPG38"}}}, {"id": "9ed06546-c0c2-48ab-889d-da13dcd732a8", "vehicle": {"position": {"latitude": -36.805553, "longitude": -73.038284, "bearing": 282.0, "odometer": 0.0, "speed": 0.0}, "timestamp": "1694721129", "vehicle": {"licensePlate": "BTRB60"}}}]} \ No newline at end of file diff --git a/notebooks/datos.json b/notebooks/datos.json new file mode 100644 index 0000000..8902790 --- /dev/null +++ b/notebooks/datos.json @@ -0,0 +1,6770 @@ +[ + { + "type": "con_recorrido", + "entity": "\n$47323735-0555-464b-8c87-84612a960b31\u001a\u00ad\u0003\n4\n\u00156580c01a-a-701ff27f-2\u0012\b15:02:00\u001a\b20230916 \u0000*\u00035400\u0001\u0012\u0011\b1\u0012\u0006\u0010\u00d7\u00e5\u0097\u00a8\u0006\"\u000515-13\u0012\u0012\b2\u0012\u0006\u0010\u00c5\u00ea\u0097\u00a8\u0006\"\u000615-Oct\u0012\u0012\b3\u0012\u0006\u0010\u00d3\u00ec\u0097\u00a8\u0006\"\u000615-Aug\u0012\u0012\b4\u0012\u0006\u0010\u00b3\u00ed\u0097\u00a8\u0006\"\u000615-Jun\u0012\u0012\b5\u0012\u0006\u0010\u00de\u00ed\u0097\u00a8\u0006\"\u000615-Apr\u0012\u0012\b6\u0012\u0006\u0010\u00c7\u00f4\u0097\u00a8\u0006\"\u000616-Aug\u0012\u0012\b7\u0012\u0006\u0010\u00ca\u00f5\u0097\u00a8\u0006\"\u000616-May\u0012\u0012\b8\u0012\u0006\u0010\u0084\u00f6\u0097\u00a8\u0006\"\u000616-Mar\u0012\u0012\b9\u0012\u0006\u0010\u00b9\u00f6\u0097\u00a8\u0006\"\u000616-Jan\u0012\u0012\b:\u0012\u0006\u0010\u009d\u00f7\u0097\u00a8\u0006\"\u000627-Jan\u0012\u0012\b;\u0012\u0006\u0010\u00ca\u00f7\u0097\u00a8\u0006\"\u000617-Jan\u0012\u0012\b<\u0012\u0006\u0010\u00c5\u00f9\u0097\u00a8\u0006\"\u000618-Feb\u0012\u0012\b=\u0012\u0006\u0010\u0092\u00fc\u0097\u00a8\u0006\"\u000619-Feb\u0012\u0012\b>\u0012\u0006\u0010\u00a0\u00fd\u0097\u00a8\u0006\"\u000620-Feb\u0012\u0012\b?\u0012\u0006\u0010\u00c7\u00fd\u0097\u00a8\u0006\"\u000620-Mar\u0012\u0012\b@\u0012\u0006\u0010\u0096\u00fe\u0097\u00a8\u0006\"\u000620-Jun\u0012\u0012\bA\u0012\u0006\u0010\u00e8\u00fe\u0097\u00a8\u0006\"\u000620-Sep\u0012\u0012\bB\u0012\u0006\u0010\u00eb\u00ff\u0097\u00a8\u0006\"\u000620-Dec\u001a\b\u001a\u0006DSSY17 \u00bc\u00e5\u0097\u00a8\u0006\"e\n4\n\u00156580c01a-a-701ff27f-2\u0012\b15:02:00\u001a\b20230916 \u0000*\u00035400\u0001\u0012\u001d\r*\u00d2\u0012\u00c2\u0015\u009c\u00f3\u0091\u00c2\u001d\u0000\u0000\u0000@!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-r\u001c\u0017A(\u00bc\u00e5\u0097\u00a8\u0006B\b\u001a\u0006DSSY17" + }, + { + "type": "con_recorrido", + "entity": "\n$8e20884f-b099-465b-941b-f0682817d7ef\u001a\u00d6\t\n4\n\u00155b492c06-9-701ff27f-2\u0012\b16:02:00\u001a\b20230916 \u0000*\u00035400\u0001\u0012\u0011\b\u0007\u0012\u0006\u0010\u00c8\u00e8\u0097\u00a8\u0006\"\u00053-Mar\u0012\u0011\b\b\u0012\u0006\u0010\u0084\u00e9\u0097\u00a8\u0006\"\u000550031\u0012\u0011\b\t\u0012\u0006\u0010\u00b8\u00e9\u0097\u00a8\u0006\"\u000550032\u0012\u0011\b\n\u0012\u0006\u0010\u00dd\u00e9\u0097\u00a8\u0006\"\u000539495\u0012\u0011\b\u000b\u0012\u0006\u0010\u00be\u00ea\u0097\u00a8\u0006\"\u000550033\u0012\u0011\b\f\u0012\u0006\u0010\u00e3\u00ea\u0097\u00a8\u0006\"\u000539497\u0012\u0011\b\r\u0012\u0006\u0010\u0082\u00eb\u0097\u00a8\u0006\"\u000549407\u0012\u0011\b\u000e\u0012\u0006\u0010\u00b8\u00eb\u0097\u00a8\u0006\"\u000550034\u0012\u0011\b\u000f\u0012\u0006\u0010\u00e2\u00eb\u0097\u00a8\u0006\"\u000540903\u0012\u0011\b\u0010\u0012\u0006\u0010\u0099\u00ec\u0097\u00a8\u0006\"\u000550035\u0012\u0011\b\u0011\u0012\u0006\u0010\u00cb\u00ec\u0097\u00a8\u0006\"\u000550036\u0012\u0011\b\u0012\u0012\u0006\u0010\u00ac\u00ee\u0097\u00a8\u0006\"\u000550037\u0012\u0011\b\u0013\u0012\u0006\u0010\u00b8\u00ef\u0097\u00a8\u0006\"\u000550038\u0012\u0011\b\u0014\u0012\u0006\u0010\u00fb\u00ef\u0097\u00a8\u0006\"\u000550039\u0012\u0011\b\u0015\u0012\u0006\u0010\u00b8\u00f0\u0097\u00a8\u0006\"\u000550040\u0012\u0011\b\u0016\u0012\u0006\u0010\u008b\u00f1\u0097\u00a8\u0006\"\u000550041\u0012\u0012\b\u0017\u0012\u0006\u0010\u0097\u00f2\u0097\u00a8\u0006\"\u0006Jun-15\u0012\u0012\b\u0018\u0012\u0006\u0010\u00ed\u00f2\u0097\u00a8\u0006\"\u0006Jun-13\u0012\u0011\b\u0019\u0012\u0006\u0010\u00b6\u00f4\u0097\u00a8\u0006\"\u00056-Oct\u0012\u0011\b\u001a\u0012\u0006\u0010\u00ea\u00f4\u0097\u00a8\u0006\"\u00056-Aug\u0012\u0011\b\u001b\u0012\u0006\u0010\u0087\u00f6\u0097\u00a8\u0006\"\u00056-Jun\u0012\u0011\b\u001c\u0012\u0006\u0010\u0089\u00f7\u0097\u00a8\u0006\"\u00056-Feb\u0012\u0011\b\u001d\u0012\u0006\u0010\u0097\u00f8\u0097\u00a8\u0006\"\u00057-Jul\u0012\u0011\b\u001e\u0012\u0006\u0010\u00e1\u00f8\u0097\u00a8\u0006\"\u00057-May\u0012\u0013\b\u001f\u0012\u0006\u0010\u008e\u00f9\u0097\u00a8\u0006\"\u00071508142\u0012\u0011\b \u0012\u0006\u0010\u00f9\u00f9\u0097\u00a8\u0006\"\u00057-Feb\u0012\u0011\b!\u0012\u0006\u0010\u00ba\u00fa\u0097\u00a8\u0006\"\u00058-Jan\u0012\u0011\b\"\u0012\u0006\u0010\u00e8\u00fa\u0097\u00a8\u0006\"\u00059-Jan\u0012\u0012\b#\u0012\u0006\u0010\u008d\u00fb\u0097\u00a8\u0006\"\u000610-Apr\u0012\u0012\b$\u0012\u0006\u0010\u00d9\u00fb\u0097\u00a8\u0006\"\u000610-Jan\u0012\u0011\b%\u0012\u0006\u0010\u0084\u00fc\u0097\u00a8\u0006\"\u000544863\u0012\u0012\b&\u0012\u0006\u0010\u00b1\u00fc\u0097\u00a8\u0006\"\u000610-Mar\u0012\u0012\b'\u0012\u0006\u0010\u00ea\u00fc\u0097\u00a8\u0006\"\u000611-Jan\u0012\u0011\b(\u0012\u0006\u0010\u0099\u00fe\u0097\u00a8\u0006\"\u000514-17\u0012\u0011\b)\u0012\u0006\u0010\u00c1\u00ff\u0097\u00a8\u0006\"\u000514-14\u0012\u0011\b*\u0012\u0006\u0010\u00f8\u00ff\u0097\u00a8\u0006\"\u000514-11\u0012\u0011\b+\u0012\u0006\u0010\u00ad\u0080\u0098\u00a8\u0006\"\u000591162\u0012\u0011\b,\u0012\u0006\u0010\u00a4\u0081\u0098\u00a8\u0006\"\u000550023\u0012\u0012\b-\u0012\u0006\u0010\u00a4\u0082\u0098\u00a8\u0006\"\u000614-Jul\u0012\u0012\b.\u0012\u0006\u0010\u00de\u0082\u0098\u00a8\u0006\"\u000614-Apr\u0012\u0012\b/\u0012\u0006\u0010\u00d2\u0083\u0098\u00a8\u0006\"\u000614-Mar\u0012\u0011\b0\u0012\u0006\u0010\u00a8\u0084\u0098\u00a8\u0006\"\u000538151\u0012\u0011\b1\u0012\u0006\u0010\u0090\u0086\u0098\u00a8\u0006\"\u000515-13\u0012\u0012\b2\u0012\u0006\u0010\u00a6\u008f\u0098\u00a8\u0006\"\u000615-Oct\u0012\u0012\b3\u0012\u0006\u0010\u00cd\u0094\u0098\u00a8\u0006\"\u000615-Aug\u0012\u0012\b4\u0012\u0006\u0010\u00df\u0096\u0098\u00a8\u0006\"\u000615-Jun\u0012\u0012\b5\u0012\u0006\u0010\u00e0\u0097\u0098\u00a8\u0006\"\u000615-Apr\u0012\u0012\b6\u0012\u0006\u0010\u00a3\u00b5\u0098\u00a8\u0006\"\u000616-Aug\u0012\u0012\b7\u0012\u0006\u0010\u00ea\u00bb\u0098\u00a8\u0006\"\u000616-May\u0012\u0012\b8\u0012\u0006\u0010\u0083\u00bf\u0098\u00a8\u0006\"\u000616-Mar\u0012\u0012\b9\u0012\u0006\u0010\u008c\u00c2\u0098\u00a8\u0006\"\u000616-Jan\u0012\u0012\b:\u0012\u0006\u0010\u00a7\u00c8\u0098\u00a8\u0006\"\u000627-Jan\u0012\u0012\b;\u0012\u0006\u0010\u00a7\u00cb\u0098\u00a8\u0006\"\u000617-Jan\u0012\u0012\b<\u0012\u0006\u0010\u00fe\u00de\u0098\u00a8\u0006\"\u000618-Feb\u0012\u0012\b=\u0012\u0006\u0010\u00f7\u0083\u0099\u00a8\u0006\"\u000619-Feb\u0012\u0012\b>\u0012\u0006\u0010\u00bb\u0099\u0099\u00a8\u0006\"\u000620-Feb\u0012\u0012\b?\u0012\u0006\u0010\u00b4\u00a0\u0099\u00a8\u0006\"\u000620-Mar\u0012\u0012\b@\u0012\u0006\u0010\u00b8\u00af\u0099\u00a8\u0006\"\u000620-Jun\u0012\u0012\bA\u0012\u0006\u0010\u00cd\u00c1\u0099\u00a8\u0006\"\u000620-Sep\u0012\u0012\bB\u0012\u0006\u0010\u00d4\u00e4\u0099\u00a8\u0006\"\u000620-Dec\u001a\b\u001a\u0006DTDZ72 \u009c\u00e8\u0097\u00a8\u0006\"e\n4\n\u00155b492c06-9-701ff27f-2\u0012\b16:02:00\u001a\b20230916 \u0000*\u00035400\u0001\u0012\u001d\r\u00e3R\u0013\u00c2\u0015\u00f7\u0018\u0092\u00c2\u001d\u0000\u0000pB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009c\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DTDZ72" + }, + { + "type": "con_recorrido", + "entity": "\n$2e56463c-9cd8-4ef0-bdc0-767603d6f010\u001a\u00fc\t\n4\n\u0015052d899d-c-701ff27f-2\u0012\b14:50:00\u001a\b20230916 \u0000*\u00035400\u0000\u0012\u0012\b\u000e\u0012\u0006\u0010\u00d6\u00e8\u0097\u00a8\u0006\"\u000619-Apr\u0012\u0012\b\u000f\u0012\u0006\u0010\u00d4\u00e9\u0097\u00a8\u0006\"\u000618-Jan\u0012\u0012\b\u0010\u0012\u0006\u0010\u0094\u00ea\u0097\u00a8\u0006\"\u000618-Feb\u0012\u0012\b\u0011\u0012\u0006\u0010\u00c9\u00ea\u0097\u00a8\u0006\"\u000618-Mar\u0012\u0011\b\u0012\u0012\u0006\u0010\u0088\u00eb\u0097\u00a8\u0006\"\u000550042\u0012\u0012\b\u0013\u0012\u0006\u0010\u00ff\u00eb\u0097\u00a8\u0006\"\u000616-Feb\u0012\u0010\b\u0014\u0012\u0006\u0010\u00b5\u00ec\u0097\u00a8\u0006\"\u000416-4\u0012\u0012\b\u0015\u0012\u0006\u0010\u0095\u00ed\u0097\u00a8\u0006\"\u000616-Jun\u0012\u0012\b\u0016\u0012\u0006\u0010\u00cf\u00ed\u0097\u00a8\u0006\"\u000616-Jul\u0012\u0012\b\u0017\u0012\u0006\u0010\u00f8\u00ed\u0097\u00a8\u0006\"\u000615-Jan\u0012\u0012\b\u0018\u0012\u0006\u0010\u00fb\u00f2\u0097\u00a8\u0006\"\u000615-Feb\u0012\u0012\b\u0019\u0012\u0006\u0010\u0083\u00f4\u0097\u00a8\u0006\"\u000615-Mar\u0012\u0012\b\u001a\u0012\u0006\u0010\u00a6\u00f4\u0097\u00a8\u0006\"\u000615-May\u0012\u0012\b\u001b\u0012\u0006\u0010\u00dd\u00f4\u0097\u00a8\u0006\"\u000615-Jul\u0012\u0012\b\u001c\u0012\u0006\u0010\u00b4\u00f5\u0097\u00a8\u0006\"\u000615-Sep\u0012\u0012\b\u001d\u0012\u0006\u0010\u00e4\u00fb\u0097\u00a8\u0006\"\u000615-Dec\u0012\u0011\b\u001e\u0012\u0006\u0010\u0094\u00fd\u0097\u00a8\u0006\"\u000538149\u0012\u0012\b\u001f\u0012\u0006\u0010\u00df\u00fd\u0097\u00a8\u0006\"\u000614-Feb\u0012\u0012\b \u0012\u0006\u0010\u00ce\u00fe\u0097\u00a8\u0006\"\u000614-May\u0012\u0012\b!\u0012\u0006\u0010\u00ff\u00fe\u0097\u00a8\u0006\"\u000614-Jun\u0012\u0012\b\"\u0012\u0006\u0010\u00c9\u00ff\u0097\u00a8\u0006\"\u000614-Aug\u0012\u0011\b#\u0012\u0006\u0010\u00fa\u00ff\u0097\u00a8\u0006\"\u000550024\u0012\u0011\b$\u0012\u0006\u0010\u00a9\u0081\u0098\u00a8\u0006\"\u000514-12\u0012\u0011\b%\u0012\u0006\u0010\u00c7\u0081\u0098\u00a8\u0006\"\u000514-13\u0012\u0011\b&\u0012\u0006\u0010\u00c9\u0082\u0098\u00a8\u0006\"\u000514-15\u0012\u0011\b'\u0012\u0006\u0010\u00e5\u0082\u0098\u00a8\u0006\"\u000514-16\u0012\u0011\b(\u0012\u0006\u0010\u00ae\u0083\u0098\u00a8\u0006\"\u000514-18\u0012\u0012\b)\u0012\u0006\u0010\u00bf\u0084\u0098\u00a8\u0006\"\u000613-Jan\u0012\u0012\b*\u0012\u0006\u0010\u0083\u0085\u0098\u00a8\u0006\"\u000613-Feb\u0012\u0012\b+\u0012\u0006\u0010\u00ab\u0085\u0098\u00a8\u0006\"\u000628-Jan\u0012\u0010\b,\u0012\u0006\u0010\u00fb\u0085\u0098\u00a8\u0006\"\u000412-3\u0012\u0012\b-\u0012\u0006\u0010\u0082\u0087\u0098\u00a8\u0006\"\u000612-Jan\u0012\u0012\b.\u0012\u0006\u0010\u00c3\u0087\u0098\u00a8\u0006\"\u000612-Feb\u0012\u0011\b/\u0012\u0006\u0010\u00a7\u0088\u0098\u00a8\u0006\"\u00057-Jan\u0012\u0011\b0\u0012\u0006\u0010\u0083\u0089\u0098\u00a8\u0006\"\u00057-Mar\u0012\u0011\b1\u0012\u0006\u0010\u0085\u008b\u0098\u00a8\u0006\"\u00057-Jun\u0012\u0011\b2\u0012\u0006\u0010\u0081\u008c\u0098\u00a8\u0006\"\u00057-Aug\u0012\u0011\b3\u0012\u0006\u0010\u0095\u008d\u0098\u00a8\u0006\"\u00056-Jan\u0012\u0011\b4\u0012\u0006\u0010\u00b2\u008e\u0098\u00a8\u0006\"\u00056-Mar\u0012\u0011\b5\u0012\u0006\u0010\u009c\u0090\u0098\u00a8\u0006\"\u00056-May\u0012\u0011\b6\u0012\u0006\u0010\u008c\u0093\u0098\u00a8\u0006\"\u00056-Jul\u0012\u0011\b7\u0012\u0006\u0010\u00a0\u0094\u0098\u00a8\u0006\"\u00056-Sep\u0012\u0011\b8\u0012\u0006\u0010\u00a8\u0096\u0098\u00a8\u0006\"\u00056-Nov\u0012\u0011\b9\u0012\u0006\u0010\u00c8\u0098\u0098\u00a8\u0006\"\u00056-Dec\u0012\u0012\b:\u0012\u0006\u0010\u00d8\u009a\u0098\u00a8\u0006\"\u0006Jun-14\u0012\u0012\b;\u0012\u0006\u0010\u00eb\u009e\u0098\u00a8\u0006\"\u0006Jun-17\u0012\u0012\b<\u0012\u0006\u0010\u009e\u00a1\u0098\u00a8\u0006\"\u0006Jun-19\u0012\u0012\b=\u0012\u0006\u0010\u00f8\u00a2\u0098\u00a8\u0006\"\u0006Jun-20\u0012\u0012\b>\u0012\u0006\u0010\u00f0\u00a4\u0098\u00a8\u0006\"\u0006Jun-22\u0012\u0012\b?\u0012\u0006\u0010\u0085\u00a7\u0098\u00a8\u0006\"\u0006Jun-24\u0012\u0012\b@\u0012\u0006\u0010\u00a4\u00aa\u0098\u00a8\u0006\"\u0006Jun-25\u0012\u0011\bA\u0012\u0006\u0010\u00cd\u00b4\u0098\u00a8\u0006\"\u00055-Feb\u0012\u0011\bB\u0012\u0006\u0010\u0095\u00b9\u0098\u00a8\u0006\"\u00051-Feb\u0012\u0011\bC\u0012\u0006\u0010\u0084\u00bc\u0098\u00a8\u0006\"\u00051-Mar\u0012\u0011\bD\u0012\u0006\u0010\u00ea\u00be\u0098\u00a8\u0006\"\u00051-Apr\u0012\u0011\bE\u0012\u0006\u0010\u00a2\u00c1\u0098\u00a8\u0006\"\u00051-May\u0012\u0011\bF\u0012\u0006\u0010\u00b2\u00c4\u0098\u00a8\u0006\"\u00051-Jun\u0012\u0011\bG\u0012\u0006\u0010\u00bd\u00c8\u0098\u00a8\u0006\"\u00051-Jul\u0012\u0011\bH\u0012\u0006\u0010\u008a\u00cb\u0098\u00a8\u0006\"\u00051-Aug\u0012\u0011\bI\u0012\u0006\u0010\u008f\u00ce\u0098\u00a8\u0006\"\u00051-Sep\u0012\u0011\bJ\u0012\u0006\u0010\u00ad\u00d3\u0098\u00a8\u0006\"\u00051-Oct\u0012\u0011\bK\u0012\u0006\u0010\u00f8\u00d7\u0098\u00a8\u0006\"\u00051-Nov\u001a\b\u001a\u0006FXVS53 \u00cd\u00e8\u0097\u00a8\u0006\"e\n4\n\u0015052d899d-c-701ff27f-2\u0012\b14:50:00\u001a\b20230916 \u0000*\u00035400\u0000\u0012\u001d\r{l\u0012\u00c2\u0015\r\u00e9\u0091\u00c2\u001d\u0000\u0000XC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u001c\u00c7\tA(\u00cd\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FXVS53" + }, + { + "type": "con_recorrido", + "entity": "\n$a3c8567d-4b28-49c3-be81-ea3eef681053\u001a\u00d2\u0001\n4\n\u00154a1e454c-e-701ff27f-2\u0012\b14:52:00\u001a\b20230916 \u0000*\u00035400\u0001\u0012\u0012\b<\u0012\u0006\u0010\u00a5\u00e8\u0097\u00a8\u0006\"\u000618-Feb\u0012\u0012\b=\u0012\u0006\u0010\u00bc\u00ea\u0097\u00a8\u0006\"\u000619-Feb\u0012\u0012\b>\u0012\u0006\u0010\u00a9\u00eb\u0097\u00a8\u0006\"\u000620-Feb\u0012\u0012\b?\u0012\u0006\u0010\u00c6\u00eb\u0097\u00a8\u0006\"\u000620-Mar\u0012\u0012\b@\u0012\u0006\u0010\u0080\u00ec\u0097\u00a8\u0006\"\u000620-Jun\u0012\u0012\bA\u0012\u0006\u0010\u00ba\u00ec\u0097\u00a8\u0006\"\u000620-Sep\u0012\u0012\bB\u0012\u0006\u0010\u0094\u00ed\u0097\u00a8\u0006\"\u000620-Dec\u001a\b\u001a\u0006FYDV52 \u00fa\u00e7\u0097\u00a8\u0006\"e\n4\n\u00154a1e454c-e-701ff27f-2\u0012\b14:52:00\u001a\b20230916 \u0000*\u00035400\u0001\u0012\u001d\r*s\u0012\u00c2\u0015\u0001\u00e9\u0091\u00c2\u001d\u0000\u0000\u00c0A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u008e>(\u00aa\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FYDV52" + }, + { + "type": "con_recorrido", + "entity": "\n$08173482-8a5a-4c8d-9c9e-40137cf5f92d\u001a\u0097\u0002\n4\n\u0015b6530c23-0-701ff27f-2\u0012\b14:30:00\u001a\b20230916 \u0000*\u00035400\u0000\u0012\u0011\bA\u0012\u0006\u0010\u00d1\u00e9\u0097\u00a8\u0006\"\u00055-Feb\u0012\u0011\bB\u0012\u0006\u0010\u00ae\u00ea\u0097\u00a8\u0006\"\u00051-Feb\u0012\u0011\bC\u0012\u0006\u0010\u00e3\u00ea\u0097\u00a8\u0006\"\u00051-Mar\u0012\u0011\bD\u0012\u0006\u0010\u0094\u00eb\u0097\u00a8\u0006\"\u00051-Apr\u0012\u0011\bE\u0012\u0006\u0010\u00bb\u00eb\u0097\u00a8\u0006\"\u00051-May\u0012\u0011\bF\u0012\u0006\u0010\u00ec\u00eb\u0097\u00a8\u0006\"\u00051-Jun\u0012\u0011\bG\u0012\u0006\u0010\u00a6\u00ec\u0097\u00a8\u0006\"\u00051-Jul\u0012\u0011\bH\u0012\u0006\u0010\u00c8\u00ec\u0097\u00a8\u0006\"\u00051-Aug\u0012\u0011\bI\u0012\u0006\u0010\u00ef\u00ec\u0097\u00a8\u0006\"\u00051-Sep\u0012\u0011\bJ\u0012\u0006\u0010\u00ac\u00ed\u0097\u00a8\u0006\"\u00051-Oct\u0012\u0011\bK\u0012\u0006\u0010\u00dd\u00ed\u0097\u00a8\u0006\"\u00051-Nov\u001a\b\u001a\u0006HWHR12 \u00b4\u00e8\u0097\u00a8\u0006\"e\n4\n\u0015b6530c23-0-701ff27f-2\u0012\b14:30:00\u001a\b20230916 \u0000*\u00035400\u0000\u0012\u001d\r\u00f5:\u0013\u00c2\u0015\u008a\f\u0092\u00c2\u001d\u0000\u0000NC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-r\u001c\u0097A(\u00b4\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HWHR12" + }, + { + "type": "con_recorrido", + "entity": "\n$194a87e2-fbcc-485c-a999-8c8668671ef8\u001a\u00f7\u0005\n4\n\u001597523aa1-7-701ff27f-2\u0012\b15:32:00\u001a\b20230916 \u0000*\u00035400\u0001\u0012\u0011\b \u0012\u0006\u0010\u00c7\u00e8\u0097\u00a8\u0006\"\u00057-Feb\u0012\u0011\b!\u0012\u0006\u0010\u0085\u00e9\u0097\u00a8\u0006\"\u00058-Jan\u0012\u0011\b\"\u0012\u0006\u0010\u00af\u00e9\u0097\u00a8\u0006\"\u00059-Jan\u0012\u0012\b#\u0012\u0006\u0010\u00d1\u00e9\u0097\u00a8\u0006\"\u000610-Apr\u0012\u0012\b$\u0012\u0006\u0010\u0095\u00ea\u0097\u00a8\u0006\"\u000610-Jan\u0012\u0011\b%\u0012\u0006\u0010\u00ba\u00ea\u0097\u00a8\u0006\"\u000544863\u0012\u0012\b&\u0012\u0006\u0010\u00e1\u00ea\u0097\u00a8\u0006\"\u000610-Mar\u0012\u0012\b'\u0012\u0006\u0010\u0090\u00eb\u0097\u00a8\u0006\"\u000611-Jan\u0012\u0011\b(\u0012\u0006\u0010\u009f\u00ec\u0097\u00a8\u0006\"\u000514-17\u0012\u0011\b)\u0012\u0006\u0010\u00a0\u00ed\u0097\u00a8\u0006\"\u000514-14\u0012\u0011\b*\u0012\u0006\u0010\u00c9\u00ed\u0097\u00a8\u0006\"\u000514-11\u0012\u0011\b+\u0012\u0006\u0010\u00ef\u00ed\u0097\u00a8\u0006\"\u000591162\u0012\u0011\b,\u0012\u0006\u0010\u00c4\u00ee\u0097\u00a8\u0006\"\u000550023\u0012\u0012\b-\u0012\u0006\u0010\u009b\u00ef\u0097\u00a8\u0006\"\u000614-Jul\u0012\u0012\b.\u0012\u0006\u0010\u00c2\u00ef\u0097\u00a8\u0006\"\u000614-Apr\u0012\u0012\b/\u0012\u0006\u0010\u008d\u00f0\u0097\u00a8\u0006\"\u000614-Mar\u0012\u0011\b0\u0012\u0006\u0010\u00c4\u00f0\u0097\u00a8\u0006\"\u000538151\u0012\u0011\b1\u0012\u0006\u0010\u00d0\u00f1\u0097\u00a8\u0006\"\u000515-13\u0012\u0012\b2\u0012\u0006\u0010\u00af\u00f6\u0097\u00a8\u0006\"\u000615-Oct\u0012\u0012\b3\u0012\u0006\u0010\u00d3\u00f8\u0097\u00a8\u0006\"\u000615-Aug\u0012\u0012\b4\u0012\u0006\u0010\u00be\u00f9\u0097\u00a8\u0006\"\u000615-Jun\u0012\u0012\b5\u0012\u0006\u0010\u00f0\u00f9\u0097\u00a8\u0006\"\u000615-Apr\u0012\u0012\b6\u0012\u0006\u0010\u00bd\u0082\u0098\u00a8\u0006\"\u000616-Aug\u0012\u0012\b7\u0012\u0006\u0010\u00f4\u0083\u0098\u00a8\u0006\"\u000616-May\u0012\u0012\b8\u0012\u0006\u0010\u00c7\u0084\u0098\u00a8\u0006\"\u000616-Mar\u0012\u0012\b9\u0012\u0006\u0010\u0093\u0085\u0098\u00a8\u0006\"\u000616-Jan\u0012\u0012\b:\u0012\u0006\u0010\u00a5\u0086\u0098\u00a8\u0006\"\u000627-Jan\u0012\u0012\b;\u0012\u0006\u0010\u00e8\u0086\u0098\u00a8\u0006\"\u000617-Jan\u0012\u0012\b<\u0012\u0006\u0010\u00e6\u0089\u0098\u00a8\u0006\"\u000618-Feb\u0012\u0012\b=\u0012\u0006\u0010\u00ff\u008d\u0098\u00a8\u0006\"\u000619-Feb\u0012\u0012\b>\u0012\u0006\u0010\u00ed\u008f\u0098\u00a8\u0006\"\u000620-Feb\u0012\u0012\b?\u0012\u0006\u0010\u00b1\u0090\u0098\u00a8\u0006\"\u000620-Mar\u0012\u0012\b@\u0012\u0006\u0010\u00b9\u0091\u0098\u00a8\u0006\"\u000620-Jun\u0012\u0012\bA\u0012\u0006\u0010\u00ca\u0092\u0098\u00a8\u0006\"\u000620-Sep\u0012\u0012\bB\u0012\u0006\u0010\u00b4\u0094\u0098\u00a8\u0006\"\u000620-Dec\u001a\b\u001a\u0006HYHP83 \u00ae\u00e8\u0097\u00a8\u0006\"e\n4\n\u001597523aa1-7-701ff27f-2\u0012\b15:32:00\u001a\b20230916 \u0000*\u00035400\u0001\u0012\u001d\r\u0006\u00fa\u0012\u00c2\u00156\u0001\u0092\u00c2\u001d\u0000\u0000\u00b0A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-9\u008e\u0087A(\u00ae\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HYHP83" + }, + { + "type": "con_recorrido", + "entity": "\n$5dbda519-b60b-4a72-82e8-23c4828d20c9\u001a\u00dc\u0006\n4\n\u0015619ce6ab-8-701ff27f-2\u0012\b15:10:00\u001a\b20230916 \u0000*\u00035400\u0000\u0012\u0011\b#\u0012\u0006\u0010\u00a8\u00e8\u0097\u00a8\u0006\"\u000550024\u0012\u0011\b$\u0012\u0006\u0010\u00b1\u00e9\u0097\u00a8\u0006\"\u000514-12\u0012\u0011\b%\u0012\u0006\u0010\u00c8\u00e9\u0097\u00a8\u0006\"\u000514-13\u0012\u0011\b&\u0012\u0006\u0010\u00a7\u00ea\u0097\u00a8\u0006\"\u000514-15\u0012\u0011\b'\u0012\u0006\u0010\u00ba\u00ea\u0097\u00a8\u0006\"\u000514-16\u0012\u0011\b(\u0012\u0006\u0010\u00ed\u00ea\u0097\u00a8\u0006\"\u000514-18\u0012\u0012\b)\u0012\u0006\u0010\u00ce\u00eb\u0097\u00a8\u0006\"\u000613-Jan\u0012\u0012\b*\u0012\u0006\u0010\u00fa\u00eb\u0097\u00a8\u0006\"\u000613-Feb\u0012\u0012\b+\u0012\u0006\u0010\u0093\u00ec\u0097\u00a8\u0006\"\u000628-Jan\u0012\u0010\b,\u0012\u0006\u0010\u00c5\u00ec\u0097\u00a8\u0006\"\u000412-3\u0012\u0012\b-\u0012\u0006\u0010\u0096\u00ed\u0097\u00a8\u0006\"\u000612-Jan\u0012\u0012\b.\u0012\u0006\u0010\u00bc\u00ed\u0097\u00a8\u0006\"\u000612-Feb\u0012\u0011\b/\u0012\u0006\u0010\u00f4\u00ed\u0097\u00a8\u0006\"\u00057-Jan\u0012\u0011\b0\u0012\u0006\u0010\u00a7\u00ee\u0097\u00a8\u0006\"\u00057-Mar\u0012\u0011\b1\u0012\u0006\u0010\u00ad\u00ef\u0097\u00a8\u0006\"\u00057-Jun\u0012\u0011\b2\u0012\u0006\u0010\u00ea\u00ef\u0097\u00a8\u0006\"\u00057-Aug\u0012\u0011\b3\u0012\u0006\u0010\u00b1\u00f0\u0097\u00a8\u0006\"\u00056-Jan\u0012\u0011\b4\u0012\u0006\u0010\u00f9\u00f0\u0097\u00a8\u0006\"\u00056-Mar\u0012\u0011\b5\u0012\u0006\u0010\u00df\u00f1\u0097\u00a8\u0006\"\u00056-May\u0012\u0011\b6\u0012\u0006\u0010\u00f5\u00f2\u0097\u00a8\u0006\"\u00056-Jul\u0012\u0011\b7\u0012\u0006\u0010\u00ae\u00f3\u0097\u00a8\u0006\"\u00056-Sep\u0012\u0011\b8\u0012\u0006\u0010\u008f\u00f4\u0097\u00a8\u0006\"\u00056-Nov\u0012\u0011\b9\u0012\u0006\u0010\u00f2\u00f4\u0097\u00a8\u0006\"\u00056-Dec\u0012\u0012\b:\u0012\u0006\u0010\u00cc\u00f5\u0097\u00a8\u0006\"\u0006Jun-14\u0012\u0012\b;\u0012\u0006\u0010\u00ed\u00f6\u0097\u00a8\u0006\"\u0006Jun-17\u0012\u0012\b<\u0012\u0006\u0010\u00c4\u00f7\u0097\u00a8\u0006\"\u0006Jun-19\u0012\u0012\b=\u0012\u0006\u0010\u00ff\u00f7\u0097\u00a8\u0006\"\u0006Jun-20\u0012\u0012\b>\u0012\u0006\u0010\u00bf\u00f8\u0097\u00a8\u0006\"\u0006Jun-22\u0012\u0012\b?\u0012\u0006\u0010\u0084\u00f9\u0097\u00a8\u0006\"\u0006Jun-24\u0012\u0012\b@\u0012\u0006\u0010\u00e6\u00f9\u0097\u00a8\u0006\"\u0006Jun-25\u0012\u0011\bA\u0012\u0006\u0010\u00fa\u00fb\u0097\u00a8\u0006\"\u00055-Feb\u0012\u0011\bB\u0012\u0006\u0010\u00e5\u00fc\u0097\u00a8\u0006\"\u00051-Feb\u0012\u0011\bC\u0012\u0006\u0010\u00a4\u00fd\u0097\u00a8\u0006\"\u00051-Mar\u0012\u0011\bD\u0012\u0006\u0010\u00df\u00fd\u0097\u00a8\u0006\"\u00051-Apr\u0012\u0011\bE\u0012\u0006\u0010\u0091\u00fe\u0097\u00a8\u0006\"\u00051-May\u0012\u0011\bF\u0012\u0006\u0010\u00ce\u00fe\u0097\u00a8\u0006\"\u00051-Jun\u0012\u0011\bG\u0012\u0006\u0010\u0099\u00ff\u0097\u00a8\u0006\"\u00051-Jul\u0012\u0011\bH\u0012\u0006\u0010\u00c7\u00ff\u0097\u00a8\u0006\"\u00051-Aug\u0012\u0011\bI\u0012\u0006\u0010\u00fb\u00ff\u0097\u00a8\u0006\"\u00051-Sep\u0012\u0011\bJ\u0012\u0006\u0010\u00cf\u0080\u0098\u00a8\u0006\"\u00051-Oct\u0012\u0011\bK\u0012\u0006\u0010\u0094\u0081\u0098\u00a8\u0006\"\u00051-Nov\u001a\b\u001a\u0006JJJC68 \u0096\u00e8\u0097\u00a8\u0006\"e\n4\n\u0015619ce6ab-8-701ff27f-2\u0012\b15:10:00\u001a\b20230916 \u0000*\u00035400\u0000\u0012\u001d\r\u0003\u00e1\u0012\u00c2\u00158\u00f3\u0091\u00c2\u001d\u0000\u0000NC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008e\u00e3x@(\u0096\u00e8\u0097\u00a8\u0006B\b\u001a\u0006JJJC68" + }, + { + "type": "con_recorrido", + "entity": "\n$0ed9a4b9-0622-40c5-bfc2-fcf366410395\u001a\u00b7\b\n4\n\u00159e911196-b-701ff27f-2\u0012\b15:30:00\u001a\b20230916 \u0000*\u00035400\u0000\u0012\u0012\b\u0018\u0012\u0006\u0010\u00df\u00ec\u0097\u00a8\u0006\"\u000615-Feb\u0012\u0012\b\u0019\u0012\u0006\u0010\u00e6\u00ed\u0097\u00a8\u0006\"\u000615-Mar\u0012\u0012\b\u001a\u0012\u0006\u0010\u0088\u00ee\u0097\u00a8\u0006\"\u000615-May\u0012\u0012\b\u001b\u0012\u0006\u0010\u00bf\u00ee\u0097\u00a8\u0006\"\u000615-Jul\u0012\u0012\b\u001c\u0012\u0006\u0010\u0093\u00ef\u0097\u00a8\u0006\"\u000615-Sep\u0012\u0012\b\u001d\u0012\u0006\u0010\u00fb\u00f4\u0097\u00a8\u0006\"\u000615-Dec\u0012\u0011\b\u001e\u0012\u0006\u0010\u0092\u00f6\u0097\u00a8\u0006\"\u000538149\u0012\u0012\b\u001f\u0012\u0006\u0010\u00d1\u00f6\u0097\u00a8\u0006\"\u000614-Feb\u0012\u0012\b \u0012\u0006\u0010\u00ae\u00f7\u0097\u00a8\u0006\"\u000614-May\u0012\u0012\b!\u0012\u0006\u0010\u00d6\u00f7\u0097\u00a8\u0006\"\u000614-Jun\u0012\u0012\b\"\u0012\u0006\u0010\u0093\u00f8\u0097\u00a8\u0006\"\u000614-Aug\u0012\u0011\b#\u0012\u0006\u0010\u00bb\u00f8\u0097\u00a8\u0006\"\u000550024\u0012\u0011\b$\u0012\u0006\u0010\u00c9\u00f9\u0097\u00a8\u0006\"\u000514-12\u0012\u0011\b%\u0012\u0006\u0010\u00e1\u00f9\u0097\u00a8\u0006\"\u000514-13\u0012\u0011\b&\u0012\u0006\u0010\u00c8\u00fa\u0097\u00a8\u0006\"\u000514-15\u0012\u0011\b'\u0012\u0006\u0010\u00de\u00fa\u0097\u00a8\u0006\"\u000514-16\u0012\u0011\b(\u0012\u0006\u0010\u0098\u00fb\u0097\u00a8\u0006\"\u000514-18\u0012\u0012\b)\u0012\u0006\u0010\u0088\u00fc\u0097\u00a8\u0006\"\u000613-Jan\u0012\u0012\b*\u0012\u0006\u0010\u00bc\u00fc\u0097\u00a8\u0006\"\u000613-Feb\u0012\u0012\b+\u0012\u0006\u0010\u00db\u00fc\u0097\u00a8\u0006\"\u000628-Jan\u0012\u0010\b,\u0012\u0006\u0010\u0098\u00fd\u0097\u00a8\u0006\"\u000412-3\u0012\u0012\b-\u0012\u0006\u0010\u00fd\u00fd\u0097\u00a8\u0006\"\u000612-Jan\u0012\u0012\b.\u0012\u0006\u0010\u00af\u00fe\u0097\u00a8\u0006\"\u000612-Feb\u0012\u0011\b/\u0012\u0006\u0010\u00f8\u00fe\u0097\u00a8\u0006\"\u00057-Jan\u0012\u0011\b0\u0012\u0006\u0010\u00bc\u00ff\u0097\u00a8\u0006\"\u00057-Mar\u0012\u0011\b1\u0012\u0006\u0010\u00f8\u0080\u0098\u00a8\u0006\"\u00057-Jun\u0012\u0011\b2\u0012\u0006\u0010\u00d0\u0081\u0098\u00a8\u0006\"\u00057-Aug\u0012\u0011\b3\u0012\u0006\u0010\u00b8\u0082\u0098\u00a8\u0006\"\u00056-Jan\u0012\u0011\b4\u0012\u0006\u0010\u00a6\u0083\u0098\u00a8\u0006\"\u00056-Mar\u0012\u0011\b5\u0012\u0006\u0010\u00c7\u0084\u0098\u00a8\u0006\"\u00056-May\u0012\u0011\b6\u0012\u0006\u0010\u00bf\u0086\u0098\u00a8\u0006\"\u00056-Jul\u0012\u0011\b7\u0012\u0006\u0010\u00a0\u0087\u0098\u00a8\u0006\"\u00056-Sep\u0012\u0011\b8\u0012\u0006\u0010\u00cc\u0088\u0098\u00a8\u0006\"\u00056-Nov\u0012\u0011\b9\u0012\u0006\u0010\u0084\u008a\u0098\u00a8\u0006\"\u00056-Dec\u0012\u0012\b:\u0012\u0006\u0010\u00ae\u008b\u0098\u00a8\u0006\"\u0006Jun-14\u0012\u0012\b;\u0012\u0006\u0010\u00f2\u008d\u0098\u00a8\u0006\"\u0006Jun-17\u0012\u0012\b<\u0012\u0006\u0010\u00a8\u008f\u0098\u00a8\u0006\"\u0006Jun-19\u0012\u0012\b=\u0012\u0006\u0010\u00a7\u0090\u0098\u00a8\u0006\"\u0006Jun-20\u0012\u0012\b>\u0012\u0006\u0010\u00b6\u0091\u0098\u00a8\u0006\"\u0006Jun-22\u0012\u0012\b?\u0012\u0006\u0010\u00d2\u0092\u0098\u00a8\u0006\"\u0006Jun-24\u0012\u0012\b@\u0012\u0006\u0010\u00b8\u0094\u0098\u00a8\u0006\"\u0006Jun-25\u0012\u0011\bA\u0012\u0006\u0010\u00ef\u0099\u0098\u00a8\u0006\"\u00055-Feb\u0012\u0011\bB\u0012\u0006\u0010\u0092\u009c\u0098\u00a8\u0006\"\u00051-Feb\u0012\u0011\bC\u0012\u0006\u0010\u00c4\u009d\u0098\u00a8\u0006\"\u00051-Mar\u0012\u0011\bD\u0012\u0006\u0010\u00ee\u009e\u0098\u00a8\u0006\"\u00051-Apr\u0012\u0011\bE\u0012\u0006\u0010\u0080\u00a0\u0098\u00a8\u0006\"\u00051-May\u0012\u0011\bF\u0012\u0006\u0010\u00b7\u00a1\u0098\u00a8\u0006\"\u00051-Jun\u0012\u0011\bG\u0012\u0006\u0010\u00a0\u00a3\u0098\u00a8\u0006\"\u00051-Jul\u0012\u0011\bH\u0012\u0006\u0010\u00b1\u00a4\u0098\u00a8\u0006\"\u00051-Aug\u0012\u0011\bI\u0012\u0006\u0010\u00d9\u00a5\u0098\u00a8\u0006\"\u00051-Sep\u0012\u0011\bJ\u0012\u0006\u0010\u00f0\u00a7\u0098\u00a8\u0006\"\u00051-Oct\u0012\u0011\bK\u0012\u0006\u0010\u00dd\u00a9\u0098\u00a8\u0006\"\u00051-Nov\u001a\b\u001a\u0006JRZZ57 \u0098\u00e8\u0097\u00a8\u0006\"e\n4\n\u00159e911196-b-701ff27f-2\u0012\b15:30:00\u001a\b20230916 \u0000*\u00035400\u0000\u0012\u001d\r \u008e\u0012\u00c2\u0015\u001d\u00eb\u0091\u00c2\u001d\u0000\u0000@C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u001c\u00c71A(\u0098\u00e8\u0097\u00a8\u0006B\b\u001a\u0006JRZZ57" + }, + { + "type": "con_recorrido", + "entity": "\n$20b39c49-c387-4ca5-b8ed-4e1bad57d901\u001a\u00c8\u0004\n4\n\u00157d76082a-c-701ff27f-2\u0012\b15:22:00\u001a\b20230916 \u0000*\u00035400\u0001\u0012\u0011\b)\u0012\u0006\u0010\u00de\u00e8\u0097\u00a8\u0006\"\u000514-14\u0012\u0011\b*\u0012\u0006\u0010\u008a\u00e9\u0097\u00a8\u0006\"\u000514-11\u0012\u0011\b+\u0012\u0006\u0010\u00b3\u00e9\u0097\u00a8\u0006\"\u000591162\u0012\u0011\b,\u0012\u0006\u0010\u008e\u00ea\u0097\u00a8\u0006\"\u000550023\u0012\u0012\b-\u0012\u0006\u0010\u00ea\u00ea\u0097\u00a8\u0006\"\u000614-Jul\u0012\u0012\b.\u0012\u0006\u0010\u0092\u00eb\u0097\u00a8\u0006\"\u000614-Apr\u0012\u0012\b/\u0012\u0006\u0010\u00e1\u00eb\u0097\u00a8\u0006\"\u000614-Mar\u0012\u0011\b0\u0012\u0006\u0010\u0099\u00ec\u0097\u00a8\u0006\"\u000538151\u0012\u0011\b1\u0012\u0006\u0010\u00a9\u00ed\u0097\u00a8\u0006\"\u000515-13\u0012\u0012\b2\u0012\u0006\u0010\u00fa\u00f1\u0097\u00a8\u0006\"\u000615-Oct\u0012\u0012\b3\u0012\u0006\u0010\u008a\u00f4\u0097\u00a8\u0006\"\u000615-Aug\u0012\u0012\b4\u0012\u0006\u0010\u00ed\u00f4\u0097\u00a8\u0006\"\u000615-Jun\u0012\u0012\b5\u0012\u0006\u0010\u009a\u00f5\u0097\u00a8\u0006\"\u000615-Apr\u0012\u0012\b6\u0012\u0006\u0010\u00d4\u00fc\u0097\u00a8\u0006\"\u000616-Aug\u0012\u0012\b7\u0012\u0006\u0010\u00eb\u00fd\u0097\u00a8\u0006\"\u000616-May\u0012\u0012\b8\u0012\u0006\u0010\u00ae\u00fe\u0097\u00a8\u0006\"\u000616-Mar\u0012\u0012\b9\u0012\u0006\u0010\u00ed\u00fe\u0097\u00a8\u0006\"\u000616-Jan\u0012\u0012\b:\u0012\u0006\u0010\u00e2\u00ff\u0097\u00a8\u0006\"\u000627-Jan\u0012\u0012\b;\u0012\u0006\u0010\u0098\u0080\u0098\u00a8\u0006\"\u000617-Jan\u0012\u0012\b<\u0012\u0006\u0010\u00c6\u0082\u0098\u00a8\u0006\"\u000618-Feb\u0012\u0012\b=\u0012\u0006\u0010\u00e1\u0085\u0098\u00a8\u0006\"\u000619-Feb\u0012\u0012\b>\u0012\u0006\u0010\u0094\u0087\u0098\u00a8\u0006\"\u000620-Feb\u0012\u0012\b?\u0012\u0006\u0010\u00c6\u0087\u0098\u00a8\u0006\"\u000620-Mar\u0012\u0012\b@\u0012\u0006\u0010\u00ab\u0088\u0098\u00a8\u0006\"\u000620-Jun\u0012\u0012\bA\u0012\u0006\u0010\u0095\u0089\u0098\u00a8\u0006\"\u000620-Sep\u0012\u0012\bB\u0012\u0006\u0010\u00bf\u008a\u0098\u00a8\u0006\"\u000620-Dec\u001a\b\u001a\u0006JXFY19 \u00ac\u00e8\u0097\u00a8\u0006\"e\n4\n\u00157d76082a-c-701ff27f-2\u0012\b15:22:00\u001a\b20230916 \u0000*\u00035400\u0001\u0012\u001d\r\u00ae\u00ea\u0012\u00c2\u0015\u00e5\u00f5\u0091\u00c2\u001d\u0000\u0000 B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00c7qLA(\u00ac\u00e8\u0097\u00a8\u0006B\b\u001a\u0006JXFY19" + }, + { + "type": "con_recorrido", + "entity": "\n$fde89fcf-e11d-4728-9aed-56ebc3e54c20\u001a\u00a6\u0007\n4\n\u001590ec6b89-b-701ff27f-2\u0012\b15:42:00\u001a\b20230916 \u0000*\u00035400\u0001\u0012\u0012\b\u0017\u0012\u0006\u0010\u00de\u00e8\u0097\u00a8\u0006\"\u0006Jun-15\u0012\u0012\b\u0018\u0012\u0006\u0010\u00bb\u00e9\u0097\u00a8\u0006\"\u0006Jun-13\u0012\u0011\b\u0019\u0012\u0006\u0010\u008c\u00eb\u0097\u00a8\u0006\"\u00056-Oct\u0012\u0011\b\u001a\u0012\u0006\u0010\u00c0\u00eb\u0097\u00a8\u0006\"\u00056-Aug\u0012\u0011\b\u001b\u0012\u0006\u0010\u00db\u00ec\u0097\u00a8\u0006\"\u00056-Jun\u0012\u0011\b\u001c\u0012\u0006\u0010\u00d7\u00ed\u0097\u00a8\u0006\"\u00056-Feb\u0012\u0011\b\u001d\u0012\u0006\u0010\u00da\u00ee\u0097\u00a8\u0006\"\u00057-Jul\u0012\u0011\b\u001e\u0012\u0006\u0010\u009c\u00ef\u0097\u00a8\u0006\"\u00057-May\u0012\u0013\b\u001f\u0012\u0006\u0010\u00c4\u00ef\u0097\u00a8\u0006\"\u00071508142\u0012\u0011\b \u0012\u0006\u0010\u00a2\u00f0\u0097\u00a8\u0006\"\u00057-Feb\u0012\u0011\b!\u0012\u0006\u0010\u00db\u00f0\u0097\u00a8\u0006\"\u00058-Jan\u0012\u0011\b\"\u0012\u0006\u0010\u0082\u00f1\u0097\u00a8\u0006\"\u00059-Jan\u0012\u0012\b#\u0012\u0006\u0010\u00a1\u00f1\u0097\u00a8\u0006\"\u000610-Apr\u0012\u0012\b$\u0012\u0006\u0010\u00e1\u00f1\u0097\u00a8\u0006\"\u000610-Jan\u0012\u0011\b%\u0012\u0006\u0010\u0084\u00f2\u0097\u00a8\u0006\"\u000544863\u0012\u0012\b&\u0012\u0006\u0010\u00a8\u00f2\u0097\u00a8\u0006\"\u000610-Mar\u0012\u0012\b'\u0012\u0006\u0010\u00d6\u00f2\u0097\u00a8\u0006\"\u000611-Jan\u0012\u0011\b(\u0012\u0006\u0010\u00e2\u00f3\u0097\u00a8\u0006\"\u000514-17\u0012\u0011\b)\u0012\u0006\u0010\u00e4\u00f4\u0097\u00a8\u0006\"\u000514-14\u0012\u0011\b*\u0012\u0006\u0010\u008d\u00f5\u0097\u00a8\u0006\"\u000514-11\u0012\u0011\b+\u0012\u0006\u0010\u00b4\u00f5\u0097\u00a8\u0006\"\u000591162\u0012\u0011\b,\u0012\u0006\u0010\u008d\u00f6\u0097\u00a8\u0006\"\u000550023\u0012\u0012\b-\u0012\u0006\u0010\u00ea\u00f6\u0097\u00a8\u0006\"\u000614-Jul\u0012\u0012\b.\u0012\u0006\u0010\u0093\u00f7\u0097\u00a8\u0006\"\u000614-Apr\u0012\u0012\b/\u0012\u0006\u0010\u00e5\u00f7\u0097\u00a8\u0006\"\u000614-Mar\u0012\u0011\b0\u0012\u0006\u0010\u00a1\u00f8\u0097\u00a8\u0006\"\u000538151\u0012\u0011\b1\u0012\u0006\u0010\u00be\u00f9\u0097\u00a8\u0006\"\u000515-13\u0012\u0012\b2\u0012\u0006\u0010\u0095\u00ff\u0097\u00a8\u0006\"\u000615-Oct\u0012\u0012\b3\u0012\u0006\u0010\u008e\u0082\u0098\u00a8\u0006\"\u000615-Aug\u0012\u0012\b4\u0012\u0006\u0010\u009f\u0083\u0098\u00a8\u0006\"\u000615-Jun\u0012\u0012\b5\u0012\u0006\u0010\u00e2\u0083\u0098\u00a8\u0006\"\u000615-Apr\u0012\u0012\b6\u0012\u0006\u0010\u00c7\u0090\u0098\u00a8\u0006\"\u000616-Aug\u0012\u0012\b7\u0012\u0006\u0010\u00f1\u0092\u0098\u00a8\u0006\"\u000616-May\u0012\u0012\b8\u0012\u0006\u0010\u00fc\u0093\u0098\u00a8\u0006\"\u000616-Mar\u0012\u0012\b9\u0012\u0006\u0010\u00fd\u0094\u0098\u00a8\u0006\"\u000616-Jan\u0012\u0012\b:\u0012\u0006\u0010\u00f8\u0096\u0098\u00a8\u0006\"\u000627-Jan\u0012\u0012\b;\u0012\u0006\u0010\u00ec\u0097\u0098\u00a8\u0006\"\u000617-Jan\u0012\u0012\b<\u0012\u0006\u0010\u009f\u009d\u0098\u00a8\u0006\"\u000618-Feb\u0012\u0012\b=\u0012\u0006\u0010\u00ab\u00a5\u0098\u00a8\u0006\"\u000619-Feb\u0012\u0012\b>\u0012\u0006\u0010\u0094\u00a9\u0098\u00a8\u0006\"\u000620-Feb\u0012\u0012\b?\u0012\u0006\u0010\u00a3\u00aa\u0098\u00a8\u0006\"\u000620-Mar\u0012\u0012\b@\u0012\u0006\u0010\u00c4\u00ac\u0098\u00a8\u0006\"\u000620-Jun\u0012\u0012\bA\u0012\u0006\u0010\u0080\u00af\u0098\u00a8\u0006\"\u000620-Sep\u0012\u0012\bB\u0012\u0006\u0010\u008c\u00b3\u0098\u00a8\u0006\"\u000620-Dec\u001a\b\u001a\u0006JXFY20 \u00ac\u00e8\u0097\u00a8\u0006\"e\n4\n\u001590ec6b89-b-701ff27f-2\u0012\b15:42:00\u001a\b20230916 \u0000*\u00035400\u0001\u0012\u001d\r\u00bf\"\u0013\u00c2\u0015\u001b\u000b\u0092\u00c2\u001d\u0000\u0000\u0090A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000HA(\u00ac\u00e8\u0097\u00a8\u0006B\b\u001a\u0006JXFY20" + }, + { + "type": "con_recorrido", + "entity": "\n$41bfefdf-262e-4480-8d4a-a36bb393505e\u001a\u00d3\u0007\n4\n\u00152557141d-1-701ff27f-2\u0012\b15:20:00\u001a\b20230916 \u0000*\u00035400\u0000\u0012\u0012\b\u001d\u0012\u0006\u0010\u00f4\u00ed\u0097\u00a8\u0006\"\u000615-Dec\u0012\u0011\b\u001e\u0012\u0006\u0010\u0085\u00ef\u0097\u00a8\u0006\"\u000538149\u0012\u0012\b\u001f\u0012\u0006\u0010\u00c1\u00ef\u0097\u00a8\u0006\"\u000614-Feb\u0012\u0012\b \u0012\u0006\u0010\u0097\u00f0\u0097\u00a8\u0006\"\u000614-May\u0012\u0012\b!\u0012\u0006\u0010\u00bc\u00f0\u0097\u00a8\u0006\"\u000614-Jun\u0012\u0012\b\"\u0012\u0006\u0010\u00f3\u00f0\u0097\u00a8\u0006\"\u000614-Aug\u0012\u0011\b#\u0012\u0006\u0010\u0098\u00f1\u0097\u00a8\u0006\"\u000550024\u0012\u0011\b$\u0012\u0006\u0010\u0095\u00f2\u0097\u00a8\u0006\"\u000514-12\u0012\u0011\b%\u0012\u0006\u0010\u00aa\u00f2\u0097\u00a8\u0006\"\u000514-13\u0012\u0011\b&\u0012\u0006\u0010\u0084\u00f3\u0097\u00a8\u0006\"\u000514-15\u0012\u0011\b'\u0012\u0006\u0010\u0097\u00f3\u0097\u00a8\u0006\"\u000514-16\u0012\u0011\b(\u0012\u0006\u0010\u00c9\u00f3\u0097\u00a8\u0006\"\u000514-18\u0012\u0012\b)\u0012\u0006\u0010\u00a8\u00f4\u0097\u00a8\u0006\"\u000613-Jan\u0012\u0012\b*\u0012\u0006\u0010\u00d3\u00f4\u0097\u00a8\u0006\"\u000613-Feb\u0012\u0012\b+\u0012\u0006\u0010\u00ed\u00f4\u0097\u00a8\u0006\"\u000628-Jan\u0012\u0010\b,\u0012\u0006\u0010\u009f\u00f5\u0097\u00a8\u0006\"\u000412-3\u0012\u0012\b-\u0012\u0006\u0010\u00f2\u00f5\u0097\u00a8\u0006\"\u000612-Jan\u0012\u0012\b.\u0012\u0006\u0010\u009a\u00f6\u0097\u00a8\u0006\"\u000612-Feb\u0012\u0011\b/\u0012\u0006\u0010\u00d5\u00f6\u0097\u00a8\u0006\"\u00057-Jan\u0012\u0011\b0\u0012\u0006\u0010\u008b\u00f7\u0097\u00a8\u0006\"\u00057-Mar\u0012\u0011\b1\u0012\u0006\u0010\u009d\u00f8\u0097\u00a8\u0006\"\u00057-Jun\u0012\u0011\b2\u0012\u0006\u0010\u00e1\u00f8\u0097\u00a8\u0006\"\u00057-Aug\u0012\u0011\b3\u0012\u0006\u0010\u00b0\u00f9\u0097\u00a8\u0006\"\u00056-Jan\u0012\u0011\b4\u0012\u0006\u0010\u0082\u00fa\u0097\u00a8\u0006\"\u00056-Mar\u0012\u0011\b5\u0012\u0006\u0010\u00f9\u00fa\u0097\u00a8\u0006\"\u00056-May\u0012\u0011\b6\u0012\u0006\u0010\u00ab\u00fc\u0097\u00a8\u0006\"\u00056-Jul\u0012\u0011\b7\u0012\u0006\u0010\u00f0\u00fc\u0097\u00a8\u0006\"\u00056-Sep\u0012\u0011\b8\u0012\u0006\u0010\u00e8\u00fd\u0097\u00a8\u0006\"\u00056-Nov\u0012\u0011\b9\u0012\u0006\u0010\u00e6\u00fe\u0097\u00a8\u0006\"\u00056-Dec\u0012\u0012\b:\u0012\u0006\u0010\u00d9\u00ff\u0097\u00a8\u0006\"\u0006Jun-14\u0012\u0012\b;\u0012\u0006\u0010\u00ae\u0081\u0098\u00a8\u0006\"\u0006Jun-17\u0012\u0012\b<\u0012\u0006\u0010\u00a3\u0082\u0098\u00a8\u0006\"\u0006Jun-19\u0012\u0012\b=\u0012\u0006\u0010\u00f3\u0082\u0098\u00a8\u0006\"\u0006Jun-20\u0012\u0012\b>\u0012\u0006\u0010\u00cc\u0083\u0098\u00a8\u0006\"\u0006Jun-22\u0012\u0012\b?\u0012\u0006\u0010\u00ad\u0084\u0098\u00a8\u0006\"\u0006Jun-24\u0012\u0012\b@\u0012\u0006\u0010\u00b8\u0085\u0098\u00a8\u0006\"\u0006Jun-25\u0012\u0011\bA\u0012\u0006\u0010\u00ce\u0088\u0098\u00a8\u0006\"\u00055-Feb\u0012\u0011\bB\u0012\u0006\u0010\u00f1\u0089\u0098\u00a8\u0006\"\u00051-Feb\u0012\u0011\bC\u0012\u0006\u0010\u00d3\u008a\u0098\u00a8\u0006\"\u00051-Mar\u0012\u0011\bD\u0012\u0006\u0010\u00b0\u008b\u0098\u00a8\u0006\"\u00051-Apr\u0012\u0011\bE\u0012\u0006\u0010\u00fe\u008b\u0098\u00a8\u0006\"\u00051-May\u0012\u0011\bF\u0012\u0006\u0010\u00df\u008c\u0098\u00a8\u0006\"\u00051-Jun\u0012\u0011\bG\u0012\u0006\u0010\u00d9\u008d\u0098\u00a8\u0006\"\u00051-Jul\u0012\u0011\bH\u0012\u0006\u0010\u00a4\u008e\u0098\u00a8\u0006\"\u00051-Aug\u0012\u0011\bI\u0012\u0006\u0010\u00f9\u008e\u0098\u00a8\u0006\"\u00051-Sep\u0012\u0011\bJ\u0012\u0006\u0010\u0084\u0090\u0098\u00a8\u0006\"\u00051-Oct\u0012\u0011\bK\u0012\u0006\u0010\u00f9\u0090\u0098\u00a8\u0006\"\u00051-Nov\u001a\b\u001a\u0006LBKD68 \u00b2\u00e8\u0097\u00a8\u0006\"e\n4\n\u00152557141d-1-701ff27f-2\u0012\b15:20:00\u001a\b20230916 \u0000*\u00035400\u0000\u0012\u001d\r\u00ab\u00b3\u0012\u00c2\u0015\u0082\u00ea\u0091\u00c2\u001d\u0000\u0000\u0012\u0006\u0010\u00d1\u00f9\u0097\u00a8\u0006\"\u000620-Feb\u0012\u0012\b?\u0012\u0006\u0010\u00f2\u00f9\u0097\u00a8\u0006\"\u000620-Mar\u0012\u0012\b@\u0012\u0006\u0010\u00b3\u00fa\u0097\u00a8\u0006\"\u000620-Jun\u0012\u0012\bA\u0012\u0006\u0010\u00f6\u00fa\u0097\u00a8\u0006\"\u000620-Sep\u0012\u0012\bB\u0012\u0006\u0010\u00df\u00fb\u0097\u00a8\u0006\"\u000620-Dec\u001a\b\u001a\u0006LJKK10 \u00ae\u00e8\u0097\u00a8\u0006\"e\n4\n\u00156c343838-d-701ff27f-2\u0012\b15:12:00\u001a\b20230916 \u0000*\u00035400\u0001\u0012\u001d\r\u00a6\u00ba\u0012\u00c2\u0015A\u00eb\u0091\u00c2\u001d\u0000\u0000\u00b3C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-r\u001c?A(\u00ae\u00e8\u0097\u00a8\u0006B\b\u001a\u0006LJKK10" + }, + { + "type": "con_recorrido", + "entity": "\n$a4e6b9ec-2795-4d15-998d-dfc3eaf47637\u001a\u008a\t\n4\n\u0015f4b6a532-2-701ff27f-2\u0012\b15:52:00\u001a\b20230916 \u0000*\u00035400\u0001\u0012\u0011\b\u000b\u0012\u0006\u0010\u00b8\u00e8\u0097\u00a8\u0006\"\u000550033\u0012\u0011\b\f\u0012\u0006\u0010\u00df\u00e8\u0097\u00a8\u0006\"\u000539497\u0012\u0011\b\r\u0012\u0006\u0010\u0080\u00e9\u0097\u00a8\u0006\"\u000549407\u0012\u0011\b\u000e\u0012\u0006\u0010\u00b8\u00e9\u0097\u00a8\u0006\"\u000550034\u0012\u0011\b\u000f\u0012\u0006\u0010\u00e3\u00e9\u0097\u00a8\u0006\"\u000540903\u0012\u0011\b\u0010\u0012\u0006\u0010\u009d\u00ea\u0097\u00a8\u0006\"\u000550035\u0012\u0011\b\u0011\u0012\u0006\u0010\u00d1\u00ea\u0097\u00a8\u0006\"\u000550036\u0012\u0011\b\u0012\u0012\u0006\u0010\u00b8\u00ec\u0097\u00a8\u0006\"\u000550037\u0012\u0011\b\u0013\u0012\u0006\u0010\u00c6\u00ed\u0097\u00a8\u0006\"\u000550038\u0012\u0011\b\u0014\u0012\u0006\u0010\u008a\u00ee\u0097\u00a8\u0006\"\u000550039\u0012\u0011\b\u0015\u0012\u0006\u0010\u00c7\u00ee\u0097\u00a8\u0006\"\u000550040\u0012\u0011\b\u0016\u0012\u0006\u0010\u009a\u00ef\u0097\u00a8\u0006\"\u000550041\u0012\u0012\b\u0017\u0012\u0006\u0010\u00a6\u00f0\u0097\u00a8\u0006\"\u0006Jun-15\u0012\u0012\b\u0018\u0012\u0006\u0010\u00fb\u00f0\u0097\u00a8\u0006\"\u0006Jun-13\u0012\u0011\b\u0019\u0012\u0006\u0010\u00c1\u00f2\u0097\u00a8\u0006\"\u00056-Oct\u0012\u0011\b\u001a\u0012\u0006\u0010\u00f3\u00f2\u0097\u00a8\u0006\"\u00056-Aug\u0012\u0011\b\u001b\u0012\u0006\u0010\u008c\u00f4\u0097\u00a8\u0006\"\u00056-Jun\u0012\u0011\b\u001c\u0012\u0006\u0010\u0089\u00f5\u0097\u00a8\u0006\"\u00056-Feb\u0012\u0011\b\u001d\u0012\u0006\u0010\u0091\u00f6\u0097\u00a8\u0006\"\u00057-Jul\u0012\u0011\b\u001e\u0012\u0006\u0010\u00d8\u00f6\u0097\u00a8\u0006\"\u00057-May\u0012\u0013\b\u001f\u0012\u0006\u0010\u0083\u00f7\u0097\u00a8\u0006\"\u00071508142\u0012\u0011\b \u0012\u0006\u0010\u00e8\u00f7\u0097\u00a8\u0006\"\u00057-Feb\u0012\u0011\b!\u0012\u0006\u0010\u00a6\u00f8\u0097\u00a8\u0006\"\u00058-Jan\u0012\u0011\b\"\u0012\u0006\u0010\u00d1\u00f8\u0097\u00a8\u0006\"\u00059-Jan\u0012\u0012\b#\u0012\u0006\u0010\u00f4\u00f8\u0097\u00a8\u0006\"\u000610-Apr\u0012\u0012\b$\u0012\u0006\u0010\u00bb\u00f9\u0097\u00a8\u0006\"\u000610-Jan\u0012\u0011\b%\u0012\u0006\u0010\u00e3\u00f9\u0097\u00a8\u0006\"\u000544863\u0012\u0012\b&\u0012\u0006\u0010\u008d\u00fa\u0097\u00a8\u0006\"\u000610-Mar\u0012\u0012\b'\u0012\u0006\u0010\u00c2\u00fa\u0097\u00a8\u0006\"\u000611-Jan\u0012\u0011\b(\u0012\u0006\u0010\u00e5\u00fb\u0097\u00a8\u0006\"\u000514-17\u0012\u0011\b)\u0012\u0006\u0010\u0080\u00fd\u0097\u00a8\u0006\"\u000514-14\u0012\u0011\b*\u0012\u0006\u0010\u00b3\u00fd\u0097\u00a8\u0006\"\u000514-11\u0012\u0011\b+\u0012\u0006\u0010\u00e2\u00fd\u0097\u00a8\u0006\"\u000591162\u0012\u0011\b,\u0012\u0006\u0010\u00d0\u00fe\u0097\u00a8\u0006\"\u000550023\u0012\u0012\b-\u0012\u0006\u0010\u00c4\u00ff\u0097\u00a8\u0006\"\u000614-Jul\u0012\u0012\b.\u0012\u0006\u0010\u00f8\u00ff\u0097\u00a8\u0006\"\u000614-Apr\u0012\u0012\b/\u0012\u0006\u0010\u00e1\u0080\u0098\u00a8\u0006\"\u000614-Mar\u0012\u0011\b0\u0012\u0006\u0010\u00af\u0081\u0098\u00a8\u0006\"\u000538151\u0012\u0011\b1\u0012\u0006\u0010\u00fe\u0082\u0098\u00a8\u0006\"\u000515-13\u0012\u0012\b2\u0012\u0006\u0010\u0081\u008b\u0098\u00a8\u0006\"\u000615-Oct\u0012\u0012\b3\u0012\u0006\u0010\u00c4\u008f\u0098\u00a8\u0006\"\u000615-Aug\u0012\u0012\b4\u0012\u0006\u0010\u00aa\u0091\u0098\u00a8\u0006\"\u000615-Jun\u0012\u0012\b5\u0012\u0006\u0010\u0096\u0092\u0098\u00a8\u0006\"\u000615-Apr\u0012\u0012\b6\u0012\u0006\u0010\u00cc\u00a9\u0098\u00a8\u0006\"\u000616-Aug\u0012\u0012\b7\u0012\u0006\u0010\u00bf\u00ae\u0098\u00a8\u0006\"\u000616-May\u0012\u0012\b8\u0012\u0006\u0010\u00ed\u00b0\u0098\u00a8\u0006\"\u000616-Mar\u0012\u0012\b9\u0012\u0006\u0010\u008b\u00b3\u0098\u00a8\u0006\"\u000616-Jan\u0012\u0012\b:\u0012\u0006\u0010\u00c6\u00b7\u0098\u00a8\u0006\"\u000627-Jan\u0012\u0012\b;\u0012\u0006\u0010\u00d7\u00b9\u0098\u00a8\u0006\"\u000617-Jan\u0012\u0012\b<\u0012\u0006\u0010\u0094\u00c7\u0098\u00a8\u0006\"\u000618-Feb\u0012\u0012\b=\u0012\u0006\u0010\u00bb\u00de\u0098\u00a8\u0006\"\u000619-Feb\u0012\u0012\b>\u0012\u0006\u0010\u00fd\u00ea\u0098\u00a8\u0006\"\u000620-Feb\u0012\u0012\b?\u0012\u0006\u0010\u00ed\u00ee\u0098\u00a8\u0006\"\u000620-Mar\u0012\u0012\b@\u0012\u0006\u0010\u0082\u00f7\u0098\u00a8\u0006\"\u000620-Jun\u0012\u0012\bA\u0012\u0006\u0010\u00b9\u0080\u0099\u00a8\u0006\"\u000620-Sep\u0012\u0012\bB\u0012\u0006\u0010\u00bc\u0091\u0099\u00a8\u0006\"\u000620-Dec\u001a\b\u001a\u0006LJKK11 \u00b6\u00e8\u0097\u00a8\u0006\"e\n4\n\u0015f4b6a532-2-701ff27f-2\u0012\b15:52:00\u001a\b20230916 \u0000*\u00035400\u0001\u0012\u001d\r\u00c7K\u0013\u00c2\u0015\u00c2\u0012\u0092\u00c2\u001d\u0000\u0000@A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b6\u00e8\u0097\u00a8\u0006B\b\u001a\u0006LJKK11" + }, + { + "type": "con_recorrido", + "entity": "\n$36071446-42b7-4a20-a63d-e286f01b1fa2\u001a\u009c\u0005\n4\n\u0015101b6e55-5-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00035400\u0000\u0012\u0012\b-\u0012\u0006\u0010\u00a3\u00e8\u0097\u00a8\u0006\"\u000612-Jan\u0012\u0012\b.\u0012\u0006\u0010\u00cd\u00e8\u0097\u00a8\u0006\"\u000612-Feb\u0012\u0011\b/\u0012\u0006\u0010\u008a\u00e9\u0097\u00a8\u0006\"\u00057-Jan\u0012\u0011\b0\u0012\u0006\u0010\u00c0\u00e9\u0097\u00a8\u0006\"\u00057-Mar\u0012\u0011\b1\u0012\u0006\u0010\u00cf\u00ea\u0097\u00a8\u0006\"\u00057-Jun\u0012\u0011\b2\u0012\u0006\u0010\u0090\u00eb\u0097\u00a8\u0006\"\u00057-Aug\u0012\u0011\b3\u0012\u0006\u0010\u00d9\u00eb\u0097\u00a8\u0006\"\u00056-Jan\u0012\u0011\b4\u0012\u0006\u0010\u00a3\u00ec\u0097\u00a8\u0006\"\u00056-Mar\u0012\u0011\b5\u0012\u0006\u0010\u008b\u00ed\u0097\u00a8\u0006\"\u00056-May\u0012\u0011\b6\u0012\u0006\u0010\u00a1\u00ee\u0097\u00a8\u0006\"\u00056-Jul\u0012\u0011\b7\u0012\u0006\u0010\u00d9\u00ee\u0097\u00a8\u0006\"\u00056-Sep\u0012\u0011\b8\u0012\u0006\u0010\u00b8\u00ef\u0097\u00a8\u0006\"\u00056-Nov\u0012\u0011\b9\u0012\u0006\u0010\u0099\u00f0\u0097\u00a8\u0006\"\u00056-Dec\u0012\u0012\b:\u0012\u0006\u0010\u00ee\u00f0\u0097\u00a8\u0006\"\u0006Jun-14\u0012\u0012\b;\u0012\u0006\u0010\u0087\u00f2\u0097\u00a8\u0006\"\u0006Jun-17\u0012\u0012\b<\u0012\u0006\u0010\u00d8\u00f2\u0097\u00a8\u0006\"\u0006Jun-19\u0012\u0012\b=\u0012\u0006\u0010\u008e\u00f3\u0097\u00a8\u0006\"\u0006Jun-20\u0012\u0012\b>\u0012\u0006\u0010\u00c9\u00f3\u0097\u00a8\u0006\"\u0006Jun-22\u0012\u0012\b?\u0012\u0006\u0010\u0088\u00f4\u0097\u00a8\u0006\"\u0006Jun-24\u0012\u0012\b@\u0012\u0006\u0010\u00e1\u00f4\u0097\u00a8\u0006\"\u0006Jun-25\u0012\u0011\bA\u0012\u0006\u0010\u00d5\u00f6\u0097\u00a8\u0006\"\u00055-Feb\u0012\u0011\bB\u0012\u0006\u0010\u00b3\u00f7\u0097\u00a8\u0006\"\u00051-Feb\u0012\u0011\bC\u0012\u0006\u0010\u00e9\u00f7\u0097\u00a8\u0006\"\u00051-Mar\u0012\u0011\bD\u0012\u0006\u0010\u009c\u00f8\u0097\u00a8\u0006\"\u00051-Apr\u0012\u0011\bE\u0012\u0006\u0010\u00c7\u00f8\u0097\u00a8\u0006\"\u00051-May\u0012\u0011\bF\u0012\u0006\u0010\u00fa\u00f8\u0097\u00a8\u0006\"\u00051-Jun\u0012\u0011\bG\u0012\u0006\u0010\u00ba\u00f9\u0097\u00a8\u0006\"\u00051-Jul\u0012\u0011\bH\u0012\u0006\u0010\u00e1\u00f9\u0097\u00a8\u0006\"\u00051-Aug\u0012\u0011\bI\u0012\u0006\u0010\u008c\u00fa\u0097\u00a8\u0006\"\u00051-Sep\u0012\u0011\bJ\u0012\u0006\u0010\u00d2\u00fa\u0097\u00a8\u0006\"\u00051-Oct\u0012\u0011\bK\u0012\u0006\u0010\u008b\u00fb\u0097\u00a8\u0006\"\u00051-Nov\u001a\b\u001a\u0006LJKK45 \u00a2\u00e8\u0097\u00a8\u0006\"e\n4\n\u0015101b6e55-5-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00035400\u0000\u0012\u001d\r\u00f3\u00f3\u0012\u00c2\u0015\u00b3\u00fe\u0091\u00c2\u001d\u0000\u0000vC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00c7q$A(\u00a2\u00e8\u0097\u00a8\u0006B\b\u001a\u0006LJKK45" + }, + { + "type": "con_recorrido", + "entity": "\n$6bb13bc0-1071-488d-929d-8f63b7d1ceff\u001a\u0098\b\n4\n\u0015b1e159c9-2-701ff27f-2\u0012\b14:32:00\u001a\b20230916 \u0000*\u00035400\u0001\u0012\u0011\b\u0011\u0012\u0006\u0010\u00c5\u00e8\u0097\u00a8\u0006\"\u000550036\u0012\u0011\b\u0012\u0012\u0006\u0010\u00b5\u00ea\u0097\u00a8\u0006\"\u000550037\u0012\u0011\b\u0013\u0012\u0006\u0010\u00c7\u00eb\u0097\u00a8\u0006\"\u000550038\u0012\u0011\b\u0014\u0012\u0006\u0010\u008c\u00ec\u0097\u00a8\u0006\"\u000550039\u0012\u0011\b\u0015\u0012\u0006\u0010\u00ca\u00ec\u0097\u00a8\u0006\"\u000550040\u0012\u0011\b\u0016\u0012\u0006\u0010\u009f\u00ed\u0097\u00a8\u0006\"\u000550041\u0012\u0012\b\u0017\u0012\u0006\u0010\u00ac\u00ee\u0097\u00a8\u0006\"\u0006Jun-15\u0012\u0012\b\u0018\u0012\u0006\u0010\u0081\u00ef\u0097\u00a8\u0006\"\u0006Jun-13\u0012\u0011\b\u0019\u0012\u0006\u0010\u00c6\u00f0\u0097\u00a8\u0006\"\u00056-Oct\u0012\u0011\b\u001a\u0012\u0006\u0010\u00f8\u00f0\u0097\u00a8\u0006\"\u00056-Aug\u0012\u0011\b\u001b\u0012\u0006\u0010\u008f\u00f2\u0097\u00a8\u0006\"\u00056-Jun\u0012\u0011\b\u001c\u0012\u0006\u0010\u008a\u00f3\u0097\u00a8\u0006\"\u00056-Feb\u0012\u0011\b\u001d\u0012\u0006\u0010\u008e\u00f4\u0097\u00a8\u0006\"\u00057-Jul\u0012\u0011\b\u001e\u0012\u0006\u0010\u00d3\u00f4\u0097\u00a8\u0006\"\u00057-May\u0012\u0013\b\u001f\u0012\u0006\u0010\u00fc\u00f4\u0097\u00a8\u0006\"\u00071508142\u0012\u0011\b \u0012\u0006\u0010\u00df\u00f5\u0097\u00a8\u0006\"\u00057-Feb\u0012\u0011\b!\u0012\u0006\u0010\u009a\u00f6\u0097\u00a8\u0006\"\u00058-Jan\u0012\u0011\b\"\u0012\u0006\u0010\u00c3\u00f6\u0097\u00a8\u0006\"\u00059-Jan\u0012\u0012\b#\u0012\u0006\u0010\u00e5\u00f6\u0097\u00a8\u0006\"\u000610-Apr\u0012\u0012\b$\u0012\u0006\u0010\u00a9\u00f7\u0097\u00a8\u0006\"\u000610-Jan\u0012\u0011\b%\u0012\u0006\u0010\u00cf\u00f7\u0097\u00a8\u0006\"\u000544863\u0012\u0012\b&\u0012\u0006\u0010\u00f7\u00f7\u0097\u00a8\u0006\"\u000610-Mar\u0012\u0012\b'\u0012\u0006\u0010\u00aa\u00f8\u0097\u00a8\u0006\"\u000611-Jan\u0012\u0011\b(\u0012\u0006\u0010\u00c4\u00f9\u0097\u00a8\u0006\"\u000514-17\u0012\u0011\b)\u0012\u0006\u0010\u00d7\u00fa\u0097\u00a8\u0006\"\u000514-14\u0012\u0011\b*\u0012\u0006\u0010\u0086\u00fb\u0097\u00a8\u0006\"\u000514-11\u0012\u0011\b+\u0012\u0006\u0010\u00b3\u00fb\u0097\u00a8\u0006\"\u000591162\u0012\u0011\b,\u0012\u0006\u0010\u0099\u00fc\u0097\u00a8\u0006\"\u000550023\u0012\u0012\b-\u0012\u0006\u0010\u0086\u00fd\u0097\u00a8\u0006\"\u000614-Jul\u0012\u0012\b.\u0012\u0006\u0010\u00b7\u00fd\u0097\u00a8\u0006\"\u000614-Apr\u0012\u0012\b/\u0012\u0006\u0010\u0098\u00fe\u0097\u00a8\u0006\"\u000614-Mar\u0012\u0011\b0\u0012\u0006\u0010\u00e0\u00fe\u0097\u00a8\u0006\"\u000538151\u0012\u0011\b1\u0012\u0006\u0010\u009f\u0080\u0098\u00a8\u0006\"\u000515-13\u0012\u0012\b2\u0012\u0006\u0010\u00c0\u0087\u0098\u00a8\u0006\"\u000615-Oct\u0012\u0012\b3\u0012\u0006\u0010\u00c1\u008b\u0098\u00a8\u0006\"\u000615-Aug\u0012\u0012\b4\u0012\u0006\u0010\u008b\u008d\u0098\u00a8\u0006\"\u000615-Jun\u0012\u0012\b5\u0012\u0006\u0010\u00e9\u008d\u0098\u00a8\u0006\"\u000615-Apr\u0012\u0012\b6\u0012\u0006\u0010\u00c7\u00a1\u0098\u00a8\u0006\"\u000616-Aug\u0012\u0012\b7\u0012\u0006\u0010\u00c3\u00a5\u0098\u00a8\u0006\"\u000616-May\u0012\u0012\b8\u0012\u0006\u0010\u00b4\u00a7\u0098\u00a8\u0006\"\u000616-Mar\u0012\u0012\b9\u0012\u0006\u0010\u0097\u00a9\u0098\u00a8\u0006\"\u000616-Jan\u0012\u0012\b:\u0012\u0006\u0010\u00da\u00ac\u0098\u00a8\u0006\"\u000627-Jan\u0012\u0012\b;\u0012\u0006\u0010\u00af\u00ae\u0098\u00a8\u0006\"\u000617-Jan\u0012\u0012\b<\u0012\u0006\u0010\u00d7\u00b8\u0098\u00a8\u0006\"\u000618-Feb\u0012\u0012\b=\u0012\u0006\u0010\u00d6\u00c9\u0098\u00a8\u0006\"\u000619-Feb\u0012\u0012\b>\u0012\u0006\u0010\u00b1\u00d2\u0098\u00a8\u0006\"\u000620-Feb\u0012\u0012\b?\u0012\u0006\u0010\u0084\u00d5\u0098\u00a8\u0006\"\u000620-Mar\u0012\u0012\b@\u0012\u0006\u0010\u00c1\u00da\u0098\u00a8\u0006\"\u000620-Jun\u0012\u0012\bA\u0012\u0006\u0010\u00db\u00e0\u0098\u00a8\u0006\"\u000620-Sep\u0012\u0012\bB\u0012\u0006\u0010\u00c6\u00eb\u0098\u00a8\u0006\"\u000620-Dec\u001a\b\u001a\u0006RVXG36 \u009c\u00e8\u0097\u00a8\u0006\"e\n4\n\u0015b1e159c9-2-701ff27f-2\u0012\b14:32:00\u001a\b20230916 \u0000*\u00035400\u0001\u0012\u001d\rbB\u0013\u00c2\u0015\u00d3\u000f\u0092\u00c2\u001d\u0000\u0000 B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009c\u00e8\u0097\u00a8\u0006B\b\u001a\u0006RVXG36" + }, + { + "type": "con_recorrido", + "entity": "\n$1f90e88d-c378-4383-b26f-04a5819a8173\u001a\u00ac\t\n4\n\u00157d120aea-c-701ff27f-2\u0012\b15:40:00\u001a\b20230916 \u0000*\u00035400\u0000\u0012\u0011\b\u0012\u0012\u0006\u0010\u00d3\u00e7\u0097\u00a8\u0006\"\u000550042\u0012\u0012\b\u0013\u0012\u0006\u0010\u00cf\u00e8\u0097\u00a8\u0006\"\u000616-Feb\u0012\u0010\b\u0014\u0012\u0006\u0010\u0088\u00e9\u0097\u00a8\u0006\"\u000416-4\u0012\u0012\b\u0015\u0012\u0006\u0010\u00ec\u00e9\u0097\u00a8\u0006\"\u000616-Jun\u0012\u0012\b\u0016\u0012\u0006\u0010\u00a8\u00ea\u0097\u00a8\u0006\"\u000616-Jul\u0012\u0012\b\u0017\u0012\u0006\u0010\u00d2\u00ea\u0097\u00a8\u0006\"\u000615-Jan\u0012\u0012\b\u0018\u0012\u0006\u0010\u00da\u00ef\u0097\u00a8\u0006\"\u000615-Feb\u0012\u0012\b\u0019\u0012\u0006\u0010\u00e0\u00f0\u0097\u00a8\u0006\"\u000615-Mar\u0012\u0012\b\u001a\u0012\u0006\u0010\u0082\u00f1\u0097\u00a8\u0006\"\u000615-May\u0012\u0012\b\u001b\u0012\u0006\u0010\u00b9\u00f1\u0097\u00a8\u0006\"\u000615-Jul\u0012\u0012\b\u001c\u0012\u0006\u0010\u008e\u00f2\u0097\u00a8\u0006\"\u000615-Sep\u0012\u0012\b\u001d\u0012\u0006\u0010\u0098\u00f8\u0097\u00a8\u0006\"\u000615-Dec\u0012\u0011\b\u001e\u0012\u0006\u0010\u00bc\u00f9\u0097\u00a8\u0006\"\u000538149\u0012\u0012\b\u001f\u0012\u0006\u0010\u0082\u00fa\u0097\u00a8\u0006\"\u000614-Feb\u0012\u0012\b \u0012\u0006\u0010\u00e9\u00fa\u0097\u00a8\u0006\"\u000614-May\u0012\u0012\b!\u0012\u0006\u0010\u0096\u00fb\u0097\u00a8\u0006\"\u000614-Jun\u0012\u0012\b\"\u0012\u0006\u0010\u00da\u00fb\u0097\u00a8\u0006\"\u000614-Aug\u0012\u0011\b#\u0012\u0006\u0010\u0087\u00fc\u0097\u00a8\u0006\"\u000550024\u0012\u0011\b$\u0012\u0006\u0010\u00a6\u00fd\u0097\u00a8\u0006\"\u000514-12\u0012\u0011\b%\u0012\u0006\u0010\u00c2\u00fd\u0097\u00a8\u0006\"\u000514-13\u0012\u0011\b&\u0012\u0006\u0010\u00b8\u00fe\u0097\u00a8\u0006\"\u000514-15\u0012\u0011\b'\u0012\u0006\u0010\u00d1\u00fe\u0097\u00a8\u0006\"\u000514-16\u0012\u0011\b(\u0012\u0006\u0010\u0093\u00ff\u0097\u00a8\u0006\"\u000514-18\u0012\u0012\b)\u0012\u0006\u0010\u0096\u0080\u0098\u00a8\u0006\"\u000613-Jan\u0012\u0012\b*\u0012\u0006\u0010\u00d3\u0080\u0098\u00a8\u0006\"\u000613-Feb\u0012\u0012\b+\u0012\u0006\u0010\u00f6\u0080\u0098\u00a8\u0006\"\u000628-Jan\u0012\u0010\b,\u0012\u0006\u0010\u00be\u0081\u0098\u00a8\u0006\"\u000412-3\u0012\u0012\b-\u0012\u0006\u0010\u00b5\u0082\u0098\u00a8\u0006\"\u000612-Jan\u0012\u0012\b.\u0012\u0006\u0010\u00f0\u0082\u0098\u00a8\u0006\"\u000612-Feb\u0012\u0011\b/\u0012\u0006\u0010\u00c8\u0083\u0098\u00a8\u0006\"\u00057-Jan\u0012\u0011\b0\u0012\u0006\u0010\u0099\u0084\u0098\u00a8\u0006\"\u00057-Mar\u0012\u0011\b1\u0012\u0006\u0010\u00fb\u0085\u0098\u00a8\u0006\"\u00057-Jun\u0012\u0011\b2\u0012\u0006\u0010\u00e7\u0086\u0098\u00a8\u0006\"\u00057-Aug\u0012\u0011\b3\u0012\u0006\u0010\u00e7\u0087\u0098\u00a8\u0006\"\u00056-Jan\u0012\u0011\b4\u0012\u0006\u0010\u00ef\u0088\u0098\u00a8\u0006\"\u00056-Mar\u0012\u0011\b5\u0012\u0006\u0010\u00b7\u008a\u0098\u00a8\u0006\"\u00056-May\u0012\u0011\b6\u0012\u0006\u0010\u00f1\u008c\u0098\u00a8\u0006\"\u00056-Jul\u0012\u0011\b7\u0012\u0006\u0010\u00ed\u008d\u0098\u00a8\u0006\"\u00056-Sep\u0012\u0011\b8\u0012\u0006\u0010\u00cb\u008f\u0098\u00a8\u0006\"\u00056-Nov\u0012\u0011\b9\u0012\u0006\u0010\u00bb\u0091\u0098\u00a8\u0006\"\u00056-Dec\u0012\u0012\b:\u0012\u0006\u0010\u009b\u0093\u0098\u00a8\u0006\"\u0006Jun-14\u0012\u0012\b;\u0012\u0006\u0010\u00cd\u0096\u0098\u00a8\u0006\"\u0006Jun-17\u0012\u0012\b<\u0012\u0006\u0010\u00c5\u0098\u0098\u00a8\u0006\"\u0006Jun-19\u0012\u0012\b=\u0012\u0006\u0010\u00f3\u0099\u0098\u00a8\u0006\"\u0006Jun-20\u0012\u0012\b>\u0012\u0006\u0010\u00b9\u009b\u0098\u00a8\u0006\"\u0006Jun-22\u0012\u0012\b?\u0012\u0006\u0010\u0094\u009d\u0098\u00a8\u0006\"\u0006Jun-24\u0012\u0012\b@\u0012\u0006\u0010\u00da\u009f\u0098\u00a8\u0006\"\u0006Jun-25\u0012\u0011\bA\u0012\u0006\u0010\u00ce\u00a7\u0098\u00a8\u0006\"\u00055-Feb\u0012\u0011\bB\u0012\u0006\u0010\u0083\u00ab\u0098\u00a8\u0006\"\u00051-Feb\u0012\u0011\bC\u0012\u0006\u0010\u0092\u00ad\u0098\u00a8\u0006\"\u00051-Mar\u0012\u0011\bD\u0012\u0006\u0010\u0098\u00af\u0098\u00a8\u0006\"\u00051-Apr\u0012\u0011\bE\u0012\u0006\u0010\u00fb\u00b0\u0098\u00a8\u0006\"\u00051-May\u0012\u0011\bF\u0012\u0006\u0010\u009b\u00b3\u0098\u00a8\u0006\"\u00051-Jun\u0012\u0011\bG\u0012\u0006\u0010\u008f\u00b6\u0098\u00a8\u0006\"\u00051-Jul\u0012\u0011\bH\u0012\u0006\u0010\u00f9\u00b7\u0098\u00a8\u0006\"\u00051-Aug\u0012\u0011\bI\u0012\u0006\u0010\u0089\u00ba\u0098\u00a8\u0006\"\u00051-Sep\u0012\u0011\bJ\u0012\u0006\u0010\u00d7\u00bd\u0098\u00a8\u0006\"\u00051-Oct\u0012\u0011\bK\u0012\u0006\u0010\u00e5\u00c0\u0098\u00a8\u0006\"\u00051-Nov\u001a\b\u001a\u0006SKZP29 \u00be\u00e7\u0097\u00a8\u0006\"e\n4\n\u00157d120aea-c-701ff27f-2\u0012\b15:40:00\u001a\b20230916 \u0000*\u00035400\u0000\u0012\u001d\rbx\u0012\u00c2\u0015\u008a\u00ea\u0091\u00c2\u001d\u0000\u0000*C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00be\u00e7\u0097\u00a8\u0006B\b\u001a\u0006SKZP29" + }, + { + "type": "con_recorrido", + "entity": "\n$5ec13397-2b9a-48a9-b05d-d549de9badea\u001a\u00e3\u0002\n4\n\u001594761076-e-701ff27f-2\u0012\b14:02:00\u001a\b20230916 \u0000*\u00035410\u0001\u0012\u0012\b<\u0012\u0006\u0010\u00bf\u00eb\u0097\u00a8\u0006\"\u000623-Jan\u0012\u0011\b=\u0012\u0006\u0010\u00ad\u00ed\u0097\u00a8\u0006\"\u000524-14\u0012\u0012\b>\u0012\u0006\u0010\u009f\u00f4\u0097\u00a8\u0006\"\u000624-May\u0012\u0012\b?\u0012\u0006\u0010\u00ee\u00f4\u0097\u00a8\u0006\"\u000624-Apr\u0012\u0012\b@\u0012\u0006\u0010\u00cc\u00f6\u0097\u00a8\u0006\"\u000624-Feb\u0012\u0012\bA\u0012\u0006\u0010\u009b\u00f7\u0097\u00a8\u0006\"\u000624-Jan\u0012\u0010\bB\u0012\u0006\u0010\u00da\u00f7\u0097\u00a8\u0006\"\u000425-2\u0012\u0010\bC\u0012\u0006\u0010\u0081\u00f8\u0097\u00a8\u0006\"\u000429-9\u0012\u0010\bD\u0012\u0006\u0010\u00a6\u00f8\u0097\u00a8\u0006\"\u000430-1\u0012\u0012\bE\u0012\u0006\u0010\u0085\u00f9\u0097\u00a8\u0006\"\u000626-Jan\u0012\u0012\bF\u0012\u0006\u0010\u0080\u00fa\u0097\u00a8\u0006\"\u000626-Feb\u0012\u0010\bG\u0012\u0006\u0010\u00a9\u00fa\u0097\u00a8\u0006\"\u000426-3\u0012\u0010\bH\u0012\u0006\u0010\u00cc\u00fa\u0097\u00a8\u0006\"\u000429-6\u0012\u0010\bI\u0012\u0006\u0010\u0099\u00fb\u0097\u00a8\u0006\"\u000429-7\u0012\u0010\bJ\u0012\u0006\u0010\u00ac\u00fc\u0097\u00a8\u0006\"\u000429-8\u001a\b\u001a\u0006HYCZ74 \u00dc\u00e7\u0097\u00a8\u0006\"e\n4\n\u001594761076-e-701ff27f-2\u0012\b14:02:00\u001a\b20230916 \u0000*\u00035410\u0001\u0012\u001d\rYy\u0012\u00c2\u0015e\u00e9\u0091\u00c2\u001d\u0000\u0000\u0090B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00dc\u00e7\u0097\u00a8\u0006B\b\u001a\u0006HYCZ74" + }, + { + "type": "con_recorrido", + "entity": "\n$3b838b19-462f-4d97-aafe-e8012ed9305d\u001a\u00fb\t\n4\n\u0015d3f89e8a-6-701ff27f-2\u0012\b16:01:00\u001a\b20230916 \u0000*\u00035410\u0000\u0012\u0011\b\u0012\u0012\u0006\u0010\u009c\u00e8\u0097\u00a8\u0006\"\u000524-13\u0012\u0012\b\u0013\u0012\u0006\u0010\u00be\u00eb\u0097\u00a8\u0006\"\u000622-Jan\u0012\u0012\b\u0014\u0012\u0006\u0010\u00b0\u00ed\u0097\u00a8\u0006\"\u000618-Feb\u0012\u0012\b\u0015\u0012\u0006\u0010\u00e2\u00ed\u0097\u00a8\u0006\"\u000618-Mar\u0012\u0011\b\u0016\u0012\u0006\u0010\u009e\u00ee\u0097\u00a8\u0006\"\u000550042\u0012\u0012\b\u0017\u0012\u0006\u0010\u0090\u00ef\u0097\u00a8\u0006\"\u000616-Feb\u0012\u0010\b\u0018\u0012\u0006\u0010\u00c5\u00ef\u0097\u00a8\u0006\"\u000416-4\u0012\u0012\b\u0019\u0012\u0006\u0010\u00a3\u00f0\u0097\u00a8\u0006\"\u000616-Jun\u0012\u0012\b\u001a\u0012\u0006\u0010\u00d9\u00f0\u0097\u00a8\u0006\"\u000616-Jul\u0012\u0012\b\u001b\u0012\u0006\u0010\u0084\u00f1\u0097\u00a8\u0006\"\u000615-Jan\u0012\u0012\b\u001c\u0012\u0006\u0010\u0098\u00f6\u0097\u00a8\u0006\"\u000615-Feb\u0012\u0012\b\u001d\u0012\u0006\u0010\u00ad\u00f7\u0097\u00a8\u0006\"\u000615-Mar\u0012\u0012\b\u001e\u0012\u0006\u0010\u00ca\u00f7\u0097\u00a8\u0006\"\u000615-May\u0012\u0012\b\u001f\u0012\u0006\u0010\u00fd\u00f7\u0097\u00a8\u0006\"\u000615-Jul\u0012\u0012\b \u0012\u0006\u0010\u00dc\u00f8\u0097\u00a8\u0006\"\u000615-Sep\u0012\u0012\b!\u0012\u0006\u0010\u00ef\u00ff\u0097\u00a8\u0006\"\u000615-Dec\u0012\u0011\b\"\u0012\u0006\u0010\u00b9\u0081\u0098\u00a8\u0006\"\u000538149\u0012\u0012\b#\u0012\u0006\u0010\u0091\u0082\u0098\u00a8\u0006\"\u000614-Feb\u0012\u0012\b$\u0012\u0006\u0010\u0092\u0083\u0098\u00a8\u0006\"\u000614-May\u0012\u0012\b%\u0012\u0006\u0010\u00cc\u0083\u0098\u00a8\u0006\"\u000614-Jun\u0012\u0012\b&\u0012\u0006\u0010\u00a4\u0084\u0098\u00a8\u0006\"\u000614-Aug\u0012\u0011\b'\u0012\u0006\u0010\u00dd\u0084\u0098\u00a8\u0006\"\u000550024\u0012\u0011\b(\u0012\u0006\u0010\u00af\u0086\u0098\u00a8\u0006\"\u000514-12\u0012\u0011\b)\u0012\u0006\u0010\u00d3\u0086\u0098\u00a8\u0006\"\u000514-13\u0012\u0011\b*\u0012\u0006\u0010\u00f1\u0087\u0098\u00a8\u0006\"\u000514-15\u0012\u0011\b+\u0012\u0006\u0010\u0093\u0088\u0098\u00a8\u0006\"\u000514-16\u0012\u0011\b,\u0012\u0006\u0010\u00f6\u0088\u0098\u00a8\u0006\"\u000514-18\u0012\u0012\b-\u0012\u0006\u0010\u009f\u008a\u0098\u00a8\u0006\"\u000613-Jan\u0012\u0012\b.\u0012\u0006\u0010\u0082\u008b\u0098\u00a8\u0006\"\u000613-Feb\u0012\u0012\b/\u0012\u0006\u0010\u00a4\u008b\u0098\u00a8\u0006\"\u000628-Jan\u0012\u0010\b0\u0012\u0006\u0010\u0089\u008c\u0098\u00a8\u0006\"\u000412-3\u0012\u0012\b1\u0012\u0006\u0010\u00b1\u008d\u0098\u00a8\u0006\"\u000612-Jan\u0012\u0012\b2\u0012\u0006\u0010\u008f\u008e\u0098\u00a8\u0006\"\u000612-Feb\u0012\u0011\b3\u0012\u0006\u0010\u0083\u008f\u0098\u00a8\u0006\"\u00057-Jan\u0012\u0011\b4\u0012\u0006\u0010\u00f9\u008f\u0098\u00a8\u0006\"\u00057-Mar\u0012\u0011\b5\u0012\u0006\u0010\u00c7\u0092\u0098\u00a8\u0006\"\u00057-Jun\u0012\u0011\b6\u0012\u0006\u0010\u00e6\u0093\u0098\u00a8\u0006\"\u00057-Aug\u0012\u0011\b7\u0012\u0006\u0010\u00a9\u0095\u0098\u00a8\u0006\"\u00056-Jan\u0012\u0011\b8\u0012\u0006\u0010\u00fa\u0096\u0098\u00a8\u0006\"\u00056-Mar\u0012\u0011\b9\u0012\u0006\u0010\u00b4\u0099\u0098\u00a8\u0006\"\u00056-May\u0012\u0011\b:\u0012\u0006\u0010\u00ad\u009d\u0098\u00a8\u0006\"\u00056-Jul\u0012\u0011\b;\u0012\u0006\u0010\u00fa\u009e\u0098\u00a8\u0006\"\u00056-Sep\u0012\u0011\b<\u0012\u0006\u0010\u00d7\u00a1\u0098\u00a8\u0006\"\u00056-Nov\u0012\u0011\b=\u0012\u0006\u0010\u00a5\u00a5\u0098\u00a8\u0006\"\u00056-Dec\u0012\u0012\b>\u0012\u0006\u0010\u00c1\u00a8\u0098\u00a8\u0006\"\u0006Jun-14\u0012\u0012\b?\u0012\u0006\u0010\u00ae\u00ae\u0098\u00a8\u0006\"\u0006Jun-17\u0012\u0012\b@\u0012\u0006\u0010\u00b0\u00b2\u0098\u00a8\u0006\"\u0006Jun-19\u0012\u0012\bA\u0012\u0006\u0010\u00ed\u00b4\u0098\u00a8\u0006\"\u0006Jun-20\u0012\u0012\bB\u0012\u0006\u0010\u00fc\u00b7\u0098\u00a8\u0006\"\u0006Jun-22\u0012\u0012\bC\u0012\u0006\u0010\u00ca\u00bb\u0098\u00a8\u0006\"\u0006Jun-24\u0012\u0012\bD\u0012\u0006\u0010\u00f9\u00c0\u0098\u00a8\u0006\"\u0006Jun-25\u0012\u0011\bE\u0012\u0006\u0010\u009d\u00d2\u0098\u00a8\u0006\"\u00055-Feb\u0012\u0011\bF\u0012\u0006\u0010\u00ca\u00da\u0098\u00a8\u0006\"\u00051-Feb\u0012\u0011\bG\u0012\u0006\u0010\u0080\u00e0\u0098\u00a8\u0006\"\u00051-Mar\u0012\u0011\bH\u0012\u0006\u0010\u00b3\u00e5\u0098\u00a8\u0006\"\u00051-Apr\u0012\u0011\bI\u0012\u0006\u0010\u009d\u00ea\u0098\u00a8\u0006\"\u00051-May\u0012\u0011\bJ\u0012\u0006\u0010\u00c7\u00f0\u0098\u00a8\u0006\"\u00051-Jun\u0012\u0011\bK\u0012\u0006\u0010\u008b\u00f9\u0098\u00a8\u0006\"\u00051-Jul\u0012\u0011\bL\u0012\u0006\u0010\u00d5\u00fe\u0098\u00a8\u0006\"\u00051-Aug\u0012\u0011\bM\u0012\u0006\u0010\u00b2\u0085\u0099\u00a8\u0006\"\u00051-Sep\u0012\u0011\bN\u0012\u0006\u0010\u00b1\u0091\u0099\u00a8\u0006\"\u00051-Oct\u0012\u0011\bO\u0012\u0006\u0010\u00b1\u009c\u0099\u00a8\u0006\"\u00051-Nov\u001a\b\u001a\u0006JJJC37 \u0092\u00e8\u0097\u00a8\u0006\"e\n4\n\u0015d3f89e8a-6-701ff27f-2\u0012\b16:01:00\u001a\b20230916 \u0000*\u00035410\u0000\u0012\u001d\r\u00abb\u0012\u00c2\u0015\u0096\u00e7\u0091\u00c2\u001d\u0000\u0000\u001eC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008e\u00e3(A(\u0092\u00e8\u0097\u00a8\u0006B\b\u001a\u0006JJJC37" + }, + { + "type": "con_recorrido", + "entity": "\n$f32ebfb3-31bb-44f9-8f81-0506217d7149\u001a\u00a8\t\n4\n\u0015e07d182b-0-701ff27f-2\u0012\b15:02:00\u001a\b20230916 \u0000*\u00035410\u0001\u0012\u0011\b\u0004\u0012\u0006\u0010\u00f3\u00e8\u0097\u00a8\u0006\"\u00052-Apr\u0012\u000f\b\u0005\u0012\u0006\u0010\u00fa\u00e9\u0097\u00a8\u0006\"\u00033-1\u0012\u0011\b\u0006\u0012\u0006\u0010\u00ae\u00ea\u0097\u00a8\u0006\"\u000550030\u0012\u0011\b\u0007\u0012\u0006\u0010\u00e2\u00ea\u0097\u00a8\u0006\"\u00053-Mar\u0012\u0011\b\b\u0012\u0006\u0010\u0094\u00eb\u0097\u00a8\u0006\"\u000550031\u0012\u0011\b\t\u0012\u0006\u0010\u00c6\u00eb\u0097\u00a8\u0006\"\u000550032\u0012\u0011\b\n\u0012\u0006\u0010\u00ea\u00eb\u0097\u00a8\u0006\"\u000539495\u0012\u0011\b\u000b\u0012\u0006\u0010\u00c7\u00ec\u0097\u00a8\u0006\"\u000550033\u0012\u0011\b\f\u0012\u0006\u0010\u00ec\u00ec\u0097\u00a8\u0006\"\u000539497\u0012\u0011\b\r\u0012\u0006\u0010\u008a\u00ed\u0097\u00a8\u0006\"\u000549407\u0012\u0011\b\u000e\u0012\u0006\u0010\u00be\u00ed\u0097\u00a8\u0006\"\u000550034\u0012\u0011\b\u000f\u0012\u0006\u0010\u00e7\u00ed\u0097\u00a8\u0006\"\u000540903\u0012\u0011\b\u0010\u0012\u0006\u0010\u009d\u00ee\u0097\u00a8\u0006\"\u000550035\u0012\u0011\b\u0011\u0012\u0006\u0010\u00ce\u00ee\u0097\u00a8\u0006\"\u000550036\u0012\u0011\b\u0012\u0012\u0006\u0010\u00ad\u00f0\u0097\u00a8\u0006\"\u000550037\u0012\u0011\b\u0013\u0012\u0006\u0010\u00b9\u00f1\u0097\u00a8\u0006\"\u000550038\u0012\u0011\b\u0014\u0012\u0006\u0010\u00fc\u00f1\u0097\u00a8\u0006\"\u000550039\u0012\u0011\b\u0015\u0012\u0006\u0010\u00b9\u00f2\u0097\u00a8\u0006\"\u000550040\u0012\u0011\b\u0016\u0012\u0006\u0010\u008d\u00f3\u0097\u00a8\u0006\"\u000550041\u0012\u0012\b\u0017\u0012\u0006\u0010\u009b\u00f4\u0097\u00a8\u0006\"\u0006Jun-15\u0012\u0012\b\u0018\u0012\u0006\u0010\u00f3\u00f4\u0097\u00a8\u0006\"\u0006Jun-13\u0012\u0011\b\u0019\u0012\u0006\u0010\u00c2\u00f6\u0097\u00a8\u0006\"\u00056-Oct\u0012\u0011\b\u001a\u0012\u0006\u0010\u00f7\u00f6\u0097\u00a8\u0006\"\u00056-Aug\u0012\u0011\b\u001b\u0012\u0006\u0010\u009a\u00f8\u0097\u00a8\u0006\"\u00056-Jun\u0012\u0011\b\u001c\u0012\u0006\u0010\u00a2\u00f9\u0097\u00a8\u0006\"\u00056-Feb\u0012\u0011\b\u001d\u0012\u0006\u0010\u00b7\u00fa\u0097\u00a8\u0006\"\u00057-Jul\u0012\u0011\b\u001e\u0012\u0006\u0010\u0085\u00fb\u0097\u00a8\u0006\"\u00057-May\u0012\u0013\b\u001f\u0012\u0006\u0010\u00b4\u00fb\u0097\u00a8\u0006\"\u00071508142\u0012\u0011\b \u0012\u0006\u0010\u00a6\u00fc\u0097\u00a8\u0006\"\u00057-Feb\u0012\u0011\b!\u0012\u0006\u0010\u00ec\u00fc\u0097\u00a8\u0006\"\u00058-Jan\u0012\u0011\b\"\u0012\u0006\u0010\u009c\u00fd\u0097\u00a8\u0006\"\u00059-Jan\u0012\u0012\b#\u0012\u0006\u0010\u00c4\u00fd\u0097\u00a8\u0006\"\u000610-Apr\u0012\u0012\b$\u0012\u0006\u0010\u0096\u00fe\u0097\u00a8\u0006\"\u000610-Jan\u0012\u0011\b%\u0012\u0006\u0010\u00c3\u00fe\u0097\u00a8\u0006\"\u000544863\u0012\u0012\b&\u0012\u0006\u0010\u00f3\u00fe\u0097\u00a8\u0006\"\u000610-Mar\u0012\u0012\b'\u0012\u0006\u0010\u00b3\u00ff\u0097\u00a8\u0006\"\u000611-Jan\u0012\u0011\b(\u0012\u0006\u0010\u00ed\u0080\u0098\u00a8\u0006\"\u000514-17\u0012\u0011\b)\u0012\u0006\u0010\u00a4\u0082\u0098\u00a8\u0006\"\u000514-14\u0012\u0011\b*\u0012\u0006\u0010\u00e1\u0082\u0098\u00a8\u0006\"\u000514-11\u0012\u0011\b+\u0012\u0006\u0010\u009a\u0083\u0098\u00a8\u0006\"\u000591162\u0012\u0011\b,\u0012\u0006\u0010\u009d\u0084\u0098\u00a8\u0006\"\u000550023\u0012\u0012\b-\u0012\u0006\u0010\u00aa\u0085\u0098\u00a8\u0006\"\u000614-Jul\u0012\u0012\b.\u0012\u0006\u0010\u00f4\u0085\u0098\u00a8\u0006\"\u000614-Apr\u0012\u0012\b/\u0012\u0006\u0010\u00ec\u0086\u0098\u00a8\u0006\"\u000614-Mar\u0012\u0011\b0\u0012\u0006\u0010\u00ca\u0087\u0098\u00a8\u0006\"\u000538151\u0012\u0011\b1\u0012\u0006\u0010\u00cd\u0089\u0098\u00a8\u0006\"\u000515-13\u0012\u0012\b2\u0012\u0006\u0010\u0088\u0094\u0098\u00a8\u0006\"\u000615-Oct\u0012\u0012\b3\u0012\u0006\u0010\u00c3\u009a\u0098\u00a8\u0006\"\u000615-Aug\u0012\u0012\b4\u0012\u0006\u0010\u00ea\u009c\u0098\u00a8\u0006\"\u000615-Jun\u0012\u0012\b5\u0012\u0006\u0010\u0085\u009e\u0098\u00a8\u0006\"\u000615-Apr\u0012\u0012\b6\u0012\u0006\u0010\u00b4\u00c3\u0098\u00a8\u0006\"\u000616-Aug\u0012\u0012\b7\u0012\u0006\u0010\u00a2\u00cc\u0098\u00a8\u0006\"\u000616-May\u0012\u0012\b8\u0012\u0006\u0010\u00d5\u00d0\u0098\u00a8\u0006\"\u000616-Mar\u0012\u0012\b9\u0012\u0006\u0010\u00f8\u00d4\u0098\u00a8\u0006\"\u000616-Jan\u0012\u0012\b:\u0012\u0006\u0010\u00b9\u00dd\u0098\u00a8\u0006\"\u000627-Jan\u0012\u0012\b;\u0012\u0006\u0010\u008a\u00e2\u0098\u00a8\u0006\"\u000617-Jan\u0012\u0012\b<\u0012\u0006\u0010\u00a1\u00c4\u0099\u00a8\u0006\"\u000623-Jan\u0012\u0011\b=\u0012\u0006\u0010\u00d4\u00c4\u009a\u00a8\u0006\"\u000524-14\u001a\b\u001a\u0006KKPV70 \u00b0\u00e8\u0097\u00a8\u0006\"e\n4\n\u0015e07d182b-0-701ff27f-2\u0012\b15:02:00\u001a\b20230916 \u0000*\u00035410\u0001\u0012\u001d\r\u009cS\u0013\u00c2\u0015\u00a6\u001e\u0092\u00c2\u001d\u0000\u0000\u0016C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b0\u00e8\u0097\u00a8\u0006B\b\u001a\u0006KKPV70" + }, + { + "type": "con_recorrido", + "entity": "\n$73c96ce6-6dbb-4538-be78-6b4beea55466\u001a\u00cf\n\n/\n\u001015469-701ff27f-2\u0012\b15:32:00\u001a\b20230916 \u0000*\u00035460\u0001\u0012\u0011\b\u0016\u0012\u0006\u0010\u00df\u00e6\u0097\u00a8\u0006\"\u000540947\u0012\u0011\b\u0017\u0012\u0006\u0010\u00f1\u00e7\u0097\u00a8\u0006\"\u000542853\u0012\u0011\b\u0018\u0012\u0006\u0010\u00d0\u00e8\u0097\u00a8\u0006\"\u000542854\u0012\u0011\b\u0019\u0012\u0006\u0010\u0084\u00e9\u0097\u00a8\u0006\"\u000542855\u0012\u0011\b\u001a\u0012\u0006\u0010\u00a2\u00e9\u0097\u00a8\u0006\"\u000538562\u0012\u0011\b\u001b\u0012\u0006\u0010\u00c2\u00e9\u0097\u00a8\u0006\"\u000542857\u0012\u0011\b\u001c\u0012\u0006\u0010\u00ea\u00e9\u0097\u00a8\u0006\"\u000538697\u0012\u0011\b\u001d\u0012\u0006\u0010\u0090\u00ea\u0097\u00a8\u0006\"\u000538646\u0012\u0011\b\u001e\u0012\u0006\u0010\u00b5\u00ea\u0097\u00a8\u0006\"\u000538632\u0012\u0011\b\u001f\u0012\u0006\u0010\u00fa\u00ea\u0097\u00a8\u0006\"\u000538767\u0012\u0011\b \u0012\u0006\u0010\u00c7\u00eb\u0097\u00a8\u0006\"\u000538768\u0012\u0011\b!\u0012\u0006\u0010\u00ed\u00eb\u0097\u00a8\u0006\"\u000538769\u0012\u0011\b\"\u0012\u0006\u0010\u0090\u00ec\u0097\u00a8\u0006\"\u000549357\u0012\u0011\b#\u0012\u0006\u0010\u00ba\u00ec\u0097\u00a8\u0006\"\u000538771\u0012\u0011\b$\u0012\u0006\u0010\u00e2\u00ec\u0097\u00a8\u0006\"\u000538668\u0012\u0011\b%\u0012\u0006\u0010\u00c8\u00ed\u0097\u00a8\u0006\"\u000538661\u0012\u0011\b&\u0012\u0006\u0010\u0096\u00ee\u0097\u00a8\u0006\"\u000538657\u0012\u0011\b'\u0012\u0006\u0010\u00d6\u00ee\u0097\u00a8\u0006\"\u000538743\u0012\u0011\b(\u0012\u0006\u0010\u0096\u00ef\u0097\u00a8\u0006\"\u000538652\u0012\u0011\b)\u0012\u0006\u0010\u00d4\u00ef\u0097\u00a8\u0006\"\u000538721\u0012\u0011\b*\u0012\u0006\u0010\u0089\u00f0\u0097\u00a8\u0006\"\u000538659\u0012\u0011\b+\u0012\u0006\u0010\u00dd\u00f0\u0097\u00a8\u0006\"\u000538674\u0012\u0011\b,\u0012\u0006\u0010\u00a5\u00f1\u0097\u00a8\u0006\"\u000538649\u0012\u0011\b-\u0012\u0006\u0010\u00e9\u00f1\u0097\u00a8\u0006\"\u000538718\u0012\u0011\b.\u0012\u0006\u0010\u00ab\u00f2\u0097\u00a8\u0006\"\u000538735\u0012\u0011\b/\u0012\u0006\u0010\u00e1\u00f2\u0097\u00a8\u0006\"\u000542270\u0012\u0011\b0\u0012\u0006\u0010\u008f\u00f3\u0097\u00a8\u0006\"\u000542271\u0012\u0013\b1\u0012\u0006\u0010\u00d3\u00f3\u0097\u00a8\u0006\"\u00074838438\u0012\u0011\b2\u0012\u0006\u0010\u00db\u00f4\u0097\u00a8\u0006\"\u000538688\u0012\u0011\b3\u0012\u0006\u0010\u00dd\u00f5\u0097\u00a8\u0006\"\u000539785\u0012\u0011\b4\u0012\u0006\u0010\u0086\u00f6\u0097\u00a8\u0006\"\u000538664\u0012\u0011\b5\u0012\u0006\u0010\u00bf\u00f6\u0097\u00a8\u0006\"\u000538702\u0012\u0011\b6\u0012\u0006\u0010\u00ee\u00f6\u0097\u00a8\u0006\"\u000539787\u0012\u0011\b7\u0012\u0006\u0010\u009b\u00f7\u0097\u00a8\u0006\"\u000538501\u0012\u0011\b8\u0012\u0006\u0010\u00da\u00f7\u0097\u00a8\u0006\"\u000538692\u0012\u0011\b9\u0012\u0006\u0010\u00b3\u00f8\u0097\u00a8\u0006\"\u000538714\u0012\u0011\b:\u0012\u0006\u0010\u00e8\u00f8\u0097\u00a8\u0006\"\u000539791\u0012\u0011\b;\u0012\u0006\u0010\u00ff\u00f8\u0097\u00a8\u0006\"\u000549329\u0012\u0011\b<\u0012\u0006\u0010\u00c4\u00f9\u0097\u00a8\u0006\"\u000549330\u0012\u0011\b=\u0012\u0006\u0010\u00f4\u00f9\u0097\u00a8\u0006\"\u000539652\u0012\u0011\b>\u0012\u0006\u0010\u00b1\u00fa\u0097\u00a8\u0006\"\u000536683\u0012\u0011\b?\u0012\u0006\u0010\u00dd\u00fa\u0097\u00a8\u0006\"\u000537428\u0012\u0011\b@\u0012\u0006\u0010\u008d\u00fb\u0097\u00a8\u0006\"\u000537429\u0012\u0011\bA\u0012\u0006\u0010\u00a0\u00fc\u0097\u00a8\u0006\"\u000536641\u0012\u0011\bB\u0012\u0006\u0010\u00fd\u00fc\u0097\u00a8\u0006\"\u000532571\u0012\u0011\bC\u0012\u0006\u0010\u009c\u00fd\u0097\u00a8\u0006\"\u000532576\u0012\u0011\bD\u0012\u0006\u0010\u00ca\u00fd\u0097\u00a8\u0006\"\u000540259\u0012\u0011\bE\u0012\u0006\u0010\u0099\u00fe\u0097\u00a8\u0006\"\u000540257\u0012\u0011\bF\u0012\u0006\u0010\u00c2\u00fe\u0097\u00a8\u0006\"\u000536690\u0012\u0011\bG\u0012\u0006\u0010\u008c\u00ff\u0097\u00a8\u0006\"\u000536691\u0012\u0011\bH\u0012\u0006\u0010\u00bc\u00ff\u0097\u00a8\u0006\"\u000536692\u0012\u0011\bI\u0012\u0006\u0010\u00d8\u00ff\u0097\u00a8\u0006\"\u000536693\u0012\u0011\bJ\u0012\u0006\u0010\u0092\u0080\u0098\u00a8\u0006\"\u000540036\u0012\u0011\bK\u0012\u0006\u0010\u00e5\u0080\u0098\u00a8\u0006\"\u000536695\u0012\u0011\bL\u0012\u0006\u0010\u00ac\u0081\u0098\u00a8\u0006\"\u000536696\u0012\u0011\bM\u0012\u0006\u0010\u0086\u0082\u0098\u00a8\u0006\"\u000539229\u0012\u0011\bN\u0012\u0006\u0010\u00bf\u0082\u0098\u00a8\u0006\"\u000532587\u0012\u0011\bO\u0012\u0006\u0010\u00e8\u0082\u0098\u00a8\u0006\"\u000539230\u0012\u0011\bP\u0012\u0006\u0010\u0085\u0083\u0098\u00a8\u0006\"\u000536703\u0012\u0011\bQ\u0012\u0006\u0010\u00c6\u0083\u0098\u00a8\u0006\"\u000539688\u0012\u0011\bR\u0012\u0006\u0010\u00fd\u0083\u0098\u00a8\u0006\"\u000536754\u0012\u0011\bS\u0012\u0006\u0010\u008f\u0084\u0098\u00a8\u0006\"\u000539686\u0012\u0011\bT\u0012\u0006\u0010\u00de\u0084\u0098\u00a8\u0006\"\u000536931\u0012\u0011\bU\u0012\u0006\u0010\u00a7\u0085\u0098\u00a8\u0006\"\u000536932\u0012\u0011\bV\u0012\u0006\u0010\u00d6\u0085\u0098\u00a8\u0006\"\u000539666\u0012\u0011\bW\u0012\u0006\u0010\u0084\u0086\u0098\u00a8\u0006\"\u000539667\u0012\u0011\bX\u0012\u0006\u0010\u00d0\u0087\u0098\u00a8\u0006\"\u000549342\u0012\u0011\bY\u0012\u0006\u0010\u00fb\u0088\u0098\u00a8\u0006\"\u000549343\u001a\b\u001a\u0006LRBY43 \u00dc\u00e6\u0097\u00a8\u0006\"`\n/\n\u001015469-701ff27f-2\u0012\b15:32:00\u001a\b20230916 \u0000*\u00035460\u0001\u0012\u001d\r\u00d1\u00e5\u0012\u00c2\u0015\u00e2<\u0092\u00c2\u001d\u0000\u0000\u0002C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00bc\u00e8\u0097\u00a8\u0006B\b\u001a\u0006LRBY43" + }, + { + "type": "con_recorrido", + "entity": "\n$0d2aa157-745c-4ee2-a26b-f76bd53ed1a5\u001a\u009f\b\n/\n\u001015468-701ff27f-2\u0012\b15:02:00\u001a\b20230916 \u0000*\u00035460\u0001\u0012\u0011\b&\u0012\u0006\u0010\u00e0\u00e8\u0097\u00a8\u0006\"\u000538657\u0012\u0011\b'\u0012\u0006\u0010\u00a5\u00e9\u0097\u00a8\u0006\"\u000538743\u0012\u0011\b(\u0012\u0006\u0010\u00eb\u00e9\u0097\u00a8\u0006\"\u000538652\u0012\u0011\b)\u0012\u0006\u0010\u00ad\u00ea\u0097\u00a8\u0006\"\u000538721\u0012\u0011\b*\u0012\u0006\u0010\u00e5\u00ea\u0097\u00a8\u0006\"\u000538659\u0012\u0011\b+\u0012\u0006\u0010\u00bd\u00eb\u0097\u00a8\u0006\"\u000538674\u0012\u0011\b,\u0012\u0006\u0010\u0087\u00ec\u0097\u00a8\u0006\"\u000538649\u0012\u0011\b-\u0012\u0006\u0010\u00cb\u00ec\u0097\u00a8\u0006\"\u000538718\u0012\u0011\b.\u0012\u0006\u0010\u008e\u00ed\u0097\u00a8\u0006\"\u000538735\u0012\u0011\b/\u0012\u0006\u0010\u00c3\u00ed\u0097\u00a8\u0006\"\u000542270\u0012\u0011\b0\u0012\u0006\u0010\u00f0\u00ed\u0097\u00a8\u0006\"\u000542271\u0012\u0013\b1\u0012\u0006\u0010\u00b2\u00ee\u0097\u00a8\u0006\"\u00074838438\u0012\u0011\b2\u0012\u0006\u0010\u00b4\u00ef\u0097\u00a8\u0006\"\u000538688\u0012\u0011\b3\u0012\u0006\u0010\u00ae\u00f0\u0097\u00a8\u0006\"\u000539785\u0012\u0011\b4\u0012\u0006\u0010\u00d3\u00f0\u0097\u00a8\u0006\"\u000538664\u0012\u0011\b5\u0012\u0006\u0010\u0087\u00f1\u0097\u00a8\u0006\"\u000538702\u0012\u0011\b6\u0012\u0006\u0010\u00b2\u00f1\u0097\u00a8\u0006\"\u000539787\u0012\u0011\b7\u0012\u0006\u0010\u00db\u00f1\u0097\u00a8\u0006\"\u000538501\u0012\u0011\b8\u0012\u0006\u0010\u0092\u00f2\u0097\u00a8\u0006\"\u000538692\u0012\u0011\b9\u0012\u0006\u0010\u00e1\u00f2\u0097\u00a8\u0006\"\u000538714\u0012\u0011\b:\u0012\u0006\u0010\u008f\u00f3\u0097\u00a8\u0006\"\u000539791\u0012\u0011\b;\u0012\u0006\u0010\u00a3\u00f3\u0097\u00a8\u0006\"\u000549329\u0012\u0011\b<\u0012\u0006\u0010\u00df\u00f3\u0097\u00a8\u0006\"\u000549330\u0012\u0011\b=\u0012\u0006\u0010\u0088\u00f4\u0097\u00a8\u0006\"\u000539652\u0012\u0011\b>\u0012\u0006\u0010\u00bc\u00f4\u0097\u00a8\u0006\"\u000536683\u0012\u0011\b?\u0012\u0006\u0010\u00e0\u00f4\u0097\u00a8\u0006\"\u000537428\u0012\u0011\b@\u0012\u0006\u0010\u0089\u00f5\u0097\u00a8\u0006\"\u000537429\u0012\u0011\bA\u0012\u0006\u0010\u0082\u00f6\u0097\u00a8\u0006\"\u000536641\u0012\u0011\bB\u0012\u0006\u0010\u00ce\u00f6\u0097\u00a8\u0006\"\u000532571\u0012\u0011\bC\u0012\u0006\u0010\u00e7\u00f6\u0097\u00a8\u0006\"\u000532576\u0012\u0011\bD\u0012\u0006\u0010\u008c\u00f7\u0097\u00a8\u0006\"\u000540259\u0012\u0011\bE\u0012\u0006\u0010\u00cb\u00f7\u0097\u00a8\u0006\"\u000540257\u0012\u0011\bF\u0012\u0006\u0010\u00ec\u00f7\u0097\u00a8\u0006\"\u000536690\u0012\u0011\bG\u0012\u0006\u0010\u00a5\u00f8\u0097\u00a8\u0006\"\u000536691\u0012\u0011\bH\u0012\u0006\u0010\u00cb\u00f8\u0097\u00a8\u0006\"\u000536692\u0012\u0011\bI\u0012\u0006\u0010\u00e1\u00f8\u0097\u00a8\u0006\"\u000536693\u0012\u0011\bJ\u0012\u0006\u0010\u008d\u00f9\u0097\u00a8\u0006\"\u000540036\u0012\u0011\bK\u0012\u0006\u0010\u00cd\u00f9\u0097\u00a8\u0006\"\u000536695\u0012\u0011\bL\u0012\u0006\u0010\u0083\u00fa\u0097\u00a8\u0006\"\u000536696\u0012\u0011\bM\u0012\u0006\u0010\u00c6\u00fa\u0097\u00a8\u0006\"\u000539229\u0012\u0011\bN\u0012\u0006\u0010\u00f1\u00fa\u0097\u00a8\u0006\"\u000532587\u0012\u0011\bO\u0012\u0006\u0010\u0090\u00fb\u0097\u00a8\u0006\"\u000539230\u0012\u0011\bP\u0012\u0006\u0010\u00a5\u00fb\u0097\u00a8\u0006\"\u000536703\u0012\u0011\bQ\u0012\u0006\u0010\u00d5\u00fb\u0097\u00a8\u0006\"\u000539688\u0012\u0011\bR\u0012\u0006\u0010\u00fd\u00fb\u0097\u00a8\u0006\"\u000536754\u0012\u0011\bS\u0012\u0006\u0010\u008a\u00fc\u0097\u00a8\u0006\"\u000539686\u0012\u0011\bT\u0012\u0006\u0010\u00c3\u00fc\u0097\u00a8\u0006\"\u000536931\u0012\u0011\bU\u0012\u0006\u0010\u00f8\u00fc\u0097\u00a8\u0006\"\u000536932\u0012\u0011\bV\u0012\u0006\u0010\u0099\u00fd\u0097\u00a8\u0006\"\u000539666\u0012\u0011\bW\u0012\u0006\u0010\u00ba\u00fd\u0097\u00a8\u0006\"\u000539667\u0012\u0011\bX\u0012\u0006\u0010\u00ca\u00fe\u0097\u00a8\u0006\"\u000549342\u0012\u0011\bY\u0012\u0006\u0010\u00bf\u00ff\u0097\u00a8\u0006\"\u000549343\u001a\b\u001a\u0006RFSC37 \u00b8\u00e8\u0097\u00a8\u0006\"`\n/\n\u001015468-701ff27f-2\u0012\b15:02:00\u001a\b20230916 \u0000*\u00035460\u0001\u0012\u001d\r[\u00ef\u0012\u00c2\u0015\u00b76\u0092\u00c2\u001d\u0000\u0000\fC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b8\u00e8\u0097\u00a8\u0006B\b\u001a\u0006RFSC37" + }, + { + "type": "con_recorrido", + "entity": "\n$94ca679e-f259-4c80-8c29-ca3d9a5d1ce0\u001a\u0092\r\n/\n\u001015470-701ff27f-2\u0012\b16:02:00\u001a\b20230916 \u0000*\u00035460\u0001\u0012\u0011\b\u0005\u0012\u0006\u0010\u00d3\u00e5\u0097\u00a8\u0006\"\u000540349\u0012\u0011\b\u0006\u0012\u0006\u0010\u00fd\u00e5\u0097\u00a8\u0006\"\u000540350\u0012\u0011\b\u0007\u0012\u0006\u0010\u00ba\u00e6\u0097\u00a8\u0006\"\u000540351\u0012\u0011\b\b\u0012\u0006\u0010\u0096\u00e7\u0097\u00a8\u0006\"\u000540352\u0012\u0011\b\t\u0012\u0006\u0010\u00ec\u00e7\u0097\u00a8\u0006\"\u000541970\u0012\u0011\b\n\u0012\u0006\u0010\u00b7\u00e8\u0097\u00a8\u0006\"\u000532500\u0012\u0011\b\u000b\u0012\u0006\u0010\u00e3\u00e8\u0097\u00a8\u0006\"\u000532501\u0012\u0011\b\f\u0012\u0006\u0010\u00a3\u00e9\u0097\u00a8\u0006\"\u000538397\u0012\u0011\b\r\u0012\u0006\u0010\u00dd\u00e9\u0097\u00a8\u0006\"\u000538491\u0012\u0011\b\u000e\u0012\u0006\u0010\u00a1\u00ea\u0097\u00a8\u0006\"\u000538498\u0012\u0011\b\u000f\u0012\u0006\u0010\u00cf\u00ea\u0097\u00a8\u0006\"\u000538495\u0012\u0011\b\u0010\u0012\u0006\u0010\u00df\u00eb\u0097\u00a8\u0006\"\u000540928\u0012\u0011\b\u0011\u0012\u0006\u0010\u00fe\u00eb\u0097\u00a8\u0006\"\u000538572\u0012\u0011\b\u0012\u0012\u0006\u0010\u00b5\u00ec\u0097\u00a8\u0006\"\u000538571\u0012\u0011\b\u0013\u0012\u0006\u0010\u00c3\u00ec\u0097\u00a8\u0006\"\u000537447\u0012\u0011\b\u0014\u0012\u0006\u0010\u00d8\u00ec\u0097\u00a8\u0006\"\u000540929\u0012\u0011\b\u0015\u0012\u0006\u0010\u0096\u00ed\u0097\u00a8\u0006\"\u000540946\u0012\u0011\b\u0016\u0012\u0006\u0010\u00c7\u00ed\u0097\u00a8\u0006\"\u000540947\u0012\u0011\b\u0017\u0012\u0006\u0010\u00cd\u00ee\u0097\u00a8\u0006\"\u000542853\u0012\u0011\b\u0018\u0012\u0006\u0010\u00a5\u00ef\u0097\u00a8\u0006\"\u000542854\u0012\u0011\b\u0019\u0012\u0006\u0010\u00d7\u00ef\u0097\u00a8\u0006\"\u000542855\u0012\u0011\b\u001a\u0012\u0006\u0010\u00f4\u00ef\u0097\u00a8\u0006\"\u000538562\u0012\u0011\b\u001b\u0012\u0006\u0010\u0093\u00f0\u0097\u00a8\u0006\"\u000542857\u0012\u0011\b\u001c\u0012\u0006\u0010\u00b9\u00f0\u0097\u00a8\u0006\"\u000538697\u0012\u0011\b\u001d\u0012\u0006\u0010\u00df\u00f0\u0097\u00a8\u0006\"\u000538646\u0012\u0011\b\u001e\u0012\u0006\u0010\u0083\u00f1\u0097\u00a8\u0006\"\u000538632\u0012\u0011\b\u001f\u0012\u0006\u0010\u00c8\u00f1\u0097\u00a8\u0006\"\u000538767\u0012\u0011\b \u0012\u0006\u0010\u0096\u00f2\u0097\u00a8\u0006\"\u000538768\u0012\u0011\b!\u0012\u0006\u0010\u00bd\u00f2\u0097\u00a8\u0006\"\u000538769\u0012\u0011\b\"\u0012\u0006\u0010\u00e1\u00f2\u0097\u00a8\u0006\"\u000549357\u0012\u0011\b#\u0012\u0006\u0010\u008d\u00f3\u0097\u00a8\u0006\"\u000538771\u0012\u0011\b$\u0012\u0006\u0010\u00b7\u00f3\u0097\u00a8\u0006\"\u000538668\u0012\u0011\b%\u0012\u0006\u0010\u00a4\u00f4\u0097\u00a8\u0006\"\u000538661\u0012\u0011\b&\u0012\u0006\u0010\u00f8\u00f4\u0097\u00a8\u0006\"\u000538657\u0012\u0011\b'\u0012\u0006\u0010\u00be\u00f5\u0097\u00a8\u0006\"\u000538743\u0012\u0011\b(\u0012\u0006\u0010\u0086\u00f6\u0097\u00a8\u0006\"\u000538652\u0012\u0011\b)\u0012\u0006\u0010\u00cc\u00f6\u0097\u00a8\u0006\"\u000538721\u0012\u0011\b*\u0012\u0006\u0010\u0088\u00f7\u0097\u00a8\u0006\"\u000538659\u0012\u0011\b+\u0012\u0006\u0010\u00ea\u00f7\u0097\u00a8\u0006\"\u000538674\u0012\u0011\b,\u0012\u0006\u0010\u00be\u00f8\u0097\u00a8\u0006\"\u000538649\u0012\u0011\b-\u0012\u0006\u0010\u008e\u00f9\u0097\u00a8\u0006\"\u000538718\u0012\u0011\b.\u0012\u0006\u0010\u00de\u00f9\u0097\u00a8\u0006\"\u000538735\u0012\u0011\b/\u0012\u0006\u0010\u00a0\u00fa\u0097\u00a8\u0006\"\u000542270\u0012\u0011\b0\u0012\u0006\u0010\u00d7\u00fa\u0097\u00a8\u0006\"\u000542271\u0012\u0013\b1\u0012\u0006\u0010\u00ac\u00fb\u0097\u00a8\u0006\"\u00074838438\u0012\u0011\b2\u0012\u0006\u0010\u00d8\u00fc\u0097\u00a8\u0006\"\u000538688\u0012\u0011\b3\u0012\u0006\u0010\u0081\u00fe\u0097\u00a8\u0006\"\u000539785\u0012\u0011\b4\u0012\u0006\u0010\u00b6\u00fe\u0097\u00a8\u0006\"\u000538664\u0012\u0011\b5\u0012\u0006\u0010\u0082\u00ff\u0097\u00a8\u0006\"\u000538702\u0012\u0011\b6\u0012\u0006\u0010\u00c1\u00ff\u0097\u00a8\u0006\"\u000539787\u0012\u0011\b7\u0012\u0006\u0010\u00fe\u00ff\u0097\u00a8\u0006\"\u000538501\u0012\u0011\b8\u0012\u0006\u0010\u00d3\u0080\u0098\u00a8\u0006\"\u000538692\u0012\u0011\b9\u0012\u0006\u0010\u00cd\u0081\u0098\u00a8\u0006\"\u000538714\u0012\u0011\b:\u0012\u0006\u0010\u0098\u0082\u0098\u00a8\u0006\"\u000539791\u0012\u0011\b;\u0012\u0006\u0010\u00b8\u0082\u0098\u00a8\u0006\"\u000549329\u0012\u0011\b<\u0012\u0006\u0010\u0099\u0083\u0098\u00a8\u0006\"\u000549330\u0012\u0011\b=\u0012\u0006\u0010\u00de\u0083\u0098\u00a8\u0006\"\u000539652\u0012\u0011\b>\u0012\u0006\u0010\u00b7\u0084\u0098\u00a8\u0006\"\u000536683\u0012\u0011\b?\u0012\u0006\u0010\u00f6\u0084\u0098\u00a8\u0006\"\u000537428\u0012\u0011\b@\u0012\u0006\u0010\u00bd\u0085\u0098\u00a8\u0006\"\u000537429\u0012\u0011\bA\u0012\u0006\u0010\u0097\u0087\u0098\u00a8\u0006\"\u000536641\u0012\u0011\bB\u0012\u0006\u0010\u00a5\u0088\u0098\u00a8\u0006\"\u000532571\u0012\u0011\bC\u0012\u0006\u0010\u00d4\u0088\u0098\u00a8\u0006\"\u000532576\u0012\u0011\bD\u0012\u0006\u0010\u009c\u0089\u0098\u00a8\u0006\"\u000540259\u0012\u0011\bE\u0012\u0006\u0010\u0096\u008a\u0098\u00a8\u0006\"\u000540257\u0012\u0011\bF\u0012\u0006\u0010\u00d8\u008a\u0098\u00a8\u0006\"\u000536690\u0012\u0011\bG\u0012\u0006\u0010\u00cc\u008b\u0098\u00a8\u0006\"\u000536691\u0012\u0011\bH\u0012\u0006\u0010\u009a\u008c\u0098\u00a8\u0006\"\u000536692\u0012\u0011\bI\u0012\u0006\u0010\u00c7\u008c\u0098\u00a8\u0006\"\u000536693\u0012\u0011\bJ\u0012\u0006\u0010\u00a5\u008d\u0098\u00a8\u0006\"\u000540036\u0012\u0011\bK\u0012\u0006\u0010\u00ad\u008e\u0098\u00a8\u0006\"\u000536695\u0012\u0011\bL\u0012\u0006\u0010\u00a3\u008f\u0098\u00a8\u0006\"\u000536696\u0012\u0011\bM\u0012\u0006\u0010\u00ba\u0090\u0098\u00a8\u0006\"\u000539229\u0012\u0011\bN\u0012\u0006\u0010\u009b\u0091\u0098\u00a8\u0006\"\u000532587\u0012\u0011\bO\u0012\u0006\u0010\u00e3\u0091\u0098\u00a8\u0006\"\u000539230\u0012\u0011\bP\u0012\u0006\u0010\u0094\u0092\u0098\u00a8\u0006\"\u000536703\u0012\u0011\bQ\u0012\u0006\u0010\u0085\u0093\u0098\u00a8\u0006\"\u000539688\u0012\u0011\bR\u0012\u0006\u0010\u00e7\u0093\u0098\u00a8\u0006\"\u000536754\u0012\u0011\bS\u0012\u0006\u0010\u0086\u0094\u0098\u00a8\u0006\"\u000539686\u0012\u0011\bT\u0012\u0006\u0010\u0092\u0095\u0098\u00a8\u0006\"\u000536931\u0012\u0011\bU\u0012\u0006\u0010\u0096\u0096\u0098\u00a8\u0006\"\u000536932\u0012\u0011\bV\u0012\u0006\u0010\u00eb\u0096\u0098\u00a8\u0006\"\u000539666\u0012\u0011\bW\u0012\u0006\u0010\u00bf\u0097\u0098\u00a8\u0006\"\u000539667\u0012\u0011\bX\u0012\u0006\u0010\u00bd\u009a\u0098\u00a8\u0006\"\u000549342\u0012\u0011\bY\u0012\u0006\u0010\u0084\u009d\u0098\u00a8\u0006\"\u000549343\u001a\b\u001a\u0006YR1499 \u00bd\u00e5\u0097\u00a8\u0006\"`\n/\n\u001015470-701ff27f-2\u0012\b16:02:00\u001a\b20230916 \u0000*\u00035460\u0001\u0012\u001d\r\u00f1\u00df\u0012\u00c2\u00153K\u0092\u00c2\u001d\u0000\u0000KC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b6\u00e8\u0097\u00a8\u0006B\b\u001a\u0006YR1499" + }, + { + "type": "con_recorrido", + "entity": "\n$19339e66-0208-4097-804f-7f8ca3d5f05b\u001a\u008e\u000f\n/\n\u001015535-701ff27f-2\u0012\b15:31:00\u001a\b20230916 \u0000*\u00035470\u0000\u0012\u0011\b\u0003\u0012\u0006\u0010\u00b5\u00ea\u0097\u00a8\u0006\"\u000542426\u0012\u0011\b\u0004\u0012\u0006\u0010\u00ec\u00ea\u0097\u00a8\u0006\"\u000542427\u0012\u0011\b\u0005\u0012\u0006\u0010\u008a\u00eb\u0097\u00a8\u0006\"\u000542428\u0012\u0011\b\u0006\u0012\u0006\u0010\u00b1\u00eb\u0097\u00a8\u0006\"\u000537042\u0012\u0011\b\u0007\u0012\u0006\u0010\u00c4\u00eb\u0097\u00a8\u0006\"\u000536935\u0012\u0011\b\b\u0012\u0006\u0010\u00d7\u00eb\u0097\u00a8\u0006\"\u000537043\u0012\u0011\b\t\u0012\u0006\u0010\u0081\u00ec\u0097\u00a8\u0006\"\u000537044\u0012\u0011\b\n\u0012\u0006\u0010\u00ad\u00ec\u0097\u00a8\u0006\"\u000537045\u0012\u0011\b\u000b\u0012\u0006\u0010\u00b5\u00ec\u0097\u00a8\u0006\"\u000536932\u0012\u0011\b\f\u0012\u0006\u0010\u00d0\u00ec\u0097\u00a8\u0006\"\u000537099\u0012\u0011\b\r\u0012\u0006\u0010\u00dc\u00ec\u0097\u00a8\u0006\"\u000536931\u0012\u0011\b\u000e\u0012\u0006\u0010\u00f5\u00ec\u0097\u00a8\u0006\"\u000536929\u0012\u0011\b\u000f\u0012\u0006\u0010\u009d\u00ed\u0097\u00a8\u0006\"\u000539687\u0012\u0013\b\u0010\u0012\u0006\u0010\u00b5\u00ed\u0097\u00a8\u0006\"\u00078606050\u0012\u0011\b\u0011\u0012\u0006\u0010\u00d7\u00ed\u0097\u00a8\u0006\"\u000539689\u0012\u0011\b\u0012\u0012\u0006\u0010\u00b5\u00ee\u0097\u00a8\u0006\"\u000539140\u0012\u0011\b\u0013\u0012\u0006\u0010\u00f3\u00ee\u0097\u00a8\u0006\"\u000539141\u0012\u0011\b\u0014\u0012\u0006\u0010\u00aa\u00ef\u0097\u00a8\u0006\"\u000539082\u0012\u0011\b\u0015\u0012\u0006\u0010\u00c8\u00ef\u0097\u00a8\u0006\"\u000540252\u0012\u0011\b\u0016\u0012\u0006\u0010\u0096\u00f0\u0097\u00a8\u0006\"\u000532731\u0012\u0011\b\u0017\u0012\u0006\u0010\u00b8\u00f0\u0097\u00a8\u0006\"\u000536691\u0012\u0011\b\u0018\u0012\u0006\u0010\u00e7\u00f0\u0097\u00a8\u0006\"\u000536690\u0012\u0011\b\u0019\u0012\u0006\u0010\u0089\u00f1\u0097\u00a8\u0006\"\u000540257\u0012\u0011\b\u001a\u0012\u0006\u0010\u00a4\u00f1\u0097\u00a8\u0006\"\u000540258\u0012\u0011\b\u001b\u0012\u0006\u0010\u00db\u00f1\u0097\u00a8\u0006\"\u000532734\u0012\u0011\b\u001c\u0012\u0006\u0010\u00c1\u00f2\u0097\u00a8\u0006\"\u000532736\u0012\u0011\b\u001d\u0012\u0006\u0010\u00ab\u00f3\u0097\u00a8\u0006\"\u000537588\u0012\u0011\b\u001e\u0012\u0006\u0010\u00dd\u00f3\u0097\u00a8\u0006\"\u000537589\u0012\u0011\b\u001f\u0012\u0006\u0010\u00a9\u00f4\u0097\u00a8\u0006\"\u000537840\u0012\u0011\b \u0012\u0006\u0010\u00c7\u00f4\u0097\u00a8\u0006\"\u000549140\u0012\u0011\b!\u0012\u0006\u0010\u00ef\u00f4\u0097\u00a8\u0006\"\u000549141\u0012\u0011\b\"\u0012\u0006\u0010\u0091\u00f5\u0097\u00a8\u0006\"\u000549142\u0012\u0011\b#\u0012\u0006\u0010\u00b9\u00f5\u0097\u00a8\u0006\"\u000549143\u0012\u0011\b$\u0012\u0006\u0010\u00c0\u00f5\u0097\u00a8\u0006\"\u000545112\u0012\u0011\b%\u0012\u0006\u0010\u00f9\u00f5\u0097\u00a8\u0006\"\u000545113\u0012\u0011\b&\u0012\u0006\u0010\u00c2\u00f6\u0097\u00a8\u0006\"\u000537490\u0012\u0011\b'\u0012\u0006\u0010\u0084\u00f7\u0097\u00a8\u0006\"\u000545115\u0012\u0011\b(\u0012\u0006\u0010\u009e\u00f7\u0097\u00a8\u0006\"\u000545116\u0012\u0011\b)\u0012\u0006\u0010\u00e8\u00f7\u0097\u00a8\u0006\"\u000545118\u0012\u0011\b*\u0012\u0006\u0010\u00b9\u00f8\u0097\u00a8\u0006\"\u000545119\u0012\u0011\b+\u0012\u0006\u0010\u00e9\u00f8\u0097\u00a8\u0006\"\u000545120\u0012\u0011\b,\u0012\u0006\u0010\u00a5\u00f9\u0097\u00a8\u0006\"\u000545121\u0012\u0011\b-\u0012\u0006\u0010\u00d4\u00f9\u0097\u00a8\u0006\"\u000538535\u0012\u0011\b.\u0012\u0006\u0010\u00aa\u00fa\u0097\u00a8\u0006\"\u000538536\u0012\u0013\b/\u0012\u0006\u0010\u00c9\u00fa\u0097\u00a8\u0006\"\u00074838437\u0012\u0011\b0\u0012\u0006\u0010\u008e\u00fb\u0097\u00a8\u0006\"\u000545085\u0012\u0011\b1\u0012\u0006\u0010\u00e8\u00fb\u0097\u00a8\u0006\"\u000545086\u0012\u0011\b2\u0012\u0006\u0010\u00a8\u00fc\u0097\u00a8\u0006\"\u000538539\u0012\u0011\b3\u0012\u0006\u0010\u00f9\u00fc\u0097\u00a8\u0006\"\u000538540\u0012\u0011\b4\u0012\u0006\u0010\u00d0\u00fd\u0097\u00a8\u0006\"\u000538544\u0012\u0011\b5\u0012\u0006\u0010\u00a6\u00fe\u0097\u00a8\u0006\"\u000538545\u0012\u0011\b6\u0012\u0006\u0010\u00a4\u00ff\u0097\u00a8\u0006\"\u000538546\u0012\u0011\b7\u0012\u0006\u0010\u00c6\u0080\u0098\u00a8\u0006\"\u000538548\u0012\u0011\b8\u0012\u0006\u0010\u00a1\u0081\u0098\u00a8\u0006\"\u000538549\u0012\u0011\b9\u0012\u0006\u0010\u00f4\u0081\u0098\u00a8\u0006\"\u000538550\u0012\u0011\b:\u0012\u0006\u0010\u0080\u0083\u0098\u00a8\u0006\"\u000538551\u0012\u0011\b;\u0012\u0006\u0010\u0081\u0084\u0098\u00a8\u0006\"\u000538552\u0012\u0011\b<\u0012\u0006\u0010\u00fe\u0084\u0098\u00a8\u0006\"\u000549359\u0012\u0011\b=\u0012\u0006\u0010\u00d2\u0085\u0098\u00a8\u0006\"\u000549360\u0012\u0011\b>\u0012\u0006\u0010\u008e\u0087\u0098\u00a8\u0006\"\u000549361\u0012\u0011\b?\u0012\u0006\u0010\u00bb\u0087\u0098\u00a8\u0006\"\u000549362\u0012\u0011\b@\u0012\u0006\u0010\u008f\u0088\u0098\u00a8\u0006\"\u000549363\u0012\u0011\bA\u0012\u0006\u0010\u00e4\u0088\u0098\u00a8\u0006\"\u000549364\u0012\u0011\bB\u0012\u0006\u0010\u00b7\u0089\u0098\u00a8\u0006\"\u000549365\u0012\u0011\bC\u0012\u0006\u0010\u00a8\u008a\u0098\u00a8\u0006\"\u000538560\u0012\u0011\bD\u0012\u0006\u0010\u00e7\u008a\u0098\u00a8\u0006\"\u000538561\u0012\u0011\bE\u0012\u0006\u0010\u00a4\u008b\u0098\u00a8\u0006\"\u000538562\u0012\u0011\bF\u0012\u0006\u0010\u00f6\u008b\u0098\u00a8\u0006\"\u000538563\u0012\u0011\bG\u0012\u0006\u0010\u00cc\u008c\u0098\u00a8\u0006\"\u000542854\u0012\u0011\bH\u0012\u0006\u0010\u0093\u008e\u0098\u00a8\u0006\"\u000538565\u0012\u0011\bI\u0012\u0006\u0010\u00fc\u008e\u0098\u00a8\u0006\"\u000540932\u0012\u0011\bJ\u0012\u0006\u0010\u00dc\u008f\u0098\u00a8\u0006\"\u000538566\u0012\u0011\bK\u0012\u0006\u0010\u00a6\u0090\u0098\u00a8\u0006\"\u000538567\u0012\u0011\bL\u0012\u0006\u0010\u0088\u0091\u0098\u00a8\u0006\"\u000538568\u0012\u0011\bM\u0012\u0006\u0010\u00d9\u0091\u0098\u00a8\u0006\"\u000538569\u0012\u0011\bN\u0012\u0006\u0010\u00c1\u0092\u0098\u00a8\u0006\"\u000538570\u0012\u0011\bO\u0012\u0006\u0010\u00d0\u0093\u0098\u00a8\u0006\"\u000538571\u0012\u0011\bP\u0012\u0006\u0010\u00db\u0094\u0098\u00a8\u0006\"\u000538572\u0012\u0011\bQ\u0012\u0006\u0010\u00c9\u0098\u0098\u00a8\u0006\"\u000538393\u0012\u0011\bR\u0012\u0006\u0010\u00d8\u0099\u0098\u00a8\u0006\"\u000538394\u0012\u0011\bS\u0012\u0006\u0010\u00ef\u009a\u0098\u00a8\u0006\"\u000538424\u0012\u0011\bT\u0012\u0006\u0010\u00db\u009b\u0098\u00a8\u0006\"\u000538396\u0012\u0011\bU\u0012\u0006\u0010\u0081\u009f\u0098\u00a8\u0006\"\u000541928\u0012\u0011\bV\u0012\u0006\u0010\u009f\u00a0\u0098\u00a8\u0006\"\u000541929\u0012\u0011\bW\u0012\u0006\u0010\u00d1\u00a4\u0098\u00a8\u0006\"\u000540543\u0012\u0011\bX\u0012\u0006\u0010\u0089\u00a5\u0098\u00a8\u0006\"\u000541969\u0012\u0011\bY\u0012\u0006\u0010\u00c8\u00a8\u0098\u00a8\u0006\"\u000540544\u0012\u0014\bZ\u0012\u0006\u0010\u009d\u00a9\u0098\u00a8\u0006\"\b16705477\u0012\u0011\b[\u0012\u0006\u0010\u00f9\u00aa\u0098\u00a8\u0006\"\u000540545\u0012\u0011\b\\\u0012\u0006\u0010\u00f9\u00ac\u0098\u00a8\u0006\"\u000540546\u0012\u0011\b]\u0012\u0006\u0010\u00ab\u00ae\u0098\u00a8\u0006\"\u000540547\u0012\u0011\b^\u0012\u0006\u0010\u00b1\u00b0\u0098\u00a8\u0006\"\u000540548\u0012\u0011\b_\u0012\u0006\u0010\u00b6\u00b1\u0098\u00a8\u0006\"\u000540549\u0012\u0011\b`\u0012\u0006\u0010\u0084\u00b3\u0098\u00a8\u0006\"\u000540550\u0012\u0011\ba\u0012\u0006\u0010\u00a1\u00b5\u0098\u00a8\u0006\"\u000540551\u0012\u0011\bb\u0012\u0006\u0010\u00b6\u00ba\u0098\u00a8\u0006\"\u000540552\u0012\u0011\bc\u0012\u0006\u0010\u008a\u00bd\u0098\u00a8\u0006\"\u000540553\u0012\u0011\bd\u0012\u0006\u0010\u00b9\u00c0\u0098\u00a8\u0006\"\u000540554\u001a\b\u001a\u0006FXRZ35 \u0088\u00e8\u0097\u00a8\u0006\"`\n/\n\u001015535-701ff27f-2\u0012\b15:31:00\u001a\b20230916 \u0000*\u00035470\u0000\u0012\u001d\r\"\r\u0013\u00c2\u0015f<\u0092\u00c2\u001d\u0000\u0000WC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u00a0@(\u0088\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FXRZ35" + }, + { + "type": "con_recorrido", + "entity": "\n$46abe55c-a3a6-4144-9559-d0a088e35f3f\u001a\u00cd\t\n/\n\u001015534-701ff27f-2\u0012\b15:01:00\u001a\b20230916 \u0000*\u00035470\u0000\u0012\u0011\b(\u0012\u0006\u0010\u00a9\u00e8\u0097\u00a8\u0006\"\u000545116\u0012\u0011\b)\u0012\u0006\u0010\u00f5\u00e8\u0097\u00a8\u0006\"\u000545118\u0012\u0011\b*\u0012\u0006\u0010\u00c3\u00e9\u0097\u00a8\u0006\"\u000545119\u0012\u0011\b+\u0012\u0006\u0010\u00f2\u00e9\u0097\u00a8\u0006\"\u000545120\u0012\u0011\b,\u0012\u0006\u0010\u00aa\u00ea\u0097\u00a8\u0006\"\u000545121\u0012\u0011\b-\u0012\u0006\u0010\u00d5\u00ea\u0097\u00a8\u0006\"\u000538535\u0012\u0011\b.\u0012\u0006\u0010\u00a3\u00eb\u0097\u00a8\u0006\"\u000538536\u0012\u0013\b/\u0012\u0006\u0010\u00be\u00eb\u0097\u00a8\u0006\"\u00074838437\u0012\u0011\b0\u0012\u0006\u0010\u00fb\u00eb\u0097\u00a8\u0006\"\u000545085\u0012\u0011\b1\u0012\u0006\u0010\u00c7\u00ec\u0097\u00a8\u0006\"\u000545086\u0012\u0011\b2\u0012\u0006\u0010\u00fc\u00ec\u0097\u00a8\u0006\"\u000538539\u0012\u0011\b3\u0012\u0006\u0010\u00bd\u00ed\u0097\u00a8\u0006\"\u000538540\u0012\u0011\b4\u0012\u0006\u0010\u0083\u00ee\u0097\u00a8\u0006\"\u000538544\u0012\u0011\b5\u0012\u0006\u0010\u00c5\u00ee\u0097\u00a8\u0006\"\u000538545\u0012\u0011\b6\u0012\u0006\u0010\u00a3\u00ef\u0097\u00a8\u0006\"\u000538546\u0012\u0011\b7\u0012\u0006\u0010\u0098\u00f0\u0097\u00a8\u0006\"\u000538548\u0012\u0011\b8\u0012\u0006\u0010\u00d8\u00f0\u0097\u00a8\u0006\"\u000538549\u0012\u0011\b9\u0012\u0006\u0010\u0091\u00f1\u0097\u00a8\u0006\"\u000538550\u0012\u0011\b:\u0012\u0006\u0010\u00ee\u00f1\u0097\u00a8\u0006\"\u000538551\u0012\u0011\b;\u0012\u0006\u0010\u00c1\u00f2\u0097\u00a8\u0006\"\u000538552\u0012\u0011\b<\u0012\u0006\u0010\u008f\u00f3\u0097\u00a8\u0006\"\u000549359\u0012\u0011\b=\u0012\u0006\u0010\u00c3\u00f3\u0097\u00a8\u0006\"\u000549360\u0012\u0011\b>\u0012\u0006\u0010\u00b2\u00f4\u0097\u00a8\u0006\"\u000549361\u0012\u0011\b?\u0012\u0006\u0010\u00cc\u00f4\u0097\u00a8\u0006\"\u000549362\u0012\u0011\b@\u0012\u0006\u0010\u00fc\u00f4\u0097\u00a8\u0006\"\u000549363\u0012\u0011\bA\u0012\u0006\u0010\u00ac\u00f5\u0097\u00a8\u0006\"\u000549364\u0012\u0011\bB\u0012\u0006\u0010\u00da\u00f5\u0097\u00a8\u0006\"\u000549365\u0012\u0011\bC\u0012\u0006\u0010\u0097\u00f6\u0097\u00a8\u0006\"\u000538560\u0012\u0011\bD\u0012\u0006\u0010\u00b9\u00f6\u0097\u00a8\u0006\"\u000538561\u0012\u0011\bE\u0012\u0006\u0010\u00d9\u00f6\u0097\u00a8\u0006\"\u000538562\u0012\u0011\bF\u0012\u0006\u0010\u0084\u00f7\u0097\u00a8\u0006\"\u000538563\u0012\u0011\bG\u0012\u0006\u0010\u00b0\u00f7\u0097\u00a8\u0006\"\u000542854\u0012\u0011\bH\u0012\u0006\u0010\u0093\u00f8\u0097\u00a8\u0006\"\u000538565\u0012\u0011\bI\u0012\u0006\u0010\u00c6\u00f8\u0097\u00a8\u0006\"\u000540932\u0012\u0011\bJ\u0012\u0006\u0010\u00f4\u00f8\u0097\u00a8\u0006\"\u000538566\u0012\u0011\bK\u0012\u0006\u0010\u0097\u00f9\u0097\u00a8\u0006\"\u000538567\u0012\u0011\bL\u0012\u0006\u0010\u00c4\u00f9\u0097\u00a8\u0006\"\u000538568\u0012\u0011\bM\u0012\u0006\u0010\u00ea\u00f9\u0097\u00a8\u0006\"\u000538569\u0012\u0011\bN\u0012\u0006\u0010\u0098\u00fa\u0097\u00a8\u0006\"\u000538570\u0012\u0011\bO\u0012\u0006\u0010\u00d8\u00fa\u0097\u00a8\u0006\"\u000538571\u0012\u0011\bP\u0012\u0006\u0010\u0094\u00fb\u0097\u00a8\u0006\"\u000538572\u0012\u0011\bQ\u0012\u0006\u0010\u00e0\u00fc\u0097\u00a8\u0006\"\u000538393\u0012\u0011\bR\u0012\u0006\u0010\u0098\u00fd\u0097\u00a8\u0006\"\u000538394\u0012\u0011\bS\u0012\u0006\u0010\u00d3\u00fd\u0097\u00a8\u0006\"\u000538424\u0012\u0011\bT\u0012\u0006\u0010\u00fb\u00fd\u0097\u00a8\u0006\"\u000538396\u0012\u0011\bU\u0012\u0006\u0010\u0096\u00ff\u0097\u00a8\u0006\"\u000541928\u0012\u0011\bV\u0012\u0006\u0010\u00cd\u00ff\u0097\u00a8\u0006\"\u000541929\u0012\u0011\bW\u0012\u0006\u0010\u008b\u0081\u0098\u00a8\u0006\"\u000540543\u0012\u0011\bX\u0012\u0006\u0010\u009d\u0081\u0098\u00a8\u0006\"\u000541969\u0012\u0011\bY\u0012\u0006\u0010\u00a9\u0082\u0098\u00a8\u0006\"\u000540544\u0012\u0014\bZ\u0012\u0006\u0010\u00c3\u0082\u0098\u00a8\u0006\"\b16705477\u0012\u0011\b[\u0012\u0006\u0010\u0085\u0083\u0098\u00a8\u0006\"\u000540545\u0012\u0011\b\\\u0012\u0006\u0010\u00d0\u0083\u0098\u00a8\u0006\"\u000540546\u0012\u0011\b]\u0012\u0006\u0010\u0082\u0084\u0098\u00a8\u0006\"\u000540547\u0012\u0011\b^\u0012\u0006\u0010\u00cb\u0084\u0098\u00a8\u0006\"\u000540548\u0012\u0011\b_\u0012\u0006\u0010\u00ef\u0084\u0098\u00a8\u0006\"\u000540549\u0012\u0011\b`\u0012\u0006\u0010\u00a6\u0085\u0098\u00a8\u0006\"\u000540550\u0012\u0011\ba\u0012\u0006\u0010\u00f0\u0085\u0098\u00a8\u0006\"\u000540551\u0012\u0011\bb\u0012\u0006\u0010\u0094\u0087\u0098\u00a8\u0006\"\u000540552\u0012\u0011\bc\u0012\u0006\u0010\u00e4\u0087\u0098\u00a8\u0006\"\u000540553\u0012\u0011\bd\u0012\u0006\u0010\u00c5\u0088\u0098\u00a8\u0006\"\u000540554\u001a\b\u001a\u0006FXZX83 \u009c\u00e8\u0097\u00a8\u0006\"`\n/\n\u001015534-701ff27f-2\u0012\b15:01:00\u001a\b20230916 \u0000*\u00035470\u0000\u0012\u001d\r\u00db\u001f\u0013\u00c2\u0015m,\u0092\u00c2\u001d\u0000\u0000\u00c0@!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u008e?(\u009c\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FXZX83" + }, + { + "type": "con_recorrido", + "entity": "\n$4c599e09-658c-4832-95af-ee3e2d9007c8\u001a\u00c5\u0004\n/\n\u001015533-701ff27f-2\u0012\b14:31:00\u001a\b20230916 \u0000*\u00035470\u0000\u0012\u0011\bJ\u0012\u0006\u0010\u009b\u00e8\u0097\u00a8\u0006\"\u000538566\u0012\u0011\bK\u0012\u0006\u0010\u00bd\u00e8\u0097\u00a8\u0006\"\u000538567\u0012\u0011\bL\u0012\u0006\u0010\u00e9\u00e8\u0097\u00a8\u0006\"\u000538568\u0012\u0011\bM\u0012\u0006\u0010\u008d\u00e9\u0097\u00a8\u0006\"\u000538569\u0012\u0011\bN\u0012\u0006\u0010\u00b9\u00e9\u0097\u00a8\u0006\"\u000538570\u0012\u0011\bO\u0012\u0006\u0010\u00f3\u00e9\u0097\u00a8\u0006\"\u000538571\u0012\u0011\bP\u0012\u0006\u0010\u00a9\u00ea\u0097\u00a8\u0006\"\u000538572\u0012\u0011\bQ\u0012\u0006\u0010\u00d7\u00eb\u0097\u00a8\u0006\"\u000538393\u0012\u0011\bR\u0012\u0006\u0010\u0086\u00ec\u0097\u00a8\u0006\"\u000538394\u0012\u0011\bS\u0012\u0006\u0010\u00b5\u00ec\u0097\u00a8\u0006\"\u000538424\u0012\u0011\bT\u0012\u0006\u0010\u00d5\u00ec\u0097\u00a8\u0006\"\u000538396\u0012\u0011\bU\u0012\u0006\u0010\u00cc\u00ed\u0097\u00a8\u0006\"\u000541928\u0012\u0011\bV\u0012\u0006\u0010\u00f5\u00ed\u0097\u00a8\u0006\"\u000541929\u0012\u0011\bW\u0012\u0006\u0010\u00fd\u00ee\u0097\u00a8\u0006\"\u000540543\u0012\u0011\bX\u0012\u0006\u0010\u008a\u00ef\u0097\u00a8\u0006\"\u000541969\u0012\u0011\bY\u0012\u0006\u0010\u00ea\u00ef\u0097\u00a8\u0006\"\u000540544\u0012\u0014\bZ\u0012\u0006\u0010\u00fb\u00ef\u0097\u00a8\u0006\"\b16705477\u0012\u0011\b[\u0012\u0006\u0010\u00a7\u00f0\u0097\u00a8\u0006\"\u000540545\u0012\u0011\b\\\u0012\u0006\u0010\u00d7\u00f0\u0097\u00a8\u0006\"\u000540546\u0012\u0011\b]\u0012\u0006\u0010\u00f7\u00f0\u0097\u00a8\u0006\"\u000540547\u0012\u0011\b^\u0012\u0006\u0010\u00a5\u00f1\u0097\u00a8\u0006\"\u000540548\u0012\u0011\b_\u0012\u0006\u0010\u00bb\u00f1\u0097\u00a8\u0006\"\u000540549\u0012\u0011\b`\u0012\u0006\u0010\u00dc\u00f1\u0097\u00a8\u0006\"\u000540550\u0012\u0011\ba\u0012\u0006\u0010\u0089\u00f2\u0097\u00a8\u0006\"\u000540551\u0012\u0011\bb\u0012\u0006\u0010\u00e9\u00f2\u0097\u00a8\u0006\"\u000540552\u0012\u0011\bc\u0012\u0006\u0010\u0096\u00f3\u0097\u00a8\u0006\"\u000540553\u0012\u0011\bd\u0012\u0006\u0010\u00cd\u00f3\u0097\u00a8\u0006\"\u000540554\u001a\b\u001a\u0006FYBB70 \u0098\u00e8\u0097\u00a8\u0006\"`\n/\n\u001015533-701ff27f-2\u0012\b14:31:00\u001a\b20230916 \u0000*\u00035470\u0000\u0012\u001d\rD\u00e6\u0012\u00c2\u0015N<\u0092\u00c2\u001d\u0000\u0000\u0085C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0098\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FYBB70" + }, + { + "type": "con_recorrido", + "entity": "\n$18659654-c65f-4c0e-aa1d-845dc29e9b8e\u001a\u00d8\b\n/\n\u001015500-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00035470\u0001\u0012\u0011\b!\u0012\u0006\u0010\u00e0\u00e8\u0097\u00a8\u0006\"\u000538646\u0012\u0011\b\"\u0012\u0006\u0010\u0089\u00e9\u0097\u00a8\u0006\"\u000538632\u0012\u0011\b#\u0012\u0006\u0010\u00d4\u00e9\u0097\u00a8\u0006\"\u000538767\u0012\u0011\b$\u0012\u0006\u0010\u0099\u00ea\u0097\u00a8\u0006\"\u000538768\u0012\u0011\b%\u0012\u0006\u0010\u00c6\u00ea\u0097\u00a8\u0006\"\u000538769\u0012\u0011\b&\u0012\u0006\u0010\u00f4\u00ea\u0097\u00a8\u0006\"\u000549357\u0012\u0011\b'\u0012\u0006\u0010\u009d\u00eb\u0097\u00a8\u0006\"\u000538771\u0012\u0011\b(\u0012\u0006\u0010\u00c6\u00eb\u0097\u00a8\u0006\"\u000538668\u0012\u0011\b)\u0012\u0006\u0010\u00ac\u00ec\u0097\u00a8\u0006\"\u000538661\u0012\u0011\b*\u0012\u0006\u0010\u0082\u00ed\u0097\u00a8\u0006\"\u000538657\u0012\u0011\b+\u0012\u0006\u0010\u00be\u00ed\u0097\u00a8\u0006\"\u000538743\u0012\u0011\b,\u0012\u0006\u0010\u00f7\u00ed\u0097\u00a8\u0006\"\u000538652\u0012\u0011\b-\u0012\u0006\u0010\u00be\u00ee\u0097\u00a8\u0006\"\u000538721\u0012\u0011\b.\u0012\u0006\u0010\u00f5\u00ee\u0097\u00a8\u0006\"\u000538659\u0012\u0011\b/\u0012\u0006\u0010\u00c8\u00ef\u0097\u00a8\u0006\"\u000538674\u0012\u0011\b0\u0012\u0006\u0010\u0086\u00f0\u0097\u00a8\u0006\"\u000538649\u0012\u0011\b1\u0012\u0006\u0010\u008a\u00f1\u0097\u00a8\u0006\"\u000538735\u0012\u0011\b2\u0012\u0006\u0010\u00c1\u00f1\u0097\u00a8\u0006\"\u000542270\u0012\u0011\b3\u0012\u0006\u0010\u00f4\u00f1\u0097\u00a8\u0006\"\u000542271\u0012\u0011\b4\u0012\u0006\u0010\u00b8\u00f3\u0097\u00a8\u0006\"\u000538688\u0012\u0011\b5\u0012\u0006\u0010\u00e9\u00f3\u0097\u00a8\u0006\"\u000538673\u0012\u0011\b6\u0012\u0006\u0010\u00b5\u00f4\u0097\u00a8\u0006\"\u000539785\u0012\u0011\b7\u0012\u0006\u0010\u00dc\u00f4\u0097\u00a8\u0006\"\u000538664\u0012\u0011\b8\u0012\u0006\u0010\u008c\u00f5\u0097\u00a8\u0006\"\u000532631\u0012\u0011\b9\u0012\u0006\u0010\u00ce\u00f5\u0097\u00a8\u0006\"\u000532697\u0012\u0011\b:\u0012\u0006\u0010\u00fc\u00f6\u0097\u00a8\u0006\"\u000532699\u0012\u0011\b;\u0012\u0006\u0010\u00b5\u00f7\u0097\u00a8\u0006\"\u000542606\u0012\u0011\b<\u0012\u0006\u0010\u00dd\u00f7\u0097\u00a8\u0006\"\u000542607\u0012\u0011\b=\u0012\u0006\u0010\u0098\u00f8\u0097\u00a8\u0006\"\u000542608\u0012\u0011\b>\u0012\u0006\u0010\u00c8\u00f8\u0097\u00a8\u0006\"\u000549335\u0012\u0011\b?\u0012\u0006\u0010\u00fc\u00f8\u0097\u00a8\u0006\"\u000549336\u0012\u0013\b@\u0012\u0006\u0010\u00a7\u00f9\u0097\u00a8\u0006\"\u00074831075\u0012\u0011\bA\u0012\u0006\u0010\u00e0\u00f9\u0097\u00a8\u0006\"\u000537437\u0012\u0011\bB\u0012\u0006\u0010\u0092\u00fa\u0097\u00a8\u0006\"\u000549337\u0012\u0011\bC\u0012\u0006\u0010\u00bb\u00fa\u0097\u00a8\u0006\"\u000539661\u0012\u0011\bD\u0012\u0006\u0010\u00e7\u00fa\u0097\u00a8\u0006\"\u000539662\u0012\u0011\bE\u0012\u0006\u0010\u00a6\u00fb\u0097\u00a8\u0006\"\u000539663\u0012\u0011\bF\u0012\u0006\u0010\u00da\u00fb\u0097\u00a8\u0006\"\u000539664\u0012\u0011\bG\u0012\u0006\u0010\u008c\u00fc\u0097\u00a8\u0006\"\u000539665\u0012\u0011\bH\u0012\u0006\u0010\u00e8\u00fc\u0097\u00a8\u0006\"\u000542522\u0012\u0011\bI\u0012\u0006\u0010\u00fc\u00fc\u0097\u00a8\u0006\"\u000542523\u0012\u0011\bJ\u0012\u0006\u0010\u00a2\u00fd\u0097\u00a8\u0006\"\u000542524\u0012\u0011\bK\u0012\u0006\u0010\u00fe\u00fd\u0097\u00a8\u0006\"\u000542525\u0012\u0011\bL\u0012\u0006\u0010\u00a5\u00fe\u0097\u00a8\u0006\"\u000532700\u0012\u0011\bM\u0012\u0006\u0010\u00dd\u00fe\u0097\u00a8\u0006\"\u000536699\u0012\u0011\bN\u0012\u0006\u0010\u00fb\u00fe\u0097\u00a8\u0006\"\u000536700\u0012\u0011\bO\u0012\u0006\u0010\u00a3\u00ff\u0097\u00a8\u0006\"\u000536701\u0012\u0011\bP\u0012\u0006\u0010\u00be\u00ff\u0097\u00a8\u0006\"\u000536702\u0012\u0011\bQ\u0012\u0006\u0010\u00cf\u00ff\u0097\u00a8\u0006\"\u000536703\u0012\u0011\bR\u0012\u0006\u0010\u00f7\u00ff\u0097\u00a8\u0006\"\u000536704\u0012\u0011\bS\u0012\u0006\u0010\u009c\u0080\u0098\u00a8\u0006\"\u000536754\u0012\u0011\bT\u0012\u0006\u0010\u00d9\u0081\u0098\u00a8\u0006\"\u000539666\u0012\u0011\bU\u0012\u0006\u0010\u008b\u0082\u0098\u00a8\u0006\"\u000539667\u0012\u0011\bV\u0012\u0006\u0010\u0089\u0083\u0098\u00a8\u0006\"\u000536936\u0012\u0011\bW\u0012\u0006\u0010\u00ae\u0084\u0098\u00a8\u0006\"\u000549343\u001a\b\u001a\u0006RTZB58 \u00b8\u00e8\u0097\u00a8\u0006\"`\n/\n\u001015500-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00035470\u0001\u0012\u001d\rg\u00d9\u0012\u00c2\u0015\u00cf:\u0092\u00c2\u001d\u0000\u0000\u0006C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b8\u00e8\u0097\u00a8\u0006B\b\u001a\u0006RTZB58" + }, + { + "type": "con_recorrido", + "entity": "\n$abfd2798-82f7-48ba-867f-a4cfaf8dd07a\u001a\u009b\u000b\n/\n\u001015501-701ff27f-2\u0012\b15:30:00\u001a\b20230916 \u0000*\u00035470\u0001\u0012\u0011\b\u0010\u0012\u0006\u0010\u00af\u00e8\u0097\u00a8\u0006\"\u000538397\u0012\u0011\b\u0011\u0012\u0006\u0010\u00ec\u00e8\u0097\u00a8\u0006\"\u000538491\u0012\u0011\b\u0012\u0012\u0006\u0010\u008b\u00e9\u0097\u00a8\u0006\"\u000538424\u0012\u0011\b\u0013\u0012\u0006\u0010\u00bf\u00e9\u0097\u00a8\u0006\"\u000538498\u0012\u0011\b\u0014\u0012\u0006\u0010\u00e7\u00e9\u0097\u00a8\u0006\"\u000538393\u0012\u0011\b\u0015\u0012\u0006\u0010\u00fd\u00ea\u0097\u00a8\u0006\"\u000540928\u0012\u0011\b\u0016\u0012\u0006\u0010\u00a6\u00eb\u0097\u00a8\u0006\"\u000538572\u0012\u0011\b\u0017\u0012\u0006\u0010\u00e1\u00eb\u0097\u00a8\u0006\"\u000538571\u0012\u0011\b\u0018\u0012\u0006\u0010\u00ef\u00eb\u0097\u00a8\u0006\"\u000537447\u0012\u0011\b\u0019\u0012\u0006\u0010\u0084\u00ec\u0097\u00a8\u0006\"\u000540929\u0012\u0011\b\u001a\u0012\u0006\u0010\u00c4\u00ec\u0097\u00a8\u0006\"\u000540946\u0012\u0011\b\u001b\u0012\u0006\u0010\u00fb\u00ec\u0097\u00a8\u0006\"\u000540947\u0012\u0011\b\u001c\u0012\u0006\u0010\u00fd\u00ed\u0097\u00a8\u0006\"\u000542853\u0012\u0011\b\u001d\u0012\u0006\u0010\u00ff\u00ee\u0097\u00a8\u0006\"\u000542855\u0012\u0011\b\u001e\u0012\u0006\u0010\u00a0\u00ef\u0097\u00a8\u0006\"\u000541975\u0012\u0011\b\u001f\u0012\u0006\u0010\u00bd\u00ef\u0097\u00a8\u0006\"\u000542857\u0012\u0011\b \u0012\u0006\u0010\u00dc\u00ef\u0097\u00a8\u0006\"\u000538697\u0012\u0011\b!\u0012\u0006\u0010\u0087\u00f0\u0097\u00a8\u0006\"\u000538646\u0012\u0011\b\"\u0012\u0006\u0010\u00ad\u00f0\u0097\u00a8\u0006\"\u000538632\u0012\u0011\b#\u0012\u0006\u0010\u00f2\u00f0\u0097\u00a8\u0006\"\u000538767\u0012\u0011\b$\u0012\u0006\u0010\u00b2\u00f1\u0097\u00a8\u0006\"\u000538768\u0012\u0011\b%\u0012\u0006\u0010\u00dd\u00f1\u0097\u00a8\u0006\"\u000538769\u0012\u0011\b&\u0012\u0006\u0010\u0088\u00f2\u0097\u00a8\u0006\"\u000549357\u0012\u0011\b'\u0012\u0006\u0010\u00b1\u00f2\u0097\u00a8\u0006\"\u000538771\u0012\u0011\b(\u0012\u0006\u0010\u00d8\u00f2\u0097\u00a8\u0006\"\u000538668\u0012\u0011\b)\u0012\u0006\u0010\u00bc\u00f3\u0097\u00a8\u0006\"\u000538661\u0012\u0011\b*\u0012\u0006\u0010\u0092\u00f4\u0097\u00a8\u0006\"\u000538657\u0012\u0011\b+\u0012\u0006\u0010\u00cf\u00f4\u0097\u00a8\u0006\"\u000538743\u0012\u0011\b,\u0012\u0006\u0010\u008a\u00f5\u0097\u00a8\u0006\"\u000538652\u0012\u0011\b-\u0012\u0006\u0010\u00d3\u00f5\u0097\u00a8\u0006\"\u000538721\u0012\u0011\b.\u0012\u0006\u0010\u008d\u00f6\u0097\u00a8\u0006\"\u000538659\u0012\u0011\b/\u0012\u0006\u0010\u00e6\u00f6\u0097\u00a8\u0006\"\u000538674\u0012\u0011\b0\u0012\u0006\u0010\u00a8\u00f7\u0097\u00a8\u0006\"\u000538649\u0012\u0011\b1\u0012\u0006\u0010\u00ba\u00f8\u0097\u00a8\u0006\"\u000538735\u0012\u0011\b2\u0012\u0006\u0010\u00f8\u00f8\u0097\u00a8\u0006\"\u000542270\u0012\u0011\b3\u0012\u0006\u0010\u00b1\u00f9\u0097\u00a8\u0006\"\u000542271\u0012\u0011\b4\u0012\u0006\u0010\u0094\u00fb\u0097\u00a8\u0006\"\u000538688\u0012\u0011\b5\u0012\u0006\u0010\u00ce\u00fb\u0097\u00a8\u0006\"\u000538673\u0012\u0011\b6\u0012\u0006\u0010\u00a9\u00fc\u0097\u00a8\u0006\"\u000539785\u0012\u0011\b7\u0012\u0006\u0010\u00d7\u00fc\u0097\u00a8\u0006\"\u000538664\u0012\u0011\b8\u0012\u0006\u0010\u0092\u00fd\u0097\u00a8\u0006\"\u000532631\u0012\u0011\b9\u0012\u0006\u0010\u00e4\u00fd\u0097\u00a8\u0006\"\u000532697\u0012\u0011\b:\u0012\u0006\u0010\u00be\u00ff\u0097\u00a8\u0006\"\u000532699\u0012\u0011\b;\u0012\u0006\u0010\u0087\u0080\u0098\u00a8\u0006\"\u000542606\u0012\u0011\b<\u0012\u0006\u0010\u00bb\u0080\u0098\u00a8\u0006\"\u000542607\u0012\u0011\b=\u0012\u0006\u0010\u0087\u0081\u0098\u00a8\u0006\"\u000542608\u0012\u0011\b>\u0012\u0006\u0010\u00c5\u0081\u0098\u00a8\u0006\"\u000549335\u0012\u0011\b?\u0012\u0006\u0010\u008a\u0082\u0098\u00a8\u0006\"\u000549336\u0012\u0013\b@\u0012\u0006\u0010\u00c4\u0082\u0098\u00a8\u0006\"\u00074831075\u0012\u0011\bA\u0012\u0006\u0010\u0091\u0083\u0098\u00a8\u0006\"\u000537437\u0012\u0011\bB\u0012\u0006\u0010\u00d4\u0083\u0098\u00a8\u0006\"\u000549337\u0012\u0011\bC\u0012\u0006\u0010\u008c\u0084\u0098\u00a8\u0006\"\u000539661\u0012\u0011\bD\u0012\u0006\u0010\u00c9\u0084\u0098\u00a8\u0006\"\u000539662\u0012\u0011\bE\u0012\u0006\u0010\u00a1\u0085\u0098\u00a8\u0006\"\u000539663\u0012\u0011\bF\u0012\u0006\u0010\u00e8\u0085\u0098\u00a8\u0006\"\u000539664\u0012\u0011\bG\u0012\u0006\u0010\u00af\u0086\u0098\u00a8\u0006\"\u000539665\u0012\u0011\bH\u0012\u0006\u0010\u00b2\u0087\u0098\u00a8\u0006\"\u000542522\u0012\u0011\bI\u0012\u0006\u0010\u00cf\u0087\u0098\u00a8\u0006\"\u000542523\u0012\u0011\bJ\u0012\u0006\u0010\u0087\u0088\u0098\u00a8\u0006\"\u000542524\u0012\u0011\bK\u0012\u0006\u0010\u008d\u0089\u0098\u00a8\u0006\"\u000542525\u0012\u0011\bL\u0012\u0006\u0010\u00c6\u0089\u0098\u00a8\u0006\"\u000532700\u0012\u0011\bM\u0012\u0006\u0010\u0099\u008a\u0098\u00a8\u0006\"\u000536699\u0012\u0011\bN\u0012\u0006\u0010\u00c5\u008a\u0098\u00a8\u0006\"\u000536700\u0012\u0011\bO\u0012\u0006\u0010\u0082\u008b\u0098\u00a8\u0006\"\u000536701\u0012\u0011\bP\u0012\u0006\u0010\u00ab\u008b\u0098\u00a8\u0006\"\u000536702\u0012\u0011\bQ\u0012\u0006\u0010\u00c5\u008b\u0098\u00a8\u0006\"\u000536703\u0012\u0011\bR\u0012\u0006\u0010\u0081\u008c\u0098\u00a8\u0006\"\u000536704\u0012\u0011\bS\u0012\u0006\u0010\u00ba\u008c\u0098\u00a8\u0006\"\u000536754\u0012\u0011\bT\u0012\u0006\u0010\u00e0\u008e\u0098\u00a8\u0006\"\u000539666\u0012\u0011\bU\u0012\u0006\u0010\u00af\u008f\u0098\u00a8\u0006\"\u000539667\u0012\u0011\bV\u0012\u0006\u0010\u00fa\u0090\u0098\u00a8\u0006\"\u000536936\u0012\u0011\bW\u0012\u0006\u0010\u0088\u0093\u0098\u00a8\u0006\"\u000549343\u001a\b\u001a\u0006WE9167 \u008e\u00e8\u0097\u00a8\u0006\"`\n/\n\u001015501-701ff27f-2\u0012\b15:30:00\u001a\b20230916 \u0000*\u00035470\u0001\u0012\u001d\r\u00ea\u00dd\u0012\u00c2\u0015\u00c3C\u0092\u00c2\u001d\u0000\u0000\u0012\u0006\u0010\u00a7\u008f\u0098\u00a8\u0006\"\u000539620\u0012\u0011\b?\u0012\u0006\u0010\u00c6\u0090\u0098\u00a8\u0006\"\u000539621\u0012\u0011\b@\u0012\u0006\u0010\u00b8\u0091\u0098\u00a8\u0006\"\u000538281\u0012\u0011\bA\u0012\u0006\u0010\u00bf\u0092\u0098\u00a8\u0006\"\u000537506\u0012\u0011\bB\u0012\u0006\u0010\u00a4\u0093\u0098\u00a8\u0006\"\u000545068\u0012\u0011\bC\u0012\u0006\u0010\u00d6\u0095\u0098\u00a8\u0006\"\u000537480\u0012\u0011\bD\u0012\u0006\u0010\u0082\u0097\u0098\u00a8\u0006\"\u000537477\u0012\u0011\bE\u0012\u0006\u0010\u00d5\u0098\u0098\u00a8\u0006\"\u000540848\u0012\u0011\bF\u0012\u0006\u0010\u00dc\u009a\u0098\u00a8\u0006\"\u00052-Apr\u0012\u0011\bG\u0012\u0006\u0010\u009a\u009c\u0098\u00a8\u0006\"\u000539728\u0012\u0011\bH\u0012\u0006\u0010\u00f1\u009e\u0098\u00a8\u0006\"\u000539729\u0012\u0011\bI\u0012\u0006\u0010\u00b7\u009f\u0098\u00a8\u0006\"\u000539730\u0012\u0011\bJ\u0012\u0006\u0010\u00d8\u00a2\u0098\u00a8\u0006\"\u000542200\u0012\u0011\bK\u0012\u0006\u0010\u008a\u00a4\u0098\u00a8\u0006\"\u000542203\u0012\u0011\bL\u0012\u0006\u0010\u0089\u00a6\u0098\u00a8\u0006\"\u000542204\u0012\u0011\bM\u0012\u0006\u0010\u0099\u00a7\u0098\u00a8\u0006\"\u000542205\u0012\u0011\bN\u0012\u0006\u0010\u00c9\u00a9\u0098\u00a8\u0006\"\u000542201\u0012\u0011\bO\u0012\u0006\u0010\u009f\u00b4\u0098\u00a8\u0006\"\u000542206\u0012\u0011\bP\u0012\u0006\u0010\u0085\u00b7\u0098\u00a8\u0006\"\u000542207\u0012\u0011\bQ\u0012\u0006\u0010\u00c0\u00ba\u0098\u00a8\u0006\"\u000542208\u0012\u0011\bR\u0012\u0006\u0010\u00dc\u00c1\u0098\u00a8\u0006\"\u000542564\u0012\u0011\bS\u0012\u0006\u0010\u00fc\u00c8\u0098\u00a8\u0006\"\u000542214\u0012\u0011\bT\u0012\u0006\u0010\u00f3\u00d1\u0098\u00a8\u0006\"\u000542209\u0012\u0011\bU\u0012\u0006\u0010\u0083\u00dd\u0098\u00a8\u0006\"\u000542210\u0012\u0011\bV\u0012\u0006\u0010\u00d1\u00f3\u0098\u00a8\u0006\"\u000542215\u0012\u0011\bW\u0012\u0006\u0010\u0096\u00f8\u0098\u00a8\u0006\"\u000542216\u0012\u0011\bX\u0012\u0006\u0010\u00db\u00fe\u0098\u00a8\u0006\"\u000542217\u0012\u0011\bY\u0012\u0006\u0010\u0092\u008c\u0099\u00a8\u0006\"\u000542218\u0012\u0011\bZ\u0012\u0006\u0010\u009e\u0093\u0099\u00a8\u0006\"\u000542219\u0012\u0011\b[\u0012\u0006\u0010\u009c\u00ab\u0099\u00a8\u0006\"\u000542220\u0012\u0011\b\\\u0012\u0006\u0010\u00fa\u00b7\u0099\u00a8\u0006\"\u000542221\u0012\u0011\b]\u0012\u0006\u0010\u0082\u00cf\u0099\u00a8\u0006\"\u000542222\u0012\u0011\b^\u0012\u0006\u0010\u00c5\u00ee\u0099\u00a8\u0006\"\u000542223\u0012\u0011\b_\u0012\u0006\u0010\u00cb\u00fa\u0099\u00a8\u0006\"\u000542224\u0012\u0011\b`\u0012\u0006\u0010\u00ef\u00a9\u009a\u00a8\u0006\"\u000542225\u0012\u0011\ba\u0012\u0006\u0010\u00d0\u00de\u009a\u00a8\u0006\"\u000542226\u0012\u0011\bb\u0012\u0006\u0010\u0097\u009d\u009b\u00a8\u0006\"\u000542227\u0012\u0011\bc\u0012\u0006\u0010\u00ab\u0099\u009c\u00a8\u0006\"\u000542228\u0012\u0011\bd\u0012\u0006\u0010\u00da\u0086\u009d\u00a8\u0006\"\u000542229\u0012\u0011\be\u0012\u0006\u0010\u00e0\u00ad\u00a0\u00a8\u0006\"\u000542230\u0012\u0011\bf\u0012\u0006\u0010\u00e4\u0087\u00a4\u00a8\u0006\"\u000542231\u0012\u0011\bg\u0012\u0006\u0010\u00c0\u0092\u00de\u00a8\u0006\"\u000542232\u001a\b\u001a\u0006CDSZ14 \u00c6\u00e8\u0097\u00a8\u0006\"`\n/\n\u001015579-701ff27f-2\u0012\b15:22:00\u001a\b20230916 \u0000*\u00035490\u0001\u0012\u001d\r\u00e9\u00d8\u0012\u00c2\u0015\u00bcF\u0092\u00c2\u001d\u0000\u0000\bC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0080@(\u00c6\u00e8\u0097\u00a8\u0006B\b\u001a\u0006CDSZ14" + }, + { + "type": "con_recorrido", + "entity": "\n$50c3aba5-0be9-4791-98b4-8b95f05d81ae\u001a\u00d0\u000e\n/\n\u001015578-701ff27f-2\u0012\b15:02:00\u001a\b20230916 \u0000*\u00035490\u0001\u0012\u0011\b\u0014\u0012\u0006\u0010\u00ba\u00e8\u0097\u00a8\u0006\"\u000540932\u0012\u0011\b\u0015\u0012\u0006\u0010\u00fa\u00e8\u0097\u00a8\u0006\"\u000542853\u0012\u0011\b\u0016\u0012\u0006\u0010\u00cc\u00e9\u0097\u00a8\u0006\"\u000542854\u0012\u0011\b\u0017\u0012\u0006\u0010\u00fb\u00e9\u0097\u00a8\u0006\"\u000538563\u0012\u0011\b\u0018\u0012\u0006\u0010\u008d\u00ea\u0097\u00a8\u0006\"\u000542855\u0012\u0011\b\u0019\u0012\u0006\u0010\u00af\u00ea\u0097\u00a8\u0006\"\u000541975\u0012\u0011\b\u001a\u0012\u0006\u0010\u00c2\u00ea\u0097\u00a8\u0006\"\u000542857\u0012\u0011\b\u001b\u0012\u0006\u0010\u00f1\u00ea\u0097\u00a8\u0006\"\u000538697\u0012\u0011\b\u001c\u0012\u0006\u0010\u0096\u00eb\u0097\u00a8\u0006\"\u000538646\u0012\u0011\b\u001d\u0012\u0006\u0010\u00bb\u00eb\u0097\u00a8\u0006\"\u000538632\u0012\u0011\b\u001e\u0012\u0006\u0010\u0087\u00ec\u0097\u00a8\u0006\"\u000538767\u0012\u0011\b\u001f\u0012\u0006\u0010\u00cc\u00ec\u0097\u00a8\u0006\"\u000538768\u0012\u0011\b \u0012\u0006\u0010\u00f6\u00ec\u0097\u00a8\u0006\"\u000538769\u0012\u0011\b!\u0012\u0006\u0010\u0098\u00ed\u0097\u00a8\u0006\"\u000549357\u0012\u0011\b\"\u0012\u0006\u0010\u00c4\u00ed\u0097\u00a8\u0006\"\u000538771\u0012\u0011\b#\u0012\u0006\u0010\u00ef\u00ed\u0097\u00a8\u0006\"\u000538668\u0012\u0011\b$\u0012\u0006\u0010\u00cf\u00ee\u0097\u00a8\u0006\"\u000538661\u0012\u0011\b%\u0012\u0006\u0010\u0098\u00ef\u0097\u00a8\u0006\"\u000538657\u0012\u0011\b&\u0012\u0006\u0010\u00db\u00ef\u0097\u00a8\u0006\"\u000538743\u0012\u0011\b'\u0012\u0006\u0010\u0095\u00f0\u0097\u00a8\u0006\"\u000538652\u0012\u0011\b(\u0012\u0006\u0010\u00da\u00f0\u0097\u00a8\u0006\"\u000538721\u0012\u0011\b)\u0012\u0006\u0010\u0091\u00f1\u0097\u00a8\u0006\"\u000538659\u0012\u0011\b*\u0012\u0006\u0010\u00e3\u00f1\u0097\u00a8\u0006\"\u000538674\u0012\u0011\b+\u0012\u0006\u0010\u00a1\u00f2\u0097\u00a8\u0006\"\u000538649\u0012\u0011\b,\u0012\u0006\u0010\u00f0\u00f2\u0097\u00a8\u0006\"\u000538718\u0012\u0011\b-\u0012\u0006\u0010\u00a9\u00f3\u0097\u00a8\u0006\"\u000538735\u0012\u0011\b.\u0012\u0006\u0010\u00e0\u00f3\u0097\u00a8\u0006\"\u000542270\u0012\u0011\b/\u0012\u0006\u0010\u0095\u00f4\u0097\u00a8\u0006\"\u000542271\u0012\u0013\b0\u0012\u0006\u0010\u00d6\u00f4\u0097\u00a8\u0006\"\u00074838438\u0012\u0011\b1\u0012\u0006\u0010\u00ed\u00f5\u0097\u00a8\u0006\"\u000544896\u0012\u0011\b2\u0012\u0006\u0010\u009f\u00f6\u0097\u00a8\u0006\"\u000544897\u0012\u0011\b3\u0012\u0006\u0010\u00eb\u00f6\u0097\u00a8\u0006\"\u000544898\u0012\u0011\b4\u0012\u0006\u0010\u00a1\u00f8\u0097\u00a8\u0006\"\u000540993\u0012\u0011\b5\u0012\u0006\u0010\u00d6\u00fc\u0097\u00a8\u0006\"\u000540995\u0012\u0011\b6\u0012\u0006\u0010\u00bf\u00fd\u0097\u00a8\u0006\"\u000540996\u0012\u0011\b7\u0012\u0006\u0010\u009c\u00fe\u0097\u00a8\u0006\"\u000540997\u0012\u0011\b8\u0012\u0006\u0010\u00e8\u00fe\u0097\u00a8\u0006\"\u000539614\u0012\u0011\b9\u0012\u0006\u0010\u00a7\u00ff\u0097\u00a8\u0006\"\u000539615\u0012\u0011\b:\u0012\u0006\u0010\u00e8\u00ff\u0097\u00a8\u0006\"\u000539616\u0012\u0011\b;\u0012\u0006\u0010\u00b3\u0080\u0098\u00a8\u0006\"\u000539617\u0012\u0011\b<\u0012\u0006\u0010\u0083\u0081\u0098\u00a8\u0006\"\u000539618\u0012\u0011\b=\u0012\u0006\u0010\u00c4\u0081\u0098\u00a8\u0006\"\u000539619\u0012\u0011\b>\u0012\u0006\u0010\u00fb\u0081\u0098\u00a8\u0006\"\u000539620\u0012\u0011\b?\u0012\u0006\u0010\u00e2\u0082\u0098\u00a8\u0006\"\u000539621\u0012\u0011\b@\u0012\u0006\u0010\u00aa\u0083\u0098\u00a8\u0006\"\u000538281\u0012\u0011\bA\u0012\u0006\u0010\u00ff\u0083\u0098\u00a8\u0006\"\u000537506\u0012\u0011\bB\u0012\u0006\u0010\u00bf\u0084\u0098\u00a8\u0006\"\u000545068\u0012\u0011\bC\u0012\u0006\u0010\u00fb\u0085\u0098\u00a8\u0006\"\u000537480\u0012\u0011\bD\u0012\u0006\u0010\u00e2\u0086\u0098\u00a8\u0006\"\u000537477\u0012\u0011\bE\u0012\u0006\u0010\u00df\u0087\u0098\u00a8\u0006\"\u000540848\u0012\u0011\bF\u0012\u0006\u0010\u00f8\u0088\u0098\u00a8\u0006\"\u00052-Apr\u0012\u0011\bG\u0012\u0006\u0010\u00e5\u0089\u0098\u00a8\u0006\"\u000539728\u0012\u0011\bH\u0012\u0006\u0010\u00a6\u008b\u0098\u00a8\u0006\"\u000539729\u0012\u0011\bI\u0012\u0006\u0010\u00cc\u008b\u0098\u00a8\u0006\"\u000539730\u0012\u0011\bJ\u0012\u0006\u0010\u00af\u008d\u0098\u00a8\u0006\"\u000542200\u0012\u0011\bK\u0012\u0006\u0010\u008d\u008e\u0098\u00a8\u0006\"\u000542203\u0012\u0011\bL\u0012\u0006\u0010\u0092\u008f\u0098\u00a8\u0006\"\u000542204\u0012\u0011\bM\u0012\u0006\u0010\u00dd\u008f\u0098\u00a8\u0006\"\u000542205\u0012\u0011\bN\u0012\u0006\u0010\u00f7\u0090\u0098\u00a8\u0006\"\u000542201\u0012\u0011\bO\u0012\u0006\u0010\u0087\u0096\u0098\u00a8\u0006\"\u000542206\u0012\u0011\bP\u0012\u0006\u0010\u00a9\u0097\u0098\u00a8\u0006\"\u000542207\u0012\u0011\bQ\u0012\u0006\u0010\u00ed\u0098\u0098\u00a8\u0006\"\u000542208\u0012\u0011\bR\u0012\u0006\u0010\u00f5\u009b\u0098\u00a8\u0006\"\u000542564\u0012\u0011\bS\u0012\u0006\u0010\u00e9\u009e\u0098\u00a8\u0006\"\u000542214\u0012\u0011\bT\u0012\u0006\u0010\u0098\u00a2\u0098\u00a8\u0006\"\u000542209\u0012\u0011\bU\u0012\u0006\u0010\u008b\u00a6\u0098\u00a8\u0006\"\u000542210\u0012\u0011\bV\u0012\u0006\u0010\u0095\u00ad\u0098\u00a8\u0006\"\u000542215\u0012\u0011\bW\u0012\u0006\u0010\u00bb\u00ae\u0098\u00a8\u0006\"\u000542216\u0012\u0011\bX\u0012\u0006\u0010\u00a2\u00b0\u0098\u00a8\u0006\"\u000542217\u0012\u0011\bY\u0012\u0006\u0010\u00e1\u00b3\u0098\u00a8\u0006\"\u000542218\u0012\u0011\bZ\u0012\u0006\u0010\u00bf\u00b5\u0098\u00a8\u0006\"\u000542219\u0012\u0011\b[\u0012\u0006\u0010\u00ee\u00ba\u0098\u00a8\u0006\"\u000542220\u0012\u0011\b\\\u0012\u0006\u0010\u00b7\u00bd\u0098\u00a8\u0006\"\u000542221\u0012\u0011\b]\u0012\u0006\u0010\u00d8\u00c1\u0098\u00a8\u0006\"\u000542222\u0012\u0011\b^\u0012\u0006\u0010\u00e3\u00c6\u0098\u00a8\u0006\"\u000542223\u0012\u0011\b_\u0012\u0006\u0010\u00c3\u00c8\u0098\u00a8\u0006\"\u000542224\u0012\u0011\b`\u0012\u0006\u0010\u00cc\u00ce\u0098\u00a8\u0006\"\u000542225\u0012\u0011\ba\u0012\u0006\u0010\u0090\u00d4\u0098\u00a8\u0006\"\u000542226\u0012\u0011\bb\u0012\u0006\u0010\u00ba\u00d9\u0098\u00a8\u0006\"\u000542227\u0012\u0011\bc\u0012\u0006\u0010\u00ac\u00e1\u0098\u00a8\u0006\"\u000542228\u0012\u0011\bd\u0012\u0006\u0010\u00b0\u00e6\u0098\u00a8\u0006\"\u000542229\u0012\u0011\be\u0012\u0006\u0010\u00d6\u00f1\u0098\u00a8\u0006\"\u000542230\u0012\u0011\bf\u0012\u0006\u0010\u00e9\u00f7\u0098\u00a8\u0006\"\u000542231\u0012\u0011\bg\u0012\u0006\u0010\u0092\u0085\u0099\u00a8\u0006\"\u000542232\u0012\u0011\bh\u0012\u0006\u0010\u00ce\u0096\u0099\u00a8\u0006\"\u000542233\u0012\u0011\bi\u0012\u0006\u0010\u0083\u00a0\u0099\u00a8\u0006\"\u000542234\u0012\u0011\bj\u0012\u0006\u0010\u00a0\u00bc\u0099\u00a8\u0006\"\u000542211\u0012\u0011\bk\u0012\u0006\u0010\u0089\u00d9\u0099\u00a8\u0006\"\u000591142\u0012\u0011\bl\u0012\u0006\u0010\u00bd\u00f6\u0099\u00a8\u0006\"\u000591143\u0012\u0011\bm\u0012\u0006\u0010\u008a\u0098\u009a\u00a8\u0006\"\u000591144\u0012\u0011\bn\u0012\u0006\u0010\u0087\u00d2\u009a\u00a8\u0006\"\u000591145\u0012\u0011\bo\u0012\u0006\u0010\u009d\u009c\u009b\u00a8\u0006\"\u000534560\u0012\u0011\bp\u0012\u0006\u0010\u00ce\u00d7\u009b\u00a8\u0006\"\u000542273\u0012\u0011\bq\u0012\u0006\u0010\u00e6\u00e4\u009b\u00a8\u0006\"\u000534415\u0012\u0011\br\u0012\u0006\u0010\u00c3\u00dc\u009d\u00a8\u0006\"\u000542077\u001a\b\u001a\u0006DFGG76 \u00eb\u00e7\u0097\u00a8\u0006\"`\n/\n\u001015578-701ff27f-2\u0012\b15:02:00\u001a\b20230916 \u0000*\u00035490\u0001\u0012\u001d\r\u0083\u00e5\u0012\u00c2\u00153=\u0092\u00c2\u001d\u0000\u0000\u00f0B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0080@(\u00c5\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DFGG76" + }, + { + "type": "con_recorrido", + "entity": "\n$260ad30b-cfbc-4479-ae1d-547c95996440\u001a\u009d\b\n/\n\u001015576-701ff27f-2\u0012\b14:22:00\u001a\b20230916 \u0000*\u00035490\u0001\u0012\u0011\b?\u0012\u0006\u0010\u00e7\u00e8\u0097\u00a8\u0006\"\u000539621\u0012\u0011\b@\u0012\u0006\u0010\u009a\u00e9\u0097\u00a8\u0006\"\u000538281\u0012\u0011\bA\u0012\u0006\u0010\u00d5\u00e9\u0097\u00a8\u0006\"\u000537506\u0012\u0011\bB\u0012\u0006\u0010\u00ff\u00e9\u0097\u00a8\u0006\"\u000545068\u0012\u0011\bC\u0012\u0006\u0010\u00f6\u00ea\u0097\u00a8\u0006\"\u000537480\u0012\u0011\bD\u0012\u0006\u0010\u00b5\u00eb\u0097\u00a8\u0006\"\u000537477\u0012\u0011\bE\u0012\u0006\u0010\u00fd\u00eb\u0097\u00a8\u0006\"\u000540848\u0012\u0011\bF\u0012\u0006\u0010\u00d2\u00ec\u0097\u00a8\u0006\"\u00052-Apr\u0012\u0011\bG\u0012\u0006\u0010\u008c\u00ed\u0097\u00a8\u0006\"\u000539728\u0012\u0011\bH\u0012\u0006\u0010\u00ed\u00ed\u0097\u00a8\u0006\"\u000539729\u0012\u0011\bI\u0012\u0006\u0010\u0080\u00ee\u0097\u00a8\u0006\"\u000539730\u0012\u0011\bJ\u0012\u0006\u0010\u00ea\u00ee\u0097\u00a8\u0006\"\u000542200\u0012\u0011\bK\u0012\u0006\u0010\u0095\u00ef\u0097\u00a8\u0006\"\u000542203\u0012\u0011\bL\u0012\u0006\u0010\u00cf\u00ef\u0097\u00a8\u0006\"\u000542204\u0012\u0011\bM\u0012\u0006\u0010\u00ee\u00ef\u0097\u00a8\u0006\"\u000542205\u0012\u0011\bN\u0012\u0006\u0010\u00ae\u00f0\u0097\u00a8\u0006\"\u000542201\u0012\u0011\bO\u0012\u0006\u0010\u00a1\u00f2\u0097\u00a8\u0006\"\u000542206\u0012\u0011\bP\u0012\u0006\u0010\u00d8\u00f2\u0097\u00a8\u0006\"\u000542207\u0012\u0011\bQ\u0012\u0006\u0010\u0098\u00f3\u0097\u00a8\u0006\"\u000542208\u0012\u0011\bR\u0012\u0006\u0010\u008f\u00f4\u0097\u00a8\u0006\"\u000542564\u0012\u0011\bS\u0012\u0006\u0010\u00f9\u00f4\u0097\u00a8\u0006\"\u000542214\u0012\u0011\bT\u0012\u0006\u0010\u00ea\u00f5\u0097\u00a8\u0006\"\u000542209\u0012\u0011\bU\u0012\u0006\u0010\u00e2\u00f6\u0097\u00a8\u0006\"\u000542210\u0012\u0011\bV\u0012\u0006\u0010\u00a5\u00f8\u0097\u00a8\u0006\"\u000542215\u0012\u0011\bW\u0012\u0006\u0010\u00c6\u00f8\u0097\u00a8\u0006\"\u000542216\u0012\u0011\bX\u0012\u0006\u0010\u00f2\u00f8\u0097\u00a8\u0006\"\u000542217\u0012\u0011\bY\u0012\u0006\u0010\u00c4\u00f9\u0097\u00a8\u0006\"\u000542218\u0012\u0011\bZ\u0012\u0006\u0010\u00eb\u00f9\u0097\u00a8\u0006\"\u000542219\u0012\u0011\b[\u0012\u0006\u0010\u00db\u00fa\u0097\u00a8\u0006\"\u000542220\u0012\u0011\b\\\u0012\u0006\u0010\u008e\u00fb\u0097\u00a8\u0006\"\u000542221\u0012\u0011\b]\u0012\u0006\u0010\u00dc\u00fb\u0097\u00a8\u0006\"\u000542222\u0012\u0011\b^\u0012\u0006\u0010\u00b4\u00fc\u0097\u00a8\u0006\"\u000542223\u0012\u0011\b_\u0012\u0006\u0010\u00d1\u00fc\u0097\u00a8\u0006\"\u000542224\u0012\u0011\b`\u0012\u0006\u0010\u00af\u00fd\u0097\u00a8\u0006\"\u000542225\u0012\u0011\ba\u0012\u0006\u0010\u00fe\u00fd\u0097\u00a8\u0006\"\u000542226\u0012\u0011\bb\u0012\u0006\u0010\u00c4\u00fe\u0097\u00a8\u0006\"\u000542227\u0012\u0011\bc\u0012\u0006\u0010\u00a5\u00ff\u0097\u00a8\u0006\"\u000542228\u0012\u0011\bd\u0012\u0006\u0010\u00dd\u00ff\u0097\u00a8\u0006\"\u000542229\u0012\u0011\be\u0012\u0006\u0010\u00d1\u0080\u0098\u00a8\u0006\"\u000542230\u0012\u0011\bf\u0012\u0006\u0010\u008a\u0081\u0098\u00a8\u0006\"\u000542231\u0012\u0011\bg\u0012\u0006\u0010\u00fa\u0081\u0098\u00a8\u0006\"\u000542232\u0012\u0011\bh\u0012\u0006\u0010\u00f8\u0082\u0098\u00a8\u0006\"\u000542233\u0012\u0011\bi\u0012\u0006\u0010\u00b4\u0083\u0098\u00a8\u0006\"\u000542234\u0012\u0011\bj\u0012\u0006\u0010\u00ce\u0084\u0098\u00a8\u0006\"\u000542211\u0012\u0011\bk\u0012\u0006\u0010\u00cc\u0085\u0098\u00a8\u0006\"\u000591142\u0012\u0011\bl\u0012\u0006\u0010\u00b4\u0086\u0098\u00a8\u0006\"\u000591143\u0012\u0011\bm\u0012\u0006\u0010\u0097\u0087\u0098\u00a8\u0006\"\u000591144\u0012\u0011\bn\u0012\u0006\u0010\u009b\u0088\u0098\u00a8\u0006\"\u000591145\u0012\u0011\bo\u0012\u0006\u0010\u0096\u0089\u0098\u00a8\u0006\"\u000534560\u0012\u0011\bp\u0012\u0006\u0010\u00e0\u0089\u0098\u00a8\u0006\"\u000542273\u0012\u0011\bq\u0012\u0006\u0010\u00ee\u0089\u0098\u00a8\u0006\"\u000534415\u0012\u0011\br\u0012\u0006\u0010\u00a5\u008b\u0098\u00a8\u0006\"\u000542077\u001a\b\u001a\u0006DTRK63 \u00c3\u00e8\u0097\u00a8\u0006\"`\n/\n\u001015576-701ff27f-2\u0012\b14:22:00\u001a\b20230916 \u0000*\u00035490\u0001\u0012\u001d\r\u00edG\u0013\u00c2\u0015\u00a1\u0016\u0092\u00c2\u001d\u0000\u0000\u001cC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0014B(\u00c3\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DTRK63" + }, + { + "type": "con_recorrido", + "entity": "\n$8330168b-afaf-4925-8963-c50c5715f42a\u001a\u00c2\u0004\n/\n\u001015630-701ff27f-2\u0012\b14:15:00\u001a\b20230916 \u0000*\u00035490\u0000\u0012\u0011\b`\u0012\u0006\u0010\u00de\u00e8\u0097\u00a8\u0006\"\u000542857\u0012\u0011\ba\u0012\u0006\u0010\u00ff\u00e8\u0097\u00a8\u0006\"\u000538562\u0012\u0011\bb\u0012\u0006\u0010\u00b0\u00e9\u0097\u00a8\u0006\"\u000538563\u0012\u0011\bc\u0012\u0006\u0010\u00d8\u00e9\u0097\u00a8\u0006\"\u000538564\u0012\u0011\bd\u0012\u0006\u0010\u00b9\u00ea\u0097\u00a8\u0006\"\u000538565\u0012\u0011\be\u0012\u0006\u0010\u00f8\u00ea\u0097\u00a8\u0006\"\u000537448\u0012\u0011\bf\u0012\u0006\u0010\u0097\u00eb\u0097\u00a8\u0006\"\u000538566\u0012\u0011\bg\u0012\u0006\u0010\u00b7\u00eb\u0097\u00a8\u0006\"\u000538567\u0012\u0011\bh\u0012\u0006\u0010\u00e6\u00eb\u0097\u00a8\u0006\"\u000538568\u0012\u0011\bi\u0012\u0006\u0010\u0083\u00ec\u0097\u00a8\u0006\"\u000538569\u0012\u0011\bj\u0012\u0006\u0010\u00ad\u00ec\u0097\u00a8\u0006\"\u000538570\u0012\u0011\bk\u0012\u0006\u0010\u00e3\u00ec\u0097\u00a8\u0006\"\u000538571\u0012\u0011\bl\u0012\u0006\u0010\u0097\u00ed\u0097\u00a8\u0006\"\u000538572\u0012\u0011\bm\u0012\u0006\u0010\u00bb\u00ee\u0097\u00a8\u0006\"\u000538393\u0012\u0011\bn\u0012\u0006\u0010\u0095\u00ef\u0097\u00a8\u0006\"\u000538395\u0012\u0011\bo\u0012\u0006\u0010\u00b8\u00ef\u0097\u00a8\u0006\"\u000538396\u0012\u0011\bp\u0012\u0006\u0010\u00f3\u00ef\u0097\u00a8\u0006\"\u000538397\u0012\u0011\bq\u0012\u0006\u0010\u00a9\u00f0\u0097\u00a8\u0006\"\u000541928\u0012\u0011\br\u0012\u0006\u0010\u00d6\u00f0\u0097\u00a8\u0006\"\u000541929\u0012\u0011\bs\u0012\u0006\u0010\u00b1\u00f1\u0097\u00a8\u0006\"\u000540545\u0012\u0011\bt\u0012\u0006\u0010\u00ea\u00f1\u0097\u00a8\u0006\"\u000540546\u0012\u0011\bu\u0012\u0006\u0010\u0086\u00f2\u0097\u00a8\u0006\"\u000540547\u0012\u0011\bv\u0012\u0006\u0010\u00b6\u00f2\u0097\u00a8\u0006\"\u000540548\u0012\u0011\bw\u0012\u0006\u0010\u00e6\u00f2\u0097\u00a8\u0006\"\u000540589\u0012\u0011\bx\u0012\u0006\u0010\u0081\u00f3\u0097\u00a8\u0006\"\u000540590\u0012\u0011\by\u0012\u0006\u0010\u00f9\u00f3\u0097\u00a8\u0006\"\u000540592\u0012\u0011\bz\u0012\u0006\u0010\u0098\u00f5\u0097\u00a8\u0006\"\u000541947\u001a\b\u001a\u0006FXRL44 \u00c4\u00e8\u0097\u00a8\u0006\"`\n/\n\u001015630-701ff27f-2\u0012\b14:15:00\u001a\b20230916 \u0000*\u00035490\u0000\u0012\u001d\r\u00ed\u00d8\u0012\u00c2\u0015\u00e5:\u0092\u00c2\u001d\u0000\u0000NC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c4\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FXRL44" + }, + { + "type": "sin_recorrido", + "entity": "\n$2e18ba50-f505-4306-8721-6880d50cddf1\"`\n/\n\u001015574-701ff27f-2\u0012\b13:42:00\u001a\b20230916 \u0000*\u00035490\u0001\u0012\u001d\r\u00c1\u00cd\u0013\u00c2\u0015\u00e6\u0007\u0092\u00c2\u001d\u0000\u0000\"C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0080\u00e5\u0097\u00a8\u0006B\b\u001a\u0006HZYR24" + }, + { + "type": "con_recorrido", + "entity": "\n$f108f547-1656-4d46-8fbd-d88f7a0b5fc5\u001a\u00c9\u000f\n/\n\u001015633-701ff27f-2\u0012\b15:15:00\u001a\b20230916 \u0000*\u00035490\u0000\u0012\u0011\b\u0016\u0012\u0006\u0010\u0087\u00e9\u0097\u00a8\u0006\"\u000542285\u0012\u0011\b\u0017\u0012\u0006\u0010\u00e4\u00e9\u0097\u00a8\u0006\"\u000542286\u0012\u0011\b\u0018\u0012\u0006\u0010\u00f5\u00e9\u0097\u00a8\u0006\"\u000542287\u0012\u0011\b\u0019\u0012\u0006\u0010\u00af\u00ea\u0097\u00a8\u0006\"\u000542288\u0012\u0011\b\u001a\u0012\u0006\u0010\u00d4\u00ea\u0097\u00a8\u0006\"\u000542289\u0012\u0011\b\u001b\u0012\u0006\u0010\u00a1\u00eb\u0097\u00a8\u0006\"\u000542290\u0012\u0011\b\u001c\u0012\u0006\u0010\u00db\u00eb\u0097\u00a8\u0006\"\u000542291\u0012\u0011\b\u001d\u0012\u0006\u0010\u00b0\u00ec\u0097\u00a8\u0006\"\u000542292\u0012\u0011\b\u001e\u0012\u0006\u0010\u00f8\u00ec\u0097\u00a8\u0006\"\u000542293\u0012\u0011\b\u001f\u0012\u0006\u0010\u00a5\u00ee\u0097\u00a8\u0006\"\u000542294\u0012\u0011\b \u0012\u0006\u0010\u009c\u00ef\u0097\u00a8\u0006\"\u000542295\u0012\u0011\b!\u0012\u0006\u0010\u0088\u00f0\u0097\u00a8\u0006\"\u000542296\u0012\u0011\b\"\u0012\u0006\u0010\u008f\u00f1\u0097\u00a8\u0006\"\u000542297\u0012\u0011\b#\u0012\u0006\u0010\u00ea\u00f1\u0097\u00a8\u0006\"\u000542298\u0012\u0011\b$\u0012\u0006\u0010\u00cb\u00f3\u0097\u00a8\u0006\"\u000549296\u0012\u0011\b%\u0012\u0006\u0010\u00a0\u00f4\u0097\u00a8\u0006\"\u000549297\u0012\u0011\b&\u0012\u0006\u0010\u00c3\u00f4\u0097\u00a8\u0006\"\u000549298\u0012\u0011\b'\u0012\u0006\u0010\u0088\u00f5\u0097\u00a8\u0006\"\u000549299\u0012\u0011\b(\u0012\u0006\u0010\u00b1\u00f5\u0097\u00a8\u0006\"\u000549300\u0012\u0011\b)\u0012\u0006\u0010\u0088\u00f6\u0097\u00a8\u0006\"\u000549301\u0012\u0011\b*\u0012\u0006\u0010\u00ce\u00f6\u0097\u00a8\u0006\"\u000549302\u0012\u0011\b+\u0012\u0006\u0010\u00fc\u00f6\u0097\u00a8\u0006\"\u000549303\u0012\u0011\b,\u0012\u0006\u0010\u00b2\u00f7\u0097\u00a8\u0006\"\u000549304\u0012\u0011\b-\u0012\u0006\u0010\u00cf\u00f7\u0097\u00a8\u0006\"\u000549305\u0012\u0011\b.\u0012\u0006\u0010\u008b\u00f8\u0097\u00a8\u0006\"\u000549306\u0012\u0011\b/\u0012\u0006\u0010\u00b6\u00f8\u0097\u00a8\u0006\"\u000549307\u0012\u0011\b0\u0012\u0006\u0010\u00c8\u00f8\u0097\u00a8\u0006\"\u000549308\u0012\u0011\b1\u0012\u0006\u0010\u00e3\u00f8\u0097\u00a8\u0006\"\u000549309\u0012\u0011\b2\u0012\u0006\u0010\u0088\u00f9\u0097\u00a8\u0006\"\u000542315\u0012\u0011\b3\u0012\u0006\u0010\u009a\u00f9\u0097\u00a8\u0006\"\u000542316\u0012\u0011\b4\u0012\u0006\u0010\u00d9\u00f9\u0097\u00a8\u0006\"\u000542317\u0012\u0011\b5\u0012\u0006\u0010\u008a\u00fa\u0097\u00a8\u0006\"\u000542318\u0012\u0013\b6\u0012\u0006\u0010\u00df\u00fa\u0097\u00a8\u0006\"\u00078606396\u0012\u0011\b7\u0012\u0006\u0010\u00b6\u00fb\u0097\u00a8\u0006\"\u000538514\u0012\u0011\b8\u0012\u0006\u0010\u00e7\u00fb\u0097\u00a8\u0006\"\u000538516\u0012\u0011\b9\u0012\u0006\u0010\u00ab\u00fc\u0097\u00a8\u0006\"\u000538518\u0012\u0011\b:\u0012\u0006\u0010\u00a4\u00fd\u0097\u00a8\u0006\"\u000538520\u0012\u0011\b;\u0012\u0006\u0010\u00d5\u00fd\u0097\u00a8\u0006\"\u000538521\u0012\u0011\b<\u0012\u0006\u0010\u0092\u00fe\u0097\u00a8\u0006\"\u000538522\u0012\u0011\b=\u0012\u0006\u0010\u00d2\u00fe\u0097\u00a8\u0006\"\u000538523\u0012\u0011\b>\u0012\u0006\u0010\u0095\u00ff\u0097\u00a8\u0006\"\u000538524\u0012\u0011\b?\u0012\u0006\u0010\u00d5\u00ff\u0097\u00a8\u0006\"\u000538525\u0012\u0011\b@\u0012\u0006\u0010\u009a\u0080\u0098\u00a8\u0006\"\u000538526\u0012\u0011\bA\u0012\u0006\u0010\u00db\u0080\u0098\u00a8\u0006\"\u000538527\u0012\u0011\bB\u0012\u0006\u0010\u00ce\u0081\u0098\u00a8\u0006\"\u000538528\u0012\u0011\bC\u0012\u0006\u0010\u00f9\u0082\u0098\u00a8\u0006\"\u000538529\u0012\u0014\bD\u0012\u0006\u0010\u00cf\u0085\u0098\u00a8\u0006\"\b16005209\u0012\u0011\bE\u0012\u0006\u0010\u00de\u0088\u0098\u00a8\u0006\"\u000538531\u0012\u0013\bF\u0012\u0006\u0010\u00c2\u0089\u0098\u00a8\u0006\"\u00078921285\u0012\u0011\bG\u0012\u0006\u0010\u008f\u008b\u0098\u00a8\u0006\"\u000538532\u0012\u0011\bH\u0012\u0006\u0010\u00fc\u008b\u0098\u00a8\u0006\"\u000538533\u0012\u0011\bI\u0012\u0006\u0010\u00dd\u008c\u0098\u00a8\u0006\"\u000538534\u0012\u0011\bJ\u0012\u0006\u0010\u00ba\u008d\u0098\u00a8\u0006\"\u000538535\u0012\u0011\bK\u0012\u0006\u0010\u00d9\u008e\u0098\u00a8\u0006\"\u000538536\u0012\u0013\bL\u0012\u0006\u0010\u0096\u008f\u0098\u00a8\u0006\"\u00074838437\u0012\u0011\bM\u0012\u0006\u0010\u009e\u0090\u0098\u00a8\u0006\"\u000545085\u0012\u0011\bN\u0012\u0006\u0010\u00d2\u0091\u0098\u00a8\u0006\"\u000545086\u0012\u0011\bO\u0012\u0006\u0010\u00d5\u0092\u0098\u00a8\u0006\"\u000538539\u0012\u0011\bP\u0012\u0006\u0010\u00ff\u0093\u0098\u00a8\u0006\"\u000538540\u0012\u0011\bQ\u0012\u0006\u0010\u00be\u0095\u0098\u00a8\u0006\"\u000538544\u0012\u0011\bR\u0012\u0006\u0010\u00f8\u0096\u0098\u00a8\u0006\"\u000538545\u0012\u0011\bS\u0012\u0006\u0010\u0097\u0099\u0098\u00a8\u0006\"\u000538546\u0012\u0011\bT\u0012\u0006\u0010\u0098\u009c\u0098\u00a8\u0006\"\u000538548\u0012\u0011\bU\u0012\u0006\u0010\u00f8\u009d\u0098\u00a8\u0006\"\u000538549\u0012\u0011\bV\u0012\u0006\u0010\u00ca\u009f\u0098\u00a8\u0006\"\u000538550\u0012\u0011\bW\u0012\u0006\u0010\u00b7\u00a2\u0098\u00a8\u0006\"\u000538551\u0012\u0011\bX\u0012\u0006\u0010\u0097\u00a5\u0098\u00a8\u0006\"\u000538552\u0012\u0011\bY\u0012\u0006\u0010\u00f9\u00a7\u0098\u00a8\u0006\"\u000549359\u0012\u0011\bZ\u0012\u0006\u0010\u00ed\u00a9\u0098\u00a8\u0006\"\u000549360\u0012\u0011\b[\u0012\u0006\u0010\u00a2\u00ae\u0098\u00a8\u0006\"\u000549361\u0012\u0011\b\\\u0012\u0006\u0010\u00ce\u00b1\u0098\u00a8\u0006\"\u000549363\u0012\u0011\b]\u0012\u0006\u0010\u00e9\u00b3\u0098\u00a8\u0006\"\u000549364\u0012\u0011\b^\u0012\u0006\u0010\u0082\u00b6\u0098\u00a8\u0006\"\u000549365\u0012\u0011\b_\u0012\u0006\u0010\u00a0\u00b9\u0098\u00a8\u0006\"\u000538560\u0012\u0011\b`\u0012\u0006\u0010\u008c\u00bb\u0098\u00a8\u0006\"\u000542857\u0012\u0011\ba\u0012\u0006\u0010\u00f0\u00bc\u0098\u00a8\u0006\"\u000538562\u0012\u0011\bb\u0012\u0006\u0010\u00d0\u00bf\u0098\u00a8\u0006\"\u000538563\u0012\u0011\bc\u0012\u0006\u0010\u0083\u00c2\u0098\u00a8\u0006\"\u000538564\u0012\u0011\bd\u0012\u0006\u0010\u00b6\u00c8\u0098\u00a8\u0006\"\u000538565\u0012\u0011\be\u0012\u0006\u0010\u0087\u00cd\u0098\u00a8\u0006\"\u000537448\u0012\u0011\bf\u0012\u0006\u0010\u00ca\u00cf\u0098\u00a8\u0006\"\u000538566\u0012\u0011\bg\u0012\u0006\u0010\u009f\u00d2\u0098\u00a8\u0006\"\u000538567\u0012\u0011\bh\u0012\u0006\u0010\u00b5\u00d6\u0098\u00a8\u0006\"\u000538568\u0012\u0011\bi\u0012\u0006\u0010\u008e\u00d9\u0098\u00a8\u0006\"\u000538569\u0012\u0011\bj\u0012\u0006\u0010\u00ab\u00dd\u0098\u00a8\u0006\"\u000538570\u0012\u0011\bk\u0012\u0006\u0010\u00ac\u00e3\u0098\u00a8\u0006\"\u000538571\u0012\u0011\bl\u0012\u0006\u0010\u00cb\u00e9\u0098\u00a8\u0006\"\u000538572\u0012\u0011\bm\u0012\u0006\u0010\u0081\u0082\u0099\u00a8\u0006\"\u000538393\u0012\u0011\bn\u0012\u0006\u0010\u00ed\u0093\u0099\u00a8\u0006\"\u000538395\u0012\u0011\bo\u0012\u0006\u0010\u00cd\u009b\u0099\u00a8\u0006\"\u000538396\u0012\u0011\bp\u0012\u0006\u0010\u00ea\u00aa\u0099\u00a8\u0006\"\u000538397\u0012\u0011\bq\u0012\u0006\u0010\u0092\u00bb\u0099\u00a8\u0006\"\u000541928\u0012\u0011\br\u0012\u0006\u0010\u00c1\u00ca\u0099\u00a8\u0006\"\u000541929\u0012\u0011\bs\u0012\u0006\u0010\u00f3\u00f1\u0099\u00a8\u0006\"\u000540545\u0012\u0011\bt\u0012\u0006\u0010\u00c7\u0092\u009a\u00a8\u0006\"\u000540546\u0012\u0011\bu\u0012\u0006\u0010\u0089\u00a5\u009a\u00a8\u0006\"\u000540547\u0012\u0011\bv\u0012\u0006\u0010\u008b\u00cb\u009a\u00a8\u0006\"\u000540548\u0012\u0011\bw\u0012\u0006\u0010\u00ce\u00fa\u009a\u00a8\u0006\"\u000540589\u0012\u0011\bx\u0012\u0006\u0010\u00fc\u009b\u009b\u00a8\u0006\"\u000540590\u0012\u0011\by\u0012\u0006\u0010\u0090\u008d\u009d\u00a8\u0006\"\u000540592\u0012\u0011\bz\u0012\u0006\u0010\u0084\u00c3\u00aa\u00a8\u0006\"\u000541947\u001a\b\u001a\u0006YS3102 \u00c6\u00e8\u0097\u00a8\u0006\"`\n/\n\u001015633-701ff27f-2\u0012\b15:15:00\u001a\b20230916 \u0000*\u00035490\u0000\u0012\u001d\rk\u00b0\u0013\u00c2\u0015\u00a2\r\u0092\u00c2\u001d\u0000\u0000\u00adC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u00d0A(\u00c6\u00e8\u0097\u00a8\u0006B\b\u001a\u0006YS3102" + }, + { + "type": "con_recorrido", + "entity": "\n$a5752e7e-5dd3-4158-a68a-cc46f75e457f\u001a\u0082\u000f\n/\n\u001015744-701ff27f-2\u0012\b15:20:00\u001a\b20230916 \u0000*\u00035500\u0001\u0012\u0011\b\u0003\u0012\u0006\u0010\u00fa\u00e8\u0097\u00a8\u0006\"\u000538511\u0012\u0011\b\u0004\u0012\u0006\u0010\u00a8\u00e9\u0097\u00a8\u0006\"\u000538482\u0012\u0011\b\u0005\u0012\u0006\u0010\u00c2\u00e9\u0097\u00a8\u0006\"\u000538440\u0012\u0011\b\u0006\u0012\u0006\u0010\u00e0\u00e9\u0097\u00a8\u0006\"\u000538446\u0012\u0011\b\u0007\u0012\u0006\u0010\u009f\u00ea\u0097\u00a8\u0006\"\u000538491\u0012\u0011\b\b\u0012\u0006\u0010\u00c5\u00ea\u0097\u00a8\u0006\"\u000538424\u0012\u0011\b\t\u0012\u0006\u0010\u00f2\u00ea\u0097\u00a8\u0006\"\u000538394\u0012\u0011\b\n\u0012\u0006\u0010\u0096\u00eb\u0097\u00a8\u0006\"\u000538495\u0012\u0011\b\u000b\u0012\u0006\u0010\u009d\u00ec\u0097\u00a8\u0006\"\u000540928\u0012\u0011\b\f\u0012\u0006\u0010\u00cd\u00ec\u0097\u00a8\u0006\"\u000537446\u0012\u0011\b\r\u0012\u0006\u0010\u0095\u00ed\u0097\u00a8\u0006\"\u000537447\u0012\u0011\b\u000e\u0012\u0006\u0010\u00aa\u00ed\u0097\u00a8\u0006\"\u000540929\u0012\u0011\b\u000f\u0012\u0006\u0010\u00e8\u00ed\u0097\u00a8\u0006\"\u000540946\u0012\u0011\b\u0010\u0012\u0006\u0010\u009c\u00ee\u0097\u00a8\u0006\"\u000540947\u0012\u0011\b\u0011\u0012\u0006\u0010\u009e\u00ef\u0097\u00a8\u0006\"\u000549356\u0012\u0011\b\u0012\u0012\u0006\u0010\u00df\u00ef\u0097\u00a8\u0006\"\u000549357\u0012\u0011\b\u0013\u0012\u0006\u0010\u0086\u00f0\u0097\u00a8\u0006\"\u000538771\u0012\u0011\b\u0014\u0012\u0006\u0010\u00b0\u00f0\u0097\u00a8\u0006\"\u000538668\u0012\u0011\b\u0015\u0012\u0006\u0010\u0090\u00f1\u0097\u00a8\u0006\"\u000538661\u0012\u0011\b\u0016\u0012\u0006\u0010\u00d9\u00f1\u0097\u00a8\u0006\"\u000538657\u0012\u0011\b\u0017\u0012\u0006\u0010\u009c\u00f2\u0097\u00a8\u0006\"\u000538743\u0012\u0011\b\u0018\u0012\u0006\u0010\u00d5\u00f2\u0097\u00a8\u0006\"\u000538652\u0012\u0011\b\u0019\u0012\u0006\u0010\u009c\u00f3\u0097\u00a8\u0006\"\u000538721\u0012\u0011\b\u001a\u0012\u0006\u0010\u00d4\u00f3\u0097\u00a8\u0006\"\u000538659\u0012\u0011\b\u001b\u0012\u0006\u0010\u00a4\u00f4\u0097\u00a8\u0006\"\u000538674\u0012\u0011\b\u001c\u0012\u0006\u0010\u00e7\u00f4\u0097\u00a8\u0006\"\u000538649\u0012\u0011\b\u001d\u0012\u0006\u0010\u00b7\u00f5\u0097\u00a8\u0006\"\u000538718\u0012\u0011\b\u001e\u0012\u0006\u0010\u00f2\u00f5\u0097\u00a8\u0006\"\u000538735\u0012\u0011\b\u001f\u0012\u0006\u0010\u00aa\u00f6\u0097\u00a8\u0006\"\u000542270\u0012\u0011\b \u0012\u0006\u0010\u00e1\u00f6\u0097\u00a8\u0006\"\u000542271\u0012\u0013\b!\u0012\u0006\u0010\u00a4\u00f7\u0097\u00a8\u0006\"\u00074838438\u0012\u0011\b\"\u0012\u0006\u0010\u00c0\u00f8\u0097\u00a8\u0006\"\u000544896\u0012\u0011\b#\u0012\u0006\u0010\u00f4\u00f8\u0097\u00a8\u0006\"\u000544897\u0012\u0011\b$\u0012\u0006\u0010\u00c4\u00f9\u0097\u00a8\u0006\"\u000544898\u0012\u0011\b%\u0012\u0006\u0010\u00fa\u00fa\u0097\u00a8\u0006\"\u000540993\u0012\u0011\b&\u0012\u0006\u0010\u00dd\u00ff\u0097\u00a8\u0006\"\u000540995\u0012\u0011\b'\u0012\u0006\u0010\u00c9\u0080\u0098\u00a8\u0006\"\u000540996\u0012\u0011\b(\u0012\u0006\u0010\u00b3\u0081\u0098\u00a8\u0006\"\u000540997\u0012\u0011\b)\u0012\u0006\u0010\u0085\u0082\u0098\u00a8\u0006\"\u000539614\u0012\u0011\b*\u0012\u0006\u0010\u00c9\u0082\u0098\u00a8\u0006\"\u000539615\u0012\u0011\b+\u0012\u0006\u0010\u0091\u0083\u0098\u00a8\u0006\"\u000539616\u0012\u0011\b,\u0012\u0006\u0010\u00e2\u0083\u0098\u00a8\u0006\"\u000539617\u0012\u0011\b-\u0012\u0006\u0010\u00ba\u0084\u0098\u00a8\u0006\"\u000539618\u0012\u0011\b.\u0012\u0006\u0010\u00e4\u0084\u0098\u00a8\u0006\"\u000538521\u0012\u0011\b/\u0012\u0006\u0010\u00ff\u0084\u0098\u00a8\u0006\"\u000539619\u0012\u0011\b0\u0012\u0006\u0010\u00c0\u0085\u0098\u00a8\u0006\"\u000539620\u0012\u0011\b1\u0012\u0006\u0010\u00af\u0086\u0098\u00a8\u0006\"\u000539621\u0012\u0011\b2\u0012\u0006\u0010\u00ff\u0086\u0098\u00a8\u0006\"\u000538281\u0012\u0011\b3\u0012\u0006\u0010\u00dd\u0087\u0098\u00a8\u0006\"\u000537506\u0012\u0011\b4\u0012\u0006\u0010\u00a4\u0088\u0098\u00a8\u0006\"\u000545068\u0012\u0011\b5\u0012\u0006\u0010\u00fc\u0089\u0098\u00a8\u0006\"\u000537480\u0012\u0011\b6\u0012\u0006\u0010\u00fc\u008a\u0098\u00a8\u0006\"\u000537477\u0012\u0011\b7\u0012\u0006\u0010\u0081\u008c\u0098\u00a8\u0006\"\u000540848\u0012\u0011\b8\u0012\u0006\u0010\u00af\u008d\u0098\u00a8\u0006\"\u00052-Apr\u0012\u0011\b9\u0012\u0006\u0010\u009e\u008e\u0098\u00a8\u0006\"\u000539728\u0012\u0011\b:\u0012\u0006\u0010\u00fb\u008f\u0098\u00a8\u0006\"\u000539729\u0012\u0011\b;\u0012\u0006\u0010\u00b3\u0090\u0098\u00a8\u0006\"\u000539730\u0012\u0011\b<\u0012\u0006\u0010\u00b3\u0092\u0098\u00a8\u0006\"\u000542200\u0012\u0011\b=\u0012\u0006\u0010\u009e\u0093\u0098\u00a8\u0006\"\u000542203\u0012\u0011\b>\u0012\u0006\u0010\u00b6\u0095\u0098\u00a8\u0006\"\u000549301\u0012\u0011\b?\u0012\u0006\u0010\u00e2\u0098\u0098\u00a8\u0006\"\u000542204\u0012\u0011\b@\u0012\u0006\u0010\u00c6\u0099\u0098\u00a8\u0006\"\u000542205\u0012\u0011\bA\u0012\u0006\u0010\u0084\u009b\u0098\u00a8\u0006\"\u000542201\u0012\u0011\bB\u0012\u0006\u0010\u00ea\u00a1\u0098\u00a8\u0006\"\u000542206\u0012\u0011\bC\u0012\u0006\u0010\u00e6\u00a3\u0098\u00a8\u0006\"\u000542207\u0012\u0011\bD\u0012\u0006\u0010\u00e3\u00a5\u0098\u00a8\u0006\"\u000542208\u0012\u0011\bE\u0012\u0006\u0010\u00bd\u00aa\u0098\u00a8\u0006\"\u000542564\u0012\u0011\bF\u0012\u0006\u0010\u00b0\u00ae\u0098\u00a8\u0006\"\u000542214\u0012\u0011\bG\u0012\u0006\u0010\u00af\u00b3\u0098\u00a8\u0006\"\u000542209\u0012\u0011\bH\u0012\u0006\u0010\u00f1\u00b8\u0098\u00a8\u0006\"\u000542210\u0012\u0011\bI\u0012\u0006\u0010\u00e2\u00c3\u0098\u00a8\u0006\"\u000540951\u0012\u0011\bJ\u0012\u0006\u0010\u00b7\u00c8\u0098\u00a8\u0006\"\u000540952\u0012\u0011\bK\u0012\u0006\u0010\u00f4\u00cc\u0098\u00a8\u0006\"\u000540953\u0012\u0011\bL\u0012\u0006\u0010\u00c2\u00d0\u0098\u00a8\u0006\"\u000540954\u0012\u0011\bM\u0012\u0006\u0010\u00f3\u00d6\u0098\u00a8\u0006\"\u000540955\u0012\u0011\bN\u0012\u0006\u0010\u00c9\u00da\u0098\u00a8\u0006\"\u000540956\u0012\u0011\bO\u0012\u0006\u0010\u00cf\u00e0\u0098\u00a8\u0006\"\u000540957\u0012\u0011\bP\u0012\u0006\u0010\u00da\u00e6\u0098\u00a8\u0006\"\u000540958\u0012\u0011\bQ\u0012\u0006\u0010\u00fe\u00e9\u0098\u00a8\u0006\"\u000540959\u0012\u0011\bR\u0012\u0006\u0010\u00c2\u00f3\u0098\u00a8\u0006\"\u000542223\u0012\u0011\bS\u0012\u0006\u0010\u00d3\u00f7\u0098\u00a8\u0006\"\u000542224\u0012\u0011\bT\u0012\u0006\u0010\u0087\u0084\u0099\u00a8\u0006\"\u000542225\u0012\u0011\bU\u0012\u0006\u0010\u00a6\u0090\u0099\u00a8\u0006\"\u000542226\u0012\u0011\bV\u0012\u0006\u0010\u00e3\u009b\u0099\u00a8\u0006\"\u000542227\u0012\u0011\bW\u0012\u0006\u0010\u009e\u00b1\u0099\u00a8\u0006\"\u000542228\u0012\u0011\bX\u0012\u0006\u0010\u0090\u00bd\u0099\u00a8\u0006\"\u000542229\u0012\u0011\bY\u0012\u0006\u0010\u00fb\u00da\u0099\u00a8\u0006\"\u000542230\u0012\u0011\bZ\u0012\u0006\u0010\u00b7\u00ed\u0099\u00a8\u0006\"\u000542231\u0012\u0011\b[\u0012\u0006\u0010\u00d5\u0099\u009a\u00a8\u0006\"\u000542232\u0012\u0014\b\\\u0012\u0006\u0010\u008f\u00d5\u009a\u00a8\u0006\"\b20540229\u0012\u0014\b]\u0012\u0006\u0010\u00e5\u00f9\u009a\u00a8\u0006\"\b20540230\u0012\u0014\b^\u0012\u0006\u0010\u00e8\u009e\u009b\u00a8\u0006\"\b20540231\u0012\u0014\b_\u0012\u0006\u0010\u00e4\u0081\u009c\u00a8\u0006\"\b20554362\u0012\u0011\b`\u0012\u0006\u0010\u00cc\u00a1\u009f\u00a8\u0006\"\u000534871\u0012\u0011\ba\u0012\u0006\u0010\u00b4\u00b8\u00a0\u00a8\u0006\"\u000534872\u0012\u0011\bb\u0012\u0006\u0010\u0085\u00f6\u00aa\u00a8\u0006\"\u000534873\u0012\u0011\bc\u0012\u0006\u0010\u00ae\u0087\u00fe\u00a8\u0006\"\u000542077\u001a\b\u001a\u0006CLYB54 \u00c6\u00e8\u0097\u00a8\u0006\"`\n/\n\u001015744-701ff27f-2\u0012\b15:20:00\u001a\b20230916 \u0000*\u00035500\u0001\u0012\u001d\r\"\u00e1\u0012\u00c2\u0015\u00c4G\u0092\u00c2\u001d\u0000\u0000\u0090B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000A(\u00c6\u00e8\u0097\u00a8\u0006B\b\u001a\u0006CLYB54" + }, + { + "type": "con_recorrido", + "entity": "\n$ca76a482-11fd-4346-baed-b803c28b32c7\u001a\u00fe\u0007\n/\n\u001015685-701ff27f-2\u0012\b14:40:00\u001a\b20230916 \u0000*\u00035500\u0000\u0012\u0014\bC\u0012\u0006\u0010\u00d0\u00e8\u0097\u00a8\u0006\"\b16005209\u0012\u0011\bD\u0012\u0006\u0010\u00c8\u00ea\u0097\u00a8\u0006\"\u000538531\u0012\u0013\bE\u0012\u0006\u0010\u0080\u00eb\u0097\u00a8\u0006\"\u00078921285\u0012\u0011\bF\u0012\u0006\u0010\u00ee\u00eb\u0097\u00a8\u0006\"\u000538532\u0012\u0011\bG\u0012\u0006\u0010\u00a6\u00ec\u0097\u00a8\u0006\"\u000538533\u0012\u0011\bH\u0012\u0006\u0010\u00d6\u00ec\u0097\u00a8\u0006\"\u000538534\u0012\u0011\bI\u0012\u0006\u0010\u0082\u00ed\u0097\u00a8\u0006\"\u000538535\u0012\u0011\bJ\u0012\u0006\u0010\u00cc\u00ed\u0097\u00a8\u0006\"\u000538536\u0012\u0013\bK\u0012\u0006\u0010\u00e7\u00ed\u0097\u00a8\u0006\"\u00074838437\u0012\u0011\bL\u0012\u0006\u0010\u00a2\u00ee\u0097\u00a8\u0006\"\u000545085\u0012\u0011\bM\u0012\u0006\u0010\u00ea\u00ee\u0097\u00a8\u0006\"\u000545086\u0012\u0011\bN\u0012\u0006\u0010\u00aa\u00ef\u0097\u00a8\u0006\"\u000538539\u0012\u0011\bO\u0012\u0006\u0010\u00af\u00f0\u0097\u00a8\u0006\"\u000538544\u0012\u0011\bP\u0012\u0006\u0010\u00e9\u00f0\u0097\u00a8\u0006\"\u000538545\u0012\u0011\bQ\u0012\u0006\u0010\u00cb\u00f1\u0097\u00a8\u0006\"\u000538546\u0012\u0011\bR\u0012\u0006\u0010\u00be\u00f2\u0097\u00a8\u0006\"\u000538548\u0012\u0011\bS\u0012\u0006\u0010\u00fe\u00f2\u0097\u00a8\u0006\"\u000538549\u0012\u0011\bT\u0012\u0006\u0010\u00b8\u00f3\u0097\u00a8\u0006\"\u000538550\u0012\u0011\bU\u0012\u0006\u0010\u0095\u00f4\u0097\u00a8\u0006\"\u000538551\u0012\u0011\bV\u0012\u0006\u0010\u00f3\u00f4\u0097\u00a8\u0006\"\u000538552\u0012\u0011\bW\u0012\u0006\u0010\u00bc\u00f5\u0097\u00a8\u0006\"\u000549359\u0012\u0011\bX\u0012\u0006\u0010\u00ef\u00f5\u0097\u00a8\u0006\"\u000549360\u0012\u0011\bY\u0012\u0006\u0010\u00e2\u00f6\u0097\u00a8\u0006\"\u000549361\u0012\u0011\bZ\u0012\u0006\u0010\u00fd\u00f6\u0097\u00a8\u0006\"\u000549362\u0012\u0011\b[\u0012\u0006\u0010\u00ae\u00f7\u0097\u00a8\u0006\"\u000549363\u0012\u0011\b\\\u0012\u0006\u0010\u00df\u00f7\u0097\u00a8\u0006\"\u000549364\u0012\u0011\b]\u0012\u0006\u0010\u008f\u00f8\u0097\u00a8\u0006\"\u000549365\u0012\u0011\b^\u0012\u0006\u0010\u00d1\u00f8\u0097\u00a8\u0006\"\u000538560\u0012\u0011\b_\u0012\u0006\u0010\u00f5\u00f8\u0097\u00a8\u0006\"\u000542857\u0012\u0011\b`\u0012\u0006\u0010\u0097\u00f9\u0097\u00a8\u0006\"\u000538562\u0012\u0011\ba\u0012\u0006\u0010\u00ca\u00f9\u0097\u00a8\u0006\"\u000538563\u0012\u0011\bb\u0012\u0006\u0010\u00f4\u00f9\u0097\u00a8\u0006\"\u000538564\u0012\u0011\bc\u0012\u0006\u0010\u00dc\u00fa\u0097\u00a8\u0006\"\u000538565\u0012\u0011\bd\u0012\u0006\u0010\u00a2\u00fb\u0097\u00a8\u0006\"\u000537448\u0012\u0011\be\u0012\u0006\u0010\u00c2\u00fb\u0097\u00a8\u0006\"\u000538566\u0012\u0011\bf\u0012\u0006\u0010\u00e5\u00fb\u0097\u00a8\u0006\"\u000538567\u0012\u0011\bg\u0012\u0006\u0010\u009c\u00fc\u0097\u00a8\u0006\"\u000538568\u0012\u0011\bh\u0012\u0006\u0010\u00bb\u00fc\u0097\u00a8\u0006\"\u000538569\u0012\u0011\bi\u0012\u0006\u0010\u00ee\u00fc\u0097\u00a8\u0006\"\u000538570\u0012\u0011\bj\u0012\u0006\u0010\u00b1\u00fd\u0097\u00a8\u0006\"\u000538571\u0012\u0011\bk\u0012\u0006\u0010\u00e6\u00fd\u0097\u00a8\u0006\"\u000538572\u0012\u0011\bl\u0012\u0006\u0010\u00c8\u00ff\u0097\u00a8\u0006\"\u000538393\u0012\u0011\bm\u0012\u0006\u0010\u00c4\u0080\u0098\u00a8\u0006\"\u000538395\u0012\u0011\bn\u0012\u0006\u0010\u00f4\u0080\u0098\u00a8\u0006\"\u000538396\u0012\u0011\bo\u0012\u0006\u0010\u00c8\u0081\u0098\u00a8\u0006\"\u000538397\u0012\u0011\bp\u0012\u0006\u0010\u00e9\u0081\u0098\u00a8\u0006\"\u000538398\u0012\u0011\bq\u0012\u0006\u0010\u008c\u0082\u0098\u00a8\u0006\"\u000538399\u0012\u0011\br\u0012\u0006\u0010\u00e8\u0082\u0098\u00a8\u0006\"\u000538400\u0012\u0011\bs\u0012\u0006\u0010\u00a7\u0083\u0098\u00a8\u0006\"\u000538401\u0012\u0011\bt\u0012\u0006\u0010\u00f0\u0083\u0098\u00a8\u0006\"\u000538402\u001a\b\u001a\u0006FWJX76 \u00c4\u00e8\u0097\u00a8\u0006\"`\n/\n\u001015685-701ff27f-2\u0012\b14:40:00\u001a\b20230916 \u0000*\u00035500\u0000\u0012\u001d\r\u0097*\u0013\u00c2\u0015\u00df#\u0092\u00c2\u001d\u0000\u0000\u00a8C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c4\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FWJX76" + }, + { + "type": "con_recorrido", + "entity": "\n$80c14e4b-6ee3-44e6-b764-5fd495a3348d\u001a\u00e5\r\n/\n\u001015686-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00035500\u0000\u0012\u0011\b\u001c\u0012\u0006\u0010\u0084\u00e9\u0097\u00a8\u0006\"\u000542294\u0012\u0011\b\u001d\u0012\u0006\u0010\u0084\u00ea\u0097\u00a8\u0006\"\u000542295\u0012\u0011\b\u001e\u0012\u0006\u0010\u00f7\u00ea\u0097\u00a8\u0006\"\u000542296\u0012\u0011\b\u001f\u0012\u0006\u0010\u0084\u00ec\u0097\u00a8\u0006\"\u000542297\u0012\u0011\b \u0012\u0006\u0010\u00e1\u00ec\u0097\u00a8\u0006\"\u000542298\u0012\u0011\b!\u0012\u0006\u0010\u00c2\u00ed\u0097\u00a8\u0006\"\u000549295\u0012\u0011\b\"\u0012\u0006\u0010\u00bd\u00ee\u0097\u00a8\u0006\"\u000549296\u0012\u0011\b#\u0012\u0006\u0010\u0092\u00ef\u0097\u00a8\u0006\"\u000549297\u0012\u0011\b$\u0012\u0006\u0010\u00b2\u00ef\u0097\u00a8\u0006\"\u000549298\u0012\u0011\b%\u0012\u0006\u0010\u00f2\u00ef\u0097\u00a8\u0006\"\u000549299\u0012\u0011\b&\u0012\u0006\u0010\u00a4\u00f0\u0097\u00a8\u0006\"\u000549300\u0012\u0011\b'\u0012\u0006\u0010\u00f0\u00f0\u0097\u00a8\u0006\"\u000549301\u0012\u0011\b(\u0012\u0006\u0010\u00b5\u00f1\u0097\u00a8\u0006\"\u000549302\u0012\u0011\b)\u0012\u0006\u0010\u00e3\u00f1\u0097\u00a8\u0006\"\u000549303\u0012\u0011\b*\u0012\u0006\u0010\u0090\u00f2\u0097\u00a8\u0006\"\u000549304\u0012\u0011\b+\u0012\u0006\u0010\u00b1\u00f2\u0097\u00a8\u0006\"\u000549305\u0012\u0011\b,\u0012\u0006\u0010\u00e7\u00f2\u0097\u00a8\u0006\"\u000549306\u0012\u0011\b-\u0012\u0006\u0010\u008f\u00f3\u0097\u00a8\u0006\"\u000549307\u0012\u0011\b.\u0012\u0006\u0010\u00a0\u00f3\u0097\u00a8\u0006\"\u000549308\u0012\u0011\b/\u0012\u0006\u0010\u00b9\u00f3\u0097\u00a8\u0006\"\u000549309\u0012\u0011\b0\u0012\u0006\u0010\u00db\u00f3\u0097\u00a8\u0006\"\u000542315\u0012\u0011\b1\u0012\u0006\u0010\u00eb\u00f3\u0097\u00a8\u0006\"\u000542316\u0012\u0011\b2\u0012\u0006\u0010\u00a4\u00f4\u0097\u00a8\u0006\"\u000542317\u0012\u0011\b3\u0012\u0006\u0010\u00d0\u00f4\u0097\u00a8\u0006\"\u000542318\u0012\u0013\b4\u0012\u0006\u0010\u009c\u00f5\u0097\u00a8\u0006\"\u00078606396\u0012\u0011\b5\u0012\u0006\u0010\u00e9\u00f5\u0097\u00a8\u0006\"\u000538514\u0012\u0011\b6\u0012\u0006\u0010\u0094\u00f6\u0097\u00a8\u0006\"\u000538516\u0012\u0011\b7\u0012\u0006\u0010\u00cf\u00f6\u0097\u00a8\u0006\"\u000538518\u0012\u0011\b8\u0012\u0006\u0010\u00b4\u00f7\u0097\u00a8\u0006\"\u000538520\u0012\u0011\b9\u0012\u0006\u0010\u00e0\u00f7\u0097\u00a8\u0006\"\u000538521\u0012\u0011\b:\u0012\u0006\u0010\u0092\u00f8\u0097\u00a8\u0006\"\u000538522\u0012\u0011\b;\u0012\u0006\u0010\u00c8\u00f8\u0097\u00a8\u0006\"\u000538523\u0012\u0011\b<\u0012\u0006\u0010\u00ff\u00f8\u0097\u00a8\u0006\"\u000538524\u0012\u0011\b=\u0012\u0006\u0010\u00ba\u00f9\u0097\u00a8\u0006\"\u000538525\u0012\u0011\b>\u0012\u0006\u0010\u00f4\u00f9\u0097\u00a8\u0006\"\u000538526\u0012\u0011\b?\u0012\u0006\u0010\u00aa\u00fa\u0097\u00a8\u0006\"\u000538527\u0012\u0011\b@\u0012\u0006\u0010\u0088\u00fb\u0097\u00a8\u0006\"\u000538528\u0012\u0011\bA\u0012\u0006\u0010\u0093\u00fc\u0097\u00a8\u0006\"\u000538529\u0012\u0011\bB\u0012\u0006\u0010\u008b\u00fe\u0097\u00a8\u0006\"\u000538530\u0012\u0014\bC\u0012\u0006\u0010\u00a2\u00fe\u0097\u00a8\u0006\"\b16005209\u0012\u0011\bD\u0012\u0006\u0010\u00d6\u0080\u0098\u00a8\u0006\"\u000538531\u0012\u0013\bE\u0012\u0006\u0010\u00a1\u0081\u0098\u00a8\u0006\"\u00078921285\u0012\u0011\bF\u0012\u0006\u0010\u00bb\u0082\u0098\u00a8\u0006\"\u000538532\u0012\u0011\bG\u0012\u0006\u0010\u008b\u0083\u0098\u00a8\u0006\"\u000538533\u0012\u0011\bH\u0012\u0006\u0010\u00d3\u0083\u0098\u00a8\u0006\"\u000538534\u0012\u0011\bI\u0012\u0006\u0010\u0097\u0084\u0098\u00a8\u0006\"\u000538535\u0012\u0011\bJ\u0012\u0006\u0010\u008a\u0085\u0098\u00a8\u0006\"\u000538536\u0012\u0013\bK\u0012\u0006\u0010\u00b6\u0085\u0098\u00a8\u0006\"\u00074838437\u0012\u0011\bL\u0012\u0006\u0010\u0097\u0086\u0098\u00a8\u0006\"\u000545085\u0012\u0011\bM\u0012\u0006\u0010\u0093\u0087\u0098\u00a8\u0006\"\u000545086\u0012\u0011\bN\u0012\u0006\u0010\u0083\u0088\u0098\u00a8\u0006\"\u000538539\u0012\u0011\bO\u0012\u0006\u0010\u00fa\u0089\u0098\u00a8\u0006\"\u000538544\u0012\u0011\bP\u0012\u0006\u0010\u00eb\u008a\u0098\u00a8\u0006\"\u000538545\u0012\u0011\bQ\u0012\u0006\u0010\u00b3\u008c\u0098\u00a8\u0006\"\u000538546\u0012\u0011\bR\u0012\u0006\u0010\u00a9\u008e\u0098\u00a8\u0006\"\u000538548\u0012\u0011\bS\u0012\u0006\u0010\u00ba\u008f\u0098\u00a8\u0006\"\u000538549\u0012\u0011\bT\u0012\u0006\u0010\u00c0\u0090\u0098\u00a8\u0006\"\u000538550\u0012\u0011\bU\u0012\u0006\u0010\u00a2\u0092\u0098\u00a8\u0006\"\u000538551\u0012\u0011\bV\u0012\u0006\u0010\u0091\u0094\u0098\u00a8\u0006\"\u000538552\u0012\u0011\bW\u0012\u0006\u0010\u00d1\u0095\u0098\u00a8\u0006\"\u000549359\u0012\u0011\bX\u0012\u0006\u0010\u00de\u0096\u0098\u00a8\u0006\"\u000549360\u0012\u0011\bY\u0012\u0006\u0010\u00a8\u0099\u0098\u00a8\u0006\"\u000549361\u0012\u0011\bZ\u0012\u0006\u0010\u00f8\u0099\u0098\u00a8\u0006\"\u000549362\u0012\u0011\b[\u0012\u0006\u0010\u008e\u009b\u0098\u00a8\u0006\"\u000549363\u0012\u0011\b\\\u0012\u0006\u0010\u00aa\u009c\u0098\u00a8\u0006\"\u000549364\u0012\u0011\b]\u0012\u0006\u0010\u00c3\u009d\u0098\u00a8\u0006\"\u000549365\u0012\u0011\b^\u0012\u0006\u0010\u00a0\u009f\u0098\u00a8\u0006\"\u000538560\u0012\u0011\b_\u0012\u0006\u0010\u009c\u00a0\u0098\u00a8\u0006\"\u000542857\u0012\u0011\b`\u0012\u0006\u0010\u0093\u00a1\u0098\u00a8\u0006\"\u000538562\u0012\u0011\ba\u0012\u0006\u0010\u00c7\u00a2\u0098\u00a8\u0006\"\u000538563\u0012\u0011\bb\u0012\u0006\u0010\u00e1\u00a3\u0098\u00a8\u0006\"\u000538564\u0012\u0011\bc\u0012\u0006\u0010\u00f3\u00a6\u0098\u00a8\u0006\"\u000538565\u0012\u0011\bd\u0012\u0006\u0010\u008d\u00a9\u0098\u00a8\u0006\"\u000537448\u0012\u0011\be\u0012\u0006\u0010\u0093\u00aa\u0098\u00a8\u0006\"\u000538566\u0012\u0011\bf\u0012\u0006\u0010\u00a7\u00ab\u0098\u00a8\u0006\"\u000538567\u0012\u0011\bg\u0012\u0006\u0010\u0095\u00ad\u0098\u00a8\u0006\"\u000538568\u0012\u0011\bh\u0012\u0006\u0010\u00a0\u00ae\u0098\u00a8\u0006\"\u000538569\u0012\u0011\bi\u0012\u0006\u0010\u008a\u00b0\u0098\u00a8\u0006\"\u000538570\u0012\u0011\bj\u0012\u0006\u0010\u00cd\u00b2\u0098\u00a8\u0006\"\u000538571\u0012\u0011\bk\u0012\u0006\u0010\u00d3\u00b4\u0098\u00a8\u0006\"\u000538572\u0012\u0011\bl\u0012\u0006\u0010\u009d\u00be\u0098\u00a8\u0006\"\u000538393\u0012\u0011\bm\u0012\u0006\u0010\u0092\u00c4\u0098\u00a8\u0006\"\u000538395\u0012\u0011\bn\u0012\u0006\u0010\u00c7\u00c6\u0098\u00a8\u0006\"\u000538396\u0012\u0011\bo\u0012\u0006\u0010\u0084\u00cb\u0098\u00a8\u0006\"\u000538397\u0012\u0011\bp\u0012\u0006\u0010\u00ec\u00cc\u0098\u00a8\u0006\"\u000538398\u0012\u0011\bq\u0012\u0006\u0010\u00ed\u00ce\u0098\u00a8\u0006\"\u000538399\u0012\u0011\br\u0012\u0006\u0010\u00ac\u00d4\u0098\u00a8\u0006\"\u000538400\u0012\u0011\bs\u0012\u0006\u0010\u00a4\u00d8\u0098\u00a8\u0006\"\u000538401\u0012\u0011\bt\u0012\u0006\u0010\u009a\u00dd\u0098\u00a8\u0006\"\u000538402\u001a\b\u001a\u0006HBSR22 \u00c4\u00e8\u0097\u00a8\u0006\"`\n/\n\u001015686-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00035500\u0000\u0012\u001d\r\u008b\u0092\u0013\u00c2\u0015\u00c9\u0011\u0092\u00c2\u001d\u0000\u0000\u009bC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000@B(\u00c4\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HBSR22" + }, + { + "type": "con_recorrido", + "entity": "\n$756dcfcb-fba2-4c09-8cff-d5fc1a5e571b\u001a\u00e3\u0003\n/\n\u001015683-701ff27f-2\u0012\b14:00:00\u001a\b20230916 \u0000*\u00035500\u0000\u0012\u0011\b_\u0012\u0006\u0010\u00dd\u00e8\u0097\u00a8\u0006\"\u000542857\u0012\u0011\b`\u0012\u0006\u0010\u00ff\u00e8\u0097\u00a8\u0006\"\u000538562\u0012\u0011\ba\u0012\u0006\u0010\u00af\u00e9\u0097\u00a8\u0006\"\u000538563\u0012\u0011\bb\u0012\u0006\u0010\u00d7\u00e9\u0097\u00a8\u0006\"\u000538564\u0012\u0011\bc\u0012\u0006\u0010\u00b9\u00ea\u0097\u00a8\u0006\"\u000538565\u0012\u0011\bd\u0012\u0006\u0010\u00f7\u00ea\u0097\u00a8\u0006\"\u000537448\u0012\u0011\be\u0012\u0006\u0010\u0094\u00eb\u0097\u00a8\u0006\"\u000538566\u0012\u0011\bf\u0012\u0006\u0010\u00b2\u00eb\u0097\u00a8\u0006\"\u000538567\u0012\u0011\bg\u0012\u0006\u0010\u00e1\u00eb\u0097\u00a8\u0006\"\u000538568\u0012\u0011\bh\u0012\u0006\u0010\u00fb\u00eb\u0097\u00a8\u0006\"\u000538569\u0012\u0011\bi\u0012\u0006\u0010\u00a6\u00ec\u0097\u00a8\u0006\"\u000538570\u0012\u0011\bj\u0012\u0006\u0010\u00dd\u00ec\u0097\u00a8\u0006\"\u000538571\u0012\u0011\bk\u0012\u0006\u0010\u0088\u00ed\u0097\u00a8\u0006\"\u000538572\u0012\u0011\bl\u0012\u0006\u0010\u00b6\u00ee\u0097\u00a8\u0006\"\u000538393\u0012\u0011\bm\u0012\u0006\u0010\u0091\u00ef\u0097\u00a8\u0006\"\u000538395\u0012\u0011\bn\u0012\u0006\u0010\u00b3\u00ef\u0097\u00a8\u0006\"\u000538396\u0012\u0011\bo\u0012\u0006\u0010\u00ef\u00ef\u0097\u00a8\u0006\"\u000538397\u0012\u0011\bp\u0012\u0006\u0010\u0085\u00f0\u0097\u00a8\u0006\"\u000538398\u0012\u0011\bq\u0012\u0006\u0010\u009d\u00f0\u0097\u00a8\u0006\"\u000538399\u0012\u0011\br\u0012\u0006\u0010\u00dc\u00f0\u0097\u00a8\u0006\"\u000538400\u0012\u0011\bs\u0012\u0006\u0010\u0085\u00f1\u0097\u00a8\u0006\"\u000538401\u0012\u0011\bt\u0012\u0006\u0010\u00b4\u00f1\u0097\u00a8\u0006\"\u000538402\u001a\b\u001a\u0006XR7697 \u00c4\u00e8\u0097\u00a8\u0006\"`\n/\n\u001015683-701ff27f-2\u0012\b14:00:00\u001a\b20230916 \u0000*\u00035500\u0000\u0012\u001d\r\u00e9\u00d8\u0012\u00c2\u0015\u00ef:\u0092\u00c2\u001d\u0000\u0000VC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c4\u00e8\u0097\u00a8\u0006B\b\u001a\u0006XR7697" + }, + { + "type": "con_recorrido", + "entity": "\n$d0f61a9a-6682-471e-aa21-2e8ebdc1a417\u001a\u008d\u0001\n/\n\u001015740-701ff27f-2\u0012\b14:00:00\u001a\b20230916 \u0000*\u00035500\u0001\u0012\u0011\b`\u0012\u0006\u0010\u00a7\u00e9\u0097\u00a8\u0006\"\u000534871\u0012\u0011\ba\u0012\u0006\u0010\u00bd\u00e9\u0097\u00a8\u0006\"\u000534872\u0012\u0011\bb\u0012\u0006\u0010\u008c\u00ea\u0097\u00a8\u0006\"\u000534873\u0012\u0011\bc\u0012\u0006\u0010\u00c0\u00ea\u0097\u00a8\u0006\"\u000542077\u001a\b\u001a\u0006ZT3808 \u00be\u00e8\u0097\u00a8\u0006\"`\n/\n\u001015740-701ff27f-2\u0012\b14:00:00\u001a\b20230916 \u0000*\u00035500\u0001\u0012\u001d\r\u00cb\u00cb\u0013\u00c2\u0015h\f\u0092\u00c2\u001d\u0000\u0000tC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u00000A(\u00be\u00e8\u0097\u00a8\u0006B\b\u001a\u0006ZT3808" + }, + { + "type": "con_recorrido", + "entity": "\n$ed608ff5-e6a0-4ae2-8759-8e0f71d5d492\u001a\u008d\u0001\n/\n\u001015854-701ff27f-2\u0012\b14:01:00\u001a\b20230916 \u0000*\u00035510\u0001\u0012\u0011\by\u0012\u0006\u0010\u00f8\u00e7\u0097\u00a8\u0006\"\u000534560\u0012\u0011\bz\u0012\u0006\u0010\u00a4\u00e8\u0097\u00a8\u0006\"\u000542273\u0012\u0011\b{\u0012\u0006\u0010\u00ac\u00e8\u0097\u00a8\u0006\"\u000534415\u0012\u0011\b|\u0012\u0006\u0010\u0091\u00e9\u0097\u00a8\u0006\"\u000542077\u001a\b\u001a\u0006CDSZ11 \u00eb\u00e7\u0097\u00a8\u0006\"`\n/\n\u001015854-701ff27f-2\u0012\b14:01:00\u001a\b20230916 \u0000*\u00035510\u0001\u0012\u001d\rA\u00d1\u0013\u00c2\u0015\u0080\n\u0092\u00c2\u001d\u0000\u0000PB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00eb\u00e7\u0097\u00a8\u0006B\b\u001a\u0006CDSZ11" + }, + { + "type": "con_recorrido", + "entity": "\n$d2f12613-b5df-4a18-9c62-7ffb16db5c4f\u001a\u00d4\n\n/\n\u001015799-701ff27f-2\u0012\b14:41:00\u001a\b20230916 \u0000*\u00035510\u0000\u0012\u0011\b<\u0012\u0006\u0010\u00aa\u00e9\u0097\u00a8\u0006\"\u000538520\u0012\u0011\b=\u0012\u0006\u0010\u00d9\u00e9\u0097\u00a8\u0006\"\u000538521\u0012\u0011\b>\u0012\u0006\u0010\u008c\u00ea\u0097\u00a8\u0006\"\u000538522\u0012\u0011\b?\u0012\u0006\u0010\u00c0\u00ea\u0097\u00a8\u0006\"\u000538523\u0012\u0011\b@\u0012\u0006\u0010\u00f6\u00ea\u0097\u00a8\u0006\"\u000538524\u0012\u0011\bA\u0012\u0006\u0010\u00a8\u00eb\u0097\u00a8\u0006\"\u000538525\u0012\u0011\bB\u0012\u0006\u0010\u00dc\u00eb\u0097\u00a8\u0006\"\u000538526\u0012\u0011\bC\u0012\u0006\u0010\u008d\u00ec\u0097\u00a8\u0006\"\u000538527\u0012\u0011\bD\u0012\u0006\u0010\u00e5\u00ec\u0097\u00a8\u0006\"\u000538528\u0012\u0011\bE\u0012\u0006\u0010\u00d5\u00ed\u0097\u00a8\u0006\"\u000538529\u0012\u0011\bF\u0012\u0006\u0010\u00a3\u00ef\u0097\u00a8\u0006\"\u000538530\u0012\u0014\bG\u0012\u0006\u0010\u00b0\u00ef\u0097\u00a8\u0006\"\b16005209\u0012\u0011\bH\u0012\u0006\u0010\u0095\u00f1\u0097\u00a8\u0006\"\u000538531\u0012\u0013\bI\u0012\u0006\u0010\u00cb\u00f1\u0097\u00a8\u0006\"\u00078921285\u0012\u0011\bJ\u0012\u0006\u0010\u00b7\u00f2\u0097\u00a8\u0006\"\u000538532\u0012\u0011\bK\u0012\u0006\u0010\u00ea\u00f2\u0097\u00a8\u0006\"\u000538533\u0012\u0011\bL\u0012\u0006\u0010\u00a0\u00f3\u0097\u00a8\u0006\"\u000538534\u0012\u0011\bM\u0012\u0006\u0010\u00cf\u00f3\u0097\u00a8\u0006\"\u000538535\u0012\u0011\bN\u0012\u0006\u0010\u008b\u00f4\u0097\u00a8\u0006\"\u000538536\u0012\u0013\bO\u0012\u0006\u0010\u00b3\u00f4\u0097\u00a8\u0006\"\u00074838437\u0012\u0011\bP\u0012\u0006\u0010\u00e8\u00f4\u0097\u00a8\u0006\"\u000545085\u0012\u0011\bQ\u0012\u0006\u0010\u00ba\u00f5\u0097\u00a8\u0006\"\u000545086\u0012\u0011\bR\u0012\u0006\u0010\u00f5\u00f5\u0097\u00a8\u0006\"\u000538539\u0012\u0011\bS\u0012\u0006\u0010\u00af\u00f6\u0097\u00a8\u0006\"\u000538540\u0012\u0011\bT\u0012\u0006\u0010\u0082\u00f7\u0097\u00a8\u0006\"\u000538544\u0012\u0011\bU\u0012\u0006\u0010\u00c0\u00f7\u0097\u00a8\u0006\"\u000538545\u0012\u0011\bV\u0012\u0006\u0010\u00ab\u00f8\u0097\u00a8\u0006\"\u000538546\u0012\u0011\bW\u0012\u0006\u0010\u00f0\u00f8\u0097\u00a8\u0006\"\u000538547\u0012\u0011\bX\u0012\u0006\u0010\u00b2\u00fa\u0097\u00a8\u0006\"\u000538550\u0012\u0011\bY\u0012\u0006\u0010\u0085\u00fc\u0097\u00a8\u0006\"\u000538552\u0012\u0011\bZ\u0012\u0006\u0010\u00e4\u00fc\u0097\u00a8\u0006\"\u000549359\u0012\u0011\b[\u0012\u0006\u0010\u00a1\u00fd\u0097\u00a8\u0006\"\u000549360\u0012\u0011\b\\\u0012\u0006\u0010\u00ac\u00fe\u0097\u00a8\u0006\"\u000549361\u0012\u0011\b]\u0012\u0006\u0010\u00cc\u00fe\u0097\u00a8\u0006\"\u000549362\u0012\u0011\b^\u0012\u0006\u0010\u0086\u00ff\u0097\u00a8\u0006\"\u000549363\u0012\u0011\b_\u0012\u0006\u0010\u00c7\u00ff\u0097\u00a8\u0006\"\u000549364\u0012\u0011\b`\u0012\u0006\u0010\u0082\u0080\u0098\u00a8\u0006\"\u000549365\u0012\u0011\ba\u0012\u0006\u0010\u00d5\u0080\u0098\u00a8\u0006\"\u000538560\u0012\u0011\bb\u0012\u0006\u0010\u0083\u0081\u0098\u00a8\u0006\"\u000542857\u0012\u0011\bc\u0012\u0006\u0010\u00ae\u0081\u0098\u00a8\u0006\"\u000538562\u0012\u0011\bd\u0012\u0006\u0010\u00ee\u0081\u0098\u00a8\u0006\"\u000538563\u0012\u0011\be\u0012\u0006\u0010\u00a5\u0082\u0098\u00a8\u0006\"\u000538564\u0012\u0011\bf\u0012\u0006\u0010\u00ad\u0083\u0098\u00a8\u0006\"\u000538565\u0012\u0011\bg\u0012\u0006\u0010\u0088\u0084\u0098\u00a8\u0006\"\u000537448\u0012\u0011\bh\u0012\u0006\u0010\u00b8\u0084\u0098\u00a8\u0006\"\u000538566\u0012\u0011\bi\u0012\u0006\u0010\u00e9\u0084\u0098\u00a8\u0006\"\u000538567\u0012\u0011\bj\u0012\u0006\u0010\u00b2\u0085\u0098\u00a8\u0006\"\u000538568\u0012\u0011\bk\u0012\u0006\u0010\u00df\u0085\u0098\u00a8\u0006\"\u000538569\u0012\u0011\bl\u0012\u0006\u0010\u00a4\u0086\u0098\u00a8\u0006\"\u000538570\u0012\u0011\bm\u0012\u0006\u0010\u00ff\u0086\u0098\u00a8\u0006\"\u000538571\u0012\u0011\bn\u0012\u0006\u0010\u00d8\u0087\u0098\u00a8\u0006\"\u000538572\u0012\u0011\bo\u0012\u0006\u0010\u0085\u008a\u0098\u00a8\u0006\"\u000538393\u0012\u0011\bp\u0012\u0006\u0010\u00b7\u008b\u0098\u00a8\u0006\"\u000538395\u0012\u0011\bq\u0012\u0006\u0010\u00fd\u008b\u0098\u00a8\u0006\"\u000538396\u0012\u0011\br\u0012\u0006\u0010\u00f8\u008c\u0098\u00a8\u0006\"\u000538397\u0012\u0011\bs\u0012\u0006\u0010\u00ee\u008d\u0098\u00a8\u0006\"\u000541928\u0012\u0011\bt\u0012\u0006\u0010\u00d0\u008e\u0098\u00a8\u0006\"\u000541929\u0012\u0011\bu\u0012\u0006\u0010\u00a8\u0091\u0098\u00a8\u0006\"\u000540543\u0012\u0011\bv\u0012\u0006\u0010\u00ba\u0091\u0098\u00a8\u0006\"\u000541943\u0012\u0011\bw\u0012\u0006\u0010\u008b\u0096\u0098\u00a8\u0006\"\u000542046\u0012\u0011\bx\u0012\u0006\u0010\u008c\u0097\u0098\u00a8\u0006\"\u000542047\u0012\u0011\by\u0012\u0006\u0010\u00c1\u0099\u0098\u00a8\u0006\"\u000542049\u0012\u0011\bz\u0012\u0006\u0010\u00b9\u009a\u0098\u00a8\u0006\"\u000542050\u0012\u0011\b{\u0012\u0006\u0010\u0097\u009d\u0098\u00a8\u0006\"\u000542052\u0012\u0011\b|\u0012\u0006\u0010\u00f9\u009e\u0098\u00a8\u0006\"\u000542053\u0012\u0011\b}\u0012\u0006\u0010\u0089\u00a0\u0098\u00a8\u0006\"\u000542054\u0012\u0011\b~\u0012\u0006\u0010\u00b3\u00a2\u0098\u00a8\u0006\"\u000542055\u0012\u0011\b\u007f\u0012\u0006\u0010\u00d3\u00a3\u0098\u00a8\u0006\"\u000542056\u001a\b\u001a\u0006DRFP53 \u00c4\u00e8\u0097\u00a8\u0006\"`\n/\n\u001015799-701ff27f-2\u0012\b14:41:00\u001a\b20230916 \u0000*\u00035510\u0000\u0012\u001d\rkJ\u0013\u00c2\u0015\u00ca\u0015\u0092\u00c2\u001d\u0000\u0000\u00a9C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c4\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DRFP53" + }, + { + "type": "con_recorrido", + "entity": "\n$63f616d3-d706-45b6-a1a7-dfb62f33e963\u001a\u0092\u0002\n/\n\u001015796-701ff27f-2\u0012\b13:41:00\u001a\b20230916 \u0000*\u00035510\u0000\u0012\u0011\bu\u0012\u0006\u0010\u00a5\u00e9\u0097\u00a8\u0006\"\u000540543\u0012\u0011\bv\u0012\u0006\u0010\u00ad\u00e9\u0097\u00a8\u0006\"\u000541943\u0012\u0011\bw\u0012\u0006\u0010\u009b\u00eb\u0097\u00a8\u0006\"\u000542046\u0012\u0011\bx\u0012\u0006\u0010\u00ca\u00eb\u0097\u00a8\u0006\"\u000542047\u0012\u0011\by\u0012\u0006\u0010\u00b2\u00ec\u0097\u00a8\u0006\"\u000542049\u0012\u0011\bz\u0012\u0006\u0010\u00d8\u00ec\u0097\u00a8\u0006\"\u000542050\u0012\u0011\b{\u0012\u0006\u0010\u00c1\u00ed\u0097\u00a8\u0006\"\u000542052\u0012\u0011\b|\u0012\u0006\u0010\u00ff\u00ed\u0097\u00a8\u0006\"\u000542053\u0012\u0011\b}\u0012\u0006\u0010\u00a6\u00ee\u0097\u00a8\u0006\"\u000542054\u0012\u0011\b~\u0012\u0006\u0010\u00f1\u00ee\u0097\u00a8\u0006\"\u000542055\u0012\u0011\b\u007f\u0012\u0006\u0010\u0098\u00ef\u0097\u00a8\u0006\"\u000542056\u001a\b\u001a\u0006DRFP70 \u00c4\u00e8\u0097\u00a8\u0006\"`\n/\n\u001015796-701ff27f-2\u0012\b13:41:00\u001a\b20230916 \u0000*\u00035510\u0000\u0012\u001d\r\u001d\u00db\u0012\u00c2\u0015\u00dc@\u0092\u00c2\u001d\u0000\u0000\u0000C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u00d0A(\u00c4\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DRFP70" + }, + { + "type": "con_recorrido", + "entity": "\n$8ef64122-708c-43fa-b6da-6de529a4cf81\u001a\u009d\b\n/\n\u001015855-701ff27f-2\u0012\b14:21:00\u001a\b20230916 \u0000*\u00035510\u0001\u0012\u0011\bI\u0012\u0006\u0010\u00c3\u00e8\u0097\u00a8\u0006\"\u000545068\u0012\u0011\bJ\u0012\u0006\u0010\u00c2\u00e9\u0097\u00a8\u0006\"\u000537480\u0012\u0011\bK\u0012\u0006\u0010\u0082\u00ea\u0097\u00a8\u0006\"\u000537477\u0012\u0011\bL\u0012\u0006\u0010\u00c8\u00ea\u0097\u00a8\u0006\"\u000540848\u0012\u0011\bM\u0012\u0006\u0010\u009e\u00eb\u0097\u00a8\u0006\"\u00052-Apr\u0012\u0011\bN\u0012\u0006\u0010\u00d8\u00eb\u0097\u00a8\u0006\"\u000539728\u0012\u0011\bO\u0012\u0006\u0010\u00ba\u00ec\u0097\u00a8\u0006\"\u000539729\u0012\u0011\bP\u0012\u0006\u0010\u00d2\u00ec\u0097\u00a8\u0006\"\u000539730\u0012\u0011\bQ\u0012\u0006\u0010\u00b8\u00ed\u0097\u00a8\u0006\"\u000542200\u0012\u0011\bR\u0012\u0006\u0010\u00e4\u00ed\u0097\u00a8\u0006\"\u000542203\u0012\u0011\bS\u0012\u0006\u0010\u009a\u00ee\u0097\u00a8\u0006\"\u000542204\u0012\u0011\bT\u0012\u0006\u0010\u00c3\u00ee\u0097\u00a8\u0006\"\u000542205\u0012\u0011\bU\u0012\u0006\u0010\u00fe\u00ee\u0097\u00a8\u0006\"\u000542201\u0012\u0011\bV\u0012\u0006\u0010\u00eb\u00f0\u0097\u00a8\u0006\"\u000542206\u0012\u0011\bW\u0012\u0006\u0010\u00a8\u00f1\u0097\u00a8\u0006\"\u000542207\u0012\u0011\bX\u0012\u0006\u0010\u00e2\u00f1\u0097\u00a8\u0006\"\u000542208\u0012\u0011\bY\u0012\u0006\u0010\u00dd\u00f2\u0097\u00a8\u0006\"\u000542564\u0012\u0011\bZ\u0012\u0006\u0010\u00c5\u00f3\u0097\u00a8\u0006\"\u000542214\u0012\u0011\b[\u0012\u0006\u0010\u00ae\u00f4\u0097\u00a8\u0006\"\u000542209\u0012\u0011\b\\\u0012\u0006\u0010\u00a4\u00f5\u0097\u00a8\u0006\"\u000542210\u0012\u0011\b]\u0012\u0006\u0010\u00e2\u00f6\u0097\u00a8\u0006\"\u000542215\u0012\u0011\b^\u0012\u0006\u0010\u0081\u00f7\u0097\u00a8\u0006\"\u000542216\u0012\u0011\b_\u0012\u0006\u0010\u00ac\u00f7\u0097\u00a8\u0006\"\u000542217\u0012\u0011\b`\u0012\u0006\u0010\u00fb\u00f7\u0097\u00a8\u0006\"\u000542218\u0012\u0011\ba\u0012\u0006\u0010\u00a0\u00f8\u0097\u00a8\u0006\"\u000542219\u0012\u0011\bb\u0012\u0006\u0010\u0096\u00f9\u0097\u00a8\u0006\"\u000542220\u0012\u0011\bc\u0012\u0006\u0010\u00c7\u00f9\u0097\u00a8\u0006\"\u000542221\u0012\u0011\bd\u0012\u0006\u0010\u0091\u00fa\u0097\u00a8\u0006\"\u000542222\u0012\u0011\be\u0012\u0006\u0010\u00dd\u00fa\u0097\u00a8\u0006\"\u000542223\u0012\u0011\bf\u0012\u0006\u0010\u00fd\u00fa\u0097\u00a8\u0006\"\u000542224\u0012\u0011\bg\u0012\u0006\u0010\u00d4\u00fb\u0097\u00a8\u0006\"\u000542225\u0012\u0011\bh\u0012\u0006\u0010\u00a4\u00fc\u0097\u00a8\u0006\"\u000542226\u0012\u0011\bi\u0012\u0006\u0010\u00df\u00fc\u0097\u00a8\u0006\"\u000542227\u0012\u0011\bj\u0012\u0006\u0010\u00c4\u00fd\u0097\u00a8\u0006\"\u000542228\u0012\u0011\bk\u0012\u0006\u0010\u00f8\u00fd\u0097\u00a8\u0006\"\u000542229\u0012\u0011\bl\u0012\u0006\u0010\u00dc\u00fe\u0097\u00a8\u0006\"\u000542230\u0012\u0011\bm\u0012\u0006\u0010\u0092\u00ff\u0097\u00a8\u0006\"\u000542231\u0012\u0011\bn\u0012\u0006\u0010\u00fb\u00ff\u0097\u00a8\u0006\"\u000542232\u0012\u0011\bo\u0012\u0006\u0010\u00f0\u0080\u0098\u00a8\u0006\"\u000542233\u0012\u0011\bp\u0012\u0006\u0010\u00a8\u0081\u0098\u00a8\u0006\"\u000542234\u0012\u0011\bq\u0012\u0006\u0010\u008b\u0082\u0098\u00a8\u0006\"\u000542235\u0012\u0011\br\u0012\u0006\u0010\u00b6\u0082\u0098\u00a8\u0006\"\u000542211\u0012\u0011\bs\u0012\u0006\u0010\u0083\u0083\u0098\u00a8\u0006\"\u000549203\u0012\u0011\bt\u0012\u0006\u0010\u00d3\u0083\u0098\u00a8\u0006\"\u000549204\u0012\u0011\bu\u0012\u0006\u0010\u00e2\u0083\u0098\u00a8\u0006\"\u000542503\u0012\u0011\bv\u0012\u0006\u0010\u00af\u0084\u0098\u00a8\u0006\"\u000591151\u0012\u0011\bw\u0012\u0006\u0010\u008b\u0085\u0098\u00a8\u0006\"\u000591150\u0012\u0011\bx\u0012\u0006\u0010\u00e8\u0085\u0098\u00a8\u0006\"\u000591145\u0012\u0011\by\u0012\u0006\u0010\u00d9\u0086\u0098\u00a8\u0006\"\u000534560\u0012\u0011\bz\u0012\u0006\u0010\u009d\u0087\u0098\u00a8\u0006\"\u000542273\u0012\u0011\b{\u0012\u0006\u0010\u00ab\u0087\u0098\u00a8\u0006\"\u000534415\u0012\u0011\b|\u0012\u0006\u0010\u00d1\u0088\u0098\u00a8\u0006\"\u000542077\u001a\b\u001a\u0006DWVP19 \u00c3\u00e8\u0097\u00a8\u0006\"`\n/\n\u001015855-701ff27f-2\u0012\b14:21:00\u001a\b20230916 \u0000*\u00035510\u0001\u0012\u001d\r\u00d3M\u0013\u00c2\u0015\u00a5\u0017\u0092\u00c2\u001d\u0000\u0000nC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c3\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DWVP19" + }, + { + "type": "con_recorrido", + "entity": "\n$8d00f8c6-c89a-4106-92ad-2e1552cabeaa\u001a\u00dc\f\n/\n\u001016066-701ff27f-2\u0012\b15:02:00\u001a\b20230916 \u0000*\u00035530\u0001\u0012\u0011\b\u0013\u0012\u0006\u0010\u00c6\u00e8\u0097\u00a8\u0006\"\u000549357\u0012\u0011\b\u0014\u0012\u0006\u0010\u00f2\u00e8\u0097\u00a8\u0006\"\u000538771\u0012\u0011\b\u0015\u0012\u0006\u0010\u009c\u00e9\u0097\u00a8\u0006\"\u000538668\u0012\u0011\b\u0016\u0012\u0006\u0010\u0081\u00ea\u0097\u00a8\u0006\"\u000538661\u0012\u0011\b\u0017\u0012\u0006\u0010\u00df\u00ea\u0097\u00a8\u0006\"\u000538657\u0012\u0011\b\u0018\u0012\u0006\u0010\u009d\u00eb\u0097\u00a8\u0006\"\u000538743\u0012\u0011\b\u0019\u0012\u0006\u0010\u00e0\u00eb\u0097\u00a8\u0006\"\u000538652\u0012\u0011\b\u001a\u0012\u0006\u0010\u00a0\u00ec\u0097\u00a8\u0006\"\u000538721\u0012\u0011\b\u001b\u0012\u0006\u0010\u00d9\u00ec\u0097\u00a8\u0006\"\u000538659\u0012\u0011\b\u001c\u0012\u0006\u0010\u00b1\u00ed\u0097\u00a8\u0006\"\u000538674\u0012\u0011\b\u001d\u0012\u0006\u0010\u00f4\u00ed\u0097\u00a8\u0006\"\u000538649\u0012\u0011\b\u001e\u0012\u0006\u0010\u00b1\u00ee\u0097\u00a8\u0006\"\u000538718\u0012\u0011\b\u001f\u0012\u0006\u0010\u00f9\u00ee\u0097\u00a8\u0006\"\u000538735\u0012\u0011\b \u0012\u0006\u0010\u00ad\u00ef\u0097\u00a8\u0006\"\u000542270\u0012\u0011\b!\u0012\u0006\u0010\u00da\u00ef\u0097\u00a8\u0006\"\u000542271\u0012\u0013\b\"\u0012\u0006\u0010\u009c\u00f0\u0097\u00a8\u0006\"\u00074838438\u0012\u0011\b#\u0012\u0006\u0010\u00a7\u00f1\u0097\u00a8\u0006\"\u000544896\u0012\u0011\b$\u0012\u0006\u0010\u00d6\u00f1\u0097\u00a8\u0006\"\u000544897\u0012\u0011\b%\u0012\u0006\u0010\u009e\u00f2\u0097\u00a8\u0006\"\u000544898\u0012\u0011\b&\u0012\u0006\u0010\u00c5\u00f3\u0097\u00a8\u0006\"\u000540993\u0012\u0014\b'\u0012\u0006\u0010\u00bb\u00f5\u0097\u00a8\u0006\"\b16005188\u0012\u0011\b(\u0012\u0006\u0010\u00bf\u00f7\u0097\u00a8\u0006\"\u000540995\u0012\u0011\b)\u0012\u0006\u0010\u008d\u00f8\u0097\u00a8\u0006\"\u000540996\u0012\u0011\b*\u0012\u0006\u0010\u00e0\u00f8\u0097\u00a8\u0006\"\u000540997\u0012\u0011\b+\u0012\u0006\u0010\u009f\u00f9\u0097\u00a8\u0006\"\u000539614\u0012\u0011\b,\u0012\u0006\u0010\u00d4\u00f9\u0097\u00a8\u0006\"\u000539615\u0012\u0011\b-\u0012\u0006\u0010\u008a\u00fa\u0097\u00a8\u0006\"\u000539616\u0012\u0011\b.\u0012\u0006\u0010\u00c7\u00fa\u0097\u00a8\u0006\"\u000539617\u0012\u0011\b/\u0012\u0006\u0010\u0089\u00fb\u0097\u00a8\u0006\"\u000539618\u0012\u0011\b0\u0012\u0006\u0010\u00bd\u00fb\u0097\u00a8\u0006\"\u000539619\u0012\u0011\b1\u0012\u0006\u0010\u00ea\u00fb\u0097\u00a8\u0006\"\u000539620\u0012\u0011\b2\u0012\u0006\u0010\u00bc\u00fc\u0097\u00a8\u0006\"\u000539621\u0012\u0011\b3\u0012\u0006\u0010\u00f6\u00fc\u0097\u00a8\u0006\"\u000538281\u0012\u0011\b4\u0012\u0006\u0010\u00b9\u00fd\u0097\u00a8\u0006\"\u000537506\u0012\u0011\b5\u0012\u0006\u0010\u00f5\u00fd\u0097\u00a8\u0006\"\u000545068\u0012\u0011\b6\u0012\u0006\u0010\u008b\u00ff\u0097\u00a8\u0006\"\u000537480\u0012\u0011\b7\u0012\u0006\u0010\u00db\u00ff\u0097\u00a8\u0006\"\u000537477\u0012\u0011\b8\u0012\u0006\u0010\u00b5\u0080\u0098\u00a8\u0006\"\u000540848\u0012\u0011\b9\u0012\u0006\u0010\u00af\u0081\u0098\u00a8\u0006\"\u00052-Apr\u0012\u0011\b:\u0012\u0006\u0010\u00f9\u0081\u0098\u00a8\u0006\"\u000539728\u0012\u0011\b;\u0012\u0006\u0010\u0087\u0083\u0098\u00a8\u0006\"\u000539729\u0012\u0011\b<\u0012\u0006\u0010\u00ab\u0083\u0098\u00a8\u0006\"\u000539730\u0012\u0011\b=\u0012\u0006\u0010\u00c4\u0084\u0098\u00a8\u0006\"\u000542200\u0012\u0011\b>\u0012\u0006\u0010\u008e\u0085\u0098\u00a8\u0006\"\u000542203\u0012\u0011\b?\u0012\u0006\u0010\u00f4\u0085\u0098\u00a8\u0006\"\u000542204\u0012\u0011\b@\u0012\u0006\u0010\u00a9\u0086\u0098\u00a8\u0006\"\u000542205\u0012\u0011\bA\u0012\u0006\u0010\u00c6\u008a\u0098\u00a8\u0006\"\u000542206\u0012\u0011\bB\u0012\u0006\u0010\u00bf\u008b\u0098\u00a8\u0006\"\u000542207\u0012\u0011\bC\u0012\u0006\u0010\u00b4\u008c\u0098\u00a8\u0006\"\u000542208\u0012\u0011\bD\u0012\u0006\u0010\u00c0\u008e\u0098\u00a8\u0006\"\u000542564\u0012\u0011\bE\u0012\u0006\u0010\u00b0\u0090\u0098\u00a8\u0006\"\u000542214\u0012\u0011\bF\u0012\u0006\u0010\u00a5\u0092\u0098\u00a8\u0006\"\u000542209\u0012\u0011\bG\u0012\u0006\u0010\u00d6\u0094\u0098\u00a8\u0006\"\u000542210\u0012\u0011\bH\u0012\u0006\u0010\u00e9\u0098\u0098\u00a8\u0006\"\u000542215\u0012\u0011\bI\u0012\u0006\u0010\u00c6\u0099\u0098\u00a8\u0006\"\u000542216\u0012\u0011\bJ\u0012\u0006\u0010\u00c7\u009a\u0098\u00a8\u0006\"\u000542217\u0012\u0011\bK\u0012\u0006\u0010\u00bb\u009c\u0098\u00a8\u0006\"\u000542218\u0012\u0011\bL\u0012\u0006\u0010\u00d1\u009d\u0098\u00a8\u0006\"\u000542219\u0012\u0011\bM\u0012\u0006\u0010\u00ba\u00a0\u0098\u00a8\u0006\"\u000542220\u0012\u0011\bN\u0012\u0006\u0010\u00e6\u00a1\u0098\u00a8\u0006\"\u000542221\u0012\u0011\bO\u0012\u0006\u0010\u00f3\u00a3\u0098\u00a8\u0006\"\u000542222\u0012\u0011\bP\u0012\u0006\u0010\u0095\u00a6\u0098\u00a8\u0006\"\u000542223\u0012\u0011\bQ\u0012\u0006\u0010\u0092\u00a7\u0098\u00a8\u0006\"\u000542224\u0012\u0011\bR\u0012\u0006\u0010\u00f4\u00a9\u0098\u00a8\u0006\"\u000542225\u0012\u0011\bS\u0012\u0006\u0010\u00b5\u00ac\u0098\u00a8\u0006\"\u000542226\u0012\u0011\bT\u0012\u0006\u0010\u00cd\u00ae\u0098\u00a8\u0006\"\u000542227\u0012\u0011\bU\u0012\u0006\u0010\u00a5\u00b2\u0098\u00a8\u0006\"\u000542228\u0012\u0011\bV\u0012\u0006\u0010\u00a1\u00b4\u0098\u00a8\u0006\"\u000542229\u0012\u0011\bW\u0012\u0006\u0010\u00a5\u00b8\u0098\u00a8\u0006\"\u000542230\u0012\u0011\bX\u0012\u0006\u0010\u00c6\u00ba\u0098\u00a8\u0006\"\u000542231\u0012\u0011\bY\u0012\u0006\u0010\u009a\u00bf\u0098\u00a8\u0006\"\u000542232\u0012\u0011\bZ\u0012\u0006\u0010\u00d8\u00c7\u0098\u00a8\u0006\"\u000542234\u0012\u0011\b[\u0012\u0006\u0010\u00fb\u00cc\u0098\u00a8\u0006\"\u000542235\u0012\u0011\b\\\u0012\u0006\u0010\u00b5\u00cf\u0098\u00a8\u0006\"\u000542211\u0012\u0011\b]\u0012\u0006\u0010\u00c0\u00d6\u0098\u00a8\u0006\"\u000591142\u0012\u0011\b^\u0012\u0006\u0010\u00d9\u00e2\u0098\u00a8\u0006\"\u000591144\u0012\u0011\b_\u0012\u0006\u0010\u00c4\u00e3\u0098\u00a8\u0006\"\u000591150\u0012\u0011\b`\u0012\u0006\u0010\u00b6\u00ec\u0098\u00a8\u0006\"\u000591145\u0012\u0011\ba\u0012\u0006\u0010\u00fd\u00f5\u0098\u00a8\u0006\"\u000534560\u0012\u0011\bb\u0012\u0006\u0010\u009d\u00fc\u0098\u00a8\u0006\"\u000542273\u0012\u0011\bc\u0012\u0006\u0010\u00bd\u00fd\u0098\u00a8\u0006\"\u000534415\u0012\u0011\bd\u0012\u0006\u0010\u0095\u008f\u0099\u00a8\u0006\"\u000542077\u001a\b\u001a\u0006BBZF96 \u00c6\u00e8\u0097\u00a8\u0006\"`\n/\n\u001016066-701ff27f-2\u0012\b15:02:00\u001a\b20230916 \u0000*\u00035530\u0001\u0012\u001d\r\u00b7\u00e5\u0012\u00c2\u0015K8\u0092\u00c2\u001d\u0000\u00008C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\bB(\u00c6\u00e8\u0097\u00a8\u0006B\b\u001a\u0006BBZF96" + }, + { + "type": "con_recorrido", + "entity": "\n$394a4f8b-4ea6-4e85-800f-244b753e460d\u001a\u00d6\b\n/\n\u001016065-701ff27f-2\u0012\b14:42:00\u001a\b20230916 \u0000*\u00035530\u0001\u0012\u0011\b.\u0012\u0006\u0010\u00a3\u00e8\u0097\u00a8\u0006\"\u000539617\u0012\u0011\b/\u0012\u0006\u0010\u00e0\u00e8\u0097\u00a8\u0006\"\u000539618\u0012\u0011\b0\u0012\u0006\u0010\u0091\u00e9\u0097\u00a8\u0006\"\u000539619\u0012\u0011\b1\u0012\u0006\u0010\u00b9\u00e9\u0097\u00a8\u0006\"\u000539620\u0012\u0011\b2\u0012\u0006\u0010\u0082\u00ea\u0097\u00a8\u0006\"\u000539621\u0012\u0011\b3\u0012\u0006\u0010\u00b4\u00ea\u0097\u00a8\u0006\"\u000538281\u0012\u0011\b4\u0012\u0006\u0010\u00ec\u00ea\u0097\u00a8\u0006\"\u000537506\u0012\u0011\b5\u0012\u0006\u0010\u009d\u00eb\u0097\u00a8\u0006\"\u000545068\u0012\u0011\b6\u0012\u0006\u0010\u0094\u00ec\u0097\u00a8\u0006\"\u000537480\u0012\u0011\b7\u0012\u0006\u0010\u00d1\u00ec\u0097\u00a8\u0006\"\u000537477\u0012\u0011\b8\u0012\u0006\u0010\u0095\u00ed\u0097\u00a8\u0006\"\u000540848\u0012\u0011\b9\u0012\u0006\u0010\u00ec\u00ed\u0097\u00a8\u0006\"\u00052-Apr\u0012\u0011\b:\u0012\u0006\u0010\u00a0\u00ee\u0097\u00a8\u0006\"\u000539728\u0012\u0011\b;\u0012\u0006\u0010\u0080\u00ef\u0097\u00a8\u0006\"\u000539729\u0012\u0011\b<\u0012\u0006\u0010\u0097\u00ef\u0097\u00a8\u0006\"\u000539730\u0012\u0011\b=\u0012\u0006\u0010\u00f9\u00ef\u0097\u00a8\u0006\"\u000542200\u0012\u0011\b>\u0012\u0006\u0010\u00a7\u00f0\u0097\u00a8\u0006\"\u000542203\u0012\u0011\b?\u0012\u0006\u0010\u00e5\u00f0\u0097\u00a8\u0006\"\u000542204\u0012\u0011\b@\u0012\u0006\u0010\u0084\u00f1\u0097\u00a8\u0006\"\u000542205\u0012\u0011\bA\u0012\u0006\u0010\u00b0\u00f3\u0097\u00a8\u0006\"\u000542206\u0012\u0011\bB\u0012\u0006\u0010\u00ee\u00f3\u0097\u00a8\u0006\"\u000542207\u0012\u0011\bC\u0012\u0006\u0010\u00a9\u00f4\u0097\u00a8\u0006\"\u000542208\u0012\u0011\bD\u0012\u0006\u0010\u00a9\u00f5\u0097\u00a8\u0006\"\u000542564\u0012\u0011\bE\u0012\u0006\u0010\u0096\u00f6\u0097\u00a8\u0006\"\u000542214\u0012\u0011\bF\u0012\u0006\u0010\u0081\u00f7\u0097\u00a8\u0006\"\u000542209\u0012\u0011\bG\u0012\u0006\u0010\u00ff\u00f7\u0097\u00a8\u0006\"\u000542210\u0012\u0011\bH\u0012\u0006\u0010\u00ca\u00f9\u0097\u00a8\u0006\"\u000542215\u0012\u0011\bI\u0012\u0006\u0010\u00ec\u00f9\u0097\u00a8\u0006\"\u000542216\u0012\u0011\bJ\u0012\u0006\u0010\u009a\u00fa\u0097\u00a8\u0006\"\u000542217\u0012\u0011\bK\u0012\u0006\u0010\u00ef\u00fa\u0097\u00a8\u0006\"\u000542218\u0012\u0011\bL\u0012\u0006\u0010\u00a2\u00fb\u0097\u00a8\u0006\"\u000542219\u0012\u0011\bM\u0012\u0006\u0010\u0097\u00fc\u0097\u00a8\u0006\"\u000542220\u0012\u0011\bN\u0012\u0006\u0010\u00cc\u00fc\u0097\u00a8\u0006\"\u000542221\u0012\u0011\bO\u0012\u0006\u0010\u009d\u00fd\u0097\u00a8\u0006\"\u000542222\u0012\u0011\bP\u0012\u0006\u0010\u00f2\u00fd\u0097\u00a8\u0006\"\u000542223\u0012\u0011\bQ\u0012\u0006\u0010\u0095\u00fe\u0097\u00a8\u0006\"\u000542224\u0012\u0011\bR\u0012\u0006\u0010\u00f6\u00fe\u0097\u00a8\u0006\"\u000542225\u0012\u0011\bS\u0012\u0006\u0010\u00ca\u00ff\u0097\u00a8\u0006\"\u000542226\u0012\u0011\bT\u0012\u0006\u0010\u0091\u0080\u0098\u00a8\u0006\"\u000542227\u0012\u0011\bU\u0012\u0006\u0010\u0083\u0081\u0098\u00a8\u0006\"\u000542228\u0012\u0011\bV\u0012\u0006\u0010\u00bd\u0081\u0098\u00a8\u0006\"\u000542229\u0012\u0011\bW\u0012\u0006\u0010\u00af\u0082\u0098\u00a8\u0006\"\u000542230\u0012\u0011\bX\u0012\u0006\u0010\u00ec\u0082\u0098\u00a8\u0006\"\u000542231\u0012\u0011\bY\u0012\u0006\u0010\u00e4\u0083\u0098\u00a8\u0006\"\u000542232\u0012\u0011\bZ\u0012\u0006\u0010\u00ac\u0085\u0098\u00a8\u0006\"\u000542234\u0012\u0011\b[\u0012\u0006\u0010\u009e\u0086\u0098\u00a8\u0006\"\u000542235\u0012\u0011\b\\\u0012\u0006\u0010\u00d0\u0086\u0098\u00a8\u0006\"\u000542211\u0012\u0011\b]\u0012\u0006\u0010\u00da\u0087\u0098\u00a8\u0006\"\u000591142\u0012\u0011\b^\u0012\u0006\u0010\u00af\u0089\u0098\u00a8\u0006\"\u000591144\u0012\u0011\b_\u0012\u0006\u0010\u00bd\u0089\u0098\u00a8\u0006\"\u000591150\u0012\u0011\b`\u0012\u0006\u0010\u00c6\u008a\u0098\u00a8\u0006\"\u000591145\u0012\u0011\ba\u0012\u0006\u0010\u00cd\u008b\u0098\u00a8\u0006\"\u000534560\u0012\u0011\bb\u0012\u0006\u0010\u009e\u008c\u0098\u00a8\u0006\"\u000542273\u0012\u0011\bc\u0012\u0006\u0010\u00ae\u008c\u0098\u00a8\u0006\"\u000534415\u0012\u0011\bd\u0012\u0006\u0010\u00fb\u008d\u0098\u00a8\u0006\"\u000542077\u001a\b\u001a\u0006DRFP68 \u00a0\u00e8\u0097\u00a8\u0006\"`\n/\n\u001016065-701ff27f-2\u0012\b14:42:00\u001a\b20230916 \u0000*\u00035530\u0001\u0012\u001d\rj@\u0013\u00c2\u0015\f\u0019\u0092\u00c2\u001d\u0000\u0000\u0016C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000XB(\u00a0\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DRFP68" + }, + { + "type": "con_recorrido", + "entity": "\n$7513505f-8562-49f0-8820-0a0ddced614d\u001a\u00d3\u000e\n/\n\u001016068-701ff27f-2\u0012\b15:42:00\u001a\b20230916 \u0000*\u00035530\u0001\u0012\u0011\b\u0006\u0012\u0006\u0010\u00b9\u00e8\u0097\u00a8\u0006\"\u000540349\u0012\u0011\b\u0007\u0012\u0006\u0010\u00dd\u00e8\u0097\u00a8\u0006\"\u000540350\u0012\u0011\b\b\u0012\u0006\u0010\u0097\u00e9\u0097\u00a8\u0006\"\u000540351\u0012\u0011\b\t\u0012\u0006\u0010\u00f5\u00e9\u0097\u00a8\u0006\"\u000540352\u0012\u0011\b\n\u0012\u0006\u0010\u00e8\u00ea\u0097\u00a8\u0006\"\u000542082\u0012\u0011\b\u000b\u0012\u0006\u0010\u0088\u00ec\u0097\u00a8\u0006\"\u000549107\u0012\u0011\b\f\u0012\u0006\u0010\u00ca\u00ec\u0097\u00a8\u0006\"\u000538560\u0012\u0011\b\r\u0012\u0006\u0010\u00e2\u00ec\u0097\u00a8\u0006\"\u000538697\u0012\u0011\b\u000e\u0012\u0006\u0010\u00ff\u00ec\u0097\u00a8\u0006\"\u000538646\u0012\u0011\b\u000f\u0012\u0006\u0010\u00ab\u00ed\u0097\u00a8\u0006\"\u000538632\u0012\u0011\b\u0010\u0012\u0006\u0010\u00f7\u00ed\u0097\u00a8\u0006\"\u000538767\u0012\u0011\b\u0011\u0012\u0006\u0010\u00b5\u00ee\u0097\u00a8\u0006\"\u000538768\u0012\u0011\b\u0012\u0012\u0006\u0010\u00e4\u00ee\u0097\u00a8\u0006\"\u000538769\u0012\u0011\b\u0013\u0012\u0006\u0010\u0089\u00ef\u0097\u00a8\u0006\"\u000549357\u0012\u0011\b\u0014\u0012\u0006\u0010\u00b1\u00ef\u0097\u00a8\u0006\"\u000538771\u0012\u0011\b\u0015\u0012\u0006\u0010\u00d8\u00ef\u0097\u00a8\u0006\"\u000538668\u0012\u0011\b\u0016\u0012\u0006\u0010\u00b5\u00f0\u0097\u00a8\u0006\"\u000538661\u0012\u0011\b\u0017\u0012\u0006\u0010\u008d\u00f1\u0097\u00a8\u0006\"\u000538657\u0012\u0011\b\u0018\u0012\u0006\u0010\u00c8\u00f1\u0097\u00a8\u0006\"\u000538743\u0012\u0011\b\u0019\u0012\u0006\u0010\u0088\u00f2\u0097\u00a8\u0006\"\u000538652\u0012\u0011\b\u001a\u0012\u0006\u0010\u00c7\u00f2\u0097\u00a8\u0006\"\u000538721\u0012\u0011\b\u001b\u0012\u0006\u0010\u00ff\u00f2\u0097\u00a8\u0006\"\u000538659\u0012\u0011\b\u001c\u0012\u0006\u0010\u00d7\u00f3\u0097\u00a8\u0006\"\u000538674\u0012\u0011\b\u001d\u0012\u0006\u0010\u009a\u00f4\u0097\u00a8\u0006\"\u000538649\u0012\u0011\b\u001e\u0012\u0006\u0010\u00d8\u00f4\u0097\u00a8\u0006\"\u000538718\u0012\u0011\b\u001f\u0012\u0006\u0010\u00a3\u00f5\u0097\u00a8\u0006\"\u000538735\u0012\u0011\b \u0012\u0006\u0010\u00da\u00f5\u0097\u00a8\u0006\"\u000542270\u0012\u0011\b!\u0012\u0006\u0010\u0088\u00f6\u0097\u00a8\u0006\"\u000542271\u0012\u0013\b\"\u0012\u0006\u0010\u00ce\u00f6\u0097\u00a8\u0006\"\u00074838438\u0012\u0011\b#\u0012\u0006\u0010\u00e5\u00f7\u0097\u00a8\u0006\"\u000544896\u0012\u0011\b$\u0012\u0006\u0010\u0098\u00f8\u0097\u00a8\u0006\"\u000544897\u0012\u0011\b%\u0012\u0006\u0010\u00e8\u00f8\u0097\u00a8\u0006\"\u000544898\u0012\u0011\b&\u0012\u0006\u0010\u00a4\u00fa\u0097\u00a8\u0006\"\u000540993\u0012\u0014\b'\u0012\u0006\u0010\u00c3\u00fc\u0097\u00a8\u0006\"\b16005188\u0012\u0011\b(\u0012\u0006\u0010\u00fe\u00fe\u0097\u00a8\u0006\"\u000540995\u0012\u0011\b)\u0012\u0006\u0010\u00df\u00ff\u0097\u00a8\u0006\"\u000540996\u0012\u0011\b*\u0012\u0006\u0010\u00c7\u0080\u0098\u00a8\u0006\"\u000540997\u0012\u0011\b+\u0012\u0006\u0010\u0097\u0081\u0098\u00a8\u0006\"\u000539614\u0012\u0011\b,\u0012\u0006\u0010\u00db\u0081\u0098\u00a8\u0006\"\u000539615\u0012\u0011\b-\u0012\u0006\u0010\u00a0\u0082\u0098\u00a8\u0006\"\u000539616\u0012\u0011\b.\u0012\u0006\u0010\u00f0\u0082\u0098\u00a8\u0006\"\u000539617\u0012\u0011\b/\u0012\u0006\u0010\u00c6\u0083\u0098\u00a8\u0006\"\u000539618\u0012\u0011\b0\u0012\u0006\u0010\u008b\u0084\u0098\u00a8\u0006\"\u000539619\u0012\u0011\b1\u0012\u0006\u0010\u00c6\u0084\u0098\u00a8\u0006\"\u000539620\u0012\u0011\b2\u0012\u0006\u0010\u00b5\u0085\u0098\u00a8\u0006\"\u000539621\u0012\u0011\b3\u0012\u0006\u0010\u0084\u0086\u0098\u00a8\u0006\"\u000538281\u0012\u0011\b4\u0012\u0006\u0010\u00e0\u0086\u0098\u00a8\u0006\"\u000537506\u0012\u0011\b5\u0012\u0006\u0010\u00b2\u0087\u0098\u00a8\u0006\"\u000545068\u0012\u0011\b6\u0012\u0006\u0010\u0083\u0089\u0098\u00a8\u0006\"\u000537480\u0012\u0011\b7\u0012\u0006\u0010\u00f5\u0089\u0098\u00a8\u0006\"\u000537477\u0012\u0011\b8\u0012\u0006\u0010\u00f7\u008a\u0098\u00a8\u0006\"\u000540848\u0012\u0011\b9\u0012\u0006\u0010\u00a7\u008c\u0098\u00a8\u0006\"\u00052-Apr\u0012\u0011\b:\u0012\u0006\u0010\u0095\u008d\u0098\u00a8\u0006\"\u000539728\u0012\u0011\b;\u0012\u0006\u0010\u00e9\u008e\u0098\u00a8\u0006\"\u000539729\u0012\u0011\b<\u0012\u0006\u0010\u009f\u008f\u0098\u00a8\u0006\"\u000539730\u0012\u0011\b=\u0012\u0006\u0010\u0088\u0091\u0098\u00a8\u0006\"\u000542200\u0012\u0011\b>\u0012\u0006\u0010\u00fc\u0091\u0098\u00a8\u0006\"\u000542203\u0012\u0011\b?\u0012\u0006\u0010\u009b\u0093\u0098\u00a8\u0006\"\u000542204\u0012\u0011\b@\u0012\u0006\u0010\u00ef\u0093\u0098\u00a8\u0006\"\u000542205\u0012\u0011\bA\u0012\u0006\u0010\u00e8\u009a\u0098\u00a8\u0006\"\u000542206\u0012\u0011\bB\u0012\u0006\u0010\u00b7\u009c\u0098\u00a8\u0006\"\u000542207\u0012\u0011\bC\u0012\u0006\u0010\u0083\u009e\u0098\u00a8\u0006\"\u000542208\u0012\u0011\bD\u0012\u0006\u0010\u00e1\u00a1\u0098\u00a8\u0006\"\u000542564\u0012\u0011\bE\u0012\u0006\u0010\u0099\u00a5\u0098\u00a8\u0006\"\u000542214\u0012\u0011\bF\u0012\u0006\u0010\u00ea\u00a8\u0098\u00a8\u0006\"\u000542209\u0012\u0011\bG\u0012\u0006\u0010\u00c0\u00ad\u0098\u00a8\u0006\"\u000542210\u0012\u0011\bH\u0012\u0006\u0010\u008a\u00b6\u0098\u00a8\u0006\"\u000542215\u0012\u0011\bI\u0012\u0006\u0010\u00d5\u00b7\u0098\u00a8\u0006\"\u000542216\u0012\u0011\bJ\u0012\u0006\u0010\u00ef\u00b9\u0098\u00a8\u0006\"\u000542217\u0012\u0011\bK\u0012\u0006\u0010\u0092\u00be\u0098\u00a8\u0006\"\u000542218\u0012\u0011\bL\u0012\u0006\u0010\u00eb\u00c0\u0098\u00a8\u0006\"\u000542219\u0012\u0011\bM\u0012\u0006\u0010\u00c9\u00c7\u0098\u00a8\u0006\"\u000542220\u0012\u0011\bN\u0012\u0006\u0010\u00f2\u00ca\u0098\u00a8\u0006\"\u000542221\u0012\u0011\bO\u0012\u0006\u0010\u00a2\u00d0\u0098\u00a8\u0006\"\u000542222\u0012\u0011\bP\u0012\u0006\u0010\u00a5\u00d6\u0098\u00a8\u0006\"\u000542223\u0012\u0011\bQ\u0012\u0006\u0010\u00fc\u00d8\u0098\u00a8\u0006\"\u000542224\u0012\u0011\bR\u0012\u0006\u0010\u00e9\u00e0\u0098\u00a8\u0006\"\u000542225\u0012\u0011\bS\u0012\u0006\u0010\u00aa\u00e8\u0098\u00a8\u0006\"\u000542226\u0012\u0011\bT\u0012\u0006\u0010\u0094\u00ef\u0098\u00a8\u0006\"\u000542227\u0012\u0011\bU\u0012\u0006\u0010\u00b4\u00fb\u0098\u00a8\u0006\"\u000542228\u0012\u0011\bV\u0012\u0006\u0010\u00ac\u0082\u0099\u00a8\u0006\"\u000542229\u0012\u0011\bW\u0012\u0006\u0010\u00be\u0091\u0099\u00a8\u0006\"\u000542230\u0012\u0011\bX\u0012\u0006\u0010\u00cb\u009a\u0099\u00a8\u0006\"\u000542231\u0012\u0011\bY\u0012\u0006\u0010\u00f3\u00ae\u0099\u00a8\u0006\"\u000542232\u0012\u0011\bZ\u0012\u0006\u0010\u00b8\u00da\u0099\u00a8\u0006\"\u000542234\u0012\u0011\b[\u0012\u0006\u0010\u00f0\u00fa\u0099\u00a8\u0006\"\u000542235\u0012\u0011\b\\\u0012\u0006\u0010\u00dc\u008b\u009a\u00a8\u0006\"\u000542211\u0012\u0011\b]\u0012\u0006\u0010\u0089\u00c4\u009a\u00a8\u0006\"\u000591142\u0012\u0011\b^\u0012\u0006\u0010\u00a1\u00cc\u009b\u00a8\u0006\"\u000591144\u0012\u0011\b_\u0012\u0006\u0010\u009a\u00d8\u009b\u00a8\u0006\"\u000591150\u0012\u0011\b`\u0012\u0006\u0010\u00ca\u00f7\u009c\u00a8\u0006\"\u000591145\u0012\u0011\ba\u0012\u0006\u0010\u0087\u0092\u009f\u00a8\u0006\"\u000534560\u0012\u0011\bb\u0012\u0006\u0010\u00ab\u00ce\u00a1\u00a8\u0006\"\u000542273\u0012\u0011\bc\u0012\u0006\u0010\u00c1\u00a4\u00a2\u00a8\u0006\"\u000534415\u0012\u0011\bd\u0012\u0006\u0010\u00e5\u009e\u00e3\u00a8\u0006\"\u000542077\u001a\b\u001a\u0006GWYY48 \u00a7\u00e8\u0097\u00a8\u0006\"`\n/\n\u001016068-701ff27f-2\u0012\b15:42:00\u001a\b20230916 \u0000*\u00035530\u0001\u0012\u001d\r\u008e\u00d9\u0012\u00c2\u0015\u00b0E\u0092\u00c2\u001d\u0000\u0000\u008fC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u00004B(\u00c5\u00e8\u0097\u00a8\u0006B\b\u001a\u0006GWYY48" + }, + { + "type": "con_recorrido", + "entity": "\n$1e3659a7-3924-43c4-a494-8b01fb5fcc70\u001a\u00a4\b\n/\n\u001016009-701ff27f-2\u0012\b14:59:00\u001a\b20230916 \u0000*\u00035530\u0000\u0012\u0011\b;\u0012\u0006\u0010\u0093\u00e9\u0097\u00a8\u0006\"\u000538514\u0012\u0011\b<\u0012\u0006\u0010\u00b3\u00e9\u0097\u00a8\u0006\"\u000538516\u0012\u0011\b=\u0012\u0006\u0010\u00f1\u00e9\u0097\u00a8\u0006\"\u000538518\u0012\u0011\b>\u0012\u0006\u0010\u00d9\u00ea\u0097\u00a8\u0006\"\u000538520\u0012\u0011\b?\u0012\u0006\u0010\u0082\u00eb\u0097\u00a8\u0006\"\u000538521\u0012\u0011\b@\u0012\u0006\u0010\u00b5\u00eb\u0097\u00a8\u0006\"\u000538522\u0012\u0011\bA\u0012\u0006\u0010\u00e7\u00eb\u0097\u00a8\u0006\"\u000538523\u0012\u0011\bB\u0012\u0006\u0010\u009c\u00ec\u0097\u00a8\u0006\"\u000538524\u0012\u0011\bC\u0012\u0006\u0010\u00cd\u00ec\u0097\u00a8\u0006\"\u000538525\u0012\u0011\bD\u0012\u0006\u0010\u0080\u00ed\u0097\u00a8\u0006\"\u000538526\u0012\u0011\bE\u0012\u0006\u0010\u00b0\u00ed\u0097\u00a8\u0006\"\u000538527\u0012\u0011\bF\u0012\u0006\u0010\u0086\u00ee\u0097\u00a8\u0006\"\u000538528\u0012\u0011\bG\u0012\u0006\u0010\u00fb\u00ee\u0097\u00a8\u0006\"\u000538529\u0012\u0011\bH\u0012\u0006\u0010\u00c3\u00f0\u0097\u00a8\u0006\"\u000538530\u0012\u0014\bI\u0012\u0006\u0010\u00cf\u00f0\u0097\u00a8\u0006\"\b16005209\u0012\u0011\bJ\u0012\u0006\u0010\u00b5\u00f2\u0097\u00a8\u0006\"\u000538531\u0012\u0013\bK\u0012\u0006\u0010\u00eb\u00f2\u0097\u00a8\u0006\"\u00078921285\u0012\u0011\bL\u0012\u0006\u0010\u00d8\u00f3\u0097\u00a8\u0006\"\u000538532\u0012\u0011\bM\u0012\u0006\u0010\u008c\u00f4\u0097\u00a8\u0006\"\u000538533\u0012\u0011\bN\u0012\u0006\u0010\u00c2\u00f4\u0097\u00a8\u0006\"\u000538534\u0012\u0011\bO\u0012\u0006\u0010\u00f3\u00f4\u0097\u00a8\u0006\"\u000538535\u0012\u0011\bP\u0012\u0006\u0010\u00b4\u00f5\u0097\u00a8\u0006\"\u000538536\u0012\u0013\bQ\u0012\u0006\u0010\u00d8\u00f5\u0097\u00a8\u0006\"\u00074838437\u0012\u0011\bR\u0012\u0006\u0010\u0095\u00f6\u0097\u00a8\u0006\"\u000545085\u0012\u0011\bS\u0012\u0006\u0010\u00e1\u00f6\u0097\u00a8\u0006\"\u000545086\u0012\u0011\bT\u0012\u0006\u0010\u009a\u00f7\u0097\u00a8\u0006\"\u000538539\u0012\u0011\bU\u0012\u0006\u0010\u00da\u00f7\u0097\u00a8\u0006\"\u000538540\u0012\u0011\bV\u0012\u0006\u0010\u00a6\u00f8\u0097\u00a8\u0006\"\u000538544\u0012\u0011\bW\u0012\u0006\u0010\u00ed\u00f8\u0097\u00a8\u0006\"\u000538545\u0012\u0011\bX\u0012\u0006\u0010\u00d7\u00f9\u0097\u00a8\u0006\"\u000538546\u0012\u0011\bY\u0012\u0006\u0010\u00de\u00fa\u0097\u00a8\u0006\"\u000538548\u0012\u0011\bZ\u0012\u0006\u0010\u00a9\u00fb\u0097\u00a8\u0006\"\u000538549\u0012\u0011\b[\u0012\u0006\u0010\u00ed\u00fb\u0097\u00a8\u0006\"\u000538550\u0012\u0011\b\\\u0012\u0006\u0010\u00da\u00fc\u0097\u00a8\u0006\"\u000538551\u0012\u0011\b]\u0012\u0006\u0010\u00c5\u00fd\u0097\u00a8\u0006\"\u000538552\u0012\u0011\b^\u0012\u0006\u0010\u00a8\u00fe\u0097\u00a8\u0006\"\u000549359\u0012\u0011\b_\u0012\u0006\u0010\u00ea\u00fe\u0097\u00a8\u0006\"\u000549360\u0012\u0011\b`\u0012\u0006\u0010\u00fa\u00ff\u0097\u00a8\u0006\"\u000549361\u0012\u0011\ba\u0012\u0006\u0010\u0095\u0080\u0098\u00a8\u0006\"\u000549362\u0012\u0011\bb\u0012\u0006\u0010\u00de\u0080\u0098\u00a8\u0006\"\u000549363\u0012\u0011\bc\u0012\u0006\u0010\u009f\u0081\u0098\u00a8\u0006\"\u000549364\u0012\u0011\bd\u0012\u0006\u0010\u00db\u0081\u0098\u00a8\u0006\"\u000549365\u0012\u0011\be\u0012\u0006\u0010\u00ae\u0084\u0098\u00a8\u0006\"\u000541942\u0012\u0011\bf\u0012\u0006\u0010\u00e3\u0085\u0098\u00a8\u0006\"\u000541943\u0012\u0011\bg\u0012\u0006\u0010\u0088\u0087\u0098\u00a8\u0006\"\u000540544\u0012\u0011\bh\u0012\u0006\u0010\u00f7\u0087\u0098\u00a8\u0006\"\u000540545\u0012\u0011\bi\u0012\u0006\u0010\u00cd\u0088\u0098\u00a8\u0006\"\u000540546\u0012\u0011\bj\u0012\u0006\u0010\u0089\u0089\u0098\u00a8\u0006\"\u000540547\u0012\u0011\bk\u0012\u0006\u0010\u00de\u0089\u0098\u00a8\u0006\"\u000540548\u0012\u0011\bl\u0012\u0006\u0010\u00bb\u008a\u0098\u00a8\u0006\"\u000540589\u0012\u0011\bm\u0012\u0006\u0010\u00dd\u008a\u0098\u00a8\u0006\"\u000540590\u0012\u0011\bn\u0012\u0006\u0010\u00eb\u008e\u0098\u00a8\u0006\"\u000541947\u001a\b\u001a\u0006GZRC61 \u00c5\u00e8\u0097\u00a8\u0006\"`\n/\n\u001016009-701ff27f-2\u0012\b14:59:00\u001a\b20230916 \u0000*\u00035530\u0000\u0012\u001d\r4O\u0013\u00c2\u0015\u00ab\u0017\u0092\u00c2\u001d\u0000\u0000pB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c5\u00e8\u0097\u00a8\u0006B\b\u001a\u0006GZRC61" + }, + { + "type": "con_recorrido", + "entity": "\n$e1043ea8-d2ff-4c04-8d8a-d85b537e7e29\u001a\u009c\u0004\n/\n\u001016064-701ff27f-2\u0012\b14:22:00\u001a\b20230916 \u0000*\u00035530\u0001\u0012\u0011\bL\u0012\u0006\u0010\u00ec\u00e8\u0097\u00a8\u0006\"\u000542219\u0012\u0011\bM\u0012\u0006\u0010\u00d5\u00e9\u0097\u00a8\u0006\"\u000542220\u0012\u0011\bN\u0012\u0006\u0010\u0084\u00ea\u0097\u00a8\u0006\"\u000542221\u0012\u0011\bO\u0012\u0006\u0010\u00c9\u00ea\u0097\u00a8\u0006\"\u000542222\u0012\u0011\bP\u0012\u0006\u0010\u008f\u00eb\u0097\u00a8\u0006\"\u000542223\u0012\u0011\bQ\u0012\u0006\u0010\u00ab\u00eb\u0097\u00a8\u0006\"\u000542224\u0012\u0011\bR\u0012\u0006\u0010\u00f8\u00eb\u0097\u00a8\u0006\"\u000542225\u0012\u0011\bS\u0012\u0006\u0010\u00b8\u00ec\u0097\u00a8\u0006\"\u000542226\u0012\u0011\bT\u0012\u0006\u0010\u00ed\u00ec\u0097\u00a8\u0006\"\u000542227\u0012\u0011\bU\u0012\u0006\u0010\u00bf\u00ed\u0097\u00a8\u0006\"\u000542228\u0012\u0011\bV\u0012\u0006\u0010\u00e8\u00ed\u0097\u00a8\u0006\"\u000542229\u0012\u0011\bW\u0012\u0006\u0010\u00b6\u00ee\u0097\u00a8\u0006\"\u000542230\u0012\u0011\bX\u0012\u0006\u0010\u00df\u00ee\u0097\u00a8\u0006\"\u000542231\u0012\u0011\bY\u0012\u0006\u0010\u00ad\u00ef\u0097\u00a8\u0006\"\u000542232\u0012\u0011\bZ\u0012\u0006\u0010\u00aa\u00f0\u0097\u00a8\u0006\"\u000542234\u0012\u0011\b[\u0012\u0006\u0010\u00ed\u00f0\u0097\u00a8\u0006\"\u000542235\u0012\u0011\b\\\u0012\u0006\u0010\u008b\u00f1\u0097\u00a8\u0006\"\u000542211\u0012\u0011\b]\u0012\u0006\u0010\u00d9\u00f1\u0097\u00a8\u0006\"\u000591142\u0012\u0011\b^\u0012\u0006\u0010\u00cd\u00f2\u0097\u00a8\u0006\"\u000591144\u0012\u0011\b_\u0012\u0006\u0010\u00d4\u00f2\u0097\u00a8\u0006\"\u000591150\u0012\u0011\b`\u0012\u0006\u0010\u009c\u00f3\u0097\u00a8\u0006\"\u000591145\u0012\u0011\ba\u0012\u0006\u0010\u00e0\u00f3\u0097\u00a8\u0006\"\u000534560\u0012\u0011\bb\u0012\u0006\u0010\u0088\u00f4\u0097\u00a8\u0006\"\u000542273\u0012\u0011\bc\u0012\u0006\u0010\u008f\u00f4\u0097\u00a8\u0006\"\u000534415\u0012\u0011\bd\u0012\u0006\u0010\u00f1\u00f4\u0097\u00a8\u0006\"\u000542077\u001a\b\u001a\u0006HYYX52 \u00c6\u00e8\u0097\u00a8\u0006\"`\n/\n\u001016064-701ff27f-2\u0012\b14:22:00\u001a\b20230916 \u0000*\u00035530\u0001\u0012\u001d\r\u00e0\u009e\u0013\u00c2\u0015\u0018\u0010\u0092\u00c2\u001d\u0000\u0000>C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u00000B(\u00c6\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HYYX52" + }, + { + "type": "con_recorrido", + "entity": "\n$598b4344-9f2a-4555-8c96-ca3a40316942\u001a\u00c6\u0001\n/\n\u001016062-701ff27f-2\u0012\b13:42:00\u001a\b20230916 \u0000*\u00035530\u0001\u0012\u0011\b^\u0012\u0006\u0010\u00bd\u00e5\u0097\u00a8\u0006\"\u000591144\u0012\u0011\b_\u0012\u0006\u0010\u00c5\u00e5\u0097\u00a8\u0006\"\u000591150\u0012\u0011\b`\u0012\u0006\u0010\u0091\u00e6\u0097\u00a8\u0006\"\u000591145\u0012\u0011\ba\u0012\u0006\u0010\u00d9\u00e6\u0097\u00a8\u0006\"\u000534560\u0012\u0011\bb\u0012\u0006\u0010\u0083\u00e7\u0097\u00a8\u0006\"\u000542273\u0012\u0011\bc\u0012\u0006\u0010\u008a\u00e7\u0097\u00a8\u0006\"\u000534415\u0012\u0011\bd\u0012\u0006\u0010\u00ee\u00e7\u0097\u00a8\u0006\"\u000542077\u001a\b\u001a\u0006HYYX75 \u00e6\u00e4\u0097\u00a8\u0006\"`\n/\n\u001016062-701ff27f-2\u0012\b13:42:00\u001a\b20230916 \u0000*\u00035530\u0001\u0012\u001d\r-\u00d2\u0013\u00c2\u0015\u00df\b\u0092\u00c2\u001d\u0000\u0000|C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000PA(\u00e6\u00e4\u0097\u00a8\u0006B\b\u001a\u0006HYYX75" + }, + { + "type": "con_recorrido", + "entity": "\n$c24af2bb-43de-48bc-99e3-e4b49c834c09\u001a\u00e6\u000e\n/\n\u001016067-701ff27f-2\u0012\b15:22:00\u001a\b20230916 \u0000*\u00035530\u0001\u0012\u0011\b\u0004\u0012\u0006\u0010\u00d1\u00e8\u0097\u00a8\u0006\"\u000540347\u0012\u0011\b\u0005\u0012\u0006\u0010\u0089\u00e9\u0097\u00a8\u0006\"\u000540348\u0012\u0011\b\u0006\u0012\u0006\u0010\u00bd\u00e9\u0097\u00a8\u0006\"\u000540349\u0012\u0011\b\u0007\u0012\u0006\u0010\u00e0\u00e9\u0097\u00a8\u0006\"\u000540350\u0012\u0011\b\b\u0012\u0006\u0010\u0099\u00ea\u0097\u00a8\u0006\"\u000540351\u0012\u0011\b\t\u0012\u0006\u0010\u00f6\u00ea\u0097\u00a8\u0006\"\u000540352\u0012\u0011\b\n\u0012\u0006\u0010\u00e7\u00eb\u0097\u00a8\u0006\"\u000542082\u0012\u0011\b\u000b\u0012\u0006\u0010\u0085\u00ed\u0097\u00a8\u0006\"\u000549107\u0012\u0011\b\f\u0012\u0006\u0010\u00c6\u00ed\u0097\u00a8\u0006\"\u000538560\u0012\u0011\b\r\u0012\u0006\u0010\u00df\u00ed\u0097\u00a8\u0006\"\u000538697\u0012\u0011\b\u000e\u0012\u0006\u0010\u00fb\u00ed\u0097\u00a8\u0006\"\u000538646\u0012\u0011\b\u000f\u0012\u0006\u0010\u00a7\u00ee\u0097\u00a8\u0006\"\u000538632\u0012\u0011\b\u0010\u0012\u0006\u0010\u00f2\u00ee\u0097\u00a8\u0006\"\u000538767\u0012\u0011\b\u0011\u0012\u0006\u0010\u00b0\u00ef\u0097\u00a8\u0006\"\u000538768\u0012\u0011\b\u0012\u0012\u0006\u0010\u00df\u00ef\u0097\u00a8\u0006\"\u000538769\u0012\u0011\b\u0013\u0012\u0006\u0010\u0084\u00f0\u0097\u00a8\u0006\"\u000549357\u0012\u0011\b\u0014\u0012\u0006\u0010\u00ac\u00f0\u0097\u00a8\u0006\"\u000538771\u0012\u0011\b\u0015\u0012\u0006\u0010\u00d3\u00f0\u0097\u00a8\u0006\"\u000538668\u0012\u0011\b\u0016\u0012\u0006\u0010\u00b0\u00f1\u0097\u00a8\u0006\"\u000538661\u0012\u0011\b\u0017\u0012\u0006\u0010\u0088\u00f2\u0097\u00a8\u0006\"\u000538657\u0012\u0011\b\u0018\u0012\u0006\u0010\u00c4\u00f2\u0097\u00a8\u0006\"\u000538743\u0012\u0011\b\u0019\u0012\u0006\u0010\u0084\u00f3\u0097\u00a8\u0006\"\u000538652\u0012\u0011\b\u001a\u0012\u0006\u0010\u00c3\u00f3\u0097\u00a8\u0006\"\u000538721\u0012\u0011\b\u001b\u0012\u0006\u0010\u00fb\u00f3\u0097\u00a8\u0006\"\u000538659\u0012\u0011\b\u001c\u0012\u0006\u0010\u00d4\u00f4\u0097\u00a8\u0006\"\u000538674\u0012\u0011\b\u001d\u0012\u0006\u0010\u0098\u00f5\u0097\u00a8\u0006\"\u000538649\u0012\u0011\b\u001e\u0012\u0006\u0010\u00d7\u00f5\u0097\u00a8\u0006\"\u000538718\u0012\u0011\b\u001f\u0012\u0006\u0010\u00a2\u00f6\u0097\u00a8\u0006\"\u000538735\u0012\u0011\b \u0012\u0006\u0010\u00da\u00f6\u0097\u00a8\u0006\"\u000542270\u0012\u0011\b!\u0012\u0006\u0010\u0089\u00f7\u0097\u00a8\u0006\"\u000542271\u0012\u0013\b\"\u0012\u0006\u0010\u00d0\u00f7\u0097\u00a8\u0006\"\u00074838438\u0012\u0011\b#\u0012\u0006\u0010\u00e9\u00f8\u0097\u00a8\u0006\"\u000544896\u0012\u0011\b$\u0012\u0006\u0010\u009e\u00f9\u0097\u00a8\u0006\"\u000544897\u0012\u0011\b%\u0012\u0006\u0010\u00ee\u00f9\u0097\u00a8\u0006\"\u000544898\u0012\u0011\b&\u0012\u0006\u0010\u00af\u00fb\u0097\u00a8\u0006\"\u000540993\u0012\u0014\b'\u0012\u0006\u0010\u00d5\u00fd\u0097\u00a8\u0006\"\b16005188\u0012\u0011\b(\u0012\u0006\u0010\u0099\u0080\u0098\u00a8\u0006\"\u000540995\u0012\u0011\b)\u0012\u0006\u0010\u00fe\u0080\u0098\u00a8\u0006\"\u000540996\u0012\u0011\b*\u0012\u0006\u0010\u00e9\u0081\u0098\u00a8\u0006\"\u000540997\u0012\u0011\b+\u0012\u0006\u0010\u00bc\u0082\u0098\u00a8\u0006\"\u000539614\u0012\u0011\b,\u0012\u0006\u0010\u0083\u0083\u0098\u00a8\u0006\"\u000539615\u0012\u0011\b-\u0012\u0006\u0010\u00ca\u0083\u0098\u00a8\u0006\"\u000539616\u0012\u0011\b.\u0012\u0006\u0010\u009d\u0084\u0098\u00a8\u0006\"\u000539617\u0012\u0011\b/\u0012\u0006\u0010\u00f6\u0084\u0098\u00a8\u0006\"\u000539618\u0012\u0011\b0\u0012\u0006\u0010\u00be\u0085\u0098\u00a8\u0006\"\u000539619\u0012\u0011\b1\u0012\u0006\u0010\u00fc\u0085\u0098\u00a8\u0006\"\u000539620\u0012\u0011\b2\u0012\u0006\u0010\u00f0\u0086\u0098\u00a8\u0006\"\u000539621\u0012\u0011\b3\u0012\u0006\u0010\u00c2\u0087\u0098\u00a8\u0006\"\u000538281\u0012\u0011\b4\u0012\u0006\u0010\u00a1\u0088\u0098\u00a8\u0006\"\u000537506\u0012\u0011\b5\u0012\u0006\u0010\u00f7\u0088\u0098\u00a8\u0006\"\u000545068\u0012\u0011\b6\u0012\u0006\u0010\u00d3\u008a\u0098\u00a8\u0006\"\u000537480\u0012\u0011\b7\u0012\u0006\u0010\u00ca\u008b\u0098\u00a8\u0006\"\u000537477\u0012\u0011\b8\u0012\u0006\u0010\u00d2\u008c\u0098\u00a8\u0006\"\u000540848\u0012\u0011\b9\u0012\u0006\u0010\u008c\u008e\u0098\u00a8\u0006\"\u00052-Apr\u0012\u0011\b:\u0012\u0006\u0010\u0080\u008f\u0098\u00a8\u0006\"\u000539728\u0012\u0011\b;\u0012\u0006\u0010\u00e0\u0090\u0098\u00a8\u0006\"\u000539729\u0012\u0011\b<\u0012\u0006\u0010\u0099\u0091\u0098\u00a8\u0006\"\u000539730\u0012\u0011\b=\u0012\u0006\u0010\u0090\u0093\u0098\u00a8\u0006\"\u000542200\u0012\u0011\b>\u0012\u0006\u0010\u008b\u0094\u0098\u00a8\u0006\"\u000542203\u0012\u0011\b?\u0012\u0006\u0010\u00b4\u0095\u0098\u00a8\u0006\"\u000542204\u0012\u0011\b@\u0012\u0006\u0010\u008d\u0096\u0098\u00a8\u0006\"\u000542205\u0012\u0011\bA\u0012\u0006\u0010\u00c5\u009d\u0098\u00a8\u0006\"\u000542206\u0012\u0011\bB\u0012\u0006\u0010\u00a3\u009f\u0098\u00a8\u0006\"\u000542207\u0012\u0011\bC\u0012\u0006\u0010\u00ff\u00a0\u0098\u00a8\u0006\"\u000542208\u0012\u0011\bD\u0012\u0006\u0010\u0084\u00a5\u0098\u00a8\u0006\"\u000542564\u0012\u0011\bE\u0012\u0006\u0010\u00e2\u00a8\u0098\u00a8\u0006\"\u000542214\u0012\u0011\bF\u0012\u0006\u0010\u00de\u00ac\u0098\u00a8\u0006\"\u000542209\u0012\u0011\bG\u0012\u0006\u0010\u00f0\u00b1\u0098\u00a8\u0006\"\u000542210\u0012\u0011\bH\u0012\u0006\u0010\u00b1\u00bb\u0098\u00a8\u0006\"\u000542215\u0012\u0011\bI\u0012\u0006\u0010\u0093\u00bd\u0098\u00a8\u0006\"\u000542216\u0012\u0011\bJ\u0012\u0006\u0010\u00ce\u00bf\u0098\u00a8\u0006\"\u000542217\u0012\u0011\bK\u0012\u0006\u0010\u00b5\u00c4\u0098\u00a8\u0006\"\u000542218\u0012\u0011\bL\u0012\u0006\u0010\u00bb\u00c7\u0098\u00a8\u0006\"\u000542219\u0012\u0011\bM\u0012\u0006\u0010\u008d\u00cf\u0098\u00a8\u0006\"\u000542220\u0012\u0011\bN\u0012\u0006\u0010\u00f4\u00d2\u0098\u00a8\u0006\"\u000542221\u0012\u0011\bO\u0012\u0006\u0010\u008b\u00d9\u0098\u00a8\u0006\"\u000542222\u0012\u0011\bP\u0012\u0006\u0010\u0089\u00e0\u0098\u00a8\u0006\"\u000542223\u0012\u0011\bQ\u0012\u0006\u0010\u0097\u00e3\u0098\u00a8\u0006\"\u000542224\u0012\u0011\bR\u0012\u0006\u0010\u00b4\u00ec\u0098\u00a8\u0006\"\u000542225\u0012\u0011\bS\u0012\u0006\u0010\u00a8\u00f5\u0098\u00a8\u0006\"\u000542226\u0012\u0011\bT\u0012\u0006\u0010\u00bf\u00fd\u0098\u00a8\u0006\"\u000542227\u0012\u0011\bU\u0012\u0006\u0010\u00ae\u008c\u0099\u00a8\u0006\"\u000542228\u0012\u0011\bV\u0012\u0006\u0010\u00f1\u0094\u0099\u00a8\u0006\"\u000542229\u0012\u0011\bW\u0012\u0006\u0010\u00e4\u00a7\u0099\u00a8\u0006\"\u000542230\u0012\u0011\bX\u0012\u0006\u0010\u00ab\u00b3\u0099\u00a8\u0006\"\u000542231\u0012\u0011\bY\u0012\u0006\u0010\u00d6\u00cd\u0099\u00a8\u0006\"\u000542232\u0012\u0011\bZ\u0012\u0006\u0010\u00e0\u0088\u009a\u00a8\u0006\"\u000542234\u0012\u0011\b[\u0012\u0006\u0010\u00a4\u00b7\u009a\u00a8\u0006\"\u000542235\u0012\u0011\b\\\u0012\u0006\u0010\u00ad\u00d0\u009a\u00a8\u0006\"\u000542211\u0012\u0011\b]\u0012\u0006\u0010\u008b\u00a9\u009b\u00a8\u0006\"\u000591142\u0012\u0011\b^\u0012\u0006\u0010\u00af\u00a4\u009d\u00a8\u0006\"\u000591144\u0012\u0011\b_\u0012\u0006\u0010\u00ad\u00bd\u009d\u00a8\u0006\"\u000591150\u0012\u0011\b`\u0012\u0006\u0010\u00df\u00c6\u00a0\u00a8\u0006\"\u000591145\u0012\u0011\ba\u0012\u0006\u0010\u008f\u00cd\u00a9\u00a8\u0006\"\u000534560\u0012\u0011\bb\u0012\u0006\u0010\u00bb\u00fd\u00c4\u00a8\u0006\"\u000542273\u0012\u0011\bc\u0012\u0006\u0010\u00e8\u00de\u00d7\u00a8\u0006\"\u000534415\u001a\b\u001a\u0006WW2795 \u00c6\u00e8\u0097\u00a8\u0006\"`\n/\n\u001016067-701ff27f-2\u0012\b15:22:00\u001a\b20230916 \u0000*\u00035530\u0001\u0012\u001d\r\u008d\u00d8\u0012\u00c2\u0015\u00f2F\u0092\u00c2\u001d\u0000\u0000\bC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\fB(\u00c6\u00e8\u0097\u00a8\u0006B\b\u001a\u0006WW2795" + }, + { + "type": "sin_recorrido", + "entity": "\n$1a5f41b1-26e5-4ed5-84a7-fb63b7f07910\"`\n/\n\u001016063-701ff27f-2\u0012\b14:02:00\u001a\b20230916 \u0000*\u00035530\u0001\u0012\u001d\r\u00bc\u00cd\u0013\u00c2\u0015\u00ef\u0007\u0092\u00c2\u001d\u0000\u0000\u001cC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00d0\u00e6\u0097\u00a8\u0006B\b\u001a\u0006YA1635" + }, + { + "type": "sin_recorrido", + "entity": "\n$e55e0ce1-6fb4-4f96-997b-b425d951326b\"`\n/\n\u001016119-701ff27f-2\u0012\b13:41:00\u001a\b20230916 \u0000*\u00035540\u0001\u0012\u001d\r\u00df\u00cd\u0013\u00c2\u0015\u00d6\u0007\u0092\u00c2\u001d\u0000\u0000 C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0096\u00e6\u0097\u00a8\u0006B\b\u001a\u0006BLYT49" + }, + { + "type": "con_recorrido", + "entity": "\n$9e5591f3-20bb-46c8-a339-bf88c6a1ad84\u001a\u00de\u0002\n/\n\u001016177-701ff27f-2\u0012\b14:01:00\u001a\b20230916 \u0000*\u00035540\u0000\u0012\u0011\bf\u0012\u0006\u0010\u00fc\u00e7\u0097\u00a8\u0006\"\u000542047\u0012\u0011\bg\u0012\u0006\u0010\u00b3\u00e8\u0097\u00a8\u0006\"\u000542048\u0012\u0011\bh\u0012\u0006\u0010\u00ea\u00e8\u0097\u00a8\u0006\"\u000542049\u0012\u0011\bi\u0012\u0006\u0010\u009a\u00e9\u0097\u00a8\u0006\"\u000542050\u0012\u0011\bj\u0012\u0006\u0010\u00e9\u00e9\u0097\u00a8\u0006\"\u000542051\u0012\u0011\bk\u0012\u0006\u0010\u00ff\u00e9\u0097\u00a8\u0006\"\u000542052\u0012\u0011\bl\u0012\u0006\u0010\u00be\u00ea\u0097\u00a8\u0006\"\u000542053\u0012\u0011\bm\u0012\u0006\u0010\u00e7\u00ea\u0097\u00a8\u0006\"\u000542054\u0012\u0011\bn\u0012\u0006\u0010\u00b4\u00eb\u0097\u00a8\u0006\"\u000542055\u0012\u0011\bo\u0012\u0006\u0010\u00db\u00eb\u0097\u00a8\u0006\"\u000542056\u0012\u0011\bp\u0012\u0006\u0010\u00e8\u00ec\u0097\u00a8\u0006\"\u000542057\u0012\u0011\bq\u0012\u0006\u0010\u00e5\u00f3\u0097\u00a8\u0006\"\u000542127\u0012\u0011\br\u0012\u0006\u0010\u0098\u00f4\u0097\u00a8\u0006\"\u000542128\u0012\u0011\bs\u0012\u0006\u0010\u00a6\u00f4\u0097\u00a8\u0006\"\u000542129\u0012\u0011\bt\u0012\u0006\u0010\u00cf\u00f4\u0097\u00a8\u0006\"\u000541950\u001a\b\u001a\u0006DSJL30 \u00d3\u00e7\u0097\u00a8\u0006\"`\n/\n\u001016177-701ff27f-2\u0012\b14:01:00\u001a\b20230916 \u0000*\u00035540\u0000\u0012\u001d\r\u00ba\u00cd\u0012\u00c2\u0015b=\u0092\u00c2\u001d\u0000\u0000\u0090A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00d3\u00e7\u0097\u00a8\u0006B\b\u001a\u0006DSJL30" + }, + { + "type": "con_recorrido", + "entity": "\n$8103c0e9-d46c-4695-bdec-c5495222ebe9\u001a\u0080\u0006\n/\n\u001016178-701ff27f-2\u0012\b14:21:00\u001a\b20230916 \u0000*\u00035540\u0000\u0012\u0011\bP\u0012\u0006\u0010\u00f2\u00e8\u0097\u00a8\u0006\"\u000545085\u0012\u0011\bQ\u0012\u0006\u0010\u00c3\u00e9\u0097\u00a8\u0006\"\u000545086\u0012\u0011\bR\u0012\u0006\u0010\u00fb\u00e9\u0097\u00a8\u0006\"\u000538539\u0012\u0011\bS\u0012\u0006\u0010\u00c0\u00ea\u0097\u00a8\u0006\"\u000538540\u0012\u0011\bT\u0012\u0006\u0010\u008a\u00eb\u0097\u00a8\u0006\"\u000538544\u0012\u0011\bU\u0012\u0006\u0010\u00cd\u00eb\u0097\u00a8\u0006\"\u000538545\u0012\u0011\bV\u0012\u0006\u0010\u00af\u00ec\u0097\u00a8\u0006\"\u000538546\u0012\u0011\bW\u0012\u0006\u0010\u00a7\u00ed\u0097\u00a8\u0006\"\u000538548\u0012\u0011\bX\u0012\u0006\u0010\u00e7\u00ed\u0097\u00a8\u0006\"\u000538549\u0012\u0011\bY\u0012\u0006\u0010\u009f\u00ee\u0097\u00a8\u0006\"\u000538550\u0012\u0011\bZ\u0012\u0006\u0010\u00fe\u00ee\u0097\u00a8\u0006\"\u000538551\u0012\u0011\b[\u0012\u0006\u0010\u00d1\u00ef\u0097\u00a8\u0006\"\u000538552\u0012\u0011\b\\\u0012\u0006\u0010\u009f\u00f0\u0097\u00a8\u0006\"\u000549359\u0012\u0011\b]\u0012\u0006\u0010\u00d1\u00f0\u0097\u00a8\u0006\"\u000549360\u0012\u0011\b^\u0012\u0006\u0010\u00be\u00f1\u0097\u00a8\u0006\"\u000549361\u0012\u0011\b_\u0012\u0006\u0010\u00d7\u00f1\u0097\u00a8\u0006\"\u000549362\u0012\u0011\b`\u0012\u0006\u0010\u0085\u00f2\u0097\u00a8\u0006\"\u000549363\u0012\u0011\ba\u0012\u0006\u0010\u00b3\u00f2\u0097\u00a8\u0006\"\u000549364\u0012\u0011\bb\u0012\u0006\u0010\u00e0\u00f2\u0097\u00a8\u0006\"\u000549365\u0012\u0011\bc\u0012\u0006\u0010\u00c1\u00f4\u0097\u00a8\u0006\"\u000541942\u0012\u0011\bd\u0012\u0006\u0010\u00a6\u00f5\u0097\u00a8\u0006\"\u000542045\u0012\u0011\be\u0012\u0006\u0010\u00f0\u00f5\u0097\u00a8\u0006\"\u000542046\u0012\u0011\bf\u0012\u0006\u0010\u009f\u00f6\u0097\u00a8\u0006\"\u000542047\u0012\u0011\bg\u0012\u0006\u0010\u00d4\u00f6\u0097\u00a8\u0006\"\u000542048\u0012\u0011\bh\u0012\u0006\u0010\u008a\u00f7\u0097\u00a8\u0006\"\u000542049\u0012\u0011\bi\u0012\u0006\u0010\u00ba\u00f7\u0097\u00a8\u0006\"\u000542050\u0012\u0011\bj\u0012\u0006\u0010\u008a\u00f8\u0097\u00a8\u0006\"\u000542051\u0012\u0011\bk\u0012\u0006\u0010\u00a2\u00f8\u0097\u00a8\u0006\"\u000542052\u0012\u0011\bl\u0012\u0006\u0010\u00e5\u00f8\u0097\u00a8\u0006\"\u000542053\u0012\u0011\bm\u0012\u0006\u0010\u0090\u00f9\u0097\u00a8\u0006\"\u000542054\u0012\u0011\bn\u0012\u0006\u0010\u00e4\u00f9\u0097\u00a8\u0006\"\u000542055\u0012\u0011\bo\u0012\u0006\u0010\u0090\u00fa\u0097\u00a8\u0006\"\u000542056\u0012\u0011\bp\u0012\u0006\u0010\u00b1\u00fb\u0097\u00a8\u0006\"\u000542057\u0012\u0011\bq\u0012\u0006\u0010\u00f1\u0084\u0098\u00a8\u0006\"\u000542127\u0012\u0011\br\u0012\u0006\u0010\u00c3\u0085\u0098\u00a8\u0006\"\u000542128\u0012\u0011\bs\u0012\u0006\u0010\u00d8\u0085\u0098\u00a8\u0006\"\u000542129\u0012\u0011\bt\u0012\u0006\u0010\u009a\u0086\u0098\u00a8\u0006\"\u000541950\u001a\b\u001a\u0006JWTR88 \u00c5\u00e8\u0097\u00a8\u0006\"`\n/\n\u001016178-701ff27f-2\u0012\b14:21:00\u001a\b20230916 \u0000*\u00035540\u0000\u0012\u001d\r\u00e0\r\u0013\u00c2\u0015\u00a3,\u0092\u00c2\u001d\u0000\u0000\u00a6C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c5\u00e8\u0097\u00a8\u0006B\b\u001a\u0006JWTR88" + }, + { + "type": "con_recorrido", + "entity": "\n$c48093f8-696d-4227-a3d0-0d50b1560d17\u001a\u00b9\u0006\n/\n\u001016121-701ff27f-2\u0012\b14:21:00\u001a\b20230916 \u0000*\u00035540\u0001\u0012\u0011\bG\u0012\u0006\u0010\u00f1\u00e8\u0097\u00a8\u0006\"\u000539729\u0012\u0011\bH\u0012\u0006\u0010\u008b\u00e9\u0097\u00a8\u0006\"\u000539730\u0012\u0011\bI\u0012\u0006\u0010\u00fd\u00e9\u0097\u00a8\u0006\"\u000542200\u0012\u0011\bJ\u0012\u0006\u0010\u009e\u00ea\u0097\u00a8\u0006\"\u000542203\u0012\u0011\bK\u0012\u0006\u0010\u0089\u00eb\u0097\u00a8\u0006\"\u000542205\u0012\u0011\bL\u0012\u0006\u0010\u00c1\u00eb\u0097\u00a8\u0006\"\u000542201\u0012\u0011\bM\u0012\u0006\u0010\u00c4\u00ed\u0097\u00a8\u0006\"\u000542206\u0012\u0011\bN\u0012\u0006\u0010\u00f3\u00ed\u0097\u00a8\u0006\"\u000542207\u0012\u0011\bO\u0012\u0006\u0010\u00b1\u00ee\u0097\u00a8\u0006\"\u000542208\u0012\u0011\bP\u0012\u0006\u0010\u00ae\u00ef\u0097\u00a8\u0006\"\u000542564\u0012\u0011\bQ\u0012\u0006\u0010\u0095\u00f0\u0097\u00a8\u0006\"\u000542214\u0012\u0011\bR\u0012\u0006\u0010\u00fc\u00f0\u0097\u00a8\u0006\"\u000542209\u0012\u0011\bS\u0012\u0006\u0010\u00ef\u00f1\u0097\u00a8\u0006\"\u000542210\u0012\u0011\bT\u0012\u0006\u0010\u00a5\u00f3\u0097\u00a8\u0006\"\u000542215\u0012\u0011\bU\u0012\u0006\u0010\u00c0\u00f3\u0097\u00a8\u0006\"\u000542216\u0012\u0011\bV\u0012\u0006\u0010\u00ec\u00f3\u0097\u00a8\u0006\"\u000542217\u0012\u0011\bW\u0012\u0006\u0010\u00af\u00f4\u0097\u00a8\u0006\"\u000542218\u0012\u0011\bX\u0012\u0006\u0010\u00db\u00f4\u0097\u00a8\u0006\"\u000542219\u0012\u0011\bY\u0012\u0006\u0010\u00bf\u00f5\u0097\u00a8\u0006\"\u000542220\u0012\u0011\bZ\u0012\u0006\u0010\u00ec\u00f5\u0097\u00a8\u0006\"\u000542221\u0012\u0011\b[\u0012\u0006\u0010\u00b2\u00f6\u0097\u00a8\u0006\"\u000542222\u0012\u0011\b\\\u0012\u0006\u0010\u0080\u00f7\u0097\u00a8\u0006\"\u000542223\u0012\u0011\b]\u0012\u0006\u0010\u00a1\u00f7\u0097\u00a8\u0006\"\u000542224\u0012\u0011\b^\u0012\u0006\u0010\u00e9\u00f7\u0097\u00a8\u0006\"\u000542225\u0012\u0011\b_\u0012\u0006\u0010\u00b1\u00f8\u0097\u00a8\u0006\"\u000542226\u0012\u0011\b`\u0012\u0006\u0010\u00ea\u00f8\u0097\u00a8\u0006\"\u000542227\u0012\u0011\ba\u0012\u0006\u0010\u00c5\u00f9\u0097\u00a8\u0006\"\u000542228\u0012\u0011\bb\u0012\u0006\u0010\u00f3\u00f9\u0097\u00a8\u0006\"\u000542229\u0012\u0011\bc\u0012\u0006\u0010\u00cc\u00fa\u0097\u00a8\u0006\"\u000542230\u0012\u0011\bd\u0012\u0006\u0010\u00fb\u00fa\u0097\u00a8\u0006\"\u000542231\u0012\u0011\be\u0012\u0006\u0010\u00d8\u00fb\u0097\u00a8\u0006\"\u000542232\u0012\u0011\bf\u0012\u0006\u0010\u00c0\u00fc\u0097\u00a8\u0006\"\u000542233\u0012\u0011\bg\u0012\u0006\u0010\u00ef\u00fc\u0097\u00a8\u0006\"\u000542234\u0012\u0011\bh\u0012\u0006\u0010\u00c4\u00fd\u0097\u00a8\u0006\"\u000542235\u0012\u0011\bi\u0012\u0006\u0010\u00ea\u00fd\u0097\u00a8\u0006\"\u000542211\u0012\u0011\bj\u0012\u0006\u0010\u00ac\u00fe\u0097\u00a8\u0006\"\u000549203\u0012\u0011\bk\u0012\u0006\u0010\u00eb\u00fe\u0097\u00a8\u0006\"\u000549204\u0012\u0011\bl\u0012\u0006\u0010\u0087\u00ff\u0097\u00a8\u0006\"\u000542503\u0012\u0011\bm\u0012\u0006\u0010\u00b5\u0081\u0098\u00a8\u0006\"\u000542272\u0012\u0011\bn\u0012\u0006\u0010\u0084\u0083\u0098\u00a8\u0006\"\u000542077\u001a\b\u001a\u0006KCFB60 \u00c4\u00e8\u0097\u00a8\u0006\"`\n/\n\u001016121-701ff27f-2\u0012\b14:21:00\u001a\b20230916 \u0000*\u00035540\u0001\u0012\u001d\r\n[\u0013\u00c2\u0015T\u001c\u0092\u00c2\u001d\u0000\u0000\u001cC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0084B(\u00c4\u00e8\u0097\u00a8\u0006B\b\u001a\u0006KCFB60" + }, + { + "type": "con_recorrido", + "entity": "\n$d2f6da68-d849-45af-960a-96ccba5531ab\u001a\u0095\r\n/\n\u001016123-701ff27f-2\u0012\b15:01:00\u001a\b20230916 \u0000*\u00035540\u0001\u0012\u0011\b\u0003\u0012\u0006\u0010\u00f9\u00ed\u0097\u00a8\u0006\"\u000541957\u0012\u0011\b\u0004\u0012\u0006\u0010\u009e\u00ee\u0097\u00a8\u0006\"\u000541958\u0012\u0011\b\u0005\u0012\u0006\u0010\u00f1\u00ee\u0097\u00a8\u0006\"\u000541959\u0012\u0011\b\u0006\u0012\u0006\u0010\u008c\u00ef\u0097\u00a8\u0006\"\u000541960\u0012\u0011\b\u0007\u0012\u0006\u0010\u00d1\u00ef\u0097\u00a8\u0006\"\u000541961\u0012\u0011\b\b\u0012\u0006\u0010\u00ea\u00ef\u0097\u00a8\u0006\"\u000541962\u0012\u0011\b\t\u0012\u0006\u0010\u00b3\u00f0\u0097\u00a8\u0006\"\u000541963\u0012\u0011\b\n\u0012\u0006\u0010\u00df\u00f0\u0097\u00a8\u0006\"\u000541964\u0012\u0011\b\u000b\u0012\u0006\u0010\u0088\u00f1\u0097\u00a8\u0006\"\u000541965\u0012\u0011\b\f\u0012\u0006\u0010\u00c0\u00f1\u0097\u00a8\u0006\"\u000541966\u0012\u0011\b\r\u0012\u0006\u0010\u00ef\u00f1\u0097\u00a8\u0006\"\u000541967\u0012\u0011\b\u000e\u0012\u0006\u0010\u00c0\u00f2\u0097\u00a8\u0006\"\u000541968\u0012\u0011\b\u000f\u0012\u0006\u0010\u00ac\u00f4\u0097\u00a8\u0006\"\u000541970\u0012\u0011\b\u0010\u0012\u0006\u0010\u00b6\u00f4\u0097\u00a8\u0006\"\u000540542\u0012\u0011\b\u0011\u0012\u0006\u0010\u00c5\u00f4\u0097\u00a8\u0006\"\u000541971\u0012\u0011\b\u0012\u0012\u0006\u0010\u00e4\u00f4\u0097\u00a8\u0006\"\u000540541\u0012\u0011\b\u0013\u0012\u0006\u0010\u00eb\u00f4\u0097\u00a8\u0006\"\u000541972\u0012\u0011\b\u0014\u0012\u0006\u0010\u0084\u00f5\u0097\u00a8\u0006\"\u000540540\u0012\u0011\b\u0015\u0012\u0006\u0010\u00b9\u00f5\u0097\u00a8\u0006\"\u000540539\u0012\u0011\b\u0016\u0012\u0006\u0010\u00fc\u00f5\u0097\u00a8\u0006\"\u000542855\u0012\u0011\b\u0017\u0012\u0006\u0010\u00a6\u00f6\u0097\u00a8\u0006\"\u000541975\u0012\u0011\b\u0018\u0012\u0006\u0010\u00bc\u00f6\u0097\u00a8\u0006\"\u000542857\u0012\u0011\b\u0019\u0012\u0006\u0010\u00de\u00f6\u0097\u00a8\u0006\"\u000538697\u0012\u0011\b\u001a\u0012\u0006\u0010\u008e\u00f7\u0097\u00a8\u0006\"\u000538646\u0012\u0011\b\u001b\u0012\u0006\u0010\u00b5\u00f7\u0097\u00a8\u0006\"\u000538632\u0012\u0011\b\u001c\u0012\u0006\u0010\u0095\u00f8\u0097\u00a8\u0006\"\u000538767\u0012\u0011\b\u001d\u0012\u0006\u0010\u00da\u00f8\u0097\u00a8\u0006\"\u000538768\u0012\u0011\b\u001e\u0012\u0006\u0010\u0095\u00f9\u0097\u00a8\u0006\"\u000538769\u0012\u0011\b\u001f\u0012\u0006\u0010\u00bc\u00f9\u0097\u00a8\u0006\"\u000549357\u0012\u0011\b \u0012\u0006\u0010\u00f4\u00f9\u0097\u00a8\u0006\"\u000538771\u0012\u0011\b!\u0012\u0006\u0010\u00a9\u00fa\u0097\u00a8\u0006\"\u000538668\u0012\u0011\b\"\u0012\u0006\u0010\u0099\u00fb\u0097\u00a8\u0006\"\u000538661\u0012\u0011\b#\u0012\u0006\u0010\u00fe\u00fb\u0097\u00a8\u0006\"\u000538657\u0012\u0011\b$\u0012\u0006\u0010\u00cc\u00fc\u0097\u00a8\u0006\"\u000538743\u0012\u0011\b%\u0012\u0006\u0010\u00a4\u00fd\u0097\u00a8\u0006\"\u000538652\u0012\u0011\b&\u0012\u0006\u0010\u00fc\u00fd\u0097\u00a8\u0006\"\u000538721\u0012\u0011\b'\u0012\u0006\u0010\u00cb\u00fe\u0097\u00a8\u0006\"\u000538659\u0012\u0011\b(\u0012\u0006\u0010\u00c9\u00ff\u0097\u00a8\u0006\"\u000538674\u0012\u0011\b)\u0012\u0006\u0010\u00ab\u0080\u0098\u00a8\u0006\"\u000538649\u0012\u0011\b*\u0012\u0006\u0010\u0095\u0081\u0098\u00a8\u0006\"\u000538718\u0012\u0011\b+\u0012\u0006\u0010\u00f9\u0081\u0098\u00a8\u0006\"\u000538735\u0012\u0011\b,\u0012\u0006\u0010\u00d2\u0082\u0098\u00a8\u0006\"\u000542270\u0012\u0011\b-\u0012\u0006\u0010\u0099\u0083\u0098\u00a8\u0006\"\u000542271\u0012\u0013\b.\u0012\u0006\u0010\u008d\u0084\u0098\u00a8\u0006\"\u00074838438\u0012\u0011\b/\u0012\u0006\u0010\u0090\u0086\u0098\u00a8\u0006\"\u000544896\u0012\u0011\b0\u0012\u0006\u0010\u00e8\u0086\u0098\u00a8\u0006\"\u000544897\u0012\u0011\b1\u0012\u0006\u0010\u00e2\u0087\u0098\u00a8\u0006\"\u000544898\u0012\u0011\b2\u0012\u0006\u0010\u00c4\u008a\u0098\u00a8\u0006\"\u000540993\u0012\u0014\b3\u0012\u0006\u0010\u00ec\u008e\u0098\u00a8\u0006\"\b16005188\u0012\u0011\b4\u0012\u0006\u0010\u00e9\u0093\u0098\u00a8\u0006\"\u000540995\u0012\u0011\b5\u0012\u0006\u0010\u00d2\u0095\u0098\u00a8\u0006\"\u000540996\u0012\u0011\b6\u0012\u0006\u0010\u00bd\u0097\u0098\u00a8\u0006\"\u000540997\u0012\u0011\b7\u0012\u0006\u0010\u00ed\u0098\u0098\u00a8\u0006\"\u000539614\u0012\u0011\b8\u0012\u0006\u0010\u0094\u009a\u0098\u00a8\u0006\"\u000539615\u0012\u0011\b9\u0012\u0006\u0010\u00c6\u009b\u0098\u00a8\u0006\"\u000539616\u0012\u0011\b:\u0012\u0006\u0010\u0084\u009d\u0098\u00a8\u0006\"\u000539617\u0012\u0011\b;\u0012\u0006\u0010\u00e1\u009e\u0098\u00a8\u0006\"\u000539618\u0012\u0011\b<\u0012\u0006\u0010\u008b\u00a0\u0098\u00a8\u0006\"\u000539619\u0012\u0011\b=\u0012\u0006\u0010\u00b7\u00a1\u0098\u00a8\u0006\"\u000539620\u0012\u0011\b>\u0012\u0006\u0010\u00e3\u00a3\u0098\u00a8\u0006\"\u000539621\u0012\u0011\b?\u0012\u0006\u0010\u00be\u00a5\u0098\u00a8\u0006\"\u000538281\u0012\u0011\b@\u0012\u0006\u0010\u00c5\u00a7\u0098\u00a8\u0006\"\u000537506\u0012\u0011\bA\u0012\u0006\u0010\u008f\u00a9\u0098\u00a8\u0006\"\u000545068\u0012\u0011\bB\u0012\u0006\u0010\u00b2\u00ae\u0098\u00a8\u0006\"\u000537480\u0012\u0011\bC\u0012\u0006\u0010\u00a1\u00b1\u0098\u00a8\u0006\"\u000537477\u0012\u0011\bD\u0012\u0006\u0010\u00ae\u00b4\u0098\u00a8\u0006\"\u000540848\u0012\u0011\bE\u0012\u0006\u0010\u00cb\u00b9\u0098\u00a8\u0006\"\u00052-Apr\u0012\u0011\bF\u0012\u0006\u0010\u00cf\u00bc\u0098\u00a8\u0006\"\u000539728\u0012\u0011\bG\u0012\u0006\u0010\u0092\u00c3\u0098\u00a8\u0006\"\u000539729\u0012\u0011\bH\u0012\u0006\u0010\u00ef\u00c4\u0098\u00a8\u0006\"\u000539730\u0012\u0011\bI\u0012\u0006\u0010\u00a4\u00cd\u0098\u00a8\u0006\"\u000542200\u0012\u0011\bJ\u0012\u0006\u0010\u00fe\u00cf\u0098\u00a8\u0006\"\u000542203\u0012\u0011\bK\u0012\u0006\u0010\u00ed\u00d9\u0098\u00a8\u0006\"\u000542205\u0012\u0011\bL\u0012\u0006\u0010\u00e4\u00df\u0098\u00a8\u0006\"\u000542201\u0012\u0011\bM\u0012\u0006\u0010\u00a5\u0085\u0099\u00a8\u0006\"\u000542206\u0012\u0011\bN\u0012\u0006\u0010\u00e8\u008e\u0099\u00a8\u0006\"\u000542207\u0012\u0011\bO\u0012\u0006\u0010\u00fb\u009c\u0099\u00a8\u0006\"\u000542208\u0012\u0011\bP\u0012\u0006\u0010\u00c3\u00c1\u0099\u00a8\u0006\"\u000542564\u0012\u0011\bQ\u0012\u0006\u0010\u00c7\u00ec\u0099\u00a8\u0006\"\u000542214\u0012\u0011\bR\u0012\u0006\u0010\u00c2\u00ab\u009a\u00a8\u0006\"\u000542209\u0012\u0011\bS\u0012\u0006\u0010\u008d\u009f\u009b\u00a8\u0006\"\u000542210\u0012\u0011\bT\u0012\u0006\u0010\u0082\u00c1\u009f\u00a8\u0006\"\u000542215\u0012\u0011\bU\u0012\u0006\u0010\u00d8\u009a\u00a1\u00a8\u0006\"\u000542216\u0012\u0011\bV\u0012\u0006\u0010\u00f9\u00ac\u00a6\u00a8\u0006\"\u000542217\u0012\u0011\bW\u0012\u0006\u0010\u008c\u00fa\u00ea\u00a8\u0006\"\u000542218\u001a\b\u001a\u0006TX3525 \u00ef\u00e5\u0097\u00a8\u0006\"`\n/\n\u001016123-701ff27f-2\u0012\b15:01:00\u001a\b20230916 \u0000*\u00035540\u0001\u0012\u001d\r\u00a1\u0093\u0012\u00c2\u0015\u00b81\u0092\u00c2\u001d\u0000\u0000jC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u00a0A(\u00ef\u00e5\u0097\u00a8\u0006B\b\u001a\u0006TX3525" + }, + { + "type": "con_recorrido", + "entity": "\n$0b9ff009-f097-48bf-96dd-9224e5d905b9\u001a\u00ef\f\n/\n\u001016124-701ff27f-2\u0012\b15:21:00\u001a\b20230916 \u0000*\u00035540\u0001\u0012\u0011\b\u001c\u0012\u0006\u0010\u009c\u00e9\u0097\u00a8\u0006\"\u000538767\u0012\u0011\b\u001d\u0012\u0006\u0010\u00db\u00e9\u0097\u00a8\u0006\"\u000538768\u0012\u0011\b\u001e\u0012\u0006\u0010\u0091\u00ea\u0097\u00a8\u0006\"\u000538769\u0012\u0011\b\u001f\u0012\u0006\u0010\u00b3\u00ea\u0097\u00a8\u0006\"\u000549357\u0012\u0011\b \u0012\u0006\u0010\u00e4\u00ea\u0097\u00a8\u0006\"\u000538771\u0012\u0011\b!\u0012\u0006\u0010\u0091\u00eb\u0097\u00a8\u0006\"\u000538668\u0012\u0011\b\"\u0012\u0006\u0010\u00ed\u00eb\u0097\u00a8\u0006\"\u000538661\u0012\u0011\b#\u0012\u0006\u0010\u00be\u00ec\u0097\u00a8\u0006\"\u000538657\u0012\u0011\b$\u0012\u0006\u0010\u00fa\u00ec\u0097\u00a8\u0006\"\u000538743\u0012\u0011\b%\u0012\u0006\u0010\u00bc\u00ed\u0097\u00a8\u0006\"\u000538652\u0012\u0011\b&\u0012\u0006\u0010\u00fd\u00ed\u0097\u00a8\u0006\"\u000538721\u0012\u0011\b'\u0012\u0006\u0010\u00b5\u00ee\u0097\u00a8\u0006\"\u000538659\u0012\u0011\b(\u0012\u0006\u0010\u008c\u00ef\u0097\u00a8\u0006\"\u000538674\u0012\u0011\b)\u0012\u0006\u0010\u00ce\u00ef\u0097\u00a8\u0006\"\u000538649\u0012\u0011\b*\u0012\u0006\u0010\u0093\u00f0\u0097\u00a8\u0006\"\u000538718\u0012\u0011\b+\u0012\u0006\u0010\u00d3\u00f0\u0097\u00a8\u0006\"\u000538735\u0012\u0011\b,\u0012\u0006\u0010\u008a\u00f1\u0097\u00a8\u0006\"\u000542270\u0012\u0011\b-\u0012\u0006\u0010\u00b5\u00f1\u0097\u00a8\u0006\"\u000542271\u0012\u0013\b.\u0012\u0006\u0010\u00fa\u00f1\u0097\u00a8\u0006\"\u00074838438\u0012\u0011\b/\u0012\u0006\u0010\u008c\u00f3\u0097\u00a8\u0006\"\u000544896\u0012\u0011\b0\u0012\u0006\u0010\u00bc\u00f3\u0097\u00a8\u0006\"\u000544897\u0012\u0011\b1\u0012\u0006\u0010\u00fd\u00f3\u0097\u00a8\u0006\"\u000544898\u0012\u0011\b2\u0012\u0006\u0010\u00af\u00f5\u0097\u00a8\u0006\"\u000540993\u0012\u0014\b3\u0012\u0006\u0010\u00ac\u00f7\u0097\u00a8\u0006\"\b16005188\u0012\u0011\b4\u0012\u0006\u0010\u00b2\u00f9\u0097\u00a8\u0006\"\u000540995\u0012\u0011\b5\u0012\u0006\u0010\u008b\u00fa\u0097\u00a8\u0006\"\u000540996\u0012\u0011\b6\u0012\u0006\u0010\u00e2\u00fa\u0097\u00a8\u0006\"\u000540997\u0012\u0011\b7\u0012\u0006\u0010\u00a0\u00fb\u0097\u00a8\u0006\"\u000539614\u0012\u0011\b8\u0012\u0006\u0010\u00da\u00fb\u0097\u00a8\u0006\"\u000539615\u0012\u0011\b9\u0012\u0006\u0010\u0096\u00fc\u0097\u00a8\u0006\"\u000539616\u0012\u0011\b:\u0012\u0006\u0010\u00d5\u00fc\u0097\u00a8\u0006\"\u000539617\u0012\u0011\b;\u0012\u0006\u0010\u009b\u00fd\u0097\u00a8\u0006\"\u000539618\u0012\u0011\b<\u0012\u0006\u0010\u00d0\u00fd\u0097\u00a8\u0006\"\u000539619\u0012\u0011\b=\u0012\u0006\u0010\u0084\u00fe\u0097\u00a8\u0006\"\u000539620\u0012\u0011\b>\u0012\u0006\u0010\u00dc\u00fe\u0097\u00a8\u0006\"\u000539621\u0012\u0011\b?\u0012\u0006\u0010\u009b\u00ff\u0097\u00a8\u0006\"\u000538281\u0012\u0011\b@\u0012\u0006\u0010\u00e3\u00ff\u0097\u00a8\u0006\"\u000537506\u0012\u0011\bA\u0012\u0006\u0010\u0099\u0080\u0098\u00a8\u0006\"\u000545068\u0012\u0011\bB\u0012\u0006\u0010\u00c3\u0081\u0098\u00a8\u0006\"\u000537480\u0012\u0011\bC\u0012\u0006\u0010\u009b\u0082\u0098\u00a8\u0006\"\u000537477\u0012\u0011\bD\u0012\u0006\u0010\u00f5\u0082\u0098\u00a8\u0006\"\u000540848\u0012\u0011\bE\u0012\u0006\u0010\u0084\u0084\u0098\u00a8\u0006\"\u00052-Apr\u0012\u0011\bF\u0012\u0006\u0010\u00d3\u0084\u0098\u00a8\u0006\"\u000539728\u0012\u0011\bG\u0012\u0006\u0010\u00f2\u0085\u0098\u00a8\u0006\"\u000539729\u0012\u0011\bH\u0012\u0006\u0010\u009a\u0086\u0098\u00a8\u0006\"\u000539730\u0012\u0011\bI\u0012\u0006\u0010\u00d0\u0087\u0098\u00a8\u0006\"\u000542200\u0012\u0011\bJ\u0012\u0006\u0010\u0087\u0088\u0098\u00a8\u0006\"\u000542203\u0012\u0011\bK\u0012\u0006\u0010\u00c1\u0089\u0098\u00a8\u0006\"\u000542205\u0012\u0011\bL\u0012\u0006\u0010\u00a8\u008a\u0098\u00a8\u0006\"\u000542201\u0012\u0011\bM\u0012\u0006\u0010\u00b5\u008e\u0098\u00a8\u0006\"\u000542206\u0012\u0011\bN\u0012\u0006\u0010\u00a0\u008f\u0098\u00a8\u0006\"\u000542207\u0012\u0011\bO\u0012\u0006\u0010\u00b0\u0090\u0098\u00a8\u0006\"\u000542208\u0012\u0011\bP\u0012\u0006\u0010\u00e3\u0092\u0098\u00a8\u0006\"\u000542564\u0012\u0011\bQ\u0012\u0006\u0010\u00f6\u0094\u0098\u00a8\u0006\"\u000542214\u0012\u0011\bR\u0012\u0006\u0010\u009e\u0097\u0098\u00a8\u0006\"\u000542209\u0012\u0011\bS\u0012\u0006\u0010\u00ff\u0099\u0098\u00a8\u0006\"\u000542210\u0012\u0011\bT\u0012\u0006\u0010\u00f2\u009e\u0098\u00a8\u0006\"\u000542215\u0012\u0011\bU\u0012\u0006\u0010\u00d7\u009f\u0098\u00a8\u0006\"\u000542216\u0012\u0011\bV\u0012\u0006\u0010\u00fe\u00a0\u0098\u00a8\u0006\"\u000542217\u0012\u0011\bW\u0012\u0006\u0010\u0087\u00a3\u0098\u00a8\u0006\"\u000542218\u0012\u0011\bX\u0012\u0006\u0010\u00bb\u00a4\u0098\u00a8\u0006\"\u000542219\u0012\u0011\bY\u0012\u0006\u0010\u00f4\u00a7\u0098\u00a8\u0006\"\u000542220\u0012\u0011\bZ\u0012\u0006\u0010\u00c3\u00a9\u0098\u00a8\u0006\"\u000542221\u0012\u0011\b[\u0012\u0006\u0010\u0096\u00ac\u0098\u00a8\u0006\"\u000542222\u0012\u0011\b\\\u0012\u0006\u0010\u00a8\u00af\u0098\u00a8\u0006\"\u000542223\u0012\u0011\b]\u0012\u0006\u0010\u00dd\u00b0\u0098\u00a8\u0006\"\u000542224\u0012\u0011\b^\u0012\u0006\u0010\u00f1\u00b3\u0098\u00a8\u0006\"\u000542225\u0012\u0011\b_\u0012\u0006\u0010\u00a0\u00b7\u0098\u00a8\u0006\"\u000542226\u0012\u0011\b`\u0012\u0006\u0010\u0088\u00ba\u0098\u00a8\u0006\"\u000542227\u0012\u0011\ba\u0012\u0006\u0010\u00ef\u00be\u0098\u00a8\u0006\"\u000542228\u0012\u0011\bb\u0012\u0006\u0010\u00bb\u00c1\u0098\u00a8\u0006\"\u000542229\u0012\u0011\bc\u0012\u0006\u0010\u00e9\u00c6\u0098\u00a8\u0006\"\u000542230\u0012\u0011\bd\u0012\u0006\u0010\u00ee\u00c9\u0098\u00a8\u0006\"\u000542231\u0012\u0011\be\u0012\u0006\u0010\u009a\u00d0\u0098\u00a8\u0006\"\u000542232\u0012\u0011\bf\u0012\u0006\u0010\u0091\u00d8\u0098\u00a8\u0006\"\u000542233\u0012\u0011\bg\u0012\u0006\u0010\u0087\u00dc\u0098\u00a8\u0006\"\u000542234\u0012\u0011\bh\u0012\u0006\u0010\u00ce\u00e3\u0098\u00a8\u0006\"\u000542235\u0012\u0011\bi\u0012\u0006\u0010\u0097\u00e7\u0098\u00a8\u0006\"\u000542211\u0012\u0011\bj\u0012\u0006\u0010\u00f6\u00ed\u0098\u00a8\u0006\"\u000549203\u0012\u0011\bk\u0012\u0006\u0010\u00e4\u00f4\u0098\u00a8\u0006\"\u000549204\u0012\u0011\bl\u0012\u0006\u0010\u00fe\u00f7\u0098\u00a8\u0006\"\u000542503\u0012\u0011\bm\u0012\u0006\u0010\u00a2\u00a4\u0099\u00a8\u0006\"\u000542272\u0012\u0011\bn\u0012\u0006\u0010\u0096\u00d1\u0099\u00a8\u0006\"\u000542077\u001a\b\u001a\u0006ZR8471 \u00c4\u00e8\u0097\u00a8\u0006\"`\n/\n\u001016124-701ff27f-2\u0012\b15:21:00\u001a\b20230916 \u0000*\u00035540\u0001\u0012\u001d\r\u0089\u00db\u0012\u00c2\u0015;9\u0092\u00c2\u001d\u0000\u0000\u00fcB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u00f0A(\u00c4\u00e8\u0097\u00a8\u0006B\b\u001a\u0006ZR8471" + }, + { + "type": "con_recorrido", + "entity": "\n$837ea09a-a33e-4452-a194-017ef047d161\u001a\u0084\n\n/\n\u001016371-701ff27f-2\u0012\b15:20:00\u001a\b20230916 \u0000*\u00035560\u0001\u0012\u0011\b(\u0012\u0006\u0010\u00a7\u00e8\u0097\u00a8\u0006\"\u000544897\u0012\u0011\b)\u0012\u0006\u0010\u00f5\u00e8\u0097\u00a8\u0006\"\u000544898\u0012\u0011\b*\u0012\u0006\u0010\u00a7\u00ea\u0097\u00a8\u0006\"\u000540993\u0012\u0014\b+\u0012\u0006\u0010\u00a0\u00ec\u0097\u00a8\u0006\"\b16005188\u0012\u0011\b,\u0012\u0006\u0010\u0095\u00ee\u0097\u00a8\u0006\"\u000540995\u0012\u0011\b-\u0012\u0006\u0010\u00e0\u00ee\u0097\u00a8\u0006\"\u000540996\u0012\u0011\b.\u0012\u0006\u0010\u00ab\u00ef\u0097\u00a8\u0006\"\u000540997\u0012\u0011\b/\u0012\u0006\u0010\u00e4\u00ef\u0097\u00a8\u0006\"\u000539614\u0012\u0011\b0\u0012\u0006\u0010\u0092\u00f0\u0097\u00a8\u0006\"\u000539615\u0012\u0011\b1\u0012\u0006\u0010\u00c2\u00f0\u0097\u00a8\u0006\"\u000539616\u0012\u0011\b2\u0012\u0006\u0010\u00f7\u00f0\u0097\u00a8\u0006\"\u000539617\u0012\u0011\b3\u0012\u0006\u0010\u00af\u00f1\u0097\u00a8\u0006\"\u000539618\u0012\u0011\b4\u0012\u0006\u0010\u00db\u00f1\u0097\u00a8\u0006\"\u000539619\u0012\u0011\b5\u0012\u0006\u0010\u0081\u00f2\u0097\u00a8\u0006\"\u000539620\u0012\u0011\b6\u0012\u0006\u0010\u00c5\u00f2\u0097\u00a8\u0006\"\u000539621\u0012\u0011\b7\u0012\u0006\u0010\u00f5\u00f2\u0097\u00a8\u0006\"\u000538281\u0012\u0011\b8\u0012\u0006\u0010\u00ab\u00f3\u0097\u00a8\u0006\"\u000537506\u0012\u0011\b9\u0012\u0006\u0010\u00d3\u00f3\u0097\u00a8\u0006\"\u000545068\u0012\u0011\b:\u0012\u0006\u0010\u00d0\u00f4\u0097\u00a8\u0006\"\u000537480\u0012\u0011\b;\u0012\u0006\u0010\u008e\u00f5\u0097\u00a8\u0006\"\u000537477\u0012\u0011\b<\u0012\u0006\u0010\u00d3\u00f5\u0097\u00a8\u0006\"\u000540848\u0012\u0011\b=\u0012\u0006\u0010\u00a9\u00f6\u0097\u00a8\u0006\"\u00052-Apr\u0012\u0011\b>\u0012\u0006\u0010\u00e4\u00f6\u0097\u00a8\u0006\"\u000539728\u0012\u0011\b?\u0012\u0006\u0010\u00ca\u00f7\u0097\u00a8\u0006\"\u000539729\u0012\u0011\b@\u0012\u0006\u0010\u00e4\u00f7\u0097\u00a8\u0006\"\u000539730\u0012\u0011\bA\u0012\u0006\u0010\u00d3\u00f8\u0097\u00a8\u0006\"\u000542200\u0012\u0011\bB\u0012\u0006\u0010\u0084\u00f9\u0097\u00a8\u0006\"\u000542203\u0012\u0011\bC\u0012\u0006\u0010\u00c0\u00f9\u0097\u00a8\u0006\"\u000542204\u0012\u0011\bD\u0012\u0006\u0010\u00ee\u00f9\u0097\u00a8\u0006\"\u000542205\u0012\u0011\bE\u0012\u0006\u0010\u00b2\u00fa\u0097\u00a8\u0006\"\u000542201\u0012\u0011\bF\u0012\u0006\u0010\u00da\u00fc\u0097\u00a8\u0006\"\u000542206\u0012\u0011\bG\u0012\u0006\u0010\u009c\u00fd\u0097\u00a8\u0006\"\u000542207\u0012\u0011\bH\u0012\u0006\u0010\u00e6\u00fd\u0097\u00a8\u0006\"\u000542208\u0012\u0011\bI\u0012\u0006\u0010\u0087\u00ff\u0097\u00a8\u0006\"\u000542564\u0012\u0011\bJ\u0012\u0006\u0010\u0092\u0080\u0098\u00a8\u0006\"\u000542214\u0012\u0011\bK\u0012\u0006\u0010\u00a4\u0081\u0098\u00a8\u0006\"\u000542209\u0012\u0011\bL\u0012\u0006\u0010\u00cd\u0082\u0098\u00a8\u0006\"\u000542210\u0012\u0011\bM\u0012\u0006\u0010\u00e8\u0084\u0098\u00a8\u0006\"\u000542215\u0012\u0011\bN\u0012\u0006\u0010\u0099\u0085\u0098\u00a8\u0006\"\u000542216\u0012\u0011\bO\u0012\u0006\u0010\u00db\u0085\u0098\u00a8\u0006\"\u000542217\u0012\u0011\bP\u0012\u0006\u0010\u00d7\u0086\u0098\u00a8\u0006\"\u000542218\u0012\u0011\bQ\u0012\u0006\u0010\u00a1\u0087\u0098\u00a8\u0006\"\u000542219\u0012\u0011\bR\u0012\u0006\u0010\u00ce\u0088\u0098\u00a8\u0006\"\u000542220\u0012\u0011\bS\u0012\u0006\u0010\u00a1\u0089\u0098\u00a8\u0006\"\u000542221\u0012\u0011\bT\u0012\u0006\u0010\u009e\u008a\u0098\u00a8\u0006\"\u000542222\u0012\u0011\bU\u0012\u0006\u0010\u00a1\u008b\u0098\u00a8\u0006\"\u000542223\u0012\u0011\bV\u0012\u0006\u0010\u00d9\u008b\u0098\u00a8\u0006\"\u000542224\u0012\u0011\bW\u0012\u0006\u0010\u00f4\u008c\u0098\u00a8\u0006\"\u000542225\u0012\u0011\bX\u0012\u0006\u0010\u00fc\u008d\u0098\u00a8\u0006\"\u000542226\u0012\u0011\bY\u0012\u0006\u0010\u00f0\u008e\u0098\u00a8\u0006\"\u000542227\u0012\u0011\bZ\u0012\u0006\u0010\u00ae\u0090\u0098\u00a8\u0006\"\u000542228\u0012\u0011\b[\u0012\u0006\u0010\u0090\u0091\u0098\u00a8\u0006\"\u000542229\u0012\u0011\b\\\u0012\u0006\u0010\u00d4\u0092\u0098\u00a8\u0006\"\u000542230\u0012\u0011\b]\u0012\u0006\u0010\u00bf\u0093\u0098\u00a8\u0006\"\u000542231\u0012\u0011\b^\u0012\u0006\u0010\u0093\u0095\u0098\u00a8\u0006\"\u000542232\u0012\u0011\b_\u0012\u0006\u0010\u0089\u0097\u0098\u00a8\u0006\"\u000542233\u0012\u0011\b`\u0012\u0006\u0010\u0080\u0098\u0098\u00a8\u0006\"\u000542234\u0012\u0011\ba\u0012\u0006\u0010\u00d5\u0099\u0098\u00a8\u0006\"\u000542235\u0012\u0011\bb\u0012\u0006\u0010\u00b5\u009a\u0098\u00a8\u0006\"\u000542211\u0012\u0011\bc\u0012\u0006\u0010\u00c0\u009c\u0098\u00a8\u0006\"\u000591142\u0012\u0011\bd\u0012\u0006\u0010\u00fc\u009e\u0098\u00a8\u0006\"\u000541937\u0012\u0011\be\u0012\u0006\u0010\u00f2\u00a0\u0098\u00a8\u0006\"\u000591144\u0012\u0011\bf\u0012\u0006\u0010\u009e\u00a1\u0098\u00a8\u0006\"\u000591150\u0012\u0011\bg\u0012\u0006\u0010\u00a2\u00a3\u0098\u00a8\u0006\"\u000591145\u001a\b\u001a\u0006BDJS40 \u009e\u00e8\u0097\u00a8\u0006\"`\n/\n\u001016371-701ff27f-2\u0012\b15:20:00\u001a\b20230916 \u0000*\u00035560\u0001\u0012\u001d\r\u00c4\u0015\u0013\u00c2\u0015U*\u0092\u00c2\u001d\u0000\u0000\u001aC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u001c\u00c7\u0089A(\u009e\u00e8\u0097\u00a8\u0006B\b\u001a\u0006BDJS40" + }, + { + "type": "con_recorrido", + "entity": "\n$a452108d-b340-4511-a86e-be19fc1a3385\u001a\u0098\u0006\n/\n\u001016312-701ff27f-2\u0012\b14:41:00\u001a\b20230916 \u0000*\u00035560\u0000\u0012\u0011\bE\u0012\u0006\u0010\u00e8\u00e8\u0097\u00a8\u0006\"\u000538528\u0012\u0011\bF\u0012\u0006\u0010\u00e7\u00e9\u0097\u00a8\u0006\"\u000538529\u0012\u0011\bG\u0012\u0006\u0010\u00b9\u00eb\u0097\u00a8\u0006\"\u000538530\u0012\u0014\bH\u0012\u0006\u0010\u00c6\u00eb\u0097\u00a8\u0006\"\b16005209\u0012\u0011\bI\u0012\u0006\u0010\u00b1\u00ed\u0097\u00a8\u0006\"\u000538531\u0012\u0013\bJ\u0012\u0006\u0010\u00e6\u00ed\u0097\u00a8\u0006\"\u00078921285\u0012\u0011\bK\u0012\u0006\u0010\u00d0\u00ee\u0097\u00a8\u0006\"\u000538532\u0012\u0011\bL\u0012\u0006\u0010\u0086\u00ef\u0097\u00a8\u0006\"\u000538533\u0012\u0011\bM\u0012\u0006\u0010\u00bb\u00ef\u0097\u00a8\u0006\"\u000538534\u0012\u0011\bN\u0012\u0006\u0010\u00b8\u00f0\u0097\u00a8\u0006\"\u000542382\u0012\u0011\bO\u0012\u0006\u0010\u00fc\u00f0\u0097\u00a8\u0006\"\u000542383\u0012\u0011\bP\u0012\u0006\u0010\u00b5\u00f1\u0097\u00a8\u0006\"\u000542384\u0012\u0011\bQ\u0012\u0006\u0010\u00dc\u00f1\u0097\u00a8\u0006\"\u000543339\u0012\u0011\bR\u0012\u0006\u0010\u008c\u00f2\u0097\u00a8\u0006\"\u000543207\u0012\u0011\bS\u0012\u0006\u0010\u00b9\u00f2\u0097\u00a8\u0006\"\u000543208\u0012\u0011\bT\u0012\u0006\u0010\u00f9\u00f2\u0097\u00a8\u0006\"\u000543209\u0012\u0011\bU\u0012\u0006\u0010\u008f\u00f3\u0097\u00a8\u0006\"\u000543210\u0012\u0011\bV\u0012\u0006\u0010\u00cf\u00f3\u0097\u00a8\u0006\"\u000542389\u0012\u0011\bW\u0012\u0006\u0010\u00e2\u00f3\u0097\u00a8\u0006\"\u000542390\u0012\u0011\bX\u0012\u0006\u0010\u0080\u00f4\u0097\u00a8\u0006\"\u000542391\u0012\u0011\bY\u0012\u0006\u0010\u00b9\u00f4\u0097\u00a8\u0006\"\u000542392\u0012\u0011\bZ\u0012\u0006\u0010\u00d4\u00f4\u0097\u00a8\u0006\"\u000542393\u0012\u0011\b[\u0012\u0006\u0010\u00fa\u00f4\u0097\u00a8\u0006\"\u000542394\u0012\u0011\b\\\u0012\u0006\u0010\u00aa\u00f5\u0097\u00a8\u0006\"\u000542395\u0012\u0011\b]\u0012\u0006\u0010\u00ea\u00f5\u0097\u00a8\u0006\"\u000542396\u0012\u0011\b^\u0012\u0006\u0010\u00fd\u00f5\u0097\u00a8\u0006\"\u000542397\u0012\u0011\b_\u0012\u0006\u0010\u00b0\u00f6\u0097\u00a8\u0006\"\u000542398\u0012\u0011\b`\u0012\u0006\u0010\u00d8\u00f6\u0097\u00a8\u0006\"\u000542399\u0012\u0011\ba\u0012\u0006\u0010\u0094\u00f7\u0097\u00a8\u0006\"\u000542400\u0012\u0011\bb\u0012\u0006\u0010\u0085\u00f9\u0097\u00a8\u0006\"\u000538550\u0012\u0011\bc\u0012\u0006\u0010\u00da\u00fa\u0097\u00a8\u0006\"\u000538552\u0012\u0011\bd\u0012\u0006\u0010\u00ac\u00fb\u0097\u00a8\u0006\"\u000549359\u0012\u0011\be\u0012\u0006\u0010\u00e7\u00fb\u0097\u00a8\u0006\"\u000549360\u0012\u0011\bf\u0012\u0006\u0010\u00ed\u00fc\u0097\u00a8\u0006\"\u000549361\u0012\u0011\bg\u0012\u0006\u0010\u008c\u00fd\u0097\u00a8\u0006\"\u000549362\u0012\u0011\bh\u0012\u0006\u0010\u00c4\u00fd\u0097\u00a8\u0006\"\u000549363\u0012\u0011\bi\u0012\u0006\u0010\u0081\u00fe\u0097\u00a8\u0006\"\u000549364\u0012\u0011\bj\u0012\u0006\u0010\u00bb\u00fe\u0097\u00a8\u0006\"\u000549365\u001a\b\u001a\u0006FXRR90 \u00aa\u00e8\u0097\u00a8\u0006\"`\n/\n\u001016312-701ff27f-2\u0012\b14:41:00\u001a\b20230916 \u0000*\u00035560\u0000\u0012\u001d\r\u00da6\u0013\u00c2\u0015\"\u001c\u0092\u00c2\u001d\u0000\u0000\u00a6C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00ab\u00aabA(\u00aa\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FXRR90" + }, + { + "type": "con_recorrido", + "entity": "\n$3438b825-8f86-45de-9831-08a29e5488c0\u001a\u00be\u0007\n/\n\u001016370-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00035560\u0001\u0012\u0011\b9\u0012\u0006\u0010\u00b2\u00e8\u0097\u00a8\u0006\"\u000545068\u0012\u0011\b:\u0012\u0006\u0010\u00b7\u00e9\u0097\u00a8\u0006\"\u000537480\u0012\u0011\b;\u0012\u0006\u0010\u00f7\u00e9\u0097\u00a8\u0006\"\u000537477\u0012\u0011\b<\u0012\u0006\u0010\u00bd\u00ea\u0097\u00a8\u0006\"\u000540848\u0012\u0011\b=\u0012\u0006\u0010\u0093\u00eb\u0097\u00a8\u0006\"\u00052-Apr\u0012\u0011\b>\u0012\u0006\u0010\u00cc\u00eb\u0097\u00a8\u0006\"\u000539728\u0012\u0011\b?\u0012\u0006\u0010\u00ae\u00ec\u0097\u00a8\u0006\"\u000539729\u0012\u0011\b@\u0012\u0006\u0010\u00c6\u00ec\u0097\u00a8\u0006\"\u000539730\u0012\u0011\bA\u0012\u0006\u0010\u00ac\u00ed\u0097\u00a8\u0006\"\u000542200\u0012\u0011\bB\u0012\u0006\u0010\u00d8\u00ed\u0097\u00a8\u0006\"\u000542203\u0012\u0011\bC\u0012\u0006\u0010\u008e\u00ee\u0097\u00a8\u0006\"\u000542204\u0012\u0011\bD\u0012\u0006\u0010\u00b7\u00ee\u0097\u00a8\u0006\"\u000542205\u0012\u0011\bE\u0012\u0006\u0010\u00f2\u00ee\u0097\u00a8\u0006\"\u000542201\u0012\u0011\bF\u0012\u0006\u0010\u00e7\u00f0\u0097\u00a8\u0006\"\u000542206\u0012\u0011\bG\u0012\u0006\u0010\u009c\u00f1\u0097\u00a8\u0006\"\u000542207\u0012\u0011\bH\u0012\u0006\u0010\u00d6\u00f1\u0097\u00a8\u0006\"\u000542208\u0012\u0011\bI\u0012\u0006\u0010\u00d1\u00f2\u0097\u00a8\u0006\"\u000542564\u0012\u0011\bJ\u0012\u0006\u0010\u00b9\u00f3\u0097\u00a8\u0006\"\u000542214\u0012\u0011\bK\u0012\u0006\u0010\u00a2\u00f4\u0097\u00a8\u0006\"\u000542209\u0012\u0011\bL\u0012\u0006\u0010\u0099\u00f5\u0097\u00a8\u0006\"\u000542210\u0012\u0011\bM\u0012\u0006\u0010\u00d7\u00f6\u0097\u00a8\u0006\"\u000542215\u0012\u0011\bN\u0012\u0006\u0010\u00f7\u00f6\u0097\u00a8\u0006\"\u000542216\u0012\u0011\bO\u0012\u0006\u0010\u00a2\u00f7\u0097\u00a8\u0006\"\u000542217\u0012\u0011\bP\u0012\u0006\u0010\u00f1\u00f7\u0097\u00a8\u0006\"\u000542218\u0012\u0011\bQ\u0012\u0006\u0010\u00a0\u00f8\u0097\u00a8\u0006\"\u000542219\u0012\u0011\bR\u0012\u0006\u0010\u008a\u00f9\u0097\u00a8\u0006\"\u000542220\u0012\u0011\bS\u0012\u0006\u0010\u00bd\u00f9\u0097\u00a8\u0006\"\u000542221\u0012\u0011\bT\u0012\u0006\u0010\u0087\u00fa\u0097\u00a8\u0006\"\u000542222\u0012\u0011\bU\u0012\u0006\u0010\u00d4\u00fa\u0097\u00a8\u0006\"\u000542223\u0012\u0011\bV\u0012\u0006\u0010\u00f4\u00fa\u0097\u00a8\u0006\"\u000542224\u0012\u0011\bW\u0012\u0006\u0010\u00cb\u00fb\u0097\u00a8\u0006\"\u000542225\u0012\u0011\bX\u0012\u0006\u0010\u0097\u00fc\u0097\u00a8\u0006\"\u000542226\u0012\u0011\bY\u0012\u0006\u0010\u00d7\u00fc\u0097\u00a8\u0006\"\u000542227\u0012\u0011\bZ\u0012\u0006\u0010\u00bc\u00fd\u0097\u00a8\u0006\"\u000542228\u0012\u0011\b[\u0012\u0006\u0010\u00f0\u00fd\u0097\u00a8\u0006\"\u000542229\u0012\u0011\b\\\u0012\u0006\u0010\u00d5\u00fe\u0097\u00a8\u0006\"\u000542230\u0012\u0011\b]\u0012\u0006\u0010\u008b\u00ff\u0097\u00a8\u0006\"\u000542231\u0012\u0011\b^\u0012\u0006\u0010\u00f4\u00ff\u0097\u00a8\u0006\"\u000542232\u0012\u0011\b_\u0012\u0006\u0010\u00eb\u0080\u0098\u00a8\u0006\"\u000542233\u0012\u0011\b`\u0012\u0006\u0010\u00a3\u0081\u0098\u00a8\u0006\"\u000542234\u0012\u0011\ba\u0012\u0006\u0010\u0086\u0082\u0098\u00a8\u0006\"\u000542235\u0012\u0011\bb\u0012\u0006\u0010\u00b2\u0082\u0098\u00a8\u0006\"\u000542211\u0012\u0011\bc\u0012\u0006\u0010\u00a9\u0083\u0098\u00a8\u0006\"\u000591142\u0012\u0011\bd\u0012\u0006\u0010\u00b1\u0084\u0098\u00a8\u0006\"\u000541937\u0012\u0011\be\u0012\u0006\u0010\u0099\u0085\u0098\u00a8\u0006\"\u000591144\u0012\u0011\bf\u0012\u0006\u0010\u00ab\u0085\u0098\u00a8\u0006\"\u000591150\u0012\u0011\bg\u0012\u0006\u0010\u0095\u0086\u0098\u00a8\u0006\"\u000591145\u001a\b\u001a\u0006HZRP10 \u00a6\u00e8\u0097\u00a8\u0006\"`\n/\n\u001016370-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00035560\u0001\u0012\u001d\rzM\u0013\u00c2\u00150\u0017\u0092\u00c2\u001d\u0000\u0000vC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008e\u00e3\u00f8@(\u00a6\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HZRP10" + }, + { + "type": "con_recorrido", + "entity": "\n$191418d6-2a51-461e-8048-93fe539496d6\u001a\u0089\u000e\n/\n\u001016314-701ff27f-2\u0012\b15:21:00\u001a\b20230916 \u0000*\u00035560\u0000\u0012\u0011\b\u0010\u0012\u0006\u0010\u00fb\u00e8\u0097\u00a8\u0006\"\u000542278\u0012\u0011\b\u0011\u0012\u0006\u0010\u00a7\u00e9\u0097\u00a8\u0006\"\u000542279\u0012\u0011\b\u0012\u0012\u0006\u0010\u00fc\u00e9\u0097\u00a8\u0006\"\u000542280\u0012\u0011\b\u0013\u0012\u0006\u0010\u00a8\u00ea\u0097\u00a8\u0006\"\u000542281\u0012\u0011\b\u0014\u0012\u0006\u0010\u00f4\u00ea\u0097\u00a8\u0006\"\u000542282\u0012\u0011\b\u0015\u0012\u0006\u0010\u00ad\u00eb\u0097\u00a8\u0006\"\u000542283\u0012\u0011\b\u0016\u0012\u0006\u0010\u00ee\u00eb\u0097\u00a8\u0006\"\u000549279\u0012\u0011\b\u0017\u0012\u0006\u0010\u00bd\u00ec\u0097\u00a8\u0006\"\u000542285\u0012\u0011\b\u0018\u0012\u0006\u0010\u0094\u00ed\u0097\u00a8\u0006\"\u000542286\u0012\u0011\b\u0019\u0012\u0006\u0010\u00a4\u00ed\u0097\u00a8\u0006\"\u000542287\u0012\u0011\b\u001a\u0012\u0006\u0010\u00db\u00ed\u0097\u00a8\u0006\"\u000542288\u0012\u0011\b\u001b\u0012\u0006\u0010\u00fe\u00ed\u0097\u00a8\u0006\"\u000542289\u0012\u0011\b\u001c\u0012\u0006\u0010\u00ce\u00ee\u0097\u00a8\u0006\"\u000542290\u0012\u0011\b\u001d\u0012\u0006\u0010\u0080\u00ef\u0097\u00a8\u0006\"\u000542291\u0012\u0011\b\u001e\u0012\u0006\u0010\u00d3\u00ef\u0097\u00a8\u0006\"\u000542292\u0012\u0011\b\u001f\u0012\u0006\u0010\u0097\u00f0\u0097\u00a8\u0006\"\u000542293\u0012\u0011\b \u0012\u0006\u0010\u00c3\u00f1\u0097\u00a8\u0006\"\u000542294\u0012\u0011\b!\u0012\u0006\u0010\u00bc\u00f2\u0097\u00a8\u0006\"\u000542295\u0012\u0011\b\"\u0012\u0006\u0010\u00b1\u00f3\u0097\u00a8\u0006\"\u000542296\u0012\u0011\b#\u0012\u0006\u0010\u00ad\u00f4\u0097\u00a8\u0006\"\u000542297\u0012\u0011\b$\u0012\u0006\u0010\u008e\u00f5\u0097\u00a8\u0006\"\u000542298\u0012\u0011\b%\u0012\u0006\u0010\u00ce\u00f5\u0097\u00a8\u0006\"\u000542299\u0012\u0011\b&\u0012\u0006\u0010\u00fa\u00f5\u0097\u00a8\u0006\"\u000549295\u0012\u0011\b'\u0012\u0006\u0010\u00f6\u00f6\u0097\u00a8\u0006\"\u000549296\u0012\u0011\b(\u0012\u0006\u0010\u00d1\u00f7\u0097\u00a8\u0006\"\u000549297\u0012\u0011\b)\u0012\u0006\u0010\u00f6\u00f7\u0097\u00a8\u0006\"\u000549298\u0012\u0011\b*\u0012\u0006\u0010\u00c0\u00f8\u0097\u00a8\u0006\"\u000549299\u0012\u0011\b+\u0012\u0006\u0010\u00ef\u00f8\u0097\u00a8\u0006\"\u000549300\u0012\u0011\b,\u0012\u0006\u0010\u00ca\u00f9\u0097\u00a8\u0006\"\u000549301\u0012\u0011\b-\u0012\u0006\u0010\u0096\u00fa\u0097\u00a8\u0006\"\u000549302\u0012\u0011\b.\u0012\u0006\u0010\u00c8\u00fa\u0097\u00a8\u0006\"\u000549303\u0012\u0011\b/\u0012\u0006\u0010\u0083\u00fb\u0097\u00a8\u0006\"\u000549304\u0012\u0011\b0\u0012\u0006\u0010\u00a4\u00fb\u0097\u00a8\u0006\"\u000549305\u0012\u0011\b1\u0012\u0006\u0010\u00e6\u00fb\u0097\u00a8\u0006\"\u000549306\u0012\u0011\b2\u0012\u0006\u0010\u0096\u00fc\u0097\u00a8\u0006\"\u000549307\u0012\u0011\b3\u0012\u0006\u0010\u00b2\u00fc\u0097\u00a8\u0006\"\u000549308\u0012\u0011\b4\u0012\u0006\u0010\u00cf\u00fc\u0097\u00a8\u0006\"\u000549309\u0012\u0011\b5\u0012\u0006\u0010\u00f1\u00fc\u0097\u00a8\u0006\"\u000542315\u0012\u0011\b6\u0012\u0006\u0010\u0085\u00fd\u0097\u00a8\u0006\"\u000542316\u0012\u0011\b7\u0012\u0006\u0010\u00cc\u00fd\u0097\u00a8\u0006\"\u000542317\u0012\u0011\b8\u0012\u0006\u0010\u0082\u00fe\u0097\u00a8\u0006\"\u000542318\u0012\u0013\b9\u0012\u0006\u0010\u00e9\u00fe\u0097\u00a8\u0006\"\u00078606396\u0012\u0011\b:\u0012\u0006\u0010\u00c7\u00ff\u0097\u00a8\u0006\"\u000538514\u0012\u0011\b;\u0012\u0006\u0010\u00fa\u00ff\u0097\u00a8\u0006\"\u000538516\u0012\u0011\b<\u0012\u0006\u0010\u00ca\u0080\u0098\u00a8\u0006\"\u000538518\u0012\u0011\b=\u0012\u0006\u0010\u00d6\u0081\u0098\u00a8\u0006\"\u000538520\u0012\u0011\b>\u0012\u0006\u0010\u008f\u0082\u0098\u00a8\u0006\"\u000538521\u0012\u0011\b?\u0012\u0006\u0010\u00d6\u0082\u0098\u00a8\u0006\"\u000538522\u0012\u0011\b@\u0012\u0006\u0010\u00a0\u0083\u0098\u00a8\u0006\"\u000538523\u0012\u0011\bA\u0012\u0006\u0010\u00ef\u0083\u0098\u00a8\u0006\"\u000538524\u0012\u0011\bB\u0012\u0006\u0010\u00bb\u0084\u0098\u00a8\u0006\"\u000538525\u0012\u0011\bC\u0012\u0006\u0010\u008d\u0085\u0098\u00a8\u0006\"\u000538526\u0012\u0011\bD\u0012\u0006\u0010\u00da\u0085\u0098\u00a8\u0006\"\u000538527\u0012\u0011\bE\u0012\u0006\u0010\u00ea\u0086\u0098\u00a8\u0006\"\u000538528\u0012\u0011\bF\u0012\u0006\u0010\u00ba\u0088\u0098\u00a8\u0006\"\u000538529\u0012\u0011\bG\u0012\u0006\u0010\u00bc\u008b\u0098\u00a8\u0006\"\u000538530\u0012\u0014\bH\u0012\u0006\u0010\u00d5\u008b\u0098\u00a8\u0006\"\b16005209\u0012\u0011\bI\u0012\u0006\u0010\u00cb\u008f\u0098\u00a8\u0006\"\u000538531\u0012\u0013\bJ\u0012\u0006\u0010\u00c9\u0090\u0098\u00a8\u0006\"\u00078921285\u0012\u0011\bK\u0012\u0006\u0010\u00d0\u0092\u0098\u00a8\u0006\"\u000538532\u0012\u0011\bL\u0012\u0006\u0010\u00dd\u0093\u0098\u00a8\u0006\"\u000538533\u0012\u0011\bM\u0012\u0006\u0010\u00ed\u0094\u0098\u00a8\u0006\"\u000538534\u0012\u0011\bN\u0012\u0006\u0010\u00d8\u0097\u0098\u00a8\u0006\"\u000542382\u0012\u0011\bO\u0012\u0006\u0010\u00a9\u0099\u0098\u00a8\u0006\"\u000542383\u0012\u0011\bP\u0012\u0006\u0010\u00e3\u009a\u0098\u00a8\u0006\"\u000542384\u0012\u0011\bQ\u0012\u0006\u0010\u00e7\u009b\u0098\u00a8\u0006\"\u000543339\u0012\u0011\bR\u0012\u0006\u0010\u008d\u009d\u0098\u00a8\u0006\"\u000543207\u0012\u0011\bS\u0012\u0006\u0010\u00b0\u009e\u0098\u00a8\u0006\"\u000543208\u0012\u0011\bT\u0012\u0006\u0010\u009d\u00a0\u0098\u00a8\u0006\"\u000543209\u0012\u0011\bU\u0012\u0006\u0010\u00f3\u00a0\u0098\u00a8\u0006\"\u000543210\u0012\u0011\bV\u0012\u0006\u0010\u00f2\u00a2\u0098\u00a8\u0006\"\u000542389\u0012\u0011\bW\u0012\u0006\u0010\u00c2\u00a3\u0098\u00a8\u0006\"\u000542390\u0012\u0011\bX\u0012\u0006\u0010\u00c0\u00a4\u0098\u00a8\u0006\"\u000542391\u0012\u0011\bY\u0012\u0006\u0010\u00b7\u00a6\u0098\u00a8\u0006\"\u000542392\u0012\u0011\bZ\u0012\u0006\u0010\u00b2\u00a7\u0098\u00a8\u0006\"\u000542393\u0012\u0011\b[\u0012\u0006\u0010\u00e0\u00a8\u0098\u00a8\u0006\"\u000542394\u0012\u0011\b\\\u0012\u0006\u0010\u00c9\u00aa\u0098\u00a8\u0006\"\u000542395\u0012\u0011\b]\u0012\u0006\u0010\u0088\u00ad\u0098\u00a8\u0006\"\u000542396\u0012\u0011\b^\u0012\u0006\u0010\u00eb\u00ad\u0098\u00a8\u0006\"\u000542397\u0012\u0011\b_\u0012\u0006\u0010\u00fb\u00af\u0098\u00a8\u0006\"\u000542398\u0012\u0011\b`\u0012\u0006\u0010\u00da\u00b1\u0098\u00a8\u0006\"\u000542399\u0012\u0011\ba\u0012\u0006\u0010\u00b6\u00b4\u0098\u00a8\u0006\"\u000542400\u0012\u0011\bb\u0012\u0006\u0010\u0083\u00c1\u0098\u00a8\u0006\"\u000538550\u0012\u0011\bc\u0012\u0006\u0010\u00e3\u00ce\u0098\u00a8\u0006\"\u000538552\u0012\u0011\bd\u0012\u0006\u0010\u0080\u00d5\u0098\u00a8\u0006\"\u000549359\u0012\u0011\be\u0012\u0006\u0010\u00e4\u00d9\u0098\u00a8\u0006\"\u000549360\u0012\u0011\bf\u0012\u0006\u0010\u00f6\u00e5\u0098\u00a8\u0006\"\u000549361\u0012\u0011\bg\u0012\u0006\u0010\u0088\u00e9\u0098\u00a8\u0006\"\u000549362\u0012\u0011\bh\u0012\u0006\u0010\u00f5\u00ee\u0098\u00a8\u0006\"\u000549363\u0012\u0011\bi\u0012\u0006\u0010\u00f5\u00f5\u0098\u00a8\u0006\"\u000549364\u0012\u0011\bj\u0012\u0006\u0010\u00fd\u00fc\u0098\u00a8\u0006\"\u000549365\u001a\b\u001a\u0006LJKK61 \u00aa\u00e8\u0097\u00a8\u0006\"`\n/\n\u001016314-701ff27f-2\u0012\b15:21:00\u001a\b20230916 \u0000*\u00035560\u0000\u0012\u001d\r\u008f\u00c4\u0013\u00c2\u0015>\t\u0092\u00c2\u001d\u0000\u0000\u00aaC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000 @(\u00aa\u00e8\u0097\u00a8\u0006B\b\u001a\u0006LJKK61" + }, + { + "type": "con_recorrido", + "entity": "\n$718face7-7a75-4521-ac05-4cce68308b69\u001a\u00e9\u0007\n/\n\u001016313-701ff27f-2\u0012\b15:01:00\u001a\b20230916 \u0000*\u00035560\u0000\u0012\u0011\b:\u0012\u0006\u0010\u00c4\u00e8\u0097\u00a8\u0006\"\u000538514\u0012\u0011\b;\u0012\u0006\u0010\u00ee\u00e8\u0097\u00a8\u0006\"\u000538516\u0012\u0011\b<\u0012\u0006\u0010\u00ac\u00e9\u0097\u00a8\u0006\"\u000538518\u0012\u0011\b=\u0012\u0006\u0010\u0095\u00ea\u0097\u00a8\u0006\"\u000538520\u0012\u0011\b>\u0012\u0006\u0010\u00bf\u00ea\u0097\u00a8\u0006\"\u000538521\u0012\u0011\b?\u0012\u0006\u0010\u00f2\u00ea\u0097\u00a8\u0006\"\u000538522\u0012\u0011\b@\u0012\u0006\u0010\u00a4\u00eb\u0097\u00a8\u0006\"\u000538523\u0012\u0011\bA\u0012\u0006\u0010\u00d9\u00eb\u0097\u00a8\u0006\"\u000538524\u0012\u0011\bB\u0012\u0006\u0010\u008b\u00ec\u0097\u00a8\u0006\"\u000538525\u0012\u0011\bC\u0012\u0006\u0010\u00be\u00ec\u0097\u00a8\u0006\"\u000538526\u0012\u0011\bD\u0012\u0006\u0010\u00ee\u00ec\u0097\u00a8\u0006\"\u000538527\u0012\u0011\bE\u0012\u0006\u0010\u00c4\u00ed\u0097\u00a8\u0006\"\u000538528\u0012\u0011\bF\u0012\u0006\u0010\u00ba\u00ee\u0097\u00a8\u0006\"\u000538529\u0012\u0011\bG\u0012\u0006\u0010\u0082\u00f0\u0097\u00a8\u0006\"\u000538530\u0012\u0014\bH\u0012\u0006\u0010\u008e\u00f0\u0097\u00a8\u0006\"\b16005209\u0012\u0011\bI\u0012\u0006\u0010\u00f4\u00f1\u0097\u00a8\u0006\"\u000538531\u0012\u0013\bJ\u0012\u0006\u0010\u00a9\u00f2\u0097\u00a8\u0006\"\u00078921285\u0012\u0011\bK\u0012\u0006\u0010\u0093\u00f3\u0097\u00a8\u0006\"\u000538532\u0012\u0011\bL\u0012\u0006\u0010\u00ca\u00f3\u0097\u00a8\u0006\"\u000538533\u0012\u0011\bM\u0012\u0006\u0010\u0080\u00f4\u0097\u00a8\u0006\"\u000538534\u0012\u0011\bN\u0012\u0006\u0010\u0081\u00f5\u0097\u00a8\u0006\"\u000542382\u0012\u0011\bO\u0012\u0006\u0010\u00c7\u00f5\u0097\u00a8\u0006\"\u000542383\u0012\u0011\bP\u0012\u0006\u0010\u0083\u00f6\u0097\u00a8\u0006\"\u000542384\u0012\u0011\bQ\u0012\u0006\u0010\u00ac\u00f6\u0097\u00a8\u0006\"\u000543339\u0012\u0011\bR\u0012\u0006\u0010\u00df\u00f6\u0097\u00a8\u0006\"\u000543207\u0012\u0011\bS\u0012\u0006\u0010\u008f\u00f7\u0097\u00a8\u0006\"\u000543208\u0012\u0011\bT\u0012\u0006\u0010\u00d3\u00f7\u0097\u00a8\u0006\"\u000543209\u0012\u0011\bU\u0012\u0006\u0010\u00eb\u00f7\u0097\u00a8\u0006\"\u000543210\u0012\u0011\bV\u0012\u0006\u0010\u00b0\u00f8\u0097\u00a8\u0006\"\u000542389\u0012\u0011\bW\u0012\u0006\u0010\u00c5\u00f8\u0097\u00a8\u0006\"\u000542390\u0012\u0011\bX\u0012\u0006\u0010\u00e5\u00f8\u0097\u00a8\u0006\"\u000542391\u0012\u0011\bY\u0012\u0006\u0010\u00a3\u00f9\u0097\u00a8\u0006\"\u000542392\u0012\u0011\bZ\u0012\u0006\u0010\u00c1\u00f9\u0097\u00a8\u0006\"\u000542393\u0012\u0011\b[\u0012\u0006\u0010\u00eb\u00f9\u0097\u00a8\u0006\"\u000542394\u0012\u0011\b\\\u0012\u0006\u0010\u00a1\u00fa\u0097\u00a8\u0006\"\u000542395\u0012\u0011\b]\u0012\u0006\u0010\u00e8\u00fa\u0097\u00a8\u0006\"\u000542396\u0012\u0011\b^\u0012\u0006\u0010\u00fd\u00fa\u0097\u00a8\u0006\"\u000542397\u0012\u0011\b_\u0012\u0006\u0010\u00b6\u00fb\u0097\u00a8\u0006\"\u000542398\u0012\u0011\b`\u0012\u0006\u0010\u00e3\u00fb\u0097\u00a8\u0006\"\u000542399\u0012\u0011\ba\u0012\u0006\u0010\u00a7\u00fc\u0097\u00a8\u0006\"\u000542400\u0012\u0011\bb\u0012\u0006\u0010\u00be\u00fe\u0097\u00a8\u0006\"\u000538550\u0012\u0011\bc\u0012\u0006\u0010\u00b7\u0080\u0098\u00a8\u0006\"\u000538552\u0012\u0011\bd\u0012\u0006\u0010\u009a\u0081\u0098\u00a8\u0006\"\u000549359\u0012\u0011\be\u0012\u0006\u0010\u00e1\u0081\u0098\u00a8\u0006\"\u000549360\u0012\u0011\bf\u0012\u0006\u0010\u0083\u0083\u0098\u00a8\u0006\"\u000549361\u0012\u0011\bg\u0012\u0006\u0010\u00a9\u0083\u0098\u00a8\u0006\"\u000549362\u0012\u0011\bh\u0012\u0006\u0010\u00ed\u0083\u0098\u00a8\u0006\"\u000549363\u0012\u0011\bi\u0012\u0006\u0010\u00b9\u0084\u0098\u00a8\u0006\"\u000549364\u0012\u0011\bj\u0012\u0006\u0010\u0080\u0085\u0098\u00a8\u0006\"\u000549365\u001a\b\u001a\u0006XV3580 \u00b0\u00e8\u0097\u00a8\u0006\"`\n/\n\u001016313-701ff27f-2\u0012\b15:01:00\u001a\b20230916 \u0000*\u00035560\u0000\u0012\u001d\r6N\u0013\u00c2\u0015~\u0016\u0092\u00c2\u001d\u0000\u0000xB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00ab\u00aa\u00ba@(\u00b0\u00e8\u0097\u00a8\u0006B\b\u001a\u0006XV3580" + }, + { + "type": "con_recorrido", + "entity": "\n$705d5a86-e96b-4c07-a0f0-3582299e7da4\u001a\u00ec\u0001\n/\n\u001016311-701ff27f-2\u0012\b14:21:00\u001a\b20230916 \u0000*\u00035560\u0000\u0012\u0011\bb\u0012\u0006\u0010\u00fb\u00e9\u0097\u00a8\u0006\"\u000538550\u0012\u0011\bc\u0012\u0006\u0010\u00be\u00eb\u0097\u00a8\u0006\"\u000538552\u0012\u0011\bd\u0012\u0006\u0010\u0086\u00ec\u0097\u00a8\u0006\"\u000549359\u0012\u0011\be\u0012\u0006\u0010\u00b8\u00ec\u0097\u00a8\u0006\"\u000549360\u0012\u0011\bf\u0012\u0006\u0010\u00a7\u00ed\u0097\u00a8\u0006\"\u000549361\u0012\u0011\bg\u0012\u0006\u0010\u00c1\u00ed\u0097\u00a8\u0006\"\u000549362\u0012\u0011\bh\u0012\u0006\u0010\u00ed\u00ed\u0097\u00a8\u0006\"\u000549363\u0012\u0011\bi\u0012\u0006\u0010\u009d\u00ee\u0097\u00a8\u0006\"\u000549364\u0012\u0011\bj\u0012\u0006\u0010\u00ca\u00ee\u0097\u00a8\u0006\"\u000549365\u001a\b\u001a\u0006XX7800 \u00b2\u00e8\u0097\u00a8\u0006\"`\n/\n\u001016311-701ff27f-2\u0012\b14:21:00\u001a\b20230916 \u0000*\u00035560\u0000\u0012\u001d\r\u0007\u00f7\u0012\u00c2\u0015Y2\u0092\u00c2\u001d\u0000\u0000vC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b2\u00e8\u0097\u00a8\u0006B\b\u001a\u0006XX7800" + }, + { + "type": "con_recorrido", + "entity": "\n$215dbb79-15a5-4216-9914-774eb4c0addd\u001a\u00ac\n\n/\n\u001016512-701ff27f-2\u0012\b14:47:00\u001a\b20230916 \u0000*\u00035570\u0001\u0012\u0011\b\"\u0012\u0006\u0010\u00ff\u00e8\u0097\u00a8\u0006\"\u000544895\u0012\u0011\b#\u0012\u0006\u0010\u00c4\u00e9\u0097\u00a8\u0006\"\u000542270\u0012\u0011\b$\u0012\u0006\u0010\u00f0\u00e9\u0097\u00a8\u0006\"\u000542271\u0012\u0013\b%\u0012\u0006\u0010\u00b4\u00ea\u0097\u00a8\u0006\"\u00074838438\u0012\u0011\b&\u0012\u0006\u0010\u00cd\u00eb\u0097\u00a8\u0006\"\u000544896\u0012\u0011\b'\u0012\u0006\u0010\u00fd\u00eb\u0097\u00a8\u0006\"\u000544897\u0012\u0011\b(\u0012\u0006\u0010\u00c7\u00ec\u0097\u00a8\u0006\"\u000544898\u0012\u0011\b)\u0012\u0006\u0010\u00ef\u00ed\u0097\u00a8\u0006\"\u000540993\u0012\u0014\b*\u0012\u0006\u0010\u00df\u00ef\u0097\u00a8\u0006\"\b16005188\u0012\u0011\b+\u0012\u0006\u0010\u00d4\u00f1\u0097\u00a8\u0006\"\u000540995\u0012\u0011\b,\u0012\u0006\u0010\u009b\u00f2\u0097\u00a8\u0006\"\u000540996\u0012\u0011\b-\u0012\u0006\u0010\u00e7\u00f2\u0097\u00a8\u0006\"\u000540997\u0012\u0011\b.\u0012\u0006\u0010\u00a1\u00f3\u0097\u00a8\u0006\"\u000539614\u0012\u0011\b/\u0012\u0006\u0010\u00d0\u00f3\u0097\u00a8\u0006\"\u000539615\u0012\u0011\b0\u0012\u0006\u0010\u0080\u00f4\u0097\u00a8\u0006\"\u000539616\u0012\u0011\b1\u0012\u0006\u0010\u00b6\u00f4\u0097\u00a8\u0006\"\u000539617\u0012\u0011\b2\u0012\u0006\u0010\u00f0\u00f4\u0097\u00a8\u0006\"\u000539618\u0012\u0011\b3\u0012\u0006\u0010\u009e\u00f5\u0097\u00a8\u0006\"\u000539619\u0012\u0011\b4\u0012\u0006\u0010\u00c5\u00f5\u0097\u00a8\u0006\"\u000539620\u0012\u0011\b5\u0012\u0006\u0010\u008c\u00f6\u0097\u00a8\u0006\"\u000539621\u0012\u0011\b6\u0012\u0006\u0010\u00be\u00f6\u0097\u00a8\u0006\"\u000538281\u0012\u0011\b7\u0012\u0006\u0010\u00f7\u00f6\u0097\u00a8\u0006\"\u000537506\u0012\u0011\b8\u0012\u0006\u0010\u00a1\u00f7\u0097\u00a8\u0006\"\u000545068\u0012\u0011\b9\u0012\u0006\u0010\u00a6\u00f8\u0097\u00a8\u0006\"\u000537480\u0012\u0011\b:\u0012\u0006\u0010\u00e8\u00f8\u0097\u00a8\u0006\"\u000537477\u0012\u0011\b;\u0012\u0006\u0010\u00b2\u00f9\u0097\u00a8\u0006\"\u000540848\u0012\u0011\b<\u0012\u0006\u0010\u008f\u00fa\u0097\u00a8\u0006\"\u00052-Apr\u0012\u0011\b=\u0012\u0006\u0010\u00d0\u00fa\u0097\u00a8\u0006\"\u000539728\u0012\u0011\b>\u0012\u0006\u0010\u00c0\u00fb\u0097\u00a8\u0006\"\u000539729\u0012\u0011\b?\u0012\u0006\u0010\u00dd\u00fb\u0097\u00a8\u0006\"\u000539730\u0012\u0011\b@\u0012\u0006\u0010\u00d7\u00fc\u0097\u00a8\u0006\"\u000542200\u0012\u0011\bA\u0012\u0006\u0010\u008e\u00fd\u0097\u00a8\u0006\"\u000542203\u0012\u0011\bB\u0012\u0006\u0010\u00dc\u00fd\u0097\u00a8\u0006\"\u000542204\u0012\u0011\bC\u0012\u0006\u0010\u0085\u00fe\u0097\u00a8\u0006\"\u000542205\u0012\u0011\bD\u0012\u0006\u0010\u00d1\u00fe\u0097\u00a8\u0006\"\u000542201\u0012\u0011\bE\u0012\u0006\u0010\u0097\u0081\u0098\u00a8\u0006\"\u000542206\u0012\u0011\bF\u0012\u0006\u0010\u00ef\u0081\u0098\u00a8\u0006\"\u000542207\u0012\u0011\bG\u0012\u0006\u0010\u00c4\u0082\u0098\u00a8\u0006\"\u000542208\u0012\u0011\bH\u0012\u0006\u0010\u0080\u0084\u0098\u00a8\u0006\"\u000542564\u0012\u0011\bI\u0012\u0006\u0010\u00a7\u0085\u0098\u00a8\u0006\"\u000542214\u0012\u0011\bJ\u0012\u0006\u0010\u00d2\u0086\u0098\u00a8\u0006\"\u000542209\u0012\u0011\bK\u0012\u0006\u0010\u009d\u0088\u0098\u00a8\u0006\"\u000542210\u0012\u0011\bL\u0012\u0006\u0010\u00e3\u008a\u0098\u00a8\u0006\"\u000540951\u0012\u0011\bM\u0012\u0006\u0010\u00dc\u008b\u0098\u00a8\u0006\"\u000540952\u0012\u0011\bN\u0012\u0006\u0010\u00d4\u008c\u0098\u00a8\u0006\"\u000540953\u0012\u0011\bO\u0012\u0006\u0010\u00b0\u008d\u0098\u00a8\u0006\"\u000540954\u0012\u0011\bP\u0012\u0006\u0010\u00ca\u008e\u0098\u00a8\u0006\"\u000540955\u0012\u0011\bQ\u0012\u0006\u0010\u009e\u008f\u0098\u00a8\u0006\"\u000540956\u0012\u0011\bR\u0012\u0006\u0010\u00a2\u0090\u0098\u00a8\u0006\"\u000540957\u0012\u0011\bS\u0012\u0006\u0010\u009f\u0091\u0098\u00a8\u0006\"\u000540958\u0012\u0011\bT\u0012\u0006\u0010\u00df\u0091\u0098\u00a8\u0006\"\u000540959\u0012\u0011\bU\u0012\u0006\u0010\u0090\u0093\u0098\u00a8\u0006\"\u000542223\u0012\u0011\bV\u0012\u0006\u0010\u00d8\u0093\u0098\u00a8\u0006\"\u000542224\u0012\u0011\bW\u0012\u0006\u0010\u00a1\u0095\u0098\u00a8\u0006\"\u000542225\u0012\u0011\bX\u0012\u0006\u0010\u00d4\u0096\u0098\u00a8\u0006\"\u000542226\u0012\u0011\bY\u0012\u0006\u0010\u00ed\u0097\u0098\u00a8\u0006\"\u000542227\u0012\u0011\bZ\u0012\u0006\u0010\u00eb\u0099\u0098\u00a8\u0006\"\u000542228\u0012\u0011\b[\u0012\u0006\u0010\u00ef\u009a\u0098\u00a8\u0006\"\u000542229\u0012\u0011\b\\\u0012\u0006\u0010\u00f8\u009c\u0098\u00a8\u0006\"\u000542230\u0012\u0011\b]\u0012\u0006\u0010\u008a\u009e\u0098\u00a8\u0006\"\u000542231\u0012\u0011\b^\u0012\u0006\u0010\u00af\u00a0\u0098\u00a8\u0006\"\u000542232\u0012\u0011\b_\u0012\u0006\u0010\u00ae\u00a4\u0098\u00a8\u0006\"\u000542234\u0012\u0011\b`\u0012\u0006\u0010\u00d3\u00a7\u0098\u00a8\u0006\"\u000542211\u0012\u0011\ba\u0012\u0006\u0010\u00b4\u00ae\u0098\u00a8\u0006\"\u000541937\u0012\u0011\bb\u0012\u0006\u0010\u00a2\u00bc\u0098\u00a8\u0006\"\u000534871\u0012\u0011\bc\u0012\u0006\u0010\u00ab\u00bf\u0098\u00a8\u0006\"\u000542212\u001a\b\u001a\u0006BHCL60 \u00b0\u00e8\u0097\u00a8\u0006\"`\n/\n\u001016512-701ff27f-2\u0012\b14:47:00\u001a\b20230916 \u0000*\u00035570\u0001\u0012\u001d\r\u0010\u0004\u0013\u00c2\u0015\u00de/\u0092\u00c2\u001d\u0000\u0000\u001aC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-9\u008eCA(\u00b0\u00e8\u0097\u00a8\u0006B\b\u001a\u0006BHCL60" + }, + { + "type": "con_recorrido", + "entity": "\n$787c564f-54c6-44f4-a6ed-f0d00688b077\u001a\u00ea\u000e\n/\n\u001016438-701ff27f-2\u0012\b15:15:00\u001a\b20230916 \u0000*\u00035570\u0000\u0012\u0011\b\u001a\u0012\u0006\u0010\u00b2\u00e8\u0097\u00a8\u0006\"\u000549283\u0012\u0011\b\u001b\u0012\u0006\u0010\u00e6\u00e8\u0097\u00a8\u0006\"\u000549284\u0012\u0011\b\u001c\u0012\u0006\u0010\u00a4\u00e9\u0097\u00a8\u0006\"\u000549285\u0012\u0011\b\u001d\u0012\u0006\u0010\u00f4\u00e9\u0097\u00a8\u0006\"\u000549286\u0012\u0011\b\u001e\u0012\u0006\u0010\u00a0\u00ea\u0097\u00a8\u0006\"\u000549287\u0012\u0011\b\u001f\u0012\u0006\u0010\u00cf\u00ea\u0097\u00a8\u0006\"\u000549288\u0012\u0011\b \u0012\u0006\u0010\u0083\u00eb\u0097\u00a8\u0006\"\u000549289\u0012\u0011\b!\u0012\u0006\u0010\u008d\u00ec\u0097\u00a8\u0006\"\u000542294\u0012\u0011\b\"\u0012\u0006\u0010\u008c\u00ed\u0097\u00a8\u0006\"\u000542295\u0012\u0011\b#\u0012\u0006\u0010\u00fc\u00ed\u0097\u00a8\u0006\"\u000542296\u0012\u0011\b$\u0012\u0006\u0010\u00f7\u00ee\u0097\u00a8\u0006\"\u000542297\u0012\u0011\b%\u0012\u0006\u0010\u00d5\u00ef\u0097\u00a8\u0006\"\u000542298\u0012\u0011\b&\u0012\u0006\u0010\u0093\u00f0\u0097\u00a8\u0006\"\u000542299\u0012\u0011\b'\u0012\u0006\u0010\u00bc\u00f0\u0097\u00a8\u0006\"\u000549295\u0012\u0011\b(\u0012\u0006\u0010\u00b0\u00f1\u0097\u00a8\u0006\"\u000549296\u0012\u0011\b)\u0012\u0006\u0010\u0081\u00f2\u0097\u00a8\u0006\"\u000549297\u0012\u0011\b*\u0012\u0006\u0010\u00a1\u00f2\u0097\u00a8\u0006\"\u000549298\u0012\u0011\b+\u0012\u0006\u0010\u00e2\u00f2\u0097\u00a8\u0006\"\u000549299\u0012\u0011\b,\u0012\u0006\u0010\u0095\u00f3\u0097\u00a8\u0006\"\u000549300\u0012\u0011\b-\u0012\u0006\u0010\u00e8\u00f3\u0097\u00a8\u0006\"\u000549301\u0012\u0011\b.\u0012\u0006\u0010\u00ab\u00f4\u0097\u00a8\u0006\"\u000549302\u0012\u0011\b/\u0012\u0006\u0010\u00d8\u00f4\u0097\u00a8\u0006\"\u000549303\u0012\u0011\b0\u0012\u0006\u0010\u008c\u00f5\u0097\u00a8\u0006\"\u000549304\u0012\u0011\b1\u0012\u0006\u0010\u00a8\u00f5\u0097\u00a8\u0006\"\u000549305\u0012\u0011\b2\u0012\u0006\u0010\u00e1\u00f5\u0097\u00a8\u0006\"\u000549306\u0012\u0011\b3\u0012\u0006\u0010\u008a\u00f6\u0097\u00a8\u0006\"\u000549307\u0012\u0011\b4\u0012\u0006\u0010\u00a3\u00f6\u0097\u00a8\u0006\"\u000549308\u0012\u0011\b5\u0012\u0006\u0010\u00bc\u00f6\u0097\u00a8\u0006\"\u000549309\u0012\u0011\b6\u0012\u0006\u0010\u00d9\u00f6\u0097\u00a8\u0006\"\u000542315\u0012\u0011\b7\u0012\u0006\u0010\u00e8\u00f6\u0097\u00a8\u0006\"\u000542316\u0012\u0011\b8\u0012\u0006\u0010\u00a6\u00f7\u0097\u00a8\u0006\"\u000542317\u0012\u0011\b9\u0012\u0006\u0010\u00dd\u00f7\u0097\u00a8\u0006\"\u000542318\u0012\u0013\b:\u0012\u0006\u0010\u00a9\u00f8\u0097\u00a8\u0006\"\u00078606396\u0012\u0011\b;\u0012\u0006\u0010\u00f7\u00f8\u0097\u00a8\u0006\"\u000538514\u0012\u0011\b<\u0012\u0006\u0010\u00a1\u00f9\u0097\u00a8\u0006\"\u000538516\u0012\u0011\b=\u0012\u0006\u0010\u00e3\u00f9\u0097\u00a8\u0006\"\u000538518\u0012\u0011\b>\u0012\u0006\u0010\u00d4\u00fa\u0097\u00a8\u0006\"\u000538520\u0012\u0011\b?\u0012\u0006\u0010\u0082\u00fb\u0097\u00a8\u0006\"\u000538521\u0012\u0011\b@\u0012\u0006\u0010\u00bb\u00fb\u0097\u00a8\u0006\"\u000538522\u0012\u0011\bA\u0012\u0006\u0010\u00f5\u00fb\u0097\u00a8\u0006\"\u000538523\u0012\u0011\bB\u0012\u0006\u0010\u00b4\u00fc\u0097\u00a8\u0006\"\u000538524\u0012\u0011\bC\u0012\u0006\u0010\u00ee\u00fc\u0097\u00a8\u0006\"\u000538525\u0012\u0011\bD\u0012\u0006\u0010\u00ae\u00fd\u0097\u00a8\u0006\"\u000538526\u0012\u0011\bE\u0012\u0006\u0010\u00e9\u00fd\u0097\u00a8\u0006\"\u000538527\u0012\u0011\bF\u0012\u0006\u0010\u00d2\u00fe\u0097\u00a8\u0006\"\u000538528\u0012\u0011\bG\u0012\u0006\u0010\u00f4\u00ff\u0097\u00a8\u0006\"\u000538529\u0012\u0011\bH\u0012\u0006\u0010\u008f\u0082\u0098\u00a8\u0006\"\u000538530\u0012\u0014\bI\u0012\u0006\u0010\u00a2\u0082\u0098\u00a8\u0006\"\b16005209\u0012\u0011\bJ\u0012\u0006\u0010\u0086\u0085\u0098\u00a8\u0006\"\u000538531\u0012\u0013\bK\u0012\u0006\u0010\u00dd\u0085\u0098\u00a8\u0006\"\u00078921285\u0012\u0011\bL\u0012\u0006\u0010\u0096\u0087\u0098\u00a8\u0006\"\u000538532\u0012\u0011\bM\u0012\u0006\u0010\u00f1\u0087\u0098\u00a8\u0006\"\u000538533\u0012\u0011\bN\u0012\u0006\u0010\u00d1\u0088\u0098\u00a8\u0006\"\u000538534\u0012\u0011\bO\u0012\u0006\u0010\u00a8\u0089\u0098\u00a8\u0006\"\u000538535\u0012\u0011\bP\u0012\u0006\u0010\u00a2\u008a\u0098\u00a8\u0006\"\u000538536\u0012\u0013\bQ\u0012\u0006\u0010\u00df\u008a\u0098\u00a8\u0006\"\u00074838437\u0012\u0011\bR\u0012\u0006\u0010\u00d9\u008b\u0098\u00a8\u0006\"\u000545085\u0012\u0011\bS\u0012\u0006\u0010\u00f2\u008c\u0098\u00a8\u0006\"\u000545086\u0012\u0011\bT\u0012\u0006\u0010\u00be\u008e\u0098\u00a8\u0006\"\u000545087\u0012\u0011\bU\u0012\u0006\u0010\u0083\u008f\u0098\u00a8\u0006\"\u000545088\u0012\u0011\bV\u0012\u0006\u0010\u00db\u008f\u0098\u00a8\u0006\"\u000545089\u0012\u0011\bW\u0012\u0006\u0010\u00f8\u0090\u0098\u00a8\u0006\"\u000545090\u0012\u0011\bX\u0012\u0006\u0010\u00ce\u0091\u0098\u00a8\u0006\"\u000545091\u0012\u0011\bY\u0012\u0006\u0010\u00ef\u0092\u0098\u00a8\u0006\"\u000545093\u0012\u0011\bZ\u0012\u0006\u0010\u00fe\u0093\u0098\u00a8\u0006\"\u000545094\u0012\u0011\b[\u0012\u0006\u0010\u00da\u0094\u0098\u00a8\u0006\"\u000545095\u0012\u0011\b\\\u0012\u0006\u0010\u00cf\u0095\u0098\u00a8\u0006\"\u000545096\u0012\u0011\b]\u0012\u0006\u0010\u00bf\u0096\u0098\u00a8\u0006\"\u000545097\u0012\u0011\b^\u0012\u0006\u0010\u0092\u0097\u0098\u00a8\u0006\"\u000545098\u0012\u0011\b_\u0012\u0006\u0010\u00d9\u0097\u0098\u00a8\u0006\"\u000545099\u0012\u0011\b`\u0012\u0006\u0010\u00a8\u0098\u0098\u00a8\u0006\"\u000545100\u0012\u0011\ba\u0012\u0006\u0010\u00f2\u0098\u0098\u00a8\u0006\"\u000545101\u0012\u0011\bb\u0012\u0006\u0010\u00e8\u0099\u0098\u00a8\u0006\"\u000545102\u0012\u0011\bc\u0012\u0006\u0010\u00b9\u009a\u0098\u00a8\u0006\"\u000545103\u0012\u0011\bd\u0012\u0006\u0010\u0087\u009b\u0098\u00a8\u0006\"\u000545104\u0012\u0011\be\u0012\u0006\u0010\u00d9\u009b\u0098\u00a8\u0006\"\u000545122\u0012\u0011\bf\u0012\u0006\u0010\u008e\u009d\u0098\u00a8\u0006\"\u000538630\u0012\u0011\bg\u0012\u0006\u0010\u00ee\u009f\u0098\u00a8\u0006\"\u000542365\u0012\u0011\bh\u0012\u0006\u0010\u00ce\u00a3\u0098\u00a8\u0006\"\u000549349\u0012\u0011\bi\u0012\u0006\u0010\u00cd\u00a7\u0098\u00a8\u0006\"\u000549350\u0012\u0011\bj\u0012\u0006\u0010\u00cc\u00a9\u0098\u00a8\u0006\"\u000549351\u0012\u0011\bk\u0012\u0006\u0010\u00f2\u00aa\u0098\u00a8\u0006\"\u000549352\u0012\u0011\bl\u0012\u0006\u0010\u00b7\u00ac\u0098\u00a8\u0006\"\u000549353\u0012\u0011\bm\u0012\u0006\u0010\u0095\u00ae\u0098\u00a8\u0006\"\u000549354\u0012\u0011\bn\u0012\u0006\u0010\u00f9\u00af\u0098\u00a8\u0006\"\u000549355\u0012\u0011\bo\u0012\u0006\u0010\u00d6\u00b3\u0098\u00a8\u0006\"\u000542244\u0012\u0011\bp\u0012\u0006\u0010\u009d\u00b4\u0098\u00a8\u0006\"\u000549356\u0012\u0011\bq\u0012\u0006\u0010\u00c0\u00b7\u0098\u00a8\u0006\"\u000549357\u0012\u0011\br\u0012\u0006\u0010\u00e0\u00b8\u0098\u00a8\u0006\"\u000549358\u0012\u0011\bs\u0012\u0006\u0010\u00c2\u00bb\u0098\u00a8\u0006\"\u000549359\u0012\u0011\bt\u0012\u0006\u0010\u00bb\u00be\u0098\u00a8\u0006\"\u000549360\u0012\u0011\bu\u0012\u0006\u0010\u00dc\u00c5\u0098\u00a8\u0006\"\u000549361\u0012\u0011\bv\u0012\u0006\u0010\u00af\u00c7\u0098\u00a8\u0006\"\u000549362\u0012\u0011\bw\u0012\u0006\u0010\u0086\u00cb\u0098\u00a8\u0006\"\u000549363\u0012\u0011\bx\u0012\u0006\u0010\u00e6\u00ce\u0098\u00a8\u0006\"\u000549364\u0012\u0011\by\u0012\u0006\u0010\u00d4\u00d2\u0098\u00a8\u0006\"\u000549365\u001a\b\u001a\u0006CYVP96 \u00b2\u00e8\u0097\u00a8\u0006\"`\n/\n\u001016438-701ff27f-2\u0012\b15:15:00\u001a\b20230916 \u0000*\u00035570\u0000\u0012\u001d\rZ\u00a4\u0013\u00c2\u0015\n\u000f\u0092\u00c2\u001d\u0000\u0000\u00b0C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b2\u00e8\u0097\u00a8\u0006B\b\u001a\u0006CYVP96" + }, + { + "type": "con_recorrido", + "entity": "\n$68215fb6-74aa-4201-b096-187c7bd9a9ee\u001a\u0082\r\n/\n\u001016513-701ff27f-2\u0012\b15:02:00\u001a\b20230916 \u0000*\u00035570\u0001\u0012\u0011\b\u0010\u0012\u0006\u0010\u00b6\u00e8\u0097\u00a8\u0006\"\u000542250\u0012\u0011\b\u0011\u0012\u0006\u0010\u00c6\u00e9\u0097\u00a8\u0006\"\u000542252\u0012\u0011\b\u0012\u0012\u0006\u0010\u00ed\u00e9\u0097\u00a8\u0006\"\u000542253\u0012\u0011\b\u0013\u0012\u0006\u0010\u009c\u00ea\u0097\u00a8\u0006\"\u000542254\u0012\u0011\b\u0014\u0012\u0006\u0010\u00bc\u00ea\u0097\u00a8\u0006\"\u000542255\u0012\u0011\b\u0015\u0012\u0006\u0010\u00de\u00ea\u0097\u00a8\u0006\"\u000542256\u0012\u0011\b\u0016\u0012\u0006\u0010\u00f2\u00ea\u0097\u00a8\u0006\"\u000542257\u0012\u0011\b\u0017\u0012\u0006\u0010\u0085\u00eb\u0097\u00a8\u0006\"\u000542258\u0012\u0011\b\u0018\u0012\u0006\u0010\u00a1\u00eb\u0097\u00a8\u0006\"\u000542259\u0012\u0011\b\u0019\u0012\u0006\u0010\u00d6\u00eb\u0097\u00a8\u0006\"\u000542260\u0012\u0011\b\u001a\u0012\u0006\u0010\u00fb\u00eb\u0097\u00a8\u0006\"\u000542261\u0012\u0011\b\u001b\u0012\u0006\u0010\u009a\u00ec\u0097\u00a8\u0006\"\u000545094\u0012\u0011\b\u001c\u0012\u0006\u0010\u00d1\u00ec\u0097\u00a8\u0006\"\u000542263\u0012\u0011\b\u001d\u0012\u0006\u0010\u00fd\u00ec\u0097\u00a8\u0006\"\u000545092\u0012\u0011\b\u001e\u0012\u0006\u0010\u009a\u00ed\u0097\u00a8\u0006\"\u000545091\u0012\u0011\b\u001f\u0012\u0006\u0010\u00c7\u00ed\u0097\u00a8\u0006\"\u000542266\u0012\u0011\b \u0012\u0006\u0010\u00fe\u00ed\u0097\u00a8\u0006\"\u000545089\u0012\u0011\b!\u0012\u0006\u0010\u00a2\u00ee\u0097\u00a8\u0006\"\u000545088\u0012\u0011\b\"\u0012\u0006\u0010\u00ec\u00ee\u0097\u00a8\u0006\"\u000544895\u0012\u0011\b#\u0012\u0006\u0010\u00ab\u00ef\u0097\u00a8\u0006\"\u000542270\u0012\u0011\b$\u0012\u0006\u0010\u00d4\u00ef\u0097\u00a8\u0006\"\u000542271\u0012\u0013\b%\u0012\u0006\u0010\u0094\u00f0\u0097\u00a8\u0006\"\u00074838438\u0012\u0011\b&\u0012\u0006\u0010\u00a6\u00f1\u0097\u00a8\u0006\"\u000544896\u0012\u0011\b'\u0012\u0006\u0010\u00d5\u00f1\u0097\u00a8\u0006\"\u000544897\u0012\u0011\b(\u0012\u0006\u0010\u009c\u00f2\u0097\u00a8\u0006\"\u000544898\u0012\u0011\b)\u0012\u0006\u0010\u00c3\u00f3\u0097\u00a8\u0006\"\u000540993\u0012\u0014\b*\u0012\u0006\u0010\u00ba\u00f5\u0097\u00a8\u0006\"\b16005188\u0012\u0011\b+\u0012\u0006\u0010\u00be\u00f7\u0097\u00a8\u0006\"\u000540995\u0012\u0011\b,\u0012\u0006\u0010\u008c\u00f8\u0097\u00a8\u0006\"\u000540996\u0012\u0011\b-\u0012\u0006\u0010\u00df\u00f8\u0097\u00a8\u0006\"\u000540997\u0012\u0011\b.\u0012\u0006\u0010\u009f\u00f9\u0097\u00a8\u0006\"\u000539614\u0012\u0011\b/\u0012\u0006\u0010\u00d4\u00f9\u0097\u00a8\u0006\"\u000539615\u0012\u0011\b0\u0012\u0006\u0010\u008a\u00fa\u0097\u00a8\u0006\"\u000539616\u0012\u0011\b1\u0012\u0006\u0010\u00c8\u00fa\u0097\u00a8\u0006\"\u000539617\u0012\u0011\b2\u0012\u0006\u0010\u008a\u00fb\u0097\u00a8\u0006\"\u000539618\u0012\u0011\b3\u0012\u0006\u0010\u00be\u00fb\u0097\u00a8\u0006\"\u000539619\u0012\u0011\b4\u0012\u0006\u0010\u00eb\u00fb\u0097\u00a8\u0006\"\u000539620\u0012\u0011\b5\u0012\u0006\u0010\u00be\u00fc\u0097\u00a8\u0006\"\u000539621\u0012\u0011\b6\u0012\u0006\u0010\u00f8\u00fc\u0097\u00a8\u0006\"\u000538281\u0012\u0011\b7\u0012\u0006\u0010\u00bc\u00fd\u0097\u00a8\u0006\"\u000537506\u0012\u0011\b8\u0012\u0006\u0010\u00ee\u00fd\u0097\u00a8\u0006\"\u000545068\u0012\u0011\b9\u0012\u0006\u0010\u008d\u00ff\u0097\u00a8\u0006\"\u000537480\u0012\u0011\b:\u0012\u0006\u0010\u00de\u00ff\u0097\u00a8\u0006\"\u000537477\u0012\u0011\b;\u0012\u0006\u0010\u00b9\u0080\u0098\u00a8\u0006\"\u000540848\u0012\u0011\b<\u0012\u0006\u0010\u00ad\u0081\u0098\u00a8\u0006\"\u00052-Apr\u0012\u0011\b=\u0012\u0006\u0010\u00fe\u0081\u0098\u00a8\u0006\"\u000539728\u0012\u0011\b>\u0012\u0006\u0010\u008b\u0083\u0098\u00a8\u0006\"\u000539729\u0012\u0011\b?\u0012\u0006\u0010\u00b0\u0083\u0098\u00a8\u0006\"\u000539730\u0012\u0011\b@\u0012\u0006\u0010\u00cd\u0084\u0098\u00a8\u0006\"\u000542200\u0012\u0011\bA\u0012\u0006\u0010\u0094\u0085\u0098\u00a8\u0006\"\u000542203\u0012\u0011\bB\u0012\u0006\u0010\u00fb\u0085\u0098\u00a8\u0006\"\u000542204\u0012\u0011\bC\u0012\u0006\u0010\u00b1\u0086\u0098\u00a8\u0006\"\u000542205\u0012\u0011\bD\u0012\u0006\u0010\u0097\u0087\u0098\u00a8\u0006\"\u000542201\u0012\u0011\bE\u0012\u0006\u0010\u00d1\u008a\u0098\u00a8\u0006\"\u000542206\u0012\u0011\bF\u0012\u0006\u0010\u00cb\u008b\u0098\u00a8\u0006\"\u000542207\u0012\u0011\bG\u0012\u0006\u0010\u00c3\u008c\u0098\u00a8\u0006\"\u000542208\u0012\u0011\bH\u0012\u0006\u0010\u00ce\u008e\u0098\u00a8\u0006\"\u000542564\u0012\u0011\bI\u0012\u0006\u0010\u00c1\u0090\u0098\u00a8\u0006\"\u000542214\u0012\u0011\bJ\u0012\u0006\u0010\u00be\u0092\u0098\u00a8\u0006\"\u000542209\u0012\u0011\bK\u0012\u0006\u0010\u00ef\u0094\u0098\u00a8\u0006\"\u000542210\u0012\u0011\bL\u0012\u0006\u0010\u00ea\u0098\u0098\u00a8\u0006\"\u000540951\u0012\u0011\bM\u0012\u0006\u0010\u00aa\u009a\u0098\u00a8\u0006\"\u000540952\u0012\u0011\bN\u0012\u0006\u0010\u00ea\u009b\u0098\u00a8\u0006\"\u000540953\u0012\u0011\bO\u0012\u0006\u0010\u00ff\u009c\u0098\u00a8\u0006\"\u000540954\u0012\u0011\bP\u0012\u0006\u0010\u00fd\u009e\u0098\u00a8\u0006\"\u000540955\u0012\u0011\bQ\u0012\u0006\u0010\u0089\u00a0\u0098\u00a8\u0006\"\u000540956\u0012\u0011\bR\u0012\u0006\u0010\u00e8\u00a1\u0098\u00a8\u0006\"\u000540957\u0012\u0011\bS\u0012\u0006\u0010\u00be\u00a3\u0098\u00a8\u0006\"\u000540958\u0012\u0011\bT\u0012\u0006\u0010\u00ad\u00a4\u0098\u00a8\u0006\"\u000540959\u0012\u0011\bU\u0012\u0006\u0010\u00e2\u00a6\u0098\u00a8\u0006\"\u000542223\u0012\u0011\bV\u0012\u0006\u0010\u00e1\u00a7\u0098\u00a8\u0006\"\u000542224\u0012\u0011\bW\u0012\u0006\u0010\u00cb\u00aa\u0098\u00a8\u0006\"\u000542225\u0012\u0011\bX\u0012\u0006\u0010\u0094\u00ad\u0098\u00a8\u0006\"\u000542226\u0012\u0011\bY\u0012\u0006\u0010\u00b2\u00af\u0098\u00a8\u0006\"\u000542227\u0012\u0011\bZ\u0012\u0006\u0010\u0096\u00b3\u0098\u00a8\u0006\"\u000542228\u0012\u0011\b[\u0012\u0006\u0010\u0098\u00b5\u0098\u00a8\u0006\"\u000542229\u0012\u0011\b\\\u0012\u0006\u0010\u00aa\u00b9\u0098\u00a8\u0006\"\u000542230\u0012\u0011\b]\u0012\u0006\u0010\u00d3\u00bb\u0098\u00a8\u0006\"\u000542231\u0012\u0011\b^\u0012\u0006\u0010\u00b8\u00c0\u0098\u00a8\u0006\"\u000542232\u0012\u0011\b_\u0012\u0006\u0010\u0097\u00c9\u0098\u00a8\u0006\"\u000542234\u0012\u0011\b`\u0012\u0006\u0010\u00e3\u00d0\u0098\u00a8\u0006\"\u000542211\u0012\u0011\ba\u0012\u0006\u0010\u00d2\u00e1\u0098\u00a8\u0006\"\u000541937\u0012\u0011\bb\u0012\u0006\u0010\u00d6\u008a\u0099\u00a8\u0006\"\u000534871\u0012\u0011\bc\u0012\u0006\u0010\u0095\u0095\u0099\u00a8\u0006\"\u000542212\u001a\b\u001a\u0006DPZZ34 \u00ac\u00e8\u0097\u00a8\u0006\"`\n/\n\u001016513-701ff27f-2\u0012\b15:02:00\u001a\b20230916 \u0000*\u00035570\u0001\u0012\u001d\r\u0092\u00f3\u0012\u00c2\u0015\u00bc:\u0092\u00c2\u001d\u0000\u0000HB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008e\u00e3x@(\u00ac\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DPZZ34" + }, + { + "type": "con_recorrido", + "entity": "\n$929c24a1-0ff5-43dc-8860-a4401522fc4a\u001a\u00de\u0002\n/\n\u001016434-701ff27f-2\u0012\b14:15:00\u001a\b20230916 \u0000*\u00035570\u0000\u0012\u0011\bk\u0012\u0006\u0010\u00c0\u00e8\u0097\u00a8\u0006\"\u000549352\u0012\u0011\bl\u0012\u0006\u0010\u00e9\u00e8\u0097\u00a8\u0006\"\u000549353\u0012\u0011\bm\u0012\u0006\u0010\u0096\u00e9\u0097\u00a8\u0006\"\u000549354\u0012\u0011\bn\u0012\u0006\u0010\u00c1\u00e9\u0097\u00a8\u0006\"\u000549355\u0012\u0011\bo\u0012\u0006\u0010\u0095\u00ea\u0097\u00a8\u0006\"\u000542244\u0012\u0011\bp\u0012\u0006\u0010\u00a1\u00ea\u0097\u00a8\u0006\"\u000549356\u0012\u0011\bq\u0012\u0006\u0010\u00e4\u00ea\u0097\u00a8\u0006\"\u000549357\u0012\u0011\br\u0012\u0006\u0010\u00fc\u00ea\u0097\u00a8\u0006\"\u000549358\u0012\u0011\bs\u0012\u0006\u0010\u00af\u00eb\u0097\u00a8\u0006\"\u000549359\u0012\u0011\bt\u0012\u0006\u0010\u00e1\u00eb\u0097\u00a8\u0006\"\u000549360\u0012\u0011\bu\u0012\u0006\u0010\u00d1\u00ec\u0097\u00a8\u0006\"\u000549361\u0012\u0011\bv\u0012\u0006\u0010\u00e8\u00ec\u0097\u00a8\u0006\"\u000549362\u0012\u0011\bw\u0012\u0006\u0010\u0099\u00ed\u0097\u00a8\u0006\"\u000549363\u0012\u0011\bx\u0012\u0006\u0010\u00c8\u00ed\u0097\u00a8\u0006\"\u000549364\u0012\u0011\by\u0012\u0006\u0010\u00f4\u00ed\u0097\u00a8\u0006\"\u000549365\u001a\b\u001a\u0006DTRP73 \u009c\u00e8\u0097\u00a8\u0006\"`\n/\n\u001016434-701ff27f-2\u0012\b14:15:00\u001a\b20230916 \u0000*\u00035570\u0000\u0012\u001d\r\u00a7\u00ed\u0012\u00c2\u0015\u00b9<\u0092\u00c2\u001d\u0000\u0000`A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009c\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DTRP73" + }, + { + "type": "con_recorrido", + "entity": "\n$d2ebd741-021c-4857-9560-76a7706237a1\u001a\u00a5\t\n/\n\u001016511-701ff27f-2\u0012\b14:32:00\u001a\b20230916 \u0000*\u00035570\u0001\u0012\u0011\b)\u0012\u0006\u0010\u00aa\u00e8\u0097\u00a8\u0006\"\u000540993\u0012\u0014\b*\u0012\u0006\u0010\u00ad\u00ea\u0097\u00a8\u0006\"\b16005188\u0012\u0011\b+\u0012\u0006\u0010\u00ac\u00ec\u0097\u00a8\u0006\"\u000540995\u0012\u0011\b,\u0012\u0006\u0010\u00f5\u00ec\u0097\u00a8\u0006\"\u000540996\u0012\u0011\b-\u0012\u0006\u0010\u00c1\u00ed\u0097\u00a8\u0006\"\u000540997\u0012\u0011\b.\u0012\u0006\u0010\u00fa\u00ed\u0097\u00a8\u0006\"\u000539614\u0012\u0011\b/\u0012\u0006\u0010\u00aa\u00ee\u0097\u00a8\u0006\"\u000539615\u0012\u0011\b0\u0012\u0006\u0010\u00d9\u00ee\u0097\u00a8\u0006\"\u000539616\u0012\u0011\b1\u0012\u0006\u0010\u008e\u00ef\u0097\u00a8\u0006\"\u000539617\u0012\u0011\b2\u0012\u0006\u0010\u00c6\u00ef\u0097\u00a8\u0006\"\u000539618\u0012\u0011\b3\u0012\u0006\u0010\u00f2\u00ef\u0097\u00a8\u0006\"\u000539619\u0012\u0011\b4\u0012\u0006\u0010\u0097\u00f0\u0097\u00a8\u0006\"\u000539620\u0012\u0011\b5\u0012\u0006\u0010\u00db\u00f0\u0097\u00a8\u0006\"\u000539621\u0012\u0011\b6\u0012\u0006\u0010\u008a\u00f1\u0097\u00a8\u0006\"\u000538281\u0012\u0011\b7\u0012\u0006\u0010\u00c0\u00f1\u0097\u00a8\u0006\"\u000537506\u0012\u0011\b8\u0012\u0006\u0010\u00e7\u00f1\u0097\u00a8\u0006\"\u000545068\u0012\u0011\b9\u0012\u0006\u0010\u00e2\u00f2\u0097\u00a8\u0006\"\u000537480\u0012\u0011\b:\u0012\u0006\u0010\u009e\u00f3\u0097\u00a8\u0006\"\u000537477\u0012\u0011\b;\u0012\u0006\u0010\u00e1\u00f3\u0097\u00a8\u0006\"\u000540848\u0012\u0011\b<\u0012\u0006\u0010\u00b5\u00f4\u0097\u00a8\u0006\"\u00052-Apr\u0012\u0011\b=\u0012\u0006\u0010\u00ee\u00f4\u0097\u00a8\u0006\"\u000539728\u0012\u0011\b>\u0012\u0006\u0010\u00d1\u00f5\u0097\u00a8\u0006\"\u000539729\u0012\u0011\b?\u0012\u0006\u0010\u00ea\u00f5\u0097\u00a8\u0006\"\u000539730\u0012\u0011\b@\u0012\u0006\u0010\u00d3\u00f6\u0097\u00a8\u0006\"\u000542200\u0012\u0011\bA\u0012\u0006\u0010\u0082\u00f7\u0097\u00a8\u0006\"\u000542203\u0012\u0011\bB\u0012\u0006\u0010\u00c6\u00f7\u0097\u00a8\u0006\"\u000542204\u0012\u0011\bC\u0012\u0006\u0010\u00e8\u00f7\u0097\u00a8\u0006\"\u000542205\u0012\u0011\bD\u0012\u0006\u0010\u00a8\u00f8\u0097\u00a8\u0006\"\u000542201\u0012\u0011\bE\u0012\u0006\u0010\u00b6\u00fa\u0097\u00a8\u0006\"\u000542206\u0012\u0011\bF\u0012\u0006\u0010\u00fd\u00fa\u0097\u00a8\u0006\"\u000542207\u0012\u0011\bG\u0012\u0006\u0010\u00c2\u00fb\u0097\u00a8\u0006\"\u000542208\u0012\u0011\bH\u0012\u0006\u0010\u00d7\u00fc\u0097\u00a8\u0006\"\u000542564\u0012\u0011\bI\u0012\u0006\u0010\u00da\u00fd\u0097\u00a8\u0006\"\u000542214\u0012\u0011\bJ\u0012\u0006\u0010\u00de\u00fe\u0097\u00a8\u0006\"\u000542209\u0012\u0011\bK\u0012\u0006\u0010\u00f9\u00ff\u0097\u00a8\u0006\"\u000542210\u0012\u0011\bL\u0012\u0006\u0010\u00ec\u0081\u0098\u00a8\u0006\"\u000540951\u0012\u0011\bM\u0012\u0006\u0010\u00c5\u0082\u0098\u00a8\u0006\"\u000540952\u0012\u0011\bN\u0012\u0006\u0010\u009c\u0083\u0098\u00a8\u0006\"\u000540953\u0012\u0011\bO\u0012\u0006\u0010\u00de\u0083\u0098\u00a8\u0006\"\u000540954\u0012\u0011\bP\u0012\u0006\u0010\u00cd\u0084\u0098\u00a8\u0006\"\u000540955\u0012\u0011\bQ\u0012\u0006\u0010\u0088\u0085\u0098\u00a8\u0006\"\u000540956\u0012\u0011\bR\u0012\u0006\u0010\u00e6\u0085\u0098\u00a8\u0006\"\u000540957\u0012\u0011\bS\u0012\u0006\u0010\u00bd\u0086\u0098\u00a8\u0006\"\u000540958\u0012\u0011\bT\u0012\u0006\u0010\u00ea\u0086\u0098\u00a8\u0006\"\u000540959\u0012\u0011\bU\u0012\u0006\u0010\u00e3\u0087\u0098\u00a8\u0006\"\u000542223\u0012\u0011\bV\u0012\u0006\u0010\u0095\u0088\u0098\u00a8\u0006\"\u000542224\u0012\u0011\bW\u0012\u0006\u0010\u009d\u0089\u0098\u00a8\u0006\"\u000542225\u0012\u0011\bX\u0012\u0006\u0010\u0095\u008a\u0098\u00a8\u0006\"\u000542226\u0012\u0011\bY\u0012\u0006\u0010\u00fa\u008a\u0098\u00a8\u0006\"\u000542227\u0012\u0011\bZ\u0012\u0006\u0010\u009f\u008c\u0098\u00a8\u0006\"\u000542228\u0012\u0011\b[\u0012\u0006\u0010\u00f5\u008c\u0098\u00a8\u0006\"\u000542229\u0012\u0011\b\\\u0012\u0006\u0010\u009e\u008e\u0098\u00a8\u0006\"\u000542230\u0012\u0011\b]\u0012\u0006\u0010\u00fa\u008e\u0098\u00a8\u0006\"\u000542231\u0012\u0011\b^\u0012\u0006\u0010\u00b0\u0090\u0098\u00a8\u0006\"\u000542232\u0012\u0011\b_\u0012\u0006\u0010\u00e7\u0092\u0098\u00a8\u0006\"\u000542234\u0012\u0011\b`\u0012\u0006\u0010\u00df\u0094\u0098\u00a8\u0006\"\u000542211\u0012\u0011\ba\u0012\u0006\u0010\u00cc\u0098\u0098\u00a8\u0006\"\u000541937\u0012\u0011\bb\u0012\u0006\u0010\u00fc\u009f\u0098\u00a8\u0006\"\u000534871\u0012\u0011\bc\u0012\u0006\u0010\u00c1\u00a1\u0098\u00a8\u0006\"\u000542212\u001a\b\u001a\u0006HTRK89 \u00aa\u00e8\u0097\u00a8\u0006\"`\n/\n\u001016511-701ff27f-2\u0012\b14:32:00\u001a\b20230916 \u0000*\u00035570\u0001\u0012\u001d\r{ \u0013\u00c2\u0015+'\u0092\u00c2\u001d\u0000\u0000\u0018C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00aa\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HTRK89" + }, + { + "type": "con_recorrido", + "entity": "\n$9a34828c-f3ec-4e6a-9232-438ad15da776\u001a\u00e1\u0006\n/\n\u001016436-701ff27f-2\u0012\b14:45:00\u001a\b20230916 \u0000*\u00035570\u0000\u0012\u0011\bP\u0012\u0006\u0010\u00d0\u00e8\u0097\u00a8\u0006\"\u000538536\u0012\u0013\bQ\u0012\u0006\u0010\u00f2\u00e8\u0097\u00a8\u0006\"\u00074838437\u0012\u0011\bR\u0012\u0006\u0010\u00b4\u00e9\u0097\u00a8\u0006\"\u000545085\u0012\u0011\bS\u0012\u0006\u0010\u0082\u00ea\u0097\u00a8\u0006\"\u000545086\u0012\u0011\bT\u0012\u0006\u0010\u00e4\u00ea\u0097\u00a8\u0006\"\u000545087\u0012\u0011\bU\u0012\u0006\u0010\u0084\u00eb\u0097\u00a8\u0006\"\u000545088\u0012\u0011\bV\u0012\u0006\u0010\u00ac\u00eb\u0097\u00a8\u0006\"\u000545089\u0012\u0011\bW\u0012\u0006\u0010\u00f0\u00eb\u0097\u00a8\u0006\"\u000545090\u0012\u0011\bX\u0012\u0006\u0010\u0094\u00ec\u0097\u00a8\u0006\"\u000545091\u0012\u0011\bY\u0012\u0006\u0010\u00d4\u00ec\u0097\u00a8\u0006\"\u000545093\u0012\u0011\bZ\u0012\u0006\u0010\u008b\u00ed\u0097\u00a8\u0006\"\u000545094\u0012\u0011\b[\u0012\u0006\u0010\u00ad\u00ed\u0097\u00a8\u0006\"\u000545095\u0012\u0011\b\\\u0012\u0006\u0010\u00d8\u00ed\u0097\u00a8\u0006\"\u000545096\u0012\u0011\b]\u0012\u0006\u0010\u00ff\u00ed\u0097\u00a8\u0006\"\u000545097\u0012\u0011\b^\u0012\u0006\u0010\u009b\u00ee\u0097\u00a8\u0006\"\u000545098\u0012\u0011\b_\u0012\u0006\u0010\u00b3\u00ee\u0097\u00a8\u0006\"\u000545099\u0012\u0011\b`\u0012\u0006\u0010\u00cd\u00ee\u0097\u00a8\u0006\"\u000545100\u0012\u0011\ba\u0012\u0006\u0010\u00e5\u00ee\u0097\u00a8\u0006\"\u000545101\u0012\u0011\bb\u0012\u0006\u0010\u008a\u00ef\u0097\u00a8\u0006\"\u000545102\u0012\u0011\bc\u0012\u0006\u0010\u00a3\u00ef\u0097\u00a8\u0006\"\u000545103\u0012\u0011\bd\u0012\u0006\u0010\u00bb\u00ef\u0097\u00a8\u0006\"\u000545104\u0012\u0011\be\u0012\u0006\u0010\u00d3\u00ef\u0097\u00a8\u0006\"\u000545122\u0012\u0011\bf\u0012\u0006\u0010\u0087\u00f0\u0097\u00a8\u0006\"\u000538630\u0012\u0011\bg\u0012\u0006\u0010\u00e7\u00f0\u0097\u00a8\u0006\"\u000542365\u0012\u0011\bh\u0012\u0006\u0010\u00de\u00f1\u0097\u00a8\u0006\"\u000549349\u0012\u0011\bi\u0012\u0006\u0010\u00d1\u00f2\u0097\u00a8\u0006\"\u000549350\u0012\u0011\bj\u0012\u0006\u0010\u0086\u00f3\u0097\u00a8\u0006\"\u000549351\u0012\u0011\bk\u0012\u0006\u0010\u00a7\u00f3\u0097\u00a8\u0006\"\u000549352\u0012\u0011\bl\u0012\u0006\u0010\u00ce\u00f3\u0097\u00a8\u0006\"\u000549353\u0012\u0011\bm\u0012\u0006\u0010\u00f7\u00f3\u0097\u00a8\u0006\"\u000549354\u0012\u0011\bn\u0012\u0006\u0010\u00a1\u00f4\u0097\u00a8\u0006\"\u000549355\u0012\u0011\bo\u0012\u0006\u0010\u00f2\u00f4\u0097\u00a8\u0006\"\u000542244\u0012\u0011\bp\u0012\u0006\u0010\u00fe\u00f4\u0097\u00a8\u0006\"\u000549356\u0012\u0011\bq\u0012\u0006\u0010\u00c0\u00f5\u0097\u00a8\u0006\"\u000549357\u0012\u0011\br\u0012\u0006\u0010\u00d8\u00f5\u0097\u00a8\u0006\"\u000549358\u0012\u0011\bs\u0012\u0006\u0010\u008b\u00f6\u0097\u00a8\u0006\"\u000549359\u0012\u0011\bt\u0012\u0006\u0010\u00bf\u00f6\u0097\u00a8\u0006\"\u000549360\u0012\u0011\bu\u0012\u0006\u0010\u00b5\u00f7\u0097\u00a8\u0006\"\u000549361\u0012\u0011\bv\u0012\u0006\u0010\u00cd\u00f7\u0097\u00a8\u0006\"\u000549362\u0012\u0011\bw\u0012\u0006\u0010\u0082\u00f8\u0097\u00a8\u0006\"\u000549363\u0012\u0011\bx\u0012\u0006\u0010\u00b5\u00f8\u0097\u00a8\u0006\"\u000549364\u0012\u0011\by\u0012\u0006\u0010\u00e7\u00f8\u0097\u00a8\u0006\"\u000549365\u001a\b\u001a\u0006WR8693 \u0092\u00e8\u0097\u00a8\u0006\"`\n/\n\u001016436-701ff27f-2\u0012\b14:45:00\u001a\b20230916 \u0000*\u00035570\u0000\u0012\u001d\rM\u0012\u0013\u00c2\u0015S+\u0092\u00c2\u001d\u0000\u0000\u00a7C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-9\u008eCA(\u0092\u00e8\u0097\u00a8\u0006B\b\u001a\u0006WR8693" + }, + { + "type": "con_recorrido", + "entity": "\n$8749b690-c21d-41c0-8a4a-4e2345863c04\u001a\u00eb\u0002\n.\n\u000f1684-c36b9237-d\u0012\b15:47:00\u001a\b20230915 \u0000*\u00035580\u0001\u0012\u0011\ba\u0012\u0006\u0010\u00c6\u00e5\u0097\u00a8\u0006\"\u000542503\u0012\u0011\bb\u0012\u0006\u0010\u00a9\u00e6\u0097\u00a8\u0006\"\u000549267\u0012\u0014\bc\u0012\u0006\u0010\u00ea\u00e6\u0097\u00a8\u0006\"\b20540210\u0012\u0014\bd\u0012\u0006\u0010\u0080\u00e7\u0097\u00a8\u0006\"\b20540222\u0012\u0014\be\u0012\u0006\u0010\u00ba\u00e7\u0097\u00a8\u0006\"\b20540211\u0012\u0014\bf\u0012\u0006\u0010\u00e9\u00e7\u0097\u00a8\u0006\"\b20540212\u0012\u0014\bg\u0012\u0006\u0010\u00a3\u00e8\u0097\u00a8\u0006\"\b20540213\u0012\u0014\bh\u0012\u0006\u0010\u00ba\u00e8\u0097\u00a8\u0006\"\b20540214\u0012\u0014\bi\u0012\u0006\u0010\u00e7\u00e8\u0097\u00a8\u0006\"\b20540215\u0012\u0014\bj\u0012\u0006\u0010\u00f8\u00e8\u0097\u00a8\u0006\"\b20540216\u0012\u0014\bk\u0012\u0006\u0010\u008a\u00e9\u0097\u00a8\u0006\"\b20540228\u0012\u0014\bl\u0012\u0006\u0010\u0092\u00e9\u0097\u00a8\u0006\"\b20540229\u0012\u0014\bm\u0012\u0006\u0010\u00d2\u00e9\u0097\u00a8\u0006\"\b20540207\u0012\u0011\bn\u0012\u0006\u0010\u00f5\u00e9\u0097\u00a8\u0006\"\u000591147\u001a\b\u001a\u0006DTCB53 \u00bf\u00e5\u0097\u00a8\u0006\"_\n.\n\u000f1684-c36b9237-d\u0012\b15:47:00\u001a\b20230915 \u0000*\u00035580\u0001\u0012\u001d\r\u00bc\u00d4\u0013\u00c2\u0015h\u0006\u0092\u00c2\u001d\u0000\u0000$C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000B(\u00bf\u00e5\u0097\u00a8\u0006B\b\u001a\u0006DTCB53" + }, + { + "type": "con_recorrido", + "entity": "\n$7146d8fc-6443-4d4b-a5d2-c38dbbb0d58e\u001a\u00b0\t\n/\n\u001016635-701ff27f-2\u0012\b14:42:00\u001a\b20230916 \u0000*\u00035580\u0001\u0012\u0011\b5\u0012\u0006\u0010\u00a7\u00e8\u0097\u00a8\u0006\"\u000535695\u0012\u0011\b6\u0012\u0006\u0010\u00da\u00e8\u0097\u00a8\u0006\"\u000535696\u0012\u0011\b7\u0012\u0006\u0010\u008d\u00ea\u0097\u00a8\u0006\"\u000535697\u0012\u0011\b8\u0012\u0006\u0010\u00f0\u00ea\u0097\u00a8\u0006\"\u00052-Jan\u0012\u0011\b9\u0012\u0006\u0010\u0094\u00eb\u0097\u00a8\u0006\"\u000542460\u0012\u0011\b:\u0012\u0006\u0010\u00c8\u00eb\u0097\u00a8\u0006\"\u000539726\u0012\u0011\b;\u0012\u0006\u0010\u00de\u00eb\u0097\u00a8\u0006\"\u00052-Mar\u0012\u0011\b<\u0012\u0006\u0010\u00b0\u00ec\u0097\u00a8\u0006\"\u00052-Apr\u0012\u0011\b=\u0012\u0006\u0010\u00e5\u00ec\u0097\u00a8\u0006\"\u000539728\u0012\u0011\b>\u0012\u0006\u0010\u00c9\u00ed\u0097\u00a8\u0006\"\u000539729\u0012\u0011\b?\u0012\u0006\u0010\u00e1\u00ed\u0097\u00a8\u0006\"\u000539730\u0012\u0011\b@\u0012\u0006\u0010\u00c6\u00ee\u0097\u00a8\u0006\"\u000542200\u0012\u0011\bA\u0012\u0006\u0010\u00f1\u00ee\u0097\u00a8\u0006\"\u000542203\u0012\u0011\bB\u0012\u0006\u0010\u00a6\u00ef\u0097\u00a8\u0006\"\u000542204\u0012\u0011\bC\u0012\u0006\u0010\u00cf\u00ef\u0097\u00a8\u0006\"\u000542205\u0012\u0011\bD\u0012\u0006\u0010\u008a\u00f0\u0097\u00a8\u0006\"\u000542201\u0012\u0011\bE\u0012\u0006\u0010\u00f8\u00f1\u0097\u00a8\u0006\"\u000542206\u0012\u0011\bF\u0012\u0006\u0010\u00b5\u00f2\u0097\u00a8\u0006\"\u000542207\u0012\u0011\bG\u0012\u0006\u0010\u00ef\u00f2\u0097\u00a8\u0006\"\u000542208\u0012\u0011\bH\u0012\u0006\u0010\u00eb\u00f3\u0097\u00a8\u0006\"\u000542564\u0012\u0011\bI\u0012\u0006\u0010\u00d4\u00f4\u0097\u00a8\u0006\"\u000542214\u0012\u0011\bJ\u0012\u0006\u0010\u00c0\u00f5\u0097\u00a8\u0006\"\u000542209\u0012\u0011\bK\u0012\u0006\u0010\u00b8\u00f6\u0097\u00a8\u0006\"\u000542210\u0012\u0011\bL\u0012\u0006\u0010\u00fc\u00f7\u0097\u00a8\u0006\"\u000542215\u0012\u0011\bM\u0012\u0006\u0010\u0096\u00f8\u0097\u00a8\u0006\"\u000542216\u0012\u0011\bN\u0012\u0006\u0010\u00c9\u00f8\u0097\u00a8\u0006\"\u000542217\u0012\u0011\bO\u0012\u0006\u0010\u009a\u00f9\u0097\u00a8\u0006\"\u000542218\u0012\u0011\bP\u0012\u0006\u0010\u00ca\u00f9\u0097\u00a8\u0006\"\u000542219\u0012\u0011\bQ\u0012\u0006\u0010\u00ba\u00fa\u0097\u00a8\u0006\"\u000542220\u0012\u0011\bR\u0012\u0006\u0010\u00ec\u00fa\u0097\u00a8\u0006\"\u000542221\u0012\u0011\bS\u0012\u0006\u0010\u00ba\u00fb\u0097\u00a8\u0006\"\u000542222\u0012\u0011\bT\u0012\u0006\u0010\u0089\u00fc\u0097\u00a8\u0006\"\u000542223\u0012\u0011\bU\u0012\u0006\u0010\u00ab\u00fc\u0097\u00a8\u0006\"\u000542224\u0012\u0011\bV\u0012\u0006\u0010\u0086\u00fd\u0097\u00a8\u0006\"\u000542225\u0012\u0011\bW\u0012\u0006\u0010\u00d5\u00fd\u0097\u00a8\u0006\"\u000542226\u0012\u0011\bX\u0012\u0006\u0010\u0098\u00fe\u0097\u00a8\u0006\"\u000542227\u0012\u0011\bY\u0012\u0006\u0010\u0082\u00ff\u0097\u00a8\u0006\"\u000542228\u0012\u0011\bZ\u0012\u0006\u0010\u00b9\u00ff\u0097\u00a8\u0006\"\u000542229\u0012\u0011\b[\u0012\u0006\u0010\u00a3\u0080\u0098\u00a8\u0006\"\u000542230\u0012\u0011\b\\\u0012\u0006\u0010\u00dc\u0080\u0098\u00a8\u0006\"\u000542231\u0012\u0011\b]\u0012\u0006\u0010\u00d4\u0081\u0098\u00a8\u0006\"\u000542232\u0012\u0011\b^\u0012\u0006\u0010\u0088\u0083\u0098\u00a8\u0006\"\u000542234\u0012\u0011\b_\u0012\u0006\u0010\u009a\u0084\u0098\u00a8\u0006\"\u000542211\u0012\u0011\b`\u0012\u0006\u0010\u00bb\u0085\u0098\u00a8\u0006\"\u000549204\u0012\u0011\ba\u0012\u0006\u0010\u00de\u0085\u0098\u00a8\u0006\"\u000542503\u0012\u0011\bb\u0012\u0006\u0010\u00f9\u0086\u0098\u00a8\u0006\"\u000549267\u0012\u0014\bc\u0012\u0006\u0010\u00e2\u0087\u0098\u00a8\u0006\"\b20540210\u0012\u0014\bd\u0012\u0006\u0010\u0088\u0088\u0098\u00a8\u0006\"\b20540222\u0012\u0014\be\u0012\u0006\u0010\u00ec\u0088\u0098\u00a8\u0006\"\b20540211\u0012\u0014\bf\u0012\u0006\u0010\u00c0\u0089\u0098\u00a8\u0006\"\b20540212\u0012\u0014\bg\u0012\u0006\u0010\u00aa\u008a\u0098\u00a8\u0006\"\b20540213\u0012\u0014\bh\u0012\u0006\u0010\u00d5\u008a\u0098\u00a8\u0006\"\b20540214\u0012\u0014\bi\u0012\u0006\u0010\u00ac\u008b\u0098\u00a8\u0006\"\b20540215\u0012\u0014\bj\u0012\u0006\u0010\u00cf\u008b\u0098\u00a8\u0006\"\b20540216\u0012\u0014\bk\u0012\u0006\u0010\u00f1\u008b\u0098\u00a8\u0006\"\b20540228\u0012\u0014\bl\u0012\u0006\u0010\u0082\u008c\u0098\u00a8\u0006\"\b20540229\u0012\u0014\bm\u0012\u0006\u0010\u0086\u008d\u0098\u00a8\u0006\"\b20540207\u0012\u0011\bn\u0012\u0006\u0010\u00cf\u008d\u0098\u00a8\u0006\"\u000591147\u001a\b\u001a\u0006HDBZ53 \u00a7\u00e8\u0097\u00a8\u0006\"`\n/\n\u001016635-701ff27f-2\u0012\b14:42:00\u001a\b20230916 \u0000*\u00035580\u0001\u0012\u001d\r\u00f6@\u0013\u00c2\u0015M#\u0092\u00c2\u001d\u0000\u0000\u000eC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000DB(\u00a7\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HDBZ53" + }, + { + "type": "con_recorrido", + "entity": "\n$70fd59ab-426b-45f5-81ec-69b0ec35f0c6\u001a\u00e5\u000b\n/\n\u001016750-701ff27f-2\u0012\b15:01:00\u001a\b20230916 \u0000*\u00035590\u0000\u0012\u0011\b\u001a\u0012\u0006\u0010\u00e9\u00e8\u0097\u00a8\u0006\"\u000549285\u0012\u0011\b\u001b\u0012\u0006\u0010\u00ba\u00e9\u0097\u00a8\u0006\"\u000549286\u0012\u0011\b\u001c\u0012\u0006\u0010\u00e7\u00e9\u0097\u00a8\u0006\"\u000549287\u0012\u0011\b\u001d\u0012\u0006\u0010\u0097\u00ea\u0097\u00a8\u0006\"\u000549288\u0012\u0011\b\u001e\u0012\u0006\u0010\u00cb\u00ea\u0097\u00a8\u0006\"\u000549289\u0012\u0011\b\u001f\u0012\u0006\u0010\u00d6\u00eb\u0097\u00a8\u0006\"\u000542294\u0012\u0011\b \u0012\u0006\u0010\u00c7\u00ed\u0097\u00a8\u0006\"\u000542296\u0012\u0011\b!\u0012\u0006\u0010\u00c1\u00ee\u0097\u00a8\u0006\"\u000542297\u0012\u0011\b\"\u0012\u0006\u0010\u00a0\u00ef\u0097\u00a8\u0006\"\u000542298\u0012\u0011\b#\u0012\u0006\u0010\u00de\u00ef\u0097\u00a8\u0006\"\u000542299\u0012\u0011\b$\u0012\u0006\u0010\u0087\u00f0\u0097\u00a8\u0006\"\u000549295\u0012\u0011\b%\u0012\u0006\u0010\u00fc\u00f0\u0097\u00a8\u0006\"\u000549296\u0012\u0011\b&\u0012\u0006\u0010\u00d3\u00f1\u0097\u00a8\u0006\"\u000549297\u0012\u0011\b'\u0012\u0006\u0010\u00f0\u00f1\u0097\u00a8\u0006\"\u000549298\u0012\u0011\b(\u0012\u0006\u0010\u00b6\u00f2\u0097\u00a8\u0006\"\u000549299\u0012\u0011\b)\u0012\u0006\u0010\u00d9\u00f2\u0097\u00a8\u0006\"\u000549300\u0012\u0011\b*\u0012\u0006\u0010\u00b6\u00f3\u0097\u00a8\u0006\"\u000549301\u0012\u0011\b+\u0012\u0006\u0010\u00f5\u00f3\u0097\u00a8\u0006\"\u000549302\u0012\u0011\b,\u0012\u0006\u0010\u00a1\u00f4\u0097\u00a8\u0006\"\u000549303\u0012\u0011\b-\u0012\u0006\u0010\u00d5\u00f4\u0097\u00a8\u0006\"\u000549304\u0012\u0011\b.\u0012\u0006\u0010\u00f7\u00f4\u0097\u00a8\u0006\"\u000549305\u0012\u0011\b/\u0012\u0006\u0010\u00aa\u00f5\u0097\u00a8\u0006\"\u000549306\u0012\u0011\b0\u0012\u0006\u0010\u00db\u00f5\u0097\u00a8\u0006\"\u000549307\u0012\u0011\b1\u0012\u0006\u0010\u00eb\u00f5\u0097\u00a8\u0006\"\u000549308\u0012\u0011\b2\u0012\u0006\u0010\u0083\u00f6\u0097\u00a8\u0006\"\u000549309\u0012\u0011\b3\u0012\u0006\u0010\u00c9\u00f6\u0097\u00a8\u0006\"\u000549310\u0012\u0011\b4\u0012\u0006\u0010\u00ea\u00f6\u0097\u00a8\u0006\"\u000549311\u0012\u0011\b5\u0012\u0006\u0010\u0083\u00f7\u0097\u00a8\u0006\"\u000539633\u0012\u0011\b6\u0012\u0006\u0010\u00a4\u00f7\u0097\u00a8\u0006\"\u000539634\u0012\u0011\b7\u0012\u0006\u0010\u00be\u00f7\u0097\u00a8\u0006\"\u000539635\u0012\u0011\b8\u0012\u0006\u0010\u00ef\u00f7\u0097\u00a8\u0006\"\u000539636\u0012\u0011\b9\u0012\u0006\u0010\u00b1\u00f9\u0097\u00a8\u0006\"\u000539637\u0012\u0011\b:\u0012\u0006\u0010\u00e8\u00f9\u0097\u00a8\u0006\"\u000549317\u0012\u0011\b;\u0012\u0006\u0010\u008b\u00fa\u0097\u00a8\u0006\"\u000549318\u0012\u0011\b<\u0012\u0006\u0010\u00d5\u00fa\u0097\u00a8\u0006\"\u000549319\u0012\u0011\b=\u0012\u0006\u0010\u009d\u00fb\u0097\u00a8\u0006\"\u000539641\u0012\u0011\b>\u0012\u0006\u0010\u00c7\u00fb\u0097\u00a8\u0006\"\u000539642\u0012\u0011\b?\u0012\u0006\u0010\u00f9\u00fd\u0097\u00a8\u0006\"\u000539795\u0012\u0011\b@\u0012\u0006\u0010\u00c1\u00fe\u0097\u00a8\u0006\"\u000542642\u0012\u0011\bA\u0012\u0006\u0010\u00eb\u00fe\u0097\u00a8\u0006\"\u000542643\u0012\u0011\bB\u0012\u0006\u0010\u008e\u00ff\u0097\u00a8\u0006\"\u000542644\u0012\u0011\bC\u0012\u0006\u0010\u00a9\u00ff\u0097\u00a8\u0006\"\u000542645\u0012\u0011\bD\u0012\u0006\u0010\u008f\u0081\u0098\u00a8\u0006\"\u000537430\u0012\u0011\bE\u0012\u0006\u0010\u00ba\u0081\u0098\u00a8\u0006\"\u000537431\u0012\u0011\bF\u0012\u0006\u0010\u00e3\u0081\u0098\u00a8\u0006\"\u000537432\u0012\u0011\bG\u0012\u0006\u0010\u00c4\u0082\u0098\u00a8\u0006\"\u000540720\u0012\u0011\bH\u0012\u0006\u0010\u00d6\u0082\u0098\u00a8\u0006\"\u000540721\u0012\u0011\bI\u0012\u0006\u0010\u0091\u0083\u0098\u00a8\u0006\"\u000540722\u0012\u0011\bJ\u0012\u0006\u0010\u0099\u0083\u0098\u00a8\u0006\"\u000540723\u0012\u0011\bK\u0012\u0006\u0010\u00c0\u0084\u0098\u00a8\u0006\"\u000542653\u0012\u0011\bL\u0012\u0006\u0010\u00f1\u0084\u0098\u00a8\u0006\"\u000542654\u0012\u0011\bM\u0012\u0006\u0010\u0081\u0086\u0098\u00a8\u0006\"\u000542655\u0012\u0011\bN\u0012\u0006\u0010\u00cd\u0086\u0098\u00a8\u0006\"\u000549342\u0012\u0011\bO\u0012\u0006\u0010\u00ea\u0087\u0098\u00a8\u0006\"\u000549343\u0012\u0011\bP\u0012\u0006\u0010\u00b8\u008a\u0098\u00a8\u0006\"\u000549344\u0012\u0011\bQ\u0012\u0006\u0010\u00d3\u008c\u0098\u00a8\u0006\"\u000549345\u0012\u0011\bR\u0012\u0006\u0010\u00bb\u008f\u0098\u00a8\u0006\"\u000549346\u0012\u0011\bS\u0012\u0006\u0010\u00b3\u0090\u0098\u00a8\u0006\"\u000549347\u0012\u0011\bT\u0012\u0006\u0010\u00d1\u0094\u0098\u00a8\u0006\"\u000549348\u0012\u0011\bU\u0012\u0006\u0010\u00f0\u0096\u0098\u00a8\u0006\"\u000549349\u0012\u0011\bV\u0012\u0006\u0010\u00e3\u0099\u0098\u00a8\u0006\"\u000549350\u0012\u0011\bW\u0012\u0006\u0010\u00f9\u009a\u0098\u00a8\u0006\"\u000549351\u0012\u0011\bX\u0012\u0006\u0010\u00e7\u009b\u0098\u00a8\u0006\"\u000549352\u0012\u0011\bY\u0012\u0006\u0010\u00ea\u009c\u0098\u00a8\u0006\"\u000549353\u0012\u0011\bZ\u0012\u0006\u0010\u008f\u009f\u0098\u00a8\u0006\"\u000549355\u0012\u0011\b[\u0012\u0006\u0010\u00c0\u00a1\u0098\u00a8\u0006\"\u000542244\u0012\u0011\b\\\u0012\u0006\u0010\u00ed\u00a1\u0098\u00a8\u0006\"\u000549356\u0012\u0011\b]\u0012\u0006\u0010\u00f4\u00a3\u0098\u00a8\u0006\"\u000549357\u0012\u0011\b^\u0012\u0006\u0010\u00dc\u00a4\u0098\u00a8\u0006\"\u000549358\u0012\u0011\b_\u0012\u0006\u0010\u00b1\u00a6\u0098\u00a8\u0006\"\u000549359\u0012\u0011\b`\u0012\u0006\u0010\u0095\u00a8\u0098\u00a8\u0006\"\u000549360\u0012\u0011\ba\u0012\u0006\u0010\u00b9\u00ac\u0098\u00a8\u0006\"\u000549361\u0012\u0011\bb\u0012\u0006\u0010\u00c0\u00ad\u0098\u00a8\u0006\"\u000549362\u0012\u0011\bc\u0012\u0006\u0010\u00c0\u00af\u0098\u00a8\u0006\"\u000549363\u0012\u0011\bd\u0012\u0006\u0010\u00cd\u00b1\u0098\u00a8\u0006\"\u000549364\u0012\u0011\be\u0012\u0006\u0010\u00ce\u00b3\u0098\u00a8\u0006\"\u000549365\u001a\b\u001a\u0006RBXL11 \u00c0\u00e8\u0097\u00a8\u0006\"`\n/\n\u001016750-701ff27f-2\u0012\b15:01:00\u001a\b20230916 \u0000*\u00035590\u0000\u0012\u001d\r\"\u00a1\u0013\u00c2\u0015,\u000f\u0092\u00c2\u001d\u0000\u0000\u00b0C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000HB(\u00c0\u00e8\u0097\u00a8\u0006B\b\u001a\u0006RBXL11" + }, + { + "type": "con_recorrido", + "entity": "\n$833c2481-5a3f-485b-8179-ef0a28e9bd37\u001a\u00ee\u000e\n.\n\u000f1731-c36b9237-d\u0012\b08:32:00\u001a\b20230914 \u0000*\u00035590\u0001\u0012\u0011\b\u000b\u0012\u0006\u0010\u00cc\u00e8\u0097\u00a8\u0006\"\u000538779\u0012\u0011\b\f\u0012\u0006\u0010\u00fd\u00e8\u0097\u00a8\u0006\"\u000542247\u0012\u0011\b\r\u0012\u0006\u0010\u00ae\u00e9\u0097\u00a8\u0006\"\u000542248\u0012\u0011\b\u000e\u0012\u0006\u0010\u00ce\u00e9\u0097\u00a8\u0006\"\u000538782\u0012\u0011\b\u000f\u0012\u0006\u0010\u00c0\u00ea\u0097\u00a8\u0006\"\u000542249\u0012\u0011\b\u0010\u0012\u0006\u0010\u00b6\u00eb\u0097\u00a8\u0006\"\u000542421\u0012\u0011\b\u0011\u0012\u0006\u0010\u00ff\u00ec\u0097\u00a8\u0006\"\u000542422\u0012\u0011\b\u0012\u0012\u0006\u0010\u00cb\u00ed\u0097\u00a8\u0006\"\u000542423\u0012\u0011\b\u0013\u0012\u0006\u0010\u00b8\u00ee\u0097\u00a8\u0006\"\u000542424\u0012\u0011\b\u0014\u0012\u0006\u0010\u00ef\u00ef\u0097\u00a8\u0006\"\u000542425\u0012\u0011\b\u0015\u0012\u0006\u0010\u009f\u00f1\u0097\u00a8\u0006\"\u000542426\u0012\u0011\b\u0016\u0012\u0006\u0010\u00d4\u00f1\u0097\u00a8\u0006\"\u000542427\u0012\u0011\b\u0017\u0012\u0006\u0010\u00f1\u00f1\u0097\u00a8\u0006\"\u000542428\u0012\u0011\b\u0018\u0012\u0006\u0010\u008f\u00f2\u0097\u00a8\u0006\"\u000542429\u0012\u0011\b\u0019\u0012\u0006\u0010\u00eb\u00f2\u0097\u00a8\u0006\"\u000542521\u0012\u0011\b\u001a\u0012\u0006\u0010\u0088\u00f3\u0097\u00a8\u0006\"\u000542522\u0012\u0011\b\u001b\u0012\u0006\u0010\u00c0\u00f3\u0097\u00a8\u0006\"\u000542524\u0012\u0011\b\u001c\u0012\u0006\u0010\u008a\u00f4\u0097\u00a8\u0006\"\u000542525\u0012\u0011\b\u001d\u0012\u0006\u0010\u008d\u00f4\u0097\u00a8\u0006\"\u000542526\u0012\u0011\b\u001e\u0012\u0006\u0010\u00af\u00f4\u0097\u00a8\u0006\"\u000540721\u0012\u0011\b\u001f\u0012\u0006\u0010\u00d7\u00f4\u0097\u00a8\u0006\"\u000542528\u0012\u0011\b \u0012\u0006\u0010\u0085\u00f5\u0097\u00a8\u0006\"\u000537585\u0012\u0011\b!\u0012\u0006\u0010\u00aa\u00f5\u0097\u00a8\u0006\"\u000537586\u0012\u0011\b\"\u0012\u0006\u0010\u00c3\u00f5\u0097\u00a8\u0006\"\u000537587\u0012\u0011\b#\u0012\u0006\u0010\u00ab\u00f6\u0097\u00a8\u0006\"\u000536641\u0012\u0011\b$\u0012\u0006\u0010\u00e1\u00f6\u0097\u00a8\u0006\"\u000542533\u0012\u0011\b%\u0012\u0006\u0010\u009d\u00f7\u0097\u00a8\u0006\"\u000542534\u0012\u0011\b&\u0012\u0006\u0010\u00c6\u00f7\u0097\u00a8\u0006\"\u000542535\u0012\u0011\b'\u0012\u0006\u0010\u009b\u00f8\u0097\u00a8\u0006\"\u000538502\u0012\u0011\b(\u0012\u0006\u0010\u00e3\u00f8\u0097\u00a8\u0006\"\u000538503\u0012\u0011\b)\u0012\u0006\u0010\u0090\u00fa\u0097\u00a8\u0006\"\u000535691\u0012\u0011\b*\u0012\u0006\u0010\u00be\u00fa\u0097\u00a8\u0006\"\u000535692\u0012\u0011\b+\u0012\u0006\u0010\u00fc\u00fa\u0097\u00a8\u0006\"\u000535693\u0012\u0011\b,\u0012\u0006\u0010\u00bf\u00fb\u0097\u00a8\u0006\"\u000535694\u0012\u0011\b-\u0012\u0006\u0010\u00ee\u00fb\u0097\u00a8\u0006\"\u000535695\u0012\u0011\b.\u0012\u0006\u0010\u00a6\u00fc\u0097\u00a8\u0006\"\u000535696\u0012\u0011\b/\u0012\u0006\u0010\u00fc\u00fd\u0097\u00a8\u0006\"\u000535697\u0012\u0011\b0\u0012\u0006\u0010\u0080\u00ff\u0097\u00a8\u0006\"\u00052-Jan\u0012\u0011\b1\u0012\u0006\u0010\u009d\u00ff\u0097\u00a8\u0006\"\u000542460\u0012\u0011\b2\u0012\u0006\u0010\u00e9\u00ff\u0097\u00a8\u0006\"\u000539726\u0012\u0011\b3\u0012\u0006\u0010\u0086\u0080\u0098\u00a8\u0006\"\u00052-Mar\u0012\u0011\b4\u0012\u0006\u0010\u00f1\u0080\u0098\u00a8\u0006\"\u00052-Apr\u0012\u0011\b5\u0012\u0006\u0010\u00c5\u0081\u0098\u00a8\u0006\"\u000539728\u0012\u0011\b6\u0012\u0006\u0010\u00d1\u0082\u0098\u00a8\u0006\"\u000539729\u0012\u0011\b7\u0012\u0006\u0010\u00f5\u0082\u0098\u00a8\u0006\"\u000539730\u0012\u0011\b8\u0012\u0006\u0010\u0090\u0084\u0098\u00a8\u0006\"\u000542200\u0012\u0011\b9\u0012\u0006\u0010\u00d6\u0084\u0098\u00a8\u0006\"\u000542203\u0012\u0011\b:\u0012\u0006\u0010\u00bb\u0085\u0098\u00a8\u0006\"\u000542204\u0012\u0011\b;\u0012\u0006\u0010\u00f0\u0085\u0098\u00a8\u0006\"\u000542205\u0012\u0011\b<\u0012\u0006\u0010\u00d4\u0086\u0098\u00a8\u0006\"\u000542201\u0012\u0011\b=\u0012\u0006\u0010\u0086\u008a\u0098\u00a8\u0006\"\u000542206\u0012\u0011\b>\u0012\u0006\u0010\u00fe\u008a\u0098\u00a8\u0006\"\u000542207\u0012\u0011\b?\u0012\u0006\u0010\u00f4\u008b\u0098\u00a8\u0006\"\u000542208\u0012\u0011\b@\u0012\u0006\u0010\u00f9\u008d\u0098\u00a8\u0006\"\u000542564\u0012\u0011\bA\u0012\u0006\u0010\u00e7\u008f\u0098\u00a8\u0006\"\u000542214\u0012\u0011\bB\u0012\u0006\u0010\u00de\u0091\u0098\u00a8\u0006\"\u000542209\u0012\u0011\bC\u0012\u0006\u0010\u0088\u0094\u0098\u00a8\u0006\"\u000542210\u0012\u0011\bD\u0012\u0006\u0010\u00f5\u0097\u0098\u00a8\u0006\"\u000540951\u0012\u0011\bE\u0012\u0006\u0010\u00b1\u0099\u0098\u00a8\u0006\"\u000540952\u0012\u0011\bF\u0012\u0006\u0010\u00eb\u009a\u0098\u00a8\u0006\"\u000540953\u0012\u0011\bG\u0012\u0006\u0010\u00fc\u009b\u0098\u00a8\u0006\"\u000540954\u0012\u0011\bH\u0012\u0006\u0010\u00f3\u009d\u0098\u00a8\u0006\"\u000540955\u0012\u0011\bI\u0012\u0006\u0010\u00fb\u009e\u0098\u00a8\u0006\"\u000540956\u0012\u0011\bJ\u0012\u0006\u0010\u00df\u00a0\u0098\u00a8\u0006\"\u000540957\u0012\u0011\bK\u0012\u0006\u0010\u00af\u00a2\u0098\u00a8\u0006\"\u000540958\u0012\u0011\bL\u0012\u0006\u0010\u009b\u00a3\u0098\u00a8\u0006\"\u000540959\u0012\u0011\bM\u0012\u0006\u0010\u00c6\u00a5\u0098\u00a8\u0006\"\u000542223\u0012\u0011\bN\u0012\u0006\u0010\u00c2\u00a6\u0098\u00a8\u0006\"\u000542224\u0012\u0011\bO\u0012\u0006\u0010\u00a1\u00a9\u0098\u00a8\u0006\"\u000542225\u0012\u0011\bP\u0012\u0006\u0010\u00df\u00ab\u0098\u00a8\u0006\"\u000542226\u0012\u0011\bQ\u0012\u0006\u0010\u00f3\u00ad\u0098\u00a8\u0006\"\u000542227\u0012\u0011\bR\u0012\u0006\u0010\u00c6\u00b1\u0098\u00a8\u0006\"\u000542228\u0012\u0011\bS\u0012\u0006\u0010\u00a2\u00b3\u0098\u00a8\u0006\"\u000542229\u0012\u0011\bT\u0012\u0006\u0010\u00bc\u00b7\u0098\u00a8\u0006\"\u000542230\u0012\u0011\bU\u0012\u0006\u0010\u00da\u00b9\u0098\u00a8\u0006\"\u000542231\u0012\u0011\bV\u0012\u0006\u0010\u00a6\u00be\u0098\u00a8\u0006\"\u000542232\u0012\u0011\bW\u0012\u0006\u0010\u00eb\u00c6\u0098\u00a8\u0006\"\u000542234\u0012\u0011\bX\u0012\u0006\u0010\u00bc\u00cc\u0098\u00a8\u0006\"\u000542235\u0012\u0011\bY\u0012\u0006\u0010\u00a1\u00ce\u0098\u00a8\u0006\"\u000542211\u0012\u0011\bZ\u0012\u0006\u0010\u008d\u00d3\u0098\u00a8\u0006\"\u000542501\u0012\u0011\b[\u0012\u0006\u0010\u00db\u00d7\u0098\u00a8\u0006\"\u000549204\u0012\u0011\b\\\u0012\u0006\u0010\u00c5\u00d8\u0098\u00a8\u0006\"\u000542503\u0012\u0011\b]\u0012\u0006\u0010\u00dc\u00dd\u0098\u00a8\u0006\"\u000549266\u0012\u0014\b^\u0012\u0006\u0010\u00bd\u00ea\u0098\u00a8\u0006\"\b20540210\u0012\u0014\b_\u0012\u0006\u0010\u00b0\u00ee\u0098\u00a8\u0006\"\b20540222\u0012\u0014\b`\u0012\u0006\u0010\u00ec\u00f5\u0098\u00a8\u0006\"\b20540211\u0012\u0014\ba\u0012\u0006\u0010\u009d\u00fc\u0098\u00a8\u0006\"\b20540212\u0012\u0014\bb\u0012\u0006\u0010\u00ee\u0085\u0099\u00a8\u0006\"\b20540213\u0012\u0014\bc\u0012\u0006\u0010\u00ef\u008b\u0099\u00a8\u0006\"\b20540214\u0012\u0014\bd\u0012\u0006\u0010\u00f4\u0092\u0099\u00a8\u0006\"\b20540215\u0012\u0014\be\u0012\u0006\u0010\u0095\u009b\u0099\u00a8\u0006\"\b20540228\u0012\u0014\bf\u0012\u0006\u0010\u00db\u009d\u0099\u00a8\u0006\"\b20540229\u0012\u0014\bg\u0012\u0006\u0010\u0098\u00ae\u0099\u00a8\u0006\"\b20540207\u0012\u0011\bh\u0012\u0006\u0010\u00f2\u00b6\u0099\u00a8\u0006\"\u000591147\u0012\u0014\bi\u0012\u0006\u0010\u00a8\u00c0\u0099\u00a8\u0006\"\b20554362\u001a\b\u001a\u0006RLYS70 \u00a9\u00e8\u0097\u00a8\u0006\"_\n.\n\u000f1731-c36b9237-d\u0012\b08:32:00\u001a\b20230914 \u0000*\u00035590\u0001\u0012\u001d\r\u00e3\u00e8\u0012\u00c2\u0015\u00db;\u0092\u00c2\u001d\u0000\u0000DC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000 B(\u00a9\u00e8\u0097\u00a8\u0006B\b\u001a\u0006RLYS70" + }, + { + "type": "con_recorrido", + "entity": "\n$e28c238b-5501-4a8e-8a45-841f07e19160\u001a\u008a\t\n/\n\u001016691-701ff27f-2\u0012\b14:22:00\u001a\b20230916 \u0000*\u00035590\u0001\u0012\u0011\b2\u0012\u0006\u0010\u00fd\u00e7\u0097\u00a8\u0006\"\u000539726\u0012\u0011\b3\u0012\u0006\u0010\u0094\u00e8\u0097\u00a8\u0006\"\u00052-Mar\u0012\u0011\b4\u0012\u0006\u0010\u00e8\u00e8\u0097\u00a8\u0006\"\u00052-Apr\u0012\u0011\b5\u0012\u0006\u0010\u00a7\u00e9\u0097\u00a8\u0006\"\u000539728\u0012\u0011\b6\u0012\u0006\u0010\u008c\u00ea\u0097\u00a8\u0006\"\u000539729\u0012\u0011\b7\u0012\u0006\u0010\u00a5\u00ea\u0097\u00a8\u0006\"\u000539730\u0012\u0011\b8\u0012\u0006\u0010\u008d\u00eb\u0097\u00a8\u0006\"\u000542200\u0012\u0011\b9\u0012\u0006\u0010\u00bb\u00eb\u0097\u00a8\u0006\"\u000542203\u0012\u0011\b:\u0012\u0006\u0010\u00fa\u00eb\u0097\u00a8\u0006\"\u000542204\u0012\u0011\b;\u0012\u0006\u0010\u009b\u00ec\u0097\u00a8\u0006\"\u000542205\u0012\u0011\b<\u0012\u0006\u0010\u00d6\u00ec\u0097\u00a8\u0006\"\u000542201\u0012\u0011\b=\u0012\u0006\u0010\u00c6\u00ee\u0097\u00a8\u0006\"\u000542206\u0012\u0011\b>\u0012\u0006\u0010\u0083\u00ef\u0097\u00a8\u0006\"\u000542207\u0012\u0011\b?\u0012\u0006\u0010\u00bd\u00ef\u0097\u00a8\u0006\"\u000542208\u0012\u0011\b@\u0012\u0006\u0010\u00b7\u00f0\u0097\u00a8\u0006\"\u000542564\u0012\u0011\bA\u0012\u0006\u0010\u009f\u00f1\u0097\u00a8\u0006\"\u000542214\u0012\u0011\bB\u0012\u0006\u0010\u0085\u00f2\u0097\u00a8\u0006\"\u000542209\u0012\u0011\bC\u0012\u0006\u0010\u00f9\u00f2\u0097\u00a8\u0006\"\u000542210\u0012\u0011\bD\u0012\u0006\u0010\u00a9\u00f4\u0097\u00a8\u0006\"\u000540951\u0012\u0011\bE\u0012\u0006\u0010\u00e7\u00f4\u0097\u00a8\u0006\"\u000540952\u0012\u0011\bF\u0012\u0006\u0010\u00a3\u00f5\u0097\u00a8\u0006\"\u000540953\u0012\u0011\bG\u0012\u0006\u0010\u00d1\u00f5\u0097\u00a8\u0006\"\u000540954\u0012\u0011\bH\u0012\u0006\u0010\u009b\u00f6\u0097\u00a8\u0006\"\u000540955\u0012\u0011\bI\u0012\u0006\u0010\u00c2\u00f6\u0097\u00a8\u0006\"\u000540956\u0012\u0011\bJ\u0012\u0006\u0010\u0082\u00f7\u0097\u00a8\u0006\"\u000540957\u0012\u0011\bK\u0012\u0006\u0010\u00ba\u00f7\u0097\u00a8\u0006\"\u000540958\u0012\u0011\bL\u0012\u0006\u0010\u00d7\u00f7\u0097\u00a8\u0006\"\u000540959\u0012\u0011\bM\u0012\u0006\u0010\u00a3\u00f8\u0097\u00a8\u0006\"\u000542223\u0012\u0011\bN\u0012\u0006\u0010\u00c2\u00f8\u0097\u00a8\u0006\"\u000542224\u0012\u0011\bO\u0012\u0006\u0010\u0095\u00f9\u0097\u00a8\u0006\"\u000542225\u0012\u0011\bP\u0012\u0006\u0010\u00dd\u00f9\u0097\u00a8\u0006\"\u000542226\u0012\u0011\bQ\u0012\u0006\u0010\u0099\u00fa\u0097\u00a8\u0006\"\u000542227\u0012\u0011\bR\u0012\u0006\u0010\u00f9\u00fa\u0097\u00a8\u0006\"\u000542228\u0012\u0011\bS\u0012\u0006\u0010\u00a4\u00fb\u0097\u00a8\u0006\"\u000542229\u0012\u0011\bT\u0012\u0006\u0010\u0088\u00fc\u0097\u00a8\u0006\"\u000542230\u0012\u0011\bU\u0012\u0006\u0010\u00ba\u00fc\u0097\u00a8\u0006\"\u000542231\u0012\u0011\bV\u0012\u0006\u0010\u009d\u00fd\u0097\u00a8\u0006\"\u000542232\u0012\u0011\bW\u0012\u0006\u0010\u00c3\u00fe\u0097\u00a8\u0006\"\u000542234\u0012\u0011\bX\u0012\u0006\u0010\u00a5\u00ff\u0097\u00a8\u0006\"\u000542235\u0012\u0011\bY\u0012\u0006\u0010\u00c3\u00ff\u0097\u00a8\u0006\"\u000542211\u0012\u0011\bZ\u0012\u0006\u0010\u0090\u0080\u0098\u00a8\u0006\"\u000542501\u0012\u0011\b[\u0012\u0006\u0010\u00d5\u0080\u0098\u00a8\u0006\"\u000549204\u0012\u0011\b\\\u0012\u0006\u0010\u00e1\u0080\u0098\u00a8\u0006\"\u000542503\u0012\u0011\b]\u0012\u0006\u0010\u00a9\u0081\u0098\u00a8\u0006\"\u000549266\u0012\u0014\b^\u0012\u0006\u0010\u00c9\u0082\u0098\u00a8\u0006\"\b20540210\u0012\u0014\b_\u0012\u0006\u0010\u00f6\u0082\u0098\u00a8\u0006\"\b20540222\u0012\u0014\b`\u0012\u0006\u0010\u00c6\u0083\u0098\u00a8\u0006\"\b20540211\u0012\u0014\ba\u0012\u0006\u0010\u0086\u0084\u0098\u00a8\u0006\"\b20540212\u0012\u0014\bb\u0012\u0006\u0010\u00df\u0084\u0098\u00a8\u0006\"\b20540213\u0012\u0014\bc\u0012\u0006\u0010\u0092\u0085\u0098\u00a8\u0006\"\b20540214\u0012\u0014\bd\u0012\u0006\u0010\u00cb\u0085\u0098\u00a8\u0006\"\b20540215\u0012\u0014\be\u0012\u0006\u0010\u0089\u0086\u0098\u00a8\u0006\"\b20540228\u0012\u0014\bf\u0012\u0006\u0010\u009b\u0086\u0098\u00a8\u0006\"\b20540229\u0012\u0014\bg\u0012\u0006\u0010\u0088\u0087\u0098\u00a8\u0006\"\b20540207\u0012\u0011\bh\u0012\u0006\u0010\u00bc\u0087\u0098\u00a8\u0006\"\u000591147\u0012\u0014\bi\u0012\u0006\u0010\u00f1\u0087\u0098\u00a8\u0006\"\b20554362\u001a\b\u001a\u0006RTXW79 \u00ec\u00e7\u0097\u00a8\u0006\"`\n/\n\u001016691-701ff27f-2\u0012\b14:22:00\u001a\b20230916 \u0000*\u00035590\u0001\u0012\u001d\rqQ\u0013\u00c2\u0015V\u001f\u0092\u00c2\u001d\u0000\u0000\u001aC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ec\u00e7\u0097\u00a8\u0006B\b\u001a\u0006RTXW79" + }, + { + "type": "sin_recorrido", + "entity": "\n$f2d09d37-1488-477e-adae-71749442eaa2\"`\n/\n\u001016884-701ff27f-2\u0012\b12:47:00\u001a\b20230916 \u0000*\u00035600\u0001\u0012\u001d\rZE\u0013\u00c2\u0015s!\u0092\u00c2\u001d\u0000\u0000\u00d0B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u008e\u00e6\u0097\u00a8\u0006B\b\u001a\u0006CSFY68" + }, + { + "type": "con_recorrido", + "entity": "\n$0c102e4c-3434-42e6-a4fb-c80682b55542\u001a\u0098\t\n/\n\u001016815-701ff27f-2\u0012\b14:20:00\u001a\b20230916 \u0000*\u00035600\u0000\u0012\u0011\b\u001f\u0012\u0006\u0010\u00eb\u00e7\u0097\u00a8\u0006\"\u000549297\u0012\u0011\b \u0012\u0006\u0010\u008e\u00e8\u0097\u00a8\u0006\"\u000549298\u0012\u0011\b!\u0012\u0006\u0010\u00cd\u00e8\u0097\u00a8\u0006\"\u000549299\u0012\u0011\b\"\u0012\u0006\u0010\u0084\u00e9\u0097\u00a8\u0006\"\u000549300\u0012\u0011\b#\u0012\u0006\u0010\u00db\u00e9\u0097\u00a8\u0006\"\u000549301\u0012\u0011\b$\u0012\u0006\u0010\u00a0\u00ea\u0097\u00a8\u0006\"\u000549302\u0012\u0011\b%\u0012\u0006\u0010\u00ce\u00ea\u0097\u00a8\u0006\"\u000549303\u0012\u0011\b&\u0012\u0006\u0010\u0082\u00eb\u0097\u00a8\u0006\"\u000549304\u0012\u0011\b'\u0012\u0006\u0010\u009e\u00eb\u0097\u00a8\u0006\"\u000549305\u0012\u0011\b(\u0012\u0006\u0010\u00d7\u00eb\u0097\u00a8\u0006\"\u000549306\u0012\u0011\b)\u0012\u0006\u0010\u00fe\u00eb\u0097\u00a8\u0006\"\u000549307\u0012\u0011\b*\u0012\u0006\u0010\u0096\u00ec\u0097\u00a8\u0006\"\u000549308\u0012\u0011\b+\u0012\u0006\u0010\u00ae\u00ec\u0097\u00a8\u0006\"\u000549309\u0012\u0011\b,\u0012\u0006\u0010\u00ca\u00ec\u0097\u00a8\u0006\"\u000542315\u0012\u0011\b-\u0012\u0006\u0010\u00e1\u00ec\u0097\u00a8\u0006\"\u000542316\u0012\u0011\b.\u0012\u0006\u0010\u0093\u00ed\u0097\u00a8\u0006\"\u000542317\u0012\u0011\b/\u0012\u0006\u0010\u00c6\u00ed\u0097\u00a8\u0006\"\u000542318\u0012\u0013\b0\u0012\u0006\u0010\u0086\u00ee\u0097\u00a8\u0006\"\u00078606396\u0012\u0011\b1\u0012\u0006\u0010\u00d3\u00ee\u0097\u00a8\u0006\"\u000538514\u0012\u0011\b2\u0012\u0006\u0010\u00f8\u00ee\u0097\u00a8\u0006\"\u000538516\u0012\u0011\b3\u0012\u0006\u0010\u00b2\u00ef\u0097\u00a8\u0006\"\u000538518\u0012\u0011\b4\u0012\u0006\u0010\u0090\u00f0\u0097\u00a8\u0006\"\u000538520\u0012\u0011\b5\u0012\u0006\u0010\u00bb\u00f0\u0097\u00a8\u0006\"\u000538521\u0012\u0011\b6\u0012\u0006\u0010\u00eb\u00f0\u0097\u00a8\u0006\"\u000538522\u0012\u0011\b7\u0012\u0006\u0010\u009b\u00f1\u0097\u00a8\u0006\"\u000538523\u0012\u0011\b8\u0012\u0006\u0010\u00cf\u00f1\u0097\u00a8\u0006\"\u000538524\u0012\u0011\b9\u0012\u0006\u0010\u00fe\u00f1\u0097\u00a8\u0006\"\u000538525\u0012\u0011\b:\u0012\u0006\u0010\u00b1\u00f2\u0097\u00a8\u0006\"\u000538526\u0012\u0011\b;\u0012\u0006\u0010\u00e1\u00f2\u0097\u00a8\u0006\"\u000538527\u0012\u0011\b<\u0012\u0006\u0010\u00b7\u00f3\u0097\u00a8\u0006\"\u000538528\u0012\u0011\b=\u0012\u0006\u0010\u00aa\u00f4\u0097\u00a8\u0006\"\u000538529\u0012\u0011\b>\u0012\u0006\u0010\u0080\u00f6\u0097\u00a8\u0006\"\u000538530\u0012\u0014\b?\u0012\u0006\u0010\u008e\u00f6\u0097\u00a8\u0006\"\b16005209\u0012\u0011\b@\u0012\u0006\u0010\u0087\u00f8\u0097\u00a8\u0006\"\u000538531\u0012\u0013\bA\u0012\u0006\u0010\u00c3\u00f8\u0097\u00a8\u0006\"\u00078921285\u0012\u0011\bB\u0012\u0006\u0010\u00bf\u00f9\u0097\u00a8\u0006\"\u000538532\u0012\u0011\bC\u0012\u0006\u0010\u00fa\u00f9\u0097\u00a8\u0006\"\u000538533\u0012\u0011\bD\u0012\u0006\u0010\u00b8\u00fa\u0097\u00a8\u0006\"\u000538534\u0012\u0011\bE\u0012\u0006\u0010\u00ef\u00fa\u0097\u00a8\u0006\"\u000538535\u0012\u0011\bF\u0012\u0006\u0010\u00bb\u00fb\u0097\u00a8\u0006\"\u000538536\u0012\u0013\bG\u0012\u0006\u0010\u00e6\u00fb\u0097\u00a8\u0006\"\u00074838437\u0012\u0011\bH\u0012\u0006\u0010\u00a8\u00fc\u0097\u00a8\u0006\"\u000545085\u0012\u0011\bI\u0012\u0006\u0010\u0089\u00fd\u0097\u00a8\u0006\"\u000545086\u0012\u0011\bJ\u0012\u0006\u0010\u009f\u00fe\u0097\u00a8\u0006\"\u000538540\u0012\u0011\bK\u0012\u0006\u0010\u00fe\u00fe\u0097\u00a8\u0006\"\u000538544\u0012\u0011\bL\u0012\u0006\u0010\u00d6\u0080\u0098\u00a8\u0006\"\u000538546\u0012\u0011\bM\u0012\u0006\u0010\u0081\u0082\u0098\u00a8\u0006\"\u000538548\u0012\u0011\bN\u0012\u0006\u0010\u00e2\u0082\u0098\u00a8\u0006\"\u000538549\u0012\u0011\bO\u0012\u0006\u0010\u00b6\u0083\u0098\u00a8\u0006\"\u000538550\u0012\u0011\bP\u0012\u0006\u0010\u00cb\u0084\u0098\u00a8\u0006\"\u000538551\u0012\u0011\bQ\u0012\u0006\u0010\u00d4\u0085\u0098\u00a8\u0006\"\u000538552\u0012\u0011\bR\u0012\u0006\u0010\u00de\u0086\u0098\u00a8\u0006\"\u000549359\u0012\u0011\bS\u0012\u0006\u0010\u00af\u0087\u0098\u00a8\u0006\"\u000549360\u0012\u0011\bT\u0012\u0006\u0010\u00fa\u0088\u0098\u00a8\u0006\"\u000549361\u0012\u0011\bU\u0012\u0006\u0010\u00ac\u0089\u0098\u00a8\u0006\"\u000549362\u0012\u0011\bV\u0012\u0006\u0010\u0085\u008a\u0098\u00a8\u0006\"\u000549363\u0012\u0011\bW\u0012\u0006\u0010\u00e3\u008a\u0098\u00a8\u0006\"\u000549364\u0012\u0011\bX\u0012\u0006\u0010\u00b8\u008b\u0098\u00a8\u0006\"\u000549365\u001a\b\u001a\u0006DPZZ21 \u00e6\u00e7\u0097\u00a8\u0006\"`\n/\n\u001016815-701ff27f-2\u0012\b14:20:00\u001a\b20230916 \u0000*\u00035600\u0000\u0012\u001d\rDn\u0013\u00c2\u0015U\u0019\u0092\u00c2\u001d\u0000\u0000\u00aeC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-ff(B(\u00e6\u00e7\u0097\u00a8\u0006B\b\u001a\u0006DPZZ21" + }, + { + "type": "con_recorrido", + "entity": "\n$aa725d0e-9478-4d35-b6fb-9f357a259951\u001a\u008f\t\n/\n\u001016892-701ff27f-2\u0012\b14:47:00\u001a\b20230916 \u0000*\u00035600\u0001\u0012\u0011\b\u0012\u0012\u0006\u0010\u00ae\u00eb\u0097\u00a8\u0006\"\u000540995\u0012\u0011\b\u0013\u0012\u0006\u0010\u00fe\u00eb\u0097\u00a8\u0006\"\u000540996\u0012\u0011\b\u0014\u0012\u0006\u0010\u00ca\u00ec\u0097\u00a8\u0006\"\u000540997\u0012\u0011\b\u0015\u0012\u0006\u0010\u0080\u00ed\u0097\u00a8\u0006\"\u000539614\u0012\u0011\b\u0016\u0012\u0006\u0010\u00b1\u00ed\u0097\u00a8\u0006\"\u000539615\u0012\u0011\b\u0017\u0012\u0006\u0010\u00e2\u00ed\u0097\u00a8\u0006\"\u000539616\u0012\u0011\b\u0018\u0012\u0006\u0010\u0095\u00ee\u0097\u00a8\u0006\"\u000539617\u0012\u0011\b\u0019\u0012\u0006\u0010\u00ce\u00ee\u0097\u00a8\u0006\"\u000539618\u0012\u0011\b\u001a\u0012\u0006\u0010\u00fb\u00ee\u0097\u00a8\u0006\"\u000539619\u0012\u0011\b\u001b\u0012\u0006\u0010\u00a4\u00ef\u0097\u00a8\u0006\"\u000539620\u0012\u0011\b\u001c\u0012\u0006\u0010\u00e5\u00ef\u0097\u00a8\u0006\"\u000539621\u0012\u0011\b\u001d\u0012\u0006\u0010\u0094\u00f0\u0097\u00a8\u0006\"\u000538281\u0012\u0011\b\u001e\u0012\u0006\u0010\u00c9\u00f0\u0097\u00a8\u0006\"\u000537506\u0012\u0011\b\u001f\u0012\u0006\u0010\u00f1\u00f0\u0097\u00a8\u0006\"\u000545068\u0012\u0011\b \u0012\u0006\u0010\u00eb\u00f1\u0097\u00a8\u0006\"\u000537480\u0012\u0011\b!\u0012\u0006\u0010\u00a8\u00f2\u0097\u00a8\u0006\"\u000537477\u0012\u0011\b\"\u0012\u0006\u0010\u00eb\u00f2\u0097\u00a8\u0006\"\u000540848\u0012\u0011\b#\u0012\u0006\u0010\u00be\u00f3\u0097\u00a8\u0006\"\u00052-Apr\u0012\u0011\b$\u0012\u0006\u0010\u00f8\u00f3\u0097\u00a8\u0006\"\u000539728\u0012\u0011\b%\u0012\u0006\u0010\u00d3\u00f4\u0097\u00a8\u0006\"\u000539729\u0012\u0011\b&\u0012\u0006\u0010\u00f3\u00f4\u0097\u00a8\u0006\"\u000539730\u0012\u0011\b'\u0012\u0006\u0010\u00dd\u00f5\u0097\u00a8\u0006\"\u000542200\u0012\u0011\b(\u0012\u0006\u0010\u008c\u00f6\u0097\u00a8\u0006\"\u000542203\u0012\u0011\b)\u0012\u0006\u0010\u00c5\u00f6\u0097\u00a8\u0006\"\u000542204\u0012\u0011\b*\u0012\u0006\u0010\u00f1\u00f6\u0097\u00a8\u0006\"\u000542205\u0012\u0011\b+\u0012\u0006\u0010\u00b2\u00f7\u0097\u00a8\u0006\"\u000542201\u0012\u0011\b,\u0012\u0006\u0010\u00bf\u00f9\u0097\u00a8\u0006\"\u000542206\u0012\u0011\b-\u0012\u0006\u0010\u0086\u00fa\u0097\u00a8\u0006\"\u000542207\u0012\u0011\b.\u0012\u0006\u0010\u00cb\u00fa\u0097\u00a8\u0006\"\u000542208\u0012\u0011\b/\u0012\u0006\u0010\u00e5\u00fb\u0097\u00a8\u0006\"\u000542564\u0012\u0011\b0\u0012\u0006\u0010\u00e3\u00fc\u0097\u00a8\u0006\"\u000542214\u0012\u0011\b1\u0012\u0006\u0010\u00e8\u00fd\u0097\u00a8\u0006\"\u000542209\u0012\u0011\b2\u0012\u0006\u0010\u0082\u00ff\u0097\u00a8\u0006\"\u000542210\u0012\u0011\b3\u0012\u0006\u0010\u0081\u0081\u0098\u00a8\u0006\"\u000542215\u0012\u0011\b4\u0012\u0006\u0010\u00ad\u0081\u0098\u00a8\u0006\"\u000542216\u0012\u0011\b5\u0012\u0006\u0010\u00e9\u0081\u0098\u00a8\u0006\"\u000542217\u0012\u0011\b6\u0012\u0006\u0010\u00d8\u0082\u0098\u00a8\u0006\"\u000542218\u0012\u0011\b7\u0012\u0006\u0010\u008e\u0083\u0098\u00a8\u0006\"\u000542219\u0012\u0011\b8\u0012\u0006\u0010\u00b8\u0084\u0098\u00a8\u0006\"\u000542220\u0012\u0011\b9\u0012\u0006\u0010\u00ff\u0084\u0098\u00a8\u0006\"\u000542221\u0012\u0011\b:\u0012\u0006\u0010\u00ee\u0085\u0098\u00a8\u0006\"\u000542222\u0012\u0011\b;\u0012\u0006\u0010\u00e2\u0086\u0098\u00a8\u0006\"\u000542223\u0012\u0011\b<\u0012\u0006\u0010\u0094\u0087\u0098\u00a8\u0006\"\u000542224\u0012\u0011\b=\u0012\u0006\u0010\u009b\u0088\u0098\u00a8\u0006\"\u000542225\u0012\u0011\b>\u0012\u0006\u0010\u0093\u0089\u0098\u00a8\u0006\"\u000542226\u0012\u0011\b?\u0012\u0006\u0010\u00f8\u0089\u0098\u00a8\u0006\"\u000542227\u0012\u0011\b@\u0012\u0006\u0010\u009d\u008b\u0098\u00a8\u0006\"\u000542228\u0012\u0011\bA\u0012\u0006\u0010\u00f2\u008b\u0098\u00a8\u0006\"\u000542229\u0012\u0011\bB\u0012\u0006\u0010\u009b\u008d\u0098\u00a8\u0006\"\u000542230\u0012\u0011\bC\u0012\u0006\u0010\u00f6\u008d\u0098\u00a8\u0006\"\u000542231\u0012\u0011\bD\u0012\u0006\u0010\u00ac\u008f\u0098\u00a8\u0006\"\u000542232\u0012\u0011\bE\u0012\u0006\u0010\u00e1\u0091\u0098\u00a8\u0006\"\u000542234\u0012\u0011\bF\u0012\u0006\u0010\u0095\u0093\u0098\u00a8\u0006\"\u000542235\u0012\u0011\bG\u0012\u0006\u0010\u00e5\u0093\u0098\u00a8\u0006\"\u000542211\u0012\u0011\bH\u0012\u0006\u0010\u00f6\u0094\u0098\u00a8\u0006\"\u000549203\u0012\u0011\bI\u0012\u0006\u0010\u008f\u0096\u0098\u00a8\u0006\"\u000549204\u0012\u0011\bJ\u0012\u0006\u0010\u00ab\u0096\u0098\u00a8\u0006\"\u000542503\u0012\u0011\bK\u0012\u0006\u0010\u00d0\u0096\u0098\u00a8\u0006\"\u000549264\u001a\b\u001a\u0006FDCB32 \u00b3\u00e7\u0097\u00a8\u0006\"`\n/\n\u001016892-701ff27f-2\u0012\b14:47:00\u001a\b20230916 \u0000*\u00035600\u0001\u0012\u001d\rz \u0013\u00c2\u0015''\u0092\u00c2\u001d\u0000\u0000\u001bC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b3\u00e7\u0097\u00a8\u0006B\b\u001a\u0006FDCB32" + }, + { + "type": "con_recorrido", + "entity": "\n$d0ae1b85-c93a-4213-bf59-5f0f14b21eeb\u001a\u008f\t\n/\n\u001016890-701ff27f-2\u0012\b14:17:00\u001a\b20230916 \u0000*\u00035600\u0001\u0012\u0011\b\u0012\u0012\u0006\u0010\u00cf\u00e9\u0097\u00a8\u0006\"\u000540995\u0012\u0011\b\u0013\u0012\u0006\u0010\u00a2\u00ea\u0097\u00a8\u0006\"\u000540996\u0012\u0011\b\u0014\u0012\u0006\u0010\u00f0\u00ea\u0097\u00a8\u0006\"\u000540997\u0012\u0011\b\u0015\u0012\u0006\u0010\u00a7\u00eb\u0097\u00a8\u0006\"\u000539614\u0012\u0011\b\u0016\u0012\u0006\u0010\u00d9\u00eb\u0097\u00a8\u0006\"\u000539615\u0012\u0011\b\u0017\u0012\u0006\u0010\u008c\u00ec\u0097\u00a8\u0006\"\u000539616\u0012\u0011\b\u0018\u0012\u0006\u0010\u00c0\u00ec\u0097\u00a8\u0006\"\u000539617\u0012\u0011\b\u0019\u0012\u0006\u0010\u00fa\u00ec\u0097\u00a8\u0006\"\u000539618\u0012\u0011\b\u001a\u0012\u0006\u0010\u00a7\u00ed\u0097\u00a8\u0006\"\u000539619\u0012\u0011\b\u001b\u0012\u0006\u0010\u00d1\u00ed\u0097\u00a8\u0006\"\u000539620\u0012\u0011\b\u001c\u0012\u0006\u0010\u0091\u00ee\u0097\u00a8\u0006\"\u000539621\u0012\u0011\b\u001d\u0012\u0006\u0010\u00c0\u00ee\u0097\u00a8\u0006\"\u000538281\u0012\u0011\b\u001e\u0012\u0006\u0010\u00f6\u00ee\u0097\u00a8\u0006\"\u000537506\u0012\u0011\b\u001f\u0012\u0006\u0010\u009d\u00ef\u0097\u00a8\u0006\"\u000545068\u0012\u0011\b \u0012\u0006\u0010\u0097\u00f0\u0097\u00a8\u0006\"\u000537480\u0012\u0011\b!\u0012\u0006\u0010\u00d3\u00f0\u0097\u00a8\u0006\"\u000537477\u0012\u0011\b\"\u0012\u0006\u0010\u0095\u00f1\u0097\u00a8\u0006\"\u000540848\u0012\u0011\b#\u0012\u0006\u0010\u00e6\u00f1\u0097\u00a8\u0006\"\u00052-Apr\u0012\u0011\b$\u0012\u0006\u0010\u009f\u00f2\u0097\u00a8\u0006\"\u000539728\u0012\u0011\b%\u0012\u0006\u0010\u00f8\u00f2\u0097\u00a8\u0006\"\u000539729\u0012\u0011\b&\u0012\u0006\u0010\u0097\u00f3\u0097\u00a8\u0006\"\u000539730\u0012\u0011\b'\u0012\u0006\u0010\u00fd\u00f3\u0097\u00a8\u0006\"\u000542200\u0012\u0011\b(\u0012\u0006\u0010\u00aa\u00f4\u0097\u00a8\u0006\"\u000542203\u0012\u0011\b)\u0012\u0006\u0010\u00e1\u00f4\u0097\u00a8\u0006\"\u000542204\u0012\u0011\b*\u0012\u0006\u0010\u008c\u00f5\u0097\u00a8\u0006\"\u000542205\u0012\u0011\b+\u0012\u0006\u0010\u00c9\u00f5\u0097\u00a8\u0006\"\u000542201\u0012\u0011\b,\u0012\u0006\u0010\u00c8\u00f7\u0097\u00a8\u0006\"\u000542206\u0012\u0011\b-\u0012\u0006\u0010\u008b\u00f8\u0097\u00a8\u0006\"\u000542207\u0012\u0011\b.\u0012\u0006\u0010\u00cc\u00f8\u0097\u00a8\u0006\"\u000542208\u0012\u0011\b/\u0012\u0006\u0010\u00dc\u00f9\u0097\u00a8\u0006\"\u000542564\u0012\u0011\b0\u0012\u0006\u0010\u00d1\u00fa\u0097\u00a8\u0006\"\u000542214\u0012\u0011\b1\u0012\u0006\u0010\u00cb\u00fb\u0097\u00a8\u0006\"\u000542209\u0012\u0011\b2\u0012\u0006\u0010\u00d8\u00fc\u0097\u00a8\u0006\"\u000542210\u0012\u0011\b3\u0012\u0006\u0010\u00c1\u00fe\u0097\u00a8\u0006\"\u000542215\u0012\u0011\b4\u0012\u0006\u0010\u00e9\u00fe\u0097\u00a8\u0006\"\u000542216\u0012\u0011\b5\u0012\u0006\u0010\u009f\u00ff\u0097\u00a8\u0006\"\u000542217\u0012\u0011\b6\u0012\u0006\u0010\u0083\u0080\u0098\u00a8\u0006\"\u000542218\u0012\u0011\b7\u0012\u0006\u0010\u00b3\u0080\u0098\u00a8\u0006\"\u000542219\u0012\u0011\b8\u0012\u0006\u0010\u00cb\u0081\u0098\u00a8\u0006\"\u000542220\u0012\u0011\b9\u0012\u0006\u0010\u008b\u0082\u0098\u00a8\u0006\"\u000542221\u0012\u0011\b:\u0012\u0006\u0010\u00ed\u0082\u0098\u00a8\u0006\"\u000542222\u0012\u0011\b;\u0012\u0006\u0010\u00d4\u0083\u0098\u00a8\u0006\"\u000542223\u0012\u0011\b<\u0012\u0006\u0010\u0080\u0084\u0098\u00a8\u0006\"\u000542224\u0012\u0011\b=\u0012\u0006\u0010\u00f7\u0084\u0098\u00a8\u0006\"\u000542225\u0012\u0011\b>\u0012\u0006\u0010\u00e0\u0085\u0098\u00a8\u0006\"\u000542226\u0012\u0011\b?\u0012\u0006\u0010\u00b8\u0086\u0098\u00a8\u0006\"\u000542227\u0012\u0011\b@\u0012\u0006\u0010\u00c7\u0087\u0098\u00a8\u0006\"\u000542228\u0012\u0011\bA\u0012\u0006\u0010\u0091\u0088\u0098\u00a8\u0006\"\u000542229\u0012\u0011\bB\u0012\u0006\u0010\u00a3\u0089\u0098\u00a8\u0006\"\u000542230\u0012\u0011\bC\u0012\u0006\u0010\u00f1\u0089\u0098\u00a8\u0006\"\u000542231\u0012\u0011\bD\u0012\u0006\u0010\u008c\u008b\u0098\u00a8\u0006\"\u000542232\u0012\u0011\bE\u0012\u0006\u0010\u0093\u008d\u0098\u00a8\u0006\"\u000542234\u0012\u0011\bF\u0012\u0006\u0010\u00aa\u008e\u0098\u00a8\u0006\"\u000542235\u0012\u0011\bG\u0012\u0006\u0010\u00ee\u008e\u0098\u00a8\u0006\"\u000542211\u0012\u0011\bH\u0012\u0006\u0010\u00e8\u008f\u0098\u00a8\u0006\"\u000549203\u0012\u0011\bI\u0012\u0006\u0010\u00e7\u0090\u0098\u00a8\u0006\"\u000549204\u0012\u0011\bJ\u0012\u0006\u0010\u00fe\u0090\u0098\u00a8\u0006\"\u000542503\u0012\u0011\bK\u0012\u0006\u0010\u009d\u0091\u0098\u00a8\u0006\"\u000549264\u001a\b\u001a\u0006FSYW10 \u00f3\u00e7\u0097\u00a8\u0006\"`\n/\n\u001016890-701ff27f-2\u0012\b14:17:00\u001a\b20230916 \u0000*\u00035600\u0001\u0012\u001d\ro,\u0013\u00c2\u0015\u0085#\u0092\u00c2\u001d\u0000\u0000\u0011C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u009a\u0099\u00b5A(\u00f3\u00e7\u0097\u00a8\u0006B\b\u001a\u0006FSYW10" + }, + { + "type": "con_recorrido", + "entity": "\n$e5031ff9-0a55-4df2-8351-1382c61bbf49\u001a\u008a\n\n/\n\u001016816-701ff27f-2\u0012\b14:35:00\u001a\b20230916 \u0000*\u00035600\u0000\u0012\u0011\b\u0019\u0012\u0006\u0010\u00ce\u00e7\u0097\u00a8\u0006\"\u000542296\u0012\u0011\b\u001a\u0012\u0006\u0010\u00d3\u00e8\u0097\u00a8\u0006\"\u000542297\u0012\u0011\b\u001b\u0012\u0006\u0010\u00b7\u00e9\u0097\u00a8\u0006\"\u000542298\u0012\u0011\b\u001c\u0012\u0006\u0010\u00f9\u00e9\u0097\u00a8\u0006\"\u000542299\u0012\u0011\b\u001d\u0012\u0006\u0010\u00a4\u00ea\u0097\u00a8\u0006\"\u000549295\u0012\u0011\b\u001e\u0012\u0006\u0010\u009d\u00eb\u0097\u00a8\u0006\"\u000549296\u0012\u0011\b\u001f\u0012\u0006\u0010\u00f6\u00eb\u0097\u00a8\u0006\"\u000549297\u0012\u0011\b \u0012\u0006\u0010\u0096\u00ec\u0097\u00a8\u0006\"\u000549298\u0012\u0011\b!\u0012\u0006\u0010\u00d2\u00ec\u0097\u00a8\u0006\"\u000549299\u0012\u0011\b\"\u0012\u0006\u0010\u0085\u00ed\u0097\u00a8\u0006\"\u000549300\u0012\u0011\b#\u0012\u0006\u0010\u00d6\u00ed\u0097\u00a8\u0006\"\u000549301\u0012\u0011\b$\u0012\u0006\u0010\u0098\u00ee\u0097\u00a8\u0006\"\u000549302\u0012\u0011\b%\u0012\u0006\u0010\u00c4\u00ee\u0097\u00a8\u0006\"\u000549303\u0012\u0011\b&\u0012\u0006\u0010\u00f6\u00ee\u0097\u00a8\u0006\"\u000549304\u0012\u0011\b'\u0012\u0006\u0010\u0091\u00ef\u0097\u00a8\u0006\"\u000549305\u0012\u0011\b(\u0012\u0006\u0010\u00c8\u00ef\u0097\u00a8\u0006\"\u000549306\u0012\u0011\b)\u0012\u0006\u0010\u00ef\u00ef\u0097\u00a8\u0006\"\u000549307\u0012\u0011\b*\u0012\u0006\u0010\u0086\u00f0\u0097\u00a8\u0006\"\u000549308\u0012\u0011\b+\u0012\u0006\u0010\u009e\u00f0\u0097\u00a8\u0006\"\u000549309\u0012\u0011\b,\u0012\u0006\u0010\u00b9\u00f0\u0097\u00a8\u0006\"\u000542315\u0012\u0011\b-\u0012\u0006\u0010\u00cf\u00f0\u0097\u00a8\u0006\"\u000542316\u0012\u0011\b.\u0012\u0006\u0010\u0081\u00f1\u0097\u00a8\u0006\"\u000542317\u0012\u0011\b/\u0012\u0006\u0010\u00b4\u00f1\u0097\u00a8\u0006\"\u000542318\u0012\u0013\b0\u0012\u0006\u0010\u00f4\u00f1\u0097\u00a8\u0006\"\u00078606396\u0012\u0011\b1\u0012\u0006\u0010\u00c1\u00f2\u0097\u00a8\u0006\"\u000538514\u0012\u0011\b2\u0012\u0006\u0010\u00e7\u00f2\u0097\u00a8\u0006\"\u000538516\u0012\u0011\b3\u0012\u0006\u0010\u00a2\u00f3\u0097\u00a8\u0006\"\u000538518\u0012\u0011\b4\u0012\u0006\u0010\u0083\u00f4\u0097\u00a8\u0006\"\u000538520\u0012\u0011\b5\u0012\u0006\u0010\u00b0\u00f4\u0097\u00a8\u0006\"\u000538521\u0012\u0011\b6\u0012\u0006\u0010\u00e2\u00f4\u0097\u00a8\u0006\"\u000538522\u0012\u0011\b7\u0012\u0006\u0010\u0095\u00f5\u0097\u00a8\u0006\"\u000538523\u0012\u0011\b8\u0012\u0006\u0010\u00ca\u00f5\u0097\u00a8\u0006\"\u000538524\u0012\u0011\b9\u0012\u0006\u0010\u00fd\u00f5\u0097\u00a8\u0006\"\u000538525\u0012\u0011\b:\u0012\u0006\u0010\u00b3\u00f6\u0097\u00a8\u0006\"\u000538526\u0012\u0011\b;\u0012\u0006\u0010\u00e6\u00f6\u0097\u00a8\u0006\"\u000538527\u0012\u0011\b<\u0012\u0006\u0010\u00c3\u00f7\u0097\u00a8\u0006\"\u000538528\u0012\u0011\b=\u0012\u0006\u0010\u00c0\u00f8\u0097\u00a8\u0006\"\u000538529\u0012\u0011\b>\u0012\u0006\u0010\u00ad\u00fa\u0097\u00a8\u0006\"\u000538530\u0012\u0014\b?\u0012\u0006\u0010\u00bc\u00fa\u0097\u00a8\u0006\"\b16005209\u0012\u0011\b@\u0012\u0006\u0010\u00d6\u00fc\u0097\u00a8\u0006\"\u000538531\u0012\u0013\bA\u0012\u0006\u0010\u009a\u00fd\u0097\u00a8\u0006\"\u00078921285\u0012\u0011\bB\u0012\u0006\u0010\u00a9\u00fe\u0097\u00a8\u0006\"\u000538532\u0012\u0011\bC\u0012\u0006\u0010\u00ee\u00fe\u0097\u00a8\u0006\"\u000538533\u0012\u0011\bD\u0012\u0006\u0010\u00b6\u00ff\u0097\u00a8\u0006\"\u000538534\u0012\u0011\bE\u0012\u0006\u0010\u00f8\u00ff\u0097\u00a8\u0006\"\u000538535\u0012\u0011\bF\u0012\u0006\u0010\u00d2\u0080\u0098\u00a8\u0006\"\u000538536\u0012\u0013\bG\u0012\u0006\u0010\u0085\u0081\u0098\u00a8\u0006\"\u00074838437\u0012\u0011\bH\u0012\u0006\u0010\u00d3\u0081\u0098\u00a8\u0006\"\u000545085\u0012\u0011\bI\u0012\u0006\u0010\u00c7\u0082\u0098\u00a8\u0006\"\u000545086\u0012\u0011\bJ\u0012\u0006\u0010\u00fe\u0083\u0098\u00a8\u0006\"\u000538540\u0012\u0011\bK\u0012\u0006\u0010\u00f3\u0084\u0098\u00a8\u0006\"\u000538544\u0012\u0011\bL\u0012\u0006\u0010\u00ff\u0086\u0098\u00a8\u0006\"\u000538546\u0012\u0011\bM\u0012\u0006\u0010\u00d7\u0088\u0098\u00a8\u0006\"\u000538548\u0012\u0011\bN\u0012\u0006\u0010\u00d3\u0089\u0098\u00a8\u0006\"\u000538549\u0012\u0011\bO\u0012\u0006\u0010\u00be\u008a\u0098\u00a8\u0006\"\u000538550\u0012\u0011\bP\u0012\u0006\u0010\u00ff\u008b\u0098\u00a8\u0006\"\u000538551\u0012\u0011\bQ\u0012\u0006\u0010\u00b2\u008d\u0098\u00a8\u0006\"\u000538552\u0012\u0011\bR\u0012\u0006\u0010\u00e8\u008e\u0098\u00a8\u0006\"\u000549359\u0012\u0011\bS\u0012\u0006\u0010\u00d4\u008f\u0098\u00a8\u0006\"\u000549360\u0012\u0011\bT\u0012\u0006\u0010\u00e6\u0091\u0098\u00a8\u0006\"\u000549361\u0012\u0011\bU\u0012\u0006\u0010\u00aa\u0092\u0098\u00a8\u0006\"\u000549362\u0012\u0011\bV\u0012\u0006\u0010\u00a3\u0093\u0098\u00a8\u0006\"\u000549363\u0012\u0011\bW\u0012\u0006\u0010\u00a4\u0094\u0098\u00a8\u0006\"\u000549364\u0012\u0011\bX\u0012\u0006\u0010\u009b\u0095\u0098\u00a8\u0006\"\u000549365\u001a\b\u001a\u0006FYBD36 \u00c3\u00e7\u0097\u00a8\u0006\"`\n/\n\u001016816-701ff27f-2\u0012\b14:35:00\u001a\b20230916 \u0000*\u00035600\u0000\u0012\u001d\rI\u0085\u0013\u00c2\u0015j\u0013\u0092\u00c2\u001d\u0000\u0000\u00b2C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u00a0A(\u00c3\u00e7\u0097\u00a8\u0006B\b\u001a\u0006FYBD36" + }, + { + "type": "con_recorrido", + "entity": "\n$174c719a-c537-4701-870f-34da21e74333\u001a\u00c1\u000b\n/\n\u001016893-701ff27f-2\u0012\b15:02:00\u001a\b20230916 \u0000*\u00035600\u0001\u0012\u0011\b\u0002\u0012\u0006\u0010\u00ff\u00e9\u0097\u00a8\u0006\"\u000549357\u0012\u0011\b\u0003\u0012\u0006\u0010\u00a8\u00ea\u0097\u00a8\u0006\"\u000538771\u0012\u0011\b\u0004\u0012\u0006\u0010\u00d4\u00ea\u0097\u00a8\u0006\"\u000538668\u0012\u0011\b\u0005\u0012\u0006\u0010\u00c7\u00ed\u0097\u00a8\u0006\"\u000538721\u0012\u0011\b\u0006\u0012\u0006\u0010\u00fe\u00ed\u0097\u00a8\u0006\"\u000538659\u0012\u0011\b\u0007\u0012\u0006\u0010\u00d0\u00ee\u0097\u00a8\u0006\"\u000538674\u0012\u0011\b\b\u0012\u0006\u0010\u008e\u00ef\u0097\u00a8\u0006\"\u000538649\u0012\u0011\b\t\u0012\u0006\u0010\u00db\u00ef\u0097\u00a8\u0006\"\u000538718\u0012\u0011\b\n\u0012\u0006\u0010\u0094\u00f0\u0097\u00a8\u0006\"\u000538735\u0012\u0011\b\u000b\u0012\u0006\u0010\u00c9\u00f0\u0097\u00a8\u0006\"\u000542270\u0012\u0011\b\f\u0012\u0006\u0010\u00fd\u00f0\u0097\u00a8\u0006\"\u000542271\u0012\u0013\b\r\u0012\u0006\u0010\u00bc\u00f1\u0097\u00a8\u0006\"\u00074838438\u0012\u0011\b\u000e\u0012\u0006\u0010\u00cd\u00f2\u0097\u00a8\u0006\"\u000544896\u0012\u0011\b\u000f\u0012\u0006\u0010\u00fc\u00f2\u0097\u00a8\u0006\"\u000544897\u0012\u0011\b\u0010\u0012\u0006\u0010\u00c5\u00f3\u0097\u00a8\u0006\"\u000544898\u0012\u0011\b\u0011\u0012\u0006\u0010\u00f0\u00f4\u0097\u00a8\u0006\"\u000540993\u0012\u0011\b\u0012\u0012\u0006\u0010\u00f8\u00f8\u0097\u00a8\u0006\"\u000540995\u0012\u0011\b\u0013\u0012\u0006\u0010\u00d2\u00f9\u0097\u00a8\u0006\"\u000540996\u0012\u0011\b\u0014\u0012\u0006\u0010\u00aa\u00fa\u0097\u00a8\u0006\"\u000540997\u0012\u0011\b\u0015\u0012\u0006\u0010\u00e9\u00fa\u0097\u00a8\u0006\"\u000539614\u0012\u0011\b\u0016\u0012\u0006\u0010\u00a4\u00fb\u0097\u00a8\u0006\"\u000539615\u0012\u0011\b\u0017\u0012\u0006\u0010\u00e0\u00fb\u0097\u00a8\u0006\"\u000539616\u0012\u0011\b\u0018\u0012\u0006\u0010\u00a0\u00fc\u0097\u00a8\u0006\"\u000539617\u0012\u0011\b\u0019\u0012\u0006\u0010\u00e7\u00fc\u0097\u00a8\u0006\"\u000539618\u0012\u0011\b\u001a\u0012\u0006\u0010\u00a0\u00fd\u0097\u00a8\u0006\"\u000539619\u0012\u0011\b\u001b\u0012\u0006\u0010\u00d6\u00fd\u0097\u00a8\u0006\"\u000539620\u0012\u0011\b\u001c\u0012\u0006\u0010\u00ab\u00fe\u0097\u00a8\u0006\"\u000539621\u0012\u0011\b\u001d\u0012\u0006\u0010\u00ea\u00fe\u0097\u00a8\u0006\"\u000538281\u0012\u0011\b\u001e\u0012\u0006\u0010\u00b3\u00ff\u0097\u00a8\u0006\"\u000537506\u0012\u0011\b\u001f\u0012\u0006\u0010\u00ea\u00ff\u0097\u00a8\u0006\"\u000545068\u0012\u0011\b \u0012\u0006\u0010\u0098\u0081\u0098\u00a8\u0006\"\u000537480\u0012\u0011\b!\u0012\u0006\u0010\u00f0\u0081\u0098\u00a8\u0006\"\u000537477\u0012\u0011\b\"\u0012\u0006\u0010\u00d4\u0082\u0098\u00a8\u0006\"\u000540848\u0012\u0011\b#\u0012\u0006\u0010\u00d4\u0083\u0098\u00a8\u0006\"\u00052-Apr\u0012\u0011\b$\u0012\u0006\u0010\u00ad\u0084\u0098\u00a8\u0006\"\u000539728\u0012\u0011\b%\u0012\u0006\u0010\u00c0\u0085\u0098\u00a8\u0006\"\u000539729\u0012\u0011\b&\u0012\u0006\u0010\u00f4\u0085\u0098\u00a8\u0006\"\u000539730\u0012\u0011\b'\u0012\u0006\u0010\u00a4\u0087\u0098\u00a8\u0006\"\u000542200\u0012\u0011\b(\u0012\u0006\u0010\u00f4\u0087\u0098\u00a8\u0006\"\u000542203\u0012\u0011\b)\u0012\u0006\u0010\u00d7\u0088\u0098\u00a8\u0006\"\u000542204\u0012\u0011\b*\u0012\u0006\u0010\u00a4\u0089\u0098\u00a8\u0006\"\u000542205\u0012\u0011\b+\u0012\u0006\u0010\u0098\u008a\u0098\u00a8\u0006\"\u000542201\u0012\u0011\b,\u0012\u0006\u0010\u0091\u008e\u0098\u00a8\u0006\"\u000542206\u0012\u0011\b-\u0012\u0006\u0010\u009e\u008f\u0098\u00a8\u0006\"\u000542207\u0012\u0011\b.\u0012\u0006\u0010\u00aa\u0090\u0098\u00a8\u0006\"\u000542208\u0012\u0011\b/\u0012\u0006\u0010\u00eb\u0092\u0098\u00a8\u0006\"\u000542564\u0012\u0011\b0\u0012\u0006\u0010\u00fe\u0094\u0098\u00a8\u0006\"\u000542214\u0012\u0011\b1\u0012\u0006\u0010\u00a9\u0097\u0098\u00a8\u0006\"\u000542209\u0012\u0011\b2\u0012\u0006\u0010\u0095\u009a\u0098\u00a8\u0006\"\u000542210\u0012\u0011\b3\u0012\u0006\u0010\u0098\u009f\u0098\u00a8\u0006\"\u000542215\u0012\u0011\b4\u0012\u0006\u0010\u008c\u00a0\u0098\u00a8\u0006\"\u000542216\u0012\u0011\b5\u0012\u0006\u0010\u00ac\u00a1\u0098\u00a8\u0006\"\u000542217\u0012\u0011\b6\u0012\u0006\u0010\u00de\u00a3\u0098\u00a8\u0006\"\u000542218\u0012\u0011\b7\u0012\u0006\u0010\u00f4\u00a4\u0098\u00a8\u0006\"\u000542219\u0012\u0011\b8\u0012\u0006\u0010\u00e5\u00a8\u0098\u00a8\u0006\"\u000542220\u0012\u0011\b9\u0012\u0006\u0010\u00bf\u00aa\u0098\u00a8\u0006\"\u000542221\u0012\u0011\b:\u0012\u0006\u0010\u009a\u00ad\u0098\u00a8\u0006\"\u000542222\u0012\u0011\b;\u0012\u0006\u0010\u0093\u00b0\u0098\u00a8\u0006\"\u000542223\u0012\u0011\b<\u0012\u0006\u0010\u00b6\u00b1\u0098\u00a8\u0006\"\u000542224\u0012\u0011\b=\u0012\u0006\u0010\u008a\u00b5\u0098\u00a8\u0006\"\u000542225\u0012\u0011\b>\u0012\u0006\u0010\u00b7\u00b8\u0098\u00a8\u0006\"\u000542226\u0012\u0011\b?\u0012\u0006\u0010\u00af\u00bb\u0098\u00a8\u0006\"\u000542227\u0012\u0011\b@\u0012\u0006\u0010\u00b4\u00c0\u0098\u00a8\u0006\"\u000542228\u0012\u0011\bA\u0012\u0006\u0010\u0090\u00c3\u0098\u00a8\u0006\"\u000542229\u0012\u0011\bB\u0012\u0006\u0010\u00e2\u00c8\u0098\u00a8\u0006\"\u000542230\u0012\u0011\bC\u0012\u0006\u0010\u00fc\u00cb\u0098\u00a8\u0006\"\u000542231\u0012\u0011\bD\u0012\u0006\u0010\u00d7\u00d2\u0098\u00a8\u0006\"\u000542232\u0012\u0011\bE\u0012\u0006\u0010\u00a1\u00df\u0098\u00a8\u0006\"\u000542234\u0012\u0011\bF\u0012\u0006\u0010\u00a9\u00e7\u0098\u00a8\u0006\"\u000542235\u0012\u0011\bG\u0012\u0006\u0010\u0092\u00eb\u0098\u00a8\u0006\"\u000542211\u0012\u0011\bH\u0012\u0006\u0010\u00b1\u00f2\u0098\u00a8\u0006\"\u000549203\u0012\u0011\bI\u0012\u0006\u0010\u00bf\u00fa\u0098\u00a8\u0006\"\u000549204\u0012\u0011\bJ\u0012\u0006\u0010\u0086\u00fc\u0098\u00a8\u0006\"\u000542503\u0012\u0011\bK\u0012\u0006\u0010\u0090\u00fe\u0098\u00a8\u0006\"\u000549264\u001a\b\u001a\u0006FYDV10 \u00d6\u00e7\u0097\u00a8\u0006\"`\n/\n\u001016893-701ff27f-2\u0012\b15:02:00\u001a\b20230916 \u0000*\u00035600\u0001\u0012\u001d\r\u0013\u00da\u0012\u00c2\u0015W:\u0092\u00c2\u001d\u0000\u0000\u0004C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00d6\u00e7\u0097\u00a8\u0006B\b\u001a\u0006FYDV10" + }, + { + "type": "con_recorrido", + "entity": "\n$6e4bf60d-1fe4-4908-87aa-6a9c511d2f3c\u001a\u00a0\u0004\n/\n\u001016819-701ff27f-2\u0012\b15:20:00\u001a\b20230916 \u0000*\u00035600\u0000\u0012\u0011\b@\u0012\u0006\u0010\u008d\u00e8\u0097\u00a8\u0006\"\u000538531\u0012\u0013\bA\u0012\u0006\u0010\u00c7\u00e8\u0097\u00a8\u0006\"\u00078921285\u0012\u0011\bB\u0012\u0006\u0010\u00bd\u00e9\u0097\u00a8\u0006\"\u000538532\u0012\u0011\bC\u0012\u0006\u0010\u00f3\u00e9\u0097\u00a8\u0006\"\u000538533\u0012\u0011\bD\u0012\u0006\u0010\u00ab\u00ea\u0097\u00a8\u0006\"\u000538534\u0012\u0011\bE\u0012\u0006\u0010\u00dc\u00ea\u0097\u00a8\u0006\"\u000538535\u0012\u0011\bF\u0012\u0006\u0010\u009e\u00eb\u0097\u00a8\u0006\"\u000538536\u0012\u0013\bG\u0012\u0006\u0010\u00c2\u00eb\u0097\u00a8\u0006\"\u00074838437\u0012\u0011\bH\u0012\u0006\u0010\u00f8\u00eb\u0097\u00a8\u0006\"\u000545085\u0012\u0011\bI\u0012\u0006\u0010\u00c7\u00ec\u0097\u00a8\u0006\"\u000545086\u0012\u0011\bJ\u0012\u0006\u0010\u00bc\u00ed\u0097\u00a8\u0006\"\u000538540\u0012\u0011\bK\u0012\u0006\u0010\u0084\u00ee\u0097\u00a8\u0006\"\u000538544\u0012\u0011\bL\u0012\u0006\u0010\u009f\u00ef\u0097\u00a8\u0006\"\u000538546\u0012\u0011\bM\u0012\u0006\u0010\u0094\u00f0\u0097\u00a8\u0006\"\u000538548\u0012\u0011\bN\u0012\u0006\u0010\u00d4\u00f0\u0097\u00a8\u0006\"\u000538549\u0012\u0011\bO\u0012\u0006\u0010\u008a\u00f1\u0097\u00a8\u0006\"\u000538550\u0012\u0011\bP\u0012\u0006\u0010\u00e7\u00f1\u0097\u00a8\u0006\"\u000538551\u0012\u0011\bQ\u0012\u0006\u0010\u00ba\u00f2\u0097\u00a8\u0006\"\u000538552\u0012\u0011\bR\u0012\u0006\u0010\u008a\u00f3\u0097\u00a8\u0006\"\u000549359\u0012\u0011\bS\u0012\u0006\u0010\u00b9\u00f3\u0097\u00a8\u0006\"\u000549360\u0012\u0011\bT\u0012\u0006\u0010\u00aa\u00f4\u0097\u00a8\u0006\"\u000549361\u0012\u0011\bU\u0012\u0006\u0010\u00c5\u00f4\u0097\u00a8\u0006\"\u000549362\u0012\u0011\bV\u0012\u0006\u0010\u00f4\u00f4\u0097\u00a8\u0006\"\u000549363\u0012\u0011\bW\u0012\u0006\u0010\u00a5\u00f5\u0097\u00a8\u0006\"\u000549364\u0012\u0011\bX\u0012\u0006\u0010\u00d1\u00f5\u0097\u00a8\u0006\"\u000549365\u001a\b\u001a\u0006HYCZ31 \u00fd\u00e7\u0097\u00a8\u0006\"`\n/\n\u001016819-701ff27f-2\u0012\b15:20:00\u001a\b20230916 \u0000*\u00035600\u0000\u0012\u001d\r\u00cf \u0013\u00c2\u0015\u00f2&\u0092\u00c2\u001d\u0000\u0000\u00a7C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-33\u0019B(\u00fd\u00e7\u0097\u00a8\u0006B\b\u001a\u0006HYCZ31" + }, + { + "type": "con_recorrido", + "entity": "\n$6899bd37-d5e1-4b9b-951d-1850842ca8c0\u001a\u0088\u000b\n/\n\u001016886-701ff27f-2\u0012\b13:17:00\u001a\b20230916 \u0000*\u00035600\u0001\u0012\u0011\b\u0005\u0012\u0006\u0010\u0090\u00ea\u0097\u00a8\u0006\"\u000538721\u0012\u0011\b\u0006\u0012\u0006\u0010\u00c9\u00ea\u0097\u00a8\u0006\"\u000538659\u0012\u0011\b\u0007\u0012\u0006\u0010\u009e\u00eb\u0097\u00a8\u0006\"\u000538674\u0012\u0011\b\b\u0012\u0006\u0010\u00de\u00eb\u0097\u00a8\u0006\"\u000538649\u0012\u0011\b\t\u0012\u0006\u0010\u00ad\u00ec\u0097\u00a8\u0006\"\u000538718\u0012\u0011\b\n\u0012\u0006\u0010\u00e6\u00ec\u0097\u00a8\u0006\"\u000538735\u0012\u0011\b\u000b\u0012\u0006\u0010\u009c\u00ed\u0097\u00a8\u0006\"\u000542270\u0012\u0011\b\f\u0012\u0006\u0010\u00d1\u00ed\u0097\u00a8\u0006\"\u000542271\u0012\u0013\b\r\u0012\u0006\u0010\u008f\u00ee\u0097\u00a8\u0006\"\u00074838438\u0012\u0011\b\u000e\u0012\u0006\u0010\u009f\u00ef\u0097\u00a8\u0006\"\u000544896\u0012\u0011\b\u000f\u0012\u0006\u0010\u00ce\u00ef\u0097\u00a8\u0006\"\u000544897\u0012\u0011\b\u0010\u0012\u0006\u0010\u0095\u00f0\u0097\u00a8\u0006\"\u000544898\u0012\u0011\b\u0011\u0012\u0006\u0010\u00bb\u00f1\u0097\u00a8\u0006\"\u000540993\u0012\u0011\b\u0012\u0012\u0006\u0010\u00a4\u00f5\u0097\u00a8\u0006\"\u000540995\u0012\u0011\b\u0013\u0012\u0006\u0010\u00f7\u00f5\u0097\u00a8\u0006\"\u000540996\u0012\u0011\b\u0014\u0012\u0006\u0010\u00c7\u00f6\u0097\u00a8\u0006\"\u000540997\u0012\u0011\b\u0015\u0012\u0006\u0010\u0081\u00f7\u0097\u00a8\u0006\"\u000539614\u0012\u0011\b\u0016\u0012\u0006\u0010\u00b6\u00f7\u0097\u00a8\u0006\"\u000539615\u0012\u0011\b\u0017\u0012\u0006\u0010\u00ed\u00f7\u0097\u00a8\u0006\"\u000539616\u0012\u0011\b\u0018\u0012\u0006\u0010\u00a5\u00f8\u0097\u00a8\u0006\"\u000539617\u0012\u0011\b\u0019\u0012\u0006\u0010\u00e6\u00f8\u0097\u00a8\u0006\"\u000539618\u0012\u0011\b\u001a\u0012\u0006\u0010\u0098\u00f9\u0097\u00a8\u0006\"\u000539619\u0012\u0011\b\u001b\u0012\u0006\u0010\u00c8\u00f9\u0097\u00a8\u0006\"\u000539620\u0012\u0011\b\u001c\u0012\u0006\u0010\u0093\u00fa\u0097\u00a8\u0006\"\u000539621\u0012\u0011\b\u001d\u0012\u0006\u0010\u00cb\u00fa\u0097\u00a8\u0006\"\u000538281\u0012\u0011\b\u001e\u0012\u0006\u0010\u008b\u00fb\u0097\u00a8\u0006\"\u000537506\u0012\u0011\b\u001f\u0012\u0006\u0010\u00bb\u00fb\u0097\u00a8\u0006\"\u000545068\u0012\u0011\b \u0012\u0006\u0010\u00d1\u00fc\u0097\u00a8\u0006\"\u000537480\u0012\u0011\b!\u0012\u0006\u0010\u009e\u00fd\u0097\u00a8\u0006\"\u000537477\u0012\u0011\b\"\u0012\u0006\u0010\u00f3\u00fd\u0097\u00a8\u0006\"\u000540848\u0012\u0011\b#\u0012\u0006\u0010\u00e0\u00fe\u0097\u00a8\u0006\"\u00052-Apr\u0012\u0011\b$\u0012\u0006\u0010\u00ab\u00ff\u0097\u00a8\u0006\"\u000539728\u0012\u0011\b%\u0012\u0006\u0010\u00a7\u0080\u0098\u00a8\u0006\"\u000539729\u0012\u0011\b&\u0012\u0006\u0010\u00d2\u0080\u0098\u00a8\u0006\"\u000539730\u0012\u0011\b'\u0012\u0006\u0010\u00e4\u0081\u0098\u00a8\u0006\"\u000542200\u0012\u0011\b(\u0012\u0006\u0010\u00a6\u0082\u0098\u00a8\u0006\"\u000542203\u0012\u0011\b)\u0012\u0006\u0010\u00f7\u0082\u0098\u00a8\u0006\"\u000542204\u0012\u0011\b*\u0012\u0006\u0010\u00b7\u0083\u0098\u00a8\u0006\"\u000542205\u0012\u0011\b+\u0012\u0006\u0010\u0095\u0084\u0098\u00a8\u0006\"\u000542201\u0012\u0011\b,\u0012\u0006\u0010\u00ab\u0087\u0098\u00a8\u0006\"\u000542206\u0012\u0011\b-\u0012\u0006\u0010\u009a\u0088\u0098\u00a8\u0006\"\u000542207\u0012\u0011\b.\u0012\u0006\u0010\u0087\u0089\u0098\u00a8\u0006\"\u000542208\u0012\u0011\b/\u0012\u0006\u0010\u0081\u008b\u0098\u00a8\u0006\"\u000542564\u0012\u0011\b0\u0012\u0006\u0010\u00d4\u008c\u0098\u00a8\u0006\"\u000542214\u0012\u0011\b1\u0012\u0006\u0010\u00b6\u008e\u0098\u00a8\u0006\"\u000542209\u0012\u0011\b2\u0012\u0006\u0010\u00c6\u0090\u0098\u00a8\u0006\"\u000542210\u0012\u0011\b3\u0012\u0006\u0010\u009c\u0094\u0098\u00a8\u0006\"\u000542215\u0012\u0011\b4\u0012\u0006\u0010\u00ef\u0094\u0098\u00a8\u0006\"\u000542216\u0012\u0011\b5\u0012\u0006\u0010\u00e2\u0095\u0098\u00a8\u0006\"\u000542217\u0012\u0011\b6\u0012\u0006\u0010\u00bb\u0097\u0098\u00a8\u0006\"\u000542218\u0012\u0011\b7\u0012\u0006\u0010\u00a4\u0098\u0098\u00a8\u0006\"\u000542219\u0012\u0011\b8\u0012\u0006\u0010\u00fc\u009a\u0098\u00a8\u0006\"\u000542220\u0012\u0011\b9\u0012\u0006\u0010\u0092\u009c\u0098\u00a8\u0006\"\u000542221\u0012\u0011\b:\u0012\u0006\u0010\u00fc\u009d\u0098\u00a8\u0006\"\u000542222\u0012\u0011\b;\u0012\u0006\u0010\u00f8\u009f\u0098\u00a8\u0006\"\u000542223\u0012\u0011\b<\u0012\u0006\u0010\u00e4\u00a0\u0098\u00a8\u0006\"\u000542224\u0012\u0011\b=\u0012\u0006\u0010\u0095\u00a3\u0098\u00a8\u0006\"\u000542225\u0012\u0011\b>\u0012\u0006\u0010\u00a8\u00a5\u0098\u00a8\u0006\"\u000542226\u0012\u0011\b?\u0012\u0006\u0010\u0096\u00a7\u0098\u00a8\u0006\"\u000542227\u0012\u0011\b@\u0012\u0006\u0010\u00a6\u00aa\u0098\u00a8\u0006\"\u000542228\u0012\u0011\bA\u0012\u0006\u0010\u00fa\u00ab\u0098\u00a8\u0006\"\u000542229\u0012\u0011\bB\u0012\u0006\u0010\u00a9\u00af\u0098\u00a8\u0006\"\u000542230\u0012\u0011\bC\u0012\u0006\u0010\u009a\u00b1\u0098\u00a8\u0006\"\u000542231\u0012\u0011\bD\u0012\u0006\u0010\u0086\u00b5\u0098\u00a8\u0006\"\u000542232\u0012\u0011\bE\u0012\u0006\u0010\u00fa\u00bb\u0098\u00a8\u0006\"\u000542234\u0012\u0011\bF\u0012\u0006\u0010\u0099\u00c0\u0098\u00a8\u0006\"\u000542235\u0012\u0011\bG\u0012\u0006\u0010\u0093\u00c2\u0098\u00a8\u0006\"\u000542211\u0012\u0011\bH\u0012\u0006\u0010\u00e3\u00c5\u0098\u00a8\u0006\"\u000549203\u0012\u0011\bI\u0012\u0006\u0010\u00db\u00c9\u0098\u00a8\u0006\"\u000549204\u0012\u0011\bJ\u0012\u0006\u0010\u00ba\u00ca\u0098\u00a8\u0006\"\u000542503\u0012\u0011\bK\u0012\u0006\u0010\u00b8\u00cb\u0098\u00a8\u0006\"\u000549264\u001a\b\u001a\u0006HYCZ63 \u00da\u00e7\u0097\u00a8\u0006\"`\n/\n\u001016886-701ff27f-2\u0012\b13:17:00\u001a\b20230916 \u0000*\u00035600\u0001\u0012\u001d\r\u000f\u00ed\u0012\u00c2\u0015\u00d07\u0092\u00c2\u001d\u0000\u0000\u0011C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00cd\u00cc4A(\u00da\u00e7\u0097\u00a8\u0006B\b\u001a\u0006HYCZ63" + }, + { + "type": "con_recorrido", + "entity": "\n$cd79de73-7aed-4e8a-afa9-6d1ddc81cfda\u001a\u00e3\u0003\n/\n\u001016887-701ff27f-2\u0012\b13:32:00\u001a\b20230916 \u0000*\u00035600\u0001\u0012\u0011\b6\u0012\u0006\u0010\u00e0\u00e7\u0097\u00a8\u0006\"\u000542218\u0012\u0011\b7\u0012\u0006\u0010\u0085\u00e8\u0097\u00a8\u0006\"\u000542219\u0012\u0011\b8\u0012\u0006\u0010\u00f7\u00e8\u0097\u00a8\u0006\"\u000542220\u0012\u0011\b9\u0012\u0006\u0010\u00a5\u00e9\u0097\u00a8\u0006\"\u000542221\u0012\u0011\b:\u0012\u0006\u0010\u00ea\u00e9\u0097\u00a8\u0006\"\u000542222\u0012\u0011\b;\u0012\u0006\u0010\u00af\u00ea\u0097\u00a8\u0006\"\u000542223\u0012\u0011\b<\u0012\u0006\u0010\u00cc\u00ea\u0097\u00a8\u0006\"\u000542224\u0012\u0011\b=\u0012\u0006\u0010\u0098\u00eb\u0097\u00a8\u0006\"\u000542225\u0012\u0011\b>\u0012\u0006\u0010\u00d8\u00eb\u0097\u00a8\u0006\"\u000542226\u0012\u0011\b?\u0012\u0006\u0010\u008d\u00ec\u0097\u00a8\u0006\"\u000542227\u0012\u0011\b@\u0012\u0006\u0010\u00df\u00ec\u0097\u00a8\u0006\"\u000542228\u0012\u0011\bA\u0012\u0006\u0010\u0087\u00ed\u0097\u00a8\u0006\"\u000542229\u0012\u0011\bB\u0012\u0006\u0010\u00d5\u00ed\u0097\u00a8\u0006\"\u000542230\u0012\u0011\bC\u0012\u0006\u0010\u00fe\u00ed\u0097\u00a8\u0006\"\u000542231\u0012\u0011\bD\u0012\u0006\u0010\u00cc\u00ee\u0097\u00a8\u0006\"\u000542232\u0012\u0011\bE\u0012\u0006\u0010\u00c8\u00ef\u0097\u00a8\u0006\"\u000542234\u0012\u0011\bF\u0012\u0006\u0010\u008c\u00f0\u0097\u00a8\u0006\"\u000542235\u0012\u0011\bG\u0012\u0006\u0010\u00aa\u00f0\u0097\u00a8\u0006\"\u000542211\u0012\u0011\bH\u0012\u0006\u0010\u00dd\u00f0\u0097\u00a8\u0006\"\u000549203\u0012\u0011\bI\u0012\u0006\u0010\u0092\u00f1\u0097\u00a8\u0006\"\u000549204\u0012\u0011\bJ\u0012\u0006\u0010\u009b\u00f1\u0097\u00a8\u0006\"\u000542503\u0012\u0011\bK\u0012\u0006\u0010\u00a8\u00f1\u0097\u00a8\u0006\"\u000549264\u001a\b\u001a\u0006JRZZ98 \u00bf\u00e7\u0097\u00a8\u0006\"`\n/\n\u001016887-701ff27f-2\u0012\b13:32:00\u001a\b20230916 \u0000*\u00035600\u0001\u0012\u001d\r\u0010\u009d\u0013\u00c2\u0015\u0000\u0010\u0092\u00c2\u001d\u0000\u00005C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u00a0A(\u00bf\u00e7\u0097\u00a8\u0006B\b\u001a\u0006JRZZ98" + }, + { + "type": "con_recorrido", + "entity": "\n$2fc7625b-9256-49d5-840c-b1f4089ad5e7\u001a\u00a6\u0006\n/\n\u001016889-701ff27f-2\u0012\b14:02:00\u001a\b20230916 \u0000*\u00035600\u0001\u0012\u0011\b%\u0012\u0006\u0010\u00e4\u00e7\u0097\u00a8\u0006\"\u000539729\u0012\u0011\b&\u0012\u0006\u0010\u0085\u00e8\u0097\u00a8\u0006\"\u000539730\u0012\u0011\b'\u0012\u0006\u0010\u00f2\u00e8\u0097\u00a8\u0006\"\u000542200\u0012\u0011\b(\u0012\u0006\u0010\u00a1\u00e9\u0097\u00a8\u0006\"\u000542203\u0012\u0011\b)\u0012\u0006\u0010\u00da\u00e9\u0097\u00a8\u0006\"\u000542204\u0012\u0011\b*\u0012\u0006\u0010\u0085\u00ea\u0097\u00a8\u0006\"\u000542205\u0012\u0011\b+\u0012\u0006\u0010\u00c2\u00ea\u0097\u00a8\u0006\"\u000542201\u0012\u0011\b,\u0012\u0006\u0010\u00b7\u00ec\u0097\u00a8\u0006\"\u000542206\u0012\u0011\b-\u0012\u0006\u0010\u00f4\u00ec\u0097\u00a8\u0006\"\u000542207\u0012\u0011\b.\u0012\u0006\u0010\u00af\u00ed\u0097\u00a8\u0006\"\u000542208\u0012\u0011\b/\u0012\u0006\u0010\u00ad\u00ee\u0097\u00a8\u0006\"\u000542564\u0012\u0011\b0\u0012\u0006\u0010\u0091\u00ef\u0097\u00a8\u0006\"\u000542214\u0012\u0011\b1\u0012\u0006\u0010\u00f7\u00ef\u0097\u00a8\u0006\"\u000542209\u0012\u0011\b2\u0012\u0006\u0010\u00e9\u00f0\u0097\u00a8\u0006\"\u000542210\u0012\u0011\b3\u0012\u0006\u0010\u009e\u00f2\u0097\u00a8\u0006\"\u000542215\u0012\u0011\b4\u0012\u0006\u0010\u00bd\u00f2\u0097\u00a8\u0006\"\u000542216\u0012\u0011\b5\u0012\u0006\u0010\u00e5\u00f2\u0097\u00a8\u0006\"\u000542217\u0012\u0011\b6\u0012\u0006\u0010\u00af\u00f3\u0097\u00a8\u0006\"\u000542218\u0012\u0011\b7\u0012\u0006\u0010\u00d2\u00f3\u0097\u00a8\u0006\"\u000542219\u0012\u0011\b8\u0012\u0006\u0010\u00bf\u00f4\u0097\u00a8\u0006\"\u000542220\u0012\u0011\b9\u0012\u0006\u0010\u00ec\u00f4\u0097\u00a8\u0006\"\u000542221\u0012\u0011\b:\u0012\u0006\u0010\u00b0\u00f5\u0097\u00a8\u0006\"\u000542222\u0012\u0011\b;\u0012\u0006\u0010\u00f6\u00f5\u0097\u00a8\u0006\"\u000542223\u0012\u0011\b<\u0012\u0006\u0010\u0093\u00f6\u0097\u00a8\u0006\"\u000542224\u0012\u0011\b=\u0012\u0006\u0010\u00e2\u00f6\u0097\u00a8\u0006\"\u000542225\u0012\u0011\b>\u0012\u0006\u0010\u00a6\u00f7\u0097\u00a8\u0006\"\u000542226\u0012\u0011\b?\u0012\u0006\u0010\u00df\u00f7\u0097\u00a8\u0006\"\u000542227\u0012\u0011\b@\u0012\u0006\u0010\u00b9\u00f8\u0097\u00a8\u0006\"\u000542228\u0012\u0011\bA\u0012\u0006\u0010\u00e7\u00f8\u0097\u00a8\u0006\"\u000542229\u0012\u0011\bB\u0012\u0006\u0010\u00c0\u00f9\u0097\u00a8\u0006\"\u000542230\u0012\u0011\bC\u0012\u0006\u0010\u00ef\u00f9\u0097\u00a8\u0006\"\u000542231\u0012\u0011\bD\u0012\u0006\u0010\u00cb\u00fa\u0097\u00a8\u0006\"\u000542232\u0012\u0011\bE\u0012\u0006\u0010\u00e1\u00fb\u0097\u00a8\u0006\"\u000542234\u0012\u0011\bF\u0012\u0006\u0010\u00b6\u00fc\u0097\u00a8\u0006\"\u000542235\u0012\u0011\bG\u0012\u0006\u0010\u00db\u00fc\u0097\u00a8\u0006\"\u000542211\u0012\u0011\bH\u0012\u0006\u0010\u009d\u00fd\u0097\u00a8\u0006\"\u000549203\u0012\u0011\bI\u0012\u0006\u0010\u00e1\u00fd\u0097\u00a8\u0006\"\u000549204\u0012\u0011\bJ\u0012\u0006\u0010\u00ed\u00fd\u0097\u00a8\u0006\"\u000542503\u0012\u0011\bK\u0012\u0006\u0010\u00fd\u00fd\u0097\u00a8\u0006\"\u000549264\u001a\b\u001a\u0006KHGP41 \u00d5\u00e7\u0097\u00a8\u0006\"`\n/\n\u001016889-701ff27f-2\u0012\b14:02:00\u001a\b20230916 \u0000*\u00035600\u0001\u0012\u001d\r\u00f7[\u0013\u00c2\u0015 \u001c\u0092\u00c2\u001d\u0000\u0000'C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00d5\u00e7\u0097\u00a8\u0006B\b\u001a\u0006KHGP41" + }, + { + "type": "con_recorrido", + "entity": "\n$db4a4ddf-fbe6-4c19-b328-71ad064a2a8f\u001a\u00b8\u0002\n/\n\u001016818-701ff27f-2\u0012\b15:05:00\u001a\b20230916 \u0000*\u00035600\u0000\u0012\u0011\bL\u0012\u0006\u0010\u00de\u00e8\u0097\u00a8\u0006\"\u000538546\u0012\u0011\bM\u0012\u0006\u0010\u00db\u00e9\u0097\u00a8\u0006\"\u000538548\u0012\u0011\bN\u0012\u0006\u0010\u009f\u00ea\u0097\u00a8\u0006\"\u000538549\u0012\u0011\bO\u0012\u0006\u0010\u00d7\u00ea\u0097\u00a8\u0006\"\u000538550\u0012\u0011\bP\u0012\u0006\u0010\u00b7\u00eb\u0097\u00a8\u0006\"\u000538551\u0012\u0011\bQ\u0012\u0006\u0010\u008b\u00ec\u0097\u00a8\u0006\"\u000538552\u0012\u0011\bR\u0012\u0006\u0010\u00dd\u00ec\u0097\u00a8\u0006\"\u000549359\u0012\u0011\bS\u0012\u0006\u0010\u008b\u00ed\u0097\u00a8\u0006\"\u000549360\u0012\u0011\bT\u0012\u0006\u0010\u00f9\u00ed\u0097\u00a8\u0006\"\u000549361\u0012\u0011\bU\u0012\u0006\u0010\u0094\u00ee\u0097\u00a8\u0006\"\u000549362\u0012\u0011\bV\u0012\u0006\u0010\u00c1\u00ee\u0097\u00a8\u0006\"\u000549363\u0012\u0011\bW\u0012\u0006\u0010\u00f0\u00ee\u0097\u00a8\u0006\"\u000549364\u0012\u0011\bX\u0012\u0006\u0010\u009a\u00ef\u0097\u00a8\u0006\"\u000549365\u001a\b\u001a\u0006KHSW75 \u00da\u00e7\u0097\u00a8\u0006\"`\n/\n\u001016818-701ff27f-2\u0012\b15:05:00\u001a\b20230916 \u0000*\u00035600\u0000\u0012\u001d\r\u0085\u00fe\u0012\u00c2\u0015(0\u0092\u00c2\u001d\u0000\u0080\u00a9C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u00d4A(\u00da\u00e7\u0097\u00a8\u0006B\b\u001a\u0006KHSW75" + }, + { + "type": "con_recorrido", + "entity": "\n$d9920f88-62c5-4861-97fd-fdbad6dbfc82\u001a\u00f7\u0007\n/\n\u001016891-701ff27f-2\u0012\b14:32:00\u001a\b20230916 \u0000*\u00035600\u0001\u0012\u0011\b\u001a\u0012\u0006\u0010\u00a1\u00e8\u0097\u00a8\u0006\"\u000539619\u0012\u0011\b\u001b\u0012\u0006\u0010\u00cf\u00e8\u0097\u00a8\u0006\"\u000539620\u0012\u0011\b\u001c\u0012\u0006\u0010\u0094\u00e9\u0097\u00a8\u0006\"\u000539621\u0012\u0011\b\u001d\u0012\u0006\u0010\u00c7\u00e9\u0097\u00a8\u0006\"\u000538281\u0012\u0011\b\u001e\u0012\u0006\u0010\u0080\u00ea\u0097\u00a8\u0006\"\u000537506\u0012\u0011\b\u001f\u0012\u0006\u0010\u00a9\u00ea\u0097\u00a8\u0006\"\u000545068\u0012\u0011\b \u0012\u0006\u0010\u00a8\u00eb\u0097\u00a8\u0006\"\u000537480\u0012\u0011\b!\u0012\u0006\u0010\u00e6\u00eb\u0097\u00a8\u0006\"\u000537477\u0012\u0011\b\"\u0012\u0006\u0010\u00a9\u00ec\u0097\u00a8\u0006\"\u000540848\u0012\u0011\b#\u0012\u0006\u0010\u00fc\u00ec\u0097\u00a8\u0006\"\u00052-Apr\u0012\u0011\b$\u0012\u0006\u0010\u00b4\u00ed\u0097\u00a8\u0006\"\u000539728\u0012\u0011\b%\u0012\u0006\u0010\u008d\u00ee\u0097\u00a8\u0006\"\u000539729\u0012\u0011\b&\u0012\u0006\u0010\u00ac\u00ee\u0097\u00a8\u0006\"\u000539730\u0012\u0011\b'\u0012\u0006\u0010\u0090\u00ef\u0097\u00a8\u0006\"\u000542200\u0012\u0011\b(\u0012\u0006\u0010\u00bb\u00ef\u0097\u00a8\u0006\"\u000542203\u0012\u0011\b)\u0012\u0006\u0010\u00f0\u00ef\u0097\u00a8\u0006\"\u000542204\u0012\u0011\b*\u0012\u0006\u0010\u0099\u00f0\u0097\u00a8\u0006\"\u000542205\u0012\u0011\b+\u0012\u0006\u0010\u00d4\u00f0\u0097\u00a8\u0006\"\u000542201\u0012\u0011\b,\u0012\u0006\u0010\u00c3\u00f2\u0097\u00a8\u0006\"\u000542206\u0012\u0011\b-\u0012\u0006\u0010\u0080\u00f3\u0097\u00a8\u0006\"\u000542207\u0012\u0011\b.\u0012\u0006\u0010\u00bb\u00f3\u0097\u00a8\u0006\"\u000542208\u0012\u0011\b/\u0012\u0006\u0010\u00bd\u00f4\u0097\u00a8\u0006\"\u000542564\u0012\u0011\b0\u0012\u0006\u0010\u00a5\u00f5\u0097\u00a8\u0006\"\u000542214\u0012\u0011\b1\u0012\u0006\u0010\u0090\u00f6\u0097\u00a8\u0006\"\u000542209\u0012\u0011\b2\u0012\u0006\u0010\u008b\u00f7\u0097\u00a8\u0006\"\u000542210\u0012\u0011\b3\u0012\u0006\u0010\u00d2\u00f8\u0097\u00a8\u0006\"\u000542215\u0012\u0011\b4\u0012\u0006\u0010\u00f4\u00f8\u0097\u00a8\u0006\"\u000542216\u0012\u0011\b5\u0012\u0006\u0010\u00a1\u00f9\u0097\u00a8\u0006\"\u000542217\u0012\u0011\b6\u0012\u0006\u0010\u00f5\u00f9\u0097\u00a8\u0006\"\u000542218\u0012\u0011\b7\u0012\u0006\u0010\u009c\u00fa\u0097\u00a8\u0006\"\u000542219\u0012\u0011\b8\u0012\u0006\u0010\u009a\u00fb\u0097\u00a8\u0006\"\u000542220\u0012\u0011\b9\u0012\u0006\u0010\u00ce\u00fb\u0097\u00a8\u0006\"\u000542221\u0012\u0011\b:\u0012\u0006\u0010\u009d\u00fc\u0097\u00a8\u0006\"\u000542222\u0012\u0011\b;\u0012\u0006\u0010\u00f0\u00fc\u0097\u00a8\u0006\"\u000542223\u0012\u0011\b<\u0012\u0006\u0010\u0093\u00fd\u0097\u00a8\u0006\"\u000542224\u0012\u0011\b=\u0012\u0006\u0010\u00f2\u00fd\u0097\u00a8\u0006\"\u000542225\u0012\u0011\b>\u0012\u0006\u0010\u00c4\u00fe\u0097\u00a8\u0006\"\u000542226\u0012\u0011\b?\u0012\u0006\u0010\u0089\u00ff\u0097\u00a8\u0006\"\u000542227\u0012\u0011\b@\u0012\u0006\u0010\u00f8\u00ff\u0097\u00a8\u0006\"\u000542228\u0012\u0011\bA\u0012\u0006\u0010\u00b1\u0080\u0098\u00a8\u0006\"\u000542229\u0012\u0011\bB\u0012\u0006\u0010\u00a0\u0081\u0098\u00a8\u0006\"\u000542230\u0012\u0011\bC\u0012\u0006\u0010\u00db\u0081\u0098\u00a8\u0006\"\u000542231\u0012\u0011\bD\u0012\u0006\u0010\u00d0\u0082\u0098\u00a8\u0006\"\u000542232\u0012\u0011\bE\u0012\u0006\u0010\u0093\u0084\u0098\u00a8\u0006\"\u000542234\u0012\u0011\bF\u0012\u0006\u0010\u0081\u0085\u0098\u00a8\u0006\"\u000542235\u0012\u0011\bG\u0012\u0006\u0010\u00b2\u0085\u0098\u00a8\u0006\"\u000542211\u0012\u0011\bH\u0012\u0006\u0010\u008a\u0086\u0098\u00a8\u0006\"\u000549203\u0012\u0011\bI\u0012\u0006\u0010\u00e5\u0086\u0098\u00a8\u0006\"\u000549204\u0012\u0011\bJ\u0012\u0006\u0010\u00f5\u0086\u0098\u00a8\u0006\"\u000542503\u0012\u0011\bK\u0012\u0006\u0010\u008b\u0087\u0098\u00a8\u0006\"\u000549264\u001a\b\u001a\u0006LCTH12 \u00f4\u00e7\u0097\u00a8\u0006\"`\n/\n\u001016891-701ff27f-2\u0012\b14:32:00\u001a\b20230916 \u0000*\u00035600\u0001\u0012\u001d\r\u00ffB\u0013\u00c2\u0015/\u0018\u0092\u00c2\u001d\u0000\u0000\u0019C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00cd\u00cc,@(\u00f4\u00e7\u0097\u00a8\u0006B\b\u001a\u0006LCTH12" + }, + { + "type": "con_recorrido", + "entity": "\n$1f477b16-663d-4171-baa6-ff00be7a30cc\u001a\u009c\u0004\n/\n\u001016888-701ff27f-2\u0012\b13:47:00\u001a\b20230916 \u0000*\u00035600\u0001\u0012\u0011\b3\u0012\u0006\u0010\u00fb\u00e8\u0097\u00a8\u0006\"\u000542215\u0012\u0011\b4\u0012\u0006\u0010\u009b\u00e9\u0097\u00a8\u0006\"\u000542216\u0012\u0011\b5\u0012\u0006\u0010\u00c6\u00e9\u0097\u00a8\u0006\"\u000542217\u0012\u0011\b6\u0012\u0006\u0010\u0093\u00ea\u0097\u00a8\u0006\"\u000542218\u0012\u0011\b7\u0012\u0006\u0010\u00b7\u00ea\u0097\u00a8\u0006\"\u000542219\u0012\u0011\b8\u0012\u0006\u0010\u00a4\u00eb\u0097\u00a8\u0006\"\u000542220\u0012\u0011\b9\u0012\u0006\u0010\u00d1\u00eb\u0097\u00a8\u0006\"\u000542221\u0012\u0011\b:\u0012\u0006\u0010\u0093\u00ec\u0097\u00a8\u0006\"\u000542222\u0012\u0011\b;\u0012\u0006\u0010\u00d7\u00ec\u0097\u00a8\u0006\"\u000542223\u0012\u0011\b<\u0012\u0006\u0010\u00f2\u00ec\u0097\u00a8\u0006\"\u000542224\u0012\u0011\b=\u0012\u0006\u0010\u00bd\u00ed\u0097\u00a8\u0006\"\u000542225\u0012\u0011\b>\u0012\u0006\u0010\u00fc\u00ed\u0097\u00a8\u0006\"\u000542226\u0012\u0011\b?\u0012\u0006\u0010\u00af\u00ee\u0097\u00a8\u0006\"\u000542227\u0012\u0011\b@\u0012\u0006\u0010\u0080\u00ef\u0097\u00a8\u0006\"\u000542228\u0012\u0011\bA\u0012\u0006\u0010\u00a8\u00ef\u0097\u00a8\u0006\"\u000542229\u0012\u0011\bB\u0012\u0006\u0010\u00f6\u00ef\u0097\u00a8\u0006\"\u000542230\u0012\u0011\bC\u0012\u0006\u0010\u009e\u00f0\u0097\u00a8\u0006\"\u000542231\u0012\u0011\bD\u0012\u0006\u0010\u00ec\u00f0\u0097\u00a8\u0006\"\u000542232\u0012\u0011\bE\u0012\u0006\u0010\u00e9\u00f1\u0097\u00a8\u0006\"\u000542234\u0012\u0011\bF\u0012\u0006\u0010\u00ae\u00f2\u0097\u00a8\u0006\"\u000542235\u0012\u0011\bG\u0012\u0006\u0010\u00cb\u00f2\u0097\u00a8\u0006\"\u000542211\u0012\u0011\bH\u0012\u0006\u0010\u0080\u00f3\u0097\u00a8\u0006\"\u000549203\u0012\u0011\bI\u0012\u0006\u0010\u00b5\u00f3\u0097\u00a8\u0006\"\u000549204\u0012\u0011\bJ\u0012\u0006\u0010\u00bf\u00f3\u0097\u00a8\u0006\"\u000542503\u0012\u0011\bK\u0012\u0006\u0010\u00cb\u00f3\u0097\u00a8\u0006\"\u000549264\u001a\b\u001a\u0006WV6705 \u00e8\u00e7\u0097\u00a8\u0006\"`\n/\n\u001016888-701ff27f-2\u0012\b13:47:00\u001a\b20230916 \u0000*\u00035600\u0001\u0012\u001d\r\u00c1\u0091\u0013\u00c2\u0015<\u0012\u0092\u00c2\u001d\u0000\u0000\u001dC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\"B(\u00e8\u00e7\u0097\u00a8\u0006B\b\u001a\u0006WV6705" + }, + { + "type": "con_recorrido", + "entity": "\n$40f6c9b1-7fae-40dd-b7d9-6fd7834cb315\u001a\u00f4\u0005\n/\n\u001016820-701ff27f-2\u0012\b15:35:00\u001a\b20230916 \u0000*\u00035600\u0000\u0012\u0011\b5\u0012\u0006\u0010\u009c\u00e8\u0097\u00a8\u0006\"\u000538521\u0012\u0011\b6\u0012\u0006\u0010\u00d0\u00e8\u0097\u00a8\u0006\"\u000538522\u0012\u0011\b7\u0012\u0006\u0010\u0085\u00e9\u0097\u00a8\u0006\"\u000538523\u0012\u0011\b8\u0012\u0006\u0010\u00bc\u00e9\u0097\u00a8\u0006\"\u000538524\u0012\u0011\b9\u0012\u0006\u0010\u00ef\u00e9\u0097\u00a8\u0006\"\u000538525\u0012\u0011\b:\u0012\u0006\u0010\u00a4\u00ea\u0097\u00a8\u0006\"\u000538526\u0012\u0011\b;\u0012\u0006\u0010\u00d5\u00ea\u0097\u00a8\u0006\"\u000538527\u0012\u0011\b<\u0012\u0006\u0010\u00ad\u00eb\u0097\u00a8\u0006\"\u000538528\u0012\u0011\b=\u0012\u0006\u0010\u00a0\u00ec\u0097\u00a8\u0006\"\u000538529\u0012\u0011\b>\u0012\u0006\u0010\u00ef\u00ed\u0097\u00a8\u0006\"\u000538530\u0012\u0014\b?\u0012\u0006\u0010\u00fb\u00ed\u0097\u00a8\u0006\"\b16005209\u0012\u0011\b@\u0012\u0006\u0010\u00e1\u00ef\u0097\u00a8\u0006\"\u000538531\u0012\u0013\bA\u0012\u0006\u0010\u0096\u00f0\u0097\u00a8\u0006\"\u00078921285\u0012\u0011\bB\u0012\u0006\u0010\u0083\u00f1\u0097\u00a8\u0006\"\u000538532\u0012\u0011\bC\u0012\u0006\u0010\u00b6\u00f1\u0097\u00a8\u0006\"\u000538533\u0012\u0011\bD\u0012\u0006\u0010\u00eb\u00f1\u0097\u00a8\u0006\"\u000538534\u0012\u0011\bE\u0012\u0006\u0010\u009a\u00f2\u0097\u00a8\u0006\"\u000538535\u0012\u0011\bF\u0012\u0006\u0010\u00da\u00f2\u0097\u00a8\u0006\"\u000538536\u0012\u0013\bG\u0012\u0006\u0010\u00fe\u00f2\u0097\u00a8\u0006\"\u00074838437\u0012\u0011\bH\u0012\u0006\u0010\u00b4\u00f3\u0097\u00a8\u0006\"\u000545085\u0012\u0011\bI\u0012\u0006\u0010\u0082\u00f4\u0097\u00a8\u0006\"\u000545086\u0012\u0011\bJ\u0012\u0006\u0010\u00fb\u00f4\u0097\u00a8\u0006\"\u000538540\u0012\u0011\bK\u0012\u0006\u0010\u00c5\u00f5\u0097\u00a8\u0006\"\u000538544\u0012\u0011\bL\u0012\u0006\u0010\u00ea\u00f6\u0097\u00a8\u0006\"\u000538546\u0012\u0011\bM\u0012\u0006\u0010\u00e9\u00f7\u0097\u00a8\u0006\"\u000538548\u0012\u0011\bN\u0012\u0006\u0010\u00b1\u00f8\u0097\u00a8\u0006\"\u000538549\u0012\u0011\bO\u0012\u0006\u0010\u00ed\u00f8\u0097\u00a8\u0006\"\u000538550\u0012\u0011\bP\u0012\u0006\u0010\u00d7\u00f9\u0097\u00a8\u0006\"\u000538551\u0012\u0011\bQ\u0012\u0006\u0010\u00b7\u00fa\u0097\u00a8\u0006\"\u000538552\u0012\u0011\bR\u0012\u0006\u0010\u0096\u00fb\u0097\u00a8\u0006\"\u000549359\u0012\u0011\bS\u0012\u0006\u0010\u00cd\u00fb\u0097\u00a8\u0006\"\u000549360\u0012\u0011\bT\u0012\u0006\u0010\u00d5\u00fc\u0097\u00a8\u0006\"\u000549361\u0012\u0011\bU\u0012\u0006\u0010\u00f6\u00fc\u0097\u00a8\u0006\"\u000549362\u0012\u0011\bV\u0012\u0006\u0010\u00b0\u00fd\u0097\u00a8\u0006\"\u000549363\u0012\u0011\bW\u0012\u0006\u0010\u00ed\u00fd\u0097\u00a8\u0006\"\u000549364\u0012\u0011\bX\u0012\u0006\u0010\u00a4\u00fe\u0097\u00a8\u0006\"\u000549365\u001a\b\u001a\u0006ZT1142 \u00f2\u00e7\u0097\u00a8\u0006\"`\n/\n\u001016820-701ff27f-2\u0012\b15:35:00\u001a\b20230916 \u0000*\u00035600\u0000\u0012\u001d\r6F\u0013\u00c2\u0015$\u0017\u0092\u00c2\u001d\u0000\u0000\u00a7C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f2\u00e7\u0097\u00a8\u0006B\b\u001a\u0006ZT1142" + }, + { + "type": "con_recorrido", + "entity": "\n$bc1656f3-417d-4b2c-a8c9-ad061d417314\u001a\u00ba\f\n/\n\u001016821-701ff27f-2\u0012\b15:50:00\u001a\b20230916 \u0000*\u00035600\u0000\u0012\u0011\b\t\u0012\u0006\u0010\u00f4\u00e7\u0097\u00a8\u0006\"\u000542280\u0012\u0011\b\n\u0012\u0006\u0010\u00a1\u00e8\u0097\u00a8\u0006\"\u000542281\u0012\u0011\b\u000b\u0012\u0006\u0010\u00f0\u00e8\u0097\u00a8\u0006\"\u000542282\u0012\u0011\b\f\u0012\u0006\u0010\u00aa\u00e9\u0097\u00a8\u0006\"\u000542283\u0012\u0011\b\r\u0012\u0006\u0010\u00ed\u00e9\u0097\u00a8\u0006\"\u000549279\u0012\u0011\b\u000e\u0012\u0006\u0010\u00bd\u00ea\u0097\u00a8\u0006\"\u000542285\u0012\u0011\b\u000f\u0012\u0006\u0010\u0095\u00eb\u0097\u00a8\u0006\"\u000542286\u0012\u0011\b\u0010\u0012\u0006\u0010\u00a6\u00eb\u0097\u00a8\u0006\"\u000542287\u0012\u0011\b\u0011\u0012\u0006\u0010\u00de\u00eb\u0097\u00a8\u0006\"\u000542288\u0012\u0011\b\u0012\u0012\u0006\u0010\u0081\u00ec\u0097\u00a8\u0006\"\u000542289\u0012\u0011\b\u0013\u0012\u0006\u0010\u00ca\u00ec\u0097\u00a8\u0006\"\u000542290\u0012\u0011\b\u0014\u0012\u0006\u0010\u00fb\u00ec\u0097\u00a8\u0006\"\u000542291\u0012\u0011\b\u0015\u0012\u0006\u0010\u00d8\u00ed\u0097\u00a8\u0006\"\u000542292\u0012\u0011\b\u0016\u0012\u0006\u0010\u009c\u00ee\u0097\u00a8\u0006\"\u000542293\u0012\u0011\b\u0017\u0012\u0006\u0010\u00c8\u00ef\u0097\u00a8\u0006\"\u000542294\u0012\u0011\b\u0018\u0012\u0006\u0010\u00c6\u00f0\u0097\u00a8\u0006\"\u000542295\u0012\u0011\b\u0019\u0012\u0006\u0010\u00b5\u00f1\u0097\u00a8\u0006\"\u000542296\u0012\u0011\b\u001a\u0012\u0006\u0010\u00b0\u00f2\u0097\u00a8\u0006\"\u000542297\u0012\u0011\b\u001b\u0012\u0006\u0010\u008f\u00f3\u0097\u00a8\u0006\"\u000542298\u0012\u0011\b\u001c\u0012\u0006\u0010\u00cf\u00f3\u0097\u00a8\u0006\"\u000542299\u0012\u0011\b\u001d\u0012\u0006\u0010\u00f9\u00f3\u0097\u00a8\u0006\"\u000549295\u0012\u0011\b\u001e\u0012\u0006\u0010\u00f2\u00f4\u0097\u00a8\u0006\"\u000549296\u0012\u0011\b\u001f\u0012\u0006\u0010\u00ce\u00f5\u0097\u00a8\u0006\"\u000549297\u0012\u0011\b \u0012\u0006\u0010\u00f0\u00f5\u0097\u00a8\u0006\"\u000549298\u0012\u0011\b!\u0012\u0006\u0010\u00ae\u00f6\u0097\u00a8\u0006\"\u000549299\u0012\u0011\b\"\u0012\u0006\u0010\u00e5\u00f6\u0097\u00a8\u0006\"\u000549300\u0012\u0011\b#\u0012\u0006\u0010\u00bd\u00f7\u0097\u00a8\u0006\"\u000549301\u0012\u0011\b$\u0012\u0006\u0010\u0087\u00f8\u0097\u00a8\u0006\"\u000549302\u0012\u0011\b%\u0012\u0006\u0010\u00b8\u00f8\u0097\u00a8\u0006\"\u000549303\u0012\u0011\b&\u0012\u0006\u0010\u00f0\u00f8\u0097\u00a8\u0006\"\u000549304\u0012\u0011\b'\u0012\u0006\u0010\u0090\u00f9\u0097\u00a8\u0006\"\u000549305\u0012\u0011\b(\u0012\u0006\u0010\u00cf\u00f9\u0097\u00a8\u0006\"\u000549306\u0012\u0011\b)\u0012\u0006\u0010\u00fc\u00f9\u0097\u00a8\u0006\"\u000549307\u0012\u0011\b*\u0012\u0006\u0010\u0098\u00fa\u0097\u00a8\u0006\"\u000549308\u0012\u0011\b+\u0012\u0006\u0010\u00b4\u00fa\u0097\u00a8\u0006\"\u000549309\u0012\u0011\b,\u0012\u0006\u0010\u00d4\u00fa\u0097\u00a8\u0006\"\u000542315\u0012\u0011\b-\u0012\u0006\u0010\u00ef\u00fa\u0097\u00a8\u0006\"\u000542316\u0012\u0011\b.\u0012\u0006\u0010\u00ab\u00fb\u0097\u00a8\u0006\"\u000542317\u0012\u0011\b/\u0012\u0006\u0010\u00e9\u00fb\u0097\u00a8\u0006\"\u000542318\u0012\u0013\b0\u0012\u0006\u0010\u00b9\u00fc\u0097\u00a8\u0006\"\u00078606396\u0012\u0011\b1\u0012\u0006\u0010\u009a\u00fd\u0097\u00a8\u0006\"\u000538514\u0012\u0011\b2\u0012\u0006\u0010\u00cb\u00fd\u0097\u00a8\u0006\"\u000538516\u0012\u0011\b3\u0012\u0006\u0010\u0097\u00fe\u0097\u00a8\u0006\"\u000538518\u0012\u0011\b4\u0012\u0006\u0010\u0096\u00ff\u0097\u00a8\u0006\"\u000538520\u0012\u0011\b5\u0012\u0006\u0010\u00d1\u00ff\u0097\u00a8\u0006\"\u000538521\u0012\u0011\b6\u0012\u0006\u0010\u0095\u0080\u0098\u00a8\u0006\"\u000538522\u0012\u0011\b7\u0012\u0006\u0010\u00da\u0080\u0098\u00a8\u0006\"\u000538523\u0012\u0011\b8\u0012\u0006\u0010\u00a5\u0081\u0098\u00a8\u0006\"\u000538524\u0012\u0011\b9\u0012\u0006\u0010\u00eb\u0081\u0098\u00a8\u0006\"\u000538525\u0012\u0011\b:\u0012\u0006\u0010\u00b8\u0082\u0098\u00a8\u0006\"\u000538526\u0012\u0011\b;\u0012\u0006\u0010\u0081\u0083\u0098\u00a8\u0006\"\u000538527\u0012\u0011\b<\u0012\u0006\u0010\u0087\u0084\u0098\u00a8\u0006\"\u000538528\u0012\u0011\b=\u0012\u0006\u0010\u00c0\u0085\u0098\u00a8\u0006\"\u000538529\u0012\u0011\b>\u0012\u0006\u0010\u00ae\u0088\u0098\u00a8\u0006\"\u000538530\u0012\u0014\b?\u0012\u0006\u0010\u00c5\u0088\u0098\u00a8\u0006\"\b16005209\u0012\u0011\b@\u0012\u0006\u0010\u0093\u008c\u0098\u00a8\u0006\"\u000538531\u0012\u0013\bA\u0012\u0006\u0010\u0086\u008d\u0098\u00a8\u0006\"\u00078921285\u0012\u0011\bB\u0012\u0006\u0010\u00fd\u008e\u0098\u00a8\u0006\"\u000538532\u0012\u0011\bC\u0012\u0006\u0010\u00f7\u008f\u0098\u00a8\u0006\"\u000538533\u0012\u0011\bD\u0012\u0006\u0010\u00f9\u0090\u0098\u00a8\u0006\"\u000538534\u0012\u0011\bE\u0012\u0006\u0010\u00f0\u0091\u0098\u00a8\u0006\"\u000538535\u0012\u0011\bF\u0012\u0006\u0010\u0097\u0093\u0098\u00a8\u0006\"\u000538536\u0012\u0013\bG\u0012\u0006\u0010\u00f6\u0093\u0098\u00a8\u0006\"\u00074838437\u0012\u0011\bH\u0012\u0006\u0010\u008a\u0095\u0098\u00a8\u0006\"\u000545085\u0012\u0011\bI\u0012\u0006\u0010\u00ec\u0096\u0098\u00a8\u0006\"\u000545086\u0012\u0011\bJ\u0012\u0006\u0010\u00d9\u0099\u0098\u00a8\u0006\"\u000538540\u0012\u0011\bK\u0012\u0006\u0010\u00c8\u009b\u0098\u00a8\u0006\"\u000538544\u0012\u0011\bL\u0012\u0006\u0010\u0086\u00a0\u0098\u00a8\u0006\"\u000538546\u0012\u0011\bM\u0012\u0006\u0010\u00eb\u00a3\u0098\u00a8\u0006\"\u000538548\u0012\u0011\bN\u0012\u0006\u0010\u008c\u00a6\u0098\u00a8\u0006\"\u000538549\u0012\u0011\bO\u0012\u0006\u0010\u008c\u00a8\u0098\u00a8\u0006\"\u000538550\u0012\u0011\bP\u0012\u0006\u0010\u00e6\u00ab\u0098\u00a8\u0006\"\u000538551\u0012\u0011\bQ\u0012\u0006\u0010\u00b1\u00af\u0098\u00a8\u0006\"\u000538552\u0012\u0011\bR\u0012\u0006\u0010\u0095\u00b3\u0098\u00a8\u0006\"\u000549359\u0012\u0011\bS\u0012\u0006\u0010\u00be\u00b5\u0098\u00a8\u0006\"\u000549360\u0012\u0011\bT\u0012\u0006\u0010\u00cf\u00bb\u0098\u00a8\u0006\"\u000549361\u0012\u0011\bU\u0012\u0006\u0010\u009b\u00bd\u0098\u00a8\u0006\"\u000549362\u0012\u0011\bV\u0012\u0006\u0010\u008b\u00c0\u0098\u00a8\u0006\"\u000549363\u0012\u0011\bW\u0012\u0006\u0010\u009f\u00c3\u0098\u00a8\u0006\"\u000549364\u0012\u0011\bX\u0012\u0006\u0010\u009d\u00c6\u0098\u00a8\u0006\"\u000549365\u001a\b\u001a\u0006ZV8810 \u00c9\u00e7\u0097\u00a8\u0006\"`\n/\n\u001016821-701ff27f-2\u0012\b15:50:00\u001a\b20230916 \u0000*\u00035600\u0000\u0012\u001d\r\u0084\u00bd\u0013\u00c2\u0015\u00c1\n\u0092\u00c2\u001d\u0000\u0000\u00aaC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000XA(\u00c9\u00e7\u0097\u00a8\u0006B\b\u001a\u0006ZV8810" + }, + { + "type": "sin_recorrido", + "entity": "\n$48dc9b29-853c-4d95-8e10-b610c31453da\"`\n/\n\u001017076-701ff27f-2\u0012\b15:26:00\u001a\b20230916 \u0000*\u00035610\u0000\u0012\u001d\r\u00ba\u00c3\u0013\u00c2\u0015\u00d5\r\u0092\u00c2\u001d\u0000\u0000,C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b0\u00e8\u0097\u00a8\u0006B\b\u001a\u0006CBTT38" + }, + { + "type": "con_recorrido", + "entity": "\n$f37a3d9e-2461-4cea-9191-cbf3422bb261\u001a\u009f\u0007\n/\n\u001017072-701ff27f-2\u0012\b14:38:00\u001a\b20230916 \u0000*\u00035610\u0000\u0012\u0011\bI\u0012\u0006\u0010\u00ca\u00e8\u0097\u00a8\u0006\"\u000538527\u0012\u0011\bJ\u0012\u0006\u0010\u00a7\u00e9\u0097\u00a8\u0006\"\u000538528\u0012\u0011\bK\u0012\u0006\u0010\u009c\u00ea\u0097\u00a8\u0006\"\u000538529\u0012\u0011\bL\u0012\u0006\u0010\u00f5\u00eb\u0097\u00a8\u0006\"\u000538530\u0012\u0014\bM\u0012\u0006\u0010\u0082\u00ec\u0097\u00a8\u0006\"\b16005209\u0012\u0011\bN\u0012\u0006\u0010\u00eb\u00ed\u0097\u00a8\u0006\"\u000538531\u0012\u0013\bO\u0012\u0006\u0010\u00a1\u00ee\u0097\u00a8\u0006\"\u00078921285\u0012\u0011\bP\u0012\u0006\u0010\u008e\u00ef\u0097\u00a8\u0006\"\u000538532\u0012\u0011\bQ\u0012\u0006\u0010\u00c1\u00ef\u0097\u00a8\u0006\"\u000538533\u0012\u0011\bR\u0012\u0006\u0010\u00f5\u00ef\u0097\u00a8\u0006\"\u000538534\u0012\u0011\bS\u0012\u0006\u0010\u00a5\u00f0\u0097\u00a8\u0006\"\u000538535\u0012\u0011\bT\u0012\u0006\u0010\u00df\u00f0\u0097\u00a8\u0006\"\u000538536\u0012\u0013\bU\u0012\u0006\u0010\u0087\u00f1\u0097\u00a8\u0006\"\u00074838437\u0012\u0011\bV\u0012\u0006\u0010\u00ba\u00f1\u0097\u00a8\u0006\"\u000545085\u0012\u0011\bW\u0012\u0006\u0010\u008a\u00f2\u0097\u00a8\u0006\"\u000545086\u0012\u0011\bX\u0012\u0006\u0010\u00bc\u00f2\u0097\u00a8\u0006\"\u000538539\u0012\u0011\bY\u0012\u0006\u0010\u00fc\u00f2\u0097\u00a8\u0006\"\u000538540\u0012\u0011\bZ\u0012\u0006\u0010\u00c9\u00f3\u0097\u00a8\u0006\"\u000538544\u0012\u0011\b[\u0012\u0006\u0010\u0085\u00f4\u0097\u00a8\u0006\"\u000538545\u0012\u0011\b\\\u0012\u0006\u0010\u00ea\u00f4\u0097\u00a8\u0006\"\u000538546\u0012\u0011\b]\u0012\u0006\u0010\u00e3\u00f5\u0097\u00a8\u0006\"\u000538548\u0012\u0011\b^\u0012\u0006\u0010\u00a6\u00f6\u0097\u00a8\u0006\"\u000538549\u0012\u0011\b_\u0012\u0006\u0010\u00e3\u00f6\u0097\u00a8\u0006\"\u000538550\u0012\u0011\b`\u0012\u0006\u0010\u00bb\u00f7\u0097\u00a8\u0006\"\u000538551\u0012\u0011\ba\u0012\u0006\u0010\u009e\u00f8\u0097\u00a8\u0006\"\u000538552\u0012\u0011\bb\u0012\u0006\u0010\u00f7\u00f8\u0097\u00a8\u0006\"\u000549359\u0012\u0011\bc\u0012\u0006\u0010\u00ad\u00f9\u0097\u00a8\u0006\"\u000549360\u0012\u0011\bd\u0012\u0006\u0010\u00a8\u00fa\u0097\u00a8\u0006\"\u000549361\u0012\u0011\be\u0012\u0006\u0010\u00c7\u00fa\u0097\u00a8\u0006\"\u000549362\u0012\u0011\bf\u0012\u0006\u0010\u00fc\u00fa\u0097\u00a8\u0006\"\u000549363\u0012\u0011\bg\u0012\u0006\u0010\u00b4\u00fb\u0097\u00a8\u0006\"\u000549364\u0012\u0011\bh\u0012\u0006\u0010\u00e8\u00fb\u0097\u00a8\u0006\"\u000549365\u0012\u0011\bi\u0012\u0006\u0010\u00b2\u00fc\u0097\u00a8\u0006\"\u000538560\u0012\u0011\bj\u0012\u0006\u0010\u00da\u00fc\u0097\u00a8\u0006\"\u000542857\u0012\u0011\bk\u0012\u0006\u0010\u0080\u00fd\u0097\u00a8\u0006\"\u000538562\u0012\u0011\bl\u0012\u0006\u0010\u00b8\u00fd\u0097\u00a8\u0006\"\u000538563\u0012\u0011\bm\u0012\u0006\u0010\u00e7\u00fd\u0097\u00a8\u0006\"\u000538564\u0012\u0011\bn\u0012\u0006\u0010\u00dd\u00fe\u0097\u00a8\u0006\"\u000538565\u0012\u0011\bo\u0012\u0006\u0010\u009b\u00ff\u0097\u00a8\u0006\"\u000540932\u0012\u0011\bp\u0012\u0006\u0010\u00fd\u00ff\u0097\u00a8\u0006\"\u000538567\u0012\u0011\bq\u0012\u0006\u0010\u00bb\u0080\u0098\u00a8\u0006\"\u000538568\u0012\u0011\br\u0012\u0006\u0010\u009c\u0081\u0098\u00a8\u0006\"\u000538570\u0012\u0011\bs\u0012\u0006\u0010\u00ea\u0081\u0098\u00a8\u0006\"\u000538571\u0012\u0011\bt\u0012\u0006\u0010\u00b5\u0082\u0098\u00a8\u0006\"\u000538572\u0012\u0011\bu\u0012\u0006\u0010\u00e9\u0082\u0098\u00a8\u0006\"\u000538573\u001a\b\u001a\u0006DRTH95 \u00aa\u00e8\u0097\u00a8\u0006\"`\n/\n\u001017072-701ff27f-2\u0012\b14:38:00\u001a\b20230916 \u0000*\u00035610\u0000\u0012\u001d\rJ9\u0013\u00c2\u0015Q\u001b\u0092\u00c2\u001d\u0000\u0000\u00a7C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UU}A(\u00aa\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DRTH95" + }, + { + "type": "con_recorrido", + "entity": "\n$d94c2c3f-864c-496f-a342-2333e4fb4835\u001a\u0094\f\n/\n\u001017073-701ff27f-2\u0012\b14:50:00\u001a\b20230916 \u0000*\u00035610\u0000\u0012\u0011\b(\u0012\u0006\u0010\u009f\u00e9\u0097\u00a8\u0006\"\u000542297\u0012\u0011\b)\u0012\u0006\u0010\u0084\u00ea\u0097\u00a8\u0006\"\u000542298\u0012\u0011\b*\u0012\u0006\u0010\u00c6\u00ea\u0097\u00a8\u0006\"\u000542299\u0012\u0011\b+\u0012\u0006\u0010\u00f1\u00ea\u0097\u00a8\u0006\"\u000549295\u0012\u0011\b,\u0012\u0006\u0010\u00ea\u00eb\u0097\u00a8\u0006\"\u000549296\u0012\u0011\b-\u0012\u0006\u0010\u00be\u00ec\u0097\u00a8\u0006\"\u000549297\u0012\u0011\b.\u0012\u0006\u0010\u00e4\u00ec\u0097\u00a8\u0006\"\u000549298\u0012\u0011\b/\u0012\u0006\u0010\u009f\u00ed\u0097\u00a8\u0006\"\u000549299\u0012\u0011\b0\u0012\u0006\u0010\u00d2\u00ed\u0097\u00a8\u0006\"\u000549300\u0012\u0011\b1\u0012\u0006\u0010\u00a4\u00ee\u0097\u00a8\u0006\"\u000549301\u0012\u0011\b2\u0012\u0006\u0010\u00e6\u00ee\u0097\u00a8\u0006\"\u000549302\u0012\u0011\b3\u0012\u0006\u0010\u0092\u00ef\u0097\u00a8\u0006\"\u000549303\u0012\u0011\b4\u0012\u0006\u0010\u00be\u00ef\u0097\u00a8\u0006\"\u000549304\u0012\u0011\b5\u0012\u0006\u0010\u00e0\u00ef\u0097\u00a8\u0006\"\u000549305\u0012\u0011\b6\u0012\u0006\u0010\u0096\u00f0\u0097\u00a8\u0006\"\u000549306\u0012\u0011\b7\u0012\u0006\u0010\u00bd\u00f0\u0097\u00a8\u0006\"\u000549307\u0012\u0011\b8\u0012\u0006\u0010\u00d4\u00f0\u0097\u00a8\u0006\"\u000549308\u0012\u0011\b9\u0012\u0006\u0010\u00ec\u00f0\u0097\u00a8\u0006\"\u000549309\u0012\u0011\b:\u0012\u0006\u0010\u0087\u00f1\u0097\u00a8\u0006\"\u000542315\u0012\u0011\b;\u0012\u0006\u0010\u009d\u00f1\u0097\u00a8\u0006\"\u000542316\u0012\u0011\b<\u0012\u0006\u0010\u00cf\u00f1\u0097\u00a8\u0006\"\u000542317\u0012\u0011\b=\u0012\u0006\u0010\u0082\u00f2\u0097\u00a8\u0006\"\u000542318\u0012\u0013\b>\u0012\u0006\u0010\u00c8\u00f2\u0097\u00a8\u0006\"\u00078606396\u0012\u0011\b?\u0012\u0006\u0010\u008f\u00f3\u0097\u00a8\u0006\"\u000538514\u0012\u0011\b@\u0012\u0006\u0010\u00b5\u00f3\u0097\u00a8\u0006\"\u000538516\u0012\u0011\bA\u0012\u0006\u0010\u00f0\u00f3\u0097\u00a8\u0006\"\u000538518\u0012\u0011\bB\u0012\u0006\u0010\u00d5\u00f4\u0097\u00a8\u0006\"\u000538520\u0012\u0011\bC\u0012\u0006\u0010\u00fd\u00f4\u0097\u00a8\u0006\"\u000538521\u0012\u0011\bD\u0012\u0006\u0010\u00af\u00f5\u0097\u00a8\u0006\"\u000538522\u0012\u0011\bE\u0012\u0006\u0010\u00e2\u00f5\u0097\u00a8\u0006\"\u000538523\u0012\u0011\bF\u0012\u0006\u0010\u0098\u00f6\u0097\u00a8\u0006\"\u000538524\u0012\u0011\bG\u0012\u0006\u0010\u00ca\u00f6\u0097\u00a8\u0006\"\u000538525\u0012\u0011\bH\u0012\u0006\u0010\u0080\u00f7\u0097\u00a8\u0006\"\u000538526\u0012\u0011\bI\u0012\u0006\u0010\u00b3\u00f7\u0097\u00a8\u0006\"\u000538527\u0012\u0011\bJ\u0012\u0006\u0010\u008f\u00f8\u0097\u00a8\u0006\"\u000538528\u0012\u0011\bK\u0012\u0006\u0010\u0089\u00f9\u0097\u00a8\u0006\"\u000538529\u0012\u0011\bL\u0012\u0006\u0010\u00f8\u00fa\u0097\u00a8\u0006\"\u000538530\u0012\u0014\bM\u0012\u0006\u0010\u0086\u00fb\u0097\u00a8\u0006\"\b16005209\u0012\u0011\bN\u0012\u0006\u0010\u009f\u00fd\u0097\u00a8\u0006\"\u000538531\u0012\u0013\bO\u0012\u0006\u0010\u00e3\u00fd\u0097\u00a8\u0006\"\u00078921285\u0012\u0011\bP\u0012\u0006\u0010\u00f0\u00fe\u0097\u00a8\u0006\"\u000538532\u0012\u0011\bQ\u0012\u0006\u0010\u00b5\u00ff\u0097\u00a8\u0006\"\u000538533\u0012\u0011\bR\u0012\u0006\u0010\u00fd\u00ff\u0097\u00a8\u0006\"\u000538534\u0012\u0011\bS\u0012\u0006\u0010\u00bf\u0080\u0098\u00a8\u0006\"\u000538535\u0012\u0011\bT\u0012\u0006\u0010\u0091\u0081\u0098\u00a8\u0006\"\u000538536\u0012\u0013\bU\u0012\u0006\u0010\u00ca\u0081\u0098\u00a8\u0006\"\u00074838437\u0012\u0011\bV\u0012\u0006\u0010\u0095\u0082\u0098\u00a8\u0006\"\u000545085\u0012\u0011\bW\u0012\u0006\u0010\u008e\u0083\u0098\u00a8\u0006\"\u000545086\u0012\u0011\bX\u0012\u0006\u0010\u00da\u0083\u0098\u00a8\u0006\"\u000538539\u0012\u0011\bY\u0012\u0006\u0010\u00bf\u0084\u0098\u00a8\u0006\"\u000538540\u0012\u0011\bZ\u0012\u0006\u0010\u00ba\u0085\u0098\u00a8\u0006\"\u000538544\u0012\u0011\b[\u0012\u0006\u0010\u009c\u0086\u0098\u00a8\u0006\"\u000538545\u0012\u0011\b\\\u0012\u0006\u0010\u00c7\u0087\u0098\u00a8\u0006\"\u000538546\u0012\u0011\b]\u0012\u0006\u0010\u009d\u0089\u0098\u00a8\u0006\"\u000538548\u0012\u0011\b^\u0012\u0006\u0010\u0096\u008a\u0098\u00a8\u0006\"\u000538549\u0012\u0011\b_\u0012\u0006\u0010\u0089\u008b\u0098\u00a8\u0006\"\u000538550\u0012\u0011\b`\u0012\u0006\u0010\u00b0\u008c\u0098\u00a8\u0006\"\u000538551\u0012\u0011\ba\u0012\u0006\u0010\u00f4\u008d\u0098\u00a8\u0006\"\u000538552\u0012\u0011\bb\u0012\u0006\u0010\u00a8\u008f\u0098\u00a8\u0006\"\u000549359\u0012\u0011\bc\u0012\u0006\u0010\u0099\u0090\u0098\u00a8\u0006\"\u000549360\u0012\u0011\bd\u0012\u0006\u0010\u00a3\u0092\u0098\u00a8\u0006\"\u000549361\u0012\u0011\be\u0012\u0006\u0010\u00e7\u0092\u0098\u00a8\u0006\"\u000549362\u0012\u0011\bf\u0012\u0006\u0010\u00de\u0093\u0098\u00a8\u0006\"\u000549363\u0012\u0011\bg\u0012\u0006\u0010\u00de\u0094\u0098\u00a8\u0006\"\u000549364\u0012\u0011\bh\u0012\u0006\u0010\u00d8\u0095\u0098\u00a8\u0006\"\u000549365\u0012\u0011\bi\u0012\u0006\u0010\u0087\u0097\u0098\u00a8\u0006\"\u000538560\u0012\u0011\bj\u0012\u0006\u0010\u00e9\u0097\u0098\u00a8\u0006\"\u000542857\u0012\u0011\bk\u0012\u0006\u0010\u00c6\u0098\u0098\u00a8\u0006\"\u000538562\u0012\u0011\bl\u0012\u0006\u0010\u00d3\u0099\u0098\u00a8\u0006\"\u000538563\u0012\u0011\bm\u0012\u0006\u0010\u00cc\u009a\u0098\u00a8\u0006\"\u000538564\u0012\u0011\bn\u0012\u0006\u0010\u0082\u009d\u0098\u00a8\u0006\"\u000538565\u0012\u0011\bo\u0012\u0006\u0010\u00ab\u009e\u0098\u00a8\u0006\"\u000540932\u0012\u0011\bp\u0012\u0006\u0010\u00bb\u00a0\u0098\u00a8\u0006\"\u000538567\u0012\u0011\bq\u0012\u0006\u0010\u00ee\u00a1\u0098\u00a8\u0006\"\u000538568\u0012\u0011\br\u0012\u0006\u0010\u008c\u00a4\u0098\u00a8\u0006\"\u000538570\u0012\u0011\bs\u0012\u0006\u0010\u00fb\u00a5\u0098\u00a8\u0006\"\u000538571\u0012\u0011\bt\u0012\u0006\u0010\u00e7\u00a7\u0098\u00a8\u0006\"\u000538572\u0012\u0011\bu\u0012\u0006\u0010\u008f\u00a9\u0098\u00a8\u0006\"\u000538573\u001a\b\u001a\u0006FDBX25 \u00a6\u00e8\u0097\u00a8\u0006\"`\n/\n\u001017073-701ff27f-2\u0012\b14:50:00\u001a\b20230916 \u0000*\u00035610\u0000\u0012\u001d\rF\u0084\u0013\u00c2\u0015s\u0013\u0092\u00c2\u001d\u0000\u0000\u00b1C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008e\u00e3PA(\u00a6\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FDBX25" + }, + { + "type": "sin_recorrido", + "entity": "\n$ade4a3ff-d56a-4d09-8b20-5960f5af96a3\"`\n/\n\u001016974-701ff27f-2\u0012\b14:01:00\u001a\b20230916 \u0000*\u00035610\u0001\u0012\u001d\r\u001d\u00c4\u0013\u00c2\u0015\u00d4\r\u0092\u00c2\u001d\u0000\u0000TC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00bc\u00e4\u0097\u00a8\u0006B\b\u001a\u0006FDBY83" + }, + { + "type": "con_recorrido", + "entity": "\n$56e97065-073e-467f-8b59-d21050a2905f\u001a\u00f8\r\n/\n\u001017074-701ff27f-2\u0012\b15:02:00\u001a\b20230916 \u0000*\u00035610\u0000\u0012\u0011\b\u001c\u0012\u0006\u0010\u00ae\u00e8\u0097\u00a8\u0006\"\u000542285\u0012\u0011\b\u001d\u0012\u0006\u0010\u008c\u00e9\u0097\u00a8\u0006\"\u000542286\u0012\u0011\b\u001e\u0012\u0006\u0010\u009d\u00e9\u0097\u00a8\u0006\"\u000542287\u0012\u0011\b\u001f\u0012\u0006\u0010\u00d8\u00e9\u0097\u00a8\u0006\"\u000542288\u0012\u0011\b \u0012\u0006\u0010\u00fd\u00e9\u0097\u00a8\u0006\"\u000542289\u0012\u0011\b!\u0012\u0006\u0010\u00d1\u00ea\u0097\u00a8\u0006\"\u000542290\u0012\u0011\b\"\u0012\u0006\u0010\u0085\u00eb\u0097\u00a8\u0006\"\u000542291\u0012\u0011\b#\u0012\u0006\u0010\u00dc\u00eb\u0097\u00a8\u0006\"\u000542292\u0012\u0011\b$\u0012\u0006\u0010\u00a4\u00ec\u0097\u00a8\u0006\"\u000542293\u0012\u0011\b%\u0012\u0006\u0010\u00cc\u00ed\u0097\u00a8\u0006\"\u000542294\u0012\u0011\b&\u0012\u0006\u0010\u00d1\u00ee\u0097\u00a8\u0006\"\u000542295\u0012\u0011\b'\u0012\u0006\u0010\u00c0\u00ef\u0097\u00a8\u0006\"\u000542296\u0012\u0011\b(\u0012\u0006\u0010\u00ba\u00f0\u0097\u00a8\u0006\"\u000542297\u0012\u0011\b)\u0012\u0006\u0010\u0098\u00f1\u0097\u00a8\u0006\"\u000542298\u0012\u0011\b*\u0012\u0006\u0010\u00d6\u00f1\u0097\u00a8\u0006\"\u000542299\u0012\u0011\b+\u0012\u0006\u0010\u00ff\u00f1\u0097\u00a8\u0006\"\u000549295\u0012\u0011\b,\u0012\u0006\u0010\u00f5\u00f2\u0097\u00a8\u0006\"\u000549296\u0012\u0011\b-\u0012\u0006\u0010\u00c8\u00f3\u0097\u00a8\u0006\"\u000549297\u0012\u0011\b.\u0012\u0006\u0010\u00ee\u00f3\u0097\u00a8\u0006\"\u000549298\u0012\u0011\b/\u0012\u0006\u0010\u00a9\u00f4\u0097\u00a8\u0006\"\u000549299\u0012\u0011\b0\u0012\u0006\u0010\u00dd\u00f4\u0097\u00a8\u0006\"\u000549300\u0012\u0011\b1\u0012\u0006\u0010\u00b2\u00f5\u0097\u00a8\u0006\"\u000549301\u0012\u0011\b2\u0012\u0006\u0010\u00f7\u00f5\u0097\u00a8\u0006\"\u000549302\u0012\u0011\b3\u0012\u0006\u0010\u00a5\u00f6\u0097\u00a8\u0006\"\u000549303\u0012\u0011\b4\u0012\u0006\u0010\u00d4\u00f6\u0097\u00a8\u0006\"\u000549304\u0012\u0011\b5\u0012\u0006\u0010\u00f9\u00f6\u0097\u00a8\u0006\"\u000549305\u0012\u0011\b6\u0012\u0006\u0010\u00b3\u00f7\u0097\u00a8\u0006\"\u000549306\u0012\u0011\b7\u0012\u0006\u0010\u00dd\u00f7\u0097\u00a8\u0006\"\u000549307\u0012\u0011\b8\u0012\u0006\u0010\u00f7\u00f7\u0097\u00a8\u0006\"\u000549308\u0012\u0011\b9\u0012\u0006\u0010\u0091\u00f8\u0097\u00a8\u0006\"\u000549309\u0012\u0011\b:\u0012\u0006\u0010\u00af\u00f8\u0097\u00a8\u0006\"\u000542315\u0012\u0011\b;\u0012\u0006\u0010\u00c8\u00f8\u0097\u00a8\u0006\"\u000542316\u0012\u0011\b<\u0012\u0006\u0010\u00ff\u00f8\u0097\u00a8\u0006\"\u000542317\u0012\u0011\b=\u0012\u0006\u0010\u00b9\u00f9\u0097\u00a8\u0006\"\u000542318\u0012\u0013\b>\u0012\u0006\u0010\u0089\u00fa\u0097\u00a8\u0006\"\u00078606396\u0012\u0011\b?\u0012\u0006\u0010\u00db\u00fa\u0097\u00a8\u0006\"\u000538514\u0012\u0011\b@\u0012\u0006\u0010\u0087\u00fb\u0097\u00a8\u0006\"\u000538516\u0012\u0011\bA\u0012\u0006\u0010\u00cc\u00fb\u0097\u00a8\u0006\"\u000538518\u0012\u0011\bB\u0012\u0006\u0010\u00c5\u00fc\u0097\u00a8\u0006\"\u000538520\u0012\u0011\bC\u0012\u0006\u0010\u00f5\u00fc\u0097\u00a8\u0006\"\u000538521\u0012\u0011\bD\u0012\u0006\u0010\u00b2\u00fd\u0097\u00a8\u0006\"\u000538522\u0012\u0011\bE\u0012\u0006\u0010\u00f0\u00fd\u0097\u00a8\u0006\"\u000538523\u0012\u0011\bF\u0012\u0006\u0010\u00b3\u00fe\u0097\u00a8\u0006\"\u000538524\u0012\u0011\bG\u0012\u0006\u0010\u00f2\u00fe\u0097\u00a8\u0006\"\u000538525\u0012\u0011\bH\u0012\u0006\u0010\u00b6\u00ff\u0097\u00a8\u0006\"\u000538526\u0012\u0011\bI\u0012\u0006\u0010\u00f6\u00ff\u0097\u00a8\u0006\"\u000538527\u0012\u0011\bJ\u0012\u0006\u0010\u00ec\u0080\u0098\u00a8\u0006\"\u000538528\u0012\u0011\bK\u0012\u0006\u0010\u008b\u0082\u0098\u00a8\u0006\"\u000538529\u0012\u0011\bL\u0012\u0006\u0010\u00cb\u0084\u0098\u00a8\u0006\"\u000538530\u0012\u0014\bM\u0012\u0006\u0010\u00e0\u0084\u0098\u00a8\u0006\"\b16005209\u0012\u0011\bN\u0012\u0006\u0010\u00e8\u0087\u0098\u00a8\u0006\"\u000538531\u0012\u0013\bO\u0012\u0006\u0010\u00c9\u0088\u0098\u00a8\u0006\"\u00078921285\u0012\u0011\bP\u0012\u0006\u0010\u0098\u008a\u0098\u00a8\u0006\"\u000538532\u0012\u0011\bQ\u0012\u0006\u0010\u00fd\u008a\u0098\u00a8\u0006\"\u000538533\u0012\u0011\bR\u0012\u0006\u0010\u00e9\u008b\u0098\u00a8\u0006\"\u000538534\u0012\u0011\bS\u0012\u0006\u0010\u00cc\u008c\u0098\u00a8\u0006\"\u000538535\u0012\u0011\bT\u0012\u0006\u0010\u00ca\u008d\u0098\u00a8\u0006\"\u000538536\u0012\u0013\bU\u0012\u0006\u0010\u00a2\u008e\u0098\u00a8\u0006\"\u00074838437\u0012\u0011\bV\u0012\u0006\u0010\u0097\u008f\u0098\u00a8\u0006\"\u000545085\u0012\u0011\bW\u0012\u0006\u0010\u00d5\u0090\u0098\u00a8\u0006\"\u000545086\u0012\u0011\bX\u0012\u0006\u0010\u00cf\u0091\u0098\u00a8\u0006\"\u000538539\u0012\u0011\bY\u0012\u0006\u0010\u00f2\u0092\u0098\u00a8\u0006\"\u000538540\u0012\u0011\bZ\u0012\u0006\u0010\u00bd\u0094\u0098\u00a8\u0006\"\u000538544\u0012\u0011\b[\u0012\u0006\u0010\u00e1\u0095\u0098\u00a8\u0006\"\u000538545\u0012\u0011\b\\\u0012\u0006\u0010\u0084\u0098\u0098\u00a8\u0006\"\u000538546\u0012\u0011\b]\u0012\u0006\u0010\u00fb\u009a\u0098\u00a8\u0006\"\u000538548\u0012\u0011\b^\u0012\u0006\u0010\u00d4\u009c\u0098\u00a8\u0006\"\u000538549\u0012\u0011\b_\u0012\u0006\u0010\u00a4\u009e\u0098\u00a8\u0006\"\u000538550\u0012\u0011\b`\u0012\u0006\u0010\u00db\u00a0\u0098\u00a8\u0006\"\u000538551\u0012\u0011\ba\u0012\u0006\u0010\u00d0\u00a3\u0098\u00a8\u0006\"\u000538552\u0012\u0011\bb\u0012\u0006\u0010\u00b2\u00a6\u0098\u00a8\u0006\"\u000549359\u0012\u0011\bc\u0012\u0006\u0010\u0093\u00a8\u0098\u00a8\u0006\"\u000549360\u0012\u0011\bd\u0012\u0006\u0010\u00b4\u00ac\u0098\u00a8\u0006\"\u000549361\u0012\u0011\be\u0012\u0006\u0010\u00c3\u00ad\u0098\u00a8\u0006\"\u000549362\u0012\u0011\bf\u0012\u0006\u0010\u00c3\u00af\u0098\u00a8\u0006\"\u000549363\u0012\u0011\bg\u0012\u0006\u0010\u00d7\u00b1\u0098\u00a8\u0006\"\u000549364\u0012\u0011\bh\u0012\u0006\u0010\u00e5\u00b3\u0098\u00a8\u0006\"\u000549365\u0012\u0011\bi\u0012\u0006\u0010\u00f2\u00b6\u0098\u00a8\u0006\"\u000538560\u0012\u0011\bj\u0012\u0006\u0010\u00d4\u00b8\u0098\u00a8\u0006\"\u000542857\u0012\u0011\bk\u0012\u0006\u0010\u00ae\u00ba\u0098\u00a8\u0006\"\u000538562\u0012\u0011\bl\u0012\u0006\u0010\u00fe\u00bc\u0098\u00a8\u0006\"\u000538563\u0012\u0011\bm\u0012\u0006\u0010\u00a3\u00bf\u0098\u00a8\u0006\"\u000538564\u0012\u0011\bn\u0012\u0006\u0010\u00af\u00c5\u0098\u00a8\u0006\"\u000538565\u0012\u0011\bo\u0012\u0006\u0010\u00e7\u00c8\u0098\u00a8\u0006\"\u000540932\u0012\u0011\bp\u0012\u0006\u0010\u00c6\u00ce\u0098\u00a8\u0006\"\u000538567\u0012\u0011\bq\u0012\u0006\u0010\u00be\u00d2\u0098\u00a8\u0006\"\u000538568\u0012\u0011\br\u0012\u0006\u0010\u00fd\u00d8\u0098\u00a8\u0006\"\u000538570\u0012\u0011\bs\u0012\u0006\u0010\u00d4\u00de\u0098\u00a8\u0006\"\u000538571\u0012\u0011\bt\u0012\u0006\u0010\u00c0\u00e4\u0098\u00a8\u0006\"\u000538572\u0012\u0011\bu\u0012\u0006\u0010\u00e9\u00e8\u0098\u00a8\u0006\"\u000538573\u001a\b\u001a\u0006FHSY68 \u0098\u00e8\u0097\u00a8\u0006\"`\n/\n\u001017074-701ff27f-2\u0012\b15:02:00\u001a\b20230916 \u0000*\u00035610\u0000\u0012\u001d\r!\u00ae\u0013\u00c2\u0015w\u000e\u0092\u00c2\u001d\u0000\u0000(B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00ab\u00aa\u0012A(\u0098\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FHSY68" + }, + { + "type": "con_recorrido", + "entity": "\n$7bb5090a-f651-470a-b835-fa89cd48ac4d\u001a\u00c4\u0010\n/\n\u001017075-701ff27f-2\u0012\b15:14:00\u001a\b20230916 \u0000*\u00035610\u0000\u0012\u0011\b\u000b\u0012\u0006\u0010\u00c6\u00e8\u0097\u00a8\u0006\"\u000542950\u0012\u0014\b\f\u0012\u0006\u0010\u00f4\u00e8\u0097\u00a8\u0006\"\b20540195\u0012\u0014\b\r\u0012\u0006\u0010\u009f\u00e9\u0097\u00a8\u0006\"\b20540196\u0012\u0011\b\u000e\u0012\u0006\u0010\u00ec\u00e9\u0097\u00a8\u0006\"\u000542948\u0012\u0014\b\u000f\u0012\u0006\u0010\u0089\u00ea\u0097\u00a8\u0006\"\b20540198\u0012\u0011\b\u0010\u0012\u0006\u0010\u009f\u00ea\u0097\u00a8\u0006\"\u000542946\u0012\u0011\b\u0011\u0012\u0006\u0010\u00d1\u00ea\u0097\u00a8\u0006\"\u000542894\u0012\u0011\b\u0012\u0012\u0006\u0010\u00f4\u00ea\u0097\u00a8\u0006\"\u000542893\u0012\u0011\b\u0013\u0012\u0006\u0010\u0089\u00eb\u0097\u00a8\u0006\"\u000542891\u0012\u0011\b\u0014\u0012\u0006\u0010\u00a3\u00eb\u0097\u00a8\u0006\"\u000542892\u0012\u0011\b\u0015\u0012\u0006\u0010\u00cc\u00eb\u0097\u00a8\u0006\"\u000542895\u0012\u0011\b\u0016\u0012\u0006\u0010\u00d8\u00eb\u0097\u00a8\u0006\"\u000542896\u0012\u0011\b\u0017\u0012\u0006\u0010\u0081\u00ec\u0097\u00a8\u0006\"\u000542889\u0012\u0011\b\u0018\u0012\u0006\u0010\u00ac\u00ec\u0097\u00a8\u0006\"\u000542888\u0012\u0011\b\u0019\u0012\u0006\u0010\u00d5\u00ec\u0097\u00a8\u0006\"\u000542890\u0012\u0011\b\u001a\u0012\u0006\u0010\u0080\u00ed\u0097\u00a8\u0006\"\u000542886\u0012\u0011\b\u001b\u0012\u0006\u0010\u0095\u00ed\u0097\u00a8\u0006\"\u000542885\u0012\u0011\b\u001c\u0012\u0006\u0010\u00d3\u00ed\u0097\u00a8\u0006\"\u000542285\u0012\u0011\b\u001d\u0012\u0006\u0010\u00a8\u00ee\u0097\u00a8\u0006\"\u000542286\u0012\u0011\b\u001e\u0012\u0006\u0010\u00b9\u00ee\u0097\u00a8\u0006\"\u000542287\u0012\u0011\b\u001f\u0012\u0006\u0010\u00ef\u00ee\u0097\u00a8\u0006\"\u000542288\u0012\u0011\b \u0012\u0006\u0010\u0092\u00ef\u0097\u00a8\u0006\"\u000542289\u0012\u0011\b!\u0012\u0006\u0010\u00e2\u00ef\u0097\u00a8\u0006\"\u000542290\u0012\u0011\b\"\u0012\u0006\u0010\u0093\u00f0\u0097\u00a8\u0006\"\u000542291\u0012\u0011\b#\u0012\u0006\u0010\u00e7\u00f0\u0097\u00a8\u0006\"\u000542292\u0012\u0011\b$\u0012\u0006\u0010\u00ad\u00f1\u0097\u00a8\u0006\"\u000542293\u0012\u0011\b%\u0012\u0006\u0010\u00d3\u00f2\u0097\u00a8\u0006\"\u000542294\u0012\u0011\b&\u0012\u0006\u0010\u00da\u00f3\u0097\u00a8\u0006\"\u000542295\u0012\u0011\b'\u0012\u0006\u0010\u00cb\u00f4\u0097\u00a8\u0006\"\u000542296\u0012\u0011\b(\u0012\u0006\u0010\u00ca\u00f5\u0097\u00a8\u0006\"\u000542297\u0012\u0011\b)\u0012\u0006\u0010\u00ac\u00f6\u0097\u00a8\u0006\"\u000542298\u0012\u0011\b*\u0012\u0006\u0010\u00ee\u00f6\u0097\u00a8\u0006\"\u000542299\u0012\u0011\b+\u0012\u0006\u0010\u009a\u00f7\u0097\u00a8\u0006\"\u000549295\u0012\u0011\b,\u0012\u0006\u0010\u009a\u00f8\u0097\u00a8\u0006\"\u000549296\u0012\u0011\b-\u0012\u0006\u0010\u00f4\u00f8\u0097\u00a8\u0006\"\u000549297\u0012\u0011\b.\u0012\u0006\u0010\u009e\u00f9\u0097\u00a8\u0006\"\u000549298\u0012\u0011\b/\u0012\u0006\u0010\u00e0\u00f9\u0097\u00a8\u0006\"\u000549299\u0012\u0011\b0\u0012\u0006\u0010\u009a\u00fa\u0097\u00a8\u0006\"\u000549300\u0012\u0011\b1\u0012\u0006\u0010\u00f9\u00fa\u0097\u00a8\u0006\"\u000549301\u0012\u0011\b2\u0012\u0006\u0010\u00c7\u00fb\u0097\u00a8\u0006\"\u000549302\u0012\u0011\b3\u0012\u0006\u0010\u00fc\u00fb\u0097\u00a8\u0006\"\u000549303\u0012\u0011\b4\u0012\u0006\u0010\u00b2\u00fc\u0097\u00a8\u0006\"\u000549304\u0012\u0011\b5\u0012\u0006\u0010\u00dc\u00fc\u0097\u00a8\u0006\"\u000549305\u0012\u0011\b6\u0012\u0006\u0010\u00a0\u00fd\u0097\u00a8\u0006\"\u000549306\u0012\u0011\b7\u0012\u0006\u0010\u00d1\u00fd\u0097\u00a8\u0006\"\u000549307\u0012\u0011\b8\u0012\u0006\u0010\u00ef\u00fd\u0097\u00a8\u0006\"\u000549308\u0012\u0011\b9\u0012\u0006\u0010\u008d\u00fe\u0097\u00a8\u0006\"\u000549309\u0012\u0011\b:\u0012\u0006\u0010\u00b1\u00fe\u0097\u00a8\u0006\"\u000542315\u0012\u0011\b;\u0012\u0006\u0010\u00ce\u00fe\u0097\u00a8\u0006\"\u000542316\u0012\u0011\b<\u0012\u0006\u0010\u0090\u00ff\u0097\u00a8\u0006\"\u000542317\u0012\u0011\b=\u0012\u0006\u0010\u00d4\u00ff\u0097\u00a8\u0006\"\u000542318\u0012\u0013\b>\u0012\u0006\u0010\u00b5\u0080\u0098\u00a8\u0006\"\u00078606396\u0012\u0011\b?\u0012\u0006\u0010\u0098\u0081\u0098\u00a8\u0006\"\u000538514\u0012\u0011\b@\u0012\u0006\u0010\u00ce\u0081\u0098\u00a8\u0006\"\u000538516\u0012\u0011\bA\u0012\u0006\u0010\u00a3\u0082\u0098\u00a8\u0006\"\u000538518\u0012\u0011\bB\u0012\u0006\u0010\u00b8\u0083\u0098\u00a8\u0006\"\u000538520\u0012\u0011\bC\u0012\u0006\u0010\u00f4\u0083\u0098\u00a8\u0006\"\u000538521\u0012\u0011\bD\u0012\u0006\u0010\u00c0\u0084\u0098\u00a8\u0006\"\u000538522\u0012\u0011\bE\u0012\u0006\u0010\u008f\u0085\u0098\u00a8\u0006\"\u000538523\u0012\u0011\bF\u0012\u0006\u0010\u00e3\u0085\u0098\u00a8\u0006\"\u000538524\u0012\u0011\bG\u0012\u0006\u0010\u00b4\u0086\u0098\u00a8\u0006\"\u000538525\u0012\u0011\bH\u0012\u0006\u0010\u008b\u0087\u0098\u00a8\u0006\"\u000538526\u0012\u0011\bI\u0012\u0006\u0010\u00de\u0087\u0098\u00a8\u0006\"\u000538527\u0012\u0011\bJ\u0012\u0006\u0010\u00f9\u0088\u0098\u00a8\u0006\"\u000538528\u0012\u0011\bK\u0012\u0006\u0010\u00ca\u008a\u0098\u00a8\u0006\"\u000538529\u0012\u0011\bL\u0012\u0006\u0010\u00fc\u008d\u0098\u00a8\u0006\"\u000538530\u0012\u0014\bM\u0012\u0006\u0010\u0098\u008e\u0098\u00a8\u0006\"\b16005209\u0012\u0011\bN\u0012\u0006\u0010\u00bc\u0092\u0098\u00a8\u0006\"\u000538531\u0012\u0013\bO\u0012\u0006\u0010\u00c7\u0093\u0098\u00a8\u0006\"\u00078921285\u0012\u0011\bP\u0012\u0006\u0010\u00f3\u0095\u0098\u00a8\u0006\"\u000538532\u0012\u0011\bQ\u0012\u0006\u0010\u0088\u0097\u0098\u00a8\u0006\"\u000538533\u0012\u0011\bR\u0012\u0006\u0010\u00a7\u0098\u0098\u00a8\u0006\"\u000538534\u0012\u0011\bS\u0012\u0006\u0010\u00bc\u0099\u0098\u00a8\u0006\"\u000538535\u0012\u0011\bT\u0012\u0006\u0010\u00fb\u009a\u0098\u00a8\u0006\"\u000538536\u0012\u0013\bU\u0012\u0006\u0010\u0080\u009c\u0098\u00a8\u0006\"\u00074838437\u0012\u0011\bV\u0012\u0006\u0010\u00b4\u009d\u0098\u00a8\u0006\"\u000545085\u0012\u0011\bW\u0012\u0006\u0010\u00dd\u009f\u0098\u00a8\u0006\"\u000545086\u0012\u0011\bX\u0012\u0006\u0010\u009f\u00a1\u0098\u00a8\u0006\"\u000538539\u0012\u0011\bY\u0012\u0006\u0010\u00a3\u00a3\u0098\u00a8\u0006\"\u000538540\u0012\u0011\bZ\u0012\u0006\u0010\u00ee\u00a5\u0098\u00a8\u0006\"\u000538544\u0012\u0011\b[\u0012\u0006\u0010\u00fe\u00a7\u0098\u00a8\u0006\"\u000538545\u0012\u0011\b\\\u0012\u0006\u0010\u00e9\u00ab\u0098\u00a8\u0006\"\u000538546\u0012\u0011\b]\u0012\u0006\u0010\u00f4\u00b0\u0098\u00a8\u0006\"\u000538548\u0012\u0011\b^\u0012\u0006\u0010\u00f9\u00b3\u0098\u00a8\u0006\"\u000538549\u0012\u0011\b_\u0012\u0006\u0010\u00f3\u00b6\u0098\u00a8\u0006\"\u000538550\u0012\u0011\b`\u0012\u0006\u0010\u00b7\u00bb\u0098\u00a8\u0006\"\u000538551\u0012\u0011\ba\u0012\u0006\u0010\u0087\u00c1\u0098\u00a8\u0006\"\u000538552\u0012\u0011\bb\u0012\u0006\u0010\u00c7\u00c6\u0098\u00a8\u0006\"\u000549359\u0012\u0011\bc\u0012\u0006\u0010\u0095\u00ca\u0098\u00a8\u0006\"\u000549360\u0012\u0011\bd\u0012\u0006\u0010\u009d\u00d3\u0098\u00a8\u0006\"\u000549361\u0012\u0011\be\u0012\u0006\u0010\u00d7\u00d5\u0098\u00a8\u0006\"\u000549362\u0012\u0011\bf\u0012\u0006\u0010\u0094\u00da\u0098\u00a8\u0006\"\u000549363\u0012\u0011\bg\u0012\u0006\u0010\u0092\u00df\u0098\u00a8\u0006\"\u000549364\u0012\u0011\bh\u0012\u0006\u0010\u0091\u00e4\u0098\u00a8\u0006\"\u000549365\u0012\u0011\bi\u0012\u0006\u0010\u00dd\u00eb\u0098\u00a8\u0006\"\u000538560\u0012\u0011\bj\u0012\u0006\u0010\u0099\u00f0\u0098\u00a8\u0006\"\u000542857\u0012\u0011\bk\u0012\u0006\u0010\u00cf\u00f4\u0098\u00a8\u0006\"\u000538562\u0012\u0011\bl\u0012\u0006\u0010\u00d2\u00fb\u0098\u00a8\u0006\"\u000538563\u0012\u0011\bm\u0012\u0006\u0010\u00fb\u0081\u0099\u00a8\u0006\"\u000538564\u0012\u0011\bn\u0012\u0006\u0010\u00ef\u0093\u0099\u00a8\u0006\"\u000538565\u0012\u0011\bo\u0012\u0006\u0010\u00d8\u009e\u0099\u00a8\u0006\"\u000540932\u0012\u0011\bp\u0012\u0006\u0010\u0091\u00b2\u0099\u00a8\u0006\"\u000538567\u0012\u0011\bq\u0012\u0006\u0010\u00be\u00c0\u0099\u00a8\u0006\"\u000538568\u0012\u0011\br\u0012\u0006\u0010\u00ab\u00da\u0099\u00a8\u0006\"\u000538570\u0012\u0011\bs\u0012\u0006\u0010\u00bb\u00f3\u0099\u00a8\u0006\"\u000538571\u0012\u0011\bt\u0012\u0006\u0010\u0092\u0090\u009a\u00a8\u0006\"\u000538572\u0012\u0011\bu\u0012\u0006\u0010\u00c5\u00a7\u009a\u00a8\u0006\"\u000538573\u001a\b\u001a\u0006FKLS63 \u00aa\u00e8\u0097\u00a8\u0006\"`\n/\n\u001017075-701ff27f-2\u0012\b15:14:00\u001a\b20230916 \u0000*\u00035610\u0000\u0012\u001d\r\u00e6\u00c1\u0013\u00c2\u0015\u00e2\f\u0092\u00c2\u001d\u0000\u0000\u00a7C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00ab\u00aa\u00ba@(\u00aa\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FKLS63" + }, + { + "type": "con_recorrido", + "entity": "\n$6ff0d331-7344-41e3-ab46-ce8d3c10e16c\u001a\u009c\u0004\n/\n\u001017071-701ff27f-2\u0012\b14:26:00\u001a\b20230916 \u0000*\u00035610\u0000\u0012\u0011\b]\u0012\u0006\u0010\u00f0\u00e8\u0097\u00a8\u0006\"\u000538548\u0012\u0011\b^\u0012\u0006\u0010\u00b5\u00e9\u0097\u00a8\u0006\"\u000538549\u0012\u0011\b_\u0012\u0006\u0010\u00f3\u00e9\u0097\u00a8\u0006\"\u000538550\u0012\u0011\b`\u0012\u0006\u0010\u00c9\u00ea\u0097\u00a8\u0006\"\u000538551\u0012\u0011\ba\u0012\u0006\u0010\u00a9\u00eb\u0097\u00a8\u0006\"\u000538552\u0012\u0011\bb\u0012\u0006\u0010\u00fc\u00eb\u0097\u00a8\u0006\"\u000549359\u0012\u0011\bc\u0012\u0006\u0010\u00ad\u00ec\u0097\u00a8\u0006\"\u000549360\u0012\u0011\bd\u0012\u0006\u0010\u009b\u00ed\u0097\u00a8\u0006\"\u000549361\u0012\u0011\be\u0012\u0006\u0010\u00b5\u00ed\u0097\u00a8\u0006\"\u000549362\u0012\u0011\bf\u0012\u0006\u0010\u00e3\u00ed\u0097\u00a8\u0006\"\u000549363\u0012\u0011\bg\u0012\u0006\u0010\u0093\u00ee\u0097\u00a8\u0006\"\u000549364\u0012\u0011\bh\u0012\u0006\u0010\u00be\u00ee\u0097\u00a8\u0006\"\u000549365\u0012\u0011\bi\u0012\u0006\u0010\u00fb\u00ee\u0097\u00a8\u0006\"\u000538560\u0012\u0011\bj\u0012\u0006\u0010\u009c\u00ef\u0097\u00a8\u0006\"\u000542857\u0012\u0011\bk\u0012\u0006\u0010\u00ba\u00ef\u0097\u00a8\u0006\"\u000538562\u0012\u0011\bl\u0012\u0006\u0010\u00e7\u00ef\u0097\u00a8\u0006\"\u000538563\u0012\u0011\bm\u0012\u0006\u0010\u008b\u00f0\u0097\u00a8\u0006\"\u000538564\u0012\u0011\bn\u0012\u0006\u0010\u00e6\u00f0\u0097\u00a8\u0006\"\u000538565\u0012\u0011\bo\u0012\u0006\u0010\u0095\u00f1\u0097\u00a8\u0006\"\u000540932\u0012\u0011\bp\u0012\u0006\u0010\u00dc\u00f1\u0097\u00a8\u0006\"\u000538567\u0012\u0011\bq\u0012\u0006\u0010\u008a\u00f2\u0097\u00a8\u0006\"\u000538568\u0012\u0011\br\u0012\u0006\u0010\u00ce\u00f2\u0097\u00a8\u0006\"\u000538570\u0012\u0011\bs\u0012\u0006\u0010\u0085\u00f3\u0097\u00a8\u0006\"\u000538571\u0012\u0011\bt\u0012\u0006\u0010\u00b8\u00f3\u0097\u00a8\u0006\"\u000538572\u0012\u0011\bu\u0012\u0006\u0010\u00dc\u00f3\u0097\u00a8\u0006\"\u000538573\u001a\b\u001a\u0006JGJV28 \u00b6\u00e8\u0097\u00a8\u0006\"`\n/\n\u001017071-701ff27f-2\u0012\b14:26:00\u001a\b20230916 \u0000*\u00035610\u0000\u0012\u001d\r\u0095\u00f6\u0012\u00c2\u0015\u00a02\u0092\u00c2\u001d\u0000\u0000\u00a7C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000 @(\u00b6\u00e8\u0097\u00a8\u0006B\b\u001a\u0006JGJV28" + }, + { + "type": "con_recorrido", + "entity": "\n$d39c3e57-ab09-4248-8b68-f8432cd9c851\u001a\u00a5\u0006\n/\n\u001016976-701ff27f-2\u0012\b14:25:00\u001a\b20230916 \u0000*\u00035610\u0001\u0012\u0011\bA\u0012\u0006\u0010\u00dd\u00e8\u0097\u00a8\u0006\"\u000542206\u0012\u0011\bB\u0012\u0006\u0010\u0098\u00e9\u0097\u00a8\u0006\"\u000542207\u0012\u0011\bC\u0012\u0006\u0010\u00d6\u00e9\u0097\u00a8\u0006\"\u000542208\u0012\u0011\bD\u0012\u0006\u0010\u00d8\u00ea\u0097\u00a8\u0006\"\u000542564\u0012\u0011\bE\u0012\u0006\u0010\u00c4\u00eb\u0097\u00a8\u0006\"\u000542214\u0012\u0011\bF\u0012\u0006\u0010\u00ae\u00ec\u0097\u00a8\u0006\"\u000542209\u0012\u0011\bG\u0012\u0006\u0010\u00a3\u00ed\u0097\u00a8\u0006\"\u000542210\u0012\u0011\bH\u0012\u0006\u0010\u00da\u00ee\u0097\u00a8\u0006\"\u000542215\u0012\u0011\bI\u0012\u0006\u0010\u00f8\u00ee\u0097\u00a8\u0006\"\u000542216\u0012\u0011\bJ\u0012\u0006\u0010\u00a0\u00ef\u0097\u00a8\u0006\"\u000542217\u0012\u0011\bK\u0012\u0006\u0010\u00e9\u00ef\u0097\u00a8\u0006\"\u000542218\u0012\u0011\bL\u0012\u0006\u0010\u0093\u00f0\u0097\u00a8\u0006\"\u000542219\u0012\u0011\bM\u0012\u0006\u0010\u00f4\u00f0\u0097\u00a8\u0006\"\u000542220\u0012\u0011\bN\u0012\u0006\u0010\u009f\u00f1\u0097\u00a8\u0006\"\u000542221\u0012\u0011\bO\u0012\u0006\u0010\u00e0\u00f1\u0097\u00a8\u0006\"\u000542222\u0012\u0011\bP\u0012\u0006\u0010\u00e6\u00f2\u0097\u00a8\u0006\"\u000542897\u0012\u0011\bQ\u0012\u0006\u0010\u00aa\u00f3\u0097\u00a8\u0006\"\u000542898\u0012\u0011\bR\u0012\u0006\u0010\u00da\u00f3\u0097\u00a8\u0006\"\u000542887\u0012\u0011\bS\u0012\u0006\u0010\u00aa\u00f4\u0097\u00a8\u0006\"\u000542943\u0012\u0011\bT\u0012\u0006\u0010\u00f2\u00f4\u0097\u00a8\u0006\"\u000542944\u0012\u0011\bU\u0012\u0006\u0010\u00aa\u00f5\u0097\u00a8\u0006\"\u000542945\u0012\u0011\bV\u0012\u0006\u0010\u00de\u00f5\u0097\u00a8\u0006\"\u000542947\u0012\u0011\bW\u0012\u0006\u0010\u0081\u00f6\u0097\u00a8\u0006\"\u000542949\u0012\u0014\bX\u0012\u0006\u0010\u0087\u00f7\u0097\u00a8\u0006\"\b20540195\u0012\u0011\bY\u0012\u0006\u0010\u00a7\u00f7\u0097\u00a8\u0006\"\u000542951\u0012\u0014\bZ\u0012\u0006\u0010\u00d2\u00f7\u0097\u00a8\u0006\"\b20540194\u0012\u0011\b[\u0012\u0006\u0010\u0091\u00f8\u0097\u00a8\u0006\"\u000542952\u0012\u0011\b\\\u0012\u0006\u0010\u00af\u00f8\u0097\u00a8\u0006\"\u000542958\u0012\u0011\b]\u0012\u0006\u0010\u00d5\u00f8\u0097\u00a8\u0006\"\u000542955\u0012\u0011\b^\u0012\u0006\u0010\u00ee\u00f8\u0097\u00a8\u0006\"\u000542983\u0012\u0014\b_\u0012\u0006\u0010\u009b\u00f9\u0097\u00a8\u0006\"\b20540192\u0012\u0011\b`\u0012\u0006\u0010\u00bc\u00f9\u0097\u00a8\u0006\"\u000542979\u0012\u0014\ba\u0012\u0006\u0010\u00fb\u00f9\u0097\u00a8\u0006\"\b20540201\u0012\u0011\bb\u0012\u0006\u0010\u00ac\u00fa\u0097\u00a8\u0006\"\u000543082\u0012\u0014\bc\u0012\u0006\u0010\u00be\u00fa\u0097\u00a8\u0006\"\b20540202\u0012\u0011\bd\u0012\u0006\u0010\u0096\u00fc\u0097\u00a8\u0006\"\u000542954\u0012\u0014\be\u0012\u0006\u0010\u00e1\u00fc\u0097\u00a8\u0006\"\b20540199\u0012\u0011\bf\u0012\u0006\u0010\u0088\u00fd\u0097\u00a8\u0006\"\u000542957\u001a\b\u001a\u0006KFDK88 \u00b8\u00e8\u0097\u00a8\u0006\"`\n/\n\u001016976-701ff27f-2\u0012\b14:25:00\u001a\b20230916 \u0000*\u00035610\u0001\u0012\u001d\r\u00a6t\u0013\u00c2\u0015\u00e1\u0016\u0092\u00c2\u001d\u0000\u0000\u0016C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u001c\u00c7\u009dA(\u00b8\u00e8\u0097\u00a8\u0006B\b\u001a\u0006KFDK88" + }, + { + "type": "con_recorrido", + "entity": "\n$b607f3db-a93c-4332-b06a-80227cc55d9e\u001a\u00a9\n\n/\n\u001016978-701ff27f-2\u0012\b14:49:00\u001a\b20230916 \u0000*\u00035610\u0001\u0012\u0014\b&\u0012\u0006\u0010\u00b5\u00e8\u0097\u00a8\u0006\"\b16005188\u0012\u0011\b'\u0012\u0006\u0010\u00be\u00ea\u0097\u00a8\u0006\"\u000540995\u0012\u0011\b(\u0012\u0006\u0010\u0089\u00eb\u0097\u00a8\u0006\"\u000540996\u0012\u0011\b)\u0012\u0006\u0010\u00d8\u00eb\u0097\u00a8\u0006\"\u000540997\u0012\u0011\b*\u0012\u0006\u0010\u0092\u00ec\u0097\u00a8\u0006\"\u000539614\u0012\u0011\b+\u0012\u0006\u0010\u00c2\u00ec\u0097\u00a8\u0006\"\u000539615\u0012\u0011\b,\u0012\u0006\u0010\u00fa\u00ec\u0097\u00a8\u0006\"\u000539616\u0012\u0011\b-\u0012\u0006\u0010\u00a8\u00ed\u0097\u00a8\u0006\"\u000539617\u0012\u0011\b.\u0012\u0006\u0010\u00e1\u00ed\u0097\u00a8\u0006\"\u000539618\u0012\u0011\b/\u0012\u0006\u0010\u008e\u00ee\u0097\u00a8\u0006\"\u000539619\u0012\u0011\b0\u0012\u0006\u0010\u00b3\u00ee\u0097\u00a8\u0006\"\u000539620\u0012\u0011\b1\u0012\u0006\u0010\u00f7\u00ee\u0097\u00a8\u0006\"\u000539621\u0012\u0011\b2\u0012\u0006\u0010\u00a6\u00ef\u0097\u00a8\u0006\"\u000538281\u0012\u0011\b3\u0012\u0006\u0010\u00dc\u00ef\u0097\u00a8\u0006\"\u000537506\u0012\u0011\b4\u0012\u0006\u0010\u0083\u00f0\u0097\u00a8\u0006\"\u000545068\u0012\u0011\b5\u0012\u0006\u0010\u00fd\u00f0\u0097\u00a8\u0006\"\u000537480\u0012\u0011\b6\u0012\u0006\u0010\u00b9\u00f1\u0097\u00a8\u0006\"\u000537477\u0012\u0011\b7\u0012\u0006\u0010\u00fb\u00f1\u0097\u00a8\u0006\"\u000540848\u0012\u0011\b8\u0012\u0006\u0010\u00cd\u00f2\u0097\u00a8\u0006\"\u00052-Apr\u0012\u0011\b9\u0012\u0006\u0010\u0085\u00f3\u0097\u00a8\u0006\"\u000539728\u0012\u0011\b:\u0012\u0006\u0010\u00e5\u00f3\u0097\u00a8\u0006\"\u000539729\u0012\u0011\b;\u0012\u0006\u0010\u00fd\u00f3\u0097\u00a8\u0006\"\u000539730\u0012\u0011\b<\u0012\u0006\u0010\u00e4\u00f4\u0097\u00a8\u0006\"\u000542200\u0012\u0011\b=\u0012\u0006\u0010\u0091\u00f5\u0097\u00a8\u0006\"\u000542203\u0012\u0011\b>\u0012\u0006\u0010\u00c9\u00f5\u0097\u00a8\u0006\"\u000542204\u0012\u0011\b?\u0012\u0006\u0010\u00f3\u00f5\u0097\u00a8\u0006\"\u000542205\u0012\u0011\b@\u0012\u0006\u0010\u00b1\u00f6\u0097\u00a8\u0006\"\u000542201\u0012\u0011\bA\u0012\u0006\u0010\u00ba\u00f8\u0097\u00a8\u0006\"\u000542206\u0012\u0011\bB\u0012\u0006\u0010\u00f6\u00f8\u0097\u00a8\u0006\"\u000542207\u0012\u0011\bC\u0012\u0006\u0010\u00b7\u00f9\u0097\u00a8\u0006\"\u000542208\u0012\u0011\bD\u0012\u0006\u0010\u00c3\u00fa\u0097\u00a8\u0006\"\u000542564\u0012\u0011\bE\u0012\u0006\u0010\u00bc\u00fb\u0097\u00a8\u0006\"\u000542214\u0012\u0011\bF\u0012\u0006\u0010\u00ba\u00fc\u0097\u00a8\u0006\"\u000542209\u0012\u0011\bG\u0012\u0006\u0010\u00c9\u00fd\u0097\u00a8\u0006\"\u000542210\u0012\u0011\bH\u0012\u0006\u0010\u00b6\u00ff\u0097\u00a8\u0006\"\u000542215\u0012\u0011\bI\u0012\u0006\u0010\u00de\u00ff\u0097\u00a8\u0006\"\u000542216\u0012\u0011\bJ\u0012\u0006\u0010\u0095\u0080\u0098\u00a8\u0006\"\u000542217\u0012\u0011\bK\u0012\u0006\u0010\u00fb\u0080\u0098\u00a8\u0006\"\u000542218\u0012\u0011\bL\u0012\u0006\u0010\u00b7\u0081\u0098\u00a8\u0006\"\u000542219\u0012\u0011\bM\u0012\u0006\u0010\u00c5\u0082\u0098\u00a8\u0006\"\u000542220\u0012\u0011\bN\u0012\u0006\u0010\u0086\u0083\u0098\u00a8\u0006\"\u000542221\u0012\u0011\bO\u0012\u0006\u0010\u00ea\u0083\u0098\u00a8\u0006\"\u000542222\u0012\u0011\bP\u0012\u0006\u0010\u00c0\u0085\u0098\u00a8\u0006\"\u000542897\u0012\u0011\bQ\u0012\u0006\u0010\u00b2\u0086\u0098\u00a8\u0006\"\u000542898\u0012\u0011\bR\u0012\u0006\u0010\u0083\u0087\u0098\u00a8\u0006\"\u000542887\u0012\u0011\bS\u0012\u0006\u0010\u008f\u0088\u0098\u00a8\u0006\"\u000542943\u0012\u0011\bT\u0012\u0006\u0010\u008f\u0089\u0098\u00a8\u0006\"\u000542944\u0012\u0011\bU\u0012\u0006\u0010\u00f5\u0089\u0098\u00a8\u0006\"\u000542945\u0012\u0011\bV\u0012\u0006\u0010\u00d7\u008a\u0098\u00a8\u0006\"\u000542947\u0012\u0011\bW\u0012\u0006\u0010\u009a\u008b\u0098\u00a8\u0006\"\u000542949\u0012\u0014\bX\u0012\u0006\u0010\u00a0\u008d\u0098\u00a8\u0006\"\b20540195\u0012\u0011\bY\u0012\u0006\u0010\u00e2\u008d\u0098\u00a8\u0006\"\u000542951\u0012\u0014\bZ\u0012\u0006\u0010\u00b9\u008e\u0098\u00a8\u0006\"\b20540194\u0012\u0011\b[\u0012\u0006\u0010\u00bd\u008f\u0098\u00a8\u0006\"\u000542952\u0012\u0011\b\\\u0012\u0006\u0010\u00fc\u008f\u0098\u00a8\u0006\"\u000542958\u0012\u0011\b]\u0012\u0006\u0010\u00cf\u0090\u0098\u00a8\u0006\"\u000542955\u0012\u0011\b^\u0012\u0006\u0010\u0085\u0091\u0098\u00a8\u0006\"\u000542983\u0012\u0014\b_\u0012\u0006\u0010\u00e8\u0091\u0098\u00a8\u0006\"\b20540192\u0012\u0011\b`\u0012\u0006\u0010\u00b3\u0092\u0098\u00a8\u0006\"\u000542979\u0012\u0014\ba\u0012\u0006\u0010\u00c4\u0093\u0098\u00a8\u0006\"\b20540201\u0012\u0011\bb\u0012\u0006\u0010\u00b5\u0094\u0098\u00a8\u0006\"\u000543082\u0012\u0014\bc\u0012\u0006\u0010\u00df\u0094\u0098\u00a8\u0006\"\b20540202\u0012\u0011\bd\u0012\u0006\u0010\u00f7\u0098\u0098\u00a8\u0006\"\u000542954\u0012\u0014\be\u0012\u0006\u0010\u00ba\u009a\u0098\u00a8\u0006\"\b20540199\u0012\u0011\bf\u0012\u0006\u0010\u00a0\u009b\u0098\u00a8\u0006\"\u000542957\u001a\b\u001a\u0006KGRX98 \u00b2\u00e8\u0097\u00a8\u0006\"`\n/\n\u001016978-701ff27f-2\u0012\b14:49:00\u001a\b20230916 \u0000*\u00035610\u0001\u0012\u001d\r\u00de*\u0013\u00c2\u0015+$\u0092\u00c2\u001d\u0000\u0000$C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u001c\u00c7\u00b1?(\u00b2\u00e8\u0097\u00a8\u0006B\b\u001a\u0006KGRX98" + }, + { + "type": "con_recorrido", + "entity": "\n$bcbb1253-d189-4af0-94c4-18f135302f39\u001a\u009c\b\n/\n\u001016977-701ff27f-2\u0012\b14:37:00\u001a\b20230916 \u0000*\u00035610\u0001\u0012\u0011\b4\u0012\u0006\u0010\u00bb\u00e8\u0097\u00a8\u0006\"\u000545068\u0012\u0011\b5\u0012\u0006\u0010\u00bf\u00e9\u0097\u00a8\u0006\"\u000537480\u0012\u0011\b6\u0012\u0006\u0010\u00ff\u00e9\u0097\u00a8\u0006\"\u000537477\u0012\u0011\b7\u0012\u0006\u0010\u00c5\u00ea\u0097\u00a8\u0006\"\u000540848\u0012\u0011\b8\u0012\u0006\u0010\u009a\u00eb\u0097\u00a8\u0006\"\u00052-Apr\u0012\u0011\b9\u0012\u0006\u0010\u00d4\u00eb\u0097\u00a8\u0006\"\u000539728\u0012\u0011\b:\u0012\u0006\u0010\u00b5\u00ec\u0097\u00a8\u0006\"\u000539729\u0012\u0011\b;\u0012\u0006\u0010\u00cd\u00ec\u0097\u00a8\u0006\"\u000539730\u0012\u0011\b<\u0012\u0006\u0010\u00b3\u00ed\u0097\u00a8\u0006\"\u000542200\u0012\u0011\b=\u0012\u0006\u0010\u00df\u00ed\u0097\u00a8\u0006\"\u000542203\u0012\u0011\b>\u0012\u0006\u0010\u0095\u00ee\u0097\u00a8\u0006\"\u000542204\u0012\u0011\b?\u0012\u0006\u0010\u00be\u00ee\u0097\u00a8\u0006\"\u000542205\u0012\u0011\b@\u0012\u0006\u0010\u00f8\u00ee\u0097\u00a8\u0006\"\u000542201\u0012\u0011\bA\u0012\u0006\u0010\u00ed\u00f0\u0097\u00a8\u0006\"\u000542206\u0012\u0011\bB\u0012\u0006\u0010\u00a3\u00f1\u0097\u00a8\u0006\"\u000542207\u0012\u0011\bC\u0012\u0006\u0010\u00dd\u00f1\u0097\u00a8\u0006\"\u000542208\u0012\u0011\bD\u0012\u0006\u0010\u00d8\u00f2\u0097\u00a8\u0006\"\u000542564\u0012\u0011\bE\u0012\u0006\u0010\u00c0\u00f3\u0097\u00a8\u0006\"\u000542214\u0012\u0011\bF\u0012\u0006\u0010\u00aa\u00f4\u0097\u00a8\u0006\"\u000542209\u0012\u0011\bG\u0012\u0006\u0010\u00a0\u00f5\u0097\u00a8\u0006\"\u000542210\u0012\u0011\bH\u0012\u0006\u0010\u00e0\u00f6\u0097\u00a8\u0006\"\u000542215\u0012\u0011\bI\u0012\u0006\u0010\u0080\u00f7\u0097\u00a8\u0006\"\u000542216\u0012\u0011\bJ\u0012\u0006\u0010\u00ab\u00f7\u0097\u00a8\u0006\"\u000542217\u0012\u0011\bK\u0012\u0006\u0010\u00fa\u00f7\u0097\u00a8\u0006\"\u000542218\u0012\u0011\bL\u0012\u0006\u0010\u00a9\u00f8\u0097\u00a8\u0006\"\u000542219\u0012\u0011\bM\u0012\u0006\u0010\u0095\u00f9\u0097\u00a8\u0006\"\u000542220\u0012\u0011\bN\u0012\u0006\u0010\u00c6\u00f9\u0097\u00a8\u0006\"\u000542221\u0012\u0011\bO\u0012\u0006\u0010\u0091\u00fa\u0097\u00a8\u0006\"\u000542222\u0012\u0011\bP\u0012\u0006\u0010\u00ae\u00fb\u0097\u00a8\u0006\"\u000542897\u0012\u0011\bQ\u0012\u0006\u0010\u0080\u00fc\u0097\u00a8\u0006\"\u000542898\u0012\u0011\bR\u0012\u0006\u0010\u00ba\u00fc\u0097\u00a8\u0006\"\u000542887\u0012\u0011\bS\u0012\u0006\u0010\u009d\u00fd\u0097\u00a8\u0006\"\u000542943\u0012\u0011\bT\u0012\u0006\u0010\u00f5\u00fd\u0097\u00a8\u0006\"\u000542944\u0012\u0011\bU\u0012\u0006\u0010\u00bb\u00fe\u0097\u00a8\u0006\"\u000542945\u0012\u0011\bV\u0012\u0006\u0010\u00fe\u00fe\u0097\u00a8\u0006\"\u000542947\u0012\u0011\bW\u0012\u0006\u0010\u00ac\u00ff\u0097\u00a8\u0006\"\u000542949\u0012\u0014\bX\u0012\u0006\u0010\u00d9\u0080\u0098\u00a8\u0006\"\b20540195\u0012\u0011\bY\u0012\u0006\u0010\u0085\u0081\u0098\u00a8\u0006\"\u000542951\u0012\u0014\bZ\u0012\u0006\u0010\u00bd\u0081\u0098\u00a8\u0006\"\b20540194\u0012\u0011\b[\u0012\u0006\u0010\u0092\u0082\u0098\u00a8\u0006\"\u000542952\u0012\u0011\b\\\u0012\u0006\u0010\u00bb\u0082\u0098\u00a8\u0006\"\u000542958\u0012\u0011\b]\u0012\u0006\u0010\u00ef\u0082\u0098\u00a8\u0006\"\u000542955\u0012\u0011\b^\u0012\u0006\u0010\u0091\u0083\u0098\u00a8\u0006\"\u000542983\u0012\u0014\b_\u0012\u0006\u0010\u00cf\u0083\u0098\u00a8\u0006\"\b20540192\u0012\u0011\b`\u0012\u0006\u0010\u00fe\u0083\u0098\u00a8\u0006\"\u000542979\u0012\u0014\ba\u0012\u0006\u0010\u00d6\u0084\u0098\u00a8\u0006\"\b20540201\u0012\u0011\bb\u0012\u0006\u0010\u009b\u0085\u0098\u00a8\u0006\"\u000543082\u0012\u0014\bc\u0012\u0006\u0010\u00b5\u0085\u0098\u00a8\u0006\"\b20540202\u0012\u0011\bd\u0012\u0006\u0010\u00f1\u0087\u0098\u00a8\u0006\"\u000542954\u0012\u0014\be\u0012\u0006\u0010\u00e0\u0088\u0098\u00a8\u0006\"\b20540199\u0012\u0011\bf\u0012\u0006\u0010\u009a\u0089\u0098\u00a8\u0006\"\u000542957\u001a\b\u001a\u0006RKVT16 \u0096\u00e8\u0097\u00a8\u0006\"`\n/\n\u001016977-701ff27f-2\u0012\b14:37:00\u001a\b20230916 \u0000*\u00035610\u0001\u0012\u001d\r\u00f8L\u0013\u00c2\u0015\u0095\u0016\u0092\u00c2\u001d\u0000\u0000rC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0096\u00e8\u0097\u00a8\u0006B\b\u001a\u0006RKVT16" + }, + { + "type": "con_recorrido", + "entity": "\n$8bd3b3c0-fd39-4ada-9071-31af9fb7d2b2\u001a\u00a5\u0002\n/\n\u001017070-701ff27f-2\u0012\b14:14:00\u001a\b20230916 \u0000*\u00035610\u0000\u0012\u0011\bj\u0012\u0006\u0010\u0099\u00e8\u0097\u00a8\u0006\"\u000542857\u0012\u0011\bk\u0012\u0006\u0010\u00ba\u00e8\u0097\u00a8\u0006\"\u000538562\u0012\u0011\bl\u0012\u0006\u0010\u00eb\u00e8\u0097\u00a8\u0006\"\u000538563\u0012\u0011\bm\u0012\u0006\u0010\u0093\u00e9\u0097\u00a8\u0006\"\u000538564\u0012\u0011\bn\u0012\u0006\u0010\u00f4\u00e9\u0097\u00a8\u0006\"\u000538565\u0012\u0011\bo\u0012\u0006\u0010\u00a6\u00ea\u0097\u00a8\u0006\"\u000540932\u0012\u0011\bp\u0012\u0006\u0010\u00f1\u00ea\u0097\u00a8\u0006\"\u000538567\u0012\u0011\bq\u0012\u0006\u0010\u00a0\u00eb\u0097\u00a8\u0006\"\u000538568\u0012\u0011\br\u0012\u0006\u0010\u00e7\u00eb\u0097\u00a8\u0006\"\u000538570\u0012\u0011\bs\u0012\u0006\u0010\u009e\u00ec\u0097\u00a8\u0006\"\u000538571\u0012\u0011\bt\u0012\u0006\u0010\u00d2\u00ec\u0097\u00a8\u0006\"\u000538572\u0012\u0011\bu\u0012\u0006\u0010\u00f5\u00ec\u0097\u00a8\u0006\"\u000538573\u001a\b\u001a\u0006WS7737 \u008c\u00e8\u0097\u00a8\u0006\"`\n/\n\u001017070-701ff27f-2\u0012\b14:14:00\u001a\b20230916 \u0000*\u00035610\u0000\u0012\u001d\rn\u00d9\u0012\u00c2\u0015\u0014;\u0092\u00c2\u001d\u0000\u0000DC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00c7q\u00cc@(\u008c\u00e8\u0097\u00a8\u0006B\b\u001a\u0006WS7737" + }, + { + "type": "con_recorrido", + "entity": "\n$a9f031b0-c5f1-4b13-b5ab-481695416de7\u001a\u009e\u000f\n/\n\u001016980-701ff27f-2\u0012\b15:13:00\u001a\b20230916 \u0000*\u00035610\u0001\u0012\u0011\b\u0005\u0012\u0006\u0010\u00ee\u00e7\u0097\u00a8\u0006\"\u000540947\u0012\u0011\b\u0006\u0012\u0006\u0010\u00c3\u00e8\u0097\u00a8\u0006\"\u000540932\u0012\u0011\b\u0007\u0012\u0006\u0010\u00f5\u00e8\u0097\u00a8\u0006\"\u000542853\u0012\u0011\b\b\u0012\u0006\u0010\u00d0\u00e9\u0097\u00a8\u0006\"\u000542854\u0012\u0011\b\t\u0012\u0006\u0010\u008b\u00ea\u0097\u00a8\u0006\"\u000542855\u0012\u0011\b\n\u0012\u0006\u0010\u00a9\u00ea\u0097\u00a8\u0006\"\u000541975\u0012\u0011\b\u000b\u0012\u0006\u0010\u00c7\u00ea\u0097\u00a8\u0006\"\u000542857\u0012\u0011\b\f\u0012\u0006\u0010\u00e5\u00ea\u0097\u00a8\u0006\"\u000538697\u0012\u0011\b\r\u0012\u0006\u0010\u0096\u00eb\u0097\u00a8\u0006\"\u000538646\u0012\u0011\b\u000e\u0012\u0006\u0010\u00b4\u00eb\u0097\u00a8\u0006\"\u000538632\u0012\u0011\b\u000f\u0012\u0006\u0010\u0089\u00ec\u0097\u00a8\u0006\"\u000538767\u0012\u0011\b\u0010\u0012\u0006\u0010\u00cf\u00ec\u0097\u00a8\u0006\"\u000538768\u0012\u0011\b\u0011\u0012\u0006\u0010\u00f9\u00ec\u0097\u00a8\u0006\"\u000538769\u0012\u0011\b\u0012\u0012\u0006\u0010\u00a1\u00ed\u0097\u00a8\u0006\"\u000549357\u0012\u0011\b\u0013\u0012\u0006\u0010\u00c8\u00ed\u0097\u00a8\u0006\"\u000538771\u0012\u0011\b\u0014\u0012\u0006\u0010\u00f4\u00ed\u0097\u00a8\u0006\"\u000538668\u0012\u0011\b\u0015\u0012\u0006\u0010\u00d3\u00ee\u0097\u00a8\u0006\"\u000538661\u0012\u0011\b\u0016\u0012\u0006\u0010\u00a4\u00ef\u0097\u00a8\u0006\"\u000538657\u0012\u0011\b\u0017\u0012\u0006\u0010\u00e0\u00ef\u0097\u00a8\u0006\"\u000538743\u0012\u0011\b\u0018\u0012\u0006\u0010\u00a0\u00f0\u0097\u00a8\u0006\"\u000538652\u0012\u0011\b\u0019\u0012\u0006\u0010\u00db\u00f0\u0097\u00a8\u0006\"\u000538721\u0012\u0011\b\u001a\u0012\u0006\u0010\u0095\u00f1\u0097\u00a8\u0006\"\u000538659\u0012\u0011\b\u001b\u0012\u0006\u0010\u00e3\u00f1\u0097\u00a8\u0006\"\u000538674\u0012\u0011\b\u001c\u0012\u0006\u0010\u00ae\u00f2\u0097\u00a8\u0006\"\u000538649\u0012\u0011\b\u001d\u0012\u0006\u0010\u00ec\u00f2\u0097\u00a8\u0006\"\u000538718\u0012\u0011\b\u001e\u0012\u0006\u0010\u00b5\u00f3\u0097\u00a8\u0006\"\u000538735\u0012\u0011\b\u001f\u0012\u0006\u0010\u00eb\u00f3\u0097\u00a8\u0006\"\u000542270\u0012\u0011\b \u0012\u0006\u0010\u0098\u00f4\u0097\u00a8\u0006\"\u000542271\u0012\u0013\b!\u0012\u0006\u0010\u00dd\u00f4\u0097\u00a8\u0006\"\u00074838438\u0012\u0011\b\"\u0012\u0006\u0010\u00f0\u00f5\u0097\u00a8\u0006\"\u000544896\u0012\u0011\b#\u0012\u0006\u0010\u00a2\u00f6\u0097\u00a8\u0006\"\u000544897\u0012\u0011\b$\u0012\u0006\u0010\u00ee\u00f6\u0097\u00a8\u0006\"\u000544898\u0012\u0011\b%\u0012\u0006\u0010\u00a4\u00f8\u0097\u00a8\u0006\"\u000540993\u0012\u0014\b&\u0012\u0006\u0010\u00b7\u00fa\u0097\u00a8\u0006\"\b16005188\u0012\u0011\b'\u0012\u0006\u0010\u00e1\u00fc\u0097\u00a8\u0006\"\u000540995\u0012\u0011\b(\u0012\u0006\u0010\u00bc\u00fd\u0097\u00a8\u0006\"\u000540996\u0012\u0011\b)\u0012\u0006\u0010\u009e\u00fe\u0097\u00a8\u0006\"\u000540997\u0012\u0011\b*\u0012\u0006\u0010\u00ea\u00fe\u0097\u00a8\u0006\"\u000539614\u0012\u0011\b+\u0012\u0006\u0010\u00a9\u00ff\u0097\u00a8\u0006\"\u000539615\u0012\u0011\b,\u0012\u0006\u0010\u00f5\u00ff\u0097\u00a8\u0006\"\u000539616\u0012\u0011\b-\u0012\u0006\u0010\u00b5\u0080\u0098\u00a8\u0006\"\u000539617\u0012\u0011\b.\u0012\u0006\u0010\u0086\u0081\u0098\u00a8\u0006\"\u000539618\u0012\u0011\b/\u0012\u0006\u0010\u00c7\u0081\u0098\u00a8\u0006\"\u000539619\u0012\u0011\b0\u0012\u0006\u0010\u00fd\u0081\u0098\u00a8\u0006\"\u000539620\u0012\u0011\b1\u0012\u0006\u0010\u00e4\u0082\u0098\u00a8\u0006\"\u000539621\u0012\u0011\b2\u0012\u0006\u0010\u00ad\u0083\u0098\u00a8\u0006\"\u000538281\u0012\u0011\b3\u0012\u0006\u0010\u0082\u0084\u0098\u00a8\u0006\"\u000537506\u0012\u0011\b4\u0012\u0006\u0010\u00c1\u0084\u0098\u00a8\u0006\"\u000545068\u0012\u0011\b5\u0012\u0006\u0010\u008d\u0086\u0098\u00a8\u0006\"\u000537480\u0012\u0011\b6\u0012\u0006\u0010\u00f5\u0086\u0098\u00a8\u0006\"\u000537477\u0012\u0011\b7\u0012\u0006\u0010\u00ec\u0087\u0098\u00a8\u0006\"\u000540848\u0012\u0011\b8\u0012\u0006\u0010\u0084\u0089\u0098\u00a8\u0006\"\u00052-Apr\u0012\u0011\b9\u0012\u0006\u0010\u00ef\u0089\u0098\u00a8\u0006\"\u000539728\u0012\u0011\b:\u0012\u0006\u0010\u00ae\u008b\u0098\u00a8\u0006\"\u000539729\u0012\u0011\b;\u0012\u0006\u0010\u00df\u008b\u0098\u00a8\u0006\"\u000539730\u0012\u0011\b<\u0012\u0006\u0010\u00b6\u008d\u0098\u00a8\u0006\"\u000542200\u0012\u0011\b=\u0012\u0006\u0010\u0098\u008e\u0098\u00a8\u0006\"\u000542203\u0012\u0011\b>\u0012\u0006\u0010\u0092\u008f\u0098\u00a8\u0006\"\u000542204\u0012\u0011\b?\u0012\u0006\u0010\u00f2\u008f\u0098\u00a8\u0006\"\u000542205\u0012\u0011\b@\u0012\u0006\u0010\u0082\u0091\u0098\u00a8\u0006\"\u000542201\u0012\u0011\bA\u0012\u0006\u0010\u0098\u0096\u0098\u00a8\u0006\"\u000542206\u0012\u0011\bB\u0012\u0006\u0010\u00b7\u0097\u0098\u00a8\u0006\"\u000542207\u0012\u0011\bC\u0012\u0006\u0010\u00eb\u0098\u0098\u00a8\u0006\"\u000542208\u0012\u0011\bD\u0012\u0006\u0010\u0082\u009c\u0098\u00a8\u0006\"\u000542564\u0012\u0011\bE\u0012\u0006\u0010\u00f7\u009e\u0098\u00a8\u0006\"\u000542214\u0012\u0011\bF\u0012\u0006\u0010\u0091\u00a2\u0098\u00a8\u0006\"\u000542209\u0012\u0011\bG\u0012\u0006\u0010\u0085\u00a6\u0098\u00a8\u0006\"\u000542210\u0012\u0011\bH\u0012\u0006\u0010\u0093\u00ad\u0098\u00a8\u0006\"\u000542215\u0012\u0011\bI\u0012\u0006\u0010\u00b9\u00ae\u0098\u00a8\u0006\"\u000542216\u0012\u0011\bJ\u0012\u0006\u0010\u00a0\u00b0\u0098\u00a8\u0006\"\u000542217\u0012\u0011\bK\u0012\u0006\u0010\u00de\u00b3\u0098\u00a8\u0006\"\u000542218\u0012\u0011\bL\u0012\u0006\u0010\u00f2\u00b5\u0098\u00a8\u0006\"\u000542219\u0012\u0011\bM\u0012\u0006\u0010\u00a3\u00bb\u0098\u00a8\u0006\"\u000542220\u0012\u0011\bN\u0012\u0006\u0010\u00f0\u00bd\u0098\u00a8\u0006\"\u000542221\u0012\u0011\bO\u0012\u0006\u0010\u008a\u00c2\u0098\u00a8\u0006\"\u000542222\u0012\u0011\bP\u0012\u0006\u0010\u00f4\u00cb\u0098\u00a8\u0006\"\u000542897\u0012\u0011\bQ\u0012\u0006\u0010\u00da\u00d1\u0098\u00a8\u0006\"\u000542898\u0012\u0011\bR\u0012\u0006\u0010\u0087\u00d6\u0098\u00a8\u0006\"\u000542887\u0012\u0011\bS\u0012\u0006\u0010\u0094\u00de\u0098\u00a8\u0006\"\u000542943\u0012\u0011\bT\u0012\u0006\u0010\u009e\u00e6\u0098\u00a8\u0006\"\u000542944\u0012\u0011\bU\u0012\u0006\u0010\u009e\u00ed\u0098\u00a8\u0006\"\u000542945\u0012\u0011\bV\u0012\u0006\u0010\u00ba\u00f4\u0098\u00a8\u0006\"\u000542947\u0012\u0011\bW\u0012\u0006\u0010\u00dc\u00f9\u0098\u00a8\u0006\"\u000542949\u0012\u0014\bX\u0012\u0006\u0010\u0086\u0091\u0099\u00a8\u0006\"\b20540195\u0012\u0011\bY\u0012\u0006\u0010\u00e5\u0097\u0099\u00a8\u0006\"\u000542951\u0012\u0014\bZ\u0012\u0006\u0010\u009d\u00a1\u0099\u00a8\u0006\"\b20540194\u0012\u0011\b[\u0012\u0006\u0010\u0096\u00b1\u0099\u00a8\u0006\"\u000542952\u0012\u0011\b\\\u0012\u0006\u0010\u00bf\u00b9\u0099\u00a8\u0006\"\u000542958\u0012\u0011\b]\u0012\u0006\u0010\u009f\u00c5\u0099\u00a8\u0006\"\u000542955\u0012\u0011\b^\u0012\u0006\u0010\u00b5\u00cd\u0099\u00a8\u0006\"\u000542983\u0012\u0014\b_\u0012\u0006\u0010\u00df\u00dd\u0099\u00a8\u0006\"\b20540192\u0012\u0011\b`\u0012\u0006\u0010\u00ad\u00eb\u0099\u00a8\u0006\"\u000542979\u0012\u0014\ba\u0012\u0006\u0010\u008c\u0089\u009a\u00a8\u0006\"\b20540201\u0012\u0011\bb\u0012\u0006\u0010\u00bc\u00a4\u009a\u00a8\u0006\"\u000543082\u0012\u0014\bc\u0012\u0006\u0010\u00fb\u00af\u009a\u00a8\u0006\"\b20540202\u0012\u0011\bd\u0012\u0006\u0010\u009e\u009c\u009c\u00a8\u0006\"\u000542954\u0012\u0014\be\u0012\u0006\u0010\u00c9\u00cb\u009d\u00a8\u0006\"\b20540199\u0012\u0011\bf\u0012\u0006\u0010\u00ad\u00d5\u009e\u00a8\u0006\"\u000542957\u001a\b\u001a\u0006YG6207 \u00ec\u00e7\u0097\u00a8\u0006\"`\n/\n\u001016980-701ff27f-2\u0012\b15:13:00\u001a\b20230916 \u0000*\u00035610\u0001\u0012\u001d\r\u008c\u00e5\u0012\u00c2\u0015,=\u0092\u00c2\u001d\u0000\u0000\u00f0B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u001c\u00c71@(\u00b2\u00e8\u0097\u00a8\u0006B\b\u001a\u0006YG6207" + }, + { + "type": "con_recorrido", + "entity": "\n$7437a998-be78-4a1e-93d3-258f84b6fbc1\u001a}\n/\n\u001016975-701ff27f-2\u0012\b14:13:00\u001a\b20230916 \u0000*\u00035610\u0001\u0012\u0011\bd\u0012\u0006\u0010\u00f3\u00e9\u0097\u00a8\u0006\"\u000542954\u0012\u0014\be\u0012\u0006\u0010\u00b4\u00ea\u0097\u00a8\u0006\"\b20540199\u0012\u0011\bf\u0012\u0006\u0010\u00d4\u00ea\u0097\u00a8\u0006\"\u000542957\u001a\b\u001a\u0006YJ2004 \u00bc\u00e8\u0097\u00a8\u0006\"`\n/\n\u001016975-701ff27f-2\u0012\b14:13:00\u001a\b20230916 \u0000*\u00035610\u0001\u0012\u001d\rf\u00c7\u0013\u00c2\u0015a\n\u0092\u00c2\u001d\u0000\u0000\u00a8C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00bc\u00e8\u0097\u00a8\u0006B\b\u001a\u0006YJ2004" + }, + { + "type": "sin_recorrido", + "entity": "\n$b295565a-1e8f-4d02-969c-2dc1e96d79dd\"e\n4\n\u0015aa9d5aab-c-701ff27f-2\u0012\b15:25:00\u001a\b20230916 \u0000*\u00035620\u0001\u0012\u001d\r\u00bcB\u0013\u00c2\u0015v\u000b\u0092\u00c2\u001d\u0000\u0000JC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b2\u00e8\u0097\u00a8\u0006B\b\u001a\u0006CPHW48" + }, + { + "type": "con_recorrido", + "entity": "\n$39c06ba2-4b63-43a1-a59a-5a9f164acf38\u001a\u00b8\u0005\n4\n\u0015d4afd7ae-f-701ff27f-2\u0012\b15:01:00\u001a\b20230916 \u0000*\u00035620\u0001\u0012\u0011\b\u001f\u0012\u0006\u0010\u00d0\u00e8\u0097\u00a8\u0006\"\u000540953\u0012\u0011\b \u0012\u0006\u0010\u00fe\u00e8\u0097\u00a8\u0006\"\u000540954\u0012\u0011\b!\u0012\u0006\u0010\u00c8\u00e9\u0097\u00a8\u0006\"\u000540955\u0012\u0011\b\"\u0012\u0006\u0010\u00ea\u00e9\u0097\u00a8\u0006\"\u000540956\u0012\u0011\b#\u0012\u0006\u0010\u00aa\u00ea\u0097\u00a8\u0006\"\u000540957\u0012\u0011\b$\u0012\u0006\u0010\u00e6\u00ea\u0097\u00a8\u0006\"\u000540958\u0012\u0011\b%\u0012\u0006\u0010\u00fd\u00ea\u0097\u00a8\u0006\"\u000540959\u0012\u0011\b&\u0012\u0006\u0010\u008e\u00ec\u0097\u00a8\u0006\"\u000542897\u0012\u0011\b'\u0012\u0006\u0010\u00ce\u00ec\u0097\u00a8\u0006\"\u000542898\u0012\u0011\b(\u0012\u0006\u0010\u008a\u00ed\u0097\u00a8\u0006\"\u000591011\u0012\u0011\b)\u0012\u0006\u0010\u00bd\u00ed\u0097\u00a8\u0006\"\u000591012\u0012\u0011\b*\u0012\u0006\u0010\u009a\u00ee\u0097\u00a8\u0006\"\u000591013\u0012\u0011\b+\u0012\u0006\u0010\u00d6\u00ee\u0097\u00a8\u0006\"\u000591014\u0012\u0011\b,\u0012\u0006\u0010\u0086\u00ef\u0097\u00a8\u0006\"\u000542945\u0012\u0011\b-\u0012\u0006\u0010\u00b3\u00ef\u0097\u00a8\u0006\"\u000542947\u0012\u0011\b.\u0012\u0006\u0010\u00dc\u00ef\u0097\u00a8\u0006\"\u000542949\u0012\u0014\b/\u0012\u0006\u0010\u00da\u00f0\u0097\u00a8\u0006\"\b20540195\u0012\u0011\b0\u0012\u0006\u0010\u00f7\u00f0\u0097\u00a8\u0006\"\u000542951\u0012\u0014\b1\u0012\u0006\u0010\u009c\u00f1\u0097\u00a8\u0006\"\b20540194\u0012\u0011\b2\u0012\u0006\u0010\u00ce\u00f1\u0097\u00a8\u0006\"\u000542952\u0012\u0011\b3\u0012\u0006\u0010\u00f0\u00f1\u0097\u00a8\u0006\"\u000542958\u0012\u0011\b4\u0012\u0006\u0010\u008e\u00f2\u0097\u00a8\u0006\"\u000542955\u0012\u0011\b5\u0012\u0006\u0010\u00a5\u00f2\u0097\u00a8\u0006\"\u000542954\u0012\u0014\b6\u0012\u0006\u0010\u00d3\u00f2\u0097\u00a8\u0006\"\b20540192\u0012\u0011\b7\u0012\u0006\u0010\u00ed\u00f2\u0097\u00a8\u0006\"\u000542979\u0012\u0014\b8\u0012\u0006\u0010\u00a8\u00f3\u0097\u00a8\u0006\"\b20540201\u0012\u0011\b9\u0012\u0006\u0010\u00cc\u00f3\u0097\u00a8\u0006\"\u000543082\u0012\u0014\b:\u0012\u0006\u0010\u00e2\u00f3\u0097\u00a8\u0006\"\b20540202\u0012\u0011\b;\u0012\u0006\u0010\u0081\u00f4\u0097\u00a8\u0006\"\u000543080\u0012\u0011\b<\u0012\u0006\u0010\u0099\u00f5\u0097\u00a8\u0006\"\u000542983\u0012\u0014\b=\u0012\u0006\u0010\u00dc\u00f5\u0097\u00a8\u0006\"\b20540199\u0012\u0011\b>\u0012\u0006\u0010\u00fd\u00f5\u0097\u00a8\u0006\"\u000542957\u001a\b\u001a\u0006FFVP21 \u00a0\u00e8\u0097\u00a8\u0006\"e\n4\n\u0015d4afd7ae-f-701ff27f-2\u0012\b15:01:00\u001a\b20230916 \u0000*\u00035620\u0001\u0012\u001d\r\u0010\u009a\u0013\u00c2\u0015\u0098\u000f\u0092\u00c2\u001d\u0000\u0000(C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00c7qtA(\u00a0\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FFVP21" + }, + { + "type": "con_recorrido", + "entity": "\n$921981e1-8c86-4c6f-8998-99be8affce50\u001a\u0081\t\n4\n\u00151bc94f39-4-701ff27f-2\u0012\b15:12:00\u001a\b20230916 \u0000*\u00035620\u0000\u0012\u0011\b\u0011\u0012\u0006\u0010\u00e5\u00e8\u0097\u00a8\u0006\"\u000542894\u0012\u0011\b\u0012\u0012\u0006\u0010\u008a\u00e9\u0097\u00a8\u0006\"\u000542893\u0012\u0011\b\u0013\u0012\u0006\u0010\u009f\u00e9\u0097\u00a8\u0006\"\u000542891\u0012\u0011\b\u0014\u0012\u0006\u0010\u00d9\u00e9\u0097\u00a8\u0006\"\u000591008\u0012\u0011\b\u0015\u0012\u0006\u0010\u00b8\u00ea\u0097\u00a8\u0006\"\u000591009\u0012\u0011\b\u0016\u0012\u0006\u0010\u00f6\u00ea\u0097\u00a8\u0006\"\u000591010\u0012\u0011\b\u0017\u0012\u0006\u0010\u00ad\u00eb\u0097\u00a8\u0006\"\u000542890\u0012\u0011\b\u0018\u0012\u0006\u0010\u00d4\u00eb\u0097\u00a8\u0006\"\u000542886\u0012\u0011\b\u0019\u0012\u0006\u0010\u00ec\u00eb\u0097\u00a8\u0006\"\u000542885\u0012\u0011\b\u001a\u0012\u0006\u0010\u00ab\u00ec\u0097\u00a8\u0006\"\u000542285\u0012\u0011\b\u001b\u0012\u0006\u0010\u008b\u00ed\u0097\u00a8\u0006\"\u000549281\u0012\u0011\b\u001c\u0012\u0006\u0010\u00c5\u00ed\u0097\u00a8\u0006\"\u000549282\u0012\u0011\b\u001d\u0012\u0006\u0010\u00f5\u00ed\u0097\u00a8\u0006\"\u000549283\u0012\u0011\b\u001e\u0012\u0006\u0010\u00a9\u00ee\u0097\u00a8\u0006\"\u000549284\u0012\u0011\b\u001f\u0012\u0006\u0010\u00e5\u00ee\u0097\u00a8\u0006\"\u000549285\u0012\u0011\b \u0012\u0006\u0010\u00a7\u00ef\u0097\u00a8\u0006\"\u000549286\u0012\u0011\b!\u0012\u0006\u0010\u00d6\u00ef\u0097\u00a8\u0006\"\u000549287\u0012\u0011\b\"\u0012\u0006\u0010\u00ff\u00ef\u0097\u00a8\u0006\"\u000549288\u0012\u0011\b#\u0012\u0006\u0010\u00af\u00f0\u0097\u00a8\u0006\"\u000549289\u0012\u0011\b$\u0012\u0006\u0010\u00b7\u00f1\u0097\u00a8\u0006\"\u000542294\u0012\u0011\b%\u0012\u0006\u0010\u00b6\u00f2\u0097\u00a8\u0006\"\u000542295\u0012\u0011\b&\u0012\u0006\u0010\u00a0\u00f3\u0097\u00a8\u0006\"\u000542296\u0012\u0011\b'\u0012\u0006\u0010\u00a8\u00f4\u0097\u00a8\u0006\"\u000542297\u0012\u0011\b(\u0012\u0006\u0010\u0080\u00f5\u0097\u00a8\u0006\"\u000542298\u0012\u0011\b)\u0012\u0006\u0010\u00c6\u00f5\u0097\u00a8\u0006\"\u000542299\u0012\u0011\b*\u0012\u0006\u0010\u00e9\u00f5\u0097\u00a8\u0006\"\u000549295\u0012\u0011\b+\u0012\u0006\u0010\u00eb\u00f6\u0097\u00a8\u0006\"\u000549296\u0012\u0011\b,\u0012\u0006\u0010\u00c6\u00f7\u0097\u00a8\u0006\"\u000549297\u0012\u0011\b-\u0012\u0006\u0010\u00e8\u00f7\u0097\u00a8\u0006\"\u000549298\u0012\u0011\b.\u0012\u0006\u0010\u00af\u00f8\u0097\u00a8\u0006\"\u000549299\u0012\u0011\b/\u0012\u0006\u0010\u00e6\u00f8\u0097\u00a8\u0006\"\u000549300\u0012\u0011\b0\u0012\u0006\u0010\u00bc\u00f9\u0097\u00a8\u0006\"\u000549301\u0012\u0011\b1\u0012\u0006\u0010\u008a\u00fa\u0097\u00a8\u0006\"\u000549302\u0012\u0011\b2\u0012\u0006\u0010\u00c0\u00fa\u0097\u00a8\u0006\"\u000549303\u0012\u0011\b3\u0012\u0006\u0010\u00f5\u00fa\u0097\u00a8\u0006\"\u000549304\u0012\u0011\b4\u0012\u0006\u0010\u009b\u00fb\u0097\u00a8\u0006\"\u000549305\u0012\u0011\b5\u0012\u0006\u0010\u00dc\u00fb\u0097\u00a8\u0006\"\u000549306\u0012\u0011\b6\u0012\u0006\u0010\u008b\u00fc\u0097\u00a8\u0006\"\u000549307\u0012\u0011\b7\u0012\u0006\u0010\u00a0\u00fc\u0097\u00a8\u0006\"\u000549308\u0012\u0011\b8\u0012\u0006\u0010\u00be\u00fc\u0097\u00a8\u0006\"\u000549309\u0012\u0011\b9\u0012\u0006\u0010\u00e0\u00fc\u0097\u00a8\u0006\"\u000542315\u0012\u0011\b:\u0012\u0006\u0010\u00fa\u00fc\u0097\u00a8\u0006\"\u000542316\u0012\u0011\b;\u0012\u0006\u0010\u00c1\u00fd\u0097\u00a8\u0006\"\u000542317\u0012\u0011\b<\u0012\u0006\u0010\u009e\u00fe\u0097\u00a8\u0006\"\u000542319\u0012\u0011\b=\u0012\u0006\u0010\u00f1\u00fe\u0097\u00a8\u0006\"\u000542320\u0012\u0011\b>\u0012\u0006\u0010\u00ba\u00ff\u0097\u00a8\u0006\"\u000538514\u0012\u0011\b?\u0012\u0006\u0010\u0085\u0080\u0098\u00a8\u0006\"\u000534586\u0012\u0011\b@\u0012\u0006\u0010\u00a4\u0080\u0098\u00a8\u0006\"\u000534587\u0012\u0011\bA\u0012\u0006\u0010\u00cd\u0080\u0098\u00a8\u0006\"\u000534588\u0012\u0011\bB\u0012\u0006\u0010\u008e\u0081\u0098\u00a8\u0006\"\u000539497\u0012\u0011\bC\u0012\u0006\u0010\u00b9\u0081\u0098\u00a8\u0006\"\u000549407\u0012\u0011\bD\u0012\u0006\u0010\u0084\u0082\u0098\u00a8\u0006\"\u000550034\u0012\u0011\bE\u0012\u0006\u0010\u00bf\u0082\u0098\u00a8\u0006\"\u000540903\u0012\u0011\bF\u0012\u0006\u0010\u0091\u0083\u0098\u00a8\u0006\"\u000550035\u0012\u0011\bG\u0012\u0006\u0010\u00db\u0083\u0098\u00a8\u0006\"\u000550036\u0012\u0011\bH\u0012\u0006\u0010\u00f0\u0084\u0098\u00a8\u0006\"\u000535712\u0012\u0011\bI\u0012\u0006\u0010\u008c\u0086\u0098\u00a8\u0006\"\u000535713\u001a\b\u001a\u0006FXRL27 \u00b2\u00e8\u0097\u00a8\u0006\"e\n4\n\u00151bc94f39-4-701ff27f-2\u0012\b15:12:00\u001a\b20230916 \u0000*\u00035620\u0000\u0012\u001d\r\u0017\u00bc\u0013\u00c2\u0015\u00f2\u000e\u0092\u00c2\u001d\u0000\u0000\u00aaC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u00a0@(\u00b2\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FXRL27" + }, + { + "type": "con_recorrido", + "entity": "\n$4f66dd4d-2eac-412e-81ab-57ab04a574a7\u001a\u00aa\u0002\n4\n\u00150e8abda7-4-701ff27f-2\u0012\b14:48:00\u001a\b20230916 \u0000*\u00035620\u0000\u0012\u0011\b>\u0012\u0006\u0010\u00bf\u00e8\u0097\u00a8\u0006\"\u000538514\u0012\u0011\b?\u0012\u0006\u0010\u00fa\u00e8\u0097\u00a8\u0006\"\u000534586\u0012\u0011\b@\u0012\u0006\u0010\u0093\u00e9\u0097\u00a8\u0006\"\u000534587\u0012\u0011\bA\u0012\u0006\u0010\u00b3\u00e9\u0097\u00a8\u0006\"\u000534588\u0012\u0011\bB\u0012\u0006\u0010\u00e5\u00e9\u0097\u00a8\u0006\"\u000539497\u0012\u0011\bC\u0012\u0006\u0010\u0085\u00ea\u0097\u00a8\u0006\"\u000549407\u0012\u0011\bD\u0012\u0006\u0010\u00bc\u00ea\u0097\u00a8\u0006\"\u000550034\u0012\u0011\bE\u0012\u0006\u0010\u00e6\u00ea\u0097\u00a8\u0006\"\u000540903\u0012\u0011\bF\u0012\u0006\u0010\u009e\u00eb\u0097\u00a8\u0006\"\u000550035\u0012\u0011\bG\u0012\u0006\u0010\u00d1\u00eb\u0097\u00a8\u0006\"\u000550036\u0012\u0011\bH\u0012\u0006\u0010\u00b1\u00ec\u0097\u00a8\u0006\"\u000535712\u0012\u0011\bI\u0012\u0006\u0010\u0092\u00ed\u0097\u00a8\u0006\"\u000535713\u001a\b\u001a\u0006KHSW90 \u00ae\u00e8\u0097\u00a8\u0006\"e\n4\n\u00150e8abda7-4-701ff27f-2\u0012\b14:48:00\u001a\b20230916 \u0000*\u00035620\u0000\u0012\u001d\r(N\u0013\u00c2\u0015h\u0016\u0092\u00c2\u001d\u0000\u0000xB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UU\u00d5@(\u00ae\u00e8\u0097\u00a8\u0006B\b\u001a\u0006KHSW90" + }, + { + "type": "con_recorrido", + "entity": "\n$a7aea2a6-596e-4464-b680-965ad87443c8\u001a\u00a5\n\n4\n\u00154aa826f5-e-701ff27f-2\u0012\b15:24:00\u001a\b20230916 \u0000*\u00035620\u0000\u0012\u0011\b\t\u0012\u0006\u0010\u00b8\u00e8\u0097\u00a8\u0006\"\u000543080\u0012\u0011\b\n\u0012\u0006\u0010\u00e8\u00e9\u0097\u00a8\u0006\"\u000542953\u0012\u0014\b\u000b\u0012\u0006\u0010\u00cc\u00ea\u0097\u00a8\u0006\"\b20540193\u0012\u0011\b\f\u0012\u0006\u0010\u0082\u00eb\u0097\u00a8\u0006\"\u000542950\u0012\u0014\b\r\u0012\u0006\u0010\u00b6\u00eb\u0097\u00a8\u0006\"\b20540195\u0012\u0014\b\u000e\u0012\u0006\u0010\u00df\u00eb\u0097\u00a8\u0006\"\b20540196\u0012\u0014\b\u000f\u0012\u0006\u0010\u00be\u00ec\u0097\u00a8\u0006\"\b20540198\u0012\u0011\b\u0010\u0012\u0006\u0010\u00d1\u00ec\u0097\u00a8\u0006\"\u000542946\u0012\u0011\b\u0011\u0012\u0006\u0010\u0082\u00ed\u0097\u00a8\u0006\"\u000542894\u0012\u0011\b\u0012\u0012\u0006\u0010\u00a4\u00ed\u0097\u00a8\u0006\"\u000542893\u0012\u0011\b\u0013\u0012\u0006\u0010\u00b8\u00ed\u0097\u00a8\u0006\"\u000542891\u0012\u0011\b\u0014\u0012\u0006\u0010\u00ee\u00ed\u0097\u00a8\u0006\"\u000591008\u0012\u0011\b\u0015\u0012\u0006\u0010\u00c8\u00ee\u0097\u00a8\u0006\"\u000591009\u0012\u0011\b\u0016\u0012\u0006\u0010\u0082\u00ef\u0097\u00a8\u0006\"\u000591010\u0012\u0011\b\u0017\u0012\u0006\u0010\u00b7\u00ef\u0097\u00a8\u0006\"\u000542890\u0012\u0011\b\u0018\u0012\u0006\u0010\u00dd\u00ef\u0097\u00a8\u0006\"\u000542886\u0012\u0011\b\u0019\u0012\u0006\u0010\u00f4\u00ef\u0097\u00a8\u0006\"\u000542885\u0012\u0011\b\u001a\u0012\u0006\u0010\u00b0\u00f0\u0097\u00a8\u0006\"\u000542285\u0012\u0011\b\u001b\u0012\u0006\u0010\u008f\u00f1\u0097\u00a8\u0006\"\u000549281\u0012\u0011\b\u001c\u0012\u0006\u0010\u00c8\u00f1\u0097\u00a8\u0006\"\u000549282\u0012\u0011\b\u001d\u0012\u0006\u0010\u00f7\u00f1\u0097\u00a8\u0006\"\u000549283\u0012\u0011\b\u001e\u0012\u0006\u0010\u00ac\u00f2\u0097\u00a8\u0006\"\u000549284\u0012\u0011\b\u001f\u0012\u0006\u0010\u00e8\u00f2\u0097\u00a8\u0006\"\u000549285\u0012\u0011\b \u0012\u0006\u0010\u00ab\u00f3\u0097\u00a8\u0006\"\u000549286\u0012\u0011\b!\u0012\u0006\u0010\u00db\u00f3\u0097\u00a8\u0006\"\u000549287\u0012\u0011\b\"\u0012\u0006\u0010\u0084\u00f4\u0097\u00a8\u0006\"\u000549288\u0012\u0011\b#\u0012\u0006\u0010\u00b6\u00f4\u0097\u00a8\u0006\"\u000549289\u0012\u0011\b$\u0012\u0006\u0010\u00c3\u00f5\u0097\u00a8\u0006\"\u000542294\u0012\u0011\b%\u0012\u0006\u0010\u00c9\u00f6\u0097\u00a8\u0006\"\u000542295\u0012\u0011\b&\u0012\u0006\u0010\u00ba\u00f7\u0097\u00a8\u0006\"\u000542296\u0012\u0011\b'\u0012\u0006\u0010\u00cd\u00f8\u0097\u00a8\u0006\"\u000542297\u0012\u0011\b(\u0012\u0006\u0010\u00ad\u00f9\u0097\u00a8\u0006\"\u000542298\u0012\u0011\b)\u0012\u0006\u0010\u00fa\u00f9\u0097\u00a8\u0006\"\u000542299\u0012\u0011\b*\u0012\u0006\u0010\u00a1\u00fa\u0097\u00a8\u0006\"\u000549295\u0012\u0011\b+\u0012\u0006\u0010\u00b1\u00fb\u0097\u00a8\u0006\"\u000549296\u0012\u0011\b,\u0012\u0006\u0010\u0098\u00fc\u0097\u00a8\u0006\"\u000549297\u0012\u0011\b-\u0012\u0006\u0010\u00bf\u00fc\u0097\u00a8\u0006\"\u000549298\u0012\u0011\b.\u0012\u0006\u0010\u008f\u00fd\u0097\u00a8\u0006\"\u000549299\u0012\u0011\b/\u0012\u0006\u0010\u00cf\u00fd\u0097\u00a8\u0006\"\u000549300\u0012\u0011\b0\u0012\u0006\u0010\u00b2\u00fe\u0097\u00a8\u0006\"\u000549301\u0012\u0011\b1\u0012\u0006\u0010\u008d\u00ff\u0097\u00a8\u0006\"\u000549302\u0012\u0011\b2\u0012\u0006\u0010\u00cb\u00ff\u0097\u00a8\u0006\"\u000549303\u0012\u0011\b3\u0012\u0006\u0010\u0089\u0080\u0098\u00a8\u0006\"\u000549304\u0012\u0011\b4\u0012\u0006\u0010\u00b6\u0080\u0098\u00a8\u0006\"\u000549305\u0012\u0011\b5\u0012\u0006\u0010\u0083\u0081\u0098\u00a8\u0006\"\u000549306\u0012\u0011\b6\u0012\u0006\u0010\u00bc\u0081\u0098\u00a8\u0006\"\u000549307\u0012\u0011\b7\u0012\u0006\u0010\u00d4\u0081\u0098\u00a8\u0006\"\u000549308\u0012\u0011\b8\u0012\u0006\u0010\u00f8\u0081\u0098\u00a8\u0006\"\u000549309\u0012\u0011\b9\u0012\u0006\u0010\u00a1\u0082\u0098\u00a8\u0006\"\u000542315\u0012\u0011\b:\u0012\u0006\u0010\u00c1\u0082\u0098\u00a8\u0006\"\u000542316\u0012\u0011\b;\u0012\u0006\u0010\u0096\u0083\u0098\u00a8\u0006\"\u000542317\u0012\u0011\b<\u0012\u0006\u0010\u0087\u0084\u0098\u00a8\u0006\"\u000542319\u0012\u0011\b=\u0012\u0006\u0010\u00ec\u0084\u0098\u00a8\u0006\"\u000542320\u0012\u0011\b>\u0012\u0006\u0010\u00c7\u0085\u0098\u00a8\u0006\"\u000538514\u0012\u0011\b?\u0012\u0006\u0010\u00a3\u0086\u0098\u00a8\u0006\"\u000534586\u0012\u0011\b@\u0012\u0006\u0010\u00ca\u0086\u0098\u00a8\u0006\"\u000534587\u0012\u0011\bA\u0012\u0006\u0010\u00fd\u0086\u0098\u00a8\u0006\"\u000534588\u0012\u0011\bB\u0012\u0006\u0010\u00cf\u0087\u0098\u00a8\u0006\"\u000539497\u0012\u0011\bC\u0012\u0006\u0010\u0085\u0088\u0098\u00a8\u0006\"\u000549407\u0012\u0011\bD\u0012\u0006\u0010\u00e4\u0088\u0098\u00a8\u0006\"\u000550034\u0012\u0011\bE\u0012\u0006\u0010\u00af\u0089\u0098\u00a8\u0006\"\u000540903\u0012\u0011\bF\u0012\u0006\u0010\u0097\u008a\u0098\u00a8\u0006\"\u000550035\u0012\u0011\bG\u0012\u0006\u0010\u00f7\u008a\u0098\u00a8\u0006\"\u000550036\u0012\u0011\bH\u0012\u0006\u0010\u00b8\u008c\u0098\u00a8\u0006\"\u000535712\u0012\u0011\bI\u0012\u0006\u0010\u0085\u008e\u0098\u00a8\u0006\"\u000535713\u001a\b\u001a\u0006KPRY88 \u009a\u00e8\u0097\u00a8\u0006\"e\n4\n\u00154aa826f5-e-701ff27f-2\u0012\b15:24:00\u001a\b20230916 \u0000*\u00035620\u0000\u0012\u001d\r\u00ea\u00c7\u0013\u00c2\u0015A\n\u0092\u00c2\u001d\u0000\u0000\u001cC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009a\u00e8\u0097\u00a8\u0006B\b\u001a\u0006KPRY88" + }, + { + "type": "con_recorrido", + "entity": "\n$7a4db7d4-3c12-4e0f-9930-ca0f7fc87b65\u001a\u00f7\u0006\n4\n\u001541c40566-f-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00035620\u0000\u0012\u0011\b\u001f\u0012\u0006\u0010\u00b7\u00e8\u0097\u00a8\u0006\"\u000549285\u0012\u0011\b \u0012\u0006\u0010\u00ff\u00e8\u0097\u00a8\u0006\"\u000549286\u0012\u0011\b!\u0012\u0006\u0010\u00b2\u00e9\u0097\u00a8\u0006\"\u000549287\u0012\u0011\b\"\u0012\u0006\u0010\u00de\u00e9\u0097\u00a8\u0006\"\u000549288\u0012\u0011\b#\u0012\u0006\u0010\u0092\u00ea\u0097\u00a8\u0006\"\u000549289\u0012\u0011\b$\u0012\u0006\u0010\u00a0\u00eb\u0097\u00a8\u0006\"\u000542294\u0012\u0011\b%\u0012\u0006\u0010\u00a2\u00ec\u0097\u00a8\u0006\"\u000542295\u0012\u0011\b&\u0012\u0006\u0010\u008e\u00ed\u0097\u00a8\u0006\"\u000542296\u0012\u0011\b'\u0012\u0006\u0010\u0094\u00ee\u0097\u00a8\u0006\"\u000542297\u0012\u0011\b(\u0012\u0006\u0010\u00ea\u00ee\u0097\u00a8\u0006\"\u000542298\u0012\u0011\b)\u0012\u0006\u0010\u00ad\u00ef\u0097\u00a8\u0006\"\u000542299\u0012\u0011\b*\u0012\u0006\u0010\u00cf\u00ef\u0097\u00a8\u0006\"\u000549295\u0012\u0011\b+\u0012\u0006\u0010\u00c9\u00f0\u0097\u00a8\u0006\"\u000549296\u0012\u0011\b,\u0012\u0006\u0010\u009d\u00f1\u0097\u00a8\u0006\"\u000549297\u0012\u0011\b-\u0012\u0006\u0010\u00bd\u00f1\u0097\u00a8\u0006\"\u000549298\u0012\u0011\b.\u0012\u0006\u0010\u00fe\u00f1\u0097\u00a8\u0006\"\u000549299\u0012\u0011\b/\u0012\u0006\u0010\u00b0\u00f2\u0097\u00a8\u0006\"\u000549300\u0012\u0011\b0\u0012\u0006\u0010\u00fd\u00f2\u0097\u00a8\u0006\"\u000549301\u0012\u0011\b1\u0012\u0006\u0010\u00c3\u00f3\u0097\u00a8\u0006\"\u000549302\u0012\u0011\b2\u0012\u0006\u0010\u00f2\u00f3\u0097\u00a8\u0006\"\u000549303\u0012\u0011\b3\u0012\u0006\u0010\u00a0\u00f4\u0097\u00a8\u0006\"\u000549304\u0012\u0011\b4\u0012\u0006\u0010\u00c2\u00f4\u0097\u00a8\u0006\"\u000549305\u0012\u0011\b5\u0012\u0006\u0010\u00fa\u00f4\u0097\u00a8\u0006\"\u000549306\u0012\u0011\b6\u0012\u0006\u0010\u00a3\u00f5\u0097\u00a8\u0006\"\u000549307\u0012\u0011\b7\u0012\u0006\u0010\u00b4\u00f5\u0097\u00a8\u0006\"\u000549308\u0012\u0011\b8\u0012\u0006\u0010\u00ce\u00f5\u0097\u00a8\u0006\"\u000549309\u0012\u0011\b9\u0012\u0006\u0010\u00eb\u00f5\u0097\u00a8\u0006\"\u000542315\u0012\u0011\b:\u0012\u0006\u0010\u0081\u00f6\u0097\u00a8\u0006\"\u000542316\u0012\u0011\b;\u0012\u0006\u0010\u00bd\u00f6\u0097\u00a8\u0006\"\u000542317\u0012\u0011\b<\u0012\u0006\u0010\u008b\u00f7\u0097\u00a8\u0006\"\u000542319\u0012\u0011\b=\u0012\u0006\u0010\u00cf\u00f7\u0097\u00a8\u0006\"\u000542320\u0012\u0011\b>\u0012\u0006\u0010\u008c\u00f8\u0097\u00a8\u0006\"\u000538514\u0012\u0011\b?\u0012\u0006\u0010\u00c8\u00f8\u0097\u00a8\u0006\"\u000534586\u0012\u0011\b@\u0012\u0006\u0010\u00e1\u00f8\u0097\u00a8\u0006\"\u000534587\u0012\u0011\bA\u0012\u0006\u0010\u0083\u00f9\u0097\u00a8\u0006\"\u000534588\u0012\u0011\bB\u0012\u0006\u0010\u00b7\u00f9\u0097\u00a8\u0006\"\u000539497\u0012\u0011\bC\u0012\u0006\u0010\u00d9\u00f9\u0097\u00a8\u0006\"\u000549407\u0012\u0011\bD\u0012\u0006\u0010\u0095\u00fa\u0097\u00a8\u0006\"\u000550034\u0012\u0011\bE\u0012\u0006\u0010\u00c3\u00fa\u0097\u00a8\u0006\"\u000540903\u0012\u0011\bF\u0012\u0006\u0010\u0083\u00fb\u0097\u00a8\u0006\"\u000550035\u0012\u0011\bG\u0012\u0006\u0010\u00bd\u00fb\u0097\u00a8\u0006\"\u000550036\u0012\u0011\bH\u0012\u0006\u0010\u00b0\u00fc\u0097\u00a8\u0006\"\u000535712\u0012\u0011\bI\u0012\u0006\u0010\u00a6\u00fd\u0097\u00a8\u0006\"\u000535713\u001a\b\u001a\u0006YT2157 \u0090\u00e8\u0097\u00a8\u0006\"e\n4\n\u001541c40566-f-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00035620\u0000\u0012\u001d\r\u0012\u00a1\u0013\u00c2\u00153\u000f\u0092\u00c2\u001d\u0000\u0000\u00b1C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00ab\u00aa:A(\u0090\u00e8\u0097\u00a8\u0006B\b\u001a\u0006YT2157" + }, + { + "type": "con_recorrido", + "entity": "\n$a920c00a-9741-46ab-8bca-a23deb495c94\u001a\u00b4\b\n4\n\u00158be7751a-7-701ff27f-2\u0012\b15:13:00\u001a\b20230916 \u0000*\u00035620\u0001\u0012\u0011\b\u000b\u0012\u0006\u0010\u00db\u00e8\u0097\u00a8\u0006\"\u000537477\u0012\u0011\b\f\u0012\u0006\u0010\u009c\u00e9\u0097\u00a8\u0006\"\u000540848\u0012\u0011\b\r\u0012\u0006\u0010\u00f5\u00e9\u0097\u00a8\u0006\"\u00052-Apr\u0012\u0011\b\u000e\u0012\u0006\u0010\u00b0\u00ea\u0097\u00a8\u0006\"\u000539728\u0012\u0011\b\u000f\u0012\u0006\u0010\u0095\u00eb\u0097\u00a8\u0006\"\u000539729\u0012\u0011\b\u0010\u0012\u0006\u0010\u00a8\u00eb\u0097\u00a8\u0006\"\u000539730\u0012\u0011\b\u0011\u0012\u0006\u0010\u0094\u00ec\u0097\u00a8\u0006\"\u000542200\u0012\u0011\b\u0012\u0012\u0006\u0010\u00c0\u00ec\u0097\u00a8\u0006\"\u000542203\u0012\u0011\b\u0013\u0012\u0006\u0010\u00fa\u00ec\u0097\u00a8\u0006\"\u000542204\u0012\u0011\b\u0014\u0012\u0006\u0010\u009a\u00ed\u0097\u00a8\u0006\"\u000542205\u0012\u0011\b\u0015\u0012\u0006\u0010\u00db\u00ed\u0097\u00a8\u0006\"\u000542201\u0012\u0011\b\u0016\u0012\u0006\u0010\u00cf\u00ef\u0097\u00a8\u0006\"\u000542206\u0012\u0011\b\u0017\u0012\u0006\u0010\u0085\u00f0\u0097\u00a8\u0006\"\u000542207\u0012\u0011\b\u0018\u0012\u0006\u0010\u00c4\u00f0\u0097\u00a8\u0006\"\u000542208\u0012\u0011\b\u0019\u0012\u0006\u0010\u00ba\u00f1\u0097\u00a8\u0006\"\u000542564\u0012\u0011\b\u001a\u0012\u0006\u0010\u00a1\u00f2\u0097\u00a8\u0006\"\u000542214\u0012\u0011\b\u001b\u0012\u0006\u0010\u008f\u00f3\u0097\u00a8\u0006\"\u000542209\u0012\u0011\b\u001c\u0012\u0006\u0010\u00fb\u00f3\u0097\u00a8\u0006\"\u000542210\u0012\u0011\b\u001d\u0012\u0006\u0010\u00b2\u00f5\u0097\u00a8\u0006\"\u000540951\u0012\u0011\b\u001e\u0012\u0006\u0010\u00f2\u00f5\u0097\u00a8\u0006\"\u000540952\u0012\u0011\b\u001f\u0012\u0006\u0010\u00af\u00f6\u0097\u00a8\u0006\"\u000540953\u0012\u0011\b \u0012\u0006\u0010\u00dc\u00f6\u0097\u00a8\u0006\"\u000540954\u0012\u0011\b!\u0012\u0006\u0010\u00a5\u00f7\u0097\u00a8\u0006\"\u000540955\u0012\u0011\b\"\u0012\u0006\u0010\u00c9\u00f7\u0097\u00a8\u0006\"\u000540956\u0012\u0011\b#\u0012\u0006\u0010\u008a\u00f8\u0097\u00a8\u0006\"\u000540957\u0012\u0011\b$\u0012\u0006\u0010\u00c9\u00f8\u0097\u00a8\u0006\"\u000540958\u0012\u0011\b%\u0012\u0006\u0010\u00e2\u00f8\u0097\u00a8\u0006\"\u000540959\u0012\u0011\b&\u0012\u0006\u0010\u0081\u00fa\u0097\u00a8\u0006\"\u000542897\u0012\u0011\b'\u0012\u0006\u0010\u00c9\u00fa\u0097\u00a8\u0006\"\u000542898\u0012\u0011\b(\u0012\u0006\u0010\u008f\u00fb\u0097\u00a8\u0006\"\u000591011\u0012\u0011\b)\u0012\u0006\u0010\u00cc\u00fb\u0097\u00a8\u0006\"\u000591012\u0012\u0011\b*\u0012\u0006\u0010\u00bd\u00fc\u0097\u00a8\u0006\"\u000591013\u0012\u0011\b+\u0012\u0006\u0010\u0088\u00fd\u0097\u00a8\u0006\"\u000591014\u0012\u0011\b,\u0012\u0006\u0010\u00c5\u00fd\u0097\u00a8\u0006\"\u000542945\u0012\u0011\b-\u0012\u0006\u0010\u00fe\u00fd\u0097\u00a8\u0006\"\u000542947\u0012\u0011\b.\u0012\u0006\u0010\u00b4\u00fe\u0097\u00a8\u0006\"\u000542949\u0012\u0014\b/\u0012\u0006\u0010\u00dd\u00ff\u0097\u00a8\u0006\"\b20540195\u0012\u0011\b0\u0012\u0006\u0010\u0086\u0080\u0098\u00a8\u0006\"\u000542951\u0012\u0014\b1\u0012\u0006\u0010\u00b9\u0080\u0098\u00a8\u0006\"\b20540194\u0012\u0011\b2\u0012\u0006\u0010\u00ff\u0080\u0098\u00a8\u0006\"\u000542952\u0012\u0011\b3\u0012\u0006\u0010\u00b1\u0081\u0098\u00a8\u0006\"\u000542958\u0012\u0011\b4\u0012\u0006\u0010\u00dd\u0081\u0098\u00a8\u0006\"\u000542955\u0012\u0011\b5\u0012\u0006\u0010\u00fe\u0081\u0098\u00a8\u0006\"\u000542954\u0012\u0014\b6\u0012\u0006\u0010\u00c2\u0082\u0098\u00a8\u0006\"\b20540192\u0012\u0011\b7\u0012\u0006\u0010\u00e9\u0082\u0098\u00a8\u0006\"\u000542979\u0012\u0014\b8\u0012\u0006\u0010\u00c2\u0083\u0098\u00a8\u0006\"\b20540201\u0012\u0011\b9\u0012\u0006\u0010\u00fa\u0083\u0098\u00a8\u0006\"\u000543082\u0012\u0014\b:\u0012\u0006\u0010\u009d\u0084\u0098\u00a8\u0006\"\b20540202\u0012\u0011\b;\u0012\u0006\u0010\u00ce\u0084\u0098\u00a8\u0006\"\u000543080\u0012\u0011\b<\u0012\u0006\u0010\u00c3\u0086\u0098\u00a8\u0006\"\u000542983\u0012\u0014\b=\u0012\u0006\u0010\u00b4\u0087\u0098\u00a8\u0006\"\b20540199\u0012\u0011\b>\u0012\u0006\u0010\u00eb\u0087\u0098\u00a8\u0006\"\u000542957\u001a\b\u001a\u0006YU8339 \u0094\u00e8\u0097\u00a8\u0006\"e\n4\n\u00158be7751a-7-701ff27f-2\u0012\b15:13:00\u001a\b20230916 \u0000*\u00035620\u0001\u0012\u001d\rjP\u0013\u00c2\u0015\u0097\u001a\u0092\u00c2\u001d\u0000\u0000tC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u008e?(\u0094\u00e8\u0097\u00a8\u0006B\b\u001a\u0006YU8339" + }, + { + "type": "con_recorrido", + "entity": "\n$f632c6be-60bb-47ca-9afe-b9bd177374ca\u001a\u00dc\u000b\n/\n\u001017357-701ff27f-2\u0012\b14:40:00\u001a\b20230916 \u0000*\u00035650\u0001\u0012\u0012\b\u0007\u0012\u0006\u0010\u00ba\u00e8\u0097\u00a8\u0006\"\u000613-Feb\u0012\u0012\b\b\u0012\u0006\u0010\u00d7\u00e8\u0097\u00a8\u0006\"\u000628-Jan\u0012\u0010\b\t\u0012\u0006\u0010\u0089\u00e9\u0097\u00a8\u0006\"\u000412-3\u0012\u0012\b\n\u0012\u0006\u0010\u00d9\u00e9\u0097\u00a8\u0006\"\u000612-Jan\u0012\u0012\b\u000b\u0012\u0006\u0010\u0086\u00ea\u0097\u00a8\u0006\"\u000612-Feb\u0012\u0011\b\f\u0012\u0006\u0010\u00bd\u00ea\u0097\u00a8\u0006\"\u00057-Jan\u0012\u0011\b\r\u0012\u0006\u0010\u00f4\u00ea\u0097\u00a8\u0006\"\u00057-Mar\u0012\u0011\b\u000e\u0012\u0006\u0010\u0084\u00ec\u0097\u00a8\u0006\"\u00057-Jun\u0012\u0011\b\u000f\u0012\u0006\u0010\u00c0\u00ec\u0097\u00a8\u0006\"\u00057-Aug\u0012\u0011\b\u0010\u0012\u0006\u0010\u008c\u00ed\u0097\u00a8\u0006\"\u00056-Jan\u0012\u0011\b\u0011\u0012\u0006\u0010\u00cf\u00ed\u0097\u00a8\u0006\"\u00056-Mar\u0012\u0011\b\u0012\u0012\u0006\u0010\u00b3\u00ee\u0097\u00a8\u0006\"\u00056-May\u0012\u0011\b\u0013\u0012\u0006\u0010\u00c8\u00ef\u0097\u00a8\u0006\"\u00056-Jul\u0012\u0011\b\u0014\u0012\u0006\u0010\u0089\u00f0\u0097\u00a8\u0006\"\u00056-Sep\u0012\u0011\b\u0015\u0012\u0006\u0010\u00d9\u00f0\u0097\u00a8\u0006\"\u00056-Nov\u0012\u0011\b\u0016\u0012\u0006\u0010\u00c5\u00f1\u0097\u00a8\u0006\"\u00056-Dec\u0012\u0012\b\u0017\u0012\u0006\u0010\u009e\u00f2\u0097\u00a8\u0006\"\u0006Jun-14\u0012\u0012\b\u0018\u0012\u0006\u0010\u00b1\u00f3\u0097\u00a8\u0006\"\u0006Jun-17\u0012\u0012\b\u0019\u0012\u0006\u0010\u0080\u00f4\u0097\u00a8\u0006\"\u0006Jun-19\u0012\u0012\b\u001a\u0012\u0006\u0010\u00bb\u00f4\u0097\u00a8\u0006\"\u0006Jun-20\u0012\u0012\b\u001b\u0012\u0006\u0010\u00f9\u00f4\u0097\u00a8\u0006\"\u0006Jun-22\u0012\u0012\b\u001c\u0012\u0006\u0010\u00ba\u00f5\u0097\u00a8\u0006\"\u0006Jun-24\u0012\u0012\b\u001d\u0012\u0006\u0010\u0095\u00f6\u0097\u00a8\u0006\"\u0006Jun-25\u0012\u0011\b\u001e\u0012\u0006\u0010\u00c2\u00f8\u0097\u00a8\u0006\"\u000590003\u0012\u0011\b\u001f\u0012\u0006\u0010\u00f4\u00f8\u0097\u00a8\u0006\"\u000590007\u0012\u0011\b \u0012\u0006\u0010\u00a1\u00f9\u0097\u00a8\u0006\"\u000540830\u0012\u0011\b!\u0012\u0006\u0010\u00c9\u00f9\u0097\u00a8\u0006\"\u000540831\u0012\u0011\b\"\u0012\u0006\u0010\u00a6\u00fa\u0097\u00a8\u0006\"\u000539599\u0012\u0011\b#\u0012\u0006\u0010\u00c0\u00fa\u0097\u00a8\u0006\"\u000539600\u0012\u0011\b$\u0012\u0006\u0010\u008c\u00fb\u0097\u00a8\u0006\"\u000537496\u0012\u0011\b%\u0012\u0006\u0010\u00c5\u00fb\u0097\u00a8\u0006\"\u000545064\u0012\u0011\b&\u0012\u0006\u0010\u009c\u00fc\u0097\u00a8\u0006\"\u000537506\u0012\u0011\b'\u0012\u0006\u0010\u00d4\u00fc\u0097\u00a8\u0006\"\u000545068\u0012\u0011\b(\u0012\u0006\u0010\u00e5\u00fd\u0097\u00a8\u0006\"\u000537480\u0012\u0011\b)\u0012\u0006\u0010\u00b3\u00fe\u0097\u00a8\u0006\"\u000537477\u0012\u0011\b*\u0012\u0006\u0010\u008a\u00ff\u0097\u00a8\u0006\"\u000540848\u0012\u0011\b+\u0012\u0006\u0010\u00f8\u00ff\u0097\u00a8\u0006\"\u00052-Apr\u0012\u0011\b,\u0012\u0006\u0010\u00c5\u0080\u0098\u00a8\u0006\"\u000539728\u0012\u0011\b-\u0012\u0006\u0010\u00cc\u0081\u0098\u00a8\u0006\"\u000539729\u0012\u0011\b.\u0012\u0006\u0010\u00ef\u0081\u0098\u00a8\u0006\"\u000539730\u0012\u0011\b/\u0012\u0006\u0010\u0084\u0083\u0098\u00a8\u0006\"\u000542200\u0012\u0011\b0\u0012\u0006\u0010\u00c9\u0083\u0098\u00a8\u0006\"\u000542203\u0012\u0011\b1\u0012\u0006\u0010\u00a9\u0084\u0098\u00a8\u0006\"\u000542204\u0012\u0011\b2\u0012\u0006\u0010\u00dc\u0084\u0098\u00a8\u0006\"\u000542205\u0012\u0011\b3\u0012\u0006\u0010\u00bc\u0085\u0098\u00a8\u0006\"\u000542201\u0012\u0011\b4\u0012\u0006\u0010\u00db\u0088\u0098\u00a8\u0006\"\u000542206\u0012\u0011\b5\u0012\u0006\u0010\u00ce\u0089\u0098\u00a8\u0006\"\u000542207\u0012\u0011\b6\u0012\u0006\u0010\u00be\u008a\u0098\u00a8\u0006\"\u000542208\u0012\u0011\b7\u0012\u0006\u0010\u00b6\u008c\u0098\u00a8\u0006\"\u000542564\u0012\u0011\b8\u0012\u0006\u0010\u0098\u008e\u0098\u00a8\u0006\"\u000542214\u0012\u0011\b9\u0012\u0006\u0010\u0081\u0090\u0098\u00a8\u0006\"\u000542209\u0012\u0011\b:\u0012\u0006\u0010\u009a\u0092\u0098\u00a8\u0006\"\u000542210\u0012\u0011\b;\u0012\u0006\u0010\u00ea\u0095\u0098\u00a8\u0006\"\u000540951\u0012\u0011\b<\u0012\u0006\u0010\u0099\u0097\u0098\u00a8\u0006\"\u000540952\u0012\u0011\b=\u0012\u0006\u0010\u00c7\u0098\u0098\u00a8\u0006\"\u000540953\u0012\u0011\b>\u0012\u0006\u0010\u00cf\u0099\u0098\u00a8\u0006\"\u000540954\u0012\u0011\b?\u0012\u0006\u0010\u00b4\u009b\u0098\u00a8\u0006\"\u000540955\u0012\u0011\b@\u0012\u0006\u0010\u00b2\u009c\u0098\u00a8\u0006\"\u000540956\u0012\u0011\bA\u0012\u0006\u0010\u00fb\u009d\u0098\u00a8\u0006\"\u000540957\u0012\u0011\bB\u0012\u0006\u0010\u00ba\u009f\u0098\u00a8\u0006\"\u000540958\u0012\u0011\bC\u0012\u0006\u0010\u009e\u00a0\u0098\u00a8\u0006\"\u000540959\u0012\u0011\bD\u0012\u0006\u0010\u00b1\u00a2\u0098\u00a8\u0006\"\u000542223\u0012\u0011\bE\u0012\u0006\u0010\u00a6\u00ad\u0098\u00a8\u0006\"\u000542228\u0012\u0011\bF\u0012\u0006\u0010\u0094\u00af\u0098\u00a8\u0006\"\u000542229\u0012\u0011\bG\u0012\u0006\u0010\u00c0\u00b2\u0098\u00a8\u0006\"\u000542230\u0012\u0011\bH\u0012\u0006\u0010\u00d9\u00b4\u0098\u00a8\u0006\"\u000542231\u0012\u0011\bI\u0012\u0006\u0010\u00d5\u00b8\u0098\u00a8\u0006\"\u000542232\u0012\u0011\bJ\u0012\u0006\u0010\u00bc\u00c6\u0098\u00a8\u0006\"\u000534557\u0012\u0011\bK\u0012\u0006\u0010\u0085\u00cd\u0098\u00a8\u0006\"\u000542212\u0012\u0011\bL\u0012\u0006\u0010\u00a4\u00d4\u0098\u00a8\u0006\"\u000534560\u0012\u0011\bM\u0012\u0006\u0010\u00c6\u00d7\u0098\u00a8\u0006\"\u000542273\u0012\u0011\bN\u0012\u0006\u0010\u0090\u00e4\u0098\u00a8\u0006\"\u000549203\u0012\u0011\bO\u0012\u0006\u0010\u00d5\u00ea\u0098\u00a8\u0006\"\u000549204\u0012\u0011\bP\u0012\u0006\u0010\u00f4\u00eb\u0098\u00a8\u0006\"\u000542503\u0012\u0011\bQ\u0012\u0006\u0010\u00c9\u00ed\u0098\u00a8\u0006\"\u000549264\u001a\b\u001a\u0006CTKZ93 \u00ac\u00e8\u0097\u00a8\u0006\"`\n/\n\u001017357-701ff27f-2\u0012\b14:40:00\u001a\b20230916 \u0000*\u00035650\u0001\u0012\u001d\r_\u00f0\u0012\u00c2\u0015U\u00fb\u0091\u00c2\u001d\u0000\u0000vC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00ab\u00aa\u0012A(\u00ac\u00e8\u0097\u00a8\u0006B\b\u001a\u0006CTKZ93" + }, + { + "type": "con_recorrido", + "entity": "\n$2f7035f0-f82e-42a2-a29e-4f368f82abf9\u001a\u00a2\b\n/\n\u001017436-701ff27f-2\u0012\b15:04:00\u001a\b20230916 \u0000*\u00035650\u0000\u0012\u0011\b(\u0012\u0006\u0010\u00c4\u00e8\u0097\u00a8\u0006\"\u000549303\u0012\u0011\b)\u0012\u0006\u0010\u00f6\u00e8\u0097\u00a8\u0006\"\u000549304\u0012\u0011\b*\u0012\u0006\u0010\u009a\u00e9\u0097\u00a8\u0006\"\u000549305\u0012\u0011\b+\u0012\u0006\u0010\u00d5\u00e9\u0097\u00a8\u0006\"\u000549306\u0012\u0011\b,\u0012\u0006\u0010\u00fe\u00e9\u0097\u00a8\u0006\"\u000549307\u0012\u0011\b-\u0012\u0006\u0010\u0097\u00ea\u0097\u00a8\u0006\"\u000549308\u0012\u0011\b.\u0012\u0006\u0010\u00b0\u00ea\u0097\u00a8\u0006\"\u000549309\u0012\u0011\b/\u0012\u0006\u0010\u00f6\u00ea\u0097\u00a8\u0006\"\u000549310\u0012\u0011\b0\u0012\u0006\u0010\u0095\u00eb\u0097\u00a8\u0006\"\u000549311\u0012\u0011\b1\u0012\u0006\u0010\u00ae\u00eb\u0097\u00a8\u0006\"\u000539633\u0012\u0011\b2\u0012\u0006\u0010\u00ce\u00eb\u0097\u00a8\u0006\"\u000535796\u0012\u0011\b3\u0012\u0006\u0010\u00fe\u00eb\u0097\u00a8\u0006\"\u000535797\u0012\u0011\b4\u0012\u0006\u0010\u00a7\u00ec\u0097\u00a8\u0006\"\u000535798\u0012\u0011\b5\u0012\u0006\u0010\u00cd\u00ec\u0097\u00a8\u0006\"\u000535799\u0012\u0011\b6\u0012\u0006\u0010\u0092\u00ed\u0097\u00a8\u0006\"\u000535800\u0012\u0011\b7\u0012\u0006\u0010\u00c2\u00ed\u0097\u00a8\u0006\"\u000535801\u0012\u0011\b8\u0012\u0006\u0010\u00dc\u00ed\u0097\u00a8\u0006\"\u000535802\u0012\u0011\b9\u0012\u0006\u0010\u008a\u00ee\u0097\u00a8\u0006\"\u000535803\u0012\u0011\b:\u0012\u0006\u0010\u00c0\u00ee\u0097\u00a8\u0006\"\u000538507\u0012\u0011\b;\u0012\u0006\u0010\u00f1\u00ee\u0097\u00a8\u0006\"\u000534473\u0012\u0011\b<\u0012\u0006\u0010\u009c\u00ef\u0097\u00a8\u0006\"\u000538500\u0012\u0011\b=\u0012\u0006\u0010\u00c9\u00ef\u0097\u00a8\u0006\"\u000535808\u0012\u0011\b>\u0012\u0006\u0010\u0081\u00f0\u0097\u00a8\u0006\"\u000535710\u0012\u0011\b?\u0012\u0006\u0010\u00ac\u00f0\u0097\u00a8\u0006\"\u000550036\u0012\u0011\b@\u0012\u0006\u0010\u0086\u00f2\u0097\u00a8\u0006\"\u000550037\u0012\u0011\bA\u0012\u0006\u0010\u0098\u00f3\u0097\u00a8\u0006\"\u000550038\u0012\u0011\bB\u0012\u0006\u0010\u00e4\u00f3\u0097\u00a8\u0006\"\u000550039\u0012\u0011\bC\u0012\u0006\u0010\u009c\u00f4\u0097\u00a8\u0006\"\u000550040\u0012\u0011\bD\u0012\u0006\u0010\u00f0\u00f4\u0097\u00a8\u0006\"\u000550041\u0012\u0012\bE\u0012\u0006\u0010\u00ff\u00f5\u0097\u00a8\u0006\"\u0006Jun-15\u0012\u0012\bF\u0012\u0006\u0010\u00e6\u00f6\u0097\u00a8\u0006\"\u0006Jun-13\u0012\u0011\bG\u0012\u0006\u0010\u00b4\u00f8\u0097\u00a8\u0006\"\u00056-Oct\u0012\u0011\bH\u0012\u0006\u0010\u00ec\u00f8\u0097\u00a8\u0006\"\u00056-Aug\u0012\u0011\bI\u0012\u0006\u0010\u00a1\u00fa\u0097\u00a8\u0006\"\u00056-Jun\u0012\u0011\bJ\u0012\u0006\u0010\u00ae\u00fb\u0097\u00a8\u0006\"\u00056-Feb\u0012\u0011\bK\u0012\u0006\u0010\u00fc\u00fc\u0097\u00a8\u0006\"\u000544956\u0012\u0011\bL\u0012\u0006\u0010\u00ab\u00fd\u0097\u00a8\u0006\"\u000544957\u0012\u0011\bM\u0012\u0006\u0010\u00b1\u00fe\u0097\u00a8\u0006\"\u000545057\u0012\u0011\bN\u0012\u0006\u0010\u00fd\u00fe\u0097\u00a8\u0006\"\u000544963\u0012\u0011\bO\u0012\u0006\u0010\u008c\u0080\u0098\u00a8\u0006\"\u000534493\u0012\u0011\bP\u0012\u0006\u0010\u00d3\u0080\u0098\u00a8\u0006\"\u000550019\u0012\u0012\bQ\u0012\u0006\u0010\u00cd\u0081\u0098\u00a8\u0006\"\u000610-Jan\u0012\u0011\bR\u0012\u0006\u0010\u0092\u0082\u0098\u00a8\u0006\"\u000544863\u0012\u0012\bS\u0012\u0006\u0010\u00bf\u0082\u0098\u00a8\u0006\"\u000610-Mar\u0012\u0012\bT\u0012\u0006\u0010\u0091\u0083\u0098\u00a8\u0006\"\u000611-Jan\u0012\u0011\bU\u0012\u0006\u0010\u00e0\u0083\u0098\u00a8\u0006\"\u000539943\u0012\u0011\bV\u0012\u0006\u0010\u0088\u0084\u0098\u00a8\u0006\"\u000539944\u0012\u0011\bW\u0012\u0006\u0010\u00d1\u0085\u0098\u00a8\u0006\"\u000539947\u0012\u0011\bX\u0012\u0006\u0010\u008a\u0086\u0098\u00a8\u0006\"\u000539949\u0012\u0011\bY\u0012\u0006\u0010\u009b\u0086\u0098\u00a8\u0006\"\u000539950\u0012\u0011\bZ\u0012\u0006\u0010\u00f0\u0086\u0098\u00a8\u0006\"\u000539952\u0012\u0011\b[\u0012\u0006\u0010\u0082\u0088\u0098\u00a8\u0006\"\u000534529\u001a\b\u001a\u0006DTRV85 \u0096\u00e8\u0097\u00a8\u0006\"`\n/\n\u001017436-701ff27f-2\u0012\b15:04:00\u001a\b20230916 \u0000*\u00035650\u0000\u0012\u001d\r``\u0013\u00c2\u0015\u00e2\u001a\u0092\u00c2\u001d\u0000\u0000\u00a8C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0096\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DTRV85" + }, + { + "type": "con_recorrido", + "entity": "\n$629206a6-5f5c-48e3-934d-577a00ed01be\u001a\u00da\u0004\n/\n\u001017434-701ff27f-2\u0012\b14:40:00\u001a\b20230916 \u0000*\u00035650\u0000\u0012\u0011\b@\u0012\u0006\u0010\u00e6\u00e8\u0097\u00a8\u0006\"\u000550037\u0012\u0011\bA\u0012\u0006\u0010\u0083\u00ea\u0097\u00a8\u0006\"\u000550038\u0012\u0011\bB\u0012\u0006\u0010\u00d2\u00ea\u0097\u00a8\u0006\"\u000550039\u0012\u0011\bC\u0012\u0006\u0010\u008c\u00eb\u0097\u00a8\u0006\"\u000550040\u0012\u0011\bD\u0012\u0006\u0010\u00e1\u00eb\u0097\u00a8\u0006\"\u000550041\u0012\u0012\bE\u0012\u0006\u0010\u00ee\u00ec\u0097\u00a8\u0006\"\u0006Jun-15\u0012\u0012\bF\u0012\u0006\u0010\u00d0\u00ed\u0097\u00a8\u0006\"\u0006Jun-13\u0012\u0011\bG\u0012\u0006\u0010\u008f\u00ef\u0097\u00a8\u0006\"\u00056-Oct\u0012\u0011\bH\u0012\u0006\u0010\u00c1\u00ef\u0097\u00a8\u0006\"\u00056-Aug\u0012\u0011\bI\u0012\u0006\u0010\u00df\u00f0\u0097\u00a8\u0006\"\u00056-Jun\u0012\u0011\bJ\u0012\u0006\u0010\u00d6\u00f1\u0097\u00a8\u0006\"\u00056-Feb\u0012\u0011\bK\u0012\u0006\u0010\u00ff\u00f2\u0097\u00a8\u0006\"\u000544956\u0012\u0011\bL\u0012\u0006\u0010\u00a4\u00f3\u0097\u00a8\u0006\"\u000544957\u0012\u0011\bM\u0012\u0006\u0010\u008e\u00f4\u0097\u00a8\u0006\"\u000545057\u0012\u0011\bN\u0012\u0006\u0010\u00c8\u00f4\u0097\u00a8\u0006\"\u000544963\u0012\u0011\bO\u0012\u0006\u0010\u00b5\u00f5\u0097\u00a8\u0006\"\u000534493\u0012\u0011\bP\u0012\u0006\u0010\u00e9\u00f5\u0097\u00a8\u0006\"\u000550019\u0012\u0012\bQ\u0012\u0006\u0010\u00c3\u00f6\u0097\u00a8\u0006\"\u000610-Jan\u0012\u0011\bR\u0012\u0006\u0010\u00f5\u00f6\u0097\u00a8\u0006\"\u000544863\u0012\u0012\bS\u0012\u0006\u0010\u0095\u00f7\u0097\u00a8\u0006\"\u000610-Mar\u0012\u0012\bT\u0012\u0006\u0010\u00cf\u00f7\u0097\u00a8\u0006\"\u000611-Jan\u0012\u0011\bU\u0012\u0006\u0010\u0087\u00f8\u0097\u00a8\u0006\"\u000539943\u0012\u0011\bV\u0012\u0006\u0010\u00a3\u00f8\u0097\u00a8\u0006\"\u000539944\u0012\u0011\bW\u0012\u0006\u0010\u00ab\u00f9\u0097\u00a8\u0006\"\u000539947\u0012\u0011\bX\u0012\u0006\u0010\u00d2\u00f9\u0097\u00a8\u0006\"\u000539949\u0012\u0011\bY\u0012\u0006\u0010\u00dd\u00f9\u0097\u00a8\u0006\"\u000539950\u0012\u0011\bZ\u0012\u0006\u0010\u0095\u00fa\u0097\u00a8\u0006\"\u000539952\u0012\u0011\b[\u0012\u0006\u0010\u00f4\u00fa\u0097\u00a8\u0006\"\u000534529\u001a\b\u001a\u0006FFVL86 \u00cb\u00e8\u0097\u00a8\u0006\"`\n/\n\u001017434-701ff27f-2\u0012\b14:40:00\u001a\b20230916 \u0000*\u00035650\u0000\u0012\u001d\r\u00029\u0013\u00c2\u0015_\f\u0092\u00c2\u001d\u0000\u0080\u00acC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u001c\u00c7\u009dA(\u00cb\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FFVL86" + }, + { + "type": "con_recorrido", + "entity": "\n$c3f27192-19ad-4426-b8da-1ccbb6f97496\u001a\u0099\n\n/\n\u001017437-701ff27f-2\u0012\b15:16:00\u001a\b20230916 \u0000*\u00035650\u0000\u0012\u0011\b\u001b\u0012\u0006\u0010\u008c\u00e9\u0097\u00a8\u0006\"\u000542295\u0012\u0011\b\u001c\u0012\u0006\u0010\u0084\u00ea\u0097\u00a8\u0006\"\u000542296\u0012\u0011\b\u001d\u0012\u0006\u0010\u0085\u00eb\u0097\u00a8\u0006\"\u000542297\u0012\u0011\b\u001e\u0012\u0006\u0010\u00e7\u00eb\u0097\u00a8\u0006\"\u000542298\u0012\u0011\b\u001f\u0012\u0006\u0010\u00a7\u00ec\u0097\u00a8\u0006\"\u000542299\u0012\u0011\b \u0012\u0006\u0010\u00d1\u00ec\u0097\u00a8\u0006\"\u000549295\u0012\u0011\b!\u0012\u0006\u0010\u00c9\u00ed\u0097\u00a8\u0006\"\u000549296\u0012\u0011\b\"\u0012\u0006\u0010\u009d\u00ee\u0097\u00a8\u0006\"\u000549297\u0012\u0011\b#\u0012\u0006\u0010\u00c0\u00ee\u0097\u00a8\u0006\"\u000549298\u0012\u0011\b$\u0012\u0006\u0010\u00fb\u00ee\u0097\u00a8\u0006\"\u000549299\u0012\u0011\b%\u0012\u0006\u0010\u00ae\u00ef\u0097\u00a8\u0006\"\u000549300\u0012\u0011\b&\u0012\u0006\u0010\u00ff\u00ef\u0097\u00a8\u0006\"\u000549301\u0012\u0011\b'\u0012\u0006\u0010\u00c0\u00f0\u0097\u00a8\u0006\"\u000549302\u0012\u0011\b(\u0012\u0006\u0010\u00ec\u00f0\u0097\u00a8\u0006\"\u000549303\u0012\u0011\b)\u0012\u0006\u0010\u009a\u00f1\u0097\u00a8\u0006\"\u000549304\u0012\u0011\b*\u0012\u0006\u0010\u00bb\u00f1\u0097\u00a8\u0006\"\u000549305\u0012\u0011\b+\u0012\u0006\u0010\u00f1\u00f1\u0097\u00a8\u0006\"\u000549306\u0012\u0011\b,\u0012\u0006\u0010\u0098\u00f2\u0097\u00a8\u0006\"\u000549307\u0012\u0011\b-\u0012\u0006\u0010\u00b0\u00f2\u0097\u00a8\u0006\"\u000549308\u0012\u0011\b.\u0012\u0006\u0010\u00c7\u00f2\u0097\u00a8\u0006\"\u000549309\u0012\u0011\b/\u0012\u0006\u0010\u008a\u00f3\u0097\u00a8\u0006\"\u000549310\u0012\u0011\b0\u0012\u0006\u0010\u00a9\u00f3\u0097\u00a8\u0006\"\u000549311\u0012\u0011\b1\u0012\u0006\u0010\u00c1\u00f3\u0097\u00a8\u0006\"\u000539633\u0012\u0011\b2\u0012\u0006\u0010\u00e0\u00f3\u0097\u00a8\u0006\"\u000535796\u0012\u0011\b3\u0012\u0006\u0010\u0090\u00f4\u0097\u00a8\u0006\"\u000535797\u0012\u0011\b4\u0012\u0006\u0010\u00b9\u00f4\u0097\u00a8\u0006\"\u000535798\u0012\u0011\b5\u0012\u0006\u0010\u00df\u00f4\u0097\u00a8\u0006\"\u000535799\u0012\u0011\b6\u0012\u0006\u0010\u00a5\u00f5\u0097\u00a8\u0006\"\u000535800\u0012\u0011\b7\u0012\u0006\u0010\u00d7\u00f5\u0097\u00a8\u0006\"\u000535801\u0012\u0011\b8\u0012\u0006\u0010\u00f1\u00f5\u0097\u00a8\u0006\"\u000535802\u0012\u0011\b9\u0012\u0006\u0010\u00a1\u00f6\u0097\u00a8\u0006\"\u000535803\u0012\u0011\b:\u0012\u0006\u0010\u00da\u00f6\u0097\u00a8\u0006\"\u000538507\u0012\u0011\b;\u0012\u0006\u0010\u008e\u00f7\u0097\u00a8\u0006\"\u000534473\u0012\u0011\b<\u0012\u0006\u0010\u00bc\u00f7\u0097\u00a8\u0006\"\u000538500\u0012\u0011\b=\u0012\u0006\u0010\u00ed\u00f7\u0097\u00a8\u0006\"\u000535808\u0012\u0011\b>\u0012\u0006\u0010\u00aa\u00f8\u0097\u00a8\u0006\"\u000535710\u0012\u0011\b?\u0012\u0006\u0010\u00da\u00f8\u0097\u00a8\u0006\"\u000550036\u0012\u0011\b@\u0012\u0006\u0010\u00d0\u00fa\u0097\u00a8\u0006\"\u000550037\u0012\u0011\bA\u0012\u0006\u0010\u00fc\u00fb\u0097\u00a8\u0006\"\u000550038\u0012\u0011\bB\u0012\u0006\u0010\u00d6\u00fc\u0097\u00a8\u0006\"\u000550039\u0012\u0011\bC\u0012\u0006\u0010\u0099\u00fd\u0097\u00a8\u0006\"\u000550040\u0012\u0011\bD\u0012\u0006\u0010\u0081\u00fe\u0097\u00a8\u0006\"\u000550041\u0012\u0012\bE\u0012\u0006\u0010\u00b4\u00ff\u0097\u00a8\u0006\"\u0006Jun-15\u0012\u0012\bF\u0012\u0006\u0010\u00b8\u0080\u0098\u00a8\u0006\"\u0006Jun-13\u0012\u0011\bG\u0012\u0006\u0010\u00c6\u0082\u0098\u00a8\u0006\"\u00056-Oct\u0012\u0011\bH\u0012\u0006\u0010\u0091\u0083\u0098\u00a8\u0006\"\u00056-Aug\u0012\u0011\bI\u0012\u0006\u0010\u0089\u0085\u0098\u00a8\u0006\"\u00056-Jun\u0012\u0011\bJ\u0012\u0006\u0010\u00d0\u0086\u0098\u00a8\u0006\"\u00056-Feb\u0012\u0011\bK\u0012\u0006\u0010\u00fa\u0088\u0098\u00a8\u0006\"\u000544956\u0012\u0011\bL\u0012\u0006\u0010\u00be\u0089\u0098\u00a8\u0006\"\u000544957\u0012\u0011\bM\u0012\u0006\u0010\u0088\u008b\u0098\u00a8\u0006\"\u000545057\u0012\u0011\bN\u0012\u0006\u0010\u00fa\u008b\u0098\u00a8\u0006\"\u000544963\u0012\u0011\bO\u0012\u0006\u0010\u00d9\u008d\u0098\u00a8\u0006\"\u000534493\u0012\u0011\bP\u0012\u0006\u0010\u00c8\u008e\u0098\u00a8\u0006\"\u000550019\u0012\u0012\bQ\u0012\u0006\u0010\u008b\u0090\u0098\u00a8\u0006\"\u000610-Jan\u0012\u0011\bR\u0012\u0006\u0010\u00fb\u0090\u0098\u00a8\u0006\"\u000544863\u0012\u0012\bS\u0012\u0006\u0010\u00c6\u0091\u0098\u00a8\u0006\"\u000610-Mar\u0012\u0012\bT\u0012\u0006\u0010\u00cc\u0092\u0098\u00a8\u0006\"\u000611-Jan\u0012\u0011\bU\u0012\u0006\u0010\u00d2\u0093\u0098\u00a8\u0006\"\u000539943\u0012\u0011\bV\u0012\u0006\u0010\u0095\u0094\u0098\u00a8\u0006\"\u000539944\u0012\u0011\bW\u0012\u0006\u0010\u00ee\u0096\u0098\u00a8\u0006\"\u000539947\u0012\u0011\bX\u0012\u0006\u0010\u00d3\u0097\u0098\u00a8\u0006\"\u000539949\u0012\u0011\bY\u0012\u0006\u0010\u00f1\u0097\u0098\u00a8\u0006\"\u000539950\u0012\u0011\bZ\u0012\u0006\u0010\u0088\u0099\u0098\u00a8\u0006\"\u000539952\u0012\u0011\b[\u0012\u0006\u0010\u008f\u009b\u0098\u00a8\u0006\"\u000534529\u001a\b\u001a\u0006FYBC82 \u00cd\u00e8\u0097\u00a8\u0006\"`\n/\n\u001017437-701ff27f-2\u0012\b15:16:00\u001a\b20230916 \u0000*\u00035650\u0000\u0012\u001d\r\u00ca\u008c\u0013\u00c2\u0015\u00c1\u0012\u0092\u00c2\u001d\u0000\u0080\u00a7C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u008eA(\u00cd\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FYBC82" + }, + { + "type": "con_recorrido", + "entity": "\n$257e3f37-f8e4-4c5b-8073-3c65eaea43c3\u001a\u00e1\r\n/\n\u001017438-701ff27f-2\u0012\b15:28:00\u001a\b20230916 \u0000*\u00035650\u0000\u0012\u0011\b\u0003\u0012\u0006\u0010\u00da\u00e8\u0097\u00a8\u0006\"\u000542501\u0012\u0011\b\u0004\u0012\u0006\u0010\u00ed\u00e8\u0097\u00a8\u0006\"\u000549267\u0012\u0011\b\u0005\u0012\u0006\u0010\u00bd\u00e9\u0097\u00a8\u0006\"\u000542274\u0012\u0011\b\u0006\u0012\u0006\u0010\u008e\u00ea\u0097\u00a8\u0006\"\u000542275\u0012\u0011\b\u0007\u0012\u0006\u0010\u00b8\u00ea\u0097\u00a8\u0006\"\u000542276\u0012\u0011\b\b\u0012\u0006\u0010\u008c\u00eb\u0097\u00a8\u0006\"\u000542277\u0012\u0011\b\t\u0012\u0006\u0010\u00df\u00eb\u0097\u00a8\u0006\"\u000542278\u0012\u0011\b\n\u0012\u0006\u0010\u0088\u00ec\u0097\u00a8\u0006\"\u000542279\u0012\u0011\b\u000b\u0012\u0006\u0010\u00d9\u00ec\u0097\u00a8\u0006\"\u000542280\u0012\u0011\b\f\u0012\u0006\u0010\u0083\u00ed\u0097\u00a8\u0006\"\u000542281\u0012\u0011\b\r\u0012\u0006\u0010\u00ce\u00ed\u0097\u00a8\u0006\"\u000542282\u0012\u0011\b\u000e\u0012\u0006\u0010\u0084\u00ee\u0097\u00a8\u0006\"\u000542283\u0012\u0011\b\u000f\u0012\u0006\u0010\u00c3\u00ee\u0097\u00a8\u0006\"\u000549279\u0012\u0011\b\u0010\u0012\u0006\u0010\u0090\u00ef\u0097\u00a8\u0006\"\u000542285\u0012\u0011\b\u0011\u0012\u0006\u0010\u00ed\u00ef\u0097\u00a8\u0006\"\u000549281\u0012\u0011\b\u0012\u0012\u0006\u0010\u00aa\u00f0\u0097\u00a8\u0006\"\u000549282\u0012\u0011\b\u0013\u0012\u0006\u0010\u00d4\u00f0\u0097\u00a8\u0006\"\u000549283\u0012\u0011\b\u0014\u0012\u0006\u0010\u008b\u00f1\u0097\u00a8\u0006\"\u000549284\u0012\u0011\b\u0015\u0012\u0006\u0010\u00cc\u00f1\u0097\u00a8\u0006\"\u000549285\u0012\u0011\b\u0016\u0012\u0006\u0010\u008f\u00f2\u0097\u00a8\u0006\"\u000549286\u0012\u0011\b\u0017\u0012\u0006\u0010\u00be\u00f2\u0097\u00a8\u0006\"\u000549287\u0012\u0011\b\u0018\u0012\u0006\u0010\u00e5\u00f2\u0097\u00a8\u0006\"\u000549288\u0012\u0011\b\u0019\u0012\u0006\u0010\u0093\u00f3\u0097\u00a8\u0006\"\u000549289\u0012\u0011\b\u001a\u0012\u0006\u0010\u0098\u00f4\u0097\u00a8\u0006\"\u000542294\u0012\u0011\b\u001b\u0012\u0006\u0010\u009f\u00f5\u0097\u00a8\u0006\"\u000542295\u0012\u0011\b\u001c\u0012\u0006\u0010\u0093\u00f6\u0097\u00a8\u0006\"\u000542296\u0012\u0011\b\u001d\u0012\u0006\u0010\u0094\u00f7\u0097\u00a8\u0006\"\u000542297\u0012\u0011\b\u001e\u0012\u0006\u0010\u00fa\u00f7\u0097\u00a8\u0006\"\u000542298\u0012\u0011\b\u001f\u0012\u0006\u0010\u00be\u00f8\u0097\u00a8\u0006\"\u000542299\u0012\u0011\b \u0012\u0006\u0010\u00ec\u00f8\u0097\u00a8\u0006\"\u000549295\u0012\u0011\b!\u0012\u0006\u0010\u00f0\u00f9\u0097\u00a8\u0006\"\u000549296\u0012\u0011\b\"\u0012\u0006\u0010\u00d0\u00fa\u0097\u00a8\u0006\"\u000549297\u0012\u0011\b#\u0012\u0006\u0010\u00f9\u00fa\u0097\u00a8\u0006\"\u000549298\u0012\u0011\b$\u0012\u0006\u0010\u00be\u00fb\u0097\u00a8\u0006\"\u000549299\u0012\u0011\b%\u0012\u0006\u0010\u00fb\u00fb\u0097\u00a8\u0006\"\u000549300\u0012\u0011\b&\u0012\u0006\u0010\u00de\u00fc\u0097\u00a8\u0006\"\u000549301\u0012\u0011\b'\u0012\u0006\u0010\u00b1\u00fd\u0097\u00a8\u0006\"\u000549302\u0012\u0011\b(\u0012\u0006\u0010\u00e8\u00fd\u0097\u00a8\u0006\"\u000549303\u0012\u0011\b)\u0012\u0006\u0010\u00a3\u00fe\u0097\u00a8\u0006\"\u000549304\u0012\u0011\b*\u0012\u0006\u0010\u00ce\u00fe\u0097\u00a8\u0006\"\u000549305\u0012\u0011\b+\u0012\u0006\u0010\u0097\u00ff\u0097\u00a8\u0006\"\u000549306\u0012\u0011\b,\u0012\u0006\u0010\u00cb\u00ff\u0097\u00a8\u0006\"\u000549307\u0012\u0011\b-\u0012\u0006\u0010\u00ea\u00ff\u0097\u00a8\u0006\"\u000549308\u0012\u0011\b.\u0012\u0006\u0010\u008b\u0080\u0098\u00a8\u0006\"\u000549309\u0012\u0011\b/\u0012\u0006\u0010\u00e7\u0080\u0098\u00a8\u0006\"\u000549310\u0012\u0011\b0\u0012\u0006\u0010\u0092\u0081\u0098\u00a8\u0006\"\u000549311\u0012\u0011\b1\u0012\u0006\u0010\u00b4\u0081\u0098\u00a8\u0006\"\u000539633\u0012\u0011\b2\u0012\u0006\u0010\u00e0\u0081\u0098\u00a8\u0006\"\u000535796\u0012\u0011\b3\u0012\u0006\u0010\u00a5\u0082\u0098\u00a8\u0006\"\u000535797\u0012\u0011\b4\u0012\u0006\u0010\u00e1\u0082\u0098\u00a8\u0006\"\u000535798\u0012\u0011\b5\u0012\u0006\u0010\u0099\u0083\u0098\u00a8\u0006\"\u000535799\u0012\u0011\b6\u0012\u0006\u0010\u0082\u0084\u0098\u00a8\u0006\"\u000535800\u0012\u0011\b7\u0012\u0006\u0010\u00cd\u0084\u0098\u00a8\u0006\"\u000535801\u0012\u0011\b8\u0012\u0006\u0010\u00f6\u0084\u0098\u00a8\u0006\"\u000535802\u0012\u0011\b9\u0012\u0006\u0010\u00c1\u0085\u0098\u00a8\u0006\"\u000535803\u0012\u0011\b:\u0012\u0006\u0010\u009b\u0086\u0098\u00a8\u0006\"\u000538507\u0012\u0011\b;\u0012\u0006\u0010\u00ef\u0086\u0098\u00a8\u0006\"\u000534473\u0012\u0011\b<\u0012\u0006\u0010\u00ba\u0087\u0098\u00a8\u0006\"\u000538500\u0012\u0011\b=\u0012\u0006\u0010\u0089\u0088\u0098\u00a8\u0006\"\u000535808\u0012\u0011\b>\u0012\u0006\u0010\u00f0\u0088\u0098\u00a8\u0006\"\u000535710\u0012\u0011\b?\u0012\u0006\u0010\u00c2\u0089\u0098\u00a8\u0006\"\u000550036\u0012\u0011\b@\u0012\u0006\u0010\u00f7\u008c\u0098\u00a8\u0006\"\u000550037\u0012\u0011\bA\u0012\u0006\u0010\u00b8\u008f\u0098\u00a8\u0006\"\u000550038\u0012\u0011\bB\u0012\u0006\u0010\u00e8\u0090\u0098\u00a8\u0006\"\u000550039\u0012\u0011\bC\u0012\u0006\u0010\u00ee\u0091\u0098\u00a8\u0006\"\u000550040\u0012\u0011\bD\u0012\u0006\u0010\u00c2\u0093\u0098\u00a8\u0006\"\u000550041\u0012\u0012\bE\u0012\u0006\u0010\u00bd\u0096\u0098\u00a8\u0006\"\u0006Jun-15\u0012\u0012\bF\u0012\u0006\u0010\u00e0\u0098\u0098\u00a8\u0006\"\u0006Jun-13\u0012\u0011\bG\u0012\u0006\u0010\u00d7\u009d\u0098\u00a8\u0006\"\u00056-Oct\u0012\u0011\bH\u0012\u0006\u0010\u008f\u009f\u0098\u00a8\u0006\"\u00056-Aug\u0012\u0011\bI\u0012\u0006\u0010\u008b\u00a4\u0098\u00a8\u0006\"\u00056-Jun\u0012\u0011\bJ\u0012\u0006\u0010\u00aa\u00a8\u0098\u00a8\u0006\"\u00056-Feb\u0012\u0011\bK\u0012\u0006\u0010\u0096\u00af\u0098\u00a8\u0006\"\u000544956\u0012\u0011\bL\u0012\u0006\u0010\u00ea\u00b0\u0098\u00a8\u0006\"\u000544957\u0012\u0011\bM\u0012\u0006\u0010\u00f6\u00b5\u0098\u00a8\u0006\"\u000545057\u0012\u0011\bN\u0012\u0006\u0010\u00fb\u00b8\u0098\u00a8\u0006\"\u000544963\u0012\u0011\bO\u0012\u0006\u0010\u0096\u00bf\u0098\u00a8\u0006\"\u000534493\u0012\u0011\bP\u0012\u0006\u0010\u00b9\u00c2\u0098\u00a8\u0006\"\u000550019\u0012\u0012\bQ\u0012\u0006\u0010\u00bf\u00c8\u0098\u00a8\u0006\"\u000610-Jan\u0012\u0011\bR\u0012\u0006\u0010\u0092\u00cc\u0098\u00a8\u0006\"\u000544863\u0012\u0012\bS\u0012\u0006\u0010\u00d4\u00ce\u0098\u00a8\u0006\"\u000610-Mar\u0012\u0012\bT\u0012\u0006\u0010\u00ab\u00d3\u0098\u00a8\u0006\"\u000611-Jan\u0012\u0011\bU\u0012\u0006\u0010\u009c\u00d8\u0098\u00a8\u0006\"\u000539943\u0012\u0011\bV\u0012\u0006\u0010\u00e4\u00da\u0098\u00a8\u0006\"\u000539944\u0012\u0011\bW\u0012\u0006\u0010\u00f2\u00e8\u0098\u00a8\u0006\"\u000539947\u0012\u0011\bX\u0012\u0006\u0010\u00b0\u00ed\u0098\u00a8\u0006\"\u000539949\u0012\u0011\bY\u0012\u0006\u0010\u00df\u00ee\u0098\u00a8\u0006\"\u000539950\u0012\u0011\bZ\u0012\u0006\u0010\u00ee\u00f5\u0098\u00a8\u0006\"\u000539952\u0012\u0011\b[\u0012\u0006\u0010\u00ba\u0083\u0099\u00a8\u0006\"\u000534529\u001a\b\u001a\u0006GWZC84 \u00b8\u00e8\u0097\u00a8\u0006\"`\n/\n\u001017438-701ff27f-2\u0012\b15:28:00\u001a\b20230916 \u0000*\u00035650\u0000\u0012\u001d\r\u007f\u00d3\u0013\u00c2\u0015\u009c\u0006\u0092\u00c2\u001d\u0000\u0000\u00acC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UUUA(\u00b8\u00e8\u0097\u00a8\u0006B\b\u001a\u0006GWZC84" + }, + { + "type": "con_recorrido", + "entity": "\n$a8b92f16-796b-4029-8811-da3aac14ac43\u001a\u00ec\u0001\n/\n\u001017354-701ff27f-2\u0012\b13:40:00\u001a\b20230916 \u0000*\u00035650\u0001\u0012\u0011\bI\u0012\u0006\u0010\u00da\u00e8\u0097\u00a8\u0006\"\u000542232\u0012\u0011\bJ\u0012\u0006\u0010\u00c5\u00ea\u0097\u00a8\u0006\"\u000534557\u0012\u0011\bK\u0012\u0006\u0010\u009f\u00eb\u0097\u00a8\u0006\"\u000542212\u0012\u0011\bL\u0012\u0006\u0010\u00f5\u00eb\u0097\u00a8\u0006\"\u000534560\u0012\u0011\bM\u0012\u0006\u0010\u0098\u00ec\u0097\u00a8\u0006\"\u000542273\u0012\u0011\bN\u0012\u0006\u0010\u008f\u00ed\u0097\u00a8\u0006\"\u000549203\u0012\u0011\bO\u0012\u0006\u0010\u00c4\u00ed\u0097\u00a8\u0006\"\u000549204\u0012\u0011\bP\u0012\u0006\u0010\u00cd\u00ed\u0097\u00a8\u0006\"\u000542503\u0012\u0011\bQ\u0012\u0006\u0010\u00da\u00ed\u0097\u00a8\u0006\"\u000549264\u001a\b\u001a\u0006HWDH59 \u00b0\u00e8\u0097\u00a8\u0006\"`\n/\n\u001017354-701ff27f-2\u0012\b13:40:00\u001a\b20230916 \u0000*\u00035650\u0001\u0012\u001d\ra\u00c3\u0013\u00c2\u0015\u008b\t\u0092\u00c2\u001d\u0000\u0000 C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008e\u00e3\u0000A(\u00b0\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HWDH59" + }, + { + "type": "con_recorrido", + "entity": "\n$2c144cd9-6fe5-4fc6-91bc-adf9712d99c2\u001a\u00cc\u0005\n/\n\u001017435-701ff27f-2\u0012\b14:52:00\u001a\b20230916 \u0000*\u00035650\u0000\u0012\u0011\b:\u0012\u0006\u0010\u00e9\u00e8\u0097\u00a8\u0006\"\u000538507\u0012\u0011\b;\u0012\u0006\u0010\u009f\u00e9\u0097\u00a8\u0006\"\u000534473\u0012\u0011\b<\u0012\u0006\u0010\u00cd\u00e9\u0097\u00a8\u0006\"\u000538500\u0012\u0011\b=\u0012\u0006\u0010\u00fd\u00e9\u0097\u00a8\u0006\"\u000535808\u0012\u0011\b>\u0012\u0006\u0010\u00b9\u00ea\u0097\u00a8\u0006\"\u000535710\u0012\u0011\b?\u0012\u0006\u0010\u00e7\u00ea\u0097\u00a8\u0006\"\u000550036\u0012\u0011\b@\u0012\u0006\u0010\u00c9\u00ec\u0097\u00a8\u0006\"\u000550037\u0012\u0011\bA\u0012\u0006\u0010\u00dd\u00ed\u0097\u00a8\u0006\"\u000550038\u0012\u0011\bB\u0012\u0006\u0010\u00a8\u00ee\u0097\u00a8\u0006\"\u000550039\u0012\u0011\bC\u0012\u0006\u0010\u00de\u00ee\u0097\u00a8\u0006\"\u000550040\u0012\u0011\bD\u0012\u0006\u0010\u00b1\u00ef\u0097\u00a8\u0006\"\u000550041\u0012\u0012\bE\u0012\u0006\u0010\u00b9\u00f0\u0097\u00a8\u0006\"\u0006Jun-15\u0012\u0012\bF\u0012\u0006\u0010\u009a\u00f1\u0097\u00a8\u0006\"\u0006Jun-13\u0012\u0011\bG\u0012\u0006\u0010\u00d7\u00f2\u0097\u00a8\u0006\"\u00056-Oct\u0012\u0011\bH\u0012\u0006\u0010\u008a\u00f3\u0097\u00a8\u0006\"\u00056-Aug\u0012\u0011\bI\u0012\u0006\u0010\u00ab\u00f4\u0097\u00a8\u0006\"\u00056-Jun\u0012\u0011\bJ\u0012\u0006\u0010\u00a6\u00f5\u0097\u00a8\u0006\"\u00056-Feb\u0012\u0011\bK\u0012\u0006\u0010\u00d6\u00f6\u0097\u00a8\u0006\"\u000544956\u0012\u0011\bL\u0012\u0006\u0010\u00fd\u00f6\u0097\u00a8\u0006\"\u000544957\u0012\u0011\bM\u0012\u0006\u0010\u00ed\u00f7\u0097\u00a8\u0006\"\u000545057\u0012\u0011\bN\u0012\u0006\u0010\u00ab\u00f8\u0097\u00a8\u0006\"\u000544963\u0012\u0011\bO\u0012\u0006\u0010\u00a0\u00f9\u0097\u00a8\u0006\"\u000534493\u0012\u0011\bP\u0012\u0006\u0010\u00d9\u00f9\u0097\u00a8\u0006\"\u000550019\u0012\u0012\bQ\u0012\u0006\u0010\u00bb\u00fa\u0097\u00a8\u0006\"\u000610-Jan\u0012\u0011\bR\u0012\u0006\u0010\u00f1\u00fa\u0097\u00a8\u0006\"\u000544863\u0012\u0012\bS\u0012\u0006\u0010\u0095\u00fb\u0097\u00a8\u0006\"\u000610-Mar\u0012\u0012\bT\u0012\u0006\u0010\u00d5\u00fb\u0097\u00a8\u0006\"\u000611-Jan\u0012\u0011\bU\u0012\u0006\u0010\u0093\u00fc\u0097\u00a8\u0006\"\u000539943\u0012\u0011\bV\u0012\u0006\u0010\u00b1\u00fc\u0097\u00a8\u0006\"\u000539944\u0012\u0011\bW\u0012\u0006\u0010\u00ca\u00fd\u0097\u00a8\u0006\"\u000539947\u0012\u0011\bX\u0012\u0006\u0010\u00f6\u00fd\u0097\u00a8\u0006\"\u000539949\u0012\u0011\bY\u0012\u0006\u0010\u0082\u00fe\u0097\u00a8\u0006\"\u000539950\u0012\u0011\bZ\u0012\u0006\u0010\u00c2\u00fe\u0097\u00a8\u0006\"\u000539952\u0012\u0011\b[\u0012\u0006\u0010\u00ae\u00ff\u0097\u00a8\u0006\"\u000534529\u001a\b\u001a\u0006HYCZ71 \u00c9\u00e8\u0097\u00a8\u0006\"`\n/\n\u001017435-701ff27f-2\u0012\b14:52:00\u001a\b20230916 \u0000*\u00035650\u0000\u0012\u001d\r\u000bG\u0013\u00c2\u0015\u00aa\u0015\u0092\u00c2\u001d\u0000\u0000|B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000 A(\u00c9\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HYCZ71" + }, + { + "type": "con_recorrido", + "entity": "\n$671f629f-1c90-4f9c-8961-c0774ffd9cfc\u001a\u008e\u0005\n/\n\u001017359-701ff27f-2\u0012\b15:20:00\u001a\b20230916 \u0000*\u00035650\u0001\u0012\u0011\b3\u0012\u0006\u0010\u00d4\u00e8\u0097\u00a8\u0006\"\u000542201\u0012\u0011\b4\u0012\u0006\u0010\u00d4\u00ea\u0097\u00a8\u0006\"\u000542206\u0012\u0011\b5\u0012\u0006\u0010\u0094\u00eb\u0097\u00a8\u0006\"\u000542207\u0012\u0011\b6\u0012\u0006\u0010\u00d0\u00eb\u0097\u00a8\u0006\"\u000542208\u0012\u0011\b7\u0012\u0006\u0010\u00ce\u00ec\u0097\u00a8\u0006\"\u000542564\u0012\u0011\b8\u0012\u0006\u0010\u00b8\u00ed\u0097\u00a8\u0006\"\u000542214\u0012\u0011\b9\u0012\u0006\u0010\u009e\u00ee\u0097\u00a8\u0006\"\u000542209\u0012\u0011\b:\u0012\u0006\u0010\u0091\u00ef\u0097\u00a8\u0006\"\u000542210\u0012\u0011\b;\u0012\u0006\u0010\u00bd\u00f0\u0097\u00a8\u0006\"\u000540951\u0012\u0011\b<\u0012\u0006\u0010\u00f9\u00f0\u0097\u00a8\u0006\"\u000540952\u0012\u0011\b=\u0012\u0006\u0010\u00b2\u00f1\u0097\u00a8\u0006\"\u000540953\u0012\u0011\b>\u0012\u0006\u0010\u00dd\u00f1\u0097\u00a8\u0006\"\u000540954\u0012\u0011\b?\u0012\u0006\u0010\u00a3\u00f2\u0097\u00a8\u0006\"\u000540955\u0012\u0011\b@\u0012\u0006\u0010\u00c8\u00f2\u0097\u00a8\u0006\"\u000540956\u0012\u0011\bA\u0012\u0006\u0010\u0081\u00f3\u0097\u00a8\u0006\"\u000540957\u0012\u0011\bB\u0012\u0006\u0010\u00b5\u00f3\u0097\u00a8\u0006\"\u000540958\u0012\u0011\bC\u0012\u0006\u0010\u00d0\u00f3\u0097\u00a8\u0006\"\u000540959\u0012\u0011\bD\u0012\u0006\u0010\u0096\u00f4\u0097\u00a8\u0006\"\u000542223\u0012\u0011\bE\u0012\u0006\u0010\u00ca\u00f6\u0097\u00a8\u0006\"\u000542228\u0012\u0011\bF\u0012\u0006\u0010\u00f8\u00f6\u0097\u00a8\u0006\"\u000542229\u0012\u0011\bG\u0012\u0006\u0010\u00c6\u00f7\u0097\u00a8\u0006\"\u000542230\u0012\u0011\bH\u0012\u0006\u0010\u00f7\u00f7\u0097\u00a8\u0006\"\u000542231\u0012\u0011\bI\u0012\u0006\u0010\u00ca\u00f8\u0097\u00a8\u0006\"\u000542232\u0012\u0011\bJ\u0012\u0006\u0010\u00c2\u00fa\u0097\u00a8\u0006\"\u000534557\u0012\u0011\bK\u0012\u0006\u0010\u00a7\u00fb\u0097\u00a8\u0006\"\u000542212\u0012\u0011\bL\u0012\u0006\u0010\u008b\u00fc\u0097\u00a8\u0006\"\u000534560\u0012\u0011\bM\u0012\u0006\u0010\u00b5\u00fc\u0097\u00a8\u0006\"\u000542273\u0012\u0011\bN\u0012\u0006\u0010\u00c6\u00fd\u0097\u00a8\u0006\"\u000549203\u0012\u0011\bO\u0012\u0006\u0010\u008a\u00fe\u0097\u00a8\u0006\"\u000549204\u0012\u0011\bP\u0012\u0006\u0010\u0096\u00fe\u0097\u00a8\u0006\"\u000542503\u0012\u0011\bQ\u0012\u0006\u0010\u00a6\u00fe\u0097\u00a8\u0006\"\u000549264\u001a\b\u001a\u0006HYYX12 \u00aa\u00e8\u0097\u00a8\u0006\"`\n/\n\u001017359-701ff27f-2\u0012\b15:20:00\u001a\b20230916 \u0000*\u00035650\u0001\u0012\u001d\r\u00f1i\u0013\u00c2\u0015\u00c8\u0019\u0092\u00c2\u001d\u0000\u0000&C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000pA(\u00aa\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HYYX12" + }, + { + "type": "sin_recorrido", + "entity": "\n$c70768a5-f68e-4418-a7ad-25ca15e36501\"`\n/\n\u001017361-701ff27f-2\u0012\b16:00:00\u001a\b20230916 \u0000*\u00035650\u0001\u0012\u001d\r\u00e7\u00f9\u0012\u00c2\u0015\u0093\u00fd\u0091\u00c2\u001d\u0000\u0080\u00abC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a6\u00e8\u0097\u00a8\u0006B\b\u001a\u0006ZJ6154" + }, + { + "type": "con_recorrido", + "entity": "\n$82261874-47cc-4a6f-bbc3-63a2f01f4385\u001a\u0095\t\n/\n\u001017360-701ff27f-2\u0012\b15:40:00\u001a\b20230916 \u0000*\u00035650\u0001\u0012\u0012\b\u0018\u0012\u0006\u0010\u00c9\u00e9\u0097\u00a8\u0006\"\u0006Jun-17\u0012\u0012\b\u0019\u0012\u0006\u0010\u009c\u00ea\u0097\u00a8\u0006\"\u0006Jun-19\u0012\u0012\b\u001a\u0012\u0006\u0010\u00d9\u00ea\u0097\u00a8\u0006\"\u0006Jun-20\u0012\u0012\b\u001b\u0012\u0006\u0010\u0098\u00eb\u0097\u00a8\u0006\"\u0006Jun-22\u0012\u0012\b\u001c\u0012\u0006\u0010\u00d9\u00eb\u0097\u00a8\u0006\"\u0006Jun-24\u0012\u0012\b\u001d\u0012\u0006\u0010\u00b2\u00ec\u0097\u00a8\u0006\"\u0006Jun-25\u0012\u0011\b\u001e\u0012\u0006\u0010\u00cc\u00ee\u0097\u00a8\u0006\"\u000590003\u0012\u0011\b\u001f\u0012\u0006\u0010\u00f9\u00ee\u0097\u00a8\u0006\"\u000590007\u0012\u0011\b \u0012\u0006\u0010\u00a1\u00ef\u0097\u00a8\u0006\"\u000540830\u0012\u0011\b!\u0012\u0006\u0010\u00c5\u00ef\u0097\u00a8\u0006\"\u000540831\u0012\u0011\b\"\u0012\u0006\u0010\u0095\u00f0\u0097\u00a8\u0006\"\u000539599\u0012\u0011\b#\u0012\u0006\u0010\u00ac\u00f0\u0097\u00a8\u0006\"\u000539600\u0012\u0011\b$\u0012\u0006\u0010\u00ec\u00f0\u0097\u00a8\u0006\"\u000537496\u0012\u0011\b%\u0012\u0006\u0010\u009c\u00f1\u0097\u00a8\u0006\"\u000545064\u0012\u0011\b&\u0012\u0006\u0010\u00e4\u00f1\u0097\u00a8\u0006\"\u000537506\u0012\u0011\b'\u0012\u0006\u0010\u0092\u00f2\u0097\u00a8\u0006\"\u000545068\u0012\u0011\b(\u0012\u0006\u0010\u0086\u00f3\u0097\u00a8\u0006\"\u000537480\u0012\u0011\b)\u0012\u0006\u0010\u00c3\u00f3\u0097\u00a8\u0006\"\u000537477\u0012\u0011\b*\u0012\u0006\u0010\u0086\u00f4\u0097\u00a8\u0006\"\u000540848\u0012\u0011\b+\u0012\u0006\u0010\u00d9\u00f4\u0097\u00a8\u0006\"\u00052-Apr\u0012\u0011\b,\u0012\u0006\u0010\u0093\u00f5\u0097\u00a8\u0006\"\u000539728\u0012\u0011\b-\u0012\u0006\u0010\u00f6\u00f5\u0097\u00a8\u0006\"\u000539729\u0012\u0011\b.\u0012\u0006\u0010\u008f\u00f6\u0097\u00a8\u0006\"\u000539730\u0012\u0011\b/\u0012\u0006\u0010\u00f9\u00f6\u0097\u00a8\u0006\"\u000542200\u0012\u0011\b0\u0012\u0006\u0010\u00aa\u00f7\u0097\u00a8\u0006\"\u000542203\u0012\u0011\b1\u0012\u0006\u0010\u00ec\u00f7\u0097\u00a8\u0006\"\u000542204\u0012\u0011\b2\u0012\u0006\u0010\u008f\u00f8\u0097\u00a8\u0006\"\u000542205\u0012\u0011\b3\u0012\u0006\u0010\u00cf\u00f8\u0097\u00a8\u0006\"\u000542201\u0012\u0011\b4\u0012\u0006\u0010\u00de\u00fa\u0097\u00a8\u0006\"\u000542206\u0012\u0011\b5\u0012\u0006\u0010\u00a6\u00fb\u0097\u00a8\u0006\"\u000542207\u0012\u0011\b6\u0012\u0006\u0010\u00ec\u00fb\u0097\u00a8\u0006\"\u000542208\u0012\u0011\b7\u0012\u0006\u0010\u0082\u00fd\u0097\u00a8\u0006\"\u000542564\u0012\u0011\b8\u0012\u0006\u0010\u0087\u00fe\u0097\u00a8\u0006\"\u000542214\u0012\u0011\b9\u0012\u0006\u0010\u008c\u00ff\u0097\u00a8\u0006\"\u000542209\u0012\u0011\b:\u0012\u0006\u0010\u00a8\u0080\u0098\u00a8\u0006\"\u000542210\u0012\u0011\b;\u0012\u0006\u0010\u009e\u0082\u0098\u00a8\u0006\"\u000540951\u0012\u0011\b<\u0012\u0006\u0010\u00f8\u0082\u0098\u00a8\u0006\"\u000540952\u0012\u0011\b=\u0012\u0006\u0010\u00d0\u0083\u0098\u00a8\u0006\"\u000540953\u0012\u0011\b>\u0012\u0006\u0010\u0093\u0084\u0098\u00a8\u0006\"\u000540954\u0012\u0011\b?\u0012\u0006\u0010\u0083\u0085\u0098\u00a8\u0006\"\u000540955\u0012\u0011\b@\u0012\u0006\u0010\u00c0\u0085\u0098\u00a8\u0006\"\u000540956\u0012\u0011\bA\u0012\u0006\u0010\u009e\u0086\u0098\u00a8\u0006\"\u000540957\u0012\u0011\bB\u0012\u0006\u0010\u00f6\u0086\u0098\u00a8\u0006\"\u000540958\u0012\u0011\bC\u0012\u0006\u0010\u00a4\u0087\u0098\u00a8\u0006\"\u000540959\u0012\u0011\bD\u0012\u0006\u0010\u009f\u0088\u0098\u00a8\u0006\"\u000542223\u0012\u0011\bE\u0012\u0006\u0010\u00e3\u008c\u0098\u00a8\u0006\"\u000542228\u0012\u0011\bF\u0012\u0006\u0010\u00bf\u008d\u0098\u00a8\u0006\"\u000542229\u0012\u0011\bG\u0012\u0006\u0010\u00e0\u008e\u0098\u00a8\u0006\"\u000542230\u0012\u0011\bH\u0012\u0006\u0010\u00c6\u008f\u0098\u00a8\u0006\"\u000542231\u0012\u0011\bI\u0012\u0006\u0010\u00fa\u0090\u0098\u00a8\u0006\"\u000542232\u0012\u0011\bJ\u0012\u0006\u0010\u00b6\u0095\u0098\u00a8\u0006\"\u000534557\u0012\u0011\bK\u0012\u0006\u0010\u00ad\u0097\u0098\u00a8\u0006\"\u000542212\u0012\u0011\bL\u0012\u0006\u0010\u00ad\u0099\u0098\u00a8\u0006\"\u000534560\u0012\u0011\bM\u0012\u0006\u0010\u009b\u009a\u0098\u00a8\u0006\"\u000542273\u0012\u0011\bN\u0012\u0006\u0010\u00a9\u009d\u0098\u00a8\u0006\"\u000549203\u0012\u0011\bO\u0012\u0006\u0010\u00e7\u009e\u0098\u00a8\u0006\"\u000549204\u0012\u0011\bP\u0012\u0006\u0010\u008b\u009f\u0098\u00a8\u0006\"\u000542503\u0012\u0011\bQ\u0012\u0006\u0010\u00b9\u009f\u0098\u00a8\u0006\"\u000549264\u001a\b\u001a\u0006ZT3021 \u00b0\u00e8\u0097\u00a8\u0006\"`\n/\n\u001017360-701ff27f-2\u0012\b15:40:00\u001a\b20230916 \u0000*\u00035650\u0001\u0012\u001d\rz \u0013\u00c2\u0015\u00ac\n\u0092\u00c2\u001d\u0000\u0000JC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UU\u00d5?(\u00b0\u00e8\u0097\u00a8\u0006B\b\u001a\u0006ZT3021" + }, + { + "type": "con_recorrido", + "entity": "\n$a4ada7e2-e725-4d55-9322-2c0c14674227\u001a\u00df\u0006\n/\n\u001017355-701ff27f-2\u0012\b14:00:00\u001a\b20230916 \u0000*\u00035650\u0001\u0012\u0011\b(\u0012\u0006\u0010\u00be\u00e8\u0097\u00a8\u0006\"\u000537480\u0012\u0011\b)\u0012\u0006\u0010\u0080\u00e9\u0097\u00a8\u0006\"\u000537477\u0012\u0011\b*\u0012\u0006\u0010\u00c7\u00e9\u0097\u00a8\u0006\"\u000540848\u0012\u0011\b+\u0012\u0006\u0010\u009e\u00ea\u0097\u00a8\u0006\"\u00052-Apr\u0012\u0011\b,\u0012\u0006\u0010\u00d9\u00ea\u0097\u00a8\u0006\"\u000539728\u0012\u0011\b-\u0012\u0006\u0010\u00bc\u00eb\u0097\u00a8\u0006\"\u000539729\u0012\u0011\b.\u0012\u0006\u0010\u00d5\u00eb\u0097\u00a8\u0006\"\u000539730\u0012\u0011\b/\u0012\u0006\u0010\u00bc\u00ec\u0097\u00a8\u0006\"\u000542200\u0012\u0011\b0\u0012\u0006\u0010\u00e9\u00ec\u0097\u00a8\u0006\"\u000542203\u0012\u0011\b1\u0012\u0006\u0010\u00a8\u00ed\u0097\u00a8\u0006\"\u000542204\u0012\u0011\b2\u0012\u0006\u0010\u00c8\u00ed\u0097\u00a8\u0006\"\u000542205\u0012\u0011\b3\u0012\u0006\u0010\u0083\u00ee\u0097\u00a8\u0006\"\u000542201\u0012\u0011\b4\u0012\u0006\u0010\u00f1\u00ef\u0097\u00a8\u0006\"\u000542206\u0012\u0011\b5\u0012\u0006\u0010\u00ae\u00f0\u0097\u00a8\u0006\"\u000542207\u0012\u0011\b6\u0012\u0006\u0010\u00e8\u00f0\u0097\u00a8\u0006\"\u000542208\u0012\u0011\b7\u0012\u0006\u0010\u00e2\u00f1\u0097\u00a8\u0006\"\u000542564\u0012\u0011\b8\u0012\u0006\u0010\u00cb\u00f2\u0097\u00a8\u0006\"\u000542214\u0012\u0011\b9\u0012\u0006\u0010\u00b2\u00f3\u0097\u00a8\u0006\"\u000542209\u0012\u0011\b:\u0012\u0006\u0010\u00a6\u00f4\u0097\u00a8\u0006\"\u000542210\u0012\u0011\b;\u0012\u0006\u0010\u00d9\u00f5\u0097\u00a8\u0006\"\u000540951\u0012\u0011\b<\u0012\u0006\u0010\u0098\u00f6\u0097\u00a8\u0006\"\u000540952\u0012\u0011\b=\u0012\u0006\u0010\u00d5\u00f6\u0097\u00a8\u0006\"\u000540953\u0012\u0011\b>\u0012\u0006\u0010\u0083\u00f7\u0097\u00a8\u0006\"\u000540954\u0012\u0011\b?\u0012\u0006\u0010\u00ce\u00f7\u0097\u00a8\u0006\"\u000540955\u0012\u0011\b@\u0012\u0006\u0010\u00f6\u00f7\u0097\u00a8\u0006\"\u000540956\u0012\u0011\bA\u0012\u0006\u0010\u00b4\u00f8\u0097\u00a8\u0006\"\u000540957\u0012\u0011\bB\u0012\u0006\u0010\u00ee\u00f8\u0097\u00a8\u0006\"\u000540958\u0012\u0011\bC\u0012\u0006\u0010\u008b\u00f9\u0097\u00a8\u0006\"\u000540959\u0012\u0011\bD\u0012\u0006\u0010\u00d9\u00f9\u0097\u00a8\u0006\"\u000542223\u0012\u0011\bE\u0012\u0006\u0010\u00b6\u00fc\u0097\u00a8\u0006\"\u000542228\u0012\u0011\bF\u0012\u0006\u0010\u00eb\u00fc\u0097\u00a8\u0006\"\u000542229\u0012\u0011\bG\u0012\u0006\u0010\u00c6\u00fd\u0097\u00a8\u0006\"\u000542230\u0012\u0011\bH\u0012\u0006\u0010\u00ff\u00fd\u0097\u00a8\u0006\"\u000542231\u0012\u0011\bI\u0012\u0006\u0010\u00e2\u00fe\u0097\u00a8\u0006\"\u000542232\u0012\u0011\bJ\u0012\u0006\u0010\u008e\u0081\u0098\u00a8\u0006\"\u000534557\u0012\u0011\bK\u0012\u0006\u0010\u0089\u0082\u0098\u00a8\u0006\"\u000542212\u0012\u0011\bL\u0012\u0006\u0010\u0085\u0083\u0098\u00a8\u0006\"\u000534560\u0012\u0011\bM\u0012\u0006\u0010\u00ba\u0083\u0098\u00a8\u0006\"\u000542273\u0012\u0011\bN\u0012\u0006\u0010\u00f2\u0084\u0098\u00a8\u0006\"\u000549203\u0012\u0011\bO\u0012\u0006\u0010\u00c8\u0085\u0098\u00a8\u0006\"\u000549204\u0012\u0011\bP\u0012\u0006\u0010\u00d8\u0085\u0098\u00a8\u0006\"\u000542503\u0012\u0011\bQ\u0012\u0006\u0010\u00ec\u0085\u0098\u00a8\u0006\"\u000549264\u001a\b\u001a\u0006ZV8813 \u00ac\u00e8\u0097\u00a8\u0006\"`\n/\n\u001017355-701ff27f-2\u0012\b14:00:00\u001a\b20230916 \u0000*\u00035650\u0001\u0012\u001d\r\u0017P\u0013\u00c2\u0015J\u001a\u0092\u00c2\u001d\u0000\u0000nC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-r\u001c?A(\u00ac\u00e8\u0097\u00a8\u0006B\b\u001a\u0006ZV8813" + }, + { + "type": "con_recorrido", + "entity": "\n$71956134-a804-403e-a81a-e2c4f3357a42\u001a\u0087\u0003\n/\n\u001017433-701ff27f-2\u0012\b14:28:00\u001a\b20230916 \u0000*\u00035650\u0000\u0012\u0011\bK\u0012\u0006\u0010\u00e4\u00e8\u0097\u00a8\u0006\"\u000544956\u0012\u0011\bL\u0012\u0006\u0010\u008c\u00e9\u0097\u00a8\u0006\"\u000544957\u0012\u0011\bM\u0012\u0006\u0010\u00fc\u00e9\u0097\u00a8\u0006\"\u000545057\u0012\u0011\bN\u0012\u0006\u0010\u00b8\u00ea\u0097\u00a8\u0006\"\u000544963\u0012\u0011\bO\u0012\u0006\u0010\u00a6\u00eb\u0097\u00a8\u0006\"\u000534493\u0012\u0011\bP\u0012\u0006\u0010\u00da\u00eb\u0097\u00a8\u0006\"\u000550019\u0012\u0012\bQ\u0012\u0006\u0010\u00b2\u00ec\u0097\u00a8\u0006\"\u000610-Jan\u0012\u0011\bR\u0012\u0006\u0010\u00e1\u00ec\u0097\u00a8\u0006\"\u000544863\u0012\u0012\bS\u0012\u0006\u0010\u0081\u00ed\u0097\u00a8\u0006\"\u000610-Mar\u0012\u0012\bT\u0012\u0006\u0010\u00b7\u00ed\u0097\u00a8\u0006\"\u000611-Jan\u0012\u0011\bU\u0012\u0006\u0010\u00ea\u00ed\u0097\u00a8\u0006\"\u000539943\u0012\u0011\bV\u0012\u0006\u0010\u0084\u00ee\u0097\u00a8\u0006\"\u000539944\u0012\u0011\bW\u0012\u0006\u0010\u00ff\u00ee\u0097\u00a8\u0006\"\u000539947\u0012\u0011\bX\u0012\u0006\u0010\u00a2\u00ef\u0097\u00a8\u0006\"\u000539949\u0012\u0011\bY\u0012\u0006\u0010\u00ab\u00ef\u0097\u00a8\u0006\"\u000539950\u0012\u0011\bZ\u0012\u0006\u0010\u00dc\u00ef\u0097\u00a8\u0006\"\u000539952\u0012\u0011\b[\u0012\u0006\u0010\u00ae\u00f0\u0097\u00a8\u0006\"\u000534529\u001a\b\u001a\u0006ZY3848 \u0092\u00e8\u0097\u00a8\u0006\"`\n/\n\u001017433-701ff27f-2\u0012\b14:28:00\u001a\b20230916 \u0000*\u00035650\u0000\u0012\u001d\rE\u0003\u0013\u00c2\u0015G\u0000\u0092\u00c2\u001d\u0000\u0000\u0090A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00ab\u00aa\u0012A(\u0092\u00e8\u0097\u00a8\u0006B\b\u001a\u0006ZY3848" + }, + { + "type": "con_recorrido", + "entity": "\n$55dff1db-90f8-44f1-bb8c-54d3c4f22460\u001a\u00e0\u000b\n/\n\u001017501-701ff27f-2\u0012\b15:22:00\u001a\b20230916 \u0000*\u00035660\u0000\u0012\u0011\b\r\u0012\u0006\u0010\u0080\u00e9\u0097\u00a8\u0006\"\u000542283\u0012\u0011\b\u000e\u0012\u0006\u0010\u00c5\u00e9\u0097\u00a8\u0006\"\u000549279\u0012\u0011\b\u000f\u0012\u0006\u0010\u0097\u00ea\u0097\u00a8\u0006\"\u000542285\u0012\u0011\b\u0010\u0012\u0006\u0010\u00f9\u00ea\u0097\u00a8\u0006\"\u000549281\u0012\u0011\b\u0011\u0012\u0006\u0010\u00ba\u00eb\u0097\u00a8\u0006\"\u000549282\u0012\u0011\b\u0012\u0012\u0006\u0010\u00e5\u00eb\u0097\u00a8\u0006\"\u000549283\u0012\u0011\b\u0013\u0012\u0006\u0010\u009f\u00ec\u0097\u00a8\u0006\"\u000549284\u0012\u0011\b\u0014\u0012\u0006\u0010\u00e1\u00ec\u0097\u00a8\u0006\"\u000549285\u0012\u0011\b\u0015\u0012\u0006\u0010\u00a5\u00ed\u0097\u00a8\u0006\"\u000549286\u0012\u0011\b\u0016\u0012\u0006\u0010\u00d4\u00ed\u0097\u00a8\u0006\"\u000549287\u0012\u0011\b\u0017\u0012\u0006\u0010\u00fc\u00ed\u0097\u00a8\u0006\"\u000549288\u0012\u0011\b\u0018\u0012\u0006\u0010\u00ae\u00ee\u0097\u00a8\u0006\"\u000549289\u0012\u0011\b\u0019\u0012\u0006\u0010\u00aa\u00ef\u0097\u00a8\u0006\"\u000542294\u0012\u0011\b\u001a\u0012\u0006\u0010\u00b0\u00f0\u0097\u00a8\u0006\"\u000542295\u0012\u0011\b\u001b\u0012\u0006\u0010\u009e\u00f1\u0097\u00a8\u0006\"\u000542296\u0012\u0011\b\u001c\u0012\u0006\u0010\u0098\u00f2\u0097\u00a8\u0006\"\u000542297\u0012\u0011\b\u001d\u0012\u0006\u0010\u00f7\u00f2\u0097\u00a8\u0006\"\u000542298\u0012\u0011\b\u001e\u0012\u0006\u0010\u00b5\u00f3\u0097\u00a8\u0006\"\u000542299\u0012\u0011\b\u001f\u0012\u0006\u0010\u00df\u00f3\u0097\u00a8\u0006\"\u000549295\u0012\u0011\b \u0012\u0006\u0010\u00d6\u00f4\u0097\u00a8\u0006\"\u000549296\u0012\u0011\b!\u0012\u0006\u0010\u00aa\u00f5\u0097\u00a8\u0006\"\u000549297\u0012\u0011\b\"\u0012\u0006\u0010\u00d1\u00f5\u0097\u00a8\u0006\"\u000549298\u0012\u0011\b#\u0012\u0006\u0010\u008e\u00f6\u0097\u00a8\u0006\"\u000549299\u0012\u0011\b$\u0012\u0006\u0010\u00c4\u00f6\u0097\u00a8\u0006\"\u000549300\u0012\u0011\b%\u0012\u0006\u0010\u009a\u00f7\u0097\u00a8\u0006\"\u000549301\u0012\u0011\b&\u0012\u0006\u0010\u00e1\u00f7\u0097\u00a8\u0006\"\u000549302\u0012\u0011\b'\u0012\u0006\u0010\u0090\u00f8\u0097\u00a8\u0006\"\u000549303\u0012\u0011\b(\u0012\u0006\u0010\u00bf\u00f8\u0097\u00a8\u0006\"\u000549304\u0012\u0011\b)\u0012\u0006\u0010\u00e6\u00f8\u0097\u00a8\u0006\"\u000549305\u0012\u0011\b*\u0012\u0006\u0010\u00a3\u00f9\u0097\u00a8\u0006\"\u000549306\u0012\u0011\b+\u0012\u0006\u0010\u00cf\u00f9\u0097\u00a8\u0006\"\u000549307\u0012\u0011\b,\u0012\u0006\u0010\u00e9\u00f9\u0097\u00a8\u0006\"\u000549308\u0012\u0011\b-\u0012\u0006\u0010\u0084\u00fa\u0097\u00a8\u0006\"\u000549309\u0012\u0011\b.\u0012\u0006\u0010\u00d0\u00fa\u0097\u00a8\u0006\"\u000549310\u0012\u0011\b/\u0012\u0006\u0010\u00f4\u00fa\u0097\u00a8\u0006\"\u000549311\u0012\u0011\b0\u0012\u0006\u0010\u00b4\u00fb\u0097\u00a8\u0006\"\u000535796\u0012\u0011\b1\u0012\u0006\u0010\u00ec\u00fb\u0097\u00a8\u0006\"\u000535797\u0012\u0011\b2\u0012\u0006\u0010\u009c\u00fc\u0097\u00a8\u0006\"\u000535798\u0012\u0011\b3\u0012\u0006\u0010\u00ca\u00fc\u0097\u00a8\u0006\"\u000535799\u0012\u0011\b4\u0012\u0006\u0010\u009d\u00fd\u0097\u00a8\u0006\"\u000535800\u0012\u0011\b5\u0012\u0006\u0010\u00da\u00fd\u0097\u00a8\u0006\"\u000535801\u0012\u0011\b6\u0012\u0006\u0010\u00f9\u00fd\u0097\u00a8\u0006\"\u000535802\u0012\u0011\b7\u0012\u0006\u0010\u00b5\u00fe\u0097\u00a8\u0006\"\u000535803\u0012\u0011\b8\u0012\u0006\u0010\u00fb\u00fe\u0097\u00a8\u0006\"\u000538507\u0012\u0011\b9\u0012\u0006\u0010\u00bd\u00ff\u0097\u00a8\u0006\"\u000534473\u0012\u0011\b:\u0012\u0006\u0010\u00f6\u00ff\u0097\u00a8\u0006\"\u000538500\u0012\u0011\b;\u0012\u0006\u0010\u00b4\u0080\u0098\u00a8\u0006\"\u000535808\u0012\u0011\b<\u0012\u0006\u0010\u0082\u0081\u0098\u00a8\u0006\"\u000535710\u0012\u0011\b=\u0012\u0006\u0010\u00c0\u0081\u0098\u00a8\u0006\"\u000550036\u0012\u0011\b>\u0012\u0006\u0010\u0084\u0084\u0098\u00a8\u0006\"\u000550037\u0012\u0011\b?\u0012\u0006\u0010\u00ef\u0085\u0098\u00a8\u0006\"\u000550038\u0012\u0011\b@\u0012\u0006\u0010\u00ec\u0086\u0098\u00a8\u0006\"\u000550039\u0012\u0011\bA\u0012\u0006\u0010\u00cb\u0087\u0098\u00a8\u0006\"\u000550040\u0012\u0011\bB\u0012\u0006\u0010\u00df\u0088\u0098\u00a8\u0006\"\u000550041\u0012\u0012\bC\u0012\u0006\u0010\u00e3\u008a\u0098\u00a8\u0006\"\u0006Jun-15\u0012\u0012\bD\u0012\u0006\u0010\u00a6\u008c\u0098\u00a8\u0006\"\u0006Jun-13\u0012\u0011\bE\u0012\u0006\u0010\u00c4\u008f\u0098\u00a8\u0006\"\u00056-Oct\u0012\u0011\bF\u0012\u0006\u0010\u00b9\u0090\u0098\u00a8\u0006\"\u00056-Aug\u0012\u0011\bG\u0012\u0006\u0010\u00c5\u0093\u0098\u00a8\u0006\"\u00056-Jun\u0012\u0011\bH\u0012\u0006\u0010\u008e\u0096\u0098\u00a8\u0006\"\u00056-Feb\u0012\u0014\bI\u0012\u0006\u0010\u00fe\u0098\u0098\u00a8\u0006\"\b10940386\u0012\u0014\bJ\u0012\u0006\u0010\u008f\u009a\u0098\u00a8\u0006\"\b10940383\u0012\u0014\bK\u0012\u0006\u0010\u0088\u009b\u0098\u00a8\u0006\"\b10940382\u0012\u0014\bL\u0012\u0006\u0010\u008d\u009c\u0098\u00a8\u0006\"\b10940381\u0012\u0014\bM\u0012\u0006\u0010\u00e1\u009d\u0098\u00a8\u0006\"\b10940374\u0012\u0014\bN\u0012\u0006\u0010\u00e3\u009f\u0098\u00a8\u0006\"\b10940370\u0012\u0014\bO\u0012\u0006\u0010\u00bc\u00a0\u0098\u00a8\u0006\"\b10940367\u0012\u0014\bP\u0012\u0006\u0010\u00ad\u00a1\u0098\u00a8\u0006\"\b10940368\u0012\u0014\bQ\u0012\u0006\u0010\u00db\u00a3\u0098\u00a8\u0006\"\b10940388\u0012\u0012\bR\u0012\u0006\u0010\u00b9\u00a9\u0098\u00a8\u0006\"\u000610-Apr\u0012\u0012\bS\u0012\u0006\u0010\u00f8\u00ab\u0098\u00a8\u0006\"\u000610-Jan\u0012\u0011\bT\u0012\u0006\u0010\u00d0\u00ad\u0098\u00a8\u0006\"\u000544863\u0012\u0012\bU\u0012\u0006\u0010\u00f9\u00ae\u0098\u00a8\u0006\"\u000610-Mar\u0012\u0012\bV\u0012\u0006\u0010\u00a6\u00b1\u0098\u00a8\u0006\"\u000611-Jan\u001a\b\u001a\u0006BRTG11 \u00cc\u00e8\u0097\u00a8\u0006\"`\n/\n\u001017501-701ff27f-2\u0012\b15:22:00\u001a\b20230916 \u0000*\u00035660\u0000\u0012\u001d\rE\u00b6\u0013\u00c2\u0015i\f\u0092\u00c2\u001d\u0000\u0080\u00a6C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008e\u00e3x@(\u00cc\u00e8\u0097\u00a8\u0006B\b\u001a\u0006BRTG11" + }, + { + "type": "con_recorrido", + "entity": "\n$4f3471ad-dc7e-4f93-bcf6-d6bd4143e809\u001a\u008a\b\n/\n\u001017528-701ff27f-2\u0012\b15:01:00\u001a\b20230916 \u0000*\u00035660\u0001\u0012\u0011\b \u0012\u0006\u0010\u00c3\u00e8\u0097\u00a8\u0006\"\u000537496\u0012\u0011\b!\u0012\u0006\u0010\u00f8\u00e8\u0097\u00a8\u0006\"\u000545064\u0012\u0011\b\"\u0012\u0006\u0010\u00c5\u00e9\u0097\u00a8\u0006\"\u000537506\u0012\u0011\b#\u0012\u0006\u0010\u00ef\u00e9\u0097\u00a8\u0006\"\u000545068\u0012\u0011\b$\u0012\u0006\u0010\u00e7\u00ea\u0097\u00a8\u0006\"\u000537480\u0012\u0011\b%\u0012\u0006\u0010\u00a5\u00eb\u0097\u00a8\u0006\"\u000537477\u0012\u0011\b&\u0012\u0006\u0010\u00ed\u00eb\u0097\u00a8\u0006\"\u000540848\u0012\u0011\b'\u0012\u0006\u0010\u00c6\u00ec\u0097\u00a8\u0006\"\u00052-Apr\u0012\u0011\b(\u0012\u0006\u0010\u00ff\u00ec\u0097\u00a8\u0006\"\u000539728\u0012\u0011\b)\u0012\u0006\u0010\u00df\u00ed\u0097\u00a8\u0006\"\u000539729\u0012\u0011\b*\u0012\u0006\u0010\u00f7\u00ed\u0097\u00a8\u0006\"\u000539730\u0012\u0011\b+\u0012\u0006\u0010\u00dc\u00ee\u0097\u00a8\u0006\"\u000542200\u0012\u0011\b,\u0012\u0006\u0010\u0089\u00ef\u0097\u00a8\u0006\"\u000542203\u0012\u0011\b-\u0012\u0006\u0010\u00c6\u00ef\u0097\u00a8\u0006\"\u000542204\u0012\u0011\b.\u0012\u0006\u0010\u00dd\u00ef\u0097\u00a8\u0006\"\u000542205\u0012\u0011\b/\u0012\u0006\u0010\u00a0\u00f0\u0097\u00a8\u0006\"\u000542201\u0012\u0011\b0\u0012\u0006\u0010\u0095\u00f2\u0097\u00a8\u0006\"\u000542206\u0012\u0011\b1\u0012\u0006\u0010\u00cb\u00f2\u0097\u00a8\u0006\"\u000542207\u0012\u0011\b2\u0012\u0006\u0010\u0086\u00f3\u0097\u00a8\u0006\"\u000542208\u0012\u0011\b3\u0012\u0006\u0010\u0082\u00f4\u0097\u00a8\u0006\"\u000542564\u0012\u0011\b4\u0012\u0006\u0010\u00eb\u00f4\u0097\u00a8\u0006\"\u000542214\u0012\u0011\b5\u0012\u0006\u0010\u00d7\u00f5\u0097\u00a8\u0006\"\u000542209\u0012\u0011\b6\u0012\u0006\u0010\u00d0\u00f6\u0097\u00a8\u0006\"\u000542210\u0012\u0011\b7\u0012\u0006\u0010\u008a\u00f8\u0097\u00a8\u0006\"\u000540951\u0012\u0011\b8\u0012\u0006\u0010\u00cd\u00f8\u0097\u00a8\u0006\"\u000540952\u0012\u0011\b9\u0012\u0006\u0010\u008d\u00f9\u0097\u00a8\u0006\"\u000540953\u0012\u0011\b:\u0012\u0006\u0010\u00be\u00f9\u0097\u00a8\u0006\"\u000540954\u0012\u0011\b;\u0012\u0006\u0010\u008e\u00fa\u0097\u00a8\u0006\"\u000540955\u0012\u0011\b<\u0012\u0006\u0010\u00b8\u00fa\u0097\u00a8\u0006\"\u000540956\u0012\u0011\b=\u0012\u0006\u0010\u00f8\u00fa\u0097\u00a8\u0006\"\u000540957\u0012\u0011\b>\u0012\u0006\u0010\u00b8\u00fb\u0097\u00a8\u0006\"\u000540958\u0012\u0011\b?\u0012\u0006\u0010\u00d7\u00fb\u0097\u00a8\u0006\"\u000540959\u0012\u0011\b@\u0012\u0006\u0010\u00ab\u00fc\u0097\u00a8\u0006\"\u000542223\u0012\u0011\bA\u0012\u0006\u0010\u00cd\u00fc\u0097\u00a8\u0006\"\u000542224\u0012\u0011\bB\u0012\u0006\u0010\u00a9\u00fd\u0097\u00a8\u0006\"\u000542225\u0012\u0011\bC\u0012\u0006\u0010\u00f9\u00fd\u0097\u00a8\u0006\"\u000542226\u0012\u0011\bD\u0012\u0006\u0010\u00bc\u00fe\u0097\u00a8\u0006\"\u000542227\u0012\u0011\bE\u0012\u0006\u0010\u009d\u00ff\u0097\u00a8\u0006\"\u000542228\u0012\u0011\bF\u0012\u0006\u0010\u00d6\u00ff\u0097\u00a8\u0006\"\u000542229\u0012\u0011\bG\u0012\u0006\u0010\u00c7\u0080\u0098\u00a8\u0006\"\u000542230\u0012\u0011\bH\u0012\u0006\u0010\u0082\u0081\u0098\u00a8\u0006\"\u000542231\u0012\u0011\bI\u0012\u0006\u0010\u00f2\u0081\u0098\u00a8\u0006\"\u000542232\u0012\u0011\bJ\u0012\u0006\u0010\u00c3\u0084\u0098\u00a8\u0006\"\u000534557\u0012\u0011\bK\u0012\u0006\u0010\u0091\u0085\u0098\u00a8\u0006\"\u000542242\u0012\u0011\bL\u0012\u0006\u0010\u00ce\u0085\u0098\u00a8\u0006\"\u000542212\u0012\u0011\bM\u0012\u0006\u0010\u00d3\u0086\u0098\u00a8\u0006\"\u000534560\u0012\u0011\bN\u0012\u0006\u0010\u0098\u0087\u0098\u00a8\u0006\"\u000542273\u0012\u0011\bO\u0012\u0006\u0010\u00eb\u0088\u0098\u00a8\u0006\"\u000549203\u0012\u0011\bP\u0012\u0006\u0010\u00cd\u0089\u0098\u00a8\u0006\"\u000549204\u0012\u0011\bQ\u0012\u0006\u0010\u00e0\u0089\u0098\u00a8\u0006\"\u000542503\u0012\u0011\bR\u0012\u0006\u0010\u00f7\u0089\u0098\u00a8\u0006\"\u000549264\u001a\b\u001a\u0006HGRP51 \u00a3\u00e8\u0097\u00a8\u0006\"`\n/\n\u001017528-701ff27f-2\u0012\b15:01:00\u001a\b20230916 \u0000*\u00035660\u0001\u0012\u001d\r\u0091I\u0013\u00c2\u0015\u0080\u0012\u0092\u00c2\u001d\u0000\u0000[C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-r\u001cg@(\u00a3\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HGRP51" + }, + { + "type": "con_recorrido", + "entity": "\n$baed9db0-c0f5-4cff-9670-c5a12994ab51\u001a\u0089\u0004\n/\n\u001017567-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00035670\u0000\u0012\u0011\b6\u0012\u0006\u0010\u00d3\u00e8\u0097\u00a8\u0006\"\u000538514\u0012\u0011\b7\u0012\u0006\u0010\u008e\u00e9\u0097\u00a8\u0006\"\u000534586\u0012\u0011\b8\u0012\u0006\u0010\u00ad\u00e9\u0097\u00a8\u0006\"\u000534587\u0012\u0011\b9\u0012\u0006\u0010\u00c6\u00e9\u0097\u00a8\u0006\"\u000534588\u0012\u0011\b:\u0012\u0006\u0010\u00f8\u00e9\u0097\u00a8\u0006\"\u000539497\u0012\u0011\b;\u0012\u0006\u0010\u009b\u00ea\u0097\u00a8\u0006\"\u000549407\u0012\u0011\b<\u0012\u0006\u0010\u00d6\u00ea\u0097\u00a8\u0006\"\u000550034\u0012\u0011\b=\u0012\u0006\u0010\u00fe\u00ea\u0097\u00a8\u0006\"\u000540903\u0012\u0011\b>\u0012\u0006\u0010\u00a0\u00eb\u0097\u00a8\u0006\"\u000540904\u0012\u0011\b?\u0012\u0006\u0010\u00cd\u00eb\u0097\u00a8\u0006\"\u000535814\u0012\u0011\b@\u0012\u0006\u0010\u0099\u00ec\u0097\u00a8\u0006\"\u000535815\u0012\u0011\bA\u0012\u0006\u0010\u00b3\u00ec\u0097\u00a8\u0006\"\u000535816\u0012\u0011\bB\u0012\u0006\u0010\u00bf\u00ec\u0097\u00a8\u0006\"\u000535817\u0012\u0011\bC\u0012\u0006\u0010\u00e1\u00ec\u0097\u00a8\u0006\"\u000535818\u0012\u0011\bD\u0012\u0006\u0010\u0088\u00ed\u0097\u00a8\u0006\"\u000535819\u0012\u0011\bE\u0012\u0006\u0010\u00c2\u00ee\u0097\u00a8\u0006\"\u000535822\u0012\u0011\bF\u0012\u0006\u0010\u00f2\u00ee\u0097\u00a8\u0006\"\u000535823\u0012\u0011\bG\u0012\u0006\u0010\u00a8\u00ef\u0097\u00a8\u0006\"\u000535723\u0012\u0011\bH\u0012\u0006\u0010\u00d4\u00ef\u0097\u00a8\u0006\"\u000535722\u0012\u0011\bI\u0012\u0006\u0010\u00a5\u00f0\u0097\u00a8\u0006\"\u000535826\u0012\u0011\bJ\u0012\u0006\u0010\u00dd\u00f0\u0097\u00a8\u0006\"\u000535827\u0012\u0011\bK\u0012\u0006\u0010\u00f3\u00f0\u0097\u00a8\u0006\"\u000535828\u0012\u0011\bL\u0012\u0006\u0010\u00aa\u00f1\u0097\u00a8\u0006\"\u000535829\u0012\u0011\bM\u0012\u0006\u0010\u00a0\u00f2\u0097\u00a8\u0006\"\u000540921\u001a\b\u001a\u0006BDCH58 \u00af\u00e8\u0097\u00a8\u0006\"`\n/\n\u001017567-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00035670\u0000\u0012\u001d\r\u008aN\u0013\u00c2\u0015\u00de\u0016\u0092\u00c2\u001d\u0000\u0000tB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008e\u00e3\u0000A(\u00af\u00e8\u0097\u00a8\u0006B\b\u001a\u0006BDCH58" + }, + { + "type": "con_recorrido", + "entity": "\n$00ae4fe5-de8b-4eae-b37d-df3f12f92a70\u001a\u009d\b\n/\n\u001017613-701ff27f-2\u0012\b14:32:00\u001a\b20230916 \u0000*\u00035670\u0001\u0012\u0011\b\u0015\u0012\u0006\u0010\u00f1\u00e8\u0097\u00a8\u0006\"\u000590001\u0012\u0011\b\u0016\u0012\u0006\u0010\u00cd\u00e9\u0097\u00a8\u0006\"\u000539599\u0012\u0011\b\u0017\u0012\u0006\u0010\u00e5\u00e9\u0097\u00a8\u0006\"\u000539600\u0012\u0011\b\u0018\u0012\u0006\u0010\u00a9\u00ea\u0097\u00a8\u0006\"\u000537496\u0012\u0011\b\u0019\u0012\u0006\u0010\u00dc\u00ea\u0097\u00a8\u0006\"\u000545064\u0012\u0011\b\u001a\u0012\u0006\u0010\u00a6\u00eb\u0097\u00a8\u0006\"\u000537506\u0012\u0011\b\u001b\u0012\u0006\u0010\u00cf\u00eb\u0097\u00a8\u0006\"\u000545068\u0012\u0011\b\u001c\u0012\u0006\u0010\u00cc\u00ec\u0097\u00a8\u0006\"\u000537480\u0012\u0011\b\u001d\u0012\u0006\u0010\u0089\u00ed\u0097\u00a8\u0006\"\u000537477\u0012\u0011\b\u001e\u0012\u0006\u0010\u00cc\u00ed\u0097\u00a8\u0006\"\u000540848\u0012\u0011\b\u001f\u0012\u0006\u0010\u009e\u00ee\u0097\u00a8\u0006\"\u00052-Apr\u0012\u0011\b \u0012\u0006\u0010\u00d6\u00ee\u0097\u00a8\u0006\"\u000539728\u0012\u0011\b!\u0012\u0006\u0010\u00b5\u00ef\u0097\u00a8\u0006\"\u000539729\u0012\u0011\b\"\u0012\u0006\u0010\u00cc\u00ef\u0097\u00a8\u0006\"\u000539730\u0012\u0011\b#\u0012\u0006\u0010\u00b0\u00f0\u0097\u00a8\u0006\"\u000542200\u0012\u0011\b$\u0012\u0006\u0010\u00dc\u00f0\u0097\u00a8\u0006\"\u000542203\u0012\u0011\b%\u0012\u0006\u0010\u0091\u00f1\u0097\u00a8\u0006\"\u000542204\u0012\u0011\b&\u0012\u0006\u0010\u00ba\u00f1\u0097\u00a8\u0006\"\u000542205\u0012\u0011\b'\u0012\u0006\u0010\u00f0\u00f1\u0097\u00a8\u0006\"\u000542201\u0012\u0011\b(\u0012\u0006\u0010\u00a4\u00f4\u0097\u00a8\u0006\"\u000542207\u0012\u0011\b)\u0012\u0006\u0010\u00df\u00f4\u0097\u00a8\u0006\"\u000542208\u0012\u0011\b*\u0012\u0006\u0010\u00df\u00f5\u0097\u00a8\u0006\"\u000542564\u0012\u0011\b+\u0012\u0006\u0010\u00cb\u00f6\u0097\u00a8\u0006\"\u000542214\u0012\u0011\b,\u0012\u0006\u0010\u00ba\u00f7\u0097\u00a8\u0006\"\u000542209\u0012\u0011\b-\u0012\u0006\u0010\u00b8\u00f8\u0097\u00a8\u0006\"\u000542210\u0012\u0011\b.\u0012\u0006\u0010\u0085\u00fa\u0097\u00a8\u0006\"\u000542215\u0012\u0011\b/\u0012\u0006\u0010\u00a1\u00fa\u0097\u00a8\u0006\"\u000542216\u0012\u0011\b0\u0012\u0006\u0010\u00d7\u00fa\u0097\u00a8\u0006\"\u000542217\u0012\u0011\b1\u0012\u0006\u0010\u00ad\u00fb\u0097\u00a8\u0006\"\u000542218\u0012\u0011\b2\u0012\u0006\u0010\u00d9\u00fb\u0097\u00a8\u0006\"\u000542219\u0012\u0011\b3\u0012\u0006\u0010\u00d7\u00fc\u0097\u00a8\u0006\"\u000542220\u0012\u0011\b4\u0012\u0006\u0010\u008d\u00fd\u0097\u00a8\u0006\"\u000542221\u0012\u0011\b5\u0012\u0006\u0010\u00df\u00fd\u0097\u00a8\u0006\"\u000542222\u0012\u0011\b6\u0012\u0006\u0010\u00b5\u00fe\u0097\u00a8\u0006\"\u000542223\u0012\u0011\b7\u0012\u0006\u0010\u00d9\u00fe\u0097\u00a8\u0006\"\u000542224\u0012\u0011\b8\u0012\u0006\u0010\u00bc\u00ff\u0097\u00a8\u0006\"\u000542225\u0012\u0011\b9\u0012\u0006\u0010\u0092\u0080\u0098\u00a8\u0006\"\u000542226\u0012\u0011\b:\u0012\u0006\u0010\u00da\u0080\u0098\u00a8\u0006\"\u000542227\u0012\u0011\b;\u0012\u0006\u0010\u00ce\u0081\u0098\u00a8\u0006\"\u000542228\u0012\u0011\b<\u0012\u0006\u0010\u00ff\u0081\u0098\u00a8\u0006\"\u000542229\u0012\u0011\b=\u0012\u0006\u0010\u00fa\u0082\u0098\u00a8\u0006\"\u000542230\u0012\u0011\b>\u0012\u0006\u0010\u00bf\u0083\u0098\u00a8\u0006\"\u000542231\u0012\u0011\b?\u0012\u0006\u0010\u00c2\u0084\u0098\u00a8\u0006\"\u000542232\u0012\u0011\b@\u0012\u0006\u0010\u00c5\u0085\u0098\u00a8\u0006\"\u000542233\u0012\u0011\bA\u0012\u0006\u0010\u00a6\u0087\u0098\u00a8\u0006\"\u000534557\u0012\u0011\bB\u0012\u0006\u0010\u00c0\u0088\u0098\u00a8\u0006\"\u000542212\u0012\u0011\bC\u0012\u0006\u0010\u00d4\u0089\u0098\u00a8\u0006\"\u000534560\u0012\u0011\bD\u0012\u0006\u0010\u00a0\u008a\u0098\u00a8\u0006\"\u000542273\u0012\u0011\bE\u0012\u0006\u0010\u008b\u008c\u0098\u00a8\u0006\"\u000549203\u0012\u0011\bF\u0012\u0006\u0010\u00fa\u008c\u0098\u00a8\u0006\"\u000549204\u0012\u0011\bG\u0012\u0006\u0010\u008e\u008d\u0098\u00a8\u0006\"\u000542503\u0012\u0011\bH\u0012\u0006\u0010\u00a9\u008d\u0098\u00a8\u0006\"\u000549264\u001a\b\u001a\u0006CFTD71 \u009c\u00e8\u0097\u00a8\u0006\"`\n/\n\u001017613-701ff27f-2\u0012\b14:32:00\u001a\b20230916 \u0000*\u00035670\u0001\u0012\u001d\r\u00efB\u0013\u00c2\u0015M\u000f\u0092\u00c2\u001d\u0000\u0000vC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UU\u0085@(\u009c\u00e8\u0097\u00a8\u0006B\b\u001a\u0006CFTD71" + }, + { + "type": "con_recorrido", + "entity": "\n$fa7d7968-1a4a-4581-a394-49ad111e494f\u001a\u00e5\u000b\n/\n\u001017570-701ff27f-2\u0012\b16:00:00\u001a\b20230916 \u0000*\u00035670\u0000\u0012\u0011\b\u0002\u0012\u0006\u0010\u00af\u00e8\u0097\u00a8\u0006\"\u000542211\u0012\u0011\b\u0003\u0012\u0006\u0010\u00d9\u00e8\u0097\u00a8\u0006\"\u000534868\u0012\u0011\b\u0004\u0012\u0006\u0010\u00f3\u00e8\u0097\u00a8\u0006\"\u000534415\u0012\u0011\b\u0005\u0012\u0006\u0010\u00b7\u00e9\u0097\u00a8\u0006\"\u000541801\u0012\u0011\b\u0006\u0012\u0006\u0010\u00a5\u00ea\u0097\u00a8\u0006\"\u000542242\u0012\u0011\b\u0007\u0012\u0006\u0010\u00af\u00ea\u0097\u00a8\u0006\"\u000534871\u0012\u0011\b\b\u0012\u0006\u0010\u00d1\u00ea\u0097\u00a8\u0006\"\u000534557\u0012\u0011\b\t\u0012\u0006\u0010\u00cd\u00eb\u0097\u00a8\u0006\"\u000542275\u0012\u0011\b\n\u0012\u0006\u0010\u00f1\u00eb\u0097\u00a8\u0006\"\u000542276\u0012\u0011\b\u000b\u0012\u0006\u0010\u00c4\u00ec\u0097\u00a8\u0006\"\u000542277\u0012\u0011\b\f\u0012\u0006\u0010\u0093\u00ed\u0097\u00a8\u0006\"\u000542278\u0012\u0011\b\r\u0012\u0006\u0010\u00bd\u00ed\u0097\u00a8\u0006\"\u000542279\u0012\u0011\b\u000e\u0012\u0006\u0010\u008d\u00ee\u0097\u00a8\u0006\"\u000542280\u0012\u0011\b\u000f\u0012\u0006\u0010\u00b6\u00ee\u0097\u00a8\u0006\"\u000542281\u0012\u0011\b\u0010\u0012\u0006\u0010\u00ff\u00ee\u0097\u00a8\u0006\"\u000542282\u0012\u0011\b\u0011\u0012\u0006\u0010\u00b6\u00ef\u0097\u00a8\u0006\"\u000542283\u0012\u0011\b\u0012\u0012\u0006\u0010\u00f5\u00ef\u0097\u00a8\u0006\"\u000549279\u0012\u0011\b\u0013\u0012\u0006\u0010\u00bd\u00f0\u0097\u00a8\u0006\"\u000542285\u0012\u0011\b\u0014\u0012\u0006\u0010\u0096\u00f1\u0097\u00a8\u0006\"\u000542286\u0012\u0011\b\u0015\u0012\u0006\u0010\u00a6\u00f1\u0097\u00a8\u0006\"\u000542287\u0012\u0011\b\u0016\u0012\u0006\u0010\u00dd\u00f1\u0097\u00a8\u0006\"\u000542288\u0012\u0011\b\u0017\u0012\u0006\u0010\u0080\u00f2\u0097\u00a8\u0006\"\u000542289\u0012\u0011\b\u0018\u0012\u0006\u0010\u00d0\u00f2\u0097\u00a8\u0006\"\u000542290\u0012\u0011\b\u0019\u0012\u0006\u0010\u00f9\u00f2\u0097\u00a8\u0006\"\u000542291\u0012\u0011\b\u001a\u0012\u0006\u0010\u00d7\u00f3\u0097\u00a8\u0006\"\u000542292\u0012\u0011\b\u001b\u0012\u0006\u0010\u009a\u00f4\u0097\u00a8\u0006\"\u000542293\u0012\u0011\b\u001c\u0012\u0006\u0010\u00cf\u00f5\u0097\u00a8\u0006\"\u000542294\u0012\u0011\b\u001d\u0012\u0006\u0010\u00d3\u00f6\u0097\u00a8\u0006\"\u000542295\u0012\u0011\b\u001e\u0012\u0006\u0010\u00ca\u00f7\u0097\u00a8\u0006\"\u000542296\u0012\u0011\b\u001f\u0012\u0006\u0010\u00d0\u00f8\u0097\u00a8\u0006\"\u000542297\u0012\u0011\b \u0012\u0006\u0010\u00b9\u00f9\u0097\u00a8\u0006\"\u000542298\u0012\u0011\b!\u0012\u0006\u0010\u0080\u00fa\u0097\u00a8\u0006\"\u000542299\u0012\u0011\b\"\u0012\u0006\u0010\u00b0\u00fa\u0097\u00a8\u0006\"\u000549295\u0012\u0011\b#\u0012\u0006\u0010\u00b9\u00fb\u0097\u00a8\u0006\"\u000549296\u0012\u0011\b$\u0012\u0006\u0010\u00a0\u00fc\u0097\u00a8\u0006\"\u000549297\u0012\u0011\b%\u0012\u0006\u0010\u00ca\u00fc\u0097\u00a8\u0006\"\u000549298\u0012\u0011\b&\u0012\u0006\u0010\u009e\u00fd\u0097\u00a8\u0006\"\u000549299\u0012\u0011\b'\u0012\u0006\u0010\u00d2\u00fd\u0097\u00a8\u0006\"\u000549300\u0012\u0011\b(\u0012\u0006\u0010\u00bb\u00fe\u0097\u00a8\u0006\"\u000549301\u0012\u0011\b)\u0012\u0006\u0010\u0092\u00ff\u0097\u00a8\u0006\"\u000549302\u0012\u0011\b*\u0012\u0006\u0010\u00cd\u00ff\u0097\u00a8\u0006\"\u000549303\u0012\u0011\b+\u0012\u0006\u0010\u0092\u0080\u0098\u00a8\u0006\"\u000549304\u0012\u0011\b,\u0012\u0006\u0010\u00b8\u0080\u0098\u00a8\u0006\"\u000549305\u0012\u0011\b-\u0012\u0006\u0010\u0085\u0081\u0098\u00a8\u0006\"\u000549306\u0012\u0011\b.\u0012\u0006\u0010\u00bd\u0081\u0098\u00a8\u0006\"\u000549307\u0012\u0011\b/\u0012\u0006\u0010\u00de\u0081\u0098\u00a8\u0006\"\u000549308\u0012\u0011\b0\u0012\u0006\u0010\u0081\u0082\u0098\u00a8\u0006\"\u000549309\u0012\u0011\b1\u0012\u0006\u0010\u00a9\u0082\u0098\u00a8\u0006\"\u000542315\u0012\u0011\b2\u0012\u0006\u0010\u00cb\u0082\u0098\u00a8\u0006\"\u000542316\u0012\u0011\b3\u0012\u0006\u0010\u0096\u0083\u0098\u00a8\u0006\"\u000542317\u0012\u0011\b4\u0012\u0006\u0010\u00f9\u0083\u0098\u00a8\u0006\"\u000542319\u0012\u0011\b5\u0012\u0006\u0010\u00fa\u0084\u0098\u00a8\u0006\"\u000542320\u0012\u0011\b6\u0012\u0006\u0010\u00c5\u0085\u0098\u00a8\u0006\"\u000538514\u0012\u0011\b7\u0012\u0006\u0010\u00a0\u0086\u0098\u00a8\u0006\"\u000534586\u0012\u0011\b8\u0012\u0006\u0010\u00d0\u0086\u0098\u00a8\u0006\"\u000534587\u0012\u0011\b9\u0012\u0006\u0010\u00fa\u0086\u0098\u00a8\u0006\"\u000534588\u0012\u0011\b:\u0012\u0006\u0010\u00cb\u0087\u0098\u00a8\u0006\"\u000539497\u0012\u0011\b;\u0012\u0006\u0010\u0086\u0088\u0098\u00a8\u0006\"\u000549407\u0012\u0011\b<\u0012\u0006\u0010\u00eb\u0088\u0098\u00a8\u0006\"\u000550034\u0012\u0011\b=\u0012\u0006\u0010\u00b3\u0089\u0098\u00a8\u0006\"\u000540903\u0012\u0011\b>\u0012\u0006\u0010\u00f2\u0089\u0098\u00a8\u0006\"\u000540904\u0012\u0011\b?\u0012\u0006\u0010\u00c6\u008a\u0098\u00a8\u0006\"\u000535814\u0012\u0011\b@\u0012\u0006\u0010\u00d9\u008b\u0098\u00a8\u0006\"\u000535815\u0012\u0011\bA\u0012\u0006\u0010\u008e\u008c\u0098\u00a8\u0006\"\u000535816\u0012\u0011\bB\u0012\u0006\u0010\u00a7\u008c\u0098\u00a8\u0006\"\u000535817\u0012\u0011\bC\u0012\u0006\u0010\u00ee\u008c\u0098\u00a8\u0006\"\u000535818\u0012\u0011\bD\u0012\u0006\u0010\u00be\u008d\u0098\u00a8\u0006\"\u000535819\u0012\u0011\bE\u0012\u0006\u0010\u00e7\u0090\u0098\u00a8\u0006\"\u000535822\u0012\u0011\bF\u0012\u0006\u0010\u00de\u0091\u0098\u00a8\u0006\"\u000535823\u0012\u0011\bG\u0012\u0006\u0010\u00e6\u0092\u0098\u00a8\u0006\"\u000535723\u0012\u0011\bH\u0012\u0006\u0010\u00d9\u0093\u0098\u00a8\u0006\"\u000535722\u0012\u0011\bI\u0012\u0006\u0010\u00b8\u0095\u0098\u00a8\u0006\"\u000535826\u0012\u0011\bJ\u0012\u0006\u0010\u00db\u0096\u0098\u00a8\u0006\"\u000535827\u0012\u0011\bK\u0012\u0006\u0010\u009d\u0097\u0098\u00a8\u0006\"\u000535828\u0012\u0011\bL\u0012\u0006\u0010\u00c2\u0098\u0098\u00a8\u0006\"\u000535829\u0012\u0011\bM\u0012\u0006\u0010\u00bf\u009b\u0098\u00a8\u0006\"\u000540921\u001a\b\u001a\u0006FXJS25 \u00ac\u00e8\u0097\u00a8\u0006\"`\n/\n\u001017570-701ff27f-2\u0012\b16:00:00\u001a\b20230916 \u0000*\u00035670\u0000\u0012\u001d\r\u00b7\u00cf\u0013\u00c2\u0015\u0003\u0007\u0092\u00c2\u001d\u0000\u0000\u00adC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ac\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FXJS25" + }, + { + "type": "con_recorrido", + "entity": "\n$12e7bf91-bb84-47df-b84c-75a141552e6a\u001a\u00ee\t\n/\n\u001017569-701ff27f-2\u0012\b15:40:00\u001a\b20230916 \u0000*\u00035670\u0000\u0012\u0011\b\u000f\u0012\u0006\u0010\u00ea\u00e8\u0097\u00a8\u0006\"\u000542281\u0012\u0011\b\u0010\u0012\u0006\u0010\u00b9\u00e9\u0097\u00a8\u0006\"\u000542282\u0012\u0011\b\u0011\u0012\u0006\u0010\u00f4\u00e9\u0097\u00a8\u0006\"\u000542283\u0012\u0011\b\u0012\u0012\u0006\u0010\u00b7\u00ea\u0097\u00a8\u0006\"\u000549279\u0012\u0011\b\u0013\u0012\u0006\u0010\u0084\u00eb\u0097\u00a8\u0006\"\u000542285\u0012\u0011\b\u0014\u0012\u0006\u0010\u00e1\u00eb\u0097\u00a8\u0006\"\u000542286\u0012\u0011\b\u0015\u0012\u0006\u0010\u00f1\u00eb\u0097\u00a8\u0006\"\u000542287\u0012\u0011\b\u0016\u0012\u0006\u0010\u00aa\u00ec\u0097\u00a8\u0006\"\u000542288\u0012\u0011\b\u0017\u0012\u0006\u0010\u00cd\u00ec\u0097\u00a8\u0006\"\u000542289\u0012\u0011\b\u0018\u0012\u0006\u0010\u009e\u00ed\u0097\u00a8\u0006\"\u000542290\u0012\u0011\b\u0019\u0012\u0006\u0010\u00c7\u00ed\u0097\u00a8\u0006\"\u000542291\u0012\u0011\b\u001a\u0012\u0006\u0010\u00a5\u00ee\u0097\u00a8\u0006\"\u000542292\u0012\u0011\b\u001b\u0012\u0006\u0010\u00e7\u00ee\u0097\u00a8\u0006\"\u000542293\u0012\u0011\b\u001c\u0012\u0006\u0010\u0096\u00f0\u0097\u00a8\u0006\"\u000542294\u0012\u0011\b\u001d\u0012\u0006\u0010\u0093\u00f1\u0097\u00a8\u0006\"\u000542295\u0012\u0011\b\u001e\u0012\u0006\u0010\u0082\u00f2\u0097\u00a8\u0006\"\u000542296\u0012\u0011\b\u001f\u0012\u0006\u0010\u00fd\u00f2\u0097\u00a8\u0006\"\u000542297\u0012\u0011\b \u0012\u0006\u0010\u00dc\u00f3\u0097\u00a8\u0006\"\u000542298\u0012\u0011\b!\u0012\u0006\u0010\u009b\u00f4\u0097\u00a8\u0006\"\u000542299\u0012\u0011\b\"\u0012\u0006\u0010\u00c5\u00f4\u0097\u00a8\u0006\"\u000549295\u0012\u0011\b#\u0012\u0006\u0010\u00be\u00f5\u0097\u00a8\u0006\"\u000549296\u0012\u0011\b$\u0012\u0006\u0010\u0097\u00f6\u0097\u00a8\u0006\"\u000549297\u0012\u0011\b%\u0012\u0006\u0010\u00ba\u00f6\u0097\u00a8\u0006\"\u000549298\u0012\u0011\b&\u0012\u0006\u0010\u0082\u00f7\u0097\u00a8\u0006\"\u000549299\u0012\u0011\b'\u0012\u0006\u0010\u00af\u00f7\u0097\u00a8\u0006\"\u000549300\u0012\u0011\b(\u0012\u0006\u0010\u0087\u00f8\u0097\u00a8\u0006\"\u000549301\u0012\u0011\b)\u0012\u0006\u0010\u00cf\u00f8\u0097\u00a8\u0006\"\u000549302\u0012\u0011\b*\u0012\u0006\u0010\u0080\u00f9\u0097\u00a8\u0006\"\u000549303\u0012\u0011\b+\u0012\u0006\u0010\u00b8\u00f9\u0097\u00a8\u0006\"\u000549304\u0012\u0011\b,\u0012\u0006\u0010\u00d7\u00f9\u0097\u00a8\u0006\"\u000549305\u0012\u0011\b-\u0012\u0006\u0010\u0096\u00fa\u0097\u00a8\u0006\"\u000549306\u0012\u0011\b.\u0012\u0006\u0010\u00c2\u00fa\u0097\u00a8\u0006\"\u000549307\u0012\u0011\b/\u0012\u0006\u0010\u00de\u00fa\u0097\u00a8\u0006\"\u000549308\u0012\u0011\b0\u0012\u0006\u0010\u00f9\u00fa\u0097\u00a8\u0006\"\u000549309\u0012\u0011\b1\u0012\u0006\u0010\u0099\u00fb\u0097\u00a8\u0006\"\u000542315\u0012\u0011\b2\u0012\u0006\u0010\u00b4\u00fb\u0097\u00a8\u0006\"\u000542316\u0012\u0011\b3\u0012\u0006\u0010\u00ef\u00fb\u0097\u00a8\u0006\"\u000542317\u0012\u0011\b4\u0012\u0006\u0010\u00bd\u00fc\u0097\u00a8\u0006\"\u000542319\u0012\u0011\b5\u0012\u0006\u0010\u00a1\u00fd\u0097\u00a8\u0006\"\u000542320\u0012\u0011\b6\u0012\u0006\u0010\u00db\u00fd\u0097\u00a8\u0006\"\u000538514\u0012\u0011\b7\u0012\u0006\u0010\u00a0\u00fe\u0097\u00a8\u0006\"\u000534586\u0012\u0011\b8\u0012\u0006\u0010\u00c5\u00fe\u0097\u00a8\u0006\"\u000534587\u0012\u0011\b9\u0012\u0006\u0010\u00e5\u00fe\u0097\u00a8\u0006\"\u000534588\u0012\u0011\b:\u0012\u0006\u0010\u00a2\u00ff\u0097\u00a8\u0006\"\u000539497\u0012\u0011\b;\u0012\u0006\u0010\u00ce\u00ff\u0097\u00a8\u0006\"\u000549407\u0012\u0011\b<\u0012\u0006\u0010\u009a\u0080\u0098\u00a8\u0006\"\u000550034\u0012\u0011\b=\u0012\u0006\u0010\u00cf\u0080\u0098\u00a8\u0006\"\u000540903\u0012\u0011\b>\u0012\u0006\u0010\u00fd\u0080\u0098\u00a8\u0006\"\u000540904\u0012\u0011\b?\u0012\u0006\u0010\u00ba\u0081\u0098\u00a8\u0006\"\u000535814\u0012\u0011\b@\u0012\u0006\u0010\u00a5\u0082\u0098\u00a8\u0006\"\u000535815\u0012\u0011\bA\u0012\u0006\u0010\u00cb\u0082\u0098\u00a8\u0006\"\u000535816\u0012\u0011\bB\u0012\u0006\u0010\u00dd\u0082\u0098\u00a8\u0006\"\u000535817\u0012\u0011\bC\u0012\u0006\u0010\u008f\u0083\u0098\u00a8\u0006\"\u000535818\u0012\u0011\bD\u0012\u0006\u0010\u00c9\u0083\u0098\u00a8\u0006\"\u000535819\u0012\u0011\bE\u0012\u0006\u0010\u00f1\u0085\u0098\u00a8\u0006\"\u000535822\u0012\u0011\bF\u0012\u0006\u0010\u00c2\u0086\u0098\u00a8\u0006\"\u000535823\u0012\u0011\bG\u0012\u0006\u0010\u009e\u0087\u0098\u00a8\u0006\"\u000535723\u0012\u0011\bH\u0012\u0006\u0010\u00ec\u0087\u0098\u00a8\u0006\"\u000535722\u0012\u0011\bI\u0012\u0006\u0010\u0080\u0089\u0098\u00a8\u0006\"\u000535826\u0012\u0011\bJ\u0012\u0006\u0010\u00ea\u0089\u0098\u00a8\u0006\"\u000535827\u0012\u0011\bK\u0012\u0006\u0010\u0095\u008a\u0098\u00a8\u0006\"\u000535828\u0012\u0011\bL\u0012\u0006\u0010\u0080\u008b\u0098\u00a8\u0006\"\u000535829\u0012\u0011\bM\u0012\u0006\u0010\u00f1\u008c\u0098\u00a8\u0006\"\u000540921\u001a\b\u001a\u0006WU1086 \u00c0\u00e8\u0097\u00a8\u0006\"`\n/\n\u001017569-701ff27f-2\u0012\b15:40:00\u001a\b20230916 \u0000*\u00035670\u0000\u0012\u001d\r\u009a\u00bb\u0013\u00c2\u0015,\u000b\u0092\u00c2\u001d\u0000\u0000\u009cC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c0\u00e8\u0097\u00a8\u0006B\b\u001a\u0006WU1086" + }, + { + "type": "con_recorrido", + "entity": "\n$b0dada73-a90a-42db-a15d-66d86383f96d\u001a\u008d\u0001\n/\n\u001017566-701ff27f-2\u0012\b14:40:00\u001a\b20230916 \u0000*\u00035670\u0000\u0012\u0011\bJ\u0012\u0006\u0010\u00e7\u00e8\u0097\u00a8\u0006\"\u000535827\u0012\u0011\bK\u0012\u0006\u0010\u00ff\u00e8\u0097\u00a8\u0006\"\u000535828\u0012\u0011\bL\u0012\u0006\u0010\u00ba\u00e9\u0097\u00a8\u0006\"\u000535829\u0012\u0011\bM\u0012\u0006\u0010\u00b9\u00ea\u0097\u00a8\u0006\"\u000540921\u001a\b\u001a\u0006XC3913 \u00cd\u00e8\u0097\u00a8\u0006\"`\n/\n\u001017566-701ff27f-2\u0012\b14:40:00\u001a\b20230916 \u0000*\u00035670\u0000\u0012\u001d\rMT\u0013\u00c2\u0015\u00e1\u0002\u0092\u00c2\u001d\u0000\u0000-C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008e\u00e3\u00a8@(\u00cd\u00e8\u0097\u00a8\u0006B\b\u001a\u0006XC3913" + }, + { + "type": "con_recorrido", + "entity": "\n$972eab18-e1ae-4f0f-8a9b-ba8b03022e1a\u001a\u00b9\u0006\n/\n\u001017568-701ff27f-2\u0012\b15:20:00\u001a\b20230916 \u0000*\u00035670\u0000\u0012\u0011\b&\u0012\u0006\u0010\u00f5\u00e8\u0097\u00a8\u0006\"\u000549299\u0012\u0011\b'\u0012\u0006\u0010\u00a2\u00e9\u0097\u00a8\u0006\"\u000549300\u0012\u0011\b(\u0012\u0006\u0010\u00f9\u00e9\u0097\u00a8\u0006\"\u000549301\u0012\u0011\b)\u0012\u0006\u0010\u00bf\u00ea\u0097\u00a8\u0006\"\u000549302\u0012\u0011\b*\u0012\u0006\u0010\u00ed\u00ea\u0097\u00a8\u0006\"\u000549303\u0012\u0011\b+\u0012\u0006\u0010\u00a2\u00eb\u0097\u00a8\u0006\"\u000549304\u0012\u0011\b,\u0012\u0006\u0010\u00be\u00eb\u0097\u00a8\u0006\"\u000549305\u0012\u0011\b-\u0012\u0006\u0010\u00f7\u00eb\u0097\u00a8\u0006\"\u000549306\u0012\u0011\b.\u0012\u0006\u0010\u009f\u00ec\u0097\u00a8\u0006\"\u000549307\u0012\u0011\b/\u0012\u0006\u0010\u00b7\u00ec\u0097\u00a8\u0006\"\u000549308\u0012\u0011\b0\u0012\u0006\u0010\u00cf\u00ec\u0097\u00a8\u0006\"\u000549309\u0012\u0011\b1\u0012\u0006\u0010\u00eb\u00ec\u0097\u00a8\u0006\"\u000542315\u0012\u0011\b2\u0012\u0006\u0010\u0082\u00ed\u0097\u00a8\u0006\"\u000542316\u0012\u0011\b3\u0012\u0006\u0010\u00b4\u00ed\u0097\u00a8\u0006\"\u000542317\u0012\u0011\b4\u0012\u0006\u0010\u00f4\u00ed\u0097\u00a8\u0006\"\u000542319\u0012\u0011\b5\u0012\u0006\u0010\u00c6\u00ee\u0097\u00a8\u0006\"\u000542320\u0012\u0011\b6\u0012\u0006\u0010\u00f4\u00ee\u0097\u00a8\u0006\"\u000538514\u0012\u0011\b7\u0012\u0006\u0010\u00aa\u00ef\u0097\u00a8\u0006\"\u000534586\u0012\u0011\b8\u0012\u0006\u0010\u00c6\u00ef\u0097\u00a8\u0006\"\u000534587\u0012\u0011\b9\u0012\u0006\u0010\u00de\u00ef\u0097\u00a8\u0006\"\u000534588\u0012\u0011\b:\u0012\u0006\u0010\u008c\u00f0\u0097\u00a8\u0006\"\u000539497\u0012\u0011\b;\u0012\u0006\u0010\u00ad\u00f0\u0097\u00a8\u0006\"\u000549407\u0012\u0011\b<\u0012\u0006\u0010\u00e4\u00f0\u0097\u00a8\u0006\"\u000550034\u0012\u0011\b=\u0012\u0006\u0010\u008a\u00f1\u0097\u00a8\u0006\"\u000540903\u0012\u0011\b>\u0012\u0006\u0010\u00ab\u00f1\u0097\u00a8\u0006\"\u000540904\u0012\u0011\b?\u0012\u0006\u0010\u00d7\u00f1\u0097\u00a8\u0006\"\u000535814\u0012\u0011\b@\u0012\u0006\u0010\u00a0\u00f2\u0097\u00a8\u0006\"\u000535815\u0012\u0011\bA\u0012\u0006\u0010\u00ba\u00f2\u0097\u00a8\u0006\"\u000535816\u0012\u0011\bB\u0012\u0006\u0010\u00c6\u00f2\u0097\u00a8\u0006\"\u000535817\u0012\u0011\bC\u0012\u0006\u0010\u00e8\u00f2\u0097\u00a8\u0006\"\u000535818\u0012\u0011\bD\u0012\u0006\u0010\u008e\u00f3\u0097\u00a8\u0006\"\u000535819\u0012\u0011\bE\u0012\u0006\u0010\u00ca\u00f4\u0097\u00a8\u0006\"\u000535822\u0012\u0011\bF\u0012\u0006\u0010\u00fc\u00f4\u0097\u00a8\u0006\"\u000535823\u0012\u0011\bG\u0012\u0006\u0010\u00b3\u00f5\u0097\u00a8\u0006\"\u000535723\u0012\u0011\bH\u0012\u0006\u0010\u00e1\u00f5\u0097\u00a8\u0006\"\u000535722\u0012\u0011\bI\u0012\u0006\u0010\u00b7\u00f6\u0097\u00a8\u0006\"\u000535826\u0012\u0011\bJ\u0012\u0006\u0010\u00f3\u00f6\u0097\u00a8\u0006\"\u000535827\u0012\u0011\bK\u0012\u0006\u0010\u008b\u00f7\u0097\u00a8\u0006\"\u000535828\u0012\u0011\bL\u0012\u0006\u0010\u00c5\u00f7\u0097\u00a8\u0006\"\u000535829\u0012\u0011\bM\u0012\u0006\u0010\u00c6\u00f8\u0097\u00a8\u0006\"\u000540921\u001a\b\u001a\u0006ZT3126 \u00ae\u00e8\u0097\u00a8\u0006\"`\n/\n\u001017568-701ff27f-2\u0012\b15:20:00\u001a\b20230916 \u0000*\u00035670\u0000\u0012\u001d\rfl\u0013\u00c2\u0015k\u0019\u0092\u00c2\u001d\u0000\u0000\u00b2C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00c7q\u0090A(\u00ae\u00e8\u0097\u00a8\u0006B\b\u001a\u0006ZT3126" + }, + { + "type": "con_recorrido", + "entity": "\n$4279047f-791d-4a70-a84f-618708864c5c\u001a\u0089\u0004\n/\n\u001017615-701ff27f-2\u0012\b15:32:00\u001a\b20230916 \u0000*\u00035670\u0001\u0012\u0011\b1\u0012\u0006\u0010\u00b7\u00e8\u0097\u00a8\u0006\"\u000542218\u0012\u0011\b2\u0012\u0006\u0010\u00e0\u00e8\u0097\u00a8\u0006\"\u000542219\u0012\u0011\b3\u0012\u0006\u0010\u00cf\u00e9\u0097\u00a8\u0006\"\u000542220\u0012\u0011\b4\u0012\u0006\u0010\u00fd\u00e9\u0097\u00a8\u0006\"\u000542221\u0012\u0011\b5\u0012\u0006\u0010\u00c2\u00ea\u0097\u00a8\u0006\"\u000542222\u0012\u0011\b6\u0012\u0006\u0010\u0088\u00eb\u0097\u00a8\u0006\"\u000542223\u0012\u0011\b7\u0012\u0006\u0010\u00a4\u00eb\u0097\u00a8\u0006\"\u000542224\u0012\u0011\b8\u0012\u0006\u0010\u00f0\u00eb\u0097\u00a8\u0006\"\u000542225\u0012\u0011\b9\u0012\u0006\u0010\u00b1\u00ec\u0097\u00a8\u0006\"\u000542226\u0012\u0011\b:\u0012\u0006\u0010\u00e5\u00ec\u0097\u00a8\u0006\"\u000542227\u0012\u0011\b;\u0012\u0006\u0010\u00b7\u00ed\u0097\u00a8\u0006\"\u000542228\u0012\u0011\b<\u0012\u0006\u0010\u00d9\u00ed\u0097\u00a8\u0006\"\u000542229\u0012\u0011\b=\u0012\u0006\u0010\u00ac\u00ee\u0097\u00a8\u0006\"\u000542230\u0012\u0011\b>\u0012\u0006\u0010\u00d9\u00ee\u0097\u00a8\u0006\"\u000542231\u0012\u0011\b?\u0012\u0006\u0010\u00ac\u00ef\u0097\u00a8\u0006\"\u000542232\u0012\u0011\b@\u0012\u0006\u0010\u00fc\u00ef\u0097\u00a8\u0006\"\u000542233\u0012\u0011\bA\u0012\u0006\u0010\u00ff\u00f0\u0097\u00a8\u0006\"\u000534557\u0012\u0011\bB\u0012\u0006\u0010\u00d4\u00f1\u0097\u00a8\u0006\"\u000542212\u0012\u0011\bC\u0012\u0006\u0010\u00a3\u00f2\u0097\u00a8\u0006\"\u000534560\u0012\u0011\bD\u0012\u0006\u0010\u00cb\u00f2\u0097\u00a8\u0006\"\u000542273\u0012\u0011\bE\u0012\u0006\u0010\u00c0\u00f3\u0097\u00a8\u0006\"\u000549203\u0012\u0011\bF\u0012\u0006\u0010\u00f6\u00f3\u0097\u00a8\u0006\"\u000549204\u0012\u0011\bG\u0012\u0006\u0010\u00ff\u00f3\u0097\u00a8\u0006\"\u000542503\u0012\u0011\bH\u0012\u0006\u0010\u008c\u00f4\u0097\u00a8\u0006\"\u000549264\u001a\b\u001a\u0006ZT3921 \u00a9\u00e8\u0097\u00a8\u0006\"`\n/\n\u001017615-701ff27f-2\u0012\b15:32:00\u001a\b20230916 \u0000*\u00035670\u0001\u0012\u001d\r\u00e1\u009d\u0013\u00c2\u0015\u0002\u0010\u0092\u00c2\u001d\u0000\u00008C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u008eA(\u00a9\u00e8\u0097\u00a8\u0006B\b\u001a\u0006ZT3921" + }, + { + "type": "con_recorrido", + "entity": "\n$23c3c037-a8f9-401a-9993-b6b487ac713b\u001a\u00af\u0004\n/\n\u001017670-701ff27f-2\u0012\b14:36:00\u001a\b20230916 \u0000*\u00035680\u0000\u0012\u0011\bP\u0012\u0006\u0010\u00ef\u00e8\u0097\u00a8\u0006\"\u000538514\u0012\u0011\bQ\u0012\u0006\u0010\u00aa\u00e9\u0097\u00a8\u0006\"\u000534586\u0012\u0011\bR\u0012\u0006\u0010\u00c9\u00e9\u0097\u00a8\u0006\"\u000534587\u0012\u0011\bS\u0012\u0006\u0010\u00e3\u00e9\u0097\u00a8\u0006\"\u000534588\u0012\u0011\bT\u0012\u0006\u0010\u0094\u00ea\u0097\u00a8\u0006\"\u000539497\u0012\u0011\bU\u0012\u0006\u0010\u00b7\u00ea\u0097\u00a8\u0006\"\u000549407\u0012\u0011\bV\u0012\u0006\u0010\u00f2\u00ea\u0097\u00a8\u0006\"\u000550034\u0012\u0011\bW\u0012\u0006\u0010\u009a\u00eb\u0097\u00a8\u0006\"\u000540903\u0012\u0011\bX\u0012\u0006\u0010\u00bd\u00eb\u0097\u00a8\u0006\"\u000540904\u0012\u0011\bY\u0012\u0006\u0010\u00e9\u00eb\u0097\u00a8\u0006\"\u000535814\u0012\u0011\bZ\u0012\u0006\u0010\u00b5\u00ec\u0097\u00a8\u0006\"\u000535815\u0012\u0011\b[\u0012\u0006\u0010\u00cf\u00ec\u0097\u00a8\u0006\"\u000535816\u0012\u0011\b\\\u0012\u0006\u0010\u00db\u00ec\u0097\u00a8\u0006\"\u000535817\u0012\u0011\b]\u0012\u0006\u0010\u00fe\u00ec\u0097\u00a8\u0006\"\u000535818\u0012\u0011\b^\u0012\u0006\u0010\u00a4\u00ed\u0097\u00a8\u0006\"\u000535819\u0012\u0011\b_\u0012\u0006\u0010\u00de\u00ee\u0097\u00a8\u0006\"\u000535822\u0012\u0011\b`\u0012\u0006\u0010\u00ab\u00ef\u0097\u00a8\u0006\"\u000538833\u0012\u0011\ba\u0012\u0006\u0010\u00c5\u00ef\u0097\u00a8\u0006\"\u000540924\u0012\u0011\bb\u0012\u0006\u0010\u0090\u00f1\u0097\u00a8\u0006\"\u000538812\u0012\u0011\bc\u0012\u0006\u0010\u00b2\u00f1\u0097\u00a8\u0006\"\u000538813\u0012\u0011\bd\u0012\u0006\u0010\u00eb\u00f1\u0097\u00a8\u0006\"\u000538814\u0012\u0011\be\u0012\u0006\u0010\u0098\u00f2\u0097\u00a8\u0006\"\u000538815\u0012\u0011\bf\u0012\u0006\u0010\u00a4\u00f2\u0097\u00a8\u0006\"\u000538816\u0012\u0011\bg\u0012\u0006\u0010\u00fe\u00f2\u0097\u00a8\u0006\"\u000540565\u0012\u0011\bh\u0012\u0006\u0010\u00b6\u00f3\u0097\u00a8\u0006\"\u000540566\u0012\u0011\bi\u0012\u0006\u0010\u00c9\u00f3\u0097\u00a8\u0006\"\u000540567\u001a\b\u001a\u0006DBRD57 \u00cb\u00e8\u0097\u00a8\u0006\"`\n/\n\u001017670-701ff27f-2\u0012\b14:36:00\u001a\b20230916 \u0000*\u00035680\u0000\u0012\u001d\r\u008eN\u0013\u00c2\u0015\u00df\u0016\u0092\u00c2\u001d\u0000\u0000tB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UU\u00d5@(\u00cb\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DBRD57" + }, + { + "type": "con_recorrido", + "entity": "\n$05a9b596-4e7d-467d-9ee4-2df73de5b433\u001a\u00e6\u000f\n/\n\u001017674-701ff27f-2\u0012\b15:36:00\u001a\b20230916 \u0000*\u00035680\u0000\u0012\u0011\b\u0003\u0012\u0006\u0010\u00ca\u00e8\u0097\u00a8\u0006\"\u000549228\u0012\u0011\b\u0004\u0012\u0006\u0010\u009b\u00e9\u0097\u00a8\u0006\"\u000549237\u0012\u0011\b\u0005\u0012\u0006\u0010\u00c7\u00e9\u0097\u00a8\u0006\"\u000549238\u0012\u0011\b\u0006\u0012\u0006\u0010\u00ea\u00e9\u0097\u00a8\u0006\"\u000540966\u0012\u0011\b\u0007\u0012\u0006\u0010\u0094\u00ea\u0097\u00a8\u0006\"\u000540967\u0012\u0011\b\b\u0012\u0006\u0010\u00e0\u00ea\u0097\u00a8\u0006\"\u000540969\u0012\u0011\b\t\u0012\u0006\u0010\u00c1\u00eb\u0097\u00a8\u0006\"\u000540970\u0012\u0011\b\n\u0012\u0006\u0010\u00ee\u00eb\u0097\u00a8\u0006\"\u000549250\u0012\u0011\b\u000b\u0012\u0006\u0010\u0087\u00ec\u0097\u00a8\u0006\"\u000549244\u0012\u0011\b\f\u0012\u0006\u0010\u0097\u00ec\u0097\u00a8\u0006\"\u000549251\u0012\u0011\b\r\u0012\u0006\u0010\u00a7\u00ec\u0097\u00a8\u0006\"\u000549242\u0012\u0011\b\u000e\u0012\u0006\u0010\u00d5\u00ec\u0097\u00a8\u0006\"\u000538054\u0012\u0011\b\u000f\u0012\u0006\u0010\u009a\u00ed\u0097\u00a8\u0006\"\u000538055\u0012\u0011\b\u0010\u0012\u0006\u0010\u0098\u00ee\u0097\u00a8\u0006\"\u000549254\u0012\u0011\b\u0011\u0012\u0006\u0010\u00b9\u00ee\u0097\u00a8\u0006\"\u000549255\u0012\u0011\b\u0012\u0012\u0006\u0010\u00dc\u00ee\u0097\u00a8\u0006\"\u000534810\u0012\u0011\b\u0013\u0012\u0006\u0010\u00f0\u00ee\u0097\u00a8\u0006\"\u000549256\u0012\u0011\b\u0014\u0012\u0006\u0010\u0088\u00ef\u0097\u00a8\u0006\"\u000549219\u0012\u0011\b\u0015\u0012\u0006\u0010\u00b2\u00ef\u0097\u00a8\u0006\"\u000549249\u0012\u0011\b\u0016\u0012\u0006\u0010\u00c8\u00ef\u0097\u00a8\u0006\"\u000549218\u0012\u0011\b\u0017\u0012\u0006\u0010\u00df\u00ef\u0097\u00a8\u0006\"\u000549257\u0012\u0011\b\u0018\u0012\u0006\u0010\u00d4\u00f0\u0097\u00a8\u0006\"\u000549258\u0012\u0011\b\u0019\u0012\u0006\u0010\u008b\u00f1\u0097\u00a8\u0006\"\u000549259\u0012\u0011\b\u001a\u0012\u0006\u0010\u0096\u00f1\u0097\u00a8\u0006\"\u000549260\u0012\u0011\b\u001b\u0012\u0006\u0010\u00b7\u00f2\u0097\u00a8\u0006\"\u000549261\u0012\u0011\b\u001c\u0012\u0006\u0010\u0084\u00f9\u0097\u00a8\u0006\"\u000534549\u0012\u0011\b\u001d\u0012\u0006\u0010\u0083\u00fc\u0097\u00a8\u0006\"\u000549264\u0012\u0011\b\u001e\u0012\u0006\u0010\u0085\u00fc\u0097\u00a8\u0006\"\u000549265\u0012\u0011\b\u001f\u0012\u0006\u0010\u00b4\u00fc\u0097\u00a8\u0006\"\u000549266\u0012\u0011\b \u0012\u0006\u0010\u00f3\u00fc\u0097\u00a8\u0006\"\u000549267\u0012\u0011\b!\u0012\u0006\u0010\u00cf\u00fd\u0097\u00a8\u0006\"\u000542274\u0012\u0011\b\"\u0012\u0006\u0010\u00af\u00fe\u0097\u00a8\u0006\"\u000542275\u0012\u0011\b#\u0012\u0006\u0010\u00e1\u00fe\u0097\u00a8\u0006\"\u000542276\u0012\u0011\b$\u0012\u0006\u0010\u00ce\u00ff\u0097\u00a8\u0006\"\u000542277\u0012\u0011\b%\u0012\u0006\u0010\u00ba\u0080\u0098\u00a8\u0006\"\u000542278\u0012\u0011\b&\u0012\u0006\u0010\u00f2\u0080\u0098\u00a8\u0006\"\u000542279\u0012\u0011\b'\u0012\u0006\u0010\u00e3\u0081\u0098\u00a8\u0006\"\u000542280\u0012\u0011\b(\u0012\u0006\u0010\u009f\u0082\u0098\u00a8\u0006\"\u000542281\u0012\u0011\b)\u0012\u0006\u0010\u008e\u0083\u0098\u00a8\u0006\"\u000542282\u0012\u0011\b*\u0012\u0006\u0010\u00de\u0083\u0098\u00a8\u0006\"\u000542283\u0012\u0011\b+\u0012\u0006\u0010\u00c2\u0084\u0098\u00a8\u0006\"\u000549279\u0012\u0011\b,\u0012\u0006\u0010\u00bd\u0085\u0098\u00a8\u0006\"\u000542285\u0012\u0011\b-\u0012\u0006\u0010\u00d8\u0086\u0098\u00a8\u0006\"\u000549281\u0012\u0011\b.\u0012\u0006\u0010\u00c3\u0087\u0098\u00a8\u0006\"\u000549282\u0012\u0011\b/\u0012\u0006\u0010\u008d\u0088\u0098\u00a8\u0006\"\u000549283\u0012\u0011\b0\u0012\u0006\u0010\u00f2\u0088\u0098\u00a8\u0006\"\u000549284\u0012\u0011\b1\u0012\u0006\u0010\u00dc\u0089\u0098\u00a8\u0006\"\u000549285\u0012\u0011\b2\u0012\u0006\u0010\u00ec\u008a\u0098\u00a8\u0006\"\u000549286\u0012\u0011\b3\u0012\u0006\u0010\u00be\u008b\u0098\u00a8\u0006\"\u000549287\u0012\u0011\b4\u0012\u0006\u0010\u009a\u008c\u0098\u00a8\u0006\"\u000549288\u0012\u0011\b5\u0012\u0006\u0010\u0081\u008d\u0098\u00a8\u0006\"\u000549289\u0012\u0011\b6\u0012\u0006\u0010\u00a6\u008f\u0098\u00a8\u0006\"\u000542294\u0012\u0011\b7\u0012\u0006\u0010\u00cf\u0091\u0098\u00a8\u0006\"\u000542295\u0012\u0011\b8\u0012\u0006\u0010\u00ec\u0093\u0098\u00a8\u0006\"\u000542296\u0012\u0011\b9\u0012\u0006\u0010\u00bf\u0096\u0098\u00a8\u0006\"\u000542297\u0012\u0011\b:\u0012\u0006\u0010\u00d7\u0098\u0098\u00a8\u0006\"\u000542298\u0012\u0011\b;\u0012\u0006\u0010\u009b\u009a\u0098\u00a8\u0006\"\u000542299\u0012\u0011\b<\u0012\u0006\u0010\u00a2\u009b\u0098\u00a8\u0006\"\u000549295\u0012\u0011\b=\u0012\u0006\u0010\u00b0\u009e\u0098\u00a8\u0006\"\u000549296\u0012\u0011\b>\u0012\u0006\u0010\u00fd\u00a0\u0098\u00a8\u0006\"\u000549297\u0012\u0011\b?\u0012\u0006\u0010\u0085\u00a2\u0098\u00a8\u0006\"\u000549298\u0012\u0011\b@\u0012\u0006\u0010\u00f7\u00a3\u0098\u00a8\u0006\"\u000549299\u0012\u0011\bA\u0012\u0006\u0010\u00d4\u00a5\u0098\u00a8\u0006\"\u000549300\u0012\u0011\bB\u0012\u0006\u0010\u00cb\u00a8\u0098\u00a8\u0006\"\u000549301\u0012\u0011\bC\u0012\u0006\u0010\u0093\u00ab\u0098\u00a8\u0006\"\u000549302\u0012\u0011\bD\u0012\u0006\u0010\u00f8\u00ac\u0098\u00a8\u0006\"\u000549303\u0012\u0011\bE\u0012\u0006\u0010\u008c\u00af\u0098\u00a8\u0006\"\u000549304\u0012\u0011\bF\u0012\u0006\u0010\u00a9\u00b0\u0098\u00a8\u0006\"\u000549305\u0012\u0011\bG\u0012\u0006\u0010\u00f1\u00b2\u0098\u00a8\u0006\"\u000549306\u0012\u0011\bH\u0012\u0006\u0010\u00e5\u00b4\u0098\u00a8\u0006\"\u000549307\u0012\u0011\bI\u0012\u0006\u0010\u00fe\u00b5\u0098\u00a8\u0006\"\u000549308\u0012\u0011\bJ\u0012\u0006\u0010\u009c\u00b7\u0098\u00a8\u0006\"\u000549309\u0012\u0011\bK\u0012\u0006\u0010\u00d8\u00b8\u0098\u00a8\u0006\"\u000542315\u0012\u0011\bL\u0012\u0006\u0010\u00f8\u00b9\u0098\u00a8\u0006\"\u000542316\u0012\u0011\bM\u0012\u0006\u0010\u00e7\u00bc\u0098\u00a8\u0006\"\u000542317\u0012\u0011\bN\u0012\u0006\u0010\u00ae\u00c1\u0098\u00a8\u0006\"\u000542319\u0012\u0011\bO\u0012\u0006\u0010\u00a7\u00c6\u0098\u00a8\u0006\"\u000542320\u0012\u0011\bP\u0012\u0006\u0010\u00de\u00c9\u0098\u00a8\u0006\"\u000538514\u0012\u0011\bQ\u0012\u0006\u0010\u0083\u00ce\u0098\u00a8\u0006\"\u000534586\u0012\u0011\bR\u0012\u0006\u0010\u00b7\u00d0\u0098\u00a8\u0006\"\u000534587\u0012\u0011\bS\u0012\u0006\u0010\u00c5\u00d2\u0098\u00a8\u0006\"\u000534588\u0012\u0011\bT\u0012\u0006\u0010\u00ea\u00d6\u0098\u00a8\u0006\"\u000539497\u0012\u0011\bU\u0012\u0006\u0010\u008b\u00da\u0098\u00a8\u0006\"\u000549407\u0012\u0011\bV\u0012\u0006\u0010\u0080\u00e0\u0098\u00a8\u0006\"\u000550034\u0012\u0011\bW\u0012\u0006\u0010\u00b2\u00e4\u0098\u00a8\u0006\"\u000540903\u0012\u0011\bX\u0012\u0006\u0010\u00b9\u00e8\u0098\u00a8\u0006\"\u000540904\u0012\u0011\bY\u0012\u0006\u0010\u0090\u00ee\u0098\u00a8\u0006\"\u000535814\u0012\u0011\bZ\u0012\u0006\u0010\u00f1\u00f8\u0098\u00a8\u0006\"\u000535815\u0012\u0011\b[\u0012\u0006\u0010\u0086\u00fd\u0098\u00a8\u0006\"\u000535816\u0012\u0011\b\\\u0012\u0006\u0010\u008b\u00ff\u0098\u00a8\u0006\"\u000535817\u0012\u0011\b]\u0012\u0006\u0010\u0085\u0085\u0099\u00a8\u0006\"\u000535818\u0012\u0011\b^\u0012\u0006\u0010\u00a1\u008c\u0099\u00a8\u0006\"\u000535819\u0012\u0011\b_\u0012\u0006\u0010\u009c\u00bb\u0099\u00a8\u0006\"\u000535822\u0012\u0011\b`\u0012\u0006\u0010\u009c\u00d7\u0099\u00a8\u0006\"\u000538833\u0012\u0011\ba\u0012\u0006\u0010\u00c2\u00e2\u0099\u00a8\u0006\"\u000540924\u0012\u0011\bb\u0012\u0006\u0010\u00b2\u00ef\u009a\u00a8\u0006\"\u000538812\u0012\u0011\bc\u0012\u0006\u0010\u00de\u0097\u009b\u00a8\u0006\"\u000538813\u0012\u0011\bd\u0012\u0006\u0010\u00a6\u00f1\u009b\u00a8\u0006\"\u000538814\u0012\u0011\be\u0012\u0006\u0010\u00f3\u00d4\u009c\u00a8\u0006\"\u000538815\u0012\u0011\bf\u0012\u0006\u0010\u00ad\u00f7\u009c\u00a8\u0006\"\u000538816\u0012\u0011\bg\u0012\u0006\u0010\u00e1\u00a9\u00a0\u00a8\u0006\"\u000540565\u0012\u0011\bh\u0012\u0006\u0010\u008c\u00a9\u00a6\u00a8\u0006\"\u000540566\u0012\u0011\bi\u0012\u0006\u0010\u00f0\u00f4\u00aa\u00a8\u0006\"\u000540567\u001a\b\u001a\u0006DDZY48 \u00c9\u00e8\u0097\u00a8\u0006\"`\n/\n\u001017674-701ff27f-2\u0012\b15:36:00\u001a\b20230916 \u0000*\u00035680\u0000\u0012\u001d\r\b\u00db\u0013\u00c2\u0015\u009d\u00df\u0091\u00c2\u001d\u0000\u0000?C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008e\u00e3\u00f8@(\u00c9\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DDZY48" + }, + { + "type": "con_recorrido", + "entity": "\n$0f7be8ee-9755-40cc-a949-0887f092a4ee\u001a\u00f3\n\n/\n\u001017747-701ff27f-2\u0012\b14:48:00\u001a\b20230916 \u0000*\u00035680\u0001\u0012\u0011\b!\u0012\u0006\u0010\u0087\u00ea\u0097\u00a8\u0006\"\u000542206\u0012\u0011\b\"\u0012\u0006\u0010\u00bf\u00ea\u0097\u00a8\u0006\"\u000542207\u0012\u0011\b#\u0012\u0006\u0010\u00fd\u00ea\u0097\u00a8\u0006\"\u000542208\u0012\u0011\b$\u0012\u0006\u0010\u00fc\u00eb\u0097\u00a8\u0006\"\u000542564\u0012\u0011\b%\u0012\u0006\u0010\u00e5\u00ec\u0097\u00a8\u0006\"\u000542214\u0012\u0011\b&\u0012\u0006\u0010\u00cf\u00ed\u0097\u00a8\u0006\"\u000542209\u0012\u0011\b'\u0012\u0006\u0010\u00c2\u00ee\u0097\u00a8\u0006\"\u000542210\u0012\u0011\b(\u0012\u0006\u0010\u00ef\u00ef\u0097\u00a8\u0006\"\u000540951\u0012\u0011\b)\u0012\u0006\u0010\u00ab\u00f0\u0097\u00a8\u0006\"\u000540952\u0012\u0011\b*\u0012\u0006\u0010\u00e4\u00f0\u0097\u00a8\u0006\"\u000540953\u0012\u0011\b+\u0012\u0006\u0010\u008f\u00f1\u0097\u00a8\u0006\"\u000540954\u0012\u0011\b,\u0012\u0006\u0010\u00d5\u00f1\u0097\u00a8\u0006\"\u000540955\u0012\u0011\b-\u0012\u0006\u0010\u00fa\u00f1\u0097\u00a8\u0006\"\u000540956\u0012\u0011\b.\u0012\u0006\u0010\u00b0\u00f2\u0097\u00a8\u0006\"\u000540957\u0012\u0011\b/\u0012\u0006\u0010\u00e6\u00f2\u0097\u00a8\u0006\"\u000540958\u0012\u0011\b0\u0012\u0006\u0010\u0080\u00f3\u0097\u00a8\u0006\"\u000540959\u0012\u0011\b1\u0012\u0006\u0010\u00c6\u00f3\u0097\u00a8\u0006\"\u000542223\u0012\u0011\b2\u0012\u0006\u0010\u00e2\u00f3\u0097\u00a8\u0006\"\u000542224\u0012\u0011\b3\u0012\u0006\u0010\u00ad\u00f4\u0097\u00a8\u0006\"\u000542225\u0012\u0011\b4\u0012\u0006\u0010\u00ed\u00f4\u0097\u00a8\u0006\"\u000542226\u0012\u0011\b5\u0012\u0006\u0010\u00a2\u00f5\u0097\u00a8\u0006\"\u000542227\u0012\u0011\b6\u0012\u0006\u0010\u00f6\u00f5\u0097\u00a8\u0006\"\u000542228\u0012\u0011\b7\u0012\u0006\u0010\u00a1\u00f6\u0097\u00a8\u0006\"\u000542229\u0012\u0011\b8\u0012\u0006\u0010\u00f3\u00f6\u0097\u00a8\u0006\"\u000542230\u0012\u0011\b9\u0012\u0006\u0010\u009e\u00f7\u0097\u00a8\u0006\"\u000542231\u0012\u0011\b:\u0012\u0006\u0010\u00f2\u00f7\u0097\u00a8\u0006\"\u000542232\u0012\u0011\b;\u0012\u0006\u0010\u00fb\u00f8\u0097\u00a8\u0006\"\u000542234\u0012\u0011\b<\u0012\u0006\u0010\u00c7\u00f9\u0097\u00a8\u0006\"\u000542235\u0012\u0011\b=\u0012\u0006\u0010\u00e9\u00f9\u0097\u00a8\u0006\"\u000542211\u0012\u0011\b>\u0012\u0006\u0010\u00a4\u00fa\u0097\u00a8\u0006\"\u000549203\u0012\u0011\b?\u0012\u0006\u0010\u00e1\u00fa\u0097\u00a8\u0006\"\u000549204\u0012\u0011\b@\u0012\u0006\u0010\u00fa\u00fa\u0097\u00a8\u0006\"\u000534564\u0012\u0011\bA\u0012\u0006\u0010\u0091\u00fe\u0097\u00a8\u0006\"\u000534789\u0012\u0011\bB\u0012\u0006\u0010\u00ac\u00fe\u0097\u00a8\u0006\"\u000549163\u0012\u0011\bC\u0012\u0006\u0010\u00e0\u0086\u0098\u00a8\u0006\"\u000549208\u0012\u0011\bD\u0012\u0006\u0010\u008a\u0087\u0098\u00a8\u0006\"\u000549209\u0012\u0011\bE\u0012\u0006\u0010\u00a4\u0087\u0098\u00a8\u0006\"\u000549210\u0012\u0011\bF\u0012\u0006\u0010\u00e9\u0089\u0098\u00a8\u0006\"\u000549211\u0012\u0011\bG\u0012\u0006\u0010\u009d\u008a\u0098\u00a8\u0006\"\u000549212\u0012\u0011\bH\u0012\u0006\u0010\u0087\u008b\u0098\u00a8\u0006\"\u000549213\u0012\u0011\bI\u0012\u0006\u0010\u00ef\u008d\u0098\u00a8\u0006\"\u000549206\u0012\u0011\bJ\u0012\u0006\u0010\u009f\u008f\u0098\u00a8\u0006\"\u000549215\u0012\u0011\bK\u0012\u0006\u0010\u00b1\u008f\u0098\u00a8\u0006\"\u000549216\u0012\u0011\bL\u0012\u0006\u0010\u00e2\u008f\u0098\u00a8\u0006\"\u000549217\u0012\u0011\bM\u0012\u0006\u0010\u0099\u0090\u0098\u00a8\u0006\"\u000549214\u0012\u0011\bN\u0012\u0006\u0010\u008a\u0091\u0098\u00a8\u0006\"\u000549218\u0012\u0011\bO\u0012\u0006\u0010\u00bc\u0091\u0098\u00a8\u0006\"\u000549219\u0012\u0011\bP\u0012\u0006\u0010\u00ae\u0092\u0098\u00a8\u0006\"\u000538044\u0012\u0011\bQ\u0012\u0006\u0010\u008f\u0093\u0098\u00a8\u0006\"\u000538045\u0012\u0011\bR\u0012\u0006\u0010\u00e4\u0094\u0098\u00a8\u0006\"\u000534824\u0012\u0011\bS\u0012\u0006\u0010\u0087\u0097\u0098\u00a8\u0006\"\u000538091\u0012\u0011\bT\u0012\u0006\u0010\u00fe\u0097\u0098\u00a8\u0006\"\u000538092\u0012\u0011\bU\u0012\u0006\u0010\u00d3\u0098\u0098\u00a8\u0006\"\u000538093\u0012\u0011\bV\u0012\u0006\u0010\u00d5\u0099\u0098\u00a8\u0006\"\u000538094\u0012\u0011\bW\u0012\u0006\u0010\u0081\u009a\u0098\u00a8\u0006\"\u000549243\u0012\u0011\bX\u0012\u0006\u0010\u00fd\u009a\u0098\u00a8\u0006\"\u000549245\u0012\u0011\bY\u0012\u0006\u0010\u0086\u009c\u0098\u00a8\u0006\"\u000540338\u0012\u0011\bZ\u0012\u0006\u0010\u00af\u009c\u0098\u00a8\u0006\"\u000540339\u0012\u0011\b[\u0012\u0006\u0010\u00d8\u009c\u0098\u00a8\u0006\"\u000540340\u0012\u0011\b\\\u0012\u0006\u0010\u00f4\u009c\u0098\u00a8\u0006\"\u000540341\u0012\u0011\b]\u0012\u0006\u0010\u0098\u009e\u0098\u00a8\u0006\"\u000540342\u0012\u0011\b^\u0012\u0006\u0010\u00bb\u00a4\u0098\u00a8\u0006\"\u000549226\u0012\u0011\b_\u0012\u0006\u0010\u00b0\u00a5\u0098\u00a8\u0006\"\u000549227\u0012\u0011\b`\u0012\u0006\u0010\u00b1\u00a6\u0098\u00a8\u0006\"\u000549229\u0012\u0011\ba\u0012\u0006\u0010\u00f8\u00a6\u0098\u00a8\u0006\"\u000549228\u0012\u0011\bb\u0012\u0006\u0010\u0095\u00a8\u0098\u00a8\u0006\"\u000549230\u0012\u0011\bc\u0012\u0006\u0010\u0086\u00a9\u0098\u00a8\u0006\"\u000549231\u0012\u0011\bd\u0012\u0006\u0010\u00c1\u00a9\u0098\u00a8\u0006\"\u000549233\u0012\u0011\be\u0012\u0006\u0010\u00d7\u00aa\u0098\u00a8\u0006\"\u000549234\u0012\u0011\bf\u0012\u0006\u0010\u00e9\u00ab\u0098\u00a8\u0006\"\u000549235\u001a\b\u001a\u0006DSDY44 \u00cd\u00e8\u0097\u00a8\u0006\"`\n/\n\u001017747-701ff27f-2\u0012\b14:48:00\u001a\b20230916 \u0000*\u00035680\u0001\u0012\u001d\rSo\u0013\u00c2\u0015=\u0019\u0092\u00c2\u001d\u0000\u0000\u0018C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00ab\u00aa\u00a6A(\u00cd\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DSDY44" + }, + { + "type": "con_recorrido", + "entity": "\n$b15aaa3e-12c5-45f7-b65f-9435f4d35a11\u001a\u00ac\u000b\n/\n\u001017672-701ff27f-2\u0012\b15:06:00\u001a\b20230916 \u0000*\u00035680\u0000\u0012\u0011\b!\u0012\u0006\u0010\u00bb\u00e8\u0097\u00a8\u0006\"\u000542274\u0012\u0011\b\"\u0012\u0006\u0010\u008d\u00e9\u0097\u00a8\u0006\"\u000542275\u0012\u0011\b#\u0012\u0006\u0010\u00b6\u00e9\u0097\u00a8\u0006\"\u000542276\u0012\u0011\b$\u0012\u0006\u0010\u008e\u00ea\u0097\u00a8\u0006\"\u000542277\u0012\u0011\b%\u0012\u0006\u0010\u00e2\u00ea\u0097\u00a8\u0006\"\u000542278\u0012\u0011\b&\u0012\u0006\u0010\u008c\u00eb\u0097\u00a8\u0006\"\u000542279\u0012\u0011\b'\u0012\u0006\u0010\u00de\u00eb\u0097\u00a8\u0006\"\u000542280\u0012\u0011\b(\u0012\u0006\u0010\u0089\u00ec\u0097\u00a8\u0006\"\u000542281\u0012\u0011\b)\u0012\u0006\u0010\u00d5\u00ec\u0097\u00a8\u0006\"\u000542282\u0012\u0011\b*\u0012\u0006\u0010\u008a\u00ed\u0097\u00a8\u0006\"\u000542283\u0012\u0011\b+\u0012\u0006\u0010\u00cb\u00ed\u0097\u00a8\u0006\"\u000549279\u0012\u0011\b,\u0012\u0006\u0010\u0098\u00ee\u0097\u00a8\u0006\"\u000542285\u0012\u0011\b-\u0012\u0006\u0010\u00f4\u00ee\u0097\u00a8\u0006\"\u000549281\u0012\u0011\b.\u0012\u0006\u0010\u00b2\u00ef\u0097\u00a8\u0006\"\u000549282\u0012\u0011\b/\u0012\u0006\u0010\u00dc\u00ef\u0097\u00a8\u0006\"\u000549283\u0012\u0011\b0\u0012\u0006\u0010\u0093\u00f0\u0097\u00a8\u0006\"\u000549284\u0012\u0011\b1\u0012\u0006\u0010\u00cb\u00f0\u0097\u00a8\u0006\"\u000549285\u0012\u0011\b2\u0012\u0006\u0010\u0096\u00f1\u0097\u00a8\u0006\"\u000549286\u0012\u0011\b3\u0012\u0006\u0010\u00bf\u00f1\u0097\u00a8\u0006\"\u000549287\u0012\u0011\b4\u0012\u0006\u0010\u00ec\u00f1\u0097\u00a8\u0006\"\u000549288\u0012\u0011\b5\u0012\u0006\u0010\u009d\u00f2\u0097\u00a8\u0006\"\u000549289\u0012\u0011\b6\u0012\u0006\u0010\u00a3\u00f3\u0097\u00a8\u0006\"\u000542294\u0012\u0011\b7\u0012\u0006\u0010\u00a2\u00f4\u0097\u00a8\u0006\"\u000542295\u0012\u0011\b8\u0012\u0006\u0010\u0095\u00f5\u0097\u00a8\u0006\"\u000542296\u0012\u0011\b9\u0012\u0006\u0010\u0094\u00f6\u0097\u00a8\u0006\"\u000542297\u0012\u0011\b:\u0012\u0006\u0010\u00f8\u00f6\u0097\u00a8\u0006\"\u000542298\u0012\u0011\b;\u0012\u0006\u0010\u00bb\u00f7\u0097\u00a8\u0006\"\u000542299\u0012\u0011\b<\u0012\u0006\u0010\u00e7\u00f7\u0097\u00a8\u0006\"\u000549295\u0012\u0011\b=\u0012\u0006\u0010\u00e5\u00f8\u0097\u00a8\u0006\"\u000549296\u0012\u0011\b>\u0012\u0006\u0010\u00c8\u00f9\u0097\u00a8\u0006\"\u000549297\u0012\u0011\b?\u0012\u0006\u0010\u00ef\u00f9\u0097\u00a8\u0006\"\u000549298\u0012\u0011\b@\u0012\u0006\u0010\u00b2\u00fa\u0097\u00a8\u0006\"\u000549299\u0012\u0011\bA\u0012\u0006\u0010\u00ed\u00fa\u0097\u00a8\u0006\"\u000549300\u0012\u0011\bB\u0012\u0006\u0010\u00cd\u00fb\u0097\u00a8\u0006\"\u000549301\u0012\u0011\bC\u0012\u0006\u0010\u009d\u00fc\u0097\u00a8\u0006\"\u000549302\u0012\u0011\bD\u0012\u0006\u0010\u00d3\u00fc\u0097\u00a8\u0006\"\u000549303\u0012\u0011\bE\u0012\u0006\u0010\u0091\u00fd\u0097\u00a8\u0006\"\u000549304\u0012\u0011\bF\u0012\u0006\u0010\u00b4\u00fd\u0097\u00a8\u0006\"\u000549305\u0012\u0011\bG\u0012\u0006\u0010\u00fa\u00fd\u0097\u00a8\u0006\"\u000549306\u0012\u0011\bH\u0012\u0006\u0010\u00ac\u00fe\u0097\u00a8\u0006\"\u000549307\u0012\u0011\bI\u0012\u0006\u0010\u00cb\u00fe\u0097\u00a8\u0006\"\u000549308\u0012\u0011\bJ\u0012\u0006\u0010\u00ea\u00fe\u0097\u00a8\u0006\"\u000549309\u0012\u0011\bK\u0012\u0006\u0010\u008e\u00ff\u0097\u00a8\u0006\"\u000542315\u0012\u0011\bL\u0012\u0006\u0010\u00ac\u00ff\u0097\u00a8\u0006\"\u000542316\u0012\u0011\bM\u0012\u0006\u0010\u00ef\u00ff\u0097\u00a8\u0006\"\u000542317\u0012\u0011\bN\u0012\u0006\u0010\u00d4\u0080\u0098\u00a8\u0006\"\u000542319\u0012\u0011\bO\u0012\u0006\u0010\u00bb\u0081\u0098\u00a8\u0006\"\u000542320\u0012\u0011\bP\u0012\u0006\u0010\u00fe\u0081\u0098\u00a8\u0006\"\u000538514\u0012\u0011\bQ\u0012\u0006\u0010\u00cd\u0082\u0098\u00a8\u0006\"\u000534586\u0012\u0011\bR\u0012\u0006\u0010\u00f8\u0082\u0098\u00a8\u0006\"\u000534587\u0012\u0011\bS\u0012\u0006\u0010\u009d\u0083\u0098\u00a8\u0006\"\u000534588\u0012\u0011\bT\u0012\u0006\u0010\u00e4\u0083\u0098\u00a8\u0006\"\u000539497\u0012\u0011\bU\u0012\u0006\u0010\u0097\u0084\u0098\u00a8\u0006\"\u000549407\u0012\u0011\bV\u0012\u0006\u0010\u00f0\u0084\u0098\u00a8\u0006\"\u000550034\u0012\u0011\bW\u0012\u0006\u0010\u00af\u0085\u0098\u00a8\u0006\"\u000540903\u0012\u0011\bX\u0012\u0006\u0010\u00e5\u0085\u0098\u00a8\u0006\"\u000540904\u0012\u0011\bY\u0012\u0006\u0010\u00ae\u0086\u0098\u00a8\u0006\"\u000535814\u0012\u0011\bZ\u0012\u0006\u0010\u00ad\u0087\u0098\u00a8\u0006\"\u000535815\u0012\u0011\b[\u0012\u0006\u0010\u00da\u0087\u0098\u00a8\u0006\"\u000535816\u0012\u0011\b\\\u0012\u0006\u0010\u00f0\u0087\u0098\u00a8\u0006\"\u000535817\u0012\u0011\b]\u0012\u0006\u0010\u00ad\u0088\u0098\u00a8\u0006\"\u000535818\u0012\u0011\b^\u0012\u0006\u0010\u00f2\u0088\u0098\u00a8\u0006\"\u000535819\u0012\u0011\b_\u0012\u0006\u0010\u00da\u008b\u0098\u00a8\u0006\"\u000535822\u0012\u0011\b`\u0012\u0006\u0010\u00fa\u008c\u0098\u00a8\u0006\"\u000538833\u0012\u0011\ba\u0012\u0006\u0010\u00b3\u008d\u0098\u00a8\u0006\"\u000540924\u0012\u0011\bb\u0012\u0006\u0010\u0086\u0091\u0098\u00a8\u0006\"\u000538812\u0012\u0011\bc\u0012\u0006\u0010\u00db\u0091\u0098\u00a8\u0006\"\u000538813\u0012\u0011\bd\u0012\u0006\u0010\u00ed\u0092\u0098\u00a8\u0006\"\u000538814\u0012\u0011\be\u0012\u0006\u0010\u00e2\u0093\u0098\u00a8\u0006\"\u000538815\u0012\u0011\bf\u0012\u0006\u0010\u0083\u0094\u0098\u00a8\u0006\"\u000538816\u0012\u0011\bg\u0012\u0006\u0010\u00f9\u0095\u0098\u00a8\u0006\"\u000540565\u0012\u0011\bh\u0012\u0006\u0010\u009c\u0097\u0098\u00a8\u0006\"\u000540566\u0012\u0011\bi\u0012\u0006\u0010\u00d5\u0097\u0098\u00a8\u0006\"\u000540567\u001a\b\u001a\u0006FYBB54 \u00ae\u00e8\u0097\u00a8\u0006\"`\n/\n\u001017672-701ff27f-2\u0012\b15:06:00\u001a\b20230916 \u0000*\u00035680\u0000\u0012\u001d\r?\u00ce\u0013\u00c2\u0015'\u0007\u0092\u00c2\u001d\u0000\u0000\u00acC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008e\u00e3PA(\u00ae\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FYBB54" + }, + { + "type": "con_recorrido", + "entity": "\n$91ecfba2-c800-48a5-8cc7-f2b0934a21aa\u001a\u009c\u0004\n/\n\u001017745-701ff27f-2\u0012\b14:18:00\u001a\b20230916 \u0000*\u00035680\u0001\u0012\u0011\bN\u0012\u0006\u0010\u00f6\u00e8\u0097\u00a8\u0006\"\u000549218\u0012\u0011\bO\u0012\u0006\u0010\u008d\u00e9\u0097\u00a8\u0006\"\u000549219\u0012\u0011\bP\u0012\u0006\u0010\u00be\u00e9\u0097\u00a8\u0006\"\u000538044\u0012\u0011\bQ\u0012\u0006\u0010\u00e7\u00e9\u0097\u00a8\u0006\"\u000538045\u0012\u0011\bR\u0012\u0006\u0010\u00bd\u00ea\u0097\u00a8\u0006\"\u000534824\u0012\u0011\bS\u0012\u0006\u0010\u00a9\u00eb\u0097\u00a8\u0006\"\u000538091\u0012\u0011\bT\u0012\u0006\u0010\u00d2\u00eb\u0097\u00a8\u0006\"\u000538092\u0012\u0011\bU\u0012\u0006\u0010\u00ef\u00eb\u0097\u00a8\u0006\"\u000538093\u0012\u0011\bV\u0012\u0006\u0010\u009a\u00ec\u0097\u00a8\u0006\"\u000538094\u0012\u0011\bW\u0012\u0006\u0010\u00a8\u00ec\u0097\u00a8\u0006\"\u000549243\u0012\u0011\bX\u0012\u0006\u0010\u00cf\u00ec\u0097\u00a8\u0006\"\u000549245\u0012\u0011\bY\u0012\u0006\u0010\u00f9\u00ec\u0097\u00a8\u0006\"\u000540338\u0012\u0011\bZ\u0012\u0006\u0010\u0085\u00ed\u0097\u00a8\u0006\"\u000540339\u0012\u0011\b[\u0012\u0006\u0010\u0091\u00ed\u0097\u00a8\u0006\"\u000540340\u0012\u0011\b\\\u0012\u0006\u0010\u0099\u00ed\u0097\u00a8\u0006\"\u000540341\u0012\u0011\b]\u0012\u0006\u0010\u00c8\u00ed\u0097\u00a8\u0006\"\u000540342\u0012\u0011\b^\u0012\u0006\u0010\u0094\u00ef\u0097\u00a8\u0006\"\u000549226\u0012\u0011\b_\u0012\u0006\u0010\u00af\u00ef\u0097\u00a8\u0006\"\u000549227\u0012\u0011\b`\u0012\u0006\u0010\u00cb\u00ef\u0097\u00a8\u0006\"\u000549229\u0012\u0011\ba\u0012\u0006\u0010\u00db\u00ef\u0097\u00a8\u0006\"\u000549228\u0012\u0011\bb\u0012\u0006\u0010\u00fc\u00ef\u0097\u00a8\u0006\"\u000549230\u0012\u0011\bc\u0012\u0006\u0010\u0094\u00f0\u0097\u00a8\u0006\"\u000549231\u0012\u0011\bd\u0012\u0006\u0010\u00a0\u00f0\u0097\u00a8\u0006\"\u000549233\u0012\u0011\be\u0012\u0006\u0010\u00be\u00f0\u0097\u00a8\u0006\"\u000549234\u0012\u0011\bf\u0012\u0006\u0010\u00da\u00f0\u0097\u00a8\u0006\"\u000549235\u001a\b\u001a\u0006LZZG48 \u00cb\u00e8\u0097\u00a8\u0006\"`\n/\n\u001017745-701ff27f-2\u0012\b14:18:00\u001a\b20230916 \u0000*\u00035680\u0001\u0012\u001d\r\u00e2\u00e8\u0013\u00c2\u0015\u00da\u00e0\u0091\u00c2\u001d\u0000\u0000\u00a0@!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UU\u0005A(\u00cb\u00e8\u0097\u00a8\u0006B\b\u001a\u0006LZZG48" + }, + { + "type": "con_recorrido", + "entity": "\n$1dbdd3e5-e542-4299-afdc-9ebd70d6d322\u001a\u00dc\r\n/\n\u001017749-701ff27f-2\u0012\b15:18:00\u001a\b20230916 \u0000*\u00035680\u0001\u0012\u0011\b\u000e\u0012\u0006\u0010\u00ce\u00e8\u0097\u00a8\u0006\"\u000535202\u0012\u0011\b\u000f\u0012\u0006\u0010\u00bf\u00e9\u0097\u00a8\u0006\"\u000590001\u0012\u0011\b\u0010\u0012\u0006\u0010\u009b\u00ea\u0097\u00a8\u0006\"\u000539599\u0012\u0011\b\u0011\u0012\u0006\u0010\u00b2\u00ea\u0097\u00a8\u0006\"\u000539600\u0012\u0011\b\u0012\u0012\u0006\u0010\u00f7\u00ea\u0097\u00a8\u0006\"\u000537496\u0012\u0011\b\u0013\u0012\u0006\u0010\u00a9\u00eb\u0097\u00a8\u0006\"\u000545064\u0012\u0011\b\u0014\u0012\u0006\u0010\u00f4\u00eb\u0097\u00a8\u0006\"\u000537506\u0012\u0011\b\u0015\u0012\u0006\u0010\u009c\u00ec\u0097\u00a8\u0006\"\u000545068\u0012\u0011\b\u0016\u0012\u0006\u0010\u0090\u00ed\u0097\u00a8\u0006\"\u000537480\u0012\u0011\b\u0017\u0012\u0006\u0010\u00cc\u00ed\u0097\u00a8\u0006\"\u000537477\u0012\u0011\b\u0018\u0012\u0006\u0010\u0093\u00ee\u0097\u00a8\u0006\"\u000540848\u0012\u0011\b\u0019\u0012\u0006\u0010\u00ea\u00ee\u0097\u00a8\u0006\"\u00052-Apr\u0012\u0011\b\u001a\u0012\u0006\u0010\u00a2\u00ef\u0097\u00a8\u0006\"\u000539728\u0012\u0011\b\u001b\u0012\u0006\u0010\u0081\u00f0\u0097\u00a8\u0006\"\u000539729\u0012\u0011\b\u001c\u0012\u0006\u0010\u0099\u00f0\u0097\u00a8\u0006\"\u000539730\u0012\u0011\b\u001d\u0012\u0006\u0010\u00fd\u00f0\u0097\u00a8\u0006\"\u000542200\u0012\u0011\b\u001e\u0012\u0006\u0010\u00a9\u00f1\u0097\u00a8\u0006\"\u000542203\u0012\u0011\b\u001f\u0012\u0006\u0010\u00de\u00f1\u0097\u00a8\u0006\"\u000542204\u0012\u0011\b \u0012\u0006\u0010\u00fd\u00f1\u0097\u00a8\u0006\"\u000542205\u0012\u0011\b!\u0012\u0006\u0010\u00bb\u00f4\u0097\u00a8\u0006\"\u000542206\u0012\u0011\b\"\u0012\u0006\u0010\u00f2\u00f4\u0097\u00a8\u0006\"\u000542207\u0012\u0011\b#\u0012\u0006\u0010\u00ae\u00f5\u0097\u00a8\u0006\"\u000542208\u0012\u0011\b$\u0012\u0006\u0010\u00ad\u00f6\u0097\u00a8\u0006\"\u000542564\u0012\u0011\b%\u0012\u0006\u0010\u009a\u00f7\u0097\u00a8\u0006\"\u000542214\u0012\u0011\b&\u0012\u0006\u0010\u008a\u00f8\u0097\u00a8\u0006\"\u000542209\u0012\u0011\b'\u0012\u0006\u0010\u0089\u00f9\u0097\u00a8\u0006\"\u000542210\u0012\u0011\b(\u0012\u0006\u0010\u00cc\u00fa\u0097\u00a8\u0006\"\u000540951\u0012\u0011\b)\u0012\u0006\u0010\u0092\u00fb\u0097\u00a8\u0006\"\u000540952\u0012\u0011\b*\u0012\u0006\u0010\u00d6\u00fb\u0097\u00a8\u0006\"\u000540953\u0012\u0011\b+\u0012\u0006\u0010\u008a\u00fc\u0097\u00a8\u0006\"\u000540954\u0012\u0011\b,\u0012\u0006\u0010\u00df\u00fc\u0097\u00a8\u0006\"\u000540955\u0012\u0011\b-\u0012\u0006\u0010\u008d\u00fd\u0097\u00a8\u0006\"\u000540956\u0012\u0011\b.\u0012\u0006\u0010\u00d1\u00fd\u0097\u00a8\u0006\"\u000540957\u0012\u0011\b/\u0012\u0006\u0010\u0095\u00fe\u0097\u00a8\u0006\"\u000540958\u0012\u0011\b0\u0012\u0006\u0010\u00b7\u00fe\u0097\u00a8\u0006\"\u000540959\u0012\u0011\b1\u0012\u0006\u0010\u0091\u00ff\u0097\u00a8\u0006\"\u000542223\u0012\u0011\b2\u0012\u0006\u0010\u00b6\u00ff\u0097\u00a8\u0006\"\u000542224\u0012\u0011\b3\u0012\u0006\u0010\u009a\u0080\u0098\u00a8\u0006\"\u000542225\u0012\u0011\b4\u0012\u0006\u0010\u00f0\u0080\u0098\u00a8\u0006\"\u000542226\u0012\u0011\b5\u0012\u0006\u0010\u00b9\u0081\u0098\u00a8\u0006\"\u000542227\u0012\u0011\b6\u0012\u0006\u0010\u00af\u0082\u0098\u00a8\u0006\"\u000542228\u0012\u0011\b7\u0012\u0006\u0010\u00eb\u0082\u0098\u00a8\u0006\"\u000542229\u0012\u0011\b8\u0012\u0006\u0010\u00e1\u0083\u0098\u00a8\u0006\"\u000542230\u0012\u0011\b9\u0012\u0006\u0010\u00a0\u0084\u0098\u00a8\u0006\"\u000542231\u0012\u0011\b:\u0012\u0006\u0010\u009c\u0085\u0098\u00a8\u0006\"\u000542232\u0012\u0011\b;\u0012\u0006\u0010\u00ec\u0086\u0098\u00a8\u0006\"\u000542234\u0012\u0011\b<\u0012\u0006\u0010\u00e3\u0087\u0098\u00a8\u0006\"\u000542235\u0012\u0011\b=\u0012\u0006\u0010\u0098\u0088\u0098\u00a8\u0006\"\u000542211\u0012\u0011\b>\u0012\u0006\u0010\u00f6\u0088\u0098\u00a8\u0006\"\u000549203\u0012\u0011\b?\u0012\u0006\u0010\u00d8\u0089\u0098\u00a8\u0006\"\u000549204\u0012\u0011\b@\u0012\u0006\u0010\u0081\u008a\u0098\u00a8\u0006\"\u000534564\u0012\u0011\bA\u0012\u0006\u0010\u00bb\u008f\u0098\u00a8\u0006\"\u000534789\u0012\u0011\bB\u0012\u0006\u0010\u00ec\u008f\u0098\u00a8\u0006\"\u000549163\u0012\u0011\bC\u0012\u0006\u0010\u00fb\u00a0\u0098\u00a8\u0006\"\u000549208\u0012\u0011\bD\u0012\u0006\u0010\u00dd\u00a1\u0098\u00a8\u0006\"\u000549209\u0012\u0011\bE\u0012\u0006\u0010\u009a\u00a2\u0098\u00a8\u0006\"\u000549210\u0012\u0011\bF\u0012\u0006\u0010\u00ac\u00a8\u0098\u00a8\u0006\"\u000549211\u0012\u0011\bG\u0012\u0006\u0010\u00af\u00a9\u0098\u00a8\u0006\"\u000549212\u0012\u0011\bH\u0012\u0006\u0010\u00bf\u00ab\u0098\u00a8\u0006\"\u000549213\u0012\u0011\bI\u0012\u0006\u0010\u0091\u00b3\u0098\u00a8\u0006\"\u000549206\u0012\u0011\bJ\u0012\u0006\u0010\u008f\u00b7\u0098\u00a8\u0006\"\u000549215\u0012\u0011\bK\u0012\u0006\u0010\u00c4\u00b7\u0098\u00a8\u0006\"\u000549216\u0012\u0011\bL\u0012\u0006\u0010\u00d7\u00b8\u0098\u00a8\u0006\"\u000549217\u0012\u0011\bM\u0012\u0006\u0010\u00fe\u00b9\u0098\u00a8\u0006\"\u000549214\u0012\u0011\bN\u0012\u0006\u0010\u00da\u00bc\u0098\u00a8\u0006\"\u000549218\u0012\u0011\bO\u0012\u0006\u0010\u00f8\u00bd\u0098\u00a8\u0006\"\u000549219\u0012\u0011\bP\u0012\u0006\u0010\u00e7\u00c0\u0098\u00a8\u0006\"\u000538044\u0012\u0011\bQ\u0012\u0006\u0010\u00aa\u00c3\u0098\u00a8\u0006\"\u000538045\u0012\u0011\bR\u0012\u0006\u0010\u0086\u00c9\u0098\u00a8\u0006\"\u000534824\u0012\u0011\bS\u0012\u0006\u0010\u00b9\u00d1\u0098\u00a8\u0006\"\u000538091\u0012\u0011\bT\u0012\u0006\u0010\u0086\u00d5\u0098\u00a8\u0006\"\u000538092\u0012\u0011\bU\u0012\u0006\u0010\u00da\u00d7\u0098\u00a8\u0006\"\u000538093\u0012\u0011\bV\u0012\u0006\u0010\u00f4\u00db\u0098\u00a8\u0006\"\u000538094\u0012\u0011\bW\u0012\u0006\u0010\u00ae\u00dd\u0098\u00a8\u0006\"\u000549243\u0012\u0011\bX\u0012\u0006\u0010\u00c6\u00e1\u0098\u00a8\u0006\"\u000549245\u0012\u0011\bY\u0012\u0006\u0010\u00b0\u00e6\u0098\u00a8\u0006\"\u000540338\u0012\u0011\bZ\u0012\u0006\u0010\u00ed\u00e7\u0098\u00a8\u0006\"\u000540339\u0012\u0011\b[\u0012\u0006\u0010\u00af\u00e9\u0098\u00a8\u0006\"\u000540340\u0012\u0011\b\\\u0012\u0006\u0010\u00b5\u00ea\u0098\u00a8\u0006\"\u000540341\u0012\u0011\b]\u0012\u0006\u0010\u00d3\u00f0\u0098\u00a8\u0006\"\u000540342\u0012\u0011\b^\u0012\u0006\u0010\u00b3\u0094\u0099\u00a8\u0006\"\u000549226\u0012\u0011\b_\u0012\u0006\u0010\u00bc\u009a\u0099\u00a8\u0006\"\u000549227\u0012\u0011\b`\u0012\u0006\u0010\u00bc\u00a1\u0099\u00a8\u0006\"\u000549229\u0012\u0011\ba\u0012\u0006\u0010\u00bd\u00a5\u0099\u00a8\u0006\"\u000549228\u0012\u0011\bb\u0012\u0006\u0010\u00da\u00ae\u0099\u00a8\u0006\"\u000549230\u0012\u0011\bc\u0012\u0006\u0010\u00d8\u00b5\u0099\u00a8\u0006\"\u000549231\u0012\u0011\bd\u0012\u0006\u0010\u00bc\u00b9\u0099\u00a8\u0006\"\u000549233\u0012\u0011\be\u0012\u0006\u0010\u00b5\u00c3\u0099\u00a8\u0006\"\u000549234\u0012\u0011\bf\u0012\u0006\u0010\u00df\u00cd\u0099\u00a8\u0006\"\u000549235\u001a\b\u001a\u0006YJ3034 \u00ce\u00e8\u0097\u00a8\u0006\"`\n/\n\u001017749-701ff27f-2\u0012\b15:18:00\u001a\b20230916 \u0000*\u00035680\u0001\u0012\u001d\r\u00fcB\u0013\u00c2\u0015\u009a\u000e\u0092\u00c2\u001d\u0000\u0080\u0090C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u001c\u00c7\tA(\u00ce\u00e8\u0097\u00a8\u0006B\b\u001a\u0006YJ3034" + }, + { + "type": "con_recorrido", + "entity": "\n$97302e58-9e3c-47f5-940d-81a4d494bcc3\u001a\u00dc\u0004\n/\n\u001017871-701ff27f-2\u0012\b14:59:00\u001a\b20230916 \u0000*\u00035720\u0000\u0012\u0014\b,\u0012\u0006\u0010\u00d6\u00e8\u0097\u00a8\u0006\"\b16005209\u0012\u0011\b-\u0012\u0006\u0010\u00ce\u00ea\u0097\u00a8\u0006\"\u000538531\u0012\u0013\b.\u0012\u0006\u0010\u0086\u00eb\u0097\u00a8\u0006\"\u00078921285\u0012\u0011\b/\u0012\u0006\u0010\u00f7\u00eb\u0097\u00a8\u0006\"\u000538532\u0012\u0011\b0\u0012\u0006\u0010\u00ab\u00ec\u0097\u00a8\u0006\"\u000538533\u0012\u0011\b1\u0012\u0006\u0010\u00e2\u00ec\u0097\u00a8\u0006\"\u000538534\u0012\u0011\b2\u0012\u0006\u0010\u0092\u00ed\u0097\u00a8\u0006\"\u000538535\u0012\u0011\b3\u0012\u0006\u0010\u00ce\u00ed\u0097\u00a8\u0006\"\u000538536\u0012\u0013\b4\u0012\u0006\u0010\u00f1\u00ed\u0097\u00a8\u0006\"\u00074838437\u0012\u0011\b5\u0012\u0006\u0010\u00a9\u00ee\u0097\u00a8\u0006\"\u000545085\u0012\u0011\b6\u0012\u0006\u0010\u00f6\u00ee\u0097\u00a8\u0006\"\u000545086\u0012\u0011\b7\u0012\u0006\u0010\u00aa\u00ef\u0097\u00a8\u0006\"\u000538539\u0012\u0011\b8\u0012\u0006\u0010\u00ea\u00ef\u0097\u00a8\u0006\"\u000538540\u0012\u0011\b9\u0012\u0006\u0010\u00b6\u00f0\u0097\u00a8\u0006\"\u000538544\u0012\u0011\b:\u0012\u0006\u0010\u00f8\u00f0\u0097\u00a8\u0006\"\u000538545\u0012\u0011\b;\u0012\u0006\u0010\u00d1\u00f1\u0097\u00a8\u0006\"\u000538546\u0012\u0011\b<\u0012\u0006\u0010\u00c6\u00f2\u0097\u00a8\u0006\"\u000538548\u0012\u0011\b=\u0012\u0006\u0010\u0087\u00f3\u0097\u00a8\u0006\"\u000538549\u0012\u0011\b>\u0012\u0006\u0010\u00bd\u00f3\u0097\u00a8\u0006\"\u000538550\u0012\u0011\b?\u0012\u0006\u0010\u009c\u00f4\u0097\u00a8\u0006\"\u000538551\u0012\u0011\b@\u0012\u0006\u0010\u00f0\u00f4\u0097\u00a8\u0006\"\u000538552\u0012\u0011\bA\u0012\u0006\u0010\u00c3\u00f5\u0097\u00a8\u0006\"\u000549359\u0012\u0011\bB\u0012\u0006\u0010\u00f5\u00f5\u0097\u00a8\u0006\"\u000549360\u0012\u0011\bC\u0012\u0006\u0010\u00e6\u00f6\u0097\u00a8\u0006\"\u000549361\u0012\u0011\bD\u0012\u0006\u0010\u0082\u00f7\u0097\u00a8\u0006\"\u000549362\u0012\u0011\bE\u0012\u0006\u0010\u00b4\u00f7\u0097\u00a8\u0006\"\u000549363\u0012\u0011\bF\u0012\u0006\u0010\u00e6\u00f7\u0097\u00a8\u0006\"\u000549364\u0012\u0011\bG\u0012\u0006\u0010\u0095\u00f8\u0097\u00a8\u0006\"\u000549365\u001a\b\u001a\u0006BHFL38 \u00cc\u00e8\u0097\u00a8\u0006\"`\n/\n\u001017871-701ff27f-2\u0012\b14:59:00\u001a\b20230916 \u0000*\u00035720\u0000\u0012\u001d\r\u0081*\u0013\u00c2\u0015\u00e2#\u0092\u00c2\u001d\u0000\u0000\u00a4C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00cc\u00e8\u0097\u00a8\u0006B\b\u001a\u0006BHFL38" + }, + { + "type": "con_recorrido", + "entity": "\n$8c9d4199-7831-4c18-b636-c9bcb0c180bc\u001a\u0085\t\n/\n\u001017872-701ff27f-2\u0012\b15:19:00\u001a\b20230916 \u0000*\u00035720\u0000\u0012\u0011\b\u000f\u0012\u0006\u0010\u008d\u00e9\u0097\u00a8\u0006\"\u000535787\u0012\u0011\b\u0010\u0012\u0006\u0010\u00d0\u00e9\u0097\u00a8\u0006\"\u000535788\u0012\u0011\b\u0011\u0012\u0006\u0010\u00b7\u00ea\u0097\u00a8\u0006\"\u000535789\u0012\u0011\b\u0012\u0012\u0006\u0010\u00e4\u00ea\u0097\u00a8\u0006\"\u000535790\u0012\u0011\b\u0013\u0012\u0006\u0010\u00b7\u00eb\u0097\u00a8\u0006\"\u000535791\u0012\u0011\b\u0014\u0012\u0006\u0010\u00e6\u00eb\u0097\u00a8\u0006\"\u000535792\u0012\u0011\b\u0015\u0012\u0006\u0010\u009f\u00ec\u0097\u00a8\u0006\"\u000535793\u0012\u0011\b\u0016\u0012\u0006\u0010\u0092\u00ed\u0097\u00a8\u0006\"\u000591116\u0012\u0011\b\u0017\u0012\u0006\u0010\u00e2\u00f0\u0097\u00a8\u0006\"\u000539545\u0012\u0011\b\u0018\u0012\u0006\u0010\u0086\u00f2\u0097\u00a8\u0006\"\u000539546\u0012\u0011\b\u0019\u0012\u0006\u0010\u008c\u00f3\u0097\u00a8\u0006\"\u000535286\u0012\u0011\b\u001a\u0012\u0006\u0010\u00a7\u00f3\u0097\u00a8\u0006\"\u000535287\u0012\u0011\b\u001b\u0012\u0006\u0010\u00eb\u00f3\u0097\u00a8\u0006\"\u000542317\u0012\u0011\b\u001c\u0012\u0006\u0010\u009f\u00f4\u0097\u00a8\u0006\"\u000542318\u0012\u0013\b\u001d\u0012\u0006\u0010\u00e7\u00f4\u0097\u00a8\u0006\"\u00078606396\u0012\u0011\b\u001e\u0012\u0006\u0010\u00af\u00f5\u0097\u00a8\u0006\"\u000538514\u0012\u0011\b\u001f\u0012\u0006\u0010\u00d7\u00f5\u0097\u00a8\u0006\"\u000538516\u0012\u0011\b \u0012\u0006\u0010\u0093\u00f6\u0097\u00a8\u0006\"\u000538518\u0012\u0011\b!\u0012\u0006\u0010\u00fb\u00f6\u0097\u00a8\u0006\"\u000538520\u0012\u0011\b\"\u0012\u0006\u0010\u00a5\u00f7\u0097\u00a8\u0006\"\u000538521\u0012\u0011\b#\u0012\u0006\u0010\u00d8\u00f7\u0097\u00a8\u0006\"\u000538522\u0012\u0011\b$\u0012\u0006\u0010\u008d\u00f8\u0097\u00a8\u0006\"\u000538523\u0012\u0011\b%\u0012\u0006\u0010\u00c6\u00f8\u0097\u00a8\u0006\"\u000538524\u0012\u0011\b&\u0012\u0006\u0010\u00fa\u00f8\u0097\u00a8\u0006\"\u000538525\u0012\u0011\b'\u0012\u0006\u0010\u00b3\u00f9\u0097\u00a8\u0006\"\u000538526\u0012\u0011\b(\u0012\u0006\u0010\u00e8\u00f9\u0097\u00a8\u0006\"\u000538527\u0012\u0011\b)\u0012\u0006\u0010\u00ca\u00fa\u0097\u00a8\u0006\"\u000538528\u0012\u0011\b*\u0012\u0006\u0010\u00d3\u00fb\u0097\u00a8\u0006\"\u000538529\u0012\u0011\b+\u0012\u0006\u0010\u00c9\u00fd\u0097\u00a8\u0006\"\u000538530\u0012\u0014\b,\u0012\u0006\u0010\u00d9\u00fd\u0097\u00a8\u0006\"\b16005209\u0012\u0011\b-\u0012\u0006\u0010\u0087\u0080\u0098\u00a8\u0006\"\u000538531\u0012\u0013\b.\u0012\u0006\u0010\u00d1\u0080\u0098\u00a8\u0006\"\u00078921285\u0012\u0011\b/\u0012\u0006\u0010\u00ea\u0081\u0098\u00a8\u0006\"\u000538532\u0012\u0011\b0\u0012\u0006\u0010\u00b4\u0082\u0098\u00a8\u0006\"\u000538533\u0012\u0011\b1\u0012\u0006\u0010\u0085\u0083\u0098\u00a8\u0006\"\u000538534\u0012\u0011\b2\u0012\u0006\u0010\u00cd\u0083\u0098\u00a8\u0006\"\u000538535\u0012\u0011\b3\u0012\u0006\u0010\u00a8\u0084\u0098\u00a8\u0006\"\u000538536\u0012\u0013\b4\u0012\u0006\u0010\u00df\u0084\u0098\u00a8\u0006\"\u00074838437\u0012\u0011\b5\u0012\u0006\u0010\u00ba\u0085\u0098\u00a8\u0006\"\u000545085\u0012\u0011\b6\u0012\u0006\u0010\u00b9\u0086\u0098\u00a8\u0006\"\u000545086\u0012\u0011\b7\u0012\u0006\u0010\u0094\u0087\u0098\u00a8\u0006\"\u000538539\u0012\u0011\b8\u0012\u0006\u0010\u0084\u0088\u0098\u00a8\u0006\"\u000538540\u0012\u0011\b9\u0012\u0006\u0010\u008f\u0089\u0098\u00a8\u0006\"\u000538544\u0012\u0011\b:\u0012\u0006\u0010\u008d\u008a\u0098\u00a8\u0006\"\u000538545\u0012\u0011\b;\u0012\u0006\u0010\u00bc\u008b\u0098\u00a8\u0006\"\u000538546\u0012\u0011\b<\u0012\u0006\u0010\u00b0\u008d\u0098\u00a8\u0006\"\u000538548\u0012\u0011\b=\u0012\u0006\u0010\u00bd\u008e\u0098\u00a8\u0006\"\u000538549\u0012\u0011\b>\u0012\u0006\u0010\u00b7\u008f\u0098\u00a8\u0006\"\u000538550\u0012\u0011\b?\u0012\u0006\u0010\u0094\u0091\u0098\u00a8\u0006\"\u000538551\u0012\u0011\b@\u0012\u0006\u0010\u00e2\u0092\u0098\u00a8\u0006\"\u000538552\u0012\u0011\bA\u0012\u0006\u0010\u00b4\u0094\u0098\u00a8\u0006\"\u000549359\u0012\u0011\bB\u0012\u0006\u0010\u00b9\u0095\u0098\u00a8\u0006\"\u000549360\u0012\u0011\bC\u0012\u0006\u0010\u00f2\u0097\u0098\u00a8\u0006\"\u000549361\u0012\u0011\bD\u0012\u0006\u0010\u00c2\u0098\u0098\u00a8\u0006\"\u000549362\u0012\u0011\bE\u0012\u0006\u0010\u00d5\u0099\u0098\u00a8\u0006\"\u000549363\u0012\u0011\bF\u0012\u0006\u0010\u00ea\u009a\u0098\u00a8\u0006\"\u000549364\u0012\u0011\bG\u0012\u0006\u0010\u00fc\u009b\u0098\u00a8\u0006\"\u000549365\u001a\b\u001a\u0006FYBB65 \u00c4\u00e8\u0097\u00a8\u0006\"`\n/\n\u001017872-701ff27f-2\u0012\b15:19:00\u001a\b20230916 \u0000*\u00035720\u0000\u0012\u001d\r\u00d3Y\u0013\u00c2\u0015(<\u0092\u00c2\u001d\u0000\u0000\u00acB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u001c\u00c7\u00b1?(\u00c4\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FYBB65" + }, + { + "type": "con_recorrido", + "entity": "\n$bda0be92-0f91-41a8-8ac4-e15e0e2bd0a4\u001a\u0089\u0004\n/\n\u001017814-701ff27f-2\u0012\b15:02:00\u001a\b20230916 \u0000*\u00035720\u0001\u0012\u0011\b3\u0012\u0006\u0010\u008a\u00e9\u0097\u00a8\u0006\"\u000535417\u0012\u0011\b4\u0012\u0006\u0010\u00d6\u00e9\u0097\u00a8\u0006\"\u000535755\u0012\u0011\b5\u0012\u0006\u0010\u00b6\u00eb\u0097\u00a8\u0006\"\u000535756\u0012\u0011\b6\u0012\u0006\u0010\u00ab\u00ec\u0097\u00a8\u0006\"\u000535757\u0012\u0011\b7\u0012\u0006\u0010\u00d8\u00ec\u0097\u00a8\u0006\"\u000535758\u0012\u0011\b8\u0012\u0006\u0010\u00cb\u00ed\u0097\u00a8\u0006\"\u000535508\u0012\u0011\b9\u0012\u0006\u0010\u00f1\u00ed\u0097\u00a8\u0006\"\u000535514\u0012\u0011\b:\u0012\u0006\u0010\u00a1\u00ee\u0097\u00a8\u0006\"\u000535515\u0012\u0011\b;\u0012\u0006\u0010\u00d4\u00ee\u0097\u00a8\u0006\"\u000535516\u0012\u0011\b<\u0012\u0006\u0010\u00f5\u00ee\u0097\u00a8\u0006\"\u000535517\u0012\u0011\b=\u0012\u0006\u0010\u0090\u00ef\u0097\u00a8\u0006\"\u000535518\u0012\u0011\b>\u0012\u0006\u0010\u0096\u00ef\u0097\u00a8\u0006\"\u000535764\u0012\u0011\b?\u0012\u0006\u0010\u00c0\u00ef\u0097\u00a8\u0006\"\u000535763\u0012\u0011\b@\u0012\u0006\u0010\u00eb\u00ef\u0097\u00a8\u0006\"\u000535762\u0012\u0011\bA\u0012\u0006\u0010\u00fd\u00ef\u0097\u00a8\u0006\"\u000535761\u0012\u0011\bB\u0012\u0006\u0010\u00a3\u00f0\u0097\u00a8\u0006\"\u000535760\u0012\u0011\bC\u0012\u0006\u0010\u00cf\u00f0\u0097\u00a8\u0006\"\u000535759\u0012\u0011\bD\u0012\u0006\u0010\u00f3\u00f0\u0097\u00a8\u0006\"\u000534960\u0012\u0011\bE\u0012\u0006\u0010\u008e\u00f1\u0097\u00a8\u0006\"\u000534961\u0012\u0011\bF\u0012\u0006\u0010\u00df\u00f1\u0097\u00a8\u0006\"\u000534962\u0012\u0011\bG\u0012\u0006\u0010\u009c\u00f2\u0097\u00a8\u0006\"\u000534963\u0012\u0011\bH\u0012\u0006\u0010\u00c6\u00f2\u0097\u00a8\u0006\"\u000534964\u0012\u0011\bI\u0012\u0006\u0010\u00fa\u00f2\u0097\u00a8\u0006\"\u000534965\u0012\u0011\bJ\u0012\u0006\u0010\u00bc\u00f3\u0097\u00a8\u0006\"\u000534966\u001a\b\u001a\u0006LBDS34 \u00c7\u00e8\u0097\u00a8\u0006\"`\n/\n\u001017814-701ff27f-2\u0012\b15:02:00\u001a\b20230916 \u0000*\u00035720\u0001\u0012\u001d\r\u0000Z\u0013\u00c2\u0015\u001f9\u0092\u00c2\u001d\u0000\u0080\u0088C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UU\u00adA(\u00c7\u00e8\u0097\u00a8\u0006B\b\u001a\u0006LBDS34" + }, + { + "type": "con_recorrido", + "entity": "\n$01bc6f06-afc9-4487-a507-d572f7265155\u001a\u00c1\u0007\n/\n\u001017815-701ff27f-2\u0012\b15:22:00\u001a\b20230916 \u0000*\u00035720\u0001\u0012\u0011\b\u001c\u0012\u0006\u0010\u00f2\u00ea\u0097\u00a8\u0006\"\u000540995\u0012\u0011\b\u001d\u0012\u0006\u0010\u00c4\u00eb\u0097\u00a8\u0006\"\u000540996\u0012\u0011\b\u001e\u0012\u0006\u0010\u0092\u00ec\u0097\u00a8\u0006\"\u000540997\u0012\u0011\b\u001f\u0012\u0006\u0010\u00c8\u00ec\u0097\u00a8\u0006\"\u000539614\u0012\u0011\b \u0012\u0006\u0010\u00fa\u00ec\u0097\u00a8\u0006\"\u000539615\u0012\u0011\b!\u0012\u0006\u0010\u00ac\u00ed\u0097\u00a8\u0006\"\u000539616\u0012\u0011\b\"\u0012\u0006\u0010\u00e0\u00ed\u0097\u00a8\u0006\"\u000539617\u0012\u0011\b#\u0012\u0006\u0010\u0098\u00ee\u0097\u00a8\u0006\"\u000539618\u0012\u0011\b$\u0012\u0006\u0010\u00c6\u00ee\u0097\u00a8\u0006\"\u000539619\u0012\u0011\b%\u0012\u0006\u0010\u00f6\u00ee\u0097\u00a8\u0006\"\u000539620\u0012\u0011\b&\u0012\u0006\u0010\u00a0\u00ef\u0097\u00a8\u0006\"\u00051-Jul\u0012\u0011\b'\u0012\u0006\u0010\u00c0\u00ef\u0097\u00a8\u0006\"\u00051-Aug\u0012\u0011\b(\u0012\u0006\u0010\u00ee\u00ef\u0097\u00a8\u0006\"\u00051-Sep\u0012\u0011\b)\u0012\u0006\u0010\u00a1\u00f0\u0097\u00a8\u0006\"\u00051-Oct\u0012\u0011\b*\u0012\u0006\u0010\u00d2\u00f0\u0097\u00a8\u0006\"\u00051-Nov\u0012\u0011\b+\u0012\u0006\u0010\u0087\u00f1\u0097\u00a8\u0006\"\u000535745\u0012\u0014\b,\u0012\u0006\u0010\u00a0\u00f1\u0097\u00a8\u0006\"\b15879953\u0012\u0011\b-\u0012\u0006\u0010\u00b5\u00f1\u0097\u00a8\u0006\"\u000535746\u0012\u0011\b.\u0012\u0006\u0010\u00f5\u00f5\u0097\u00a8\u0006\"\u000535748\u0012\u0011\b/\u0012\u0006\u0010\u00b0\u00f6\u0097\u00a8\u0006\"\u000535749\u0012\u0011\b0\u0012\u0006\u0010\u00ea\u00f6\u0097\u00a8\u0006\"\u000535750\u0012\u0011\b1\u0012\u0006\u0010\u00ba\u00f7\u0097\u00a8\u0006\"\u000535751\u0012\u0011\b2\u0012\u0006\u0010\u00b2\u00f8\u0097\u00a8\u0006\"\u000535752\u0012\u0011\b3\u0012\u0006\u0010\u00c9\u00f9\u0097\u00a8\u0006\"\u000535417\u0012\u0011\b4\u0012\u0006\u0010\u0098\u00fa\u0097\u00a8\u0006\"\u000535755\u0012\u0011\b5\u0012\u0006\u0010\u0092\u00fc\u0097\u00a8\u0006\"\u000535756\u0012\u0011\b6\u0012\u0006\u0010\u009c\u00fd\u0097\u00a8\u0006\"\u000535757\u0012\u0011\b7\u0012\u0006\u0010\u00d3\u00fd\u0097\u00a8\u0006\"\u000535758\u0012\u0011\b8\u0012\u0006\u0010\u00e5\u00fe\u0097\u00a8\u0006\"\u000535508\u0012\u0011\b9\u0012\u0006\u0010\u0096\u00ff\u0097\u00a8\u0006\"\u000535514\u0012\u0011\b:\u0012\u0006\u0010\u00d7\u00ff\u0097\u00a8\u0006\"\u000535515\u0012\u0011\b;\u0012\u0006\u0010\u009b\u0080\u0098\u00a8\u0006\"\u000535516\u0012\u0011\b<\u0012\u0006\u0010\u00c8\u0080\u0098\u00a8\u0006\"\u000535517\u0012\u0011\b=\u0012\u0006\u0010\u00ee\u0080\u0098\u00a8\u0006\"\u000535518\u0012\u0011\b>\u0012\u0006\u0010\u00f7\u0080\u0098\u00a8\u0006\"\u000535764\u0012\u0011\b?\u0012\u0006\u0010\u00b2\u0081\u0098\u00a8\u0006\"\u000535763\u0012\u0011\b@\u0012\u0006\u0010\u00f0\u0081\u0098\u00a8\u0006\"\u000535762\u0012\u0011\bA\u0012\u0006\u0010\u008a\u0082\u0098\u00a8\u0006\"\u000535761\u0012\u0011\bB\u0012\u0006\u0010\u00c3\u0082\u0098\u00a8\u0006\"\u000535760\u0012\u0011\bC\u0012\u0006\u0010\u0084\u0083\u0098\u00a8\u0006\"\u000535759\u0012\u0011\bD\u0012\u0006\u0010\u00bb\u0083\u0098\u00a8\u0006\"\u000534960\u0012\u0011\bE\u0012\u0006\u0010\u00e4\u0083\u0098\u00a8\u0006\"\u000534961\u0012\u0011\bF\u0012\u0006\u0010\u00e4\u0084\u0098\u00a8\u0006\"\u000534962\u0012\u0011\bG\u0012\u0006\u0010\u00c6\u0085\u0098\u00a8\u0006\"\u000534963\u0012\u0011\bH\u0012\u0006\u0010\u008b\u0086\u0098\u00a8\u0006\"\u000534964\u0012\u0011\bI\u0012\u0006\u0010\u00e3\u0086\u0098\u00a8\u0006\"\u000534965\u0012\u0011\bJ\u0012\u0006\u0010\u00d5\u0087\u0098\u00a8\u0006\"\u000534966\u001a\b\u001a\u0006SWSZ60 \u00ce\u00e8\u0097\u00a8\u0006\"`\n/\n\u001017815-701ff27f-2\u0012\b15:22:00\u001a\b20230916 \u0000*\u00035720\u0001\u0012\u001d\r\u0088)\u0013\u00c2\u0015\u0082$\u0092\u00c2\u001d\u0000\u0000\u001aC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UU-A(\u00ce\u00e8\u0097\u00a8\u0006B\b\u001a\u0006SWSZ60" + }, + { + "type": "con_recorrido", + "entity": "\n$80ac2753-5fed-4458-bbea-1ae8d6f973c5\u001a\u009e\u000b\n/\n\u001017816-701ff27f-2\u0012\b15:42:00\u001a\b20230916 \u0000*\u00035720\u0001\u0012\u0011\b\u0003\u0012\u0006\u0010\u00a6\u00e8\u0097\u00a8\u0006\"\u000538646\u0012\u0011\b\u0004\u0012\u0006\u0010\u00ce\u00e8\u0097\u00a8\u0006\"\u000538632\u0012\u0011\b\u0005\u0012\u0006\u0010\u00a0\u00e9\u0097\u00a8\u0006\"\u000538767\u0012\u0011\b\u0006\u0012\u0006\u0010\u00e1\u00e9\u0097\u00a8\u0006\"\u000538768\u0012\u0011\b\u0007\u0012\u0006\u0010\u0093\u00ea\u0097\u00a8\u0006\"\u000538769\u0012\u0011\b\b\u0012\u0006\u0010\u00bd\u00ea\u0097\u00a8\u0006\"\u000549357\u0012\u0011\b\t\u0012\u0006\u0010\u00e6\u00ea\u0097\u00a8\u0006\"\u000538771\u0012\u0011\b\n\u0012\u0006\u0010\u0092\u00eb\u0097\u00a8\u0006\"\u000538668\u0012\u0011\b\u000b\u0012\u0006\u0010\u00f4\u00eb\u0097\u00a8\u0006\"\u000538661\u0012\u0011\b\f\u0012\u0006\u0010\u00c7\u00ec\u0097\u00a8\u0006\"\u000538657\u0012\u0011\b\r\u0012\u0006\u0010\u0083\u00ed\u0097\u00a8\u0006\"\u000538743\u0012\u0011\b\u000e\u0012\u0006\u0010\u00c4\u00ed\u0097\u00a8\u0006\"\u000538652\u0012\u0011\b\u000f\u0012\u0006\u0010\u0080\u00ee\u0097\u00a8\u0006\"\u000538721\u0012\u0011\b\u0010\u0012\u0006\u0010\u00ba\u00ee\u0097\u00a8\u0006\"\u000538659\u0012\u0011\b\u0011\u0012\u0006\u0010\u008c\u00ef\u0097\u00a8\u0006\"\u000538674\u0012\u0011\b\u0012\u0012\u0006\u0010\u00d4\u00ef\u0097\u00a8\u0006\"\u000538649\u0012\u0011\b\u0013\u0012\u0006\u0010\u0099\u00f0\u0097\u00a8\u0006\"\u000538718\u0012\u0011\b\u0014\u0012\u0006\u0010\u00d4\u00f0\u0097\u00a8\u0006\"\u000538735\u0012\u0011\b\u0015\u0012\u0006\u0010\u008d\u00f1\u0097\u00a8\u0006\"\u000542270\u0012\u0011\b\u0016\u0012\u0006\u0010\u00bc\u00f1\u0097\u00a8\u0006\"\u000542271\u0012\u0013\b\u0017\u0012\u0006\u0010\u00fa\u00f1\u0097\u00a8\u0006\"\u00074838438\u0012\u0011\b\u0018\u0012\u0006\u0010\u008b\u00f3\u0097\u00a8\u0006\"\u000544896\u0012\u0011\b\u0019\u0012\u0006\u0010\u00bb\u00f3\u0097\u00a8\u0006\"\u000544897\u0012\u0011\b\u001a\u0012\u0006\u0010\u0084\u00f4\u0097\u00a8\u0006\"\u000544898\u0012\u0011\b\u001b\u0012\u0006\u0010\u00af\u00f5\u0097\u00a8\u0006\"\u000540993\u0012\u0011\b\u001c\u0012\u0006\u0010\u00b8\u00f9\u0097\u00a8\u0006\"\u000540995\u0012\u0011\b\u001d\u0012\u0006\u0010\u0092\u00fa\u0097\u00a8\u0006\"\u000540996\u0012\u0011\b\u001e\u0012\u0006\u0010\u00ea\u00fa\u0097\u00a8\u0006\"\u000540997\u0012\u0011\b\u001f\u0012\u0006\u0010\u00a9\u00fb\u0097\u00a8\u0006\"\u000539614\u0012\u0011\b \u0012\u0006\u0010\u00e4\u00fb\u0097\u00a8\u0006\"\u000539615\u0012\u0011\b!\u0012\u0006\u0010\u00a1\u00fc\u0097\u00a8\u0006\"\u000539616\u0012\u0011\b\"\u0012\u0006\u0010\u00e0\u00fc\u0097\u00a8\u0006\"\u000539617\u0012\u0011\b#\u0012\u0006\u0010\u00a6\u00fd\u0097\u00a8\u0006\"\u000539618\u0012\u0011\b$\u0012\u0006\u0010\u00e1\u00fd\u0097\u00a8\u0006\"\u000539619\u0012\u0011\b%\u0012\u0006\u0010\u009e\u00fe\u0097\u00a8\u0006\"\u000539620\u0012\u0011\b&\u0012\u0006\u0010\u00d6\u00fe\u0097\u00a8\u0006\"\u00051-Jul\u0012\u0011\b'\u0012\u0006\u0010\u0080\u00ff\u0097\u00a8\u0006\"\u00051-Aug\u0012\u0011\b(\u0012\u0006\u0010\u00bf\u00ff\u0097\u00a8\u0006\"\u00051-Sep\u0012\u0011\b)\u0012\u0006\u0010\u0085\u0080\u0098\u00a8\u0006\"\u00051-Oct\u0012\u0011\b*\u0012\u0006\u0010\u00c9\u0080\u0098\u00a8\u0006\"\u00051-Nov\u0012\u0011\b+\u0012\u0006\u0010\u0095\u0081\u0098\u00a8\u0006\"\u000535745\u0012\u0014\b,\u0012\u0006\u0010\u00ba\u0081\u0098\u00a8\u0006\"\b15879953\u0012\u0011\b-\u0012\u0006\u0010\u00d8\u0081\u0098\u00a8\u0006\"\u000535746\u0012\u0011\b.\u0012\u0006\u0010\u0081\u0089\u0098\u00a8\u0006\"\u000535748\u0012\u0011\b/\u0012\u0006\u0010\u00ed\u0089\u0098\u00a8\u0006\"\u000535749\u0012\u0011\b0\u0012\u0006\u0010\u00d8\u008a\u0098\u00a8\u0006\"\u000535750\u0012\u0011\b1\u0012\u0006\u0010\u00f1\u008b\u0098\u00a8\u0006\"\u000535751\u0012\u0011\b2\u0012\u0006\u0010\u00de\u008d\u0098\u00a8\u0006\"\u000535752\u0012\u0011\b3\u0012\u0006\u0010\u0095\u0090\u0098\u00a8\u0006\"\u000535417\u0012\u0011\b4\u0012\u0006\u0010\u00c0\u0091\u0098\u00a8\u0006\"\u000535755\u0012\u0011\b5\u0012\u0006\u0010\u00f9\u0095\u0098\u00a8\u0006\"\u000535756\u0012\u0011\b6\u0012\u0006\u0010\u00ca\u0098\u0098\u00a8\u0006\"\u000535757\u0012\u0011\b7\u0012\u0006\u0010\u00d7\u0099\u0098\u00a8\u0006\"\u000535758\u0012\u0011\b8\u0012\u0006\u0010\u00d6\u009c\u0098\u00a8\u0006\"\u000535508\u0012\u0011\b9\u0012\u0006\u0010\u00d9\u009d\u0098\u00a8\u0006\"\u000535514\u0012\u0011\b:\u0012\u0006\u0010\u008d\u009f\u0098\u00a8\u0006\"\u000535515\u0012\u0011\b;\u0012\u0006\u0010\u00cf\u00a0\u0098\u00a8\u0006\"\u000535516\u0012\u0011\b<\u0012\u0006\u0010\u00d2\u00a1\u0098\u00a8\u0006\"\u000535517\u0012\u0011\b=\u0012\u0006\u0010\u00c1\u00a2\u0098\u00a8\u0006\"\u000535518\u0012\u0011\b>\u0012\u0006\u0010\u00db\u00a2\u0098\u00a8\u0006\"\u000535764\u0012\u0011\b?\u0012\u0006\u0010\u008c\u00a4\u0098\u00a8\u0006\"\u000535763\u0012\u0011\b@\u0012\u0006\u0010\u00cc\u00a5\u0098\u00a8\u0006\"\u000535762\u0012\u0011\bA\u0012\u0006\u0010\u009e\u00a6\u0098\u00a8\u0006\"\u000535761\u0012\u0011\bB\u0012\u0006\u0010\u00d0\u00a7\u0098\u00a8\u0006\"\u000535760\u0012\u0011\bC\u0012\u0006\u0010\u00a4\u00a9\u0098\u00a8\u0006\"\u000535759\u0012\u0011\bD\u0012\u0006\u0010\u00dc\u00aa\u0098\u00a8\u0006\"\u000534960\u0012\u0011\bE\u0012\u0006\u0010\u00e6\u00ab\u0098\u00a8\u0006\"\u000534961\u0012\u0011\bF\u0012\u0006\u0010\u00a6\u00af\u0098\u00a8\u0006\"\u000534962\u0012\u0011\bG\u0012\u0006\u0010\u008b\u00b2\u0098\u00a8\u0006\"\u000534963\u0012\u0011\bH\u0012\u0006\u0010\u0092\u00b4\u0098\u00a8\u0006\"\u000534964\u0012\u0011\bI\u0012\u0006\u0010\u00e9\u00b6\u0098\u00a8\u0006\"\u000534965\u0012\u0011\bJ\u0012\u0006\u0010\u00b5\u00ba\u0098\u00a8\u0006\"\u000534966\u001a\b\u001a\u0006YU8533 \u008e\u00e8\u0097\u00a8\u0006\"`\n/\n\u001017816-701ff27f-2\u0012\b15:42:00\u001a\b20230916 \u0000*\u00035720\u0001\u0012\u001d\r\u00e1\u00d9\u0012\u00c2\u0015t:\u0092\u00c2\u001d\u0000\u0000\u0006C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008e\u00e3\u00f8@(\u008e\u00e8\u0097\u00a8\u0006B\b\u001a\u0006YU8533" + }, + { + "type": "con_recorrido", + "entity": "\n$c5f50aea-60c3-4a33-a83d-b480a7d416c7\u001a\u00a4\b\n/\n\u001017985-701ff27f-2\u0012\b15:01:00\u001a\b20230916 \u0000*\u00035730\u0000\u0012\u0011\b\u001f\u0012\u0006\u0010\u00eb\u00e8\u0097\u00a8\u0006\"\u000535791\u0012\u0011\b \u0012\u0006\u0010\u009d\u00e9\u0097\u00a8\u0006\"\u000535792\u0012\u0011\b!\u0012\u0006\u0010\u00d8\u00e9\u0097\u00a8\u0006\"\u000535793\u0012\u0011\b\"\u0012\u0006\u0010\u00d0\u00ea\u0097\u00a8\u0006\"\u000591116\u0012\u0011\b#\u0012\u0006\u0010\u00a2\u00ee\u0097\u00a8\u0006\"\u000535794\u0012\u0011\b$\u0012\u0006\u0010\u00fd\u00ee\u0097\u00a8\u0006\"\u000535796\u0012\u0011\b%\u0012\u0006\u0010\u00ad\u00ef\u0097\u00a8\u0006\"\u000535797\u0012\u0011\b&\u0012\u0006\u0010\u00d5\u00ef\u0097\u00a8\u0006\"\u000535798\u0012\u0011\b'\u0012\u0006\u0010\u00fa\u00ef\u0097\u00a8\u0006\"\u000535799\u0012\u0011\b(\u0012\u0006\u0010\u00bd\u00f0\u0097\u00a8\u0006\"\u000535800\u0012\u0011\b)\u0012\u0006\u0010\u00ed\u00f0\u0097\u00a8\u0006\"\u000535801\u0012\u0011\b*\u0012\u0006\u0010\u0086\u00f1\u0097\u00a8\u0006\"\u000535802\u0012\u0011\b+\u0012\u0006\u0010\u00ce\u00f1\u0097\u00a8\u0006\"\u000538520\u0012\u0011\b,\u0012\u0006\u0010\u00fa\u00f1\u0097\u00a8\u0006\"\u000538521\u0012\u0011\b-\u0012\u0006\u0010\u00aa\u00f2\u0097\u00a8\u0006\"\u000538522\u0012\u0011\b.\u0012\u0006\u0010\u00db\u00f2\u0097\u00a8\u0006\"\u000538523\u0012\u0011\b/\u0012\u0006\u0010\u008e\u00f3\u0097\u00a8\u0006\"\u000538524\u0012\u0011\b0\u0012\u0006\u0010\u00bf\u00f3\u0097\u00a8\u0006\"\u000538525\u0012\u0011\b1\u0012\u0006\u0010\u00f2\u00f3\u0097\u00a8\u0006\"\u000538526\u0012\u0011\b2\u0012\u0006\u0010\u00a2\u00f4\u0097\u00a8\u0006\"\u000538527\u0012\u0011\b3\u0012\u0006\u0010\u00f5\u00f4\u0097\u00a8\u0006\"\u000538528\u0012\u0011\b4\u0012\u0006\u0010\u00f3\u00f5\u0097\u00a8\u0006\"\u000538529\u0012\u0011\b5\u0012\u0006\u0010\u00c8\u00f7\u0097\u00a8\u0006\"\u000538530\u0012\u0014\b6\u0012\u0006\u0010\u00d6\u00f7\u0097\u00a8\u0006\"\b16005209\u0012\u0011\b7\u0012\u0006\u0010\u00d5\u00f9\u0097\u00a8\u0006\"\u000538531\u0012\u0013\b8\u0012\u0006\u0010\u0093\u00fa\u0097\u00a8\u0006\"\u00078921285\u0012\u0011\b9\u0012\u0006\u0010\u0091\u00fb\u0097\u00a8\u0006\"\u000538532\u0012\u0011\b:\u0012\u0006\u0010\u00ce\u00fb\u0097\u00a8\u0006\"\u000538533\u0012\u0011\b;\u0012\u0006\u0010\u008e\u00fc\u0097\u00a8\u0006\"\u000538534\u0012\u0011\b<\u0012\u0006\u0010\u00c7\u00fc\u0097\u00a8\u0006\"\u000538535\u0012\u0011\b=\u0012\u0006\u0010\u0090\u00fd\u0097\u00a8\u0006\"\u000538536\u0012\u0013\b>\u0012\u0006\u0010\u00c2\u00fd\u0097\u00a8\u0006\"\u00074838437\u0012\u0011\b?\u0012\u0006\u0010\u0083\u00fe\u0097\u00a8\u0006\"\u000545085\u0012\u0011\b@\u0012\u0006\u0010\u00e7\u00fe\u0097\u00a8\u0006\"\u000545086\u0012\u0011\bA\u0012\u0006\u0010\u00ab\u00ff\u0097\u00a8\u0006\"\u000538539\u0012\u0011\bB\u0012\u0006\u0010\u0082\u0080\u0098\u00a8\u0006\"\u000538540\u0012\u0011\bC\u0012\u0006\u0010\u00ec\u0080\u0098\u00a8\u0006\"\u000538544\u0012\u0011\bD\u0012\u0006\u0010\u00bf\u0081\u0098\u00a8\u0006\"\u000538545\u0012\u0011\bE\u0012\u0006\u0010\u00d0\u0082\u0098\u00a8\u0006\"\u000538546\u0012\u0011\bF\u0012\u0006\u0010\u00ad\u0083\u0098\u00a8\u0006\"\u000538547\u0012\u0011\bG\u0012\u0006\u0010\u0083\u0084\u0098\u00a8\u0006\"\u000538548\u0012\u0011\bH\u0012\u0006\u0010\u00ea\u0084\u0098\u00a8\u0006\"\u000538549\u0012\u0011\bI\u0012\u0006\u0010\u00c2\u0085\u0098\u00a8\u0006\"\u000538550\u0012\u0011\bJ\u0012\u0006\u0010\u00df\u0086\u0098\u00a8\u0006\"\u000538551\u0012\u0011\bK\u0012\u0006\u0010\u00f0\u0087\u0098\u00a8\u0006\"\u000538552\u0012\u0011\bL\u0012\u0006\u0010\u0082\u0089\u0098\u00a8\u0006\"\u000549359\u0012\u0011\bM\u0012\u0006\u0010\u00dd\u0089\u0098\u00a8\u0006\"\u000549360\u0012\u0011\bN\u0012\u0006\u0010\u00b1\u008b\u0098\u00a8\u0006\"\u000549361\u0012\u0011\bO\u0012\u0006\u0010\u00e7\u008b\u0098\u00a8\u0006\"\u000549362\u0012\u0011\bP\u0012\u0006\u0010\u00c5\u008c\u0098\u00a8\u0006\"\u000549363\u0012\u0011\bQ\u0012\u0006\u0010\u00aa\u008d\u0098\u00a8\u0006\"\u000549364\u0012\u0011\bR\u0012\u0006\u0010\u0086\u008e\u0098\u00a8\u0006\"\u000549365\u001a\b\u001a\u0006FCBR15 \u00ac\u00e8\u0097\u00a8\u0006\"`\n/\n\u001017985-701ff27f-2\u0012\b15:01:00\u001a\b20230916 \u0000*\u00035730\u0000\u0012\u001d\r\u00cbZ\u0013\u00c2\u0015\u00833\u0092\u00c2\u001d\u0000\u0000\u00c0B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-r\u001c?A(\u00ac\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FCBR15" + }, + { + "type": "con_recorrido", + "entity": "\n$43f1e128-2e62-4ce4-9c59-e4ed352f18a5\u001a\u00a5\u0005\n/\n\u001017927-701ff27f-2\u0012\b14:40:00\u001a\b20230916 \u0000*\u00035730\u0001\u0012\u0011\b+\u0012\u0006\u0010\u00b5\u00e8\u0097\u00a8\u0006\"\u000537477\u0012\u0011\b,\u0012\u0006\u0010\u00d5\u00e8\u0097\u00a8\u0006\"\u000591118\u0012\u0011\b-\u0012\u0006\u0010\u0097\u00e9\u0097\u00a8\u0006\"\u000535223\u0012\u0011\b.\u0012\u0006\u0010\u00c7\u00e9\u0097\u00a8\u0006\"\u000539547\u0012\u0011\b/\u0012\u0006\u0010\u0097\u00ea\u0097\u00a8\u0006\"\u000535224\u0012\u0011\b0\u0012\u0006\u0010\u00c8\u00eb\u0097\u00a8\u0006\"\u000535225\u0012\u0011\b1\u0012\u0006\u0010\u00f3\u00ef\u0097\u00a8\u0006\"\u000535748\u0012\u0011\b2\u0012\u0006\u0010\u00b4\u00f0\u0097\u00a8\u0006\"\u000535749\u0012\u0011\b3\u0012\u0006\u0010\u00e1\u00f0\u0097\u00a8\u0006\"\u000535750\u0012\u0011\b4\u0012\u0006\u0010\u00ac\u00f1\u0097\u00a8\u0006\"\u000535751\u0012\u0011\b5\u0012\u0006\u0010\u009e\u00f2\u0097\u00a8\u0006\"\u000535752\u0012\u0011\b6\u0012\u0006\u0010\u00a3\u00f3\u0097\u00a8\u0006\"\u000535417\u0012\u0011\b7\u0012\u0006\u0010\u00ea\u00f3\u0097\u00a8\u0006\"\u000535755\u0012\u0011\b8\u0012\u0006\u0010\u00be\u00f5\u0097\u00a8\u0006\"\u000535864\u0012\u0011\b9\u0012\u0006\u0010\u00b8\u00f6\u0097\u00a8\u0006\"\u000591039\u0012\u0011\b:\u0012\u0006\u0010\u00ca\u00f7\u0097\u00a8\u0006\"\u000535866\u0012\u0011\b;\u0012\u0006\u0010\u00f4\u00f7\u0097\u00a8\u0006\"\u000591040\u0012\u0011\b<\u0012\u0006\u0010\u009e\u00f8\u0097\u00a8\u0006\"\u000535867\u0012\u0011\b=\u0012\u0006\u0010\u00c4\u00f8\u0097\u00a8\u0006\"\u000591085\u0012\u0011\b>\u0012\u0006\u0010\u00f5\u00f8\u0097\u00a8\u0006\"\u000535862\u0012\u0011\b?\u0012\u0006\u0010\u00c5\u00f9\u0097\u00a8\u0006\"\u000591045\u0012\u0011\b@\u0012\u0006\u0010\u00e3\u00f9\u0097\u00a8\u0006\"\u000591089\u0012\u0011\bA\u0012\u0006\u0010\u0083\u00fa\u0097\u00a8\u0006\"\u000535645\u0012\u0011\bB\u0012\u0006\u0010\u00bb\u00fa\u0097\u00a8\u0006\"\u000535646\u0012\u0011\bC\u0012\u0006\u0010\u00ed\u00fa\u0097\u00a8\u0006\"\u000535475\u0012\u0011\bD\u0012\u0006\u0010\u0081\u00fc\u0097\u00a8\u0006\"\u000535476\u0012\u0013\bE\u0012\u0006\u0010\u0088\u00fe\u0097\u00a8\u0006\"\u00077084047\u0012\u0013\bF\u0012\u0006\u0010\u00ea\u00fe\u0097\u00a8\u0006\"\u00077084048\u0012\u0011\bG\u0012\u0006\u0010\u00b6\u00ff\u0097\u00a8\u0006\"\u000534961\u0012\u0011\bH\u0012\u0006\u0010\u008a\u0083\u0098\u00a8\u0006\"\u000534962\u0012\u0011\bI\u0012\u0006\u0010\u00e6\u0083\u0098\u00a8\u0006\"\u000534963\u0012\u0011\bJ\u0012\u0006\u0010\u00a8\u0084\u0098\u00a8\u0006\"\u000534964\u001a\b\u001a\u0006FJYR11 \u00b4\u00e8\u0097\u00a8\u0006\"`\n/\n\u001017927-701ff27f-2\u0012\b14:40:00\u001a\b20230916 \u0000*\u00035730\u0001\u0012\u001d\r\u00bbQ\u0013\u00c2\u0015K\u001c\u0092\u00c2\u001d\u0000\u0000rC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008e\u00e3(A(\u00b4\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FJYR11" + }, + { + "type": "con_recorrido", + "entity": "\n$5448fae1-bfa4-4f44-be37-eb1c1c0e186f\u001a\u00c2\u0007\n/\n\u001017928-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00035730\u0001\u0012\u0011\b\u001c\u0012\u0006\u0010\u00e3\u00e9\u0097\u00a8\u0006\"\u000540995\u0012\u0011\b\u001d\u0012\u0006\u0010\u00b7\u00ea\u0097\u00a8\u0006\"\u000540996\u0012\u0011\b\u001e\u0012\u0006\u0010\u0086\u00eb\u0097\u00a8\u0006\"\u000540997\u0012\u0011\b\u001f\u0012\u0006\u0010\u00c2\u00eb\u0097\u00a8\u0006\"\u000539614\u0012\u0011\b \u0012\u0006\u0010\u00f2\u00eb\u0097\u00a8\u0006\"\u000539615\u0012\u0011\b!\u0012\u0006\u0010\u00a3\u00ec\u0097\u00a8\u0006\"\u000539616\u0012\u0011\b\"\u0012\u0006\u0010\u00d9\u00ec\u0097\u00a8\u0006\"\u000539617\u0012\u0011\b#\u0012\u0006\u0010\u0093\u00ed\u0097\u00a8\u0006\"\u000539618\u0012\u0011\b$\u0012\u0006\u0010\u00bf\u00ed\u0097\u00a8\u0006\"\u000539619\u0012\u0011\b%\u0012\u0006\u0010\u00e9\u00ed\u0097\u00a8\u0006\"\u000539620\u0012\u0011\b&\u0012\u0006\u0010\u00aa\u00ee\u0097\u00a8\u0006\"\u000539621\u0012\u0011\b'\u0012\u0006\u0010\u00d9\u00ee\u0097\u00a8\u0006\"\u000538281\u0012\u0011\b(\u0012\u0006\u0010\u008f\u00ef\u0097\u00a8\u0006\"\u000537506\u0012\u0011\b)\u0012\u0006\u0010\u00eb\u00ef\u0097\u00a8\u0006\"\u000537520\u0012\u0011\b*\u0012\u0006\u0010\u00d3\u00f0\u0097\u00a8\u0006\"\u000537470\u0012\u0011\b+\u0012\u0006\u0010\u00eb\u00f0\u0097\u00a8\u0006\"\u000537477\u0012\u0011\b,\u0012\u0006\u0010\u0088\u00f1\u0097\u00a8\u0006\"\u000591118\u0012\u0011\b-\u0012\u0006\u0010\u00c5\u00f1\u0097\u00a8\u0006\"\u000535223\u0012\u0011\b.\u0012\u0006\u0010\u00f1\u00f1\u0097\u00a8\u0006\"\u000539547\u0012\u0011\b/\u0012\u0006\u0010\u00bb\u00f2\u0097\u00a8\u0006\"\u000535224\u0012\u0011\b0\u0012\u0006\u0010\u00e6\u00f3\u0097\u00a8\u0006\"\u000535225\u0012\u0011\b1\u0012\u0006\u0010\u00a5\u00f8\u0097\u00a8\u0006\"\u000535748\u0012\u0011\b2\u0012\u0006\u0010\u00ee\u00f8\u0097\u00a8\u0006\"\u000535749\u0012\u0011\b3\u0012\u0006\u0010\u00a0\u00f9\u0097\u00a8\u0006\"\u000535750\u0012\u0011\b4\u0012\u0006\u0010\u00f5\u00f9\u0097\u00a8\u0006\"\u000535751\u0012\u0011\b5\u0012\u0006\u0010\u00f9\u00fa\u0097\u00a8\u0006\"\u000535752\u0012\u0011\b6\u0012\u0006\u0010\u0096\u00fc\u0097\u00a8\u0006\"\u000535417\u0012\u0011\b7\u0012\u0006\u0010\u00eb\u00fc\u0097\u00a8\u0006\"\u000535755\u0012\u0011\b8\u0012\u0006\u0010\u00f2\u00fe\u0097\u00a8\u0006\"\u000535864\u0012\u0011\b9\u0012\u0006\u0010\u008d\u0080\u0098\u00a8\u0006\"\u000591039\u0012\u0011\b:\u0012\u0006\u0010\u00cd\u0081\u0098\u00a8\u0006\"\u000535866\u0012\u0011\b;\u0012\u0006\u0010\u0085\u0082\u0098\u00a8\u0006\"\u000591040\u0012\u0011\b<\u0012\u0006\u0010\u00bd\u0082\u0098\u00a8\u0006\"\u000535867\u0012\u0011\b=\u0012\u0006\u0010\u00f0\u0082\u0098\u00a8\u0006\"\u000591085\u0012\u0011\b>\u0012\u0006\u0010\u00b3\u0083\u0098\u00a8\u0006\"\u000535862\u0012\u0011\b?\u0012\u0006\u0010\u00a1\u0084\u0098\u00a8\u0006\"\u000591045\u0012\u0011\b@\u0012\u0006\u0010\u00cb\u0084\u0098\u00a8\u0006\"\u000591089\u0012\u0011\bA\u0012\u0006\u0010\u00f7\u0084\u0098\u00a8\u0006\"\u000535645\u0012\u0011\bB\u0012\u0006\u0010\u00c6\u0085\u0098\u00a8\u0006\"\u000535646\u0012\u0011\bC\u0012\u0006\u0010\u008d\u0086\u0098\u00a8\u0006\"\u000535475\u0012\u0011\bD\u0012\u0006\u0010\u00e3\u0087\u0098\u00a8\u0006\"\u000535476\u0012\u0013\bE\u0012\u0006\u0010\u00ed\u008a\u0098\u00a8\u0006\"\u00077084047\u0012\u0013\bF\u0012\u0006\u0010\u0084\u008c\u0098\u00a8\u0006\"\u00077084048\u0012\u0011\bG\u0012\u0006\u0010\u00fb\u008c\u0098\u00a8\u0006\"\u000534961\u0012\u0011\bH\u0012\u0006\u0010\u00f9\u0092\u0098\u00a8\u0006\"\u000534962\u0012\u0011\bI\u0012\u0006\u0010\u0097\u0094\u0098\u00a8\u0006\"\u000534963\u0012\u0011\bJ\u0012\u0006\u0010\u008a\u0095\u0098\u00a8\u0006\"\u000534964\u001a\b\u001a\u0006GXYZ31 \u00cb\u00e8\u0097\u00a8\u0006\"`\n/\n\u001017928-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00035730\u0001\u0012\u001d\r\u0087.\u0013\u00c2\u0015#\"\u0092\u00c2\u001d\u0000\u0000\u00f0B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u008cA(\u00cb\u00e8\u0097\u00a8\u0006B\b\u001a\u0006GXYZ31" + }, + { + "type": "con_recorrido", + "entity": "\n$5964d228-191a-45dc-82dd-855d66a437b8\u001a\u00ce\t\n/\n\u001017929-701ff27f-2\u0012\b15:20:00\u001a\b20230916 \u0000*\u00035730\u0001\u0012\u0011\b\u000e\u0012\u0006\u0010\u00c8\u00e7\u0097\u00a8\u0006\"\u000538652\u0012\u0011\b\u000f\u0012\u0006\u0010\u008d\u00e8\u0097\u00a8\u0006\"\u000538721\u0012\u0011\b\u0010\u0012\u0006\u0010\u00c9\u00e8\u0097\u00a8\u0006\"\u000538659\u0012\u0011\b\u0011\u0012\u0006\u0010\u00a0\u00e9\u0097\u00a8\u0006\"\u000538674\u0012\u0011\b\u0012\u0012\u0006\u0010\u00e2\u00e9\u0097\u00a8\u0006\"\u000538649\u0012\u0011\b\u0013\u0012\u0006\u0010\u00b3\u00ea\u0097\u00a8\u0006\"\u000538718\u0012\u0011\b\u0014\u0012\u0006\u0010\u00ee\u00ea\u0097\u00a8\u0006\"\u000538735\u0012\u0011\b\u0015\u0012\u0006\u0010\u00a4\u00eb\u0097\u00a8\u0006\"\u000542270\u0012\u0011\b\u0016\u0012\u0006\u0010\u00da\u00eb\u0097\u00a8\u0006\"\u000542271\u0012\u0013\b\u0017\u0012\u0006\u0010\u0099\u00ec\u0097\u00a8\u0006\"\u00074838438\u0012\u0011\b\u0018\u0012\u0006\u0010\u00aa\u00ed\u0097\u00a8\u0006\"\u000544896\u0012\u0011\b\u0019\u0012\u0006\u0010\u00da\u00ed\u0097\u00a8\u0006\"\u000544897\u0012\u0011\b\u001a\u0012\u0006\u0010\u00a1\u00ee\u0097\u00a8\u0006\"\u000544898\u0012\u0011\b\u001b\u0012\u0006\u0010\u00c6\u00ef\u0097\u00a8\u0006\"\u000540993\u0012\u0011\b\u001c\u0012\u0006\u0010\u00a8\u00f3\u0097\u00a8\u0006\"\u000540995\u0012\u0011\b\u001d\u0012\u0006\u0010\u00f9\u00f3\u0097\u00a8\u0006\"\u000540996\u0012\u0011\b\u001e\u0012\u0006\u0010\u00c7\u00f4\u0097\u00a8\u0006\"\u000540997\u0012\u0011\b\u001f\u0012\u0006\u0010\u0083\u00f5\u0097\u00a8\u0006\"\u000539614\u0012\u0011\b \u0012\u0006\u0010\u00b4\u00f5\u0097\u00a8\u0006\"\u000539615\u0012\u0011\b!\u0012\u0006\u0010\u00e6\u00f5\u0097\u00a8\u0006\"\u000539616\u0012\u0011\b\"\u0012\u0006\u0010\u009f\u00f6\u0097\u00a8\u0006\"\u000539617\u0012\u0011\b#\u0012\u0006\u0010\u00dc\u00f6\u0097\u00a8\u0006\"\u000539618\u0012\u0011\b$\u0012\u0006\u0010\u008c\u00f7\u0097\u00a8\u0006\"\u000539619\u0012\u0011\b%\u0012\u0006\u0010\u00b9\u00f7\u0097\u00a8\u0006\"\u000539620\u0012\u0011\b&\u0012\u0006\u0010\u0080\u00f8\u0097\u00a8\u0006\"\u000539621\u0012\u0011\b'\u0012\u0006\u0010\u00b5\u00f8\u0097\u00a8\u0006\"\u000538281\u0012\u0011\b(\u0012\u0006\u0010\u00f2\u00f8\u0097\u00a8\u0006\"\u000537506\u0012\u0011\b)\u0012\u0006\u0010\u00de\u00f9\u0097\u00a8\u0006\"\u000537520\u0012\u0011\b*\u0012\u0006\u0010\u00d9\u00fa\u0097\u00a8\u0006\"\u000537470\u0012\u0011\b+\u0012\u0006\u0010\u00f6\u00fa\u0097\u00a8\u0006\"\u000537477\u0012\u0011\b,\u0012\u0006\u0010\u0098\u00fb\u0097\u00a8\u0006\"\u000591118\u0012\u0011\b-\u0012\u0006\u0010\u00e3\u00fb\u0097\u00a8\u0006\"\u000535223\u0012\u0011\b.\u0012\u0006\u0010\u009a\u00fc\u0097\u00a8\u0006\"\u000539547\u0012\u0011\b/\u0012\u0006\u0010\u00f9\u00fc\u0097\u00a8\u0006\"\u000535224\u0012\u0011\b0\u0012\u0006\u0010\u00d8\u00fe\u0097\u00a8\u0006\"\u000535225\u0012\u0011\b1\u0012\u0006\u0010\u0092\u0085\u0098\u00a8\u0006\"\u000535748\u0012\u0011\b2\u0012\u0006\u0010\u0084\u0086\u0098\u00a8\u0006\"\u000535749\u0012\u0011\b3\u0012\u0006\u0010\u00d2\u0086\u0098\u00a8\u0006\"\u000535750\u0012\u0011\b4\u0012\u0006\u0010\u00da\u0087\u0098\u00a8\u0006\"\u000535751\u0012\u0011\b5\u0012\u0006\u0010\u00b3\u0089\u0098\u00a8\u0006\"\u000535752\u0012\u0011\b6\u0012\u0006\u0010\u00be\u008b\u0098\u00a8\u0006\"\u000535417\u0012\u0011\b7\u0012\u0006\u0010\u00d3\u008c\u0098\u00a8\u0006\"\u000535755\u0012\u0011\b8\u0012\u0006\u0010\u00b1\u0090\u0098\u00a8\u0006\"\u000535864\u0012\u0011\b9\u0012\u0006\u0010\u00da\u0092\u0098\u00a8\u0006\"\u000591039\u0012\u0011\b:\u0012\u0006\u0010\u00d7\u0095\u0098\u00a8\u0006\"\u000535866\u0012\u0011\b;\u0012\u0006\u0010\u00c9\u0096\u0098\u00a8\u0006\"\u000591040\u0012\u0011\b<\u0012\u0006\u0010\u00bd\u0097\u0098\u00a8\u0006\"\u000535867\u0012\u0011\b=\u0012\u0006\u0010\u00a9\u0098\u0098\u00a8\u0006\"\u000591085\u0012\u0011\b>\u0012\u0006\u0010\u00b8\u0099\u0098\u00a8\u0006\"\u000535862\u0012\u0011\b?\u0012\u0006\u0010\u00a6\u009b\u0098\u00a8\u0006\"\u000591045\u0012\u0011\b@\u0012\u0006\u0010\u0082\u009c\u0098\u00a8\u0006\"\u000591089\u0012\u0011\bA\u0012\u0006\u0010\u00e6\u009c\u0098\u00a8\u0006\"\u000535645\u0012\u0011\bB\u0012\u0006\u0010\u0099\u009e\u0098\u00a8\u0006\"\u000535646\u0012\u0011\bC\u0012\u0006\u0010\u00bb\u009f\u0098\u00a8\u0006\"\u000535475\u0012\u0011\bD\u0012\u0006\u0010\u00bb\u00a3\u0098\u00a8\u0006\"\u000535476\u0012\u0013\bE\u0012\u0006\u0010\u00ab\u00ab\u0098\u00a8\u0006\"\u00077084047\u0012\u0013\bF\u0012\u0006\u0010\u00c9\u00ae\u0098\u00a8\u0006\"\u00077084048\u0012\u0011\bG\u0012\u0006\u0010\u009b\u00b1\u0098\u00a8\u0006\"\u000534961\u0012\u0011\bH\u0012\u0006\u0010\u0099\u00c4\u0098\u00a8\u0006\"\u000534962\u0012\u0011\bI\u0012\u0006\u0010\u00d2\u00c8\u0098\u00a8\u0006\"\u000534963\u0012\u0011\bJ\u0012\u0006\u0010\u00fb\u00cb\u0098\u00a8\u0006\"\u000534964\u001a\b\u001a\u0006HDSB17 \u00b5\u00e7\u0097\u00a8\u0006\"`\n/\n\u001017929-701ff27f-2\u0012\b15:20:00\u001a\b20230916 \u0000*\u00035730\u0001\u0012\u001d\r`\u00f4\u0012\u00c2\u0015\u009b3\u0092\u00c2\u001d\u0000\u0000\u009fC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008e\u00e3(A(\u00b5\u00e7\u0097\u00a8\u0006B\b\u001a\u0006HDSB17" + }, + { + "type": "con_recorrido", + "entity": "\n$9f9a4789-0aa3-435c-b9bd-cd4a87dc450a\u001a\u00ce\u0005\n/\n\u001017984-701ff27f-2\u0012\b14:41:00\u001a\b20230916 \u0000*\u00035730\u0000\u0012\u0011\b1\u0012\u0006\u0010\u00c2\u00e8\u0097\u00a8\u0006\"\u000538526\u0012\u0011\b2\u0012\u0006\u0010\u00f6\u00e8\u0097\u00a8\u0006\"\u000538527\u0012\u0011\b3\u0012\u0006\u0010\u00cd\u00e9\u0097\u00a8\u0006\"\u000538528\u0012\u0011\b4\u0012\u0006\u0010\u00cd\u00ea\u0097\u00a8\u0006\"\u000538529\u0012\u0011\b5\u0012\u0006\u0010\u009c\u00ec\u0097\u00a8\u0006\"\u000538530\u0012\u0014\b6\u0012\u0006\u0010\u00a9\u00ec\u0097\u00a8\u0006\"\b16005209\u0012\u0011\b7\u0012\u0006\u0010\u0091\u00ee\u0097\u00a8\u0006\"\u000538531\u0012\u0013\b8\u0012\u0006\u0010\u00c7\u00ee\u0097\u00a8\u0006\"\u00078921285\u0012\u0011\b9\u0012\u0006\u0010\u00b3\u00ef\u0097\u00a8\u0006\"\u000538532\u0012\u0011\b:\u0012\u0006\u0010\u00e6\u00ef\u0097\u00a8\u0006\"\u000538533\u0012\u0011\b;\u0012\u0006\u0010\u009b\u00f0\u0097\u00a8\u0006\"\u000538534\u0012\u0011\b<\u0012\u0006\u0010\u00c9\u00f0\u0097\u00a8\u0006\"\u000538535\u0012\u0011\b=\u0012\u0006\u0010\u0084\u00f1\u0097\u00a8\u0006\"\u000538536\u0012\u0013\b>\u0012\u0006\u0010\u00ab\u00f1\u0097\u00a8\u0006\"\u00074838437\u0012\u0011\b?\u0012\u0006\u0010\u00de\u00f1\u0097\u00a8\u0006\"\u000545085\u0012\u0011\b@\u0012\u0006\u0010\u00ab\u00f2\u0097\u00a8\u0006\"\u000545086\u0012\u0011\bA\u0012\u0006\u0010\u00df\u00f2\u0097\u00a8\u0006\"\u000538539\u0012\u0011\bB\u0012\u0006\u0010\u009f\u00f3\u0097\u00a8\u0006\"\u000538540\u0012\u0011\bC\u0012\u0006\u0010\u00ec\u00f3\u0097\u00a8\u0006\"\u000538544\u0012\u0011\bD\u0012\u0006\u0010\u00a8\u00f4\u0097\u00a8\u0006\"\u000538545\u0012\u0011\bE\u0012\u0006\u0010\u008e\u00f5\u0097\u00a8\u0006\"\u000538546\u0012\u0011\bF\u0012\u0006\u0010\u00ce\u00f5\u0097\u00a8\u0006\"\u000538547\u0012\u0011\bG\u0012\u0006\u0010\u0088\u00f6\u0097\u00a8\u0006\"\u000538548\u0012\u0011\bH\u0012\u0006\u0010\u00cd\u00f6\u0097\u00a8\u0006\"\u000538549\u0012\u0011\bI\u0012\u0006\u0010\u0087\u00f7\u0097\u00a8\u0006\"\u000538550\u0012\u0011\bJ\u0012\u0006\u0010\u00ec\u00f7\u0097\u00a8\u0006\"\u000538551\u0012\u0011\bK\u0012\u0006\u0010\u00c6\u00f8\u0097\u00a8\u0006\"\u000538552\u0012\u0011\bL\u0012\u0006\u0010\u00a0\u00f9\u0097\u00a8\u0006\"\u000549359\u0012\u0011\bM\u0012\u0006\u0010\u00d7\u00f9\u0097\u00a8\u0006\"\u000549360\u0012\u0011\bN\u0012\u0006\u0010\u00d4\u00fa\u0097\u00a8\u0006\"\u000549361\u0012\u0011\bO\u0012\u0006\u0010\u00f3\u00fa\u0097\u00a8\u0006\"\u000549362\u0012\u0011\bP\u0012\u0006\u0010\u00a9\u00fb\u0097\u00a8\u0006\"\u000549363\u0012\u0011\bQ\u0012\u0006\u0010\u00e1\u00fb\u0097\u00a8\u0006\"\u000549364\u0012\u0011\bR\u0012\u0006\u0010\u0095\u00fc\u0097\u00a8\u0006\"\u000549365\u001a\b\u001a\u0006RVGV79 \u0094\u00e8\u0097\u00a8\u0006\"`\n/\n\u001017984-701ff27f-2\u0012\b14:41:00\u001a\b20230916 \u0000*\u00035730\u0000\u0012\u001d\r\u00d7;\u0013\u00c2\u0015x\u001a\u0092\u00c2\u001d\u0000\u0000\u00a7C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-r\u001c\u00e7@(\u0094\u00e8\u0097\u00a8\u0006B\b\u001a\u0006RVGV79" + }, + { + "type": "con_recorrido", + "entity": "\n$eb13feac-0b69-466c-b65c-dc6d71f13e86\u001a\u0083\f\n/\n\u001017986-701ff27f-2\u0012\b15:21:00\u001a\b20230916 \u0000*\u00035730\u0000\u0012\u0011\b\u0006\u0012\u0006\u0010\u008f\u00e9\u0097\u00a8\u0006\"\u000591031\u0012\u0013\b\u0007\u0012\u0006\u0010\u00f5\u00e9\u0097\u00a8\u0006\"\u00077084050\u0012\u0011\b\b\u0012\u0006\u0010\u009b\u00ea\u0097\u00a8\u0006\"\u000591032\u0012\u0011\b\t\u0012\u0006\u0010\u00d6\u00ea\u0097\u00a8\u0006\"\u000591033\u0012\u0011\b\n\u0012\u0006\u0010\u0091\u00eb\u0097\u00a8\u0006\"\u000591034\u0012\u0011\b\u000b\u0012\u0006\u0010\u00ce\u00eb\u0097\u00a8\u0006\"\u000591035\u0012\u0011\b\f\u0012\u0006\u0010\u0085\u00ec\u0097\u00a8\u0006\"\u000591036\u0012\u0011\b\r\u0012\u0006\u0010\u00a6\u00ec\u0097\u00a8\u0006\"\u000535607\u0012\u0011\b\u000e\u0012\u0006\u0010\u00e8\u00ec\u0097\u00a8\u0006\"\u000591037\u0012\u0011\b\u000f\u0012\u0006\u0010\u008a\u00ed\u0097\u00a8\u0006\"\u000535483\u0012\u0011\b\u0010\u0012\u0006\u0010\u009c\u00ed\u0097\u00a8\u0006\"\u000535484\u0012\u0013\b\u0011\u0012\u0006\u0010\u00d9\u00ed\u0097\u00a8\u0006\"\u00077175655\u0012\u0011\b\u0012\u0012\u0006\u0010\u00f8\u00ed\u0097\u00a8\u0006\"\u000535639\u0012\u0011\b\u0013\u0012\u0006\u0010\u00bf\u00ee\u0097\u00a8\u0006\"\u000535640\u0012\u0011\b\u0014\u0012\u0006\u0010\u00d7\u00ee\u0097\u00a8\u0006\"\u000535781\u0012\u0011\b\u0015\u0012\u0006\u0010\u00f5\u00ee\u0097\u00a8\u0006\"\u000535782\u0012\u0011\b\u0016\u0012\u0006\u0010\u00a3\u00ef\u0097\u00a8\u0006\"\u000591038\u0012\u0011\b\u0017\u0012\u0006\u0010\u008e\u00f0\u0097\u00a8\u0006\"\u000535783\u0012\u0011\b\u0018\u0012\u0006\u0010\u00af\u00f0\u0097\u00a8\u0006\"\u000531013\u0012\u0011\b\u0019\u0012\u0006\u0010\u00a3\u00f1\u0097\u00a8\u0006\"\u000535785\u0012\u0011\b\u001a\u0012\u0006\u0010\u0087\u00f3\u0097\u00a8\u0006\"\u000535786\u0012\u0011\b\u001b\u0012\u0006\u0010\u00cc\u00f3\u0097\u00a8\u0006\"\u000535787\u0012\u0011\b\u001c\u0012\u0006\u0010\u0088\u00f4\u0097\u00a8\u0006\"\u000535788\u0012\u0011\b\u001d\u0012\u0006\u0010\u00f3\u00f4\u0097\u00a8\u0006\"\u000535789\u0012\u0011\b\u001e\u0012\u0006\u0010\u009d\u00f5\u0097\u00a8\u0006\"\u000535790\u0012\u0011\b\u001f\u0012\u0006\u0010\u00f2\u00f5\u0097\u00a8\u0006\"\u000535791\u0012\u0011\b \u0012\u0006\u0010\u00a3\u00f6\u0097\u00a8\u0006\"\u000535792\u0012\u0011\b!\u0012\u0006\u0010\u00de\u00f6\u0097\u00a8\u0006\"\u000535793\u0012\u0011\b\"\u0012\u0006\u0010\u00d7\u00f7\u0097\u00a8\u0006\"\u000591116\u0012\u0011\b#\u0012\u0006\u0010\u00e1\u00fb\u0097\u00a8\u0006\"\u000535794\u0012\u0011\b$\u0012\u0006\u0010\u00d0\u00fc\u0097\u00a8\u0006\"\u000535796\u0012\u0011\b%\u0012\u0006\u0010\u008c\u00fd\u0097\u00a8\u0006\"\u000535797\u0012\u0011\b&\u0012\u0006\u0010\u00bf\u00fd\u0097\u00a8\u0006\"\u000535798\u0012\u0011\b'\u0012\u0006\u0010\u00ee\u00fd\u0097\u00a8\u0006\"\u000535799\u0012\u0011\b(\u0012\u0006\u0010\u00c6\u00fe\u0097\u00a8\u0006\"\u000535800\u0012\u0011\b)\u0012\u0006\u0010\u0086\u00ff\u0097\u00a8\u0006\"\u000535801\u0012\u0011\b*\u0012\u0006\u0010\u00a7\u00ff\u0097\u00a8\u0006\"\u000535802\u0012\u0011\b+\u0012\u0006\u0010\u008b\u0080\u0098\u00a8\u0006\"\u000538520\u0012\u0011\b,\u0012\u0006\u0010\u00c7\u0080\u0098\u00a8\u0006\"\u000538521\u0012\u0011\b-\u0012\u0006\u0010\u008b\u0081\u0098\u00a8\u0006\"\u000538522\u0012\u0011\b.\u0012\u0006\u0010\u00d1\u0081\u0098\u00a8\u0006\"\u000538523\u0012\u0011\b/\u0012\u0006\u0010\u009c\u0082\u0098\u00a8\u0006\"\u000538524\u0012\u0011\b0\u0012\u0006\u0010\u00e4\u0082\u0098\u00a8\u0006\"\u000538525\u0012\u0011\b1\u0012\u0006\u0010\u00b1\u0083\u0098\u00a8\u0006\"\u000538526\u0012\u0011\b2\u0012\u0006\u0010\u00fb\u0083\u0098\u00a8\u0006\"\u000538527\u0012\u0011\b3\u0012\u0006\u0010\u00fd\u0084\u0098\u00a8\u0006\"\u000538528\u0012\u0011\b4\u0012\u0006\u0010\u00c8\u0086\u0098\u00a8\u0006\"\u000538529\u0012\u0011\b5\u0012\u0006\u0010\u00b1\u0089\u0098\u00a8\u0006\"\u000538530\u0012\u0014\b6\u0012\u0006\u0010\u00ca\u0089\u0098\u00a8\u0006\"\b16005209\u0012\u0011\b7\u0012\u0006\u0010\u009d\u008d\u0098\u00a8\u0006\"\u000538531\u0012\u0013\b8\u0012\u0006\u0010\u0092\u008e\u0098\u00a8\u0006\"\u00078921285\u0012\u0011\b9\u0012\u0006\u0010\u008c\u0090\u0098\u00a8\u0006\"\u000538532\u0012\u0011\b:\u0012\u0006\u0010\u0088\u0091\u0098\u00a8\u0006\"\u000538533\u0012\u0011\b;\u0012\u0006\u0010\u008c\u0092\u0098\u00a8\u0006\"\u000538534\u0012\u0011\b<\u0012\u0006\u0010\u0085\u0093\u0098\u00a8\u0006\"\u000538535\u0012\u0011\b=\u0012\u0006\u0010\u00a1\u0094\u0098\u00a8\u0006\"\u000538536\u0012\u0013\b>\u0012\u0006\u0010\u008f\u0095\u0098\u00a8\u0006\"\u00074838437\u0012\u0011\b?\u0012\u0006\u0010\u00a1\u0096\u0098\u00a8\u0006\"\u000545085\u0012\u0011\b@\u0012\u0006\u0010\u0085\u0098\u0098\u00a8\u0006\"\u000545086\u0012\u0011\bA\u0012\u0006\u0010\u00a5\u0099\u0098\u00a8\u0006\"\u000538539\u0012\u0011\bB\u0012\u0006\u0010\u00f4\u009a\u0098\u00a8\u0006\"\u000538540\u0012\u0011\bC\u0012\u0006\u0010\u00fa\u009c\u0098\u00a8\u0006\"\u000538544\u0012\u0011\bD\u0012\u0006\u0010\u00ce\u009e\u0098\u00a8\u0006\"\u000538545\u0012\u0011\bE\u0012\u0006\u0010\u00cb\u00a1\u0098\u00a8\u0006\"\u000538546\u0012\u0011\bF\u0012\u0006\u0010\u00ca\u00a3\u0098\u00a8\u0006\"\u000538547\u0012\u0011\bG\u0012\u0006\u0010\u00bc\u00a5\u0098\u00a8\u0006\"\u000538548\u0012\u0011\bH\u0012\u0006\u0010\u00e5\u00a7\u0098\u00a8\u0006\"\u000538549\u0012\u0011\bI\u0012\u0006\u0010\u00ed\u00a9\u0098\u00a8\u0006\"\u000538550\u0012\u0011\bJ\u0012\u0006\u0010\u00d5\u00ad\u0098\u00a8\u0006\"\u000538551\u0012\u0011\bK\u0012\u0006\u0010\u00ae\u00b1\u0098\u00a8\u0006\"\u000538552\u0012\u0011\bL\u0012\u0006\u0010\u00a2\u00b5\u0098\u00a8\u0006\"\u000549359\u0012\u0011\bM\u0012\u0006\u0010\u00e6\u00b7\u0098\u00a8\u0006\"\u000549360\u0012\u0011\bN\u0012\u0006\u0010\u0082\u00be\u0098\u00a8\u0006\"\u000549361\u0012\u0011\bO\u0012\u0006\u0010\u00d6\u00bf\u0098\u00a8\u0006\"\u000549362\u0012\u0011\bP\u0012\u0006\u0010\u00d4\u00c2\u0098\u00a8\u0006\"\u000549363\u0012\u0011\bQ\u0012\u0006\u0010\u00f8\u00c5\u0098\u00a8\u0006\"\u000549364\u0012\u0011\bR\u0012\u0006\u0010\u0088\u00c9\u0098\u00a8\u0006\"\u000549365\u001a\b\u001a\u0006YJ2006 \u0098\u00e8\u0097\u00a8\u0006\"`\n/\n\u001017986-701ff27f-2\u0012\b15:21:00\u001a\b20230916 \u0000*\u00035730\u0000\u0012\u001d\rHT\u0013\u00c2\u0015\u001cG\u0092\u00c2\u001d\u0000\u0000&C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-9\u008eCA(\u0098\u00e8\u0097\u00a8\u0006B\b\u001a\u0006YJ2006" + }, + { + "type": "con_recorrido", + "entity": "\n$47d51281-8a1f-42e6-ba0b-22e88a4cf1f9\u001a\u009f\u0007\n/\n\u001018098-701ff27f-2\u0012\b14:41:00\u001a\b20230916 \u0000*\u00035740\u0000\u0012\u0011\b\u001b\u0012\u0006\u0010\u00ec\u00e8\u0097\u00a8\u0006\"\u000535797\u0012\u0011\b\u001c\u0012\u0006\u0010\u0098\u00e9\u0097\u00a8\u0006\"\u000535798\u0012\u0011\b\u001d\u0012\u0006\u0010\u00c1\u00e9\u0097\u00a8\u0006\"\u000535799\u0012\u0011\b\u001e\u0012\u0006\u0010\u0089\u00ea\u0097\u00a8\u0006\"\u000535800\u0012\u0011\b\u001f\u0012\u0006\u0010\u00bc\u00ea\u0097\u00a8\u0006\"\u000535801\u0012\u0011\b \u0012\u0006\u0010\u00d7\u00ea\u0097\u00a8\u0006\"\u000535802\u0012\u0011\b!\u0012\u0006\u0010\u00a3\u00eb\u0097\u00a8\u0006\"\u000538520\u0012\u0011\b\"\u0012\u0006\u0010\u00d0\u00eb\u0097\u00a8\u0006\"\u000538521\u0012\u0011\b#\u0012\u0006\u0010\u0082\u00ec\u0097\u00a8\u0006\"\u000538522\u0012\u0011\b$\u0012\u0006\u0010\u00b4\u00ec\u0097\u00a8\u0006\"\u000538523\u0012\u0011\b%\u0012\u0006\u0010\u00e8\u00ec\u0097\u00a8\u0006\"\u000538524\u0012\u0011\b&\u0012\u0006\u0010\u0098\u00ed\u0097\u00a8\u0006\"\u000538525\u0012\u0011\b'\u0012\u0006\u0010\u00cc\u00ed\u0097\u00a8\u0006\"\u000538526\u0012\u0011\b(\u0012\u0006\u0010\u00fb\u00ed\u0097\u00a8\u0006\"\u000538527\u0012\u0011\b)\u0012\u0006\u0010\u00d1\u00ee\u0097\u00a8\u0006\"\u000538528\u0012\u0011\b*\u0012\u0006\u0010\u00c5\u00ef\u0097\u00a8\u0006\"\u000538529\u0012\u0011\b+\u0012\u0006\u0010\u008d\u00f1\u0097\u00a8\u0006\"\u000538530\u0012\u0014\b,\u0012\u0006\u0010\u009a\u00f1\u0097\u00a8\u0006\"\b16005209\u0012\u0011\b-\u0012\u0006\u0010\u0080\u00f3\u0097\u00a8\u0006\"\u000538531\u0012\u0013\b.\u0012\u0006\u0010\u00b6\u00f3\u0097\u00a8\u0006\"\u00078921285\u0012\u0011\b/\u0012\u0006\u0010\u00a4\u00f4\u0097\u00a8\u0006\"\u000538532\u0012\u0011\b0\u0012\u0006\u0010\u00d9\u00f4\u0097\u00a8\u0006\"\u000538533\u0012\u0011\b1\u0012\u0006\u0010\u008f\u00f5\u0097\u00a8\u0006\"\u000538534\u0012\u0011\b2\u0012\u0006\u0010\u00c0\u00f5\u0097\u00a8\u0006\"\u000538535\u0012\u0011\b3\u0012\u0006\u0010\u00f9\u00f5\u0097\u00a8\u0006\"\u000538536\u0012\u0013\b4\u0012\u0006\u0010\u00a6\u00f6\u0097\u00a8\u0006\"\u00074838437\u0012\u0011\b5\u0012\u0006\u0010\u00de\u00f6\u0097\u00a8\u0006\"\u000545085\u0012\u0011\b6\u0012\u0006\u0010\u00af\u00f7\u0097\u00a8\u0006\"\u000545086\u0012\u0011\b7\u0012\u0006\u0010\u00e4\u00f7\u0097\u00a8\u0006\"\u000538539\u0012\u0011\b8\u0012\u0006\u0010\u00aa\u00f8\u0097\u00a8\u0006\"\u000538540\u0012\u0011\b9\u0012\u0006\u0010\u00fe\u00f8\u0097\u00a8\u0006\"\u000538544\u0012\u0011\b:\u0012\u0006\u0010\u00c9\u00f9\u0097\u00a8\u0006\"\u000538545\u0012\u0011\b;\u0012\u0006\u0010\u00ae\u00fa\u0097\u00a8\u0006\"\u000538546\u0012\u0011\b<\u0012\u0006\u0010\u00b6\u00fb\u0097\u00a8\u0006\"\u000538548\u0012\u0011\b=\u0012\u0006\u0010\u0083\u00fc\u0097\u00a8\u0006\"\u000538549\u0012\u0011\b>\u0012\u0006\u0010\u00c5\u00fc\u0097\u00a8\u0006\"\u000538550\u0012\u0011\b?\u0012\u0006\u0010\u00b8\u00fd\u0097\u00a8\u0006\"\u000538551\u0012\u0011\b@\u0012\u0006\u0010\u00a1\u00fe\u0097\u00a8\u0006\"\u000538552\u0012\u0011\bA\u0012\u0006\u0010\u0089\u00ff\u0097\u00a8\u0006\"\u000549359\u0012\u0011\bB\u0012\u0006\u0010\u00c9\u00ff\u0097\u00a8\u0006\"\u000549360\u0012\u0011\bC\u0012\u0006\u0010\u00dd\u0080\u0098\u00a8\u0006\"\u000549361\u0012\u0011\bD\u0012\u0006\u0010\u0082\u0081\u0098\u00a8\u0006\"\u000549362\u0012\u0011\bE\u0012\u0006\u0010\u00c3\u0081\u0098\u00a8\u0006\"\u000549363\u0012\u0011\bF\u0012\u0006\u0010\u0087\u0082\u0098\u00a8\u0006\"\u000549364\u0012\u0011\bG\u0012\u0006\u0010\u00c4\u0082\u0098\u00a8\u0006\"\u000549365\u001a\b\u001a\u0006BLYD48 \u00c9\u00e8\u0097\u00a8\u0006\"`\n/\n\u001018098-701ff27f-2\u0012\b14:41:00\u001a\b20230916 \u0000*\u00035740\u0000\u0012\u001d\r\u0016N\u0013\u00c2\u0015!\u001e\u0092\u00c2\u001d\u0000\u0000\u0080B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008e\u00e3\u0000A(\u00c9\u00e8\u0097\u00a8\u0006B\b\u001a\u0006BLYD48" + }, + { + "type": "con_recorrido", + "entity": "\n$bff55ba6-ac13-41ce-b583-54e0d3f39d28\u001a\u008a\b\n/\n\u001018044-701ff27f-2\u0012\b15:40:00\u001a\b20230916 \u0000*\u00035740\u0001\u0012\u0011\b\u001b\u0012\u0006\u0010\u00f0\u00e8\u0097\u00a8\u0006\"\u000540993\u0012\u0011\b\u001c\u0012\u0006\u0010\u00e5\u00ec\u0097\u00a8\u0006\"\u000540995\u0012\u0011\b\u001d\u0012\u0006\u0010\u00b4\u00ed\u0097\u00a8\u0006\"\u000540996\u0012\u0011\b\u001e\u0012\u0006\u0010\u0080\u00ee\u0097\u00a8\u0006\"\u000540997\u0012\u0011\b\u001f\u0012\u0006\u0010\u00b9\u00ee\u0097\u00a8\u0006\"\u000539614\u0012\u0011\b \u0012\u0006\u0010\u00e8\u00ee\u0097\u00a8\u0006\"\u000539615\u0012\u0011\b!\u0012\u0006\u0010\u0097\u00ef\u0097\u00a8\u0006\"\u000539616\u0012\u0011\b\"\u0012\u0006\u0010\u00cc\u00ef\u0097\u00a8\u0006\"\u000539617\u0012\u0011\b#\u0012\u0006\u0010\u0084\u00f0\u0097\u00a8\u0006\"\u000539618\u0012\u0011\b$\u0012\u0006\u0010\u00b0\u00f0\u0097\u00a8\u0006\"\u000539619\u0012\u0011\b%\u0012\u0006\u0010\u00d6\u00f0\u0097\u00a8\u0006\"\u000539620\u0012\u0011\b&\u0012\u0006\u0010\u009a\u00f1\u0097\u00a8\u0006\"\u000539621\u0012\u0011\b'\u0012\u0006\u0010\u00c9\u00f1\u0097\u00a8\u0006\"\u000538281\u0012\u0011\b(\u0012\u0006\u0010\u00ff\u00f1\u0097\u00a8\u0006\"\u000537506\u0012\u0011\b)\u0012\u0006\u0010\u00dc\u00f2\u0097\u00a8\u0006\"\u000537520\u0012\u0011\b*\u0012\u0006\u0010\u00c6\u00f3\u0097\u00a8\u0006\"\u000537470\u0012\u0011\b+\u0012\u0006\u0010\u00de\u00f3\u0097\u00a8\u0006\"\u000537477\u0012\u0011\b,\u0012\u0006\u0010\u00fb\u00f3\u0097\u00a8\u0006\"\u000591118\u0012\u0011\b-\u0012\u0006\u0010\u00ba\u00f4\u0097\u00a8\u0006\"\u000535223\u0012\u0011\b.\u0012\u0006\u0010\u00e7\u00f4\u0097\u00a8\u0006\"\u000539547\u0012\u0011\b/\u0012\u0006\u0010\u00b4\u00f5\u0097\u00a8\u0006\"\u000535224\u0012\u0011\b0\u0012\u0006\u0010\u00e8\u00f6\u0097\u00a8\u0006\"\u000535225\u0012\u0011\b1\u0012\u0006\u0010\u00d5\u00fb\u0097\u00a8\u0006\"\u000535748\u0012\u0011\b2\u0012\u0006\u0010\u00a5\u00fc\u0097\u00a8\u0006\"\u000535749\u0012\u0011\b3\u0012\u0006\u0010\u00dd\u00fc\u0097\u00a8\u0006\"\u000535750\u0012\u0011\b4\u0012\u0006\u0010\u00bc\u00fd\u0097\u00a8\u0006\"\u000535751\u0012\u0011\b5\u0012\u0006\u0010\u0086\u00fe\u0097\u00a8\u0006\"\u000535789\u0012\u0011\b6\u0012\u0006\u0010\u00cb\u00fe\u0097\u00a8\u0006\"\u000535752\u0012\u0011\b7\u0012\u0006\u0010\u0083\u0080\u0098\u00a8\u0006\"\u000535417\u0012\u0011\b8\u0012\u0006\u0010\u00e4\u0080\u0098\u00a8\u0006\"\u000535755\u0012\u0011\b9\u0012\u0006\u0010\u009e\u0083\u0098\u00a8\u0006\"\u000535756\u0012\u0011\b:\u0012\u0006\u0010\u00cf\u0084\u0098\u00a8\u0006\"\u000535757\u0012\u0011\b;\u0012\u0006\u0010\u0097\u0085\u0098\u00a8\u0006\"\u000535758\u0012\u0011\b<\u0012\u0006\u0010\u00a4\u0085\u0098\u00a8\u0006\"\u000535759\u0012\u0011\b=\u0012\u0006\u0010\u00fa\u0085\u0098\u00a8\u0006\"\u000535522\u0012\u0011\b>\u0012\u0006\u0010\u00d8\u0086\u0098\u00a8\u0006\"\u000535508\u0012\u0011\b?\u0012\u0006\u0010\u0098\u0087\u0098\u00a8\u0006\"\u000535514\u0012\u0011\b@\u0012\u0006\u0010\u00ef\u0087\u0098\u00a8\u0006\"\u000535515\u0012\u0011\bA\u0012\u0006\u0010\u00cb\u0088\u0098\u00a8\u0006\"\u000535516\u0012\u0011\bB\u0012\u0006\u0010\u0088\u0089\u0098\u00a8\u0006\"\u000535517\u0012\u0011\bC\u0012\u0006\u0010\u0098\u008a\u0098\u00a8\u0006\"\u000535763\u0012\u0011\bD\u0012\u0006\u0010\u0092\u008b\u0098\u00a8\u0006\"\u000535761\u0012\u0011\bE\u0012\u0006\u0010\u00ee\u008b\u0098\u00a8\u0006\"\u000535760\u0012\u0011\bF\u0012\u0006\u0010\u00b6\u008c\u0098\u00a8\u0006\"\u000535523\u0012\u0011\bG\u0012\u0006\u0010\u008a\u008d\u0098\u00a8\u0006\"\u000534960\u0012\u0011\bH\u0012\u0006\u0010\u00c4\u008d\u0098\u00a8\u0006\"\u000534961\u0012\u0011\bI\u0012\u0006\u0010\u00fb\u008e\u0098\u00a8\u0006\"\u000534962\u0012\u0011\bJ\u0012\u0006\u0010\u0088\u0090\u0098\u00a8\u0006\"\u000534963\u0012\u0011\bK\u0012\u0006\u0010\u00ee\u0090\u0098\u00a8\u0006\"\u000534964\u0012\u0011\bL\u0012\u0006\u0010\u00ef\u0091\u0098\u00a8\u0006\"\u000534965\u0012\u0011\bM\u0012\u0006\u0010\u009b\u0093\u0098\u00a8\u0006\"\u000534966\u001a\b\u001a\u0006CZZL74 \u0090\u00e8\u0097\u00a8\u0006\"`\n/\n\u001018044-701ff27f-2\u0012\b15:40:00\u001a\b20230916 \u0000*\u00035740\u0001\u0012\u001d\r\u00a0\u001c\u0013\u00c2\u0015J(\u0092\u00c2\u001d\u0000\u0000\u001aC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008e\u00e3\u0094A(\u0090\u00e8\u0097\u00a8\u0006B\b\u001a\u0006CZZL74" + }, + { + "type": "con_recorrido", + "entity": "\n$caecf9f1-c916-4b66-ac7b-2a7e5d6e2fc0\u001a\u00fa\n\n/\n\u001018101-701ff27f-2\u0012\b15:41:00\u001a\b20230916 \u0000*\u00035740\u0000\u0012\u0011\b\u0002\u0012\u0006\u0010\u00c5\u00e9\u0097\u00a8\u0006\"\u000534971\u0012\u0011\b\u0003\u0012\u0006\u0010\u00e3\u00e9\u0097\u00a8\u0006\"\u000534972\u0012\u0011\b\u0004\u0012\u0006\u0010\u0088\u00ea\u0097\u00a8\u0006\"\u000534973\u0012\u0011\b\u0005\u0012\u0006\u0010\u00aa\u00ea\u0097\u00a8\u0006\"\u000534974\u0012\u0011\b\u0006\u0012\u0006\u0010\u0081\u00eb\u0097\u00a8\u0006\"\u000534961\u0012\u0011\b\u0007\u0012\u0006\u0010\u00b9\u00ec\u0097\u00a8\u0006\"\u000535762\u0012\u0011\b\b\u0012\u0006\u0010\u008a\u00ed\u0097\u00a8\u0006\"\u000535764\u0012\u0011\b\t\u0012\u0006\u0010\u00c1\u00ed\u0097\u00a8\u0006\"\u000535766\u0012\u0011\b\n\u0012\u0006\u0010\u00f9\u00ed\u0097\u00a8\u0006\"\u000535767\u0012\u0011\b\u000b\u0012\u0006\u0010\u00b3\u00ee\u0097\u00a8\u0006\"\u000535398\u0012\u0011\b\f\u0012\u0006\u0010\u0091\u00ef\u0097\u00a8\u0006\"\u000535760\u0012\u0011\b\r\u0012\u0006\u0010\u00bb\u00ef\u0097\u00a8\u0006\"\u000535759\u0012\u0011\b\u000e\u0012\u0006\u0010\u00fc\u00ef\u0097\u00a8\u0006\"\u000535524\u0012\u0011\b\u000f\u0012\u0006\u0010\u00da\u00f0\u0097\u00a8\u0006\"\u000535525\u0012\u0011\b\u0010\u0012\u0006\u0010\u00e1\u00f2\u0097\u00a8\u0006\"\u000535786\u0012\u0011\b\u0011\u0012\u0006\u0010\u009a\u00f3\u0097\u00a8\u0006\"\u000535787\u0012\u0011\b\u0012\u0012\u0006\u0010\u00da\u00f3\u0097\u00a8\u0006\"\u000535788\u0012\u0011\b\u0013\u0012\u0006\u0010\u00c3\u00f4\u0097\u00a8\u0006\"\u000535789\u0012\u0011\b\u0014\u0012\u0006\u0010\u00ef\u00f4\u0097\u00a8\u0006\"\u000535790\u0012\u0011\b\u0015\u0012\u0006\u0010\u00c1\u00f5\u0097\u00a8\u0006\"\u000535791\u0012\u0011\b\u0016\u0012\u0006\u0010\u00f6\u00f5\u0097\u00a8\u0006\"\u000535792\u0012\u0011\b\u0017\u0012\u0006\u0010\u00ab\u00f6\u0097\u00a8\u0006\"\u000535793\u0012\u0011\b\u0018\u0012\u0006\u0010\u00a3\u00f7\u0097\u00a8\u0006\"\u000591116\u0012\u0011\b\u0019\u0012\u0006\u0010\u00a4\u00fb\u0097\u00a8\u0006\"\u000535794\u0012\u0011\b\u001a\u0012\u0006\u0010\u0091\u00fc\u0097\u00a8\u0006\"\u000535796\u0012\u0011\b\u001b\u0012\u0006\u0010\u00cc\u00fc\u0097\u00a8\u0006\"\u000535797\u0012\u0011\b\u001c\u0012\u0006\u0010\u00fd\u00fc\u0097\u00a8\u0006\"\u000535798\u0012\u0011\b\u001d\u0012\u0006\u0010\u00ac\u00fd\u0097\u00a8\u0006\"\u000535799\u0012\u0011\b\u001e\u0012\u0006\u0010\u0082\u00fe\u0097\u00a8\u0006\"\u000535800\u0012\u0011\b\u001f\u0012\u0006\u0010\u00c0\u00fe\u0097\u00a8\u0006\"\u000535801\u0012\u0011\b \u0012\u0006\u0010\u00e1\u00fe\u0097\u00a8\u0006\"\u000535802\u0012\u0011\b!\u0012\u0006\u0010\u00c2\u00ff\u0097\u00a8\u0006\"\u000538520\u0012\u0011\b\"\u0012\u0006\u0010\u00fc\u00ff\u0097\u00a8\u0006\"\u000538521\u0012\u0011\b#\u0012\u0006\u0010\u00bf\u0080\u0098\u00a8\u0006\"\u000538522\u0012\u0011\b$\u0012\u0006\u0010\u0083\u0081\u0098\u00a8\u0006\"\u000538523\u0012\u0011\b%\u0012\u0006\u0010\u00cc\u0081\u0098\u00a8\u0006\"\u000538524\u0012\u0011\b&\u0012\u0006\u0010\u0092\u0082\u0098\u00a8\u0006\"\u000538525\u0012\u0011\b'\u0012\u0006\u0010\u00dd\u0082\u0098\u00a8\u0006\"\u000538526\u0012\u0011\b(\u0012\u0006\u0010\u00a4\u0083\u0098\u00a8\u0006\"\u000538527\u0012\u0011\b)\u0012\u0006\u0010\u00a9\u0084\u0098\u00a8\u0006\"\u000538528\u0012\u0011\b*\u0012\u0006\u0010\u00e7\u0085\u0098\u00a8\u0006\"\u000538529\u0012\u0011\b+\u0012\u0006\u0010\u00c4\u0088\u0098\u00a8\u0006\"\u000538530\u0012\u0014\b,\u0012\u0006\u0010\u00db\u0088\u0098\u00a8\u0006\"\b16005209\u0012\u0011\b-\u0012\u0006\u0010\u009d\u008c\u0098\u00a8\u0006\"\u000538531\u0012\u0013\b.\u0012\u0006\u0010\u008f\u008d\u0098\u00a8\u0006\"\u00078921285\u0012\u0011\b/\u0012\u0006\u0010\u00fe\u008e\u0098\u00a8\u0006\"\u000538532\u0012\u0011\b0\u0012\u0006\u0010\u00f5\u008f\u0098\u00a8\u0006\"\u000538533\u0012\u0011\b1\u0012\u0006\u0010\u00f3\u0090\u0098\u00a8\u0006\"\u000538534\u0012\u0011\b2\u0012\u0006\u0010\u00e7\u0091\u0098\u00a8\u0006\"\u000538535\u0012\u0011\b3\u0012\u0006\u0010\u00f4\u0092\u0098\u00a8\u0006\"\u000538536\u0012\u0013\b4\u0012\u0006\u0010\u00e5\u0093\u0098\u00a8\u0006\"\u00074838437\u0012\u0011\b5\u0012\u0006\u0010\u00f5\u0094\u0098\u00a8\u0006\"\u000545085\u0012\u0011\b6\u0012\u0006\u0010\u00cb\u0096\u0098\u00a8\u0006\"\u000545086\u0012\u0011\b7\u0012\u0006\u0010\u00de\u0097\u0098\u00a8\u0006\"\u000538539\u0012\u0011\b8\u0012\u0006\u0010\u00a2\u0099\u0098\u00a8\u0006\"\u000538540\u0012\u0011\b9\u0012\u0006\u0010\u009a\u009b\u0098\u00a8\u0006\"\u000538544\u0012\u0011\b:\u0012\u0006\u0010\u0080\u009d\u0098\u00a8\u0006\"\u000538545\u0012\u0011\b;\u0012\u0006\u0010\u00c3\u009f\u0098\u00a8\u0006\"\u000538546\u0012\u0011\b<\u0012\u0006\u0010\u0096\u00a3\u0098\u00a8\u0006\"\u000538548\u0012\u0011\b=\u0012\u0006\u0010\u00ab\u00a5\u0098\u00a8\u0006\"\u000538549\u0012\u0011\b>\u0012\u0006\u0010\u00a1\u00a7\u0098\u00a8\u0006\"\u000538550\u0012\u0011\b?\u0012\u0006\u0010\u00e7\u00aa\u0098\u00a8\u0006\"\u000538551\u0012\u0011\b@\u0012\u0006\u0010\u009d\u00ae\u0098\u00a8\u0006\"\u000538552\u0012\u0011\bA\u0012\u0006\u0010\u00eb\u00b1\u0098\u00a8\u0006\"\u000549359\u0012\u0011\bB\u0012\u0006\u0010\u0095\u00b4\u0098\u00a8\u0006\"\u000549360\u0012\u0011\bC\u0012\u0006\u0010\u00ef\u00b9\u0098\u00a8\u0006\"\u000549361\u0012\u0011\bD\u0012\u0006\u0010\u00b0\u00bb\u0098\u00a8\u0006\"\u000549362\u0012\u0011\bE\u0012\u0006\u0010\u008c\u00be\u0098\u00a8\u0006\"\u000549363\u0012\u0011\bF\u0012\u0006\u0010\u0089\u00c1\u0098\u00a8\u0006\"\u000549364\u0012\u0011\bG\u0012\u0006\u0010\u00f1\u00c3\u0098\u00a8\u0006\"\u000549365\u001a\b\u001a\u0006FPKV41 \u00b2\u00e8\u0097\u00a8\u0006\"`\n/\n\u001018101-701ff27f-2\u0012\b15:41:00\u001a\b20230916 \u0000*\u00035740\u0000\u0012\u001d\r\u00e2M\u0013\u00c2\u0015yK\u0092\u00c2\u001d\u0000\u0000@B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u008e@(\u00b2\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FPKV41" + }, + { + "type": "con_recorrido", + "entity": "\n$bf4b68b7-a613-4eae-8bd7-88de69ed8f94\u001a\u00e2\t\n/\n\u001018100-701ff27f-2\u0012\b15:21:00\u001a\b20230916 \u0000*\u00035740\u0000\u0012\u0011\b\n\u0012\u0006\u0010\u00e8\u00e7\u0097\u00a8\u0006\"\u000535767\u0012\u0011\b\u000b\u0012\u0006\u0010\u00a7\u00e8\u0097\u00a8\u0006\"\u000535398\u0012\u0011\b\f\u0012\u0006\u0010\u008c\u00e9\u0097\u00a8\u0006\"\u000535760\u0012\u0011\b\r\u0012\u0006\u0010\u00b8\u00e9\u0097\u00a8\u0006\"\u000535759\u0012\u0011\b\u000e\u0012\u0006\u0010\u00fd\u00e9\u0097\u00a8\u0006\"\u000535524\u0012\u0011\b\u000f\u0012\u0006\u0010\u00df\u00ea\u0097\u00a8\u0006\"\u000535525\u0012\u0011\b\u0010\u0012\u0006\u0010\u00eb\u00ec\u0097\u00a8\u0006\"\u000535786\u0012\u0011\b\u0011\u0012\u0006\u0010\u00a3\u00ed\u0097\u00a8\u0006\"\u000535787\u0012\u0011\b\u0012\u0012\u0006\u0010\u00e3\u00ed\u0097\u00a8\u0006\"\u000535788\u0012\u0011\b\u0013\u0012\u0006\u0010\u00ca\u00ee\u0097\u00a8\u0006\"\u000535789\u0012\u0011\b\u0014\u0012\u0006\u0010\u00f4\u00ee\u0097\u00a8\u0006\"\u000535790\u0012\u0011\b\u0015\u0012\u0006\u0010\u00c3\u00ef\u0097\u00a8\u0006\"\u000535791\u0012\u0011\b\u0016\u0012\u0006\u0010\u00f6\u00ef\u0097\u00a8\u0006\"\u000535792\u0012\u0011\b\u0017\u0012\u0006\u0010\u00a8\u00f0\u0097\u00a8\u0006\"\u000535793\u0012\u0011\b\u0018\u0012\u0006\u0010\u0098\u00f1\u0097\u00a8\u0006\"\u000591116\u0012\u0011\b\u0019\u0012\u0006\u0010\u00e9\u00f4\u0097\u00a8\u0006\"\u000535794\u0012\u0011\b\u001a\u0012\u0006\u0010\u00c9\u00f5\u0097\u00a8\u0006\"\u000535796\u0012\u0011\b\u001b\u0012\u0006\u0010\u00fc\u00f5\u0097\u00a8\u0006\"\u000535797\u0012\u0011\b\u001c\u0012\u0006\u0010\u00a7\u00f6\u0097\u00a8\u0006\"\u000535798\u0012\u0011\b\u001d\u0012\u0006\u0010\u00cf\u00f6\u0097\u00a8\u0006\"\u000535799\u0012\u0011\b\u001e\u0012\u0006\u0010\u0099\u00f7\u0097\u00a8\u0006\"\u000535800\u0012\u0011\b\u001f\u0012\u0006\u0010\u00ce\u00f7\u0097\u00a8\u0006\"\u000535801\u0012\u0011\b \u0012\u0006\u0010\u00e9\u00f7\u0097\u00a8\u0006\"\u000535802\u0012\u0011\b!\u0012\u0006\u0010\u00bb\u00f8\u0097\u00a8\u0006\"\u000538520\u0012\u0011\b\"\u0012\u0006\u0010\u00ec\u00f8\u0097\u00a8\u0006\"\u000538521\u0012\u0011\b#\u0012\u0006\u0010\u00a3\u00f9\u0097\u00a8\u0006\"\u000538522\u0012\u0011\b$\u0012\u0006\u0010\u00db\u00f9\u0097\u00a8\u0006\"\u000538523\u0012\u0011\b%\u0012\u0006\u0010\u0097\u00fa\u0097\u00a8\u0006\"\u000538524\u0012\u0011\b&\u0012\u0006\u0010\u00d0\u00fa\u0097\u00a8\u0006\"\u000538525\u0012\u0011\b'\u0012\u0006\u0010\u008d\u00fb\u0097\u00a8\u0006\"\u000538526\u0012\u0011\b(\u0012\u0006\u0010\u00c7\u00fb\u0097\u00a8\u0006\"\u000538527\u0012\u0011\b)\u0012\u0006\u0010\u00b0\u00fc\u0097\u00a8\u0006\"\u000538528\u0012\u0011\b*\u0012\u0006\u0010\u00c6\u00fd\u0097\u00a8\u0006\"\u000538529\u0012\u0011\b+\u0012\u0006\u0010\u00d5\u00ff\u0097\u00a8\u0006\"\u000538530\u0012\u0014\b,\u0012\u0006\u0010\u00e7\u00ff\u0097\u00a8\u0006\"\b16005209\u0012\u0011\b-\u0012\u0006\u0010\u00b8\u0082\u0098\u00a8\u0006\"\u000538531\u0012\u0013\b.\u0012\u0006\u0010\u008c\u0083\u0098\u00a8\u0006\"\u00078921285\u0012\u0011\b/\u0012\u0006\u0010\u00ba\u0084\u0098\u00a8\u0006\"\u000538532\u0012\u0011\b0\u0012\u0006\u0010\u008f\u0085\u0098\u00a8\u0006\"\u000538533\u0012\u0011\b1\u0012\u0006\u0010\u00e9\u0085\u0098\u00a8\u0006\"\u000538534\u0012\u0011\b2\u0012\u0006\u0010\u00bb\u0086\u0098\u00a8\u0006\"\u000538535\u0012\u0011\b3\u0012\u0006\u0010\u009e\u0087\u0098\u00a8\u0006\"\u000538536\u0012\u0013\b4\u0012\u0006\u0010\u00ed\u0087\u0098\u00a8\u0006\"\u00074838437\u0012\u0011\b5\u0012\u0006\u0010\u00d0\u0088\u0098\u00a8\u0006\"\u000545085\u0012\u0011\b6\u0012\u0006\u0010\u00e2\u0089\u0098\u00a8\u0006\"\u000545086\u0012\u0011\b7\u0012\u0006\u0010\u00c5\u008a\u0098\u00a8\u0006\"\u000538539\u0012\u0011\b8\u0012\u0006\u0010\u00c9\u008b\u0098\u00a8\u0006\"\u000538540\u0012\u0011\b9\u0012\u0006\u0010\u00ec\u008c\u0098\u00a8\u0006\"\u000538544\u0012\u0011\b:\u0012\u0006\u0010\u0082\u008e\u0098\u00a8\u0006\"\u000538545\u0012\u0011\b;\u0012\u0006\u0010\u00d1\u008f\u0098\u00a8\u0006\"\u000538546\u0012\u0011\b<\u0012\u0006\u0010\u00f5\u0091\u0098\u00a8\u0006\"\u000538548\u0012\u0011\b=\u0012\u0006\u0010\u00a0\u0093\u0098\u00a8\u0006\"\u000538549\u0012\u0011\b>\u0012\u0006\u0010\u00b4\u0094\u0098\u00a8\u0006\"\u000538550\u0012\u0011\b?\u0012\u0006\u0010\u00c2\u0096\u0098\u00a8\u0006\"\u000538551\u0012\u0011\b@\u0012\u0006\u0010\u00c0\u0098\u0098\u00a8\u0006\"\u000538552\u0012\u0011\bA\u0012\u0006\u0010\u00c6\u009a\u0098\u00a8\u0006\"\u000549359\u0012\u0011\bB\u0012\u0006\u0010\u00eb\u009b\u0098\u00a8\u0006\"\u000549360\u0012\u0011\bC\u0012\u0006\u0010\u00f6\u009e\u0098\u00a8\u0006\"\u000549361\u0012\u0011\bD\u0012\u0006\u0010\u00dc\u009f\u0098\u00a8\u0006\"\u000549362\u0012\u0011\bE\u0012\u0006\u0010\u0092\u00a1\u0098\u00a8\u0006\"\u000549363\u0012\u0011\bF\u0012\u0006\u0010\u00d6\u00a2\u0098\u00a8\u0006\"\u000549364\u0012\u0011\bG\u0012\u0006\u0010\u008b\u00a4\u0098\u00a8\u0006\"\u000549365\u001a\b\u001a\u0006RXFF50 \u00b6\u00e7\u0097\u00a8\u0006\"`\n/\n\u001018100-701ff27f-2\u0012\b15:21:00\u001a\b20230916 \u0000*\u00035740\u0000\u0012\u001d\r\u00a7Y\u0013\u00c2\u0015SL\u0092\u00c2\u001d\u0000\u0000\u0080@!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008e\u00e3\u00f8@(\u009c\u00e8\u0097\u00a8\u0006B\b\u001a\u0006RXFF50" + }, + { + "type": "con_recorrido", + "entity": "\n$6b0b6c77-d360-4d24-9593-c452febf3cc0\u001a\u00de\u0002\n/\n\u001018097-701ff27f-2\u0012\b14:21:00\u001a\b20230916 \u0000*\u00035740\u0000\u0012\u0011\b9\u0012\u0006\u0010\u0091\u00e9\u0097\u00a8\u0006\"\u000538544\u0012\u0011\b:\u0012\u0006\u0010\u00d9\u00e9\u0097\u00a8\u0006\"\u000538545\u0012\u0011\b;\u0012\u0006\u0010\u00b8\u00ea\u0097\u00a8\u0006\"\u000538546\u0012\u0011\b<\u0012\u0006\u0010\u00b3\u00eb\u0097\u00a8\u0006\"\u000538548\u0012\u0011\b=\u0012\u0006\u0010\u00f5\u00eb\u0097\u00a8\u0006\"\u000538549\u0012\u0011\b>\u0012\u0006\u0010\u00ad\u00ec\u0097\u00a8\u0006\"\u000538550\u0012\u0011\b?\u0012\u0006\u0010\u008c\u00ed\u0097\u00a8\u0006\"\u000538551\u0012\u0011\b@\u0012\u0006\u0010\u00df\u00ed\u0097\u00a8\u0006\"\u000538552\u0012\u0011\bA\u0012\u0006\u0010\u00b0\u00ee\u0097\u00a8\u0006\"\u000549359\u0012\u0011\bB\u0012\u0006\u0010\u00e0\u00ee\u0097\u00a8\u0006\"\u000549360\u0012\u0011\bC\u0012\u0006\u0010\u00cc\u00ef\u0097\u00a8\u0006\"\u000549361\u0012\u0011\bD\u0012\u0006\u0010\u00e6\u00ef\u0097\u00a8\u0006\"\u000549362\u0012\u0011\bE\u0012\u0006\u0010\u0094\u00f0\u0097\u00a8\u0006\"\u000549363\u0012\u0011\bF\u0012\u0006\u0010\u00c2\u00f0\u0097\u00a8\u0006\"\u000549364\u0012\u0011\bG\u0012\u0006\u0010\u00ec\u00f0\u0097\u00a8\u0006\"\u000549365\u001a\b\u001a\u0006WK6953 \u00c8\u00e8\u0097\u00a8\u0006\"`\n/\n\u001018097-701ff27f-2\u0012\b14:21:00\u001a\b20230916 \u0000*\u00035740\u0000\u0012\u001d\r \u0003\u0013\u00c2\u0015F/\u0092\u00c2\u001d\u0000\u0000\u00b0C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u001c\u00c7\tA(\u00c8\u00e8\u0097\u00a8\u0006B\b\u001a\u0006WK6953" + }, + { + "type": "con_recorrido", + "entity": "\n$966a99a6-4dde-4759-8fd3-b6f66b9356da\u001a\u00e8\u0004\n/\n\u001018043-701ff27f-2\u0012\b15:20:00\u001a\b20230916 \u0000*\u00035740\u0001\u0012\u0011\b1\u0012\u0006\u0010\u00bf\u00ea\u0097\u00a8\u0006\"\u000535748\u0012\u0011\b2\u0012\u0006\u0010\u0084\u00eb\u0097\u00a8\u0006\"\u000535749\u0012\u0011\b3\u0012\u0006\u0010\u00b3\u00eb\u0097\u00a8\u0006\"\u000535750\u0012\u0011\b4\u0012\u0006\u0010\u0080\u00ec\u0097\u00a8\u0006\"\u000535751\u0012\u0011\b5\u0012\u0006\u0010\u00bb\u00ec\u0097\u00a8\u0006\"\u000535789\u0012\u0011\b6\u0012\u0006\u0010\u00f1\u00ec\u0097\u00a8\u0006\"\u000535752\u0012\u0011\b7\u0012\u0006\u0010\u00fa\u00ed\u0097\u00a8\u0006\"\u000535417\u0012\u0011\b8\u0012\u0006\u0010\u00c1\u00ee\u0097\u00a8\u0006\"\u000535755\u0012\u0011\b9\u0012\u0006\u0010\u0094\u00f0\u0097\u00a8\u0006\"\u000535756\u0012\u0011\b:\u0012\u0006\u0010\u0084\u00f1\u0097\u00a8\u0006\"\u000535757\u0012\u0011\b;\u0012\u0006\u0010\u00b1\u00f1\u0097\u00a8\u0006\"\u000535758\u0012\u0011\b<\u0012\u0006\u0010\u00b9\u00f1\u0097\u00a8\u0006\"\u000535759\u0012\u0011\b=\u0012\u0006\u0010\u00ec\u00f1\u0097\u00a8\u0006\"\u000535522\u0012\u0011\b>\u0012\u0006\u0010\u00a2\u00f2\u0097\u00a8\u0006\"\u000535508\u0012\u0011\b?\u0012\u0006\u0010\u00c7\u00f2\u0097\u00a8\u0006\"\u000535514\u0012\u0011\b@\u0012\u0006\u0010\u00f8\u00f2\u0097\u00a8\u0006\"\u000535515\u0012\u0011\bA\u0012\u0006\u0010\u00ab\u00f3\u0097\u00a8\u0006\"\u000535516\u0012\u0011\bB\u0012\u0006\u0010\u00cc\u00f3\u0097\u00a8\u0006\"\u000535517\u0012\u0011\bC\u0012\u0006\u0010\u0099\u00f4\u0097\u00a8\u0006\"\u000535763\u0012\u0011\bD\u0012\u0006\u0010\u00d8\u00f4\u0097\u00a8\u0006\"\u000535761\u0012\u0011\bE\u0012\u0006\u0010\u0086\u00f5\u0097\u00a8\u0006\"\u000535760\u0012\u0011\bF\u0012\u0006\u0010\u00aa\u00f5\u0097\u00a8\u0006\"\u000535523\u0012\u0011\bG\u0012\u0006\u0010\u00d3\u00f5\u0097\u00a8\u0006\"\u000534960\u0012\u0011\bH\u0012\u0006\u0010\u00ef\u00f5\u0097\u00a8\u0006\"\u000534961\u0012\u0011\bI\u0012\u0006\u0010\u00c5\u00f6\u0097\u00a8\u0006\"\u000534962\u0012\u0011\bJ\u0012\u0006\u0010\u0085\u00f7\u0097\u00a8\u0006\"\u000534963\u0012\u0011\bK\u0012\u0006\u0010\u00b2\u00f7\u0097\u00a8\u0006\"\u000534964\u0012\u0011\bL\u0012\u0006\u0010\u00eb\u00f7\u0097\u00a8\u0006\"\u000534965\u0012\u0011\bM\u0012\u0006\u0010\u00b3\u00f8\u0097\u00a8\u0006\"\u000534966\u001a\b\u001a\u0006YU5015 \u00af\u00e8\u0097\u00a8\u0006\"`\n/\n\u001018043-701ff27f-2\u0012\b15:20:00\u001a\b20230916 \u0000*\u00035740\u0001\u0012\u001d\rJU\u0013\u00c2\u0015M'\u0092\u00c2\u001d\u0000\u0000tC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u001c\u00c7\u00b1A(\u00af\u00e8\u0097\u00a8\u0006B\b\u001a\u0006YU5015" + }, + { + "type": "con_recorrido", + "entity": "\n$d9bfe7af-94fb-4f51-af2c-fa635479ae30\u001a\u00cd\f\n/\n\u001018214-701ff27f-2\u0012\b15:21:00\u001a\b20230916 \u0000*\u00035750\u0000\u0012\u0011\b\u0004\u0012\u0006\u0010\u00a4\u00e9\u0097\u00a8\u0006\"\u000534961\u0012\u0011\b\u0005\u0012\u0006\u0010\u00ec\u00e9\u0097\u00a8\u0006\"\u000535759\u0012\u0011\b\u0006\u0012\u0006\u0010\u009f\u00ea\u0097\u00a8\u0006\"\u000535760\u0012\u0011\b\u0007\u0012\u0006\u0010\u00e2\u00ea\u0097\u00a8\u0006\"\u000535762\u0012\u0011\b\b\u0012\u0006\u0010\u008f\u00eb\u0097\u00a8\u0006\"\u000591032\u0012\u0011\b\t\u0012\u0006\u0010\u00c4\u00eb\u0097\u00a8\u0006\"\u000591033\u0012\u0011\b\n\u0012\u0006\u0010\u00bf\u00ec\u0097\u00a8\u0006\"\u000535876\u0012\u0011\b\u000b\u0012\u0006\u0010\u008b\u00ed\u0097\u00a8\u0006\"\u000535874\u0012\u0011\b\f\u0012\u0006\u0010\u00b4\u00ed\u0097\u00a8\u0006\"\u000535873\u0012\u0011\b\r\u0012\u0006\u0010\u00d7\u00ed\u0097\u00a8\u0006\"\u000535872\u0012\u0011\b\u000e\u0012\u0006\u0010\u00f9\u00ed\u0097\u00a8\u0006\"\u000535871\u0012\u0011\b\u000f\u0012\u0006\u0010\u00a6\u00ee\u0097\u00a8\u0006\"\u000535484\u0012\u0013\b\u0010\u0012\u0006\u0010\u00e2\u00ee\u0097\u00a8\u0006\"\u00077175655\u0012\u0011\b\u0011\u0012\u0006\u0010\u00f9\u00ee\u0097\u00a8\u0006\"\u000535776\u0012\u0011\b\u0012\u0012\u0006\u0010\u009c\u00ef\u0097\u00a8\u0006\"\u000535868\u0012\u0011\b\u0013\u0012\u0006\u0010\u00ba\u00ef\u0097\u00a8\u0006\"\u000535778\u0012\u0011\b\u0014\u0012\u0006\u0010\u00e5\u00ef\u0097\u00a8\u0006\"\u000535779\u0012\u0011\b\u0015\u0012\u0006\u0010\u008b\u00f0\u0097\u00a8\u0006\"\u000535867\u0012\u0011\b\u0016\u0012\u0006\u0010\u0095\u00f0\u0097\u00a8\u0006\"\u000535781\u0012\u0011\b\u0017\u0012\u0006\u0010\u00b2\u00f0\u0097\u00a8\u0006\"\u000535782\u0012\u0011\b\u0018\u0012\u0006\u0010\u00e0\u00f0\u0097\u00a8\u0006\"\u000591038\u0012\u0011\b\u0019\u0012\u0006\u0010\u00cb\u00f1\u0097\u00a8\u0006\"\u000535783\u0012\u0011\b\u001a\u0012\u0006\u0010\u00ec\u00f1\u0097\u00a8\u0006\"\u000531013\u0012\u0011\b\u001b\u0012\u0006\u0010\u00e0\u00f2\u0097\u00a8\u0006\"\u000535785\u0012\u0011\b\u001c\u0012\u0006\u0010\u00d2\u00f4\u0097\u00a8\u0006\"\u000535786\u0012\u0011\b\u001d\u0012\u0006\u0010\u0094\u00f5\u0097\u00a8\u0006\"\u000535787\u0012\u0011\b\u001e\u0012\u0006\u0010\u00d4\u00f5\u0097\u00a8\u0006\"\u000535788\u0012\u0011\b\u001f\u0012\u0006\u0010\u00b9\u00f6\u0097\u00a8\u0006\"\u000535789\u0012\u0011\b \u0012\u0006\u0010\u00e6\u00f6\u0097\u00a8\u0006\"\u000535790\u0012\u0011\b!\u0012\u0006\u0010\u00bb\u00f7\u0097\u00a8\u0006\"\u000535791\u0012\u0011\b\"\u0012\u0006\u0010\u00ec\u00f7\u0097\u00a8\u0006\"\u000535792\u0012\u0011\b#\u0012\u0006\u0010\u00a8\u00f8\u0097\u00a8\u0006\"\u000535793\u0012\u0011\b$\u0012\u0006\u0010\u009e\u00f9\u0097\u00a8\u0006\"\u000591116\u0012\u0011\b%\u0012\u0006\u0010\u00c2\u00fd\u0097\u00a8\u0006\"\u000535794\u0012\u0011\b&\u0012\u0006\u0010\u00b6\u00fe\u0097\u00a8\u0006\"\u000535796\u0012\u0011\b'\u0012\u0006\u0010\u00f4\u00fe\u0097\u00a8\u0006\"\u000535797\u0012\u0011\b(\u0012\u0006\u0010\u00aa\u00ff\u0097\u00a8\u0006\"\u000535798\u0012\u0011\b)\u0012\u0006\u0010\u00db\u00ff\u0097\u00a8\u0006\"\u000535799\u0012\u0011\b*\u0012\u0006\u0010\u00b8\u0080\u0098\u00a8\u0006\"\u000535800\u0012\u0011\b+\u0012\u0006\u0010\u00fb\u0080\u0098\u00a8\u0006\"\u000535801\u0012\u0011\b,\u0012\u0006\u0010\u009e\u0081\u0098\u00a8\u0006\"\u000535802\u0012\u0011\b-\u0012\u0006\u0010\u0087\u0082\u0098\u00a8\u0006\"\u000538520\u0012\u0011\b.\u0012\u0006\u0010\u00c6\u0082\u0098\u00a8\u0006\"\u000538521\u0012\u0011\b/\u0012\u0006\u0010\u008e\u0083\u0098\u00a8\u0006\"\u000538522\u0012\u0011\b0\u0012\u0006\u0010\u00d9\u0083\u0098\u00a8\u0006\"\u000538523\u0012\u0011\b1\u0012\u0006\u0010\u00a8\u0084\u0098\u00a8\u0006\"\u000538524\u0012\u0011\b2\u0012\u0006\u0010\u00f4\u0084\u0098\u00a8\u0006\"\u000538525\u0012\u0011\b3\u0012\u0006\u0010\u00c7\u0085\u0098\u00a8\u0006\"\u000538526\u0012\u0011\b4\u0012\u0006\u0010\u0095\u0086\u0098\u00a8\u0006\"\u000538527\u0012\u0011\b5\u0012\u0006\u0010\u00a7\u0087\u0098\u00a8\u0006\"\u000538528\u0012\u0011\b6\u0012\u0006\u0010\u00f8\u0088\u0098\u00a8\u0006\"\u000538529\u0012\u0011\b7\u0012\u0006\u0010\u00fe\u008b\u0098\u00a8\u0006\"\u000538530\u0012\u0014\b8\u0012\u0006\u0010\u0098\u008c\u0098\u00a8\u0006\"\b16005209\u0012\u0011\b9\u0012\u0006\u0010\u0093\u0090\u0098\u00a8\u0006\"\u000538531\u0012\u0013\b:\u0012\u0006\u0010\u0081\u0091\u0098\u00a8\u0006\"\u00078921285\u0012\u0011\b;\u0012\u0006\u0010\u00a3\u0093\u0098\u00a8\u0006\"\u000538532\u0012\u0011\b<\u0012\u0006\u0010\u00ac\u0094\u0098\u00a8\u0006\"\u000538533\u0012\u0011\b=\u0012\u0006\u0010\u00bd\u0095\u0098\u00a8\u0006\"\u000538534\u0012\u0011\b>\u0012\u0006\u0010\u00c2\u0096\u0098\u00a8\u0006\"\u000538535\u0012\u0011\b?\u0012\u0006\u0010\u00fe\u0097\u0098\u00a8\u0006\"\u000538536\u0012\u0013\b@\u0012\u0006\u0010\u00e9\u0098\u0098\u00a8\u0006\"\u00074838437\u0012\u0011\bA\u0012\u0006\u0010\u0091\u009a\u0098\u00a8\u0006\"\u000545085\u0012\u0011\bB\u0012\u0006\u0010\u0091\u009c\u0098\u00a8\u0006\"\u000545086\u0012\u0011\bC\u0012\u0006\u0010\u00bf\u009d\u0098\u00a8\u0006\"\u000538539\u0012\u0011\bD\u0012\u0006\u0010\u00a8\u009f\u0098\u00a8\u0006\"\u000538540\u0012\u0011\bE\u0012\u0006\u0010\u00ce\u00a1\u0098\u00a8\u0006\"\u000538544\u0012\u0011\bF\u0012\u0006\u0010\u00e2\u00a3\u0098\u00a8\u0006\"\u000538545\u0012\u0011\bG\u0012\u0006\u0010\u00e9\u00a6\u0098\u00a8\u0006\"\u000538546\u0012\u0011\bH\u0012\u0006\u0010\u0087\u00a9\u0098\u00a8\u0006\"\u000538547\u0012\u0011\bI\u0012\u0006\u0010\u00a2\u00ab\u0098\u00a8\u0006\"\u000538548\u0012\u0011\bJ\u0012\u0006\u0010\u00f7\u00ad\u0098\u00a8\u0006\"\u000538549\u0012\u0011\bK\u0012\u0006\u0010\u00a8\u00b0\u0098\u00a8\u0006\"\u000538550\u0012\u0011\bL\u0012\u0006\u0010\u00e1\u00b4\u0098\u00a8\u0006\"\u000538551\u0012\u0011\bM\u0012\u0006\u0010\u008b\u00b9\u0098\u00a8\u0006\"\u000538552\u0012\u0011\bN\u0012\u0006\u0010\u00c1\u00bd\u0098\u00a8\u0006\"\u000549359\u0012\u0011\bO\u0012\u0006\u0010\u00dd\u00c0\u0098\u00a8\u0006\"\u000549360\u0012\u0011\bP\u0012\u0006\u0010\u009b\u00c8\u0098\u00a8\u0006\"\u000549361\u0012\u0011\bQ\u0012\u0006\u0010\u009c\u00ca\u0098\u00a8\u0006\"\u000549362\u0012\u0011\bR\u0012\u0006\u0010\u00ee\u00cd\u0098\u00a8\u0006\"\u000549363\u0012\u0011\bS\u0012\u0006\u0010\u00f1\u00d1\u0098\u00a8\u0006\"\u000549364\u0012\u0011\bT\u0012\u0006\u0010\u00f9\u00d5\u0098\u00a8\u0006\"\u000549365\u001a\b\u001a\u0006CBKT84 \u00c5\u00e8\u0097\u00a8\u0006\"`\n/\n\u001018214-701ff27f-2\u0012\b15:21:00\u001a\b20230916 \u0000*\u00035750\u0000\u0012\u001d\riR\u0013\u00c2\u0015\u00d5G\u0092\u00c2\u001d\u0000\u0080\u0096C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-r\u001c\u0097@(\u00c5\u00e8\u0097\u00a8\u0006B\b\u001a\u0006CBKT84" + }, + { + "type": "con_recorrido", + "entity": "\n$6fb9e6ba-a92c-4756-9794-0b4d40818fbe\u001a\u00f5\t\n/\n\u001018213-701ff27f-2\u0012\b15:01:00\u001a\b20230916 \u0000*\u00035750\u0000\u0012\u0011\b\u0016\u0012\u0006\u0010\u00b9\u00e8\u0097\u00a8\u0006\"\u000535781\u0012\u0011\b\u0017\u0012\u0006\u0010\u00d9\u00e8\u0097\u00a8\u0006\"\u000535782\u0012\u0011\b\u0018\u0012\u0006\u0010\u008c\u00e9\u0097\u00a8\u0006\"\u000591038\u0012\u0011\b\u0019\u0012\u0006\u0010\u00ff\u00e9\u0097\u00a8\u0006\"\u000535783\u0012\u0011\b\u001a\u0012\u0006\u0010\u00a2\u00ea\u0097\u00a8\u0006\"\u000531013\u0012\u0011\b\u001b\u0012\u0006\u0010\u009c\u00eb\u0097\u00a8\u0006\"\u000535785\u0012\u0011\b\u001c\u0012\u0006\u0010\u0090\u00ed\u0097\u00a8\u0006\"\u000535786\u0012\u0011\b\u001d\u0012\u0006\u0010\u00d1\u00ed\u0097\u00a8\u0006\"\u000535787\u0012\u0011\b\u001e\u0012\u0006\u0010\u008f\u00ee\u0097\u00a8\u0006\"\u000535788\u0012\u0011\b\u001f\u0012\u0006\u0010\u00f0\u00ee\u0097\u00a8\u0006\"\u000535789\u0012\u0011\b \u0012\u0006\u0010\u009a\u00ef\u0097\u00a8\u0006\"\u000535790\u0012\u0011\b!\u0012\u0006\u0010\u00e9\u00ef\u0097\u00a8\u0006\"\u000535791\u0012\u0011\b\"\u0012\u0006\u0010\u0097\u00f0\u0097\u00a8\u0006\"\u000535792\u0012\u0011\b#\u0012\u0006\u0010\u00ce\u00f0\u0097\u00a8\u0006\"\u000535793\u0012\u0011\b$\u0012\u0006\u0010\u00b8\u00f1\u0097\u00a8\u0006\"\u000591116\u0012\u0011\b%\u0012\u0006\u0010\u008c\u00f5\u0097\u00a8\u0006\"\u000535794\u0012\u0011\b&\u0012\u0006\u0010\u00eb\u00f5\u0097\u00a8\u0006\"\u000535796\u0012\u0011\b'\u0012\u0006\u0010\u009d\u00f6\u0097\u00a8\u0006\"\u000535797\u0012\u0011\b(\u0012\u0006\u0010\u00c7\u00f6\u0097\u00a8\u0006\"\u000535798\u0012\u0011\b)\u0012\u0006\u0010\u00ef\u00f6\u0097\u00a8\u0006\"\u000535799\u0012\u0011\b*\u0012\u0006\u0010\u00b7\u00f7\u0097\u00a8\u0006\"\u000535800\u0012\u0011\b+\u0012\u0006\u0010\u00eb\u00f7\u0097\u00a8\u0006\"\u000535801\u0012\u0011\b,\u0012\u0006\u0010\u0087\u00f8\u0097\u00a8\u0006\"\u000535802\u0012\u0011\b-\u0012\u0006\u0010\u00d7\u00f8\u0097\u00a8\u0006\"\u000538520\u0012\u0011\b.\u0012\u0006\u0010\u0087\u00f9\u0097\u00a8\u0006\"\u000538521\u0012\u0011\b/\u0012\u0006\u0010\u00bd\u00f9\u0097\u00a8\u0006\"\u000538522\u0012\u0011\b0\u0012\u0006\u0010\u00f4\u00f9\u0097\u00a8\u0006\"\u000538523\u0012\u0011\b1\u0012\u0006\u0010\u00af\u00fa\u0097\u00a8\u0006\"\u000538524\u0012\u0011\b2\u0012\u0006\u0010\u00e7\u00fa\u0097\u00a8\u0006\"\u000538525\u0012\u0011\b3\u0012\u0006\u0010\u00a3\u00fb\u0097\u00a8\u0006\"\u000538526\u0012\u0011\b4\u0012\u0006\u0010\u00db\u00fb\u0097\u00a8\u0006\"\u000538527\u0012\u0011\b5\u0012\u0006\u0010\u00c2\u00fc\u0097\u00a8\u0006\"\u000538528\u0012\u0011\b6\u0012\u0006\u0010\u00d4\u00fd\u0097\u00a8\u0006\"\u000538529\u0012\u0011\b7\u0012\u0006\u0010\u00db\u00ff\u0097\u00a8\u0006\"\u000538530\u0012\u0014\b8\u0012\u0006\u0010\u00ec\u00ff\u0097\u00a8\u0006\"\b16005209\u0012\u0011\b9\u0012\u0006\u0010\u00b3\u0082\u0098\u00a8\u0006\"\u000538531\u0012\u0013\b:\u0012\u0006\u0010\u00f8\u0082\u0098\u00a8\u0006\"\u00078921285\u0012\u0011\b;\u0012\u0006\u0010\u00ab\u0084\u0098\u00a8\u0006\"\u000538532\u0012\u0011\b<\u0012\u0006\u0010\u00fd\u0084\u0098\u00a8\u0006\"\u000538533\u0012\u0011\b=\u0012\u0006\u0010\u00d4\u0085\u0098\u00a8\u0006\"\u000538534\u0012\u0011\b>\u0012\u0006\u0010\u00a2\u0086\u0098\u00a8\u0006\"\u000538535\u0012\u0011\b?\u0012\u0006\u0010\u008f\u0087\u0098\u00a8\u0006\"\u000538536\u0012\u0013\b@\u0012\u0006\u0010\u00cd\u0087\u0098\u00a8\u0006\"\u00074838437\u0012\u0011\bA\u0012\u0006\u0010\u00ac\u0088\u0098\u00a8\u0006\"\u000545085\u0012\u0011\bB\u0012\u0006\u0010\u00bb\u0089\u0098\u00a8\u0006\"\u000545086\u0012\u0011\bC\u0012\u0006\u0010\u009b\u008a\u0098\u00a8\u0006\"\u000538539\u0012\u0011\bD\u0012\u0006\u0010\u0098\u008b\u0098\u00a8\u0006\"\u000538540\u0012\u0011\bE\u0012\u0006\u0010\u00b4\u008c\u0098\u00a8\u0006\"\u000538544\u0012\u0011\bF\u0012\u0006\u0010\u00c3\u008d\u0098\u00a8\u0006\"\u000538545\u0012\u0011\bG\u0012\u0006\u0010\u0089\u008f\u0098\u00a8\u0006\"\u000538546\u0012\u0011\bH\u0012\u0006\u0010\u0096\u0090\u0098\u00a8\u0006\"\u000538547\u0012\u0011\bI\u0012\u0006\u0010\u009e\u0091\u0098\u00a8\u0006\"\u000538548\u0012\u0011\bJ\u0012\u0006\u0010\u00bf\u0092\u0098\u00a8\u0006\"\u000538549\u0012\u0011\bK\u0012\u0006\u0010\u00cc\u0093\u0098\u00a8\u0006\"\u000538550\u0012\u0011\bL\u0012\u0006\u0010\u00cb\u0095\u0098\u00a8\u0006\"\u000538551\u0012\u0011\bM\u0012\u0006\u0010\u00ba\u0097\u0098\u00a8\u0006\"\u000538552\u0012\u0011\bN\u0012\u0006\u0010\u00a5\u0099\u0098\u00a8\u0006\"\u000549359\u0012\u0011\bO\u0012\u0006\u0010\u00cb\u009a\u0098\u00a8\u0006\"\u000549360\u0012\u0011\bP\u0012\u0006\u0010\u00bd\u009d\u0098\u00a8\u0006\"\u000549361\u0012\u0011\bQ\u0012\u0006\u0010\u009d\u009e\u0098\u00a8\u0006\"\u000549362\u0012\u0011\bR\u0012\u0006\u0010\u00c6\u009f\u0098\u00a8\u0006\"\u000549363\u0012\u0011\bS\u0012\u0006\u0010\u00fc\u00a0\u0098\u00a8\u0006\"\u000549364\u0012\u0011\bT\u0012\u0006\u0010\u00ae\u00a2\u0098\u00a8\u0006\"\u000549365\u001a\b\u001a\u0006KLJL10 \u00b0\u00e8\u0097\u00a8\u0006\"`\n/\n\u001018213-701ff27f-2\u0012\b15:01:00\u001a\b20230916 \u0000*\u00035750\u0000\u0012\u001d\r\bk\u0013\u00c2\u0015xE\u0092\u00c2\u001d\u0000\u0000&C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UUU@(\u00b0\u00e8\u0097\u00a8\u0006B\b\u001a\u0006KLJL10" + }, + { + "type": "con_recorrido", + "entity": "\n$01e46230-e064-47b9-ab3f-200feae5df34\u001a\u00ca\u0005\n/\n\u001018156-701ff27f-2\u0012\b15:02:00\u001a\b20230916 \u0000*\u00035750\u0001\u0012\u0011\b*\u0012\u0006\u0010\u00f9\u00e8\u0097\u00a8\u0006\"\u00051-Nov\u0012\u0011\b+\u0012\u0006\u0010\u00b3\u00e9\u0097\u00a8\u0006\"\u000535745\u0012\u0014\b,\u0012\u0006\u0010\u00c8\u00e9\u0097\u00a8\u0006\"\b15879953\u0012\u0011\b-\u0012\u0006\u0010\u00e5\u00e9\u0097\u00a8\u0006\"\u000535746\u0012\u0011\b.\u0012\u0006\u0010\u00b3\u00ee\u0097\u00a8\u0006\"\u000535748\u0012\u0011\b/\u0012\u0006\u0010\u00f0\u00ee\u0097\u00a8\u0006\"\u000535749\u0012\u0011\b0\u0012\u0006\u0010\u009d\u00ef\u0097\u00a8\u0006\"\u000535750\u0012\u0011\b1\u0012\u0006\u0010\u00e8\u00ef\u0097\u00a8\u0006\"\u000535751\u0012\u0011\b2\u0012\u0006\u0010\u00d8\u00f0\u0097\u00a8\u0006\"\u000535752\u0012\u0011\b3\u0012\u0006\u0010\u00dd\u00f1\u0097\u00a8\u0006\"\u000535417\u0012\u0011\b4\u0012\u0006\u0010\u00a3\u00f2\u0097\u00a8\u0006\"\u000535755\u0012\u0011\b5\u0012\u0006\u0010\u00f3\u00f3\u0097\u00a8\u0006\"\u000535864\u0012\u0011\b6\u0012\u0006\u0010\u00f9\u00f5\u0097\u00a8\u0006\"\u000535866\u0012\u0011\b7\u0012\u0006\u0010\u00c8\u00f6\u0097\u00a8\u0006\"\u000535867\u0012\u0011\b8\u0012\u0006\u0010\u009a\u00f7\u0097\u00a8\u0006\"\u000535644\u0012\u0011\b9\u0012\u0006\u0010\u00c9\u00f7\u0097\u00a8\u0006\"\u000535868\u0012\u0011\b:\u0012\u0006\u0010\u00e3\u00f7\u0097\u00a8\u0006\"\u000535869\u0012\u0011\b;\u0012\u0006\u0010\u00fe\u00f7\u0097\u00a8\u0006\"\u000535870\u0012\u0011\b<\u0012\u0006\u0010\u00a2\u00f8\u0097\u00a8\u0006\"\u000591045\u0012\u0011\b=\u0012\u0006\u0010\u00bf\u00f8\u0097\u00a8\u0006\"\u000591089\u0012\u0011\b>\u0012\u0006\u0010\u00de\u00f8\u0097\u00a8\u0006\"\u000535645\u0012\u0011\b?\u0012\u0006\u0010\u0092\u00f9\u0097\u00a8\u0006\"\u000591090\u0012\u0011\b@\u0012\u0006\u0010\u00c8\u00f9\u0097\u00a8\u0006\"\u000591091\u0012\u0011\bA\u0012\u0006\u0010\u00ef\u00f9\u0097\u00a8\u0006\"\u000591092\u0012\u0011\bB\u0012\u0006\u0010\u009e\u00fa\u0097\u00a8\u0006\"\u000535875\u0012\u0011\bC\u0012\u0006\u0010\u00ca\u00fc\u0097\u00a8\u0006\"\u000535762\u0012\u0011\bD\u0012\u0006\u0010\u00e0\u00fc\u0097\u00a8\u0006\"\u000535761\u0012\u0011\bE\u0012\u0006\u0010\u008f\u00fd\u0097\u00a8\u0006\"\u000535760\u0012\u0011\bF\u0012\u0006\u0010\u00c3\u00fd\u0097\u00a8\u0006\"\u000535523\u0012\u0011\bG\u0012\u0006\u0010\u00f5\u00fd\u0097\u00a8\u0006\"\u000534960\u0012\u0011\bH\u0012\u0006\u0010\u0097\u00fe\u0097\u00a8\u0006\"\u000534961\u0012\u0011\bI\u0012\u0006\u0010\u00dd\u0081\u0098\u00a8\u0006\"\u000534962\u0012\u0011\bJ\u0012\u0006\u0010\u00b5\u0082\u0098\u00a8\u0006\"\u000534963\u0012\u0011\bK\u0012\u0006\u0010\u00f4\u0082\u0098\u00a8\u0006\"\u000534964\u001a\b\u001a\u0006LJKK14 \u00c6\u00e8\u0097\u00a8\u0006\"`\n/\n\u001018156-701ff27f-2\u0012\b15:02:00\u001a\b20230916 \u0000*\u00035750\u0001\u0012\u001d\r@K\u0013\u00c2\u0015\u00f5\u001a\u0092\u00c2\u001d\u0000\u0000eC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u008e?(\u00c6\u00e8\u0097\u00a8\u0006B\b\u001a\u0006LJKK14" + }, + { + "type": "con_recorrido", + "entity": "\n$524f4891-b855-4304-a0b8-1c7971239aa8\u001a\u00d4\u0007\n/\n\u001018157-701ff27f-2\u0012\b15:22:00\u001a\b20230916 \u0000*\u00035750\u0001\u0012\u0011\b\u001c\u0012\u0006\u0010\u00bc\u00ea\u0097\u00a8\u0006\"\u000540995\u0012\u0011\b\u001d\u0012\u0006\u0010\u008f\u00eb\u0097\u00a8\u0006\"\u000540996\u0012\u0011\b\u001e\u0012\u0006\u0010\u00dc\u00eb\u0097\u00a8\u0006\"\u000540997\u0012\u0011\b\u001f\u0012\u0006\u0010\u0097\u00ec\u0097\u00a8\u0006\"\u000539614\u0012\u0011\b \u0012\u0006\u0010\u00c7\u00ec\u0097\u00a8\u0006\"\u000539615\u0012\u0011\b!\u0012\u0006\u0010\u00f8\u00ec\u0097\u00a8\u0006\"\u000539616\u0012\u0011\b\"\u0012\u0006\u0010\u00ae\u00ed\u0097\u00a8\u0006\"\u000539617\u0012\u0011\b#\u0012\u0006\u0010\u00e7\u00ed\u0097\u00a8\u0006\"\u000539618\u0012\u0011\b$\u0012\u0006\u0010\u0092\u00ee\u0097\u00a8\u0006\"\u000539619\u0012\u0011\b%\u0012\u0006\u0010\u00b9\u00ee\u0097\u00a8\u0006\"\u000539620\u0012\u0011\b&\u0012\u0006\u0010\u00ec\u00ee\u0097\u00a8\u0006\"\u00051-Jul\u0012\u0011\b'\u0012\u0006\u0010\u008c\u00ef\u0097\u00a8\u0006\"\u00051-Aug\u0012\u0011\b(\u0012\u0006\u0010\u00ba\u00ef\u0097\u00a8\u0006\"\u00051-Sep\u0012\u0011\b)\u0012\u0006\u0010\u00ed\u00ef\u0097\u00a8\u0006\"\u00051-Oct\u0012\u0011\b*\u0012\u0006\u0010\u009e\u00f0\u0097\u00a8\u0006\"\u00051-Nov\u0012\u0011\b+\u0012\u0006\u0010\u00d3\u00f0\u0097\u00a8\u0006\"\u000535745\u0012\u0014\b,\u0012\u0006\u0010\u00e6\u00f0\u0097\u00a8\u0006\"\b15879953\u0012\u0011\b-\u0012\u0006\u0010\u0081\u00f1\u0097\u00a8\u0006\"\u000535746\u0012\u0011\b.\u0012\u0006\u0010\u00c5\u00f5\u0097\u00a8\u0006\"\u000535748\u0012\u0011\b/\u0012\u0006\u0010\u0084\u00f6\u0097\u00a8\u0006\"\u000535749\u0012\u0011\b0\u0012\u0006\u0010\u00b3\u00f6\u0097\u00a8\u0006\"\u000535750\u0012\u0011\b1\u0012\u0006\u0010\u0083\u00f7\u0097\u00a8\u0006\"\u000535751\u0012\u0011\b2\u0012\u0006\u0010\u00fd\u00f7\u0097\u00a8\u0006\"\u000535752\u0012\u0011\b3\u0012\u0006\u0010\u0091\u00f9\u0097\u00a8\u0006\"\u000535417\u0012\u0011\b4\u0012\u0006\u0010\u00df\u00f9\u0097\u00a8\u0006\"\u000535755\u0012\u0011\b5\u0012\u0006\u0010\u00d0\u00fb\u0097\u00a8\u0006\"\u000535864\u0012\u0011\b6\u0012\u0006\u0010\u008b\u00fe\u0097\u00a8\u0006\"\u000535866\u0012\u0011\b7\u0012\u0006\u0010\u00ee\u00fe\u0097\u00a8\u0006\"\u000535867\u0012\u0011\b8\u0012\u0006\u0010\u00d4\u00ff\u0097\u00a8\u0006\"\u000535644\u0012\u0011\b9\u0012\u0006\u0010\u0090\u0080\u0098\u00a8\u0006\"\u000535868\u0012\u0011\b:\u0012\u0006\u0010\u00b0\u0080\u0098\u00a8\u0006\"\u000535869\u0012\u0011\b;\u0012\u0006\u0010\u00d3\u0080\u0098\u00a8\u0006\"\u000535870\u0012\u0011\b<\u0012\u0006\u0010\u0082\u0081\u0098\u00a8\u0006\"\u000591045\u0012\u0011\b=\u0012\u0006\u0010\u00a7\u0081\u0098\u00a8\u0006\"\u000591089\u0012\u0011\b>\u0012\u0006\u0010\u00d0\u0081\u0098\u00a8\u0006\"\u000535645\u0012\u0011\b?\u0012\u0006\u0010\u0093\u0082\u0098\u00a8\u0006\"\u000591090\u0012\u0011\b@\u0012\u0006\u0010\u00db\u0082\u0098\u00a8\u0006\"\u000591091\u0012\u0011\bA\u0012\u0006\u0010\u008f\u0083\u0098\u00a8\u0006\"\u000591092\u0012\u0011\bB\u0012\u0006\u0010\u00cd\u0083\u0098\u00a8\u0006\"\u000535875\u0012\u0011\bC\u0012\u0006\u0010\u00ea\u0086\u0098\u00a8\u0006\"\u000535762\u0012\u0011\bD\u0012\u0006\u0010\u0089\u0087\u0098\u00a8\u0006\"\u000535761\u0012\u0011\bE\u0012\u0006\u0010\u00cc\u0087\u0098\u00a8\u0006\"\u000535760\u0012\u0011\bF\u0012\u0006\u0010\u0096\u0088\u0098\u00a8\u0006\"\u000535523\u0012\u0011\bG\u0012\u0006\u0010\u00dd\u0088\u0098\u00a8\u0006\"\u000534960\u0012\u0011\bH\u0012\u0006\u0010\u008f\u0089\u0098\u00a8\u0006\"\u000534961\u0012\u0011\bI\u0012\u0006\u0010\u00b9\u008e\u0098\u00a8\u0006\"\u000534962\u0012\u0011\bJ\u0012\u0006\u0010\u00c1\u008f\u0098\u00a8\u0006\"\u000534963\u0012\u0011\bK\u0012\u0006\u0010\u00a5\u0090\u0098\u00a8\u0006\"\u000534964\u001a\b\u001a\u0006LRJF78 \u00b8\u00e8\u0097\u00a8\u0006\"`\n/\n\u001018157-701ff27f-2\u0012\b15:22:00\u001a\b20230916 \u0000*\u00035750\u0001\u0012\u001d\r\u00d9*\u0013\u00c2\u0015\u0018$\u0092\u00c2\u001d\u0000\u0000\u001aC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b8\u00e8\u0097\u00a8\u0006B\b\u001a\u0006LRJF78" + }, + { + "type": "con_recorrido", + "entity": "\n$6395bab2-04eb-473e-a9ce-cfb2f72887ba\u001a\u00bb\u0005\n/\n\u001018212-701ff27f-2\u0012\b14:41:00\u001a\b20230916 \u0000*\u00035750\u0000\u0012\u0011\b4\u0012\u0006\u0010\u00b8\u00e8\u0097\u00a8\u0006\"\u000538527\u0012\u0011\b5\u0012\u0006\u0010\u0095\u00e9\u0097\u00a8\u0006\"\u000538528\u0012\u0011\b6\u0012\u0006\u0010\u0092\u00ea\u0097\u00a8\u0006\"\u000538529\u0012\u0011\b7\u0012\u0006\u0010\u00e2\u00eb\u0097\u00a8\u0006\"\u000538530\u0012\u0014\b8\u0012\u0006\u0010\u00ef\u00eb\u0097\u00a8\u0006\"\b16005209\u0012\u0011\b9\u0012\u0006\u0010\u00d9\u00ed\u0097\u00a8\u0006\"\u000538531\u0012\u0013\b:\u0012\u0006\u0010\u0087\u00ee\u0097\u00a8\u0006\"\u00078921285\u0012\u0011\b;\u0012\u0006\u0010\u00fb\u00ee\u0097\u00a8\u0006\"\u000538532\u0012\u0011\b<\u0012\u0006\u0010\u00ae\u00ef\u0097\u00a8\u0006\"\u000538533\u0012\u0011\b=\u0012\u0006\u0010\u00e3\u00ef\u0097\u00a8\u0006\"\u000538534\u0012\u0011\b>\u0012\u0006\u0010\u0091\u00f0\u0097\u00a8\u0006\"\u000538535\u0012\u0011\b?\u0012\u0006\u0010\u00d0\u00f0\u0097\u00a8\u0006\"\u000538536\u0012\u0013\b@\u0012\u0006\u0010\u00f3\u00f0\u0097\u00a8\u0006\"\u00074838437\u0012\u0011\bA\u0012\u0006\u0010\u00a8\u00f1\u0097\u00a8\u0006\"\u000545085\u0012\u0011\bB\u0012\u0006\u0010\u00f5\u00f1\u0097\u00a8\u0006\"\u000545086\u0012\u0011\bC\u0012\u0006\u0010\u00a7\u00f2\u0097\u00a8\u0006\"\u000538539\u0012\u0011\bD\u0012\u0006\u0010\u00e7\u00f2\u0097\u00a8\u0006\"\u000538540\u0012\u0011\bE\u0012\u0006\u0010\u00b4\u00f3\u0097\u00a8\u0006\"\u000538544\u0012\u0011\bF\u0012\u0006\u0010\u00f8\u00f3\u0097\u00a8\u0006\"\u000538545\u0012\u0011\bG\u0012\u0006\u0010\u00d3\u00f4\u0097\u00a8\u0006\"\u000538546\u0012\u0011\bH\u0012\u0006\u0010\u0092\u00f5\u0097\u00a8\u0006\"\u000538547\u0012\u0011\bI\u0012\u0006\u0010\u00cd\u00f5\u0097\u00a8\u0006\"\u000538548\u0012\u0011\bJ\u0012\u0006\u0010\u0090\u00f6\u0097\u00a8\u0006\"\u000538549\u0012\u0011\bK\u0012\u0006\u0010\u00ca\u00f6\u0097\u00a8\u0006\"\u000538550\u0012\u0011\bL\u0012\u0006\u0010\u00ad\u00f7\u0097\u00a8\u0006\"\u000538551\u0012\u0011\bM\u0012\u0006\u0010\u0087\u00f8\u0097\u00a8\u0006\"\u000538552\u0012\u0011\bN\u0012\u0006\u0010\u00dc\u00f8\u0097\u00a8\u0006\"\u000549359\u0012\u0011\bO\u0012\u0006\u0010\u0095\u00f9\u0097\u00a8\u0006\"\u000549360\u0012\u0011\bP\u0012\u0006\u0010\u0091\u00fa\u0097\u00a8\u0006\"\u000549361\u0012\u0011\bQ\u0012\u0006\u0010\u00af\u00fa\u0097\u00a8\u0006\"\u000549362\u0012\u0011\bR\u0012\u0006\u0010\u00e4\u00fa\u0097\u00a8\u0006\"\u000549363\u0012\u0011\bS\u0012\u0006\u0010\u009c\u00fb\u0097\u00a8\u0006\"\u000549364\u0012\u0011\bT\u0012\u0006\u0010\u00d1\u00fb\u0097\u00a8\u0006\"\u000549365\u001a\b\u001a\u0006RVRL31 \u009c\u00e8\u0097\u00a8\u0006\"`\n/\n\u001018212-701ff27f-2\u0012\b14:41:00\u001a\b20230916 \u0000*\u00035750\u0000\u0012\u001d\r\u001d9\u0013\u00c2\u0015\\\u001b\u0092\u00c2\u001d\u0000\u0000\u00a7C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-9\u008e\u0087A(\u009c\u00e8\u0097\u00a8\u0006B\b\u001a\u0006RVRL31" + }, + { + "type": "sin_recorrido", + "entity": "\n$4571f63a-a4b2-4077-be57-b8b1821d6014\"`\n/\n\u001018210-701ff27f-2\u0012\b14:01:00\u001a\b20230916 \u0000*\u00035750\u0000\u0012\u001d\r1\u00d7\u0012\u00c2\u0015\u008d:\u0092\u00c2\u001d\u0000\u0000\u0080A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008e\u00e3x@(\u00af\u00e8\u0097\u00a8\u0006B\b\u001a\u0006WR5810" + }, + { + "type": "con_recorrido", + "entity": "\n$848a0443-41f7-451b-96cd-e039b18f0a67\u001a\u0097\u0003\n/\n\u001018279-701ff27f-2\u0012\b14:45:00\u001a\b20230916 \u0000*\u00035760\u0001\u0012\u0011\b\"\u0012\u0006\u0010\u00fd\u00e8\u0097\u00a8\u0006\"\u000591127\u0012\u0011\b#\u0012\u0006\u0010\u009c\u00e9\u0097\u00a8\u0006\"\u000535841\u0012\u0011\b$\u0012\u0006\u0010\u00be\u00e9\u0097\u00a8\u0006\"\u000535842\u0012\u0011\b%\u0012\u0006\u0010\u00f3\u00e9\u0097\u00a8\u0006\"\u000535843\u0012\u0011\b&\u0012\u0006\u0010\u0097\u00ea\u0097\u00a8\u0006\"\u000535844\u0012\u0011\b'\u0012\u0006\u0010\u00d3\u00ea\u0097\u00a8\u0006\"\u000591128\u0012\u0011\b(\u0012\u0006\u0010\u0082\u00eb\u0097\u00a8\u0006\"\u000535846\u0012\u0011\b)\u0012\u0006\u0010\u00a5\u00eb\u0097\u00a8\u0006\"\u000535847\u0012\u0011\b*\u0012\u0006\u0010\u00c4\u00eb\u0097\u00a8\u0006\"\u000535848\u0012\u0011\b+\u0012\u0006\u0010\u00c8\u00eb\u0097\u00a8\u0006\"\u000535157\u0012\u0011\b,\u0012\u0006\u0010\u008f\u00ec\u0097\u00a8\u0006\"\u000535147\u0012\u0011\b-\u0012\u0006\u0010\u00bc\u00ec\u0097\u00a8\u0006\"\u000535148\u0012\u0011\b.\u0012\u0006\u0010\u00dd\u00ec\u0097\u00a8\u0006\"\u000591129\u0012\u0011\b/\u0012\u0006\u0010\u0084\u00ed\u0097\u00a8\u0006\"\u000591130\u0012\u0011\b0\u0012\u0006\u0010\u00b6\u00ed\u0097\u00a8\u0006\"\u000591131\u0012\u0011\b1\u0012\u0006\u0010\u008c\u00ee\u0097\u00a8\u0006\"\u000535669\u0012\u0011\b2\u0012\u0006\u0010\u00d8\u00ee\u0097\u00a8\u0006\"\u000535670\u0012\u0011\b3\u0012\u0006\u0010\u00f9\u00ee\u0097\u00a8\u0006\"\u000535671\u001a\b\u001a\u0006DRZJ86 \u00b6\u00e8\u0097\u00a8\u0006\"`\n/\n\u001018279-701ff27f-2\u0012\b14:45:00\u001a\b20230916 \u0000*\u00035760\u0001\u0012\u001d\r\u00daV\u0013\u00c2\u0015D4\u0092\u00c2\u001d\u0000\u0000\u00b8B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b6\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DRZJ86" + }, + { + "type": "con_recorrido", + "entity": "\n$8b057e28-8f8c-49e2-b598-4b1a88e336fd\u001a\u00cc\u0006\n/\n\u001018281-701ff27f-2\u0012\b15:15:00\u001a\b20230916 \u0000*\u00035760\u0001\u0012\u0011\b\u000b\u0012\u0006\u0010\u00ea\u00e8\u0097\u00a8\u0006\"\u000537506\u0012\u0011\b\f\u0012\u0006\u0010\u00cf\u00e9\u0097\u00a8\u0006\"\u000537520\u0012\u0011\b\r\u0012\u0006\u0010\u00b9\u00ea\u0097\u00a8\u0006\"\u000537470\u0012\u0011\b\u000e\u0012\u0006\u0010\u00d9\u00ea\u0097\u00a8\u0006\"\u000537477\u0012\u0011\b\u000f\u0012\u0006\u0010\u00f6\u00ea\u0097\u00a8\u0006\"\u000591118\u0012\u0011\b\u0010\u0012\u0006\u0010\u00b6\u00eb\u0097\u00a8\u0006\"\u000535223\u0012\u0011\b\u0011\u0012\u0006\u0010\u00e4\u00eb\u0097\u00a8\u0006\"\u000539547\u0012\u0011\b\u0012\u0012\u0006\u0010\u00b0\u00ec\u0097\u00a8\u0006\"\u000535224\u0012\u0011\b\u0013\u0012\u0006\u0010\u00e2\u00ed\u0097\u00a8\u0006\"\u000535225\u0012\u0011\b\u0014\u0012\u0006\u0010\u0080\u00f2\u0097\u00a8\u0006\"\u000535748\u0012\u0011\b\u0015\u0012\u0006\u0010\u00c3\u00f2\u0097\u00a8\u0006\"\u000535749\u0012\u0011\b\u0016\u0012\u0006\u0010\u00f0\u00f2\u0097\u00a8\u0006\"\u000535750\u0012\u0011\b\u0017\u0012\u0006\u0010\u00fe\u00f3\u0097\u00a8\u0006\"\u000535681\u0012\u0011\b\u0018\u0012\u0006\u0010\u00ea\u00f4\u0097\u00a8\u0006\"\u000535128\u0012\u0011\b\u0019\u0012\u0006\u0010\u00c0\u00f5\u0097\u00a8\u0006\"\u000591121\u0012\u0011\b\u001a\u0012\u0006\u0010\u00f5\u00f5\u0097\u00a8\u0006\"\u000591122\u0012\u0011\b\u001b\u0012\u0006\u0010\u00bd\u00f6\u0097\u00a8\u0006\"\u000535129\u0012\u0011\b\u001c\u0012\u0006\u0010\u00ee\u00f6\u0097\u00a8\u0006\"\u000591123\u0012\u0011\b\u001d\u0012\u0006\u0010\u0096\u00f7\u0097\u00a8\u0006\"\u000591124\u0012\u0011\b\u001e\u0012\u0006\u0010\u00c1\u00f7\u0097\u00a8\u0006\"\u000535136\u0012\u0011\b\u001f\u0012\u0006\u0010\u00ea\u00f7\u0097\u00a8\u0006\"\u000591125\u0012\u0011\b \u0012\u0006\u0010\u0099\u00f8\u0097\u00a8\u0006\"\u000535130\u0012\u0011\b!\u0012\u0006\u0010\u00c9\u00f8\u0097\u00a8\u0006\"\u000591126\u0012\u0011\b\"\u0012\u0006\u0010\u00aa\u00f9\u0097\u00a8\u0006\"\u000591127\u0012\u0011\b#\u0012\u0006\u0010\u00ca\u00f9\u0097\u00a8\u0006\"\u000535841\u0012\u0011\b$\u0012\u0006\u0010\u00ee\u00f9\u0097\u00a8\u0006\"\u000535842\u0012\u0011\b%\u0012\u0006\u0010\u00a7\u00fa\u0097\u00a8\u0006\"\u000535843\u0012\u0011\b&\u0012\u0006\u0010\u00ce\u00fa\u0097\u00a8\u0006\"\u000535844\u0012\u0011\b'\u0012\u0006\u0010\u0090\u00fb\u0097\u00a8\u0006\"\u000591128\u0012\u0011\b(\u0012\u0006\u0010\u00c6\u00fb\u0097\u00a8\u0006\"\u000535846\u0012\u0011\b)\u0012\u0006\u0010\u00ee\u00fb\u0097\u00a8\u0006\"\u000535847\u0012\u0011\b*\u0012\u0006\u0010\u0092\u00fc\u0097\u00a8\u0006\"\u000535848\u0012\u0011\b+\u0012\u0006\u0010\u0097\u00fc\u0097\u00a8\u0006\"\u000535157\u0012\u0011\b,\u0012\u0006\u0010\u00eb\u00fc\u0097\u00a8\u0006\"\u000535147\u0012\u0011\b-\u0012\u0006\u0010\u00a2\u00fd\u0097\u00a8\u0006\"\u000535148\u0012\u0011\b.\u0012\u0006\u0010\u00cb\u00fd\u0097\u00a8\u0006\"\u000591129\u0012\u0011\b/\u0012\u0006\u0010\u00fc\u00fd\u0097\u00a8\u0006\"\u000591130\u0012\u0011\b0\u0012\u0006\u0010\u00bc\u00fe\u0097\u00a8\u0006\"\u000591131\u0012\u0011\b1\u0012\u0006\u0010\u00ac\u00ff\u0097\u00a8\u0006\"\u000535669\u0012\u0011\b2\u0012\u0006\u0010\u0092\u0080\u0098\u00a8\u0006\"\u000535670\u0012\u0011\b3\u0012\u0006\u0010\u00c0\u0080\u0098\u00a8\u0006\"\u000535671\u001a\b\u001a\u0006FGYS60 \u00bb\u00e8\u0097\u00a8\u0006\"`\n/\n\u001018281-701ff27f-2\u0012\b15:15:00\u001a\b20230916 \u0000*\u00035760\u0001\u0012\u001d\r\u00e8K\u0013\u00c2\u0015F\u0015\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00bb\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FGYS60" + }, + { + "type": "con_recorrido", + "entity": "\n$593f908b-c479-49ad-8680-18cf1011e4da\u001a\u00c7\u0005\n/\n\u001018357-701ff27f-2\u0012\b15:15:00\u001a\b20230916 \u0000*\u00035760\u0000\u0012\u0011\b\b\u0012\u0006\u0010\u00b3\u00e8\u0097\u00a8\u0006\"\u000591135\u0012\u0011\b\t\u0012\u0006\u0010\u00d2\u00e8\u0097\u00a8\u0006\"\u000591136\u0012\u0011\b\n\u0012\u0006\u0010\u00fc\u00e8\u0097\u00a8\u0006\"\u000535156\u0012\u0011\b\u000b\u0012\u0006\u0010\u00c6\u00e9\u0097\u00a8\u0006\"\u000591137\u0012\u0011\b\f\u0012\u0006\u0010\u00eb\u00e9\u0097\u00a8\u0006\"\u000591138\u0012\u0011\b\r\u0012\u0006\u0010\u009d\u00ea\u0097\u00a8\u0006\"\u000535845\u0012\u0011\b\u000e\u0012\u0006\u0010\u00cb\u00ea\u0097\u00a8\u0006\"\u000535684\u0012\u0011\b\u000f\u0012\u0006\u0010\u00f4\u00ea\u0097\u00a8\u0006\"\u000535685\u0012\u0011\b\u0010\u0012\u0006\u0010\u00a0\u00eb\u0097\u00a8\u0006\"\u000535686\u0012\u0011\b\u0011\u0012\u0006\u0010\u00d9\u00eb\u0097\u00a8\u0006\"\u000535687\u0012\u0011\b\u0012\u0012\u0006\u0010\u0080\u00ec\u0097\u00a8\u0006\"\u000535165\u0012\u0011\b\u0013\u0012\u0006\u0010\u00bd\u00ed\u0097\u00a8\u0006\"\u000535791\u0012\u0011\b\u0014\u0012\u0006\u0010\u00eb\u00ed\u0097\u00a8\u0006\"\u000535792\u0012\u0011\b\u0015\u0012\u0006\u0010\u00a2\u00ee\u0097\u00a8\u0006\"\u000535793\u0012\u0011\b\u0016\u0012\u0006\u0010\u0093\u00ef\u0097\u00a8\u0006\"\u000591116\u0012\u0011\b\u0017\u0012\u0006\u0010\u00e1\u00f2\u0097\u00a8\u0006\"\u000539545\u0012\u0011\b\u0018\u0012\u0006\u0010\u0088\u00f4\u0097\u00a8\u0006\"\u000539546\u0012\u0011\b\u0019\u0012\u0006\u0010\u0091\u00f5\u0097\u00a8\u0006\"\u000535286\u0012\u0011\b\u001a\u0012\u0006\u0010\u00ad\u00f5\u0097\u00a8\u0006\"\u000535287\u0012\u0011\b\u001b\u0012\u0006\u0010\u00f4\u00f5\u0097\u00a8\u0006\"\u000542317\u0012\u0011\b\u001c\u0012\u0006\u0010\u00c0\u00f6\u0097\u00a8\u0006\"\u000542319\u0012\u0011\b\u001d\u0012\u0006\u0010\u0084\u00f7\u0097\u00a8\u0006\"\u000542320\u0012\u0011\b\u001e\u0012\u0006\u0010\u00c0\u00f7\u0097\u00a8\u0006\"\u000538514\u0012\u0011\b\u001f\u0012\u0006\u0010\u00fa\u00f7\u0097\u00a8\u0006\"\u000534586\u0012\u0011\b \u0012\u0006\u0010\u009a\u00f8\u0097\u00a8\u0006\"\u000534587\u0012\u0011\b!\u0012\u0006\u0010\u00b4\u00f8\u0097\u00a8\u0006\"\u000534588\u0012\u0011\b\"\u0012\u0006\u0010\u00e7\u00f8\u0097\u00a8\u0006\"\u000539497\u0012\u0011\b#\u0012\u0006\u0010\u008c\u00f9\u0097\u00a8\u0006\"\u000549407\u0012\u0011\b$\u0012\u0006\u0010\u00cb\u00f9\u0097\u00a8\u0006\"\u000550034\u0012\u0011\b%\u0012\u0006\u0010\u00f6\u00f9\u0097\u00a8\u0006\"\u000540903\u0012\u0011\b&\u0012\u0006\u0010\u00af\u00fa\u0097\u00a8\u0006\"\u000550035\u0012\u0011\b'\u0012\u0006\u0010\u00e8\u00fa\u0097\u00a8\u0006\"\u000550036\u0012\u0011\b(\u0012\u0006\u0010\u00db\u00fb\u0097\u00a8\u0006\"\u000535712\u0012\u0011\b)\u0012\u0006\u0010\u00cb\u00fc\u0097\u00a8\u0006\"\u000535713\u001a\b\u001a\u0006JJBB21 \u00ae\u00e8\u0097\u00a8\u0006\"`\n/\n\u001018357-701ff27f-2\u0012\b15:15:00\u001a\b20230916 \u0000*\u00035760\u0000\u0012\u001d\r@W\u0013\u00c2\u0015m;\u0092\u00c2\u001d\u0000\u0000\u00b0C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-r\u001c?A(\u00ae\u00e8\u0097\u00a8\u0006B\b\u001a\u0006JJBB21" + }, + { + "type": "sin_recorrido", + "entity": "\n$38420c18-90e1-409e-94d5-923e728f0c5a\"`\n/\n\u001018355-701ff27f-2\u0012\b14:45:00\u001a\b20230916 \u0000*\u00035760\u0000\u0012\u001d\r\u00cdB\u0013\u00c2\u0015\u0083\u000b\u0092\u00c2\u001d\u0000\u0000NC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ac\u00e8\u0097\u00a8\u0006B\b\u001a\u0006JPRZ15" + }, + { + "type": "con_recorrido", + "entity": "\n$29a7e504-6b61-436e-b3ad-f2010a4d4e6e\u001a\u00de\u0002\n/\n\u001018356-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00035760\u0000\u0012\u0011\b\u001b\u0012\u0006\u0010\u00c0\u00e8\u0097\u00a8\u0006\"\u000542317\u0012\u0011\b\u001c\u0012\u0006\u0010\u008f\u00e9\u0097\u00a8\u0006\"\u000542319\u0012\u0011\b\u001d\u0012\u0006\u0010\u00d4\u00e9\u0097\u00a8\u0006\"\u000542320\u0012\u0011\b\u001e\u0012\u0006\u0010\u008f\u00ea\u0097\u00a8\u0006\"\u000538514\u0012\u0011\b\u001f\u0012\u0006\u0010\u00c8\u00ea\u0097\u00a8\u0006\"\u000534586\u0012\u0011\b \u0012\u0006\u0010\u00e6\u00ea\u0097\u00a8\u0006\"\u000534587\u0012\u0011\b!\u0012\u0006\u0010\u00ff\u00ea\u0097\u00a8\u0006\"\u000534588\u0012\u0011\b\"\u0012\u0006\u0010\u00af\u00eb\u0097\u00a8\u0006\"\u000539497\u0012\u0011\b#\u0012\u0006\u0010\u00d1\u00eb\u0097\u00a8\u0006\"\u000549407\u0012\u0011\b$\u0012\u0006\u0010\u008b\u00ec\u0097\u00a8\u0006\"\u000550034\u0012\u0011\b%\u0012\u0006\u0010\u00b2\u00ec\u0097\u00a8\u0006\"\u000540903\u0012\u0011\b&\u0012\u0006\u0010\u00e4\u00ec\u0097\u00a8\u0006\"\u000550035\u0012\u0011\b'\u0012\u0006\u0010\u0096\u00ed\u0097\u00a8\u0006\"\u000550036\u0012\u0011\b(\u0012\u0006\u0010\u00f8\u00ed\u0097\u00a8\u0006\"\u000535712\u0012\u0011\b)\u0012\u0006\u0010\u00d3\u00ee\u0097\u00a8\u0006\"\u000535713\u001a\b\u001a\u0006KHSX95 \u00ac\u00e8\u0097\u00a8\u0006\"`\n/\n\u001018356-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00035760\u0000\u0012\u001d\rxR\u0013\u00c2\u0015\u0093\u001b\u0092\u00c2\u001d\u0000\u0000xB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ac\u00e8\u0097\u00a8\u0006B\b\u001a\u0006KHSX95" + }, + { + "type": "con_recorrido", + "entity": "\n$3c578dfa-f49e-47f2-8dc8-3fd99d5286c5\u001a\u00a1\u0005\n/\n\u001018280-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00035760\u0001\u0012\u0011\b\u0014\u0012\u0006\u0010\u00bc\u00ec\u0097\u00a8\u0006\"\u000535748\u0012\u0011\b\u0015\u0012\u0006\u0010\u0081\u00ed\u0097\u00a8\u0006\"\u000535749\u0012\u0011\b\u0016\u0012\u0006\u0010\u00ae\u00ed\u0097\u00a8\u0006\"\u000535750\u0012\u0011\b\u0017\u0012\u0006\u0010\u00bb\u00ee\u0097\u00a8\u0006\"\u000535681\u0012\u0011\b\u0018\u0012\u0006\u0010\u00a5\u00ef\u0097\u00a8\u0006\"\u000535128\u0012\u0011\b\u0019\u0012\u0006\u0010\u00f7\u00ef\u0097\u00a8\u0006\"\u000591121\u0012\u0011\b\u001a\u0012\u0006\u0010\u00aa\u00f0\u0097\u00a8\u0006\"\u000591122\u0012\u0011\b\u001b\u0012\u0006\u0010\u00ee\u00f0\u0097\u00a8\u0006\"\u000535129\u0012\u0011\b\u001c\u0012\u0006\u0010\u009c\u00f1\u0097\u00a8\u0006\"\u000591123\u0012\u0011\b\u001d\u0012\u0006\u0010\u00c1\u00f1\u0097\u00a8\u0006\"\u000591124\u0012\u0011\b\u001e\u0012\u0006\u0010\u00ea\u00f1\u0097\u00a8\u0006\"\u000535136\u0012\u0011\b\u001f\u0012\u0006\u0010\u008f\u00f2\u0097\u00a8\u0006\"\u000591125\u0012\u0011\b \u0012\u0006\u0010\u00ba\u00f2\u0097\u00a8\u0006\"\u000535130\u0012\u0011\b!\u0012\u0006\u0010\u00e7\u00f2\u0097\u00a8\u0006\"\u000591126\u0012\u0011\b\"\u0012\u0006\u0010\u00bf\u00f3\u0097\u00a8\u0006\"\u000591127\u0012\u0011\b#\u0012\u0006\u0010\u00dc\u00f3\u0097\u00a8\u0006\"\u000535841\u0012\u0011\b$\u0012\u0006\u0010\u00fc\u00f3\u0097\u00a8\u0006\"\u000535842\u0012\u0011\b%\u0012\u0006\u0010\u00af\u00f4\u0097\u00a8\u0006\"\u000535843\u0012\u0011\b&\u0012\u0006\u0010\u00d1\u00f4\u0097\u00a8\u0006\"\u000535844\u0012\u0011\b'\u0012\u0006\u0010\u008b\u00f5\u0097\u00a8\u0006\"\u000591128\u0012\u0011\b(\u0012\u0006\u0010\u00ba\u00f5\u0097\u00a8\u0006\"\u000535846\u0012\u0011\b)\u0012\u0006\u0010\u00dd\u00f5\u0097\u00a8\u0006\"\u000535847\u0012\u0011\b*\u0012\u0006\u0010\u00fc\u00f5\u0097\u00a8\u0006\"\u000535848\u0012\u0011\b+\u0012\u0006\u0010\u0081\u00f6\u0097\u00a8\u0006\"\u000535157\u0012\u0011\b,\u0012\u0006\u0010\u00c9\u00f6\u0097\u00a8\u0006\"\u000535147\u0012\u0011\b-\u0012\u0006\u0010\u00f8\u00f6\u0097\u00a8\u0006\"\u000535148\u0012\u0011\b.\u0012\u0006\u0010\u009b\u00f7\u0097\u00a8\u0006\"\u000591129\u0012\u0011\b/\u0012\u0006\u0010\u00c4\u00f7\u0097\u00a8\u0006\"\u000591130\u0012\u0011\b0\u0012\u0006\u0010\u00fa\u00f7\u0097\u00a8\u0006\"\u000591131\u0012\u0011\b1\u0012\u0006\u0010\u00d7\u00f8\u0097\u00a8\u0006\"\u000535669\u0012\u0011\b2\u0012\u0006\u0010\u00ac\u00f9\u0097\u00a8\u0006\"\u000535670\u0012\u0011\b3\u0012\u0006\u0010\u00d1\u00f9\u0097\u00a8\u0006\"\u000535671\u001a\b\u001a\u0006WW3020 \u00b0\u00e8\u0097\u00a8\u0006\"`\n/\n\u001018280-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00035760\u0001\u0012\u001d\rSR\u0013\u00c2\u0015w\"\u0092\u00c2\u001d\u0000\u0000\u009cC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u001c\u00c7YA(\u00b0\u00e8\u0097\u00a8\u0006B\b\u001a\u0006WW3020" + }, + { + "type": "con_recorrido", + "entity": "\n$3010e5be-f3ee-45b2-8561-697132acade5\u001a\u00ab\u0007\n/\n\u001018566-701ff27f-2\u0012\b15:17:00\u001a\b20230916 \u0000*\u00035780\u0000\u0012\u0011\b\t\u0012\u0006\u0010\u00ac\u00e8\u0097\u00a8\u0006\"\u000535508\u0012\u0011\b\n\u0012\u0006\u0010\u00d2\u00e8\u0097\u00a8\u0006\"\u000535514\u0012\u0011\b\u000b\u0012\u0006\u0010\u0087\u00e9\u0097\u00a8\u0006\"\u000535515\u0012\u0011\b\f\u0012\u0006\u0010\u00bd\u00e9\u0097\u00a8\u0006\"\u000535516\u0012\u0011\b\r\u0012\u0006\u0010\u00e0\u00e9\u0097\u00a8\u0006\"\u000535517\u0012\u0011\b\u000e\u0012\u0006\u0010\u00b0\u00ea\u0097\u00a8\u0006\"\u000535763\u0012\u0011\b\u000f\u0012\u0006\u0010\u00f1\u00ea\u0097\u00a8\u0006\"\u000535761\u0012\u0011\b\u0010\u0012\u0006\u0010\u0097\u00eb\u0097\u00a8\u0006\"\u000535522\u0012\u0011\b\u0011\u0012\u0006\u0010\u0089\u00ec\u0097\u00a8\u0006\"\u000535524\u0012\u0011\b\u0012\u0012\u0006\u0010\u00ec\u00ec\u0097\u00a8\u0006\"\u000535525\u0012\u0011\b\u0013\u0012\u0006\u0010\u00f1\u00ee\u0097\u00a8\u0006\"\u000535786\u0012\u0011\b\u0014\u0012\u0006\u0010\u00b1\u00ef\u0097\u00a8\u0006\"\u000535787\u0012\u0011\b\u0015\u0012\u0006\u0010\u00ee\u00ef\u0097\u00a8\u0006\"\u000535788\u0012\u0011\b\u0016\u0012\u0006\u0010\u00cf\u00f0\u0097\u00a8\u0006\"\u000535789\u0012\u0011\b\u0017\u0012\u0006\u0010\u00f9\u00f0\u0097\u00a8\u0006\"\u000535790\u0012\u0011\b\u0018\u0012\u0006\u0010\u00c8\u00f1\u0097\u00a8\u0006\"\u000535791\u0012\u0011\b\u0019\u0012\u0006\u0010\u00f6\u00f1\u0097\u00a8\u0006\"\u000535792\u0012\u0011\b\u001a\u0012\u0006\u0010\u00ad\u00f2\u0097\u00a8\u0006\"\u000535793\u0012\u0011\b\u001b\u0012\u0006\u0010\u009f\u00f3\u0097\u00a8\u0006\"\u000591116\u0012\u0011\b\u001c\u0012\u0006\u0010\u00f8\u00f6\u0097\u00a8\u0006\"\u000535794\u0012\u0011\b\u001d\u0012\u0006\u0010\u00db\u00f7\u0097\u00a8\u0006\"\u000535796\u0012\u0011\b\u001e\u0012\u0006\u0010\u008f\u00f8\u0097\u00a8\u0006\"\u000535797\u0012\u0011\b\u001f\u0012\u0006\u0010\u00bb\u00f8\u0097\u00a8\u0006\"\u000535798\u0012\u0011\b \u0012\u0006\u0010\u00e4\u00f8\u0097\u00a8\u0006\"\u000535799\u0012\u0011\b!\u0012\u0006\u0010\u00b0\u00f9\u0097\u00a8\u0006\"\u000535800\u0012\u0011\b\"\u0012\u0006\u0010\u00e7\u00f9\u0097\u00a8\u0006\"\u000535801\u0012\u0011\b#\u0012\u0006\u0010\u0084\u00fa\u0097\u00a8\u0006\"\u000535802\u0012\u0011\b$\u0012\u0006\u0010\u00b9\u00fa\u0097\u00a8\u0006\"\u000535803\u0012\u0011\b%\u0012\u0006\u0010\u00f7\u00fa\u0097\u00a8\u0006\"\u000538507\u0012\u0011\b&\u0012\u0006\u0010\u00b3\u00fb\u0097\u00a8\u0006\"\u000534473\u0012\u0011\b'\u0012\u0006\u0010\u00e7\u00fb\u0097\u00a8\u0006\"\u000538500\u0012\u0011\b(\u0012\u0006\u0010\u009d\u00fc\u0097\u00a8\u0006\"\u000535808\u0012\u0011\b)\u0012\u0006\u0010\u0083\u00fd\u0097\u00a8\u0006\"\u000535814\u0012\u0011\b*\u0012\u0006\u0010\u00dd\u00fd\u0097\u00a8\u0006\"\u000535815\u0012\u0011\b+\u0012\u0006\u0010\u0081\u00fe\u0097\u00a8\u0006\"\u000535816\u0012\u0011\b,\u0012\u0006\u0010\u0087\u00fe\u0097\u00a8\u0006\"\u000535817\u0012\u0011\b-\u0012\u0006\u0010\u00bd\u00fe\u0097\u00a8\u0006\"\u000535818\u0012\u0011\b.\u0012\u0006\u0010\u00ef\u00fe\u0097\u00a8\u0006\"\u000535819\u0012\u0011\b/\u0012\u0006\u0010\u00ee\u0080\u0098\u00a8\u0006\"\u000535822\u0012\u0011\b0\u0012\u0006\u0010\u00b3\u0081\u0098\u00a8\u0006\"\u000535823\u0012\u0011\b1\u0012\u0006\u0010\u0081\u0082\u0098\u00a8\u0006\"\u000535723\u0012\u0011\b2\u0012\u0006\u0010\u00c4\u0082\u0098\u00a8\u0006\"\u000535722\u0012\u0011\b3\u0012\u0006\u0010\u00bf\u0083\u0098\u00a8\u0006\"\u000535826\u0012\u0011\b4\u0012\u0006\u0010\u00a2\u0084\u0098\u00a8\u0006\"\u000535548\u0012\u0011\b5\u0012\u0006\u0010\u00ac\u0085\u0098\u00a8\u0006\"\u000535547\u0012\u0011\b6\u0012\u0006\u0010\u0097\u0086\u0098\u00a8\u0006\"\u000535546\u001a\b\u001a\u0006DWVX27 \u009e\u00e8\u0097\u00a8\u0006\"`\n/\n\u001018566-701ff27f-2\u0012\b15:17:00\u001a\b20230916 \u0000*\u00035780\u0000\u0012\u001d\rZ\\\u0013\u00c2\u0015\u00eaG\u0092\u00c2\u001d\u0000\u0000\u00b0C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00c7q\u00cc@(\u009e\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DWVX27" + }, + { + "type": "con_recorrido", + "entity": "\n$13f06972-230a-4a9c-b482-e9d6571576e3\u001a\u00f1\u0002\n/\n\u001018630-701ff27f-2\u0012\b14:41:00\u001a\b20230916 \u0000*\u00035780\u0001\u0012\u0011\b'\u0012\u0006\u0010\u00b8\u00e8\u0097\u00a8\u0006\"\u000535417\u0012\u0011\b(\u0012\u0006\u0010\u0084\u00e9\u0097\u00a8\u0006\"\u000535755\u0012\u0011\b)\u0012\u0006\u0010\u00e6\u00ea\u0097\u00a8\u0006\"\u000535756\u0012\u0011\b*\u0012\u0006\u0010\u00db\u00eb\u0097\u00a8\u0006\"\u000535757\u0012\u0011\b+\u0012\u0006\u0010\u00ff\u00eb\u0097\u00a8\u0006\"\u000535758\u0012\u0011\b,\u0012\u0006\u0010\u0091\u00ec\u0097\u00a8\u0006\"\u000535759\u0012\u0011\b-\u0012\u0006\u0010\u00c0\u00ec\u0097\u00a8\u0006\"\u000535760\u0012\u0011\b.\u0012\u0006\u0010\u00ee\u00ec\u0097\u00a8\u0006\"\u000535761\u0012\u0011\b/\u0012\u0006\u0010\u0080\u00ed\u0097\u00a8\u0006\"\u000535762\u0012\u0011\b0\u0012\u0006\u0010\u00ac\u00ed\u0097\u00a8\u0006\"\u000535763\u0012\u0011\b1\u0012\u0006\u0010\u00d0\u00ed\u0097\u00a8\u0006\"\u000535764\u0012\u0011\b2\u0012\u0006\u0010\u00f2\u00ed\u0097\u00a8\u0006\"\u000535517\u0012\u0011\b3\u0012\u0006\u0010\u00c1\u00ee\u0097\u00a8\u0006\"\u000535767\u0012\u0011\b4\u0012\u0006\u0010\u00fb\u00ee\u0097\u00a8\u0006\"\u000535398\u0012\u0011\b5\u0012\u0006\u0010\u009e\u00f0\u0097\u00a8\u0006\"\u000591060\u0012\u0011\b6\u0012\u0006\u0010\u00b5\u00f0\u0097\u00a8\u0006\"\u000535769\u001a\b\u001a\u0006KCDS84 \u00a9\u00e8\u0097\u00a8\u0006\"`\n/\n\u001018630-701ff27f-2\u0012\b14:41:00\u001a\b20230916 \u0000*\u00035780\u0001\u0012\u001d\r\u00e1Y\u0013\u00c2\u0015\u008f:\u0092\u00c2\u001d\u0000\u0000\u0088C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00c8qtA(\u00a9\u00e8\u0097\u00a8\u0006B\b\u001a\u0006KCDS84" + }, + { + "type": "sin_recorrido", + "entity": "\n$02e2d6b2-49c6-4397-83d0-b637e8e7b725\"`\n/\n\u001018629-701ff27f-2\u0012\b14:21:00\u001a\b20230916 \u0000*\u00035780\u0001\u0012\u001d\r\u00f0e\u0013\u00c2\u0015\u00e7H\u0092\u00c2\u001d\u0000\u0000\u00c0A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a2\u00e7\u0097\u00a8\u0006B\b\u001a\u0006YN2777" + }, + { + "type": "con_recorrido", + "entity": "\n$a3f155e3-bc6b-4125-9b6b-b47cc3805a4a\u001a\u00df\u0006\n/\n\u001018632-701ff27f-2\u0012\b15:21:00\u001a\b20230916 \u0000*\u00035780\u0001\u0012\u0011\b\r\u0012\u0006\u0010\u00b4\u00e8\u0097\u00a8\u0006\"\u000535726\u0012\u0011\b\u000e\u0012\u0006\u0010\u0088\u00e9\u0097\u00a8\u0006\"\u000535727\u0012\u0011\b\u000f\u0012\u0006\u0010\u00f9\u00e9\u0097\u00a8\u0006\"\u000535729\u0012\u0011\b\u0010\u0012\u0006\u0010\u009a\u00ea\u0097\u00a8\u0006\"\u000535730\u0012\u0011\b\u0011\u0012\u0006\u0010\u00ba\u00ea\u0097\u00a8\u0006\"\u000535731\u0012\u0011\b\u0012\u0012\u0006\u0010\u00fc\u00ea\u0097\u00a8\u0006\"\u000535201\u0012\u0011\b\u0013\u0012\u0006\u0010\u00d2\u00eb\u0097\u00a8\u0006\"\u000535202\u0012\u0011\b\u0014\u0012\u0006\u0010\u00ba\u00ec\u0097\u00a8\u0006\"\u000590001\u0012\u0011\b\u0015\u0012\u0006\u0010\u0090\u00ed\u0097\u00a8\u0006\"\u000539599\u0012\u0011\b\u0016\u0012\u0006\u0010\u00a7\u00ed\u0097\u00a8\u0006\"\u000539600\u0012\u0011\b\u0017\u0012\u0006\u0010\u00e8\u00ed\u0097\u00a8\u0006\"\u000537496\u0012\u0011\b\u0018\u0012\u0006\u0010\u0099\u00ee\u0097\u00a8\u0006\"\u000545064\u0012\u0011\b\u0019\u0012\u0006\u0010\u00e0\u00ee\u0097\u00a8\u0006\"\u000537506\u0012\u0011\b\u001a\u0012\u0006\u0010\u00bd\u00ef\u0097\u00a8\u0006\"\u000537520\u0012\u0011\b\u001b\u0012\u0006\u0010\u00a5\u00f0\u0097\u00a8\u0006\"\u000537470\u0012\u0011\b\u001c\u0012\u0006\u0010\u00bd\u00f0\u0097\u00a8\u0006\"\u000537477\u0012\u0011\b\u001d\u0012\u0006\u0010\u00d9\u00f0\u0097\u00a8\u0006\"\u000591118\u0012\u0011\b\u001e\u0012\u0006\u0010\u0096\u00f1\u0097\u00a8\u0006\"\u000535223\u0012\u0011\b\u001f\u0012\u0006\u0010\u00c2\u00f1\u0097\u00a8\u0006\"\u000539547\u0012\u0011\b \u0012\u0006\u0010\u008d\u00f2\u0097\u00a8\u0006\"\u000535224\u0012\u0011\b!\u0012\u0006\u0010\u00b4\u00f3\u0097\u00a8\u0006\"\u000535225\u0012\u0011\b\"\u0012\u0006\u0010\u00ff\u00f7\u0097\u00a8\u0006\"\u000535748\u0012\u0011\b#\u0012\u0006\u0010\u00c2\u00f8\u0097\u00a8\u0006\"\u000535749\u0012\u0011\b$\u0012\u0006\u0010\u00f4\u00f8\u0097\u00a8\u0006\"\u000535750\u0012\u0011\b%\u0012\u0006\u0010\u00c9\u00f9\u0097\u00a8\u0006\"\u000535751\u0012\u0011\b&\u0012\u0006\u0010\u00c8\u00fa\u0097\u00a8\u0006\"\u000535752\u0012\u0011\b'\u0012\u0006\u0010\u00ea\u00fb\u0097\u00a8\u0006\"\u000535417\u0012\u0011\b(\u0012\u0006\u0010\u00bf\u00fc\u0097\u00a8\u0006\"\u000535755\u0012\u0011\b)\u0012\u0006\u0010\u00cd\u00fe\u0097\u00a8\u0006\"\u000535756\u0012\u0011\b*\u0012\u0006\u0010\u00e4\u00ff\u0097\u00a8\u0006\"\u000535757\u0012\u0011\b+\u0012\u0006\u0010\u0094\u0080\u0098\u00a8\u0006\"\u000535758\u0012\u0011\b,\u0012\u0006\u0010\u00ac\u0080\u0098\u00a8\u0006\"\u000535759\u0012\u0011\b-\u0012\u0006\u0010\u00ec\u0080\u0098\u00a8\u0006\"\u000535760\u0012\u0011\b.\u0012\u0006\u0010\u00ac\u0081\u0098\u00a8\u0006\"\u000535761\u0012\u0011\b/\u0012\u0006\u0010\u00c7\u0081\u0098\u00a8\u0006\"\u000535762\u0012\u0011\b0\u0012\u0006\u0010\u0086\u0082\u0098\u00a8\u0006\"\u000535763\u0012\u0011\b1\u0012\u0006\u0010\u00bb\u0082\u0098\u00a8\u0006\"\u000535764\u0012\u0011\b2\u0012\u0006\u0010\u00ee\u0082\u0098\u00a8\u0006\"\u000535517\u0012\u0011\b3\u0012\u0006\u0010\u00e6\u0083\u0098\u00a8\u0006\"\u000535767\u0012\u0011\b4\u0012\u0006\u0010\u00c2\u0084\u0098\u00a8\u0006\"\u000535398\u0012\u0011\b5\u0012\u0006\u0010\u00d3\u0086\u0098\u00a8\u0006\"\u000591060\u0012\u0011\b6\u0012\u0006\u0010\u00fb\u0086\u0098\u00a8\u0006\"\u000535769\u001a\b\u001a\u0006YU1699 \u009e\u00e8\u0097\u00a8\u0006\"`\n/\n\u001018632-701ff27f-2\u0012\b15:21:00\u001a\b20230916 \u0000*\u00035780\u0001\u0012\u001d\r\u00a9I\u0013\u00c2\u0015.\u0004\u0092\u00c2\u001d\u0000\u0000\u00c8A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009e\u00e8\u0097\u00a8\u0006B\b\u001a\u0006YU1699" + }, + { + "type": "con_recorrido", + "entity": "\n$88da9381-1a9a-4940-b480-a7c3ea5748dd\u001a\u0097\u0003\n/\n\u001018696-701ff27f-2\u0012\b14:35:00\u001a\b20230916 \u0000*\u00035790\u0000\u0012\u0011\b-\u0012\u0006\u0010\u008b\u00e9\u0097\u00a8\u0006\"\u000542319\u0012\u0011\b.\u0012\u0006\u0010\u00da\u00e9\u0097\u00a8\u0006\"\u000542320\u0012\u0011\b/\u0012\u0006\u0010\u008b\u00ea\u0097\u00a8\u0006\"\u000538514\u0012\u0011\b0\u0012\u0006\u0010\u00c4\u00ea\u0097\u00a8\u0006\"\u000534586\u0012\u0011\b1\u0012\u0006\u0010\u00e2\u00ea\u0097\u00a8\u0006\"\u000534587\u0012\u0011\b2\u0012\u0006\u0010\u00fb\u00ea\u0097\u00a8\u0006\"\u000534588\u0012\u0011\b3\u0012\u0006\u0010\u00ae\u00eb\u0097\u00a8\u0006\"\u000539497\u0012\u0011\b4\u0012\u0006\u0010\u00ce\u00eb\u0097\u00a8\u0006\"\u000549407\u0012\u0011\b5\u0012\u0006\u0010\u0087\u00ec\u0097\u00a8\u0006\"\u000550034\u0012\u0011\b6\u0012\u0006\u0010\u00af\u00ec\u0097\u00a8\u0006\"\u000540903\u0012\u0011\b7\u0012\u0006\u0010\u00d1\u00ec\u0097\u00a8\u0006\"\u000540904\u0012\u0011\b8\u0012\u0006\u0010\u00fd\u00ec\u0097\u00a8\u0006\"\u000535814\u0012\u0011\b9\u0012\u0006\u0010\u00c7\u00ed\u0097\u00a8\u0006\"\u000535815\u0012\u0011\b:\u0012\u0006\u0010\u00e1\u00ed\u0097\u00a8\u0006\"\u000535816\u0012\u0011\b;\u0012\u0006\u0010\u00ed\u00ed\u0097\u00a8\u0006\"\u000535817\u0012\u0011\b<\u0012\u0006\u0010\u008f\u00ee\u0097\u00a8\u0006\"\u000535818\u0012\u0011\b=\u0012\u0006\u0010\u00b5\u00ee\u0097\u00a8\u0006\"\u000535819\u0012\u0011\b>\u0012\u0006\u0010\u00ed\u00ef\u0097\u00a8\u0006\"\u000535822\u001a\b\u001a\u0006DWVX30 \u00c4\u00e8\u0097\u00a8\u0006\"`\n/\n\u001018696-701ff27f-2\u0012\b14:35:00\u001a\b20230916 \u0000*\u00035790\u0000\u0012\u001d\r\u00e8Q\u0013\u00c2\u0015\u00e2\u001a\u0092\u00c2\u001d\u0000\u0000xB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c4\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DWVX30" + }, + { + "type": "con_recorrido", + "entity": "\n$d828d22c-debf-4676-aa4d-0c16e75199cb\u001a\u00ff\u0001\n/\n\u001018693-701ff27f-2\u0012\b13:50:00\u001a\b20230916 \u0000*\u00035790\u0000\u0012\u0011\b5\u0012\u0006\u0010\u00e8\u00e8\u0097\u00a8\u0006\"\u000550034\u0012\u0011\b6\u0012\u0006\u0010\u0092\u00e9\u0097\u00a8\u0006\"\u000540903\u0012\u0011\b7\u0012\u0006\u0010\u00b6\u00e9\u0097\u00a8\u0006\"\u000540904\u0012\u0011\b8\u0012\u0006\u0010\u00e4\u00e9\u0097\u00a8\u0006\"\u000535814\u0012\u0011\b9\u0012\u0006\u0010\u00b2\u00ea\u0097\u00a8\u0006\"\u000535815\u0012\u0011\b:\u0012\u0006\u0010\u00cd\u00ea\u0097\u00a8\u0006\"\u000535816\u0012\u0011\b;\u0012\u0006\u0010\u00da\u00ea\u0097\u00a8\u0006\"\u000535817\u0012\u0011\b<\u0012\u0006\u0010\u00fd\u00ea\u0097\u00a8\u0006\"\u000535818\u0012\u0011\b=\u0012\u0006\u0010\u00a5\u00eb\u0097\u00a8\u0006\"\u000535819\u0012\u0011\b>\u0012\u0006\u0010\u00e2\u00ec\u0097\u00a8\u0006\"\u000535822\u001a\b\u001a\u0006FSLC62 \u00b6\u00e8\u0097\u00a8\u0006\"`\n/\n\u001018693-701ff27f-2\u0012\b13:50:00\u001a\b20230916 \u0000*\u00035790\u0000\u0012\u001d\r\u00ffG\u0013\u00c2\u0015\u0086\u0012\u0092\u00c2\u001d\u0000\u0000\u001dC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b6\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FSLC62" + }, + { + "type": "con_recorrido", + "entity": "\n$8a4473af-2e12-44d7-9c6c-c1028badd0f7\u001aT\n/\n\u001018694-701ff27f-2\u0012\b14:05:00\u001a\b20230916 \u0000*\u00035790\u0000\u0012\u0011\b>\u0012\u0006\u0010\u00e3\u00e8\u0097\u00a8\u0006\"\u000535822\u001a\b\u001a\u0006HRPG12 \u0086\u00e8\u0097\u00a8\u0006\"`\n/\n\u001018694-701ff27f-2\u0012\b14:05:00\u001a\b20230916 \u0000*\u00035790\u0000\u0012\u001d\r\u000fH\u0013\u00c2\u0015h\u0007\u0092\u00c2\u001d\u0000\u0000\u00c2B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-r\u001c\u0017A(\u0086\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HRPG12" + }, + { + "type": "con_recorrido", + "entity": "\n$6571f1a5-9155-4cbe-9926-47f76e98d544\u001a\u00b4\u0005\n/\n\u001018698-701ff27f-2\u0012\b15:05:00\u001a\b20230916 \u0000*\u00035790\u0000\u0012\u0011\b\u001e\u0012\u0006\u0010\u00bd\u00e8\u0097\u00a8\u0006\"\u000535785\u0012\u0011\b\u001f\u0012\u0006\u0010\u00b5\u00ea\u0097\u00a8\u0006\"\u000535786\u0012\u0011\b \u0012\u0006\u0010\u00f8\u00ea\u0097\u00a8\u0006\"\u000535787\u0012\u0011\b!\u0012\u0006\u0010\u00b8\u00eb\u0097\u00a8\u0006\"\u000535788\u0012\u0011\b\"\u0012\u0006\u0010\u009b\u00ec\u0097\u00a8\u0006\"\u000535789\u0012\u0011\b#\u0012\u0006\u0010\u00c6\u00ec\u0097\u00a8\u0006\"\u000535790\u0012\u0011\b$\u0012\u0006\u0010\u0096\u00ed\u0097\u00a8\u0006\"\u000535791\u0012\u0011\b%\u0012\u0006\u0010\u00c4\u00ed\u0097\u00a8\u0006\"\u000535792\u0012\u0011\b&\u0012\u0006\u0010\u00fc\u00ed\u0097\u00a8\u0006\"\u000535793\u0012\u0011\b'\u0012\u0006\u0010\u00ec\u00ee\u0097\u00a8\u0006\"\u000591116\u0012\u0011\b(\u0012\u0006\u0010\u00bb\u00f2\u0097\u00a8\u0006\"\u000539545\u0012\u0011\b)\u0012\u0006\u0010\u00e1\u00f3\u0097\u00a8\u0006\"\u000539546\u0012\u0011\b*\u0012\u0006\u0010\u00ea\u00f4\u0097\u00a8\u0006\"\u000535286\u0012\u0011\b+\u0012\u0006\u0010\u0086\u00f5\u0097\u00a8\u0006\"\u000535287\u0012\u0011\b,\u0012\u0006\u0010\u00cc\u00f5\u0097\u00a8\u0006\"\u000542317\u0012\u0011\b-\u0012\u0006\u0010\u0099\u00f6\u0097\u00a8\u0006\"\u000542319\u0012\u0011\b.\u0012\u0006\u0010\u00e6\u00f6\u0097\u00a8\u0006\"\u000542320\u0012\u0011\b/\u0012\u0006\u0010\u0098\u00f7\u0097\u00a8\u0006\"\u000538514\u0012\u0011\b0\u0012\u0006\u0010\u00d2\u00f7\u0097\u00a8\u0006\"\u000534586\u0012\u0011\b1\u0012\u0006\u0010\u00f2\u00f7\u0097\u00a8\u0006\"\u000534587\u0012\u0011\b2\u0012\u0006\u0010\u008c\u00f8\u0097\u00a8\u0006\"\u000534588\u0012\u0011\b3\u0012\u0006\u0010\u00c1\u00f8\u0097\u00a8\u0006\"\u000539497\u0012\u0011\b4\u0012\u0006\u0010\u00e4\u00f8\u0097\u00a8\u0006\"\u000549407\u0012\u0011\b5\u0012\u0006\u0010\u00a3\u00f9\u0097\u00a8\u0006\"\u000550034\u0012\u0011\b6\u0012\u0006\u0010\u00ce\u00f9\u0097\u00a8\u0006\"\u000540903\u0012\u0011\b7\u0012\u0006\u0010\u00f4\u00f9\u0097\u00a8\u0006\"\u000540904\u0012\u0011\b8\u0012\u0006\u0010\u00a6\u00fa\u0097\u00a8\u0006\"\u000535814\u0012\u0011\b9\u0012\u0006\u0010\u00fc\u00fa\u0097\u00a8\u0006\"\u000535815\u0012\u0011\b:\u0012\u0006\u0010\u009b\u00fb\u0097\u00a8\u0006\"\u000535816\u0012\u0011\b;\u0012\u0006\u0010\u00a9\u00fb\u0097\u00a8\u0006\"\u000535817\u0012\u0011\b<\u0012\u0006\u0010\u00d2\u00fb\u0097\u00a8\u0006\"\u000535818\u0012\u0011\b=\u0012\u0006\u0010\u0080\u00fc\u0097\u00a8\u0006\"\u000535819\u0012\u0011\b>\u0012\u0006\u0010\u00e7\u00fd\u0097\u00a8\u0006\"\u000535822\u001a\b\u001a\u0006HYVP99 \u0089\u00e8\u0097\u00a8\u0006\"`\n/\n\u001018698-701ff27f-2\u0012\b15:05:00\u001a\b20230916 \u0000*\u00035790\u0000\u0012\u001d\r\u00e5_\u0013\u00c2\u0015qB\u0092\u00c2\u001d\u0000\u00000A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000pA(\u0089\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HYVP99" + }, + { + "type": "con_recorrido", + "entity": "\n$b6c049fe-f56f-4da6-b691-4b872cb5fa63\u001a\u0082\n\n/\n\u001018700-701ff27f-2\u0012\b15:35:00\u001a\b20230916 \u0000*\u00035790\u0000\u0012\u0011\b\u0001\u0012\u0006\u0010\u009f\u00ea\u0097\u00a8\u0006\"\u000535260\u0012\u0011\b\u0002\u0012\u0006\u0010\u00db\u00ea\u0097\u00a8\u0006\"\u000535261\u0012\u0014\b\u0003\u0012\u0006\u0010\u0089\u00eb\u0097\u00a8\u0006\"\b13025566\u0012\u0011\b\u0004\u0012\u0006\u0010\u00a8\u00eb\u0097\u00a8\u0006\"\u000535262\u0012\u0011\b\u0005\u0012\u0006\u0010\u00bf\u00eb\u0097\u00a8\u0006\"\u000535263\u0012\u0014\b\u0006\u0012\u0006\u0010\u00e2\u00eb\u0097\u00a8\u0006\"\b13025567\u0012\u0011\b\u0007\u0012\u0006\u0010\u00db\u00ec\u0097\u00a8\u0006\"\u000535265\u0012\u0011\b\b\u0012\u0006\u0010\u008c\u00ed\u0097\u00a8\u0006\"\u000535266\u0012\u0011\b\t\u0012\u0006\u0010\u009b\u00ed\u0097\u00a8\u0006\"\u000550006\u0012\u0011\b\n\u0012\u0006\u0010\u00aa\u00ed\u0097\u00a8\u0006\"\u000535267\u0012\u0011\b\u000b\u0012\u0006\u0010\u00ad\u00ed\u0097\u00a8\u0006\"\u000550005\u0012\u0014\b\f\u0012\u0006\u0010\u009a\u00ee\u0097\u00a8\u0006\"\b16263780\u0012\u0014\b\r\u0012\u0006\u0010\u00d6\u00ee\u0097\u00a8\u0006\"\b16263781\u0012\u0014\b\u000e\u0012\u0006\u0010\u00a9\u00ef\u0097\u00a8\u0006\"\b16263782\u0012\u0014\b\u000f\u0012\u0006\u0010\u00d8\u00ef\u0097\u00a8\u0006\"\b16263783\u0012\u0014\b\u0010\u0012\u0006\u0010\u008f\u00f0\u0097\u00a8\u0006\"\b16263784\u0012\u0014\b\u0011\u0012\u0006\u0010\u00d0\u00f0\u0097\u00a8\u0006\"\b16258263\u0012\u0014\b\u0012\u0012\u0006\u0010\u0080\u00f1\u0097\u00a8\u0006\"\b16258262\u0012\u0014\b\u0013\u0012\u0006\u0010\u0091\u00f1\u0097\u00a8\u0006\"\b16258261\u0012\u0014\b\u0014\u0012\u0006\u0010\u00b2\u00f1\u0097\u00a8\u0006\"\b16258260\u0012\u0014\b\u0015\u0012\u0006\u0010\u00f1\u00f1\u0097\u00a8\u0006\"\b15360397\u0012\u0014\b\u0016\u0012\u0006\u0010\u009f\u00f2\u0097\u00a8\u0006\"\b15360410\u0012\u0011\b\u0017\u0012\u0006\u0010\u00de\u00f2\u0097\u00a8\u0006\"\u000535268\u0012\u0011\b\u0018\u0012\u0006\u0010\u00fe\u00f2\u0097\u00a8\u0006\"\u000535269\u0012\u0011\b\u0019\u0012\u0006\u0010\u00ac\u00f3\u0097\u00a8\u0006\"\u000535270\u0012\u0011\b\u001a\u0012\u0006\u0010\u00db\u00f4\u0097\u00a8\u0006\"\u000535271\u0012\u0011\b\u001b\u0012\u0006\u0010\u00a0\u00f7\u0097\u00a8\u0006\"\u000535272\u0012\u0011\b\u001c\u0012\u0006\u0010\u00d3\u00f8\u0097\u00a8\u0006\"\u000535273\u0012\u0011\b\u001d\u0012\u0006\u0010\u0083\u00f9\u0097\u00a8\u0006\"\u000535274\u0012\u0011\b\u001e\u0012\u0006\u0010\u00f4\u00f9\u0097\u00a8\u0006\"\u000535785\u0012\u0011\b\u001f\u0012\u0006\u0010\u0087\u00fc\u0097\u00a8\u0006\"\u000535786\u0012\u0011\b \u0012\u0006\u0010\u00d6\u00fc\u0097\u00a8\u0006\"\u000535787\u0012\u0011\b!\u0012\u0006\u0010\u00a2\u00fd\u0097\u00a8\u0006\"\u000535788\u0012\u0011\b\"\u0012\u0006\u0010\u009e\u00fe\u0097\u00a8\u0006\"\u000535789\u0012\u0011\b#\u0012\u0006\u0010\u00d6\u00fe\u0097\u00a8\u0006\"\u000535790\u0012\u0011\b$\u0012\u0006\u0010\u00c0\u00ff\u0097\u00a8\u0006\"\u000535791\u0012\u0011\b%\u0012\u0006\u0010\u00ff\u00ff\u0097\u00a8\u0006\"\u000535792\u0012\u0011\b&\u0012\u0006\u0010\u00cc\u0080\u0098\u00a8\u0006\"\u000535793\u0012\u0011\b'\u0012\u0006\u0010\u00ed\u0081\u0098\u00a8\u0006\"\u000591116\u0012\u0011\b(\u0012\u0006\u0010\u00da\u0087\u0098\u00a8\u0006\"\u000539545\u0012\u0011\b)\u0012\u0006\u0010\u008c\u008a\u0098\u00a8\u0006\"\u000539546\u0012\u0011\b*\u0012\u0006\u0010\u009a\u008c\u0098\u00a8\u0006\"\u000535286\u0012\u0011\b+\u0012\u0006\u0010\u00d2\u008c\u0098\u00a8\u0006\"\u000535287\u0012\u0011\b,\u0012\u0006\u0010\u00e4\u008d\u0098\u00a8\u0006\"\u000542317\u0012\u0011\b-\u0012\u0006\u0010\u0089\u008f\u0098\u00a8\u0006\"\u000542319\u0012\u0011\b.\u0012\u0006\u0010\u00b2\u0090\u0098\u00a8\u0006\"\u000542320\u0012\u0011\b/\u0012\u0006\u0010\u00a3\u0091\u0098\u00a8\u0006\"\u000538514\u0012\u0011\b0\u0012\u0006\u0010\u00ab\u0092\u0098\u00a8\u0006\"\u000534586\u0012\u0011\b1\u0012\u0006\u0010\u00f4\u0092\u0098\u00a8\u0006\"\u000534587\u0012\u0011\b2\u0012\u0006\u0010\u00b3\u0093\u0098\u00a8\u0006\"\u000534588\u0012\u0011\b3\u0012\u0006\u0010\u00b6\u0094\u0098\u00a8\u0006\"\u000539497\u0012\u0011\b4\u0012\u0006\u0010\u008b\u0095\u0098\u00a8\u0006\"\u000549407\u0012\u0011\b5\u0012\u0006\u0010\u00aa\u0096\u0098\u00a8\u0006\"\u000550034\u0012\u0011\b6\u0012\u0006\u0010\u009a\u0097\u0098\u00a8\u0006\"\u000540903\u0012\u0011\b7\u0012\u0006\u0010\u00fe\u0097\u0098\u00a8\u0006\"\u000540904\u0012\u0011\b8\u0012\u0006\u0010\u0084\u0099\u0098\u00a8\u0006\"\u000535814\u0012\u0011\b9\u0012\u0006\u0010\u00f2\u009a\u0098\u00a8\u0006\"\u000535815\u0012\u0011\b:\u0012\u0006\u0010\u00c8\u009b\u0098\u00a8\u0006\"\u000535816\u0012\u0011\b;\u0012\u0006\u0010\u00f2\u009b\u0098\u00a8\u0006\"\u000535817\u0012\u0011\b<\u0012\u0006\u0010\u00e6\u009c\u0098\u00a8\u0006\"\u000535818\u0012\u0011\b=\u0012\u0006\u0010\u00ee\u009d\u0098\u00a8\u0006\"\u000535819\u0012\u0011\b>\u0012\u0006\u0010\u00c4\u00a3\u0098\u00a8\u0006\"\u000535822\u001a\b\u001a\u0006YF2399 \u0098\u00e8\u0097\u00a8\u0006\"`\n/\n\u001018700-701ff27f-2\u0012\b15:35:00\u001a\b20230916 \u0000*\u00035790\u0000\u0012\u001d\r\u00aa\u008a\u0013\u00c2\u0015\u00c2F\u0092\u00c2\u001d\u0000\u0000=C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-VUU@(\u0098\u00e8\u0097\u00a8\u0006B\b\u001a\u0006YF2399" + }, + { + "type": "con_recorrido", + "entity": "\n$e448e01f-907e-45c2-b402-828e8257ab33\u001a\u00da\u0005\n/\n\u001018888-701ff27f-2\u0012\b15:02:00\u001a\b20230916 \u0000*\u00035800\u0000\u0012\u0011\b\u0016\u0012\u0006\u0010\u00de\u00e8\u0097\u00a8\u0006\"\u000535791\u0012\u0011\b\u0017\u0012\u0006\u0010\u0090\u00e9\u0097\u00a8\u0006\"\u000535792\u0012\u0011\b\u0018\u0012\u0006\u0010\u00cb\u00e9\u0097\u00a8\u0006\"\u000535793\u0012\u0011\b\u0019\u0012\u0006\u0010\u00c2\u00ea\u0097\u00a8\u0006\"\u000591116\u0012\u0011\b\u001a\u0012\u0006\u0010\u009a\u00ee\u0097\u00a8\u0006\"\u000539545\u0012\u0011\b\u001b\u0012\u0006\u0010\u00be\u00ef\u0097\u00a8\u0006\"\u000539546\u0012\u0011\b\u001c\u0012\u0006\u0010\u00c4\u00f0\u0097\u00a8\u0006\"\u000535286\u0012\u0011\b\u001d\u0012\u0006\u0010\u00de\u00f0\u0097\u00a8\u0006\"\u000535287\u0012\u0011\b\u001e\u0012\u0006\u0010\u00a2\u00f1\u0097\u00a8\u0006\"\u000542317\u0012\u0011\b\u001f\u0012\u0006\u0010\u00eb\u00f1\u0097\u00a8\u0006\"\u000542319\u0012\u0011\b \u0012\u0006\u0010\u00b3\u00f2\u0097\u00a8\u0006\"\u000542320\u0012\u0011\b!\u0012\u0006\u0010\u00e1\u00f2\u0097\u00a8\u0006\"\u000538514\u0012\u0011\b\"\u0012\u0006\u0010\u0098\u00f3\u0097\u00a8\u0006\"\u000534586\u0012\u0011\b#\u0012\u0006\u0010\u00b5\u00f3\u0097\u00a8\u0006\"\u000534587\u0012\u0011\b$\u0012\u0006\u0010\u00cd\u00f3\u0097\u00a8\u0006\"\u000534588\u0012\u0011\b%\u0012\u0006\u0010\u00fc\u00f3\u0097\u00a8\u0006\"\u000539497\u0012\u0011\b&\u0012\u0006\u0010\u009e\u00f4\u0097\u00a8\u0006\"\u000549407\u0012\u0011\b'\u0012\u0006\u0010\u00d7\u00f4\u0097\u00a8\u0006\"\u000550034\u0012\u0011\b(\u0012\u0006\u0010\u00ff\u00f4\u0097\u00a8\u0006\"\u000540903\u0012\u0011\b)\u0012\u0006\u0010\u00a1\u00f5\u0097\u00a8\u0006\"\u000540904\u0012\u0011\b*\u0012\u0006\u0010\u00ce\u00f5\u0097\u00a8\u0006\"\u000535814\u0012\u0011\b+\u0012\u0006\u0010\u009c\u00f6\u0097\u00a8\u0006\"\u000535815\u0012\u0011\b,\u0012\u0006\u0010\u00b7\u00f6\u0097\u00a8\u0006\"\u000535816\u0012\u0011\b-\u0012\u0006\u0010\u00c4\u00f6\u0097\u00a8\u0006\"\u000535817\u0012\u0011\b.\u0012\u0006\u0010\u00e8\u00f6\u0097\u00a8\u0006\"\u000535818\u0012\u0011\b/\u0012\u0006\u0010\u0090\u00f7\u0097\u00a8\u0006\"\u000535819\u0012\u0011\b0\u0012\u0006\u0010\u00db\u00f8\u0097\u00a8\u0006\"\u000535822\u0012\u0011\b1\u0012\u0006\u0010\u0088\u00f9\u0097\u00a8\u0006\"\u000535823\u0012\u0011\b2\u0012\u0006\u0010\u00ce\u00f9\u0097\u00a8\u0006\"\u000535723\u0012\u0011\b3\u0012\u0006\u0010\u0081\u00fa\u0097\u00a8\u0006\"\u000535722\u0012\u0011\b4\u0012\u0006\u0010\u00e0\u00fa\u0097\u00a8\u0006\"\u000535826\u0012\u0011\b5\u0012\u0006\u0010\u00ab\u00fb\u0097\u00a8\u0006\"\u000535548\u0012\u0011\b6\u0012\u0006\u0010\u0092\u00fc\u0097\u00a8\u0006\"\u000535547\u0012\u0011\b7\u0012\u0006\u0010\u00e2\u00fc\u0097\u00a8\u0006\"\u000535546\u0012\u0011\b8\u0012\u0006\u0010\u00b3\u00fd\u0097\u00a8\u0006\"\u000535553\u001a\b\u001a\u0006BDZC45 \u008d\u00e8\u0097\u00a8\u0006\"`\n/\n\u001018888-701ff27f-2\u0012\b15:02:00\u001a\b20230916 \u0000*\u00035800\u0000\u0012\u001d\r\u00bbZ\u0013\u00c2\u0015\u00044\u0092\u00c2\u001d\u0000\u0000\u0006C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u008d\u00e8\u0097\u00a8\u0006B\b\u001a\u0006BDZC45" + }, + { + "type": "con_recorrido", + "entity": "\n$beaf9df0-5a46-4e9f-bbc1-79ca258b235f\u001a\u00f9\u0007\n/\n\u001019178-701ff27f-2\u0012\b13:42:00\u001a\b20230916 \u0000*\u00035820\u0001\u0012\u0011\b\u001b\u0012\u0006\u0010\u00b7\u00ea\u0097\u00a8\u0006\"\u000535841\u0012\u0011\b\u001c\u0012\u0006\u0010\u00dd\u00ea\u0097\u00a8\u0006\"\u000535842\u0012\u0011\b\u001d\u0012\u0006\u0010\u008e\u00eb\u0097\u00a8\u0006\"\u000535843\u0012\u0011\b\u001e\u0012\u0006\u0010\u00ad\u00eb\u0097\u00a8\u0006\"\u000535844\u0012\u0011\b\u001f\u0012\u0006\u0010\u00ed\u00eb\u0097\u00a8\u0006\"\u000591128\u0012\u0011\b \u0012\u0006\u0010\u0095\u00ec\u0097\u00a8\u0006\"\u000535846\u0012\u0011\b!\u0012\u0006\u0010\u00d4\u00ec\u0097\u00a8\u0006\"\u000535848\u0012\u0011\b\"\u0012\u0006\u0010\u00b0\u00ed\u0097\u00a8\u0006\"\u000535849\u0012\u0011\b#\u0012\u0006\u0010\u00cf\u00ed\u0097\u00a8\u0006\"\u000535850\u0012\u0011\b$\u0012\u0006\u0010\u00e6\u00ed\u0097\u00a8\u0006\"\u000535851\u0012\u0011\b%\u0012\u0006\u0010\u00fa\u00ed\u0097\u00a8\u0006\"\u000535852\u0012\u0011\b&\u0012\u0006\u0010\u0094\u00ee\u0097\u00a8\u0006\"\u000535853\u0012\u0011\b'\u0012\u0006\u0010\u00b7\u00ee\u0097\u00a8\u0006\"\u000535854\u0012\u0011\b(\u0012\u0006\u0010\u00d6\u00ee\u0097\u00a8\u0006\"\u000535618\u0012\u0011\b)\u0012\u0006\u0010\u0083\u00ef\u0097\u00a8\u0006\"\u000535855\u0012\u0011\b*\u0012\u0006\u0010\u00d0\u00ef\u0097\u00a8\u0006\"\u000535856\u0012\u0011\b+\u0012\u0006\u0010\u0094\u00f0\u0097\u00a8\u0006\"\u000535668\u0012\u0011\b,\u0012\u0006\u0010\u00b5\u00f0\u0097\u00a8\u0006\"\u000535858\u0012\u0011\b-\u0012\u0006\u0010\u00e2\u00f0\u0097\u00a8\u0006\"\u000535859\u0012\u0011\b.\u0012\u0006\u0010\u00f7\u00f0\u0097\u00a8\u0006\"\u000535665\u0012\u0011\b/\u0012\u0006\u0010\u0095\u00f1\u0097\u00a8\u0006\"\u000535861\u0012\u0011\b0\u0012\u0006\u0010\u0097\u00f3\u0097\u00a8\u0006\"\u000535756\u0012\u0011\b1\u0012\u0006\u0010\u008b\u00f4\u0097\u00a8\u0006\"\u000535757\u0012\u0011\b2\u0012\u0006\u0010\u00b9\u00f4\u0097\u00a8\u0006\"\u000535758\u0012\u0011\b3\u0012\u0006\u0010\u00c2\u00f4\u0097\u00a8\u0006\"\u000535759\u0012\u0011\b4\u0012\u0006\u0010\u00ed\u00f4\u0097\u00a8\u0006\"\u000535760\u0012\u0011\b5\u0012\u0006\u0010\u00ab\u00f5\u0097\u00a8\u0006\"\u000535762\u0012\u0011\b6\u0012\u0006\u0010\u0080\u00f6\u0097\u00a8\u0006\"\u000535764\u0012\u0011\b7\u0012\u0006\u0010\u008f\u00f6\u0097\u00a8\u0006\"\u000535518\u0012\u0011\b8\u0012\u0006\u0010\u00c0\u00f6\u0097\u00a8\u0006\"\u000535766\u0012\u0011\b9\u0012\u0006\u0010\u00fe\u00f6\u0097\u00a8\u0006\"\u000535767\u0012\u0011\b:\u0012\u0006\u0010\u00bd\u00f7\u0097\u00a8\u0006\"\u000535398\u0012\u0011\b;\u0012\u0006\u0010\u00f7\u00f7\u0097\u00a8\u0006\"\u000591055\u0012\u0011\b<\u0012\u0006\u0010\u00bf\u00f8\u0097\u00a8\u0006\"\u000591056\u0012\u0011\b=\u0012\u0006\u0010\u0080\u00f9\u0097\u00a8\u0006\"\u000591057\u0012\u0011\b>\u0012\u0006\u0010\u00a2\u00f9\u0097\u00a8\u0006\"\u000591058\u0012\u0011\b?\u0012\u0006\u0010\u00e0\u00f9\u0097\u00a8\u0006\"\u000591059\u0012\u0011\b@\u0012\u0006\u0010\u0093\u00fa\u0097\u00a8\u0006\"\u000591060\u0012\u0011\bA\u0012\u0006\u0010\u00a8\u00fa\u0097\u00a8\u0006\"\u000535769\u0012\u0011\bB\u0012\u0006\u0010\u00c4\u00fa\u0097\u00a8\u0006\"\u000591061\u0012\u0011\bC\u0012\u0006\u0010\u00bc\u00fb\u0097\u00a8\u0006\"\u000591062\u0012\u0011\bD\u0012\u0006\u0010\u00fa\u00fb\u0097\u00a8\u0006\"\u000591037\u0012\u0011\bE\u0012\u0006\u0010\u00a0\u00fc\u0097\u00a8\u0006\"\u000535483\u0012\u0011\bF\u0012\u0006\u0010\u00c2\u00fc\u0097\u00a8\u0006\"\u000535484\u0012\u0013\bG\u0012\u0006\u0010\u008f\u00fd\u0097\u00a8\u0006\"\u00077175655\u0012\u0011\bH\u0012\u0006\u0010\u00b8\u00fd\u0097\u00a8\u0006\"\u000535639\u0012\u0011\bI\u0012\u0006\u0010\u00c1\u00fe\u0097\u00a8\u0006\"\u000535779\u0012\u0011\bJ\u0012\u0006\u0010\u00cd\u00fe\u0097\u00a8\u0006\"\u000591084\u0012\u0011\bK\u0012\u0006\u0010\u00f3\u00fe\u0097\u00a8\u0006\"\u000535780\u0012\u0011\bL\u0012\u0006\u0010\u009c\u00ff\u0097\u00a8\u0006\"\u000591085\u001a\b\u001a\u0006FBLB69 \u00a4\u00e7\u0097\u00a8\u0006\"`\n/\n\u001019178-701ff27f-2\u0012\b13:42:00\u001a\b20230916 \u0000*\u00035820\u0001\u0012\u001d\r\u00d5F\u0013\u00c2\u0015\u00bb,\u0092\u00c2\u001d\u0000\u0000ZC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00cd\u00cc\u0010B(\u00a4\u00e7\u0097\u00a8\u0006B\b\u001a\u0006FBLB69" + }, + { + "type": "con_recorrido", + "entity": "\n$cb631e0c-b51f-4dae-9a6f-4d2eaac45851\u001a\u00aa\u0003\n/\n\u001019124-701ff27f-2\u0012\b14:40:00\u001a\b20230916 \u0000*\u00035820\u0000\u0012\u0011\b<\u0012\u0006\u0010\u009f\u00e8\u0097\u00a8\u0006\"\u00052-Jan\u0012\u0011\b=\u0012\u0006\u0010\u00be\u00e8\u0097\u00a8\u0006\"\u000542460\u0012\u0011\b>\u0012\u0006\u0010\u00e6\u00e8\u0097\u00a8\u0006\"\u000535690\u0012\u0011\b?\u0012\u0006\u0010\u00d0\u00e9\u0097\u00a8\u0006\"\u000535700\u0012\u0011\b@\u0012\u0006\u0010\u00b0\u00ea\u0097\u00a8\u0006\"\u000535703\u0012\u0011\bA\u0012\u0006\u0010\u00c8\u00ea\u0097\u00a8\u0006\"\u000535704\u0012\u0011\bB\u0012\u0006\u0010\u00d2\u00ea\u0097\u00a8\u0006\"\u000535705\u0012\u0011\bC\u0012\u0006\u0010\u00e9\u00ea\u0097\u00a8\u0006\"\u000535706\u0012\u0011\bD\u0012\u0006\u0010\u00a0\u00eb\u0097\u00a8\u0006\"\u000535707\u0012\u0011\bE\u0012\u0006\u0010\u00b9\u00eb\u0097\u00a8\u0006\"\u000535708\u0012\u0011\bF\u0012\u0006\u0010\u00cb\u00eb\u0097\u00a8\u0006\"\u000535709\u0012\u0011\bG\u0012\u0006\u0010\u0098\u00ec\u0097\u00a8\u0006\"\u000538507\u0012\u0011\bH\u0012\u0006\u0010\u00ca\u00ec\u0097\u00a8\u0006\"\u000534473\u0012\u0011\bI\u0012\u0006\u0010\u00f5\u00ec\u0097\u00a8\u0006\"\u000538500\u0012\u0011\bJ\u0012\u0006\u0010\u009a\u00ed\u0097\u00a8\u0006\"\u000535808\u0012\u0011\bK\u0012\u0006\u0010\u00da\u00ed\u0097\u00a8\u0006\"\u000535710\u0012\u0011\bL\u0012\u0006\u0010\u0086\u00ee\u0097\u00a8\u0006\"\u000550036\u0012\u0011\bM\u0012\u0006\u0010\u00e6\u00ee\u0097\u00a8\u0006\"\u000535712\u0012\u0011\bN\u0012\u0006\u0010\u00c2\u00ef\u0097\u00a8\u0006\"\u000535713\u001a\b\u001a\u0006FHTY14 \u00c4\u00e7\u0097\u00a8\u0006\"`\n/\n\u001019124-701ff27f-2\u0012\b14:40:00\u001a\b20230916 \u0000*\u00035820\u0000\u0012\u001d\r\u0092J\u0013\u00c2\u0015\u00b5 \u0092\u00c2\u001d\u0000\u00002C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00cd\u00cc\u00cc?(\u00c4\u00e7\u0097\u00a8\u0006B\b\u001a\u0006FHTY14" + }, + { + "type": "con_recorrido", + "entity": "\n$a2cd3a54-e1f8-4d41-908f-55e0167267f6\u001a\u00db\u0001\n/\n\u001019176-701ff27f-2\u0012\b13:02:00\u001a\b20230916 \u0000*\u00035820\u0001\u0012\u0011\bE\u0012\u0006\u0010\u00cb\u00e7\u0097\u00a8\u0006\"\u000535483\u0012\u0011\bF\u0012\u0006\u0010\u00e8\u00e7\u0097\u00a8\u0006\"\u000535484\u0012\u0013\bG\u0012\u0006\u0010\u00a9\u00e8\u0097\u00a8\u0006\"\u00077175655\u0012\u0011\bH\u0012\u0006\u0010\u00cb\u00e8\u0097\u00a8\u0006\"\u000535639\u0012\u0011\bI\u0012\u0006\u0010\u00ba\u00e9\u0097\u00a8\u0006\"\u000535779\u0012\u0011\bJ\u0012\u0006\u0010\u00c3\u00e9\u0097\u00a8\u0006\"\u000591084\u0012\u0011\bK\u0012\u0006\u0010\u00e0\u00e9\u0097\u00a8\u0006\"\u000535780\u0012\u0011\bL\u0012\u0006\u0010\u0080\u00ea\u0097\u00a8\u0006\"\u000591085\u001a\b\u001a\u0006LYYL36 \u00b8\u00e7\u0097\u00a8\u0006\"`\n/\n\u001019176-701ff27f-2\u0012\b13:02:00\u001a\b20230916 \u0000*\u00035820\u0001\u0012\u001d\r\u00d0g\u0013\u00c2\u0015\u0084J\u0092\u00c2\u001d\u0000\u0000AC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u00a0A(\u00b8\u00e7\u0097\u00a8\u0006B\b\u001a\u0006LYYL36" + }, + { + "type": "con_recorrido", + "entity": "\n$b936d236-bf72-48f8-91bd-9640718c51b2\u001a\u00e0\t\n/\n\u001019179-701ff27f-2\u0012\b14:02:00\u001a\b20230916 \u0000*\u00035820\u0001\u0012\u0011\b\u000f\u0012\u0006\u0010\u00d7\u00e7\u0097\u00a8\u0006\"\u000535745\u0012\u0014\b\u0010\u0012\u0006\u0010\u00f3\u00e7\u0097\u00a8\u0006\"\b15879953\u0012\u0011\b\u0011\u0012\u0006\u0010\u008a\u00e8\u0097\u00a8\u0006\"\u000535746\u0012\u0011\b\u0012\u0012\u0006\u0010\u00a5\u00e8\u0097\u00a8\u0006\"\u000539634\u0012\u0011\b\u0013\u0012\u0006\u0010\u00c0\u00e8\u0097\u00a8\u0006\"\u000539635\u0012\u0011\b\u0014\u0012\u0006\u0010\u00f0\u00e8\u0097\u00a8\u0006\"\u000539636\u0012\u0011\b\u0015\u0012\u0006\u0010\u00a7\u00e9\u0097\u00a8\u0006\"\u000549503\u0012\u0011\b\u0016\u0012\u0006\u0010\u00a8\u00ea\u0097\u00a8\u0006\"\u000539637\u0012\u0011\b\u0017\u0012\u0006\u0010\u00db\u00ea\u0097\u00a8\u0006\"\u000549317\u0012\u0011\b\u0018\u0012\u0006\u0010\u00fa\u00ea\u0097\u00a8\u0006\"\u000549318\u0012\u0011\b\u0019\u0012\u0006\u0010\u00bc\u00eb\u0097\u00a8\u0006\"\u000549319\u0012\u0011\b\u001a\u0012\u0006\u0010\u00fb\u00eb\u0097\u00a8\u0006\"\u000539641\u0012\u0011\b\u001b\u0012\u0006\u0010\u00bb\u00f2\u0097\u00a8\u0006\"\u000535841\u0012\u0011\b\u001c\u0012\u0006\u0010\u00e0\u00f2\u0097\u00a8\u0006\"\u000535842\u0012\u0011\b\u001d\u0012\u0006\u0010\u0091\u00f3\u0097\u00a8\u0006\"\u000535843\u0012\u0011\b\u001e\u0012\u0006\u0010\u00b0\u00f3\u0097\u00a8\u0006\"\u000535844\u0012\u0011\b\u001f\u0012\u0006\u0010\u00f0\u00f3\u0097\u00a8\u0006\"\u000591128\u0012\u0011\b \u0012\u0006\u0010\u0099\u00f4\u0097\u00a8\u0006\"\u000535846\u0012\u0011\b!\u0012\u0006\u0010\u00db\u00f4\u0097\u00a8\u0006\"\u000535848\u0012\u0011\b\"\u0012\u0006\u0010\u00bb\u00f5\u0097\u00a8\u0006\"\u000535849\u0012\u0011\b#\u0012\u0006\u0010\u00dc\u00f5\u0097\u00a8\u0006\"\u000535850\u0012\u0011\b$\u0012\u0006\u0010\u00f4\u00f5\u0097\u00a8\u0006\"\u000535851\u0012\u0011\b%\u0012\u0006\u0010\u008a\u00f6\u0097\u00a8\u0006\"\u000535852\u0012\u0011\b&\u0012\u0006\u0010\u00a6\u00f6\u0097\u00a8\u0006\"\u000535853\u0012\u0011\b'\u0012\u0006\u0010\u00cc\u00f6\u0097\u00a8\u0006\"\u000535854\u0012\u0011\b(\u0012\u0006\u0010\u00ee\u00f6\u0097\u00a8\u0006\"\u000535618\u0012\u0011\b)\u0012\u0006\u0010\u009f\u00f7\u0097\u00a8\u0006\"\u000535855\u0012\u0011\b*\u0012\u0006\u0010\u00f5\u00f7\u0097\u00a8\u0006\"\u000535856\u0012\u0011\b+\u0012\u0006\u0010\u00c2\u00f8\u0097\u00a8\u0006\"\u000535668\u0012\u0011\b,\u0012\u0006\u0010\u00e6\u00f8\u0097\u00a8\u0006\"\u000535858\u0012\u0011\b-\u0012\u0006\u0010\u009b\u00f9\u0097\u00a8\u0006\"\u000535859\u0012\u0011\b.\u0012\u0006\u0010\u00b3\u00f9\u0097\u00a8\u0006\"\u000535665\u0012\u0011\b/\u0012\u0006\u0010\u00d6\u00f9\u0097\u00a8\u0006\"\u000535861\u0012\u0011\b0\u0012\u0006\u0010\u008b\u00fc\u0097\u00a8\u0006\"\u000535756\u0012\u0011\b1\u0012\u0006\u0010\u009a\u00fd\u0097\u00a8\u0006\"\u000535757\u0012\u0011\b2\u0012\u0006\u0010\u00d4\u00fd\u0097\u00a8\u0006\"\u000535758\u0012\u0011\b3\u0012\u0006\u0010\u00df\u00fd\u0097\u00a8\u0006\"\u000535759\u0012\u0011\b4\u0012\u0006\u0010\u0096\u00fe\u0097\u00a8\u0006\"\u000535760\u0012\u0011\b5\u0012\u0006\u0010\u00e6\u00fe\u0097\u00a8\u0006\"\u000535762\u0012\u0011\b6\u0012\u0006\u0010\u00d4\u00ff\u0097\u00a8\u0006\"\u000535764\u0012\u0011\b7\u0012\u0006\u0010\u00e7\u00ff\u0097\u00a8\u0006\"\u000535518\u0012\u0011\b8\u0012\u0006\u0010\u00a9\u0080\u0098\u00a8\u0006\"\u000535766\u0012\u0011\b9\u0012\u0006\u0010\u00fa\u0080\u0098\u00a8\u0006\"\u000535767\u0012\u0011\b:\u0012\u0006\u0010\u00cf\u0081\u0098\u00a8\u0006\"\u000535398\u0012\u0011\b;\u0012\u0006\u0010\u009e\u0082\u0098\u00a8\u0006\"\u000591055\u0012\u0011\b<\u0012\u0006\u0010\u0082\u0083\u0098\u00a8\u0006\"\u000591056\u0012\u0011\b=\u0012\u0006\u0010\u00dc\u0083\u0098\u00a8\u0006\"\u000591057\u0012\u0011\b>\u0012\u0006\u0010\u008c\u0084\u0098\u00a8\u0006\"\u000591058\u0012\u0011\b?\u0012\u0006\u0010\u00e4\u0084\u0098\u00a8\u0006\"\u000591059\u0012\u0011\b@\u0012\u0006\u0010\u00ad\u0085\u0098\u00a8\u0006\"\u000591060\u0012\u0011\bA\u0012\u0006\u0010\u00cb\u0085\u0098\u00a8\u0006\"\u000535769\u0012\u0011\bB\u0012\u0006\u0010\u00f4\u0085\u0098\u00a8\u0006\"\u000591061\u0012\u0011\bC\u0012\u0006\u0010\u00a3\u0087\u0098\u00a8\u0006\"\u000591062\u0012\u0011\bD\u0012\u0006\u0010\u00ff\u0087\u0098\u00a8\u0006\"\u000591037\u0012\u0011\bE\u0012\u0006\u0010\u00b8\u0088\u0098\u00a8\u0006\"\u000535483\u0012\u0011\bF\u0012\u0006\u0010\u00eb\u0088\u0098\u00a8\u0006\"\u000535484\u0012\u0013\bG\u0012\u0006\u0010\u00e0\u0089\u0098\u00a8\u0006\"\u00077175655\u0012\u0011\bH\u0012\u0006\u0010\u009f\u008a\u0098\u00a8\u0006\"\u000535639\u0012\u0011\bI\u0012\u0006\u0010\u00f6\u008b\u0098\u00a8\u0006\"\u000535779\u0012\u0011\bJ\u0012\u0006\u0010\u0088\u008c\u0098\u00a8\u0006\"\u000591084\u0012\u0011\bK\u0012\u0006\u0010\u00c4\u008c\u0098\u00a8\u0006\"\u000535780\u0012\u0011\bL\u0012\u0006\u0010\u0087\u008d\u0098\u00a8\u0006\"\u000591085\u001a\b\u001a\u0006ZR7471 \u00a7\u00e7\u0097\u00a8\u0006\"`\n/\n\u001019179-701ff27f-2\u0012\b14:02:00\u001a\b20230916 \u0000*\u00035820\u0001\u0012\u001d\r\u008aL\u0013\u00c2\u0015m\u001c\u0092\u00c2\u001d\u0000\u0000sC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a7\u00e7\u0097\u00a8\u0006B\b\u001a\u0006ZR7471" + }, + { + "type": "con_recorrido", + "entity": "\n$4d3288c0-a4e7-4c73-92cc-aa39ab5179b1\u001a\u00fc\b\n/\n\u001019125-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00035820\u0000\u0012\u0011\b\u0016\u0012\u0006\u0010\u0087\u00e8\u0097\u00a8\u0006\"\u000535763\u0012\u0011\b\u0017\u0012\u0006\u0010\u00ca\u00e8\u0097\u00a8\u0006\"\u000535761\u0012\u0011\b\u0018\u0012\u0006\u0010\u00a0\u00e9\u0097\u00a8\u0006\"\u000535523\u0012\u0011\b\u0019\u0012\u0006\u0010\u00e8\u00e9\u0097\u00a8\u0006\"\u000535524\u0012\u0011\b\u001a\u0012\u0006\u0010\u00cf\u00ea\u0097\u00a8\u0006\"\u000535525\u0012\u0011\b\u001b\u0012\u0006\u0010\u00c1\u00ec\u0097\u00a8\u0006\"\u000535418\u0012\u0011\b\u001c\u0012\u0006\u0010\u00f3\u00ec\u0097\u00a8\u0006\"\u000591051\u0012\u0011\b\u001d\u0012\u0006\u0010\u0097\u00ed\u0097\u00a8\u0006\"\u000535666\u0012\u0011\b\u001e\u0012\u0006\u0010\u00c3\u00ed\u0097\u00a8\u0006\"\u000535667\u0012\u0011\b\u001f\u0012\u0006\u0010\u00d8\u00ed\u0097\u00a8\u0006\"\u000535668\u0012\u0011\b \u0012\u0006\u0010\u008f\u00ee\u0097\u00a8\u0006\"\u000535669\u0012\u0011\b!\u0012\u0006\u0010\u00cd\u00ee\u0097\u00a8\u0006\"\u000535670\u0012\u0011\b\"\u0012\u0006\u0010\u00f3\u00ee\u0097\u00a8\u0006\"\u000535671\u0012\u0011\b#\u0012\u0006\u0010\u0095\u00ef\u0097\u00a8\u0006\"\u000591050\u0012\u0011\b$\u0012\u0006\u0010\u00bf\u00ef\u0097\u00a8\u0006\"\u000535672\u0012\u0011\b%\u0012\u0006\u0010\u00e7\u00ef\u0097\u00a8\u0006\"\u000535673\u0012\u0011\b&\u0012\u0006\u0010\u0081\u00f0\u0097\u00a8\u0006\"\u000535674\u0012\u0011\b'\u0012\u0006\u0010\u0095\u00f0\u0097\u00a8\u0006\"\u000535675\u0012\u0011\b(\u0012\u0006\u0010\u00a6\u00f0\u0097\u00a8\u0006\"\u000535676\u0012\u0011\b)\u0012\u0006\u0010\u00c6\u00f0\u0097\u00a8\u0006\"\u000535677\u0012\u0011\b*\u0012\u0006\u0010\u0096\u00f1\u0097\u00a8\u0006\"\u000535678\u0012\u0011\b+\u0012\u0006\u0010\u00c9\u00f1\u0097\u00a8\u0006\"\u000591137\u0012\u0011\b,\u0012\u0006\u0010\u00ec\u00f1\u0097\u00a8\u0006\"\u000591138\u0012\u0011\b-\u0012\u0006\u0010\u0095\u00f2\u0097\u00a8\u0006\"\u000535845\u0012\u0011\b.\u0012\u0006\u0010\u00c6\u00f2\u0097\u00a8\u0006\"\u000535684\u0012\u0011\b/\u0012\u0006\u0010\u00ee\u00f2\u0097\u00a8\u0006\"\u000535685\u0012\u0011\b0\u0012\u0006\u0010\u0099\u00f3\u0097\u00a8\u0006\"\u000535686\u0012\u0011\b1\u0012\u0006\u0010\u00d0\u00f3\u0097\u00a8\u0006\"\u000535687\u0012\u0011\b2\u0012\u0006\u0010\u0091\u00f4\u0097\u00a8\u0006\"\u000591052\u0012\u0011\b3\u0012\u0006\u0010\u00ba\u00f4\u0097\u00a8\u0006\"\u000591053\u0012\u0011\b4\u0012\u0006\u0010\u00fa\u00f4\u0097\u00a8\u0006\"\u000591054\u0012\u0011\b5\u0012\u0006\u0010\u00cf\u00fa\u0097\u00a8\u0006\"\u000535688\u0012\u0011\b6\u0012\u0006\u0010\u00d2\u00fb\u0097\u00a8\u0006\"\u000535691\u0012\u0011\b7\u0012\u0006\u0010\u00c9\u00fc\u0097\u00a8\u0006\"\u000535693\u0012\u0011\b8\u0012\u0006\u0010\u008c\u00fd\u0097\u00a8\u0006\"\u000535694\u0012\u0011\b9\u0012\u0006\u0010\u00be\u00fd\u0097\u00a8\u0006\"\u000535695\u0012\u0011\b:\u0012\u0006\u0010\u00f9\u00fd\u0097\u00a8\u0006\"\u000535696\u0012\u0011\b;\u0012\u0006\u0010\u00d9\u00ff\u0097\u00a8\u0006\"\u000535697\u0012\u0011\b<\u0012\u0006\u0010\u00dd\u0080\u0098\u00a8\u0006\"\u00052-Jan\u0012\u0011\b=\u0012\u0006\u0010\u0086\u0081\u0098\u00a8\u0006\"\u000542460\u0012\u0011\b>\u0012\u0006\u0010\u00bd\u0081\u0098\u00a8\u0006\"\u000535690\u0012\u0011\b?\u0012\u0006\u0010\u00d0\u0082\u0098\u00a8\u0006\"\u000535700\u0012\u0011\b@\u0012\u0006\u0010\u00df\u0083\u0098\u00a8\u0006\"\u000535703\u0012\u0011\bA\u0012\u0006\u0010\u0083\u0084\u0098\u00a8\u0006\"\u000535704\u0012\u0011\bB\u0012\u0006\u0010\u0094\u0084\u0098\u00a8\u0006\"\u000535705\u0012\u0011\bC\u0012\u0006\u0010\u00b7\u0084\u0098\u00a8\u0006\"\u000535706\u0012\u0011\bD\u0012\u0006\u0010\u008f\u0085\u0098\u00a8\u0006\"\u000535707\u0012\u0011\bE\u0012\u0006\u0010\u00b8\u0085\u0098\u00a8\u0006\"\u000535708\u0012\u0011\bF\u0012\u0006\u0010\u00d6\u0085\u0098\u00a8\u0006\"\u000535709\u0012\u0011\bG\u0012\u0006\u0010\u00d7\u0086\u0098\u00a8\u0006\"\u000538507\u0012\u0011\bH\u0012\u0006\u0010\u00ae\u0087\u0098\u00a8\u0006\"\u000534473\u0012\u0011\bI\u0012\u0006\u0010\u00fc\u0087\u0098\u00a8\u0006\"\u000538500\u0012\u0011\bJ\u0012\u0006\u0010\u00bf\u0088\u0098\u00a8\u0006\"\u000535808\u0012\u0011\bK\u0012\u0006\u0010\u00b9\u0089\u0098\u00a8\u0006\"\u000535710\u0012\u0011\bL\u0012\u0006\u0010\u008f\u008a\u0098\u00a8\u0006\"\u000550036\u0012\u0011\bM\u0012\u0006\u0010\u00d1\u008b\u0098\u00a8\u0006\"\u000535712\u0012\u0011\bN\u0012\u0006\u0010\u0095\u008d\u0098\u00a8\u0006\"\u000535713\u001a\b\u001a\u0006ZT3909 \u00ec\u00e7\u0097\u00a8\u0006\"`\n/\n\u001019125-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00035820\u0000\u0012\u001d\r\u0083Y\u0013\u00c2\u0015\u00d3K\u0092\u00c2\u001d\u0000\u0000\u00aaB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-33\u00f3@(\u00ec\u00e7\u0097\u00a8\u0006B\b\u001a\u0006ZT3909" + }, + { + "type": "con_recorrido", + "entity": "\n$d68deee7-5682-4b93-b748-68e017d4d629\u001a\u00da\u0005\n/\n\u001019479-701ff27f-2\u0012\b15:31:00\u001a\b20230916 \u0000*\u00035850\u0000\u0012\u0011\b\u0012\u0012\u0006\u0010\u00c0\u00e9\u0097\u00a8\u0006\"\u000535786\u0012\u0011\b\u0013\u0012\u0006\u0010\u0083\u00ea\u0097\u00a8\u0006\"\u000535787\u0012\u0011\b\u0014\u0012\u0006\u0010\u00c4\u00ea\u0097\u00a8\u0006\"\u000535788\u0012\u0011\b\u0015\u0012\u0006\u0010\u00a8\u00eb\u0097\u00a8\u0006\"\u000535789\u0012\u0011\b\u0016\u0012\u0006\u0010\u00d4\u00eb\u0097\u00a8\u0006\"\u000535790\u0012\u0011\b\u0017\u0012\u0006\u0010\u00a5\u00ec\u0097\u00a8\u0006\"\u000535791\u0012\u0011\b\u0018\u0012\u0006\u0010\u00d3\u00ec\u0097\u00a8\u0006\"\u000535792\u0012\u0011\b\u0019\u0012\u0006\u0010\u008b\u00ed\u0097\u00a8\u0006\"\u000535793\u0012\u0011\b\u001a\u0012\u0006\u0010\u00fc\u00ed\u0097\u00a8\u0006\"\u000591116\u0012\u0011\b\u001b\u0012\u0006\u0010\u00c3\u00f1\u0097\u00a8\u0006\"\u000535794\u0012\u0011\b\u001c\u0012\u0006\u0010\u009f\u00f2\u0097\u00a8\u0006\"\u000535796\u0012\u0011\b\u001d\u0012\u0006\u0010\u00cf\u00f2\u0097\u00a8\u0006\"\u000535797\u0012\u0011\b\u001e\u0012\u0006\u0010\u00f7\u00f2\u0097\u00a8\u0006\"\u000535798\u0012\u0011\b\u001f\u0012\u0006\u0010\u009d\u00f3\u0097\u00a8\u0006\"\u000535799\u0012\u0011\b \u0012\u0006\u0010\u00e2\u00f3\u0097\u00a8\u0006\"\u000535800\u0012\u0011\b!\u0012\u0006\u0010\u0093\u00f4\u0097\u00a8\u0006\"\u000535801\u0012\u0011\b\"\u0012\u0006\u0010\u00ad\u00f4\u0097\u00a8\u0006\"\u000535802\u0012\u0011\b#\u0012\u0006\u0010\u00dd\u00f4\u0097\u00a8\u0006\"\u000535803\u0012\u0011\b$\u0012\u0006\u0010\u0095\u00f5\u0097\u00a8\u0006\"\u000538507\u0012\u0011\b%\u0012\u0006\u0010\u00c8\u00f5\u0097\u00a8\u0006\"\u000534473\u0012\u0011\b&\u0012\u0006\u0010\u00f6\u00f5\u0097\u00a8\u0006\"\u000538500\u0012\u0011\b'\u0012\u0006\u0010\u00a5\u00f6\u0097\u00a8\u0006\"\u000535808\u0012\u0011\b(\u0012\u0006\u0010\u00fe\u00f6\u0097\u00a8\u0006\"\u000535814\u0012\u0011\b)\u0012\u0006\u0010\u00cf\u00f7\u0097\u00a8\u0006\"\u000535815\u0012\u0011\b*\u0012\u0006\u0010\u00eb\u00f7\u0097\u00a8\u0006\"\u000535816\u0012\u0011\b+\u0012\u0006\u0010\u00f9\u00f7\u0097\u00a8\u0006\"\u000535817\u0012\u0011\b,\u0012\u0006\u0010\u009e\u00f8\u0097\u00a8\u0006\"\u000535818\u0012\u0011\b-\u0012\u0006\u0010\u00c8\u00f8\u0097\u00a8\u0006\"\u000535819\u0012\u0011\b.\u0012\u0006\u0010\u009b\u00fa\u0097\u00a8\u0006\"\u000535822\u0012\u0011\b/\u0012\u0006\u0010\u00c9\u00fa\u0097\u00a8\u0006\"\u000535823\u0012\u0011\b0\u0012\u0006\u0010\u0094\u00fb\u0097\u00a8\u0006\"\u000535723\u0012\u0011\b1\u0012\u0006\u0010\u00c9\u00fb\u0097\u00a8\u0006\"\u000535722\u0012\u0011\b2\u0012\u0006\u0010\u00ad\u00fc\u0097\u00a8\u0006\"\u000535826\u0012\u0011\b3\u0012\u0006\u0010\u00f4\u00fc\u0097\u00a8\u0006\"\u000535827\u0012\u0011\b4\u0012\u0006\u0010\u0090\u00fd\u0097\u00a8\u0006\"\u000535828\u001a\b\u001a\u0006BLLL15 \u00f4\u00e7\u0097\u00a8\u0006\"`\n/\n\u001019479-701ff27f-2\u0012\b15:31:00\u001a\b20230916 \u0000*\u00035850\u0000\u0012\u001d\r\u00ed[\u0013\u00c2\u0015WA\u0092\u00c2\u001d\u0000\u0000(B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00cd\u00cc\u00bc@(\u00f4\u00e7\u0097\u00a8\u0006B\b\u001a\u0006BLLL15" + }, + { + "type": "con_recorrido", + "entity": "\n$9a19e68b-1c18-47b4-9cc5-65f49f0ebb0d\u001a\u00af\u0004\n/\n\u001019475-701ff27f-2\u0012\b14:31:00\u001a\b20230916 \u0000*\u00035850\u0000\u0012\u0011\b\u001b\u0012\u0006\u0010\u008b\u00e9\u0097\u00a8\u0006\"\u000535794\u0012\u0011\b\u001c\u0012\u0006\u0010\u00ec\u00e9\u0097\u00a8\u0006\"\u000535796\u0012\u0011\b\u001d\u0012\u0006\u0010\u009e\u00ea\u0097\u00a8\u0006\"\u000535797\u0012\u0011\b\u001e\u0012\u0006\u0010\u00c8\u00ea\u0097\u00a8\u0006\"\u000535798\u0012\u0011\b\u001f\u0012\u0006\u0010\u00ee\u00ea\u0097\u00a8\u0006\"\u000535799\u0012\u0011\b \u0012\u0006\u0010\u00b4\u00eb\u0097\u00a8\u0006\"\u000535800\u0012\u0011\b!\u0012\u0006\u0010\u00e5\u00eb\u0097\u00a8\u0006\"\u000535801\u0012\u0011\b\"\u0012\u0006\u0010\u00ff\u00eb\u0097\u00a8\u0006\"\u000535802\u0012\u0011\b#\u0012\u0006\u0010\u00ae\u00ec\u0097\u00a8\u0006\"\u000535803\u0012\u0011\b$\u0012\u0006\u0010\u00e5\u00ec\u0097\u00a8\u0006\"\u000538507\u0012\u0011\b%\u0012\u0006\u0010\u0096\u00ed\u0097\u00a8\u0006\"\u000534473\u0012\u0011\b&\u0012\u0006\u0010\u00c1\u00ed\u0097\u00a8\u0006\"\u000538500\u0012\u0011\b'\u0012\u0006\u0010\u00ee\u00ed\u0097\u00a8\u0006\"\u000535808\u0012\u0011\b(\u0012\u0006\u0010\u00c1\u00ee\u0097\u00a8\u0006\"\u000535814\u0012\u0011\b)\u0012\u0006\u0010\u008c\u00ef\u0097\u00a8\u0006\"\u000535815\u0012\u0011\b*\u0012\u0006\u0010\u00a5\u00ef\u0097\u00a8\u0006\"\u000535816\u0012\u0011\b+\u0012\u0006\u0010\u00b1\u00ef\u0097\u00a8\u0006\"\u000535817\u0012\u0011\b,\u0012\u0006\u0010\u00d3\u00ef\u0097\u00a8\u0006\"\u000535818\u0012\u0011\b-\u0012\u0006\u0010\u00f8\u00ef\u0097\u00a8\u0006\"\u000535819\u0012\u0011\b.\u0012\u0006\u0010\u00b1\u00f1\u0097\u00a8\u0006\"\u000535822\u0012\u0011\b/\u0012\u0006\u0010\u00d9\u00f1\u0097\u00a8\u0006\"\u000535823\u0012\u0011\b0\u0012\u0006\u0010\u0097\u00f2\u0097\u00a8\u0006\"\u000535723\u0012\u0011\b1\u0012\u0006\u0010\u00c4\u00f2\u0097\u00a8\u0006\"\u000535722\u0012\u0011\b2\u0012\u0006\u0010\u0096\u00f3\u0097\u00a8\u0006\"\u000535826\u0012\u0011\b3\u0012\u0006\u0010\u00d0\u00f3\u0097\u00a8\u0006\"\u000535827\u0012\u0011\b4\u0012\u0006\u0010\u00e7\u00f3\u0097\u00a8\u0006\"\u000535828\u001a\b\u001a\u0006CFTK74 \u00df\u00e7\u0097\u00a8\u0006\"`\n/\n\u001019475-701ff27f-2\u0012\b14:31:00\u001a\b20230916 \u0000*\u00035850\u0000\u0012\u001d\r\u00c5S\u0013\u00c2\u0015A%\u0092\u00c2\u001d\u0000\u0000\u0080B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u009a\u0099kB(\u00df\u00e7\u0097\u00a8\u0006B\b\u001a\u0006CFTK74" + }, + { + "type": "con_recorrido", + "entity": "\n$c68195d6-c367-417d-9dbe-f93b0c466e71\u001a\u00eb\u0004\n/\n\u001019396-701ff27f-2\u0012\b13:45:00\u001a\b20230916 \u0000*\u00035850\u0001\u0012\u0011\b\u001f\u0012\u0006\u0010\u00b0\u00e7\u0097\u00a8\u0006\"\u000535745\u0012\u0014\b \u0012\u0006\u0010\u00cc\u00e7\u0097\u00a8\u0006\"\b15879953\u0012\u0011\b!\u0012\u0006\u0010\u009c\u00e8\u0097\u00a8\u0006\"\u000535746\u0012\u0011\b\"\u0012\u0006\u0010\u00ec\u00ec\u0097\u00a8\u0006\"\u000535748\u0012\u0011\b#\u0012\u0006\u0010\u00a9\u00ed\u0097\u00a8\u0006\"\u000535749\u0012\u0011\b$\u0012\u0006\u0010\u00d6\u00ed\u0097\u00a8\u0006\"\u000535750\u0012\u0011\b%\u0012\u0006\u0010\u00a1\u00ee\u0097\u00a8\u0006\"\u000535751\u0012\u0011\b&\u0012\u0006\u0010\u008f\u00ef\u0097\u00a8\u0006\"\u000535752\u0012\u0011\b'\u0012\u0006\u0010\u0096\u00f0\u0097\u00a8\u0006\"\u000535417\u0012\u0011\b(\u0012\u0006\u0010\u00dc\u00f0\u0097\u00a8\u0006\"\u000535755\u0012\u0011\b)\u0012\u0006\u0010\u00b2\u00f2\u0097\u00a8\u0006\"\u000535756\u0012\u0011\b*\u0012\u0006\u0010\u00a4\u00f3\u0097\u00a8\u0006\"\u000535757\u0012\u0011\b+\u0012\u0006\u0010\u00d2\u00f3\u0097\u00a8\u0006\"\u000535758\u0012\u0011\b,\u0012\u0006\u0010\u00da\u00f3\u0097\u00a8\u0006\"\u000535759\u0012\u0011\b-\u0012\u0006\u0010\u008a\u00f4\u0097\u00a8\u0006\"\u000535760\u0012\u0011\b.\u0012\u0006\u0010\u00cb\u00f4\u0097\u00a8\u0006\"\u000535762\u0012\u0011\b/\u0012\u0006\u0010\u009f\u00f5\u0097\u00a8\u0006\"\u000535764\u0012\u0011\b0\u0012\u0006\u0010\u00a5\u00f5\u0097\u00a8\u0006\"\u000535518\u0012\u0011\b1\u0012\u0006\u0010\u00da\u00f5\u0097\u00a8\u0006\"\u000535766\u0012\u0011\b2\u0012\u0006\u0010\u0096\u00f6\u0097\u00a8\u0006\"\u000535767\u0012\u0011\b3\u0012\u0006\u0010\u00d1\u00f6\u0097\u00a8\u0006\"\u000535398\u0012\u0011\b4\u0012\u0006\u0010\u008a\u00f7\u0097\u00a8\u0006\"\u000591055\u0012\u0011\b5\u0012\u0006\u0010\u00d1\u00f7\u0097\u00a8\u0006\"\u000591056\u0012\u0011\b6\u0012\u0006\u0010\u0091\u00f8\u0097\u00a8\u0006\"\u000591057\u0012\u0011\b7\u0012\u0006\u0010\u00b2\u00f8\u0097\u00a8\u0006\"\u000591058\u0012\u0011\b8\u0012\u0006\u0010\u00ef\u00f8\u0097\u00a8\u0006\"\u000591059\u0012\u0011\b9\u0012\u0006\u0010\u00a1\u00f9\u0097\u00a8\u0006\"\u000591060\u0012\u0011\b:\u0012\u0006\u0010\u00bc\u00f9\u0097\u00a8\u0006\"\u000535769\u0012\u0011\b;\u0012\u0006\u0010\u00d9\u00f9\u0097\u00a8\u0006\"\u000591061\u001a\b\u001a\u0006DSBZ84 \u0098\u00e7\u0097\u00a8\u0006\"`\n/\n\u001019396-701ff27f-2\u0012\b13:45:00\u001a\b20230916 \u0000*\u00035850\u0001\u0012\u001d\r\u00f9L\u0013\u00c2\u0015\u0006\u001d\u0092\u00c2\u001d\u0000\u0000qC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0098\u00e7\u0097\u00a8\u0006B\b\u001a\u0006DSBZ84" + }, + { + "type": "con_recorrido", + "entity": "\n$fe594a80-18f9-4d2b-9df7-00f1ff3b80ab\u001a\u00e9\u0007\n/\n\u001019400-701ff27f-2\u0012\b14:45:00\u001a\b20230916 \u0000*\u00035850\u0001\u0012\u0011\b\u000b\u0012\u0006\u0010\u00db\u00e7\u0097\u00a8\u0006\"\u000535726\u0012\u0011\b\f\u0012\u0006\u0010\u00a5\u00e8\u0097\u00a8\u0006\"\u000535727\u0012\u0011\b\r\u0012\u0006\u0010\u00f2\u00e8\u0097\u00a8\u0006\"\u000535820\u0012\u0011\b\u000e\u0012\u0006\u0010\u0096\u00e9\u0097\u00a8\u0006\"\u000535729\u0012\u0011\b\u000f\u0012\u0006\u0010\u00b7\u00e9\u0097\u00a8\u0006\"\u000535730\u0012\u0011\b\u0010\u0012\u0006\u0010\u00d7\u00e9\u0097\u00a8\u0006\"\u000535731\u0012\u0011\b\u0011\u0012\u0006\u0010\u0099\u00ea\u0097\u00a8\u0006\"\u000535201\u0012\u0011\b\u0012\u0012\u0006\u0010\u00f3\u00ea\u0097\u00a8\u0006\"\u000535202\u0012\u0011\b\u0013\u0012\u0006\u0010\u0090\u00eb\u0097\u00a8\u0006\"\u000535203\u0012\u0011\b\u0014\u0012\u0006\u0010\u00d2\u00eb\u0097\u00a8\u0006\"\u00051-Feb\u0012\u0011\b\u0015\u0012\u0006\u0010\u00ff\u00eb\u0097\u00a8\u0006\"\u00051-Mar\u0012\u0013\b\u0016\u0012\u0006\u0010\u008a\u00ec\u0097\u00a8\u0006\"\u00078276831\u0012\u0011\b\u0017\u0012\u0006\u0010\u00ae\u00ec\u0097\u00a8\u0006\"\u00051-Apr\u0012\u0011\b\u0018\u0012\u0006\u0010\u00de\u00ec\u0097\u00a8\u0006\"\u00051-May\u0012\u0011\b\u0019\u0012\u0006\u0010\u0086\u00ed\u0097\u00a8\u0006\"\u00051-Jun\u0012\u0011\b\u001a\u0012\u0006\u0010\u00c4\u00ed\u0097\u00a8\u0006\"\u00051-Jul\u0012\u0011\b\u001b\u0012\u0006\u0010\u00de\u00ed\u0097\u00a8\u0006\"\u00051-Aug\u0012\u0011\b\u001c\u0012\u0006\u0010\u008d\u00ee\u0097\u00a8\u0006\"\u00051-Sep\u0012\u0011\b\u001d\u0012\u0006\u0010\u00c0\u00ee\u0097\u00a8\u0006\"\u00051-Oct\u0012\u0011\b\u001e\u0012\u0006\u0010\u00f1\u00ee\u0097\u00a8\u0006\"\u00051-Nov\u0012\u0011\b\u001f\u0012\u0006\u0010\u00a6\u00ef\u0097\u00a8\u0006\"\u000535745\u0012\u0014\b \u0012\u0006\u0010\u00bf\u00ef\u0097\u00a8\u0006\"\b15879953\u0012\u0011\b!\u0012\u0006\u0010\u0089\u00f0\u0097\u00a8\u0006\"\u000535746\u0012\u0011\b\"\u0012\u0006\u0010\u00cd\u00f4\u0097\u00a8\u0006\"\u000535748\u0012\u0011\b#\u0012\u0006\u0010\u008c\u00f5\u0097\u00a8\u0006\"\u000535749\u0012\u0011\b$\u0012\u0006\u0010\u00bb\u00f5\u0097\u00a8\u0006\"\u000535750\u0012\u0011\b%\u0012\u0006\u0010\u008b\u00f6\u0097\u00a8\u0006\"\u000535751\u0012\u0011\b&\u0012\u0006\u0010\u0082\u00f7\u0097\u00a8\u0006\"\u000535752\u0012\u0011\b'\u0012\u0006\u0010\u0098\u00f8\u0097\u00a8\u0006\"\u000535417\u0012\u0011\b(\u0012\u0006\u0010\u00e7\u00f8\u0097\u00a8\u0006\"\u000535755\u0012\u0011\b)\u0012\u0006\u0010\u00df\u00fa\u0097\u00a8\u0006\"\u000535756\u0012\u0011\b*\u0012\u0006\u0010\u00e8\u00fb\u0097\u00a8\u0006\"\u000535757\u0012\u0011\b+\u0012\u0006\u0010\u009f\u00fc\u0097\u00a8\u0006\"\u000535758\u0012\u0011\b,\u0012\u0006\u0010\u00a9\u00fc\u0097\u00a8\u0006\"\u000535759\u0012\u0011\b-\u0012\u0006\u0010\u00e3\u00fc\u0097\u00a8\u0006\"\u000535760\u0012\u0011\b.\u0012\u0006\u0010\u00b4\u00fd\u0097\u00a8\u0006\"\u000535762\u0012\u0011\b/\u0012\u0006\u0010\u009c\u00fe\u0097\u00a8\u0006\"\u000535764\u0012\u0011\b0\u0012\u0006\u0010\u00a4\u00fe\u0097\u00a8\u0006\"\u000535518\u0012\u0011\b1\u0012\u0006\u0010\u00e7\u00fe\u0097\u00a8\u0006\"\u000535766\u0012\u0011\b2\u0012\u0006\u0010\u00b4\u00ff\u0097\u00a8\u0006\"\u000535767\u0012\u0011\b3\u0012\u0006\u0010\u0080\u0080\u0098\u00a8\u0006\"\u000535398\u0012\u0011\b4\u0012\u0006\u0010\u00ca\u0080\u0098\u00a8\u0006\"\u000591055\u0012\u0011\b5\u0012\u0006\u0010\u00a8\u0081\u0098\u00a8\u0006\"\u000591056\u0012\u0011\b6\u0012\u0006\u0010\u00fd\u0081\u0098\u00a8\u0006\"\u000591057\u0012\u0011\b7\u0012\u0006\u0010\u00aa\u0082\u0098\u00a8\u0006\"\u000591058\u0012\u0011\b8\u0012\u0006\u0010\u00fc\u0082\u0098\u00a8\u0006\"\u000591059\u0012\u0011\b9\u0012\u0006\u0010\u00c0\u0083\u0098\u00a8\u0006\"\u000591060\u0012\u0011\b:\u0012\u0006\u0010\u00e5\u0083\u0098\u00a8\u0006\"\u000535769\u0012\u0011\b;\u0012\u0006\u0010\u008c\u0084\u0098\u00a8\u0006\"\u000591061\u001a\b\u001a\u0006FXRL57 \u00bd\u00e7\u0097\u00a8\u0006\"`\n/\n\u001019400-701ff27f-2\u0012\b14:45:00\u001a\b20230916 \u0000*\u00035850\u0001\u0012\u001d\r\u008dI\u0013\u00c2\u0015+\u0004\u0092\u00c2\u001d\u0000\u0000@A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00bd\u00e7\u0097\u00a8\u0006B\b\u001a\u0006FXRL57" + }, + { + "type": "con_recorrido", + "entity": "\n$5eedf066-4a44-4c77-ba9f-4d182b9077e9\u001a\u0097\u0003\n/\n\u001019478-701ff27f-2\u0012\b15:16:00\u001a\b20230916 \u0000*\u00035850\u0000\u0012\u0011\b#\u0012\u0006\u0010\u00b7\u00e8\u0097\u00a8\u0006\"\u000535803\u0012\u0011\b$\u0012\u0006\u0010\u00f2\u00e8\u0097\u00a8\u0006\"\u000538507\u0012\u0011\b%\u0012\u0006\u0010\u00a7\u00e9\u0097\u00a8\u0006\"\u000534473\u0012\u0011\b&\u0012\u0006\u0010\u00d5\u00e9\u0097\u00a8\u0006\"\u000538500\u0012\u0011\b'\u0012\u0006\u0010\u0085\u00ea\u0097\u00a8\u0006\"\u000535808\u0012\u0011\b(\u0012\u0006\u0010\u00dc\u00ea\u0097\u00a8\u0006\"\u000535814\u0012\u0011\b)\u0012\u0006\u0010\u00aa\u00eb\u0097\u00a8\u0006\"\u000535815\u0012\u0011\b*\u0012\u0006\u0010\u00c5\u00eb\u0097\u00a8\u0006\"\u000535816\u0012\u0011\b+\u0012\u0006\u0010\u00d1\u00eb\u0097\u00a8\u0006\"\u000535817\u0012\u0011\b,\u0012\u0006\u0010\u00f4\u00eb\u0097\u00a8\u0006\"\u000535818\u0012\u0011\b-\u0012\u0006\u0010\u009a\u00ec\u0097\u00a8\u0006\"\u000535819\u0012\u0011\b.\u0012\u0006\u0010\u00d5\u00ed\u0097\u00a8\u0006\"\u000535822\u0012\u0011\b/\u0012\u0006\u0010\u00fd\u00ed\u0097\u00a8\u0006\"\u000535823\u0012\u0011\b0\u0012\u0006\u0010\u00bc\u00ee\u0097\u00a8\u0006\"\u000535723\u0012\u0011\b1\u0012\u0006\u0010\u00e8\u00ee\u0097\u00a8\u0006\"\u000535722\u0012\u0011\b2\u0012\u0006\u0010\u00b9\u00ef\u0097\u00a8\u0006\"\u000535826\u0012\u0011\b3\u0012\u0006\u0010\u00f2\u00ef\u0097\u00a8\u0006\"\u000535827\u0012\u0011\b4\u0012\u0006\u0010\u0088\u00f0\u0097\u00a8\u0006\"\u000535828\u001a\b\u001a\u0006FXRL66 \u0093\u00e8\u0097\u00a8\u0006\"`\n/\n\u001019478-701ff27f-2\u0012\b15:16:00\u001a\b20230916 \u0000*\u00035850\u0000\u0012\u001d\rRH\u0013\u00c2\u0015\u0012\u0017\u0092\u00c2\u001d\u0000\u0000\nC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0093\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FXRL66" + }, + { + "type": "con_recorrido", + "entity": "\n$7d2c80d3-f24f-4cda-bbb6-20eb760ea518\u001a\u008d\u0001\n/\n\u001019388-701ff27f-2\u0012\b11:45:00\u001a\b20230916 \u0000*\u00035850\u0001\u0012\u0011\b8\u0012\u0006\u0010\u00c9\u00e2\u0097\u00a8\u0006\"\u000591059\u0012\u0011\b9\u0012\u0006\u0010\u00f9\u00e2\u0097\u00a8\u0006\"\u000591060\u0012\u0011\b:\u0012\u0006\u0010\u0092\u00e3\u0097\u00a8\u0006\"\u000535769\u0012\u0011\b;\u0012\u0006\u0010\u00ac\u00e3\u0097\u00a8\u0006\"\u000591061\u001a\b\u001a\u0006JBTK30 \u00b7\u00e2\u0097\u00a8\u0006\"`\n/\n\u001019388-701ff27f-2\u0012\b11:45:00\u001a\b20230916 \u0000*\u00035850\u0001\u0012\u001d\r\\c\u0013\u00c2\u0015\u00b9I\u0092\u00c2\u001d\u0000\u00002C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00d0\u00e7\u0097\u00a8\u0006B\b\u001a\u0006JBTK30" + }, + { + "type": "con_recorrido", + "entity": "\n$9fdfc35f-f5ee-4f99-badc-b8025bbb39de\u001a\u0092\u0002\n/\n\u001019397-701ff27f-2\u0012\b14:00:00\u001a\b20230916 \u0000*\u00035850\u0001\u0012\u0011\b1\u0012\u0006\u0010\u0086\u00e8\u0097\u00a8\u0006\"\u000535766\u0012\u0011\b2\u0012\u0006\u0010\u00c4\u00e8\u0097\u00a8\u0006\"\u000535767\u0012\u0011\b3\u0012\u0006\u0010\u00fe\u00e8\u0097\u00a8\u0006\"\u000535398\u0012\u0011\b4\u0012\u0006\u0010\u00b6\u00e9\u0097\u00a8\u0006\"\u000591055\u0012\u0011\b5\u0012\u0006\u0010\u00fb\u00e9\u0097\u00a8\u0006\"\u000591056\u0012\u0011\b6\u0012\u0006\u0010\u00b6\u00ea\u0097\u00a8\u0006\"\u000591057\u0012\u0011\b7\u0012\u0006\u0010\u00d5\u00ea\u0097\u00a8\u0006\"\u000591058\u0012\u0011\b8\u0012\u0006\u0010\u008c\u00eb\u0097\u00a8\u0006\"\u000591059\u0012\u0011\b9\u0012\u0006\u0010\u00b9\u00eb\u0097\u00a8\u0006\"\u000591060\u0012\u0011\b:\u0012\u0006\u0010\u00d1\u00eb\u0097\u00a8\u0006\"\u000535769\u0012\u0011\b;\u0012\u0006\u0010\u00ea\u00eb\u0097\u00a8\u0006\"\u000591061\u001a\b\u001a\u0006JGJX64 \u00ed\u00e7\u0097\u00a8\u0006\"`\n/\n\u001019397-701ff27f-2\u0012\b14:00:00\u001a\b20230916 \u0000*\u00035850\u0001\u0012\u001d\r\u00d6Z\u0013\u00c2\u0015HL\u0092\u00c2\u001d\u0000\u0000/C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ed\u00e7\u0097\u00a8\u0006B\b\u001a\u0006JGJX64" + }, + { + "type": "con_recorrido", + "entity": "\n$b98d234e-ac0c-4487-984b-49dcb8469a8a\u001a\u00b3\u0001\n/\n\u001019476-701ff27f-2\u0012\b14:46:00\u001a\b20230916 \u0000*\u00035850\u0000\u0012\u0011\b/\u0012\u0006\u0010\u0084\u00e8\u0097\u00a8\u0006\"\u000535823\u0012\u0011\b0\u0012\u0006\u0010\u00c8\u00e8\u0097\u00a8\u0006\"\u000535723\u0012\u0011\b1\u0012\u0006\u0010\u00f8\u00e8\u0097\u00a8\u0006\"\u000535722\u0012\u0011\b2\u0012\u0006\u0010\u00ce\u00e9\u0097\u00a8\u0006\"\u000535826\u0012\u0011\b3\u0012\u0006\u0010\u008a\u00ea\u0097\u00a8\u0006\"\u000535827\u0012\u0011\b4\u0012\u0006\u0010\u00a2\u00ea\u0097\u00a8\u0006\"\u000535828\u001a\b\u001a\u0006JKZB14 \u00d9\u00e7\u0097\u00a8\u0006\"`\n/\n\u001019476-701ff27f-2\u0012\b14:46:00\u001a\b20230916 \u0000*\u00035850\u0000\u0012\u001d\r%I\u0013\u00c2\u0015\u00f2\u0004\u0092\u00c2\u001d\u0000\u0000\u00d6B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-33\u0017B(\u00d9\u00e7\u0097\u00a8\u0006B\b\u001a\u0006JKZB14" + }, + { + "type": "con_recorrido", + "entity": "\n$70b3d1f8-ff61-4e52-948a-b87ae223ee3a\u001a\u00aa\u0003\n/\n\u001019394-701ff27f-2\u0012\b13:15:00\u001a\b20230916 \u0000*\u00035850\u0001\u0012\u0011\b)\u0012\u0006\u0010\u00fe\u00e7\u0097\u00a8\u0006\"\u000535756\u0012\u0011\b*\u0012\u0006\u0010\u00f8\u00e8\u0097\u00a8\u0006\"\u000535757\u0012\u0011\b+\u0012\u0006\u0010\u00a8\u00e9\u0097\u00a8\u0006\"\u000535758\u0012\u0011\b,\u0012\u0006\u0010\u00b0\u00e9\u0097\u00a8\u0006\"\u000535759\u0012\u0011\b-\u0012\u0006\u0010\u00e1\u00e9\u0097\u00a8\u0006\"\u000535760\u0012\u0011\b.\u0012\u0006\u0010\u00a3\u00ea\u0097\u00a8\u0006\"\u000535762\u0012\u0011\b/\u0012\u0006\u0010\u00f6\u00ea\u0097\u00a8\u0006\"\u000535764\u0012\u0011\b0\u0012\u0006\u0010\u00fc\u00ea\u0097\u00a8\u0006\"\u000535518\u0012\u0011\b1\u0012\u0006\u0010\u00b0\u00eb\u0097\u00a8\u0006\"\u000535766\u0012\u0011\b2\u0012\u0006\u0010\u00ea\u00eb\u0097\u00a8\u0006\"\u000535767\u0012\u0011\b3\u0012\u0006\u0010\u00a1\u00ec\u0097\u00a8\u0006\"\u000535398\u0012\u0011\b4\u0012\u0006\u0010\u00d6\u00ec\u0097\u00a8\u0006\"\u000591055\u0012\u0011\b5\u0012\u0006\u0010\u0097\u00ed\u0097\u00a8\u0006\"\u000591056\u0012\u0011\b6\u0012\u0006\u0010\u00d0\u00ed\u0097\u00a8\u0006\"\u000591057\u0012\u0011\b7\u0012\u0006\u0010\u00ee\u00ed\u0097\u00a8\u0006\"\u000591058\u0012\u0011\b8\u0012\u0006\u0010\u00a3\u00ee\u0097\u00a8\u0006\"\u000591059\u0012\u0011\b9\u0012\u0006\u0010\u00cf\u00ee\u0097\u00a8\u0006\"\u000591060\u0012\u0011\b:\u0012\u0006\u0010\u00e6\u00ee\u0097\u00a8\u0006\"\u000535769\u0012\u0011\b;\u0012\u0006\u0010\u00fe\u00ee\u0097\u00a8\u0006\"\u000591061\u001a\b\u001a\u0006LHFC67 \u00f4\u00e7\u0097\u00a8\u0006\"`\n/\n\u001019394-701ff27f-2\u0012\b13:15:00\u001a\b20230916 \u0000*\u00035850\u0001\u0012\u001d\r\u00a2\\\u0013\u00c2\u00159B\u0092\u00c2\u001d\u0000\u0080\u00a1C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00cd\u00cc$A(\u00f4\u00e7\u0097\u00a8\u0006B\b\u001a\u0006LHFC67" + }, + { + "type": "con_recorrido", + "entity": "\n$177ba214-2aeb-4e75-b7eb-92110155b660\u001a\u0091\u0005\n/\n\u001019399-701ff27f-2\u0012\b14:30:00\u001a\b20230916 \u0000*\u00035850\u0001\u0012\u0011\b\u001d\u0012\u0006\u0010\u00dc\u00e7\u0097\u00a8\u0006\"\u00051-Oct\u0012\u0011\b\u001e\u0012\u0006\u0010\u0091\u00e8\u0097\u00a8\u0006\"\u00051-Nov\u0012\u0011\b\u001f\u0012\u0006\u0010\u00cb\u00e8\u0097\u00a8\u0006\"\u000535745\u0012\u0014\b \u0012\u0006\u0010\u00e7\u00e8\u0097\u00a8\u0006\"\b15879953\u0012\u0011\b!\u0012\u0006\u0010\u00b6\u00e9\u0097\u00a8\u0006\"\u000535746\u0012\u0011\b\"\u0012\u0006\u0010\u0080\u00ee\u0097\u00a8\u0006\"\u000535748\u0012\u0011\b#\u0012\u0006\u0010\u00bd\u00ee\u0097\u00a8\u0006\"\u000535749\u0012\u0011\b$\u0012\u0006\u0010\u00e9\u00ee\u0097\u00a8\u0006\"\u000535750\u0012\u0011\b%\u0012\u0006\u0010\u00b4\u00ef\u0097\u00a8\u0006\"\u000535751\u0012\u0011\b&\u0012\u0006\u0010\u00a3\u00f0\u0097\u00a8\u0006\"\u000535752\u0012\u0011\b'\u0012\u0006\u0010\u00aa\u00f1\u0097\u00a8\u0006\"\u000535417\u0012\u0011\b(\u0012\u0006\u0010\u00f0\u00f1\u0097\u00a8\u0006\"\u000535755\u0012\u0011\b)\u0012\u0006\u0010\u00c7\u00f3\u0097\u00a8\u0006\"\u000535756\u0012\u0011\b*\u0012\u0006\u0010\u00bb\u00f4\u0097\u00a8\u0006\"\u000535757\u0012\u0011\b+\u0012\u0006\u0010\u00e9\u00f4\u0097\u00a8\u0006\"\u000535758\u0012\u0011\b,\u0012\u0006\u0010\u00f1\u00f4\u0097\u00a8\u0006\"\u000535759\u0012\u0011\b-\u0012\u0006\u0010\u00a1\u00f5\u0097\u00a8\u0006\"\u000535760\u0012\u0011\b.\u0012\u0006\u0010\u00e3\u00f5\u0097\u00a8\u0006\"\u000535762\u0012\u0011\b/\u0012\u0006\u0010\u00b8\u00f6\u0097\u00a8\u0006\"\u000535764\u0012\u0011\b0\u0012\u0006\u0010\u00be\u00f6\u0097\u00a8\u0006\"\u000535518\u0012\u0011\b1\u0012\u0006\u0010\u00f3\u00f6\u0097\u00a8\u0006\"\u000535766\u0012\u0011\b2\u0012\u0006\u0010\u00b1\u00f7\u0097\u00a8\u0006\"\u000535767\u0012\u0011\b3\u0012\u0006\u0010\u00ed\u00f7\u0097\u00a8\u0006\"\u000535398\u0012\u0011\b4\u0012\u0006\u0010\u00a7\u00f8\u0097\u00a8\u0006\"\u000591055\u0012\u0011\b5\u0012\u0006\u0010\u00ef\u00f8\u0097\u00a8\u0006\"\u000591056\u0012\u0011\b6\u0012\u0006\u0010\u00b0\u00f9\u0097\u00a8\u0006\"\u000591057\u0012\u0011\b7\u0012\u0006\u0010\u00d2\u00f9\u0097\u00a8\u0006\"\u000591058\u0012\u0011\b8\u0012\u0006\u0010\u0090\u00fa\u0097\u00a8\u0006\"\u000591059\u0012\u0011\b9\u0012\u0006\u0010\u00c3\u00fa\u0097\u00a8\u0006\"\u000591060\u0012\u0011\b:\u0012\u0006\u0010\u00de\u00fa\u0097\u00a8\u0006\"\u000535769\u0012\u0011\b;\u0012\u0006\u0010\u00fb\u00fa\u0097\u00a8\u0006\"\u000591061\u001a\b\u001a\u0006PSWC29 \u00da\u00e7\u0097\u00a8\u0006\"`\n/\n\u001019399-701ff27f-2\u0012\b14:30:00\u001a\b20230916 \u0000*\u00035850\u0001\u0012\u001d\r\u001fK\u0013\u00c2\u0015\u00dc\u001a\u0092\u00c2\u001d\u0000\u0000pC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00da\u00e7\u0097\u00a8\u0006B\b\u001a\u0006PSWC29" + }, + { + "type": "sin_recorrido", + "entity": "\n$5f430ac2-382b-41c4-bed8-9e4594e48440\"`\n/\n\u001019398-701ff27f-2\u0012\b14:15:00\u001a\b20230916 \u0000*\u00035850\u0001\u0012\u001d\r\u00f0b\u0013\u00c2\u0015\u00e1I\u0092\u00c2\u001d\u0000\u0000.C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00af\u00e7\u0097\u00a8\u0006B\b\u001a\u0006RLHV39" + }, + { + "type": "sin_recorrido", + "entity": "\n$43e09d32-1902-451c-99d5-8401ad45a8c1\"`\n/\n\u001019389-701ff27f-2\u0012\b12:00:00\u001a\b20230916 \u0000*\u00035850\u0001\u0012\u001d\r&c\u0013\u00c2\u0015\u00cfI\u0092\u00c2\u001d\u0000\u0080\u008aC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0091\u00e7\u0097\u00a8\u0006B\b\u001a\u0006XY7449" + }, + { + "type": "con_recorrido", + "entity": "\n$8091a49d-e18f-47b7-819d-0bd3d870e3a9\u001a\u00fc\u0007\n/\n\u001019401-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00035850\u0001\u0012\u0011\b\n\u0012\u0006\u0010\u00e0\u00e7\u0097\u00a8\u0006\"\u000535724\u0012\u0011\b\u000b\u0012\u0006\u0010\u00a8\u00e8\u0097\u00a8\u0006\"\u000535726\u0012\u0011\b\f\u0012\u0006\u0010\u00f1\u00e8\u0097\u00a8\u0006\"\u000535727\u0012\u0011\b\r\u0012\u0006\u0010\u00bd\u00e9\u0097\u00a8\u0006\"\u000535820\u0012\u0011\b\u000e\u0012\u0006\u0010\u00e1\u00e9\u0097\u00a8\u0006\"\u000535729\u0012\u0011\b\u000f\u0012\u0006\u0010\u0082\u00ea\u0097\u00a8\u0006\"\u000535730\u0012\u0011\b\u0010\u0012\u0006\u0010\u00a2\u00ea\u0097\u00a8\u0006\"\u000535731\u0012\u0011\b\u0011\u0012\u0006\u0010\u00e3\u00ea\u0097\u00a8\u0006\"\u000535201\u0012\u0011\b\u0012\u0012\u0006\u0010\u00bc\u00eb\u0097\u00a8\u0006\"\u000535202\u0012\u0011\b\u0013\u0012\u0006\u0010\u00d9\u00eb\u0097\u00a8\u0006\"\u000535203\u0012\u0011\b\u0014\u0012\u0006\u0010\u009b\u00ec\u0097\u00a8\u0006\"\u00051-Feb\u0012\u0011\b\u0015\u0012\u0006\u0010\u00c8\u00ec\u0097\u00a8\u0006\"\u00051-Mar\u0012\u0013\b\u0016\u0012\u0006\u0010\u00d3\u00ec\u0097\u00a8\u0006\"\u00078276831\u0012\u0011\b\u0017\u0012\u0006\u0010\u00f7\u00ec\u0097\u00a8\u0006\"\u00051-Apr\u0012\u0011\b\u0018\u0012\u0006\u0010\u00a7\u00ed\u0097\u00a8\u0006\"\u00051-May\u0012\u0011\b\u0019\u0012\u0006\u0010\u00ce\u00ed\u0097\u00a8\u0006\"\u00051-Jun\u0012\u0011\b\u001a\u0012\u0006\u0010\u008c\u00ee\u0097\u00a8\u0006\"\u00051-Jul\u0012\u0011\b\u001b\u0012\u0006\u0010\u00a6\u00ee\u0097\u00a8\u0006\"\u00051-Aug\u0012\u0011\b\u001c\u0012\u0006\u0010\u00d5\u00ee\u0097\u00a8\u0006\"\u00051-Sep\u0012\u0011\b\u001d\u0012\u0006\u0010\u0088\u00ef\u0097\u00a8\u0006\"\u00051-Oct\u0012\u0011\b\u001e\u0012\u0006\u0010\u00b9\u00ef\u0097\u00a8\u0006\"\u00051-Nov\u0012\u0011\b\u001f\u0012\u0006\u0010\u00ee\u00ef\u0097\u00a8\u0006\"\u000535745\u0012\u0014\b \u0012\u0006\u0010\u0087\u00f0\u0097\u00a8\u0006\"\b15879953\u0012\u0011\b!\u0012\u0006\u0010\u00d1\u00f0\u0097\u00a8\u0006\"\u000535746\u0012\u0011\b\"\u0012\u0006\u0010\u0097\u00f5\u0097\u00a8\u0006\"\u000535748\u0012\u0011\b#\u0012\u0006\u0010\u00d6\u00f5\u0097\u00a8\u0006\"\u000535749\u0012\u0011\b$\u0012\u0006\u0010\u0086\u00f6\u0097\u00a8\u0006\"\u000535750\u0012\u0011\b%\u0012\u0006\u0010\u00d7\u00f6\u0097\u00a8\u0006\"\u000535751\u0012\u0011\b&\u0012\u0006\u0010\u00cf\u00f7\u0097\u00a8\u0006\"\u000535752\u0012\u0011\b'\u0012\u0006\u0010\u00e7\u00f8\u0097\u00a8\u0006\"\u000535417\u0012\u0011\b(\u0012\u0006\u0010\u00b7\u00f9\u0097\u00a8\u0006\"\u000535755\u0012\u0011\b)\u0012\u0006\u0010\u00b2\u00fb\u0097\u00a8\u0006\"\u000535756\u0012\u0011\b*\u0012\u0006\u0010\u00bd\u00fc\u0097\u00a8\u0006\"\u000535757\u0012\u0011\b+\u0012\u0006\u0010\u00f5\u00fc\u0097\u00a8\u0006\"\u000535758\u0012\u0011\b,\u0012\u0006\u0010\u00ff\u00fc\u0097\u00a8\u0006\"\u000535759\u0012\u0011\b-\u0012\u0006\u0010\u00ba\u00fd\u0097\u00a8\u0006\"\u000535760\u0012\u0011\b.\u0012\u0006\u0010\u008c\u00fe\u0097\u00a8\u0006\"\u000535762\u0012\u0011\b/\u0012\u0006\u0010\u00f6\u00fe\u0097\u00a8\u0006\"\u000535764\u0012\u0011\b0\u0012\u0006\u0010\u00fe\u00fe\u0097\u00a8\u0006\"\u000535518\u0012\u0011\b1\u0012\u0006\u0010\u00c2\u00ff\u0097\u00a8\u0006\"\u000535766\u0012\u0011\b2\u0012\u0006\u0010\u0091\u0080\u0098\u00a8\u0006\"\u000535767\u0012\u0011\b3\u0012\u0006\u0010\u00de\u0080\u0098\u00a8\u0006\"\u000535398\u0012\u0011\b4\u0012\u0006\u0010\u00aa\u0081\u0098\u00a8\u0006\"\u000591055\u0012\u0011\b5\u0012\u0006\u0010\u008a\u0082\u0098\u00a8\u0006\"\u000591056\u0012\u0011\b6\u0012\u0006\u0010\u00e0\u0082\u0098\u00a8\u0006\"\u000591057\u0012\u0011\b7\u0012\u0006\u0010\u008e\u0083\u0098\u00a8\u0006\"\u000591058\u0012\u0011\b8\u0012\u0006\u0010\u00e2\u0083\u0098\u00a8\u0006\"\u000591059\u0012\u0011\b9\u0012\u0006\u0010\u00a9\u0084\u0098\u00a8\u0006\"\u000591060\u0012\u0011\b:\u0012\u0006\u0010\u00ce\u0084\u0098\u00a8\u0006\"\u000535769\u0012\u0011\b;\u0012\u0006\u0010\u00f6\u0084\u0098\u00a8\u0006\"\u000591061\u001a\b\u001a\u0006XY7453 \u00d0\u00e7\u0097\u00a8\u0006\"`\n/\n\u001019401-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00035850\u0001\u0012\u001d\r\u00fcK\u0013\u00c2\u0015~\u0004\u0092\u00c2\u001d\u0000\u0000\u00a6C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-33\u0097A(\u00d0\u00e7\u0097\u00a8\u0006B\b\u001a\u0006XY7453" + }, + { + "type": "con_recorrido", + "entity": "\n$bdf79ae6-f542-4cc0-9f3b-999df29a42f6\u001a\u009d\b\n/\n\u001019480-701ff27f-2\u0012\b15:46:00\u001a\b20230916 \u0000*\u00035850\u0000\u0012\u0011\b\u0001\u0012\u0006\u0010\u0095\u00e8\u0097\u00a8\u0006\"\u000535810\u0012\u0011\b\u0002\u0012\u0006\u0010\u00be\u00e8\u0097\u00a8\u0006\"\u000535813\u0012\u0011\b\u0003\u0012\u0006\u0010\u00fc\u00e8\u0097\u00a8\u0006\"\u000591048\u0012\u0011\b\u0004\u0012\u0006\u0010\u00ad\u00e9\u0097\u00a8\u0006\"\u000535650\u0012\u0011\b\u0005\u0012\u0006\u0010\u00fd\u00e9\u0097\u00a8\u0006\"\u000591049\u0012\u0011\b\u0006\u0012\u0006\u0010\u00cd\u00ea\u0097\u00a8\u0006\"\u000591043\u0012\u0011\b\u0007\u0012\u0006\u0010\u00db\u00ea\u0097\u00a8\u0006\"\u000535508\u0012\u0011\b\b\u0012\u0006\u0010\u0082\u00eb\u0097\u00a8\u0006\"\u000535514\u0012\u0011\b\t\u0012\u0006\u0010\u00b4\u00eb\u0097\u00a8\u0006\"\u000535515\u0012\u0011\b\n\u0012\u0006\u0010\u00e8\u00eb\u0097\u00a8\u0006\"\u000535516\u0012\u0011\b\u000b\u0012\u0006\u0010\u0089\u00ec\u0097\u00a8\u0006\"\u000535517\u0012\u0011\b\f\u0012\u0006\u0010\u00d6\u00ec\u0097\u00a8\u0006\"\u000535763\u0012\u0011\b\r\u0012\u0006\u0010\u0094\u00ed\u0097\u00a8\u0006\"\u000535761\u0012\u0011\b\u000e\u0012\u0006\u0010\u00b9\u00ed\u0097\u00a8\u0006\"\u000535522\u0012\u0011\b\u000f\u0012\u0006\u0010\u00e4\u00ed\u0097\u00a8\u0006\"\u000535523\u0012\u0011\b\u0010\u0012\u0006\u0010\u00a8\u00ee\u0097\u00a8\u0006\"\u000535524\u0012\u0011\b\u0011\u0012\u0006\u0010\u0089\u00ef\u0097\u00a8\u0006\"\u000535525\u0012\u0011\b\u0012\u0012\u0006\u0010\u008c\u00f1\u0097\u00a8\u0006\"\u000535786\u0012\u0011\b\u0013\u0012\u0006\u0010\u00cc\u00f1\u0097\u00a8\u0006\"\u000535787\u0012\u0011\b\u0014\u0012\u0006\u0010\u0089\u00f2\u0097\u00a8\u0006\"\u000535788\u0012\u0011\b\u0015\u0012\u0006\u0010\u00eb\u00f2\u0097\u00a8\u0006\"\u000535789\u0012\u0011\b\u0016\u0012\u0006\u0010\u0096\u00f3\u0097\u00a8\u0006\"\u000535790\u0012\u0011\b\u0017\u0012\u0006\u0010\u00e7\u00f3\u0097\u00a8\u0006\"\u000535791\u0012\u0011\b\u0018\u0012\u0006\u0010\u0096\u00f4\u0097\u00a8\u0006\"\u000535792\u0012\u0011\b\u0019\u0012\u0006\u0010\u00cf\u00f4\u0097\u00a8\u0006\"\u000535793\u0012\u0011\b\u001a\u0012\u0006\u0010\u00c4\u00f5\u0097\u00a8\u0006\"\u000591116\u0012\u0011\b\u001b\u0012\u0006\u0010\u00b6\u00f9\u0097\u00a8\u0006\"\u000535794\u0012\u0011\b\u001c\u0012\u0006\u0010\u00a0\u00fa\u0097\u00a8\u0006\"\u000535796\u0012\u0011\b\u001d\u0012\u0006\u0010\u00d7\u00fa\u0097\u00a8\u0006\"\u000535797\u0012\u0011\b\u001e\u0012\u0006\u0010\u0087\u00fb\u0097\u00a8\u0006\"\u000535798\u0012\u0011\b\u001f\u0012\u0006\u0010\u00b4\u00fb\u0097\u00a8\u0006\"\u000535799\u0012\u0011\b \u0012\u0006\u0010\u0086\u00fc\u0097\u00a8\u0006\"\u000535800\u0012\u0011\b!\u0012\u0006\u0010\u00c2\u00fc\u0097\u00a8\u0006\"\u000535801\u0012\u0011\b\"\u0012\u0006\u0010\u00e1\u00fc\u0097\u00a8\u0006\"\u000535802\u0012\u0011\b#\u0012\u0006\u0010\u009c\u00fd\u0097\u00a8\u0006\"\u000535803\u0012\u0011\b$\u0012\u0006\u0010\u00e1\u00fd\u0097\u00a8\u0006\"\u000538507\u0012\u0011\b%\u0012\u0006\u0010\u00a1\u00fe\u0097\u00a8\u0006\"\u000534473\u0012\u0011\b&\u0012\u0006\u0010\u00da\u00fe\u0097\u00a8\u0006\"\u000538500\u0012\u0011\b'\u0012\u0006\u0010\u0096\u00ff\u0097\u00a8\u0006\"\u000535808\u0012\u0011\b(\u0012\u0006\u0010\u0088\u0080\u0098\u00a8\u0006\"\u000535814\u0012\u0011\b)\u0012\u0006\u0010\u00f2\u0080\u0098\u00a8\u0006\"\u000535815\u0012\u0011\b*\u0012\u0006\u0010\u0097\u0081\u0098\u00a8\u0006\"\u000535816\u0012\u0011\b+\u0012\u0006\u0010\u00a9\u0081\u0098\u00a8\u0006\"\u000535817\u0012\u0011\b,\u0012\u0006\u0010\u00da\u0081\u0098\u00a8\u0006\"\u000535818\u0012\u0011\b-\u0012\u0006\u0010\u0092\u0082\u0098\u00a8\u0006\"\u000535819\u0012\u0011\b.\u0012\u0006\u0010\u00b1\u0084\u0098\u00a8\u0006\"\u000535822\u0012\u0011\b/\u0012\u0006\u0010\u00f2\u0084\u0098\u00a8\u0006\"\u000535823\u0012\u0011\b0\u0012\u0006\u0010\u00da\u0085\u0098\u00a8\u0006\"\u000535723\u0012\u0011\b1\u0012\u0006\u0010\u00a5\u0086\u0098\u00a8\u0006\"\u000535722\u0012\u0011\b2\u0012\u0006\u0010\u00b4\u0087\u0098\u00a8\u0006\"\u000535826\u0012\u0011\b3\u0012\u0006\u0010\u009b\u0088\u0098\u00a8\u0006\"\u000535827\u0012\u0011\b4\u0012\u0006\u0010\u00c5\u0088\u0098\u00a8\u0006\"\u000535828\u001a\b\u001a\u0006ZR7463 \u00f1\u00e7\u0097\u00a8\u0006\"`\n/\n\u001019480-701ff27f-2\u0012\b15:46:00\u001a\b20230916 \u0000*\u00035850\u0000\u0012\u001d\r\u00aeb\u0013\u00c2\u0015\u0082I\u0092\u00c2\u001d\u0000\u0000\u009eB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-33\u001bA(\u00f1\u00e7\u0097\u00a8\u0006B\b\u001a\u0006ZR7463" + }, + { + "type": "con_recorrido", + "entity": "\n$c9e111ac-34d8-4128-a635-c7cbeed09c38\u001a\u00aa\u0003\n/\n\u001019553-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00035860\u0000\u0012\u0011\b\u001c\u0012\u0006\u0010\u00f6\u00e7\u0097\u00a8\u0006\"\u000535793\u0012\u0011\b\u001d\u0012\u0006\u0010\u00f0\u00e8\u0097\u00a8\u0006\"\u000591116\u0012\u0011\b\u001e\u0012\u0006\u0010\u00ca\u00ec\u0097\u00a8\u0006\"\u000535794\u0012\u0011\b\u001f\u0012\u0006\u0010\u00a5\u00ed\u0097\u00a8\u0006\"\u000535796\u0012\u0011\b \u0012\u0006\u0010\u00cc\u00ed\u0097\u00a8\u0006\"\u000535797\u0012\u0011\b!\u0012\u0006\u0010\u00fd\u00ed\u0097\u00a8\u0006\"\u000535798\u0012\u0011\b\"\u0012\u0006\u0010\u00a3\u00ee\u0097\u00a8\u0006\"\u000535799\u0012\u0011\b#\u0012\u0006\u0010\u00e6\u00ee\u0097\u00a8\u0006\"\u000535800\u0012\u0011\b$\u0012\u0006\u0010\u0096\u00ef\u0097\u00a8\u0006\"\u000535801\u0012\u0011\b%\u0012\u0006\u0010\u00af\u00ef\u0097\u00a8\u0006\"\u000535802\u0012\u0011\b&\u0012\u0006\u0010\u00dc\u00ef\u0097\u00a8\u0006\"\u000535803\u0012\u0011\b'\u0012\u0006\u0010\u0092\u00f0\u0097\u00a8\u0006\"\u000538507\u0012\u0011\b(\u0012\u0006\u0010\u00c4\u00f0\u0097\u00a8\u0006\"\u000534473\u0012\u0011\b)\u0012\u0006\u0010\u00ee\u00f0\u0097\u00a8\u0006\"\u000538500\u0012\u0011\b*\u0012\u0006\u0010\u0093\u00f1\u0097\u00a8\u0006\"\u000535808\u0012\u0011\b+\u0012\u0006\u0010\u00d3\u00f1\u0097\u00a8\u0006\"\u000535710\u0012\u0011\b,\u0012\u0006\u0010\u00f5\u00f1\u0097\u00a8\u0006\"\u000550036\u0012\u0011\b-\u0012\u0006\u0010\u00e1\u00f2\u0097\u00a8\u0006\"\u000535712\u0012\u0011\b.\u0012\u0006\u0010\u00be\u00f3\u0097\u00a8\u0006\"\u000535713\u001a\b\u001a\u0006FTPT71 \u00d5\u00e7\u0097\u00a8\u0006\"`\n/\n\u001019553-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00035860\u0000\u0012\u001d\r\u000e[\u0013\u00c2\u0015\u00a8/\u0092\u00c2\u001d\u0000\u0000\u00bcB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-33\u0097A(\u00d5\u00e7\u0097\u00a8\u0006B\b\u001a\u0006FTPT71" + }, + { + "type": "con_recorrido", + "entity": "\n$cd5c311d-6826-4099-9fae-3d5c45b712b1\u001aT\n/\n\u001019625-701ff27f-2\u0012\b14:08:00\u001a\b20230916 \u0000*\u00035860\u0001\u0012\u0011\b*\u0012\u0006\u0010\u00c9\u00e8\u0097\u00a8\u0006\"\u000591058\u001a\b\u001a\u0006FXJV66 \u00ad\u00e7\u0097\u00a8\u0006\"`\n/\n\u001019625-701ff27f-2\u0012\b14:08:00\u001a\b20230916 \u0000*\u00035860\u0001\u0012\u001d\r\u00b7a\u0013\u00c2\u0015\u00eeK\u0092\u00c2\u001d\u0000\u0000\u00a0@!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00cd\u00cc,A(\u00ad\u00e7\u0097\u00a8\u0006B\b\u001a\u0006FXJV66" + }, + { + "type": "sin_recorrido", + "entity": "\n$aa091111-434a-45cf-a167-5fbda4505a62\"a\n/\n\u001019624-701ff27f-2\u0012\b13:53:00\u001a\b20230916 \u0000*\u00035860\u0001\u0012\u001d\r\u00f0b\u0013\u00c2\u0015\u00baI\u0092\u00c2\u001d\u0000\u0000\u00aeB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00bf\u00e7\u0097\u00a8\u0006B\t\u001a\u0007JRKP971" + }, + { + "type": "con_recorrido", + "entity": "\n$25215522-6f4f-47fb-b657-5c9582306d62\u001a\u00c6\u0001\n/\n\u001019554-701ff27f-2\u0012\b15:15:00\u001a\b20230916 \u0000*\u00035860\u0000\u0012\u0011\b(\u0012\u0006\u0010\u009c\u00e8\u0097\u00a8\u0006\"\u000534473\u0012\u0011\b)\u0012\u0006\u0010\u00cb\u00e8\u0097\u00a8\u0006\"\u000538500\u0012\u0011\b*\u0012\u0006\u0010\u00f3\u00e8\u0097\u00a8\u0006\"\u000535808\u0012\u0011\b+\u0012\u0006\u0010\u00b8\u00e9\u0097\u00a8\u0006\"\u000535710\u0012\u0011\b,\u0012\u0006\u0010\u00dd\u00e9\u0097\u00a8\u0006\"\u000550036\u0012\u0011\b-\u0012\u0006\u0010\u00ce\u00ea\u0097\u00a8\u0006\"\u000535712\u0012\u0011\b.\u0012\u0006\u0010\u00ac\u00eb\u0097\u00a8\u0006\"\u000535713\u001a\b\u001a\u0006LHFP65 \u0097\u00e8\u0097\u00a8\u0006\"`\n/\n\u001019554-701ff27f-2\u0012\b15:15:00\u001a\b20230916 \u0000*\u00035860\u0000\u0012\u001d\rmE\u0013\u00c2\u0015\u00ae\u0013\u0092\u00c2\u001d\u0000\u0000xB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u00a4A(\u0097\u00e8\u0097\u00a8\u0006B\b\u001a\u0006LHFP65" + }, + { + "type": "con_recorrido", + "entity": "\n$77c6650d-e90b-468d-ac5a-860a74d6ac74\u001a\u00f4\u0006\n/\n\u001019556-701ff27f-2\u0012\b15:45:00\u001a\b20230916 \u0000*\u00035860\u0000\u0012\u0011\b\u0004\u0012\u0006\u0010\u009d\u00e8\u0097\u00a8\u0006\"\u000535876\u0012\u0011\b\u0005\u0012\u0006\u0010\u00f7\u00e8\u0097\u00a8\u0006\"\u000535874\u0012\u0011\b\u0006\u0012\u0006\u0010\u00a1\u00e9\u0097\u00a8\u0006\"\u000535873\u0012\u0011\b\u0007\u0012\u0006\u0010\u00c7\u00e9\u0097\u00a8\u0006\"\u000535872\u0012\u0011\b\b\u0012\u0006\u0010\u00ea\u00e9\u0097\u00a8\u0006\"\u000535871\u0012\u0011\b\t\u0012\u0006\u0010\u0099\u00ea\u0097\u00a8\u0006\"\u000535484\u0012\u0013\b\n\u0012\u0006\u0010\u00d8\u00ea\u0097\u00a8\u0006\"\u00077175655\u0012\u0011\b\u000b\u0012\u0006\u0010\u00ea\u00ea\u0097\u00a8\u0006\"\u000535776\u0012\u0011\b\f\u0012\u0006\u0010\u0098\u00eb\u0097\u00a8\u0006\"\u000535777\u0012\u0011\b\r\u0012\u0006\u0010\u00b4\u00eb\u0097\u00a8\u0006\"\u000535778\u0012\u0011\b\u000e\u0012\u0006\u0010\u00f5\u00eb\u0097\u00a8\u0006\"\u000535640\u0012\u0011\b\u000f\u0012\u0006\u0010\u008e\u00ec\u0097\u00a8\u0006\"\u000535781\u0012\u0011\b\u0010\u0012\u0006\u0010\u00ac\u00ec\u0097\u00a8\u0006\"\u000535782\u0012\u0011\b\u0011\u0012\u0006\u0010\u00db\u00ec\u0097\u00a8\u0006\"\u000591038\u0012\u0011\b\u0012\u0012\u0006\u0010\u00c8\u00ed\u0097\u00a8\u0006\"\u000535783\u0012\u0011\b\u0013\u0012\u0006\u0010\u00e9\u00ed\u0097\u00a8\u0006\"\u000531013\u0012\u0011\b\u0014\u0012\u0006\u0010\u00e2\u00ee\u0097\u00a8\u0006\"\u000535785\u0012\u0011\b\u0015\u0012\u0006\u0010\u00c9\u00f0\u0097\u00a8\u0006\"\u000535786\u0012\u0011\b\u0016\u0012\u0006\u0010\u008a\u00f1\u0097\u00a8\u0006\"\u000535787\u0012\u0011\b\u0017\u0012\u0006\u0010\u00c8\u00f1\u0097\u00a8\u0006\"\u000535788\u0012\u0011\b\u0018\u0012\u0006\u0010\u00a9\u00f2\u0097\u00a8\u0006\"\u000535789\u0012\u0011\b\u0019\u0012\u0006\u0010\u00d4\u00f2\u0097\u00a8\u0006\"\u000535790\u0012\u0011\b\u001a\u0012\u0006\u0010\u00a4\u00f3\u0097\u00a8\u0006\"\u000535791\u0012\u0011\b\u001b\u0012\u0006\u0010\u00d2\u00f3\u0097\u00a8\u0006\"\u000535792\u0012\u0011\b\u001c\u0012\u0006\u0010\u008b\u00f4\u0097\u00a8\u0006\"\u000535793\u0012\u0011\b\u001d\u0012\u0006\u0010\u00ff\u00f4\u0097\u00a8\u0006\"\u000591116\u0012\u0011\b\u001e\u0012\u0006\u0010\u00eb\u00f8\u0097\u00a8\u0006\"\u000535794\u0012\u0011\b\u001f\u0012\u0006\u0010\u00d3\u00f9\u0097\u00a8\u0006\"\u000535796\u0012\u0011\b \u0012\u0006\u0010\u0080\u00fa\u0097\u00a8\u0006\"\u000535797\u0012\u0011\b!\u0012\u0006\u0010\u00b8\u00fa\u0097\u00a8\u0006\"\u000535798\u0012\u0011\b\"\u0012\u0006\u0010\u00e5\u00fa\u0097\u00a8\u0006\"\u000535799\u0012\u0011\b#\u0012\u0006\u0010\u00b6\u00fb\u0097\u00a8\u0006\"\u000535800\u0012\u0011\b$\u0012\u0006\u0010\u00f0\u00fb\u0097\u00a8\u0006\"\u000535801\u0012\u0011\b%\u0012\u0006\u0010\u008f\u00fc\u0097\u00a8\u0006\"\u000535802\u0012\u0011\b&\u0012\u0006\u0010\u00c7\u00fc\u0097\u00a8\u0006\"\u000535803\u0012\u0011\b'\u0012\u0006\u0010\u008c\u00fd\u0097\u00a8\u0006\"\u000538507\u0012\u0011\b(\u0012\u0006\u0010\u00cb\u00fd\u0097\u00a8\u0006\"\u000534473\u0012\u0011\b)\u0012\u0006\u0010\u0082\u00fe\u0097\u00a8\u0006\"\u000538500\u0012\u0011\b*\u0012\u0006\u0010\u00b2\u00fe\u0097\u00a8\u0006\"\u000535808\u0012\u0011\b+\u0012\u0006\u0010\u0088\u00ff\u0097\u00a8\u0006\"\u000535710\u0012\u0011\b,\u0012\u0006\u0010\u00b6\u00ff\u0097\u00a8\u0006\"\u000550036\u0012\u0011\b-\u0012\u0006\u0010\u00cb\u0080\u0098\u00a8\u0006\"\u000535712\u0012\u0011\b.\u0012\u0006\u0010\u00ce\u0081\u0098\u00a8\u0006\"\u000535713\u001a\b\u001a\u0006WC2081 \u00f5\u00e7\u0097\u00a8\u0006\"`\n/\n\u001019556-701ff27f-2\u0012\b15:45:00\u001a\b20230916 \u0000*\u00035860\u0000\u0012\u001d\r\u000b_\u0013\u00c2\u0015$K\u0092\u00c2\u001d\u0000\u0000\u0086C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u009a\u0099\u0001A(\u00f5\u00e7\u0097\u00a8\u0006B\b\u001a\u0006WC2081" + }, + { + "type": "con_recorrido", + "entity": "\n$4bc54ac0-cd1f-4c0f-bc05-6d29dd749a8f\u001a\u008e\u0005\n/\n\u001019552-701ff27f-2\u0012\b14:45:00\u001a\b20230916 \u0000*\u00035860\u0000\u0012\u0011\b\u0010\u0012\u0006\u0010\u0080\u00e8\u0097\u00a8\u0006\"\u000535782\u0012\u0011\b\u0011\u0012\u0006\u0010\u00b3\u00e8\u0097\u00a8\u0006\"\u000591038\u0012\u0011\b\u0012\u0012\u0006\u0010\u00a7\u00e9\u0097\u00a8\u0006\"\u000535783\u0012\u0011\b\u0013\u0012\u0006\u0010\u00ca\u00e9\u0097\u00a8\u0006\"\u000531013\u0012\u0011\b\u0014\u0012\u0006\u0010\u00c9\u00ea\u0097\u00a8\u0006\"\u000535785\u0012\u0011\b\u0015\u0012\u0006\u0010\u00b7\u00ec\u0097\u00a8\u0006\"\u000535786\u0012\u0011\b\u0016\u0012\u0006\u0010\u00fa\u00ec\u0097\u00a8\u0006\"\u000535787\u0012\u0011\b\u0017\u0012\u0006\u0010\u00b8\u00ed\u0097\u00a8\u0006\"\u000535788\u0012\u0011\b\u0018\u0012\u0006\u0010\u0099\u00ee\u0097\u00a8\u0006\"\u000535789\u0012\u0011\b\u0019\u0012\u0006\u0010\u00c3\u00ee\u0097\u00a8\u0006\"\u000535790\u0012\u0011\b\u001a\u0012\u0006\u0010\u0092\u00ef\u0097\u00a8\u0006\"\u000535791\u0012\u0011\b\u001b\u0012\u0006\u0010\u00bf\u00ef\u0097\u00a8\u0006\"\u000535792\u0012\u0011\b\u001c\u0012\u0006\u0010\u00f7\u00ef\u0097\u00a8\u0006\"\u000535793\u0012\u0011\b\u001d\u0012\u0006\u0010\u00e7\u00f0\u0097\u00a8\u0006\"\u000591116\u0012\u0011\b\u001e\u0012\u0006\u0010\u00b4\u00f4\u0097\u00a8\u0006\"\u000535794\u0012\u0011\b\u001f\u0012\u0006\u0010\u0093\u00f5\u0097\u00a8\u0006\"\u000535796\u0012\u0011\b \u0012\u0006\u0010\u00bb\u00f5\u0097\u00a8\u0006\"\u000535797\u0012\u0011\b!\u0012\u0006\u0010\u00ef\u00f5\u0097\u00a8\u0006\"\u000535798\u0012\u0011\b\"\u0012\u0006\u0010\u0097\u00f6\u0097\u00a8\u0006\"\u000535799\u0012\u0011\b#\u0012\u0006\u0010\u00df\u00f6\u0097\u00a8\u0006\"\u000535800\u0012\u0011\b$\u0012\u0006\u0010\u0093\u00f7\u0097\u00a8\u0006\"\u000535801\u0012\u0011\b%\u0012\u0006\u0010\u00ae\u00f7\u0097\u00a8\u0006\"\u000535802\u0012\u0011\b&\u0012\u0006\u0010\u00df\u00f7\u0097\u00a8\u0006\"\u000535803\u0012\u0011\b'\u0012\u0006\u0010\u009c\u00f8\u0097\u00a8\u0006\"\u000538507\u0012\u0011\b(\u0012\u0006\u0010\u00d3\u00f8\u0097\u00a8\u0006\"\u000534473\u0012\u0011\b)\u0012\u0006\u0010\u0083\u00f9\u0097\u00a8\u0006\"\u000538500\u0012\u0011\b*\u0012\u0006\u0010\u00ad\u00f9\u0097\u00a8\u0006\"\u000535808\u0012\u0011\b+\u0012\u0006\u0010\u00f7\u00f9\u0097\u00a8\u0006\"\u000535710\u0012\u0011\b,\u0012\u0006\u0010\u009f\u00fa\u0097\u00a8\u0006\"\u000550036\u0012\u0011\b-\u0012\u0006\u0010\u009e\u00fb\u0097\u00a8\u0006\"\u000535712\u0012\u0011\b.\u0012\u0006\u0010\u008c\u00fc\u0097\u00a8\u0006\"\u000535713\u001a\b\u001a\u0006YU5032 \u00eb\u00e7\u0097\u00a8\u0006\"`\n/\n\u001019552-701ff27f-2\u0012\b14:45:00\u001a\b20230916 \u0000*\u00035860\u0000\u0012\u001d\rGk\u0013\u00c2\u0015\u00f3D\u0092\u00c2\u001d\u0000\u0000\u00d6B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00eb\u00e7\u0097\u00a8\u0006B\b\u001a\u0006YU5032" + }, + { + "type": "con_recorrido", + "entity": "\n$ed563e8e-50d9-4ebe-87e9-e3d78da33a35\u001a\u00d8\u0004\n/\n\u001019627-701ff27f-2\u0012\b14:38:00\u001a\b20230916 \u0000*\u00035860\u0001\u0012\u0011\b\u000f\u0012\u0006\u0010\u00d2\u00e7\u0097\u00a8\u0006\"\u000535745\u0012\u0014\b\u0010\u0012\u0006\u0010\u00ee\u00e7\u0097\u00a8\u0006\"\b15879953\u0012\u0011\b\u0011\u0012\u0006\u0010\u0085\u00e8\u0097\u00a8\u0006\"\u000535746\u0012\u0011\b\u0012\u0012\u0006\u0010\u00da\u00ec\u0097\u00a8\u0006\"\u000535748\u0012\u0011\b\u0013\u0012\u0006\u0010\u0097\u00ed\u0097\u00a8\u0006\"\u000535749\u0012\u0011\b\u0014\u0012\u0006\u0010\u00c4\u00ed\u0097\u00a8\u0006\"\u000535750\u0012\u0011\b\u0015\u0012\u0006\u0010\u0090\u00ee\u0097\u00a8\u0006\"\u000535751\u0012\u0011\b\u0016\u0012\u0006\u0010\u00fe\u00ee\u0097\u00a8\u0006\"\u000535752\u0012\u0011\b\u0017\u0012\u0006\u0010\u0085\u00f0\u0097\u00a8\u0006\"\u000535417\u0012\u0011\b\u0018\u0012\u0006\u0010\u00cb\u00f0\u0097\u00a8\u0006\"\u000535755\u0012\u0011\b\u0019\u0012\u0006\u0010\u009a\u00f2\u0097\u00a8\u0006\"\u000535864\u0012\u0011\b\u001a\u0012\u0006\u0010\u008f\u00f3\u0097\u00a8\u0006\"\u000591039\u0012\u0011\b\u001b\u0012\u0006\u0010\u009c\u00f4\u0097\u00a8\u0006\"\u000535866\u0012\u0011\b\u001c\u0012\u0006\u0010\u00c3\u00f4\u0097\u00a8\u0006\"\u000591040\u0012\u0011\b\u001d\u0012\u0006\u0010\u00eb\u00f4\u0097\u00a8\u0006\"\u000535867\u0012\u0011\b\u001e\u0012\u0006\u0010\u008a\u00f5\u0097\u00a8\u0006\"\u000591066\u0012\u0011\b\u001f\u0012\u0006\u0010\u00bc\u00f5\u0097\u00a8\u0006\"\u000535644\u0012\u0011\b \u0012\u0006\u0010\u00ea\u00f5\u0097\u00a8\u0006\"\u000535868\u0012\u0011\b!\u0012\u0006\u0010\u0083\u00f6\u0097\u00a8\u0006\"\u000535869\u0012\u0011\b\"\u0012\u0006\u0010\u009e\u00f6\u0097\u00a8\u0006\"\u000535870\u0012\u0011\b#\u0012\u0006\u0010\u00c2\u00f6\u0097\u00a8\u0006\"\u000591045\u0012\u0011\b$\u0012\u0006\u0010\u00de\u00f6\u0097\u00a8\u0006\"\u000591089\u0012\u0011\b%\u0012\u0006\u0010\u00fc\u00f6\u0097\u00a8\u0006\"\u000535645\u0012\u0011\b&\u0012\u0006\u0010\u00af\u00f7\u0097\u00a8\u0006\"\u000591090\u0012\u0011\b'\u0012\u0006\u0010\u00e5\u00f7\u0097\u00a8\u0006\"\u000591091\u0012\u0011\b(\u0012\u0006\u0010\u008b\u00f8\u0097\u00a8\u0006\"\u000591092\u0012\u0011\b)\u0012\u0006\u0010\u00b3\u00f8\u0097\u00a8\u0006\"\u000535875\u0012\u0011\b*\u0012\u0006\u0010\u00e2\u00f9\u0097\u00a8\u0006\"\u000591058\u001a\b\u001a\u0006YX6713 \u00ce\u00e7\u0097\u00a8\u0006\"`\n/\n\u001019627-701ff27f-2\u0012\b14:38:00\u001a\b20230916 \u0000*\u00035860\u0001\u0012\u001d\reM\u0013\u00c2\u0015\u0084\u001d\u0092\u00c2\u001d\u0000\u0000pC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00cd\u00cc\f@(\u00ce\u00e7\u0097\u00a8\u0006B\b\u001a\u0006YX6713" + }, + { + "type": "con_recorrido", + "entity": "\n$eafca7c4-5119-42a4-83d8-4a0fe73a56a1\u001a\u00eb\u0004\n/\n\u001019628-701ff27f-2\u0012\b14:53:00\u001a\b20230916 \u0000*\u00035860\u0001\u0012\u0011\b\u000e\u0012\u0006\u0010\u00be\u00e7\u0097\u00a8\u0006\"\u00051-Nov\u0012\u0011\b\u000f\u0012\u0006\u0010\u00f9\u00e7\u0097\u00a8\u0006\"\u000535745\u0012\u0014\b\u0010\u0012\u0006\u0010\u0094\u00e8\u0097\u00a8\u0006\"\b15879953\u0012\u0011\b\u0011\u0012\u0006\u0010\u00ab\u00e8\u0097\u00a8\u0006\"\u000535746\u0012\u0011\b\u0012\u0012\u0006\u0010\u00fc\u00ec\u0097\u00a8\u0006\"\u000535748\u0012\u0011\b\u0013\u0012\u0006\u0010\u00b8\u00ed\u0097\u00a8\u0006\"\u000535749\u0012\u0011\b\u0014\u0012\u0006\u0010\u00e5\u00ed\u0097\u00a8\u0006\"\u000535750\u0012\u0011\b\u0015\u0012\u0006\u0010\u00b0\u00ee\u0097\u00a8\u0006\"\u000535751\u0012\u0011\b\u0016\u0012\u0006\u0010\u009f\u00ef\u0097\u00a8\u0006\"\u000535752\u0012\u0011\b\u0017\u0012\u0006\u0010\u00a6\u00f0\u0097\u00a8\u0006\"\u000535417\u0012\u0011\b\u0018\u0012\u0006\u0010\u00ec\u00f0\u0097\u00a8\u0006\"\u000535755\u0012\u0011\b\u0019\u0012\u0006\u0010\u00bb\u00f2\u0097\u00a8\u0006\"\u000535864\u0012\u0011\b\u001a\u0012\u0006\u0010\u00b2\u00f3\u0097\u00a8\u0006\"\u000591039\u0012\u0011\b\u001b\u0012\u0006\u0010\u00c0\u00f4\u0097\u00a8\u0006\"\u000535866\u0012\u0011\b\u001c\u0012\u0006\u0010\u00e7\u00f4\u0097\u00a8\u0006\"\u000591040\u0012\u0011\b\u001d\u0012\u0006\u0010\u008f\u00f5\u0097\u00a8\u0006\"\u000535867\u0012\u0011\b\u001e\u0012\u0006\u0010\u00ae\u00f5\u0097\u00a8\u0006\"\u000591066\u0012\u0011\b\u001f\u0012\u0006\u0010\u00e0\u00f5\u0097\u00a8\u0006\"\u000535644\u0012\u0011\b \u0012\u0006\u0010\u0090\u00f6\u0097\u00a8\u0006\"\u000535868\u0012\u0011\b!\u0012\u0006\u0010\u00a9\u00f6\u0097\u00a8\u0006\"\u000535869\u0012\u0011\b\"\u0012\u0006\u0010\u00c3\u00f6\u0097\u00a8\u0006\"\u000535870\u0012\u0011\b#\u0012\u0006\u0010\u00e8\u00f6\u0097\u00a8\u0006\"\u000591045\u0012\u0011\b$\u0012\u0006\u0010\u0085\u00f7\u0097\u00a8\u0006\"\u000591089\u0012\u0011\b%\u0012\u0006\u0010\u00a3\u00f7\u0097\u00a8\u0006\"\u000535645\u0012\u0011\b&\u0012\u0006\u0010\u00d7\u00f7\u0097\u00a8\u0006\"\u000591090\u0012\u0011\b'\u0012\u0006\u0010\u008d\u00f8\u0097\u00a8\u0006\"\u000591091\u0012\u0011\b(\u0012\u0006\u0010\u00b4\u00f8\u0097\u00a8\u0006\"\u000591092\u0012\u0011\b)\u0012\u0006\u0010\u00dc\u00f8\u0097\u00a8\u0006\"\u000535875\u0012\u0011\b*\u0012\u0006\u0010\u008d\u00fa\u0097\u00a8\u0006\"\u000591058\u001a\b\u001a\u0006ZJ6737 \u00af\u00e7\u0097\u00a8\u0006\"`\n/\n\u001019628-701ff27f-2\u0012\b14:53:00\u001a\b20230916 \u0000*\u00035860\u0001\u0012\u001d\r\u00feK\u0013\u00c2\u0015\u00ce\u001b\u0092\u00c2\u001d\u0000\u0000rC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00af\u00e7\u0097\u00a8\u0006B\b\u001a\u0006ZJ6737" + }, + { + "type": "sin_recorrido", + "entity": "\n$a0ec8b87-bead-42d7-93bd-d5839d6e2698\"`\n/\n\u001019629-701ff27f-2\u0012\b15:08:00\u001a\b20230916 \u0000*\u00035860\u0001\u0012\u001d\r\nD\u0013\u00c2\u0015\u00e0\u000b\u0092\u00c2\u001d\u0000\u0000MC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00d1\u00e7\u0097\u00a8\u0006B\b\u001a\u0006ZT3402" + }, + { + "type": "con_recorrido", + "entity": "\n$a1ff5980-5ff4-429c-a120-2526f037f89e\u001a\u0085\u0006\n/\n\u001019630-701ff27f-2\u0012\b15:23:00\u001a\b20230916 \u0000*\u00035860\u0001\u0012\u0013\b\u0006\u0012\u0006\u0010\u00c2\u00e7\u0097\u00a8\u0006\"\u00078276831\u0012\u0011\b\u0007\u0012\u0006\u0010\u00e0\u00e7\u0097\u00a8\u0006\"\u00051-Apr\u0012\u0011\b\b\u0012\u0006\u0010\u0094\u00e8\u0097\u00a8\u0006\"\u00051-May\u0012\u0011\b\t\u0012\u0006\u0010\u00bf\u00e8\u0097\u00a8\u0006\"\u00051-Jun\u0012\u0011\b\n\u0012\u0006\u0010\u00fb\u00e8\u0097\u00a8\u0006\"\u00051-Jul\u0012\u0011\b\u000b\u0012\u0006\u0010\u009d\u00e9\u0097\u00a8\u0006\"\u00051-Aug\u0012\u0011\b\f\u0012\u0006\u0010\u00c5\u00e9\u0097\u00a8\u0006\"\u00051-Sep\u0012\u0011\b\r\u0012\u0006\u0010\u0084\u00ea\u0097\u00a8\u0006\"\u00051-Oct\u0012\u0011\b\u000e\u0012\u0006\u0010\u00b7\u00ea\u0097\u00a8\u0006\"\u00051-Nov\u0012\u0011\b\u000f\u0012\u0006\u0010\u00ee\u00ea\u0097\u00a8\u0006\"\u000535745\u0012\u0014\b\u0010\u0012\u0006\u0010\u0088\u00eb\u0097\u00a8\u0006\"\b15879953\u0012\u0011\b\u0011\u0012\u0006\u0010\u009e\u00eb\u0097\u00a8\u0006\"\u000535746\u0012\u0011\b\u0012\u0012\u0006\u0010\u00dd\u00ef\u0097\u00a8\u0006\"\u000535748\u0012\u0011\b\u0013\u0012\u0006\u0010\u0099\u00f0\u0097\u00a8\u0006\"\u000535749\u0012\u0011\b\u0014\u0012\u0006\u0010\u00c5\u00f0\u0097\u00a8\u0006\"\u000535750\u0012\u0011\b\u0015\u0012\u0006\u0010\u0091\u00f1\u0097\u00a8\u0006\"\u000535751\u0012\u0011\b\u0016\u0012\u0006\u0010\u0080\u00f2\u0097\u00a8\u0006\"\u000535752\u0012\u0011\b\u0017\u0012\u0006\u0010\u0089\u00f3\u0097\u00a8\u0006\"\u000535417\u0012\u0011\b\u0018\u0012\u0006\u0010\u00d1\u00f3\u0097\u00a8\u0006\"\u000535755\u0012\u0011\b\u0019\u0012\u0006\u0010\u00a7\u00f5\u0097\u00a8\u0006\"\u000535864\u0012\u0011\b\u001a\u0012\u0006\u0010\u00a3\u00f6\u0097\u00a8\u0006\"\u000591039\u0012\u0011\b\u001b\u0012\u0006\u0010\u00b9\u00f7\u0097\u00a8\u0006\"\u000535866\u0012\u0011\b\u001c\u0012\u0006\u0010\u00e3\u00f7\u0097\u00a8\u0006\"\u000591040\u0012\u0011\b\u001d\u0012\u0006\u0010\u008d\u00f8\u0097\u00a8\u0006\"\u000535867\u0012\u0011\b\u001e\u0012\u0006\u0010\u00ae\u00f8\u0097\u00a8\u0006\"\u000591066\u0012\u0011\b\u001f\u0012\u0006\u0010\u00e4\u00f8\u0097\u00a8\u0006\"\u000535644\u0012\u0011\b \u0012\u0006\u0010\u0096\u00f9\u0097\u00a8\u0006\"\u000535868\u0012\u0011\b!\u0012\u0006\u0010\u00b1\u00f9\u0097\u00a8\u0006\"\u000535869\u0012\u0011\b\"\u0012\u0006\u0010\u00ce\u00f9\u0097\u00a8\u0006\"\u000535870\u0012\u0011\b#\u0012\u0006\u0010\u00f5\u00f9\u0097\u00a8\u0006\"\u000591045\u0012\u0011\b$\u0012\u0006\u0010\u0094\u00fa\u0097\u00a8\u0006\"\u000591089\u0012\u0011\b%\u0012\u0006\u0010\u00b5\u00fa\u0097\u00a8\u0006\"\u000535645\u0012\u0011\b&\u0012\u0006\u0010\u00ed\u00fa\u0097\u00a8\u0006\"\u000591090\u0012\u0011\b'\u0012\u0006\u0010\u00a8\u00fb\u0097\u00a8\u0006\"\u000591091\u0012\u0011\b(\u0012\u0006\u0010\u00d2\u00fb\u0097\u00a8\u0006\"\u000591092\u0012\u0011\b)\u0012\u0006\u0010\u00fe\u00fb\u0097\u00a8\u0006\"\u000535875\u0012\u0011\b*\u0012\u0006\u0010\u00c1\u00fd\u0097\u00a8\u0006\"\u000591058\u001a\b\u001a\u0006ZT3763 \u00b8\u00e7\u0097\u00a8\u0006\"`\n/\n\u001019630-701ff27f-2\u0012\b15:23:00\u001a\b20230916 \u0000*\u00035860\u0001\u0012\u001d\r~D\u0013\u00c2\u0015\u00ba\u0012\u0092\u00c2\u001d\u0000\u0000rC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b8\u00e7\u0097\u00a8\u0006B\b\u001a\u0006ZT3763" + }, + { + "type": "con_recorrido", + "entity": "\n$59f24102-217d-43ca-a1d6-f1a7d3e4fdfd\u001a\u00af\u0004\n/\n\u001019555-701ff27f-2\u0012\b15:30:00\u001a\b20230916 \u0000*\u00035860\u0000\u0012\u0011\b\u0015\u0012\u0006\u0010\u00d9\u00e7\u0097\u00a8\u0006\"\u000535786\u0012\u0011\b\u0016\u0012\u0006\u0010\u00a1\u00e8\u0097\u00a8\u0006\"\u000535787\u0012\u0011\b\u0017\u0012\u0006\u0010\u00e3\u00e8\u0097\u00a8\u0006\"\u000535788\u0012\u0011\b\u0018\u0012\u0006\u0010\u00cb\u00e9\u0097\u00a8\u0006\"\u000535789\u0012\u0011\b\u0019\u0012\u0006\u0010\u00f8\u00e9\u0097\u00a8\u0006\"\u000535790\u0012\u0011\b\u001a\u0012\u0006\u0010\u00ca\u00ea\u0097\u00a8\u0006\"\u000535791\u0012\u0011\b\u001b\u0012\u0006\u0010\u00f9\u00ea\u0097\u00a8\u0006\"\u000535792\u0012\u0011\b\u001c\u0012\u0006\u0010\u00b3\u00eb\u0097\u00a8\u0006\"\u000535793\u0012\u0011\b\u001d\u0012\u0006\u0010\u00a5\u00ec\u0097\u00a8\u0006\"\u000591116\u0012\u0011\b\u001e\u0012\u0006\u0010\u00ee\u00ef\u0097\u00a8\u0006\"\u000535794\u0012\u0011\b\u001f\u0012\u0006\u0010\u00c9\u00f0\u0097\u00a8\u0006\"\u000535796\u0012\u0011\b \u0012\u0006\u0010\u00f0\u00f0\u0097\u00a8\u0006\"\u000535797\u0012\u0011\b!\u0012\u0006\u0010\u00a0\u00f1\u0097\u00a8\u0006\"\u000535798\u0012\u0011\b\"\u0012\u0006\u0010\u00c6\u00f1\u0097\u00a8\u0006\"\u000535799\u0012\u0011\b#\u0012\u0006\u0010\u008a\u00f2\u0097\u00a8\u0006\"\u000535800\u0012\u0011\b$\u0012\u0006\u0010\u00bb\u00f2\u0097\u00a8\u0006\"\u000535801\u0012\u0011\b%\u0012\u0006\u0010\u00d4\u00f2\u0097\u00a8\u0006\"\u000535802\u0012\u0011\b&\u0012\u0006\u0010\u0082\u00f3\u0097\u00a8\u0006\"\u000535803\u0012\u0011\b'\u0012\u0006\u0010\u00b9\u00f3\u0097\u00a8\u0006\"\u000538507\u0012\u0011\b(\u0012\u0006\u0010\u00ec\u00f3\u0097\u00a8\u0006\"\u000534473\u0012\u0011\b)\u0012\u0006\u0010\u0098\u00f4\u0097\u00a8\u0006\"\u000538500\u0012\u0011\b*\u0012\u0006\u0010\u00be\u00f4\u0097\u00a8\u0006\"\u000535808\u0012\u0011\b+\u0012\u0006\u0010\u0080\u00f5\u0097\u00a8\u0006\"\u000535710\u0012\u0011\b,\u0012\u0006\u0010\u00a4\u00f5\u0097\u00a8\u0006\"\u000550036\u0012\u0011\b-\u0012\u0006\u0010\u0095\u00f6\u0097\u00a8\u0006\"\u000535712\u0012\u0011\b.\u0012\u0006\u0010\u00f7\u00f6\u0097\u00a8\u0006\"\u000535713\u001a\b\u001a\u0006ZT3966 \u00d6\u00e7\u0097\u00a8\u0006\"`\n/\n\u001019555-701ff27f-2\u0012\b15:30:00\u001a\b20230916 \u0000*\u00035860\u0000\u0012\u001d\r\u00ccY\u0013\u00c2\u0015(<\u0092\u00c2\u001d\u0000\u0000\u00c2B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00d6\u00e7\u0097\u00a8\u0006B\b\u001a\u0006ZT3966" + }, + { + "type": "con_recorrido", + "entity": "\n$8f5183a0-a2ba-45a2-b66b-c166ac75eff4\u001a\u0084\u0003\n/\n\u001019626-701ff27f-2\u0012\b14:23:00\u001a\b20230916 \u0000*\u00035860\u0001\u0012\u0011\b\u001a\u0012\u0006\u0010\u00a4\u00e8\u0097\u00a8\u0006\"\u000591039\u0012\u0011\b\u001b\u0012\u0006\u0010\u00b9\u00e9\u0097\u00a8\u0006\"\u000535866\u0012\u0011\b\u001c\u0012\u0006\u0010\u00e1\u00e9\u0097\u00a8\u0006\"\u000591040\u0012\u0011\b\u001d\u0012\u0006\u0010\u008a\u00ea\u0097\u00a8\u0006\"\u000535867\u0012\u0011\b\u001e\u0012\u0006\u0010\u00a8\u00ea\u0097\u00a8\u0006\"\u000591066\u0012\u0011\b\u001f\u0012\u0006\u0010\u00da\u00ea\u0097\u00a8\u0006\"\u000535644\u0012\u0011\b \u0012\u0006\u0010\u0088\u00eb\u0097\u00a8\u0006\"\u000535868\u0012\u0011\b!\u0012\u0006\u0010\u00a0\u00eb\u0097\u00a8\u0006\"\u000535869\u0012\u0011\b\"\u0012\u0006\u0010\u00ba\u00eb\u0097\u00a8\u0006\"\u000535870\u0012\u0011\b#\u0012\u0006\u0010\u00dc\u00eb\u0097\u00a8\u0006\"\u000591045\u0012\u0011\b$\u0012\u0006\u0010\u00f7\u00eb\u0097\u00a8\u0006\"\u000591089\u0012\u0011\b%\u0012\u0006\u0010\u0094\u00ec\u0097\u00a8\u0006\"\u000535645\u0012\u0011\b&\u0012\u0006\u0010\u00c3\u00ec\u0097\u00a8\u0006\"\u000591090\u0012\u0011\b'\u0012\u0006\u0010\u00f5\u00ec\u0097\u00a8\u0006\"\u000591091\u0012\u0011\b(\u0012\u0006\u0010\u0097\u00ed\u0097\u00a8\u0006\"\u000591092\u0012\u0011\b)\u0012\u0006\u0010\u00bb\u00ed\u0097\u00a8\u0006\"\u000535875\u0012\u0011\b*\u0012\u0006\u0010\u00d4\u00ee\u0097\u00a8\u0006\"\u000591058\u001a\b\u001a\u0006ZT4052 \u00f8\u00e7\u0097\u00a8\u0006\"`\n/\n\u001019626-701ff27f-2\u0012\b14:23:00\u001a\b20230916 \u0000*\u00035860\u0001\u0012\u001d\rRa\u0013\u00c2\u0015\u00bfB\u0092\u00c2\u001d\u0000\u0000?C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f8\u00e7\u0097\u00a8\u0006B\b\u001a\u0006ZT4052" + }, + { + "type": "con_recorrido", + "entity": "\n$a42728e7-5283-452c-a193-9bf516b8a0a8\u001a\u008d\u0001\n/\n\u001019301-701ff27f-2\u0012\b13:01:00\u001a\b20230916 \u0000*\u00035870\u0001\u0012\u0011\b4\u0012\u0006\u0010\u0082\u00e5\u0097\u00a8\u0006\"\u000535645\u0012\u0011\b5\u0012\u0006\u0010\u00b7\u00e5\u0097\u00a8\u0006\"\u000535646\u0012\u0011\b6\u0012\u0006\u0010\u00dc\u00e5\u0097\u00a8\u0006\"\u000535647\u0012\u0011\b7\u0012\u0006\u0010\u00fb\u00e5\u0097\u00a8\u0006\"\u000535648\u001a\b\u001a\u0006FHZZ92 \u00d0\u00e4\u0097\u00a8\u0006\"`\n/\n\u001019301-701ff27f-2\u0012\b13:01:00\u001a\b20230916 \u0000*\u00035870\u0001\u0012\u001d\r\u00f6b\u0013\u00c2\u0015\u00baI\u0092\u00c2\u001d\u0000\u0000\u00caB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a4\u00e6\u0097\u00a8\u0006B\b\u001a\u0006FHZZ92" + }, + { + "type": "con_recorrido", + "entity": "\n$52d2c045-6fee-49cd-a14c-9d59b4b41b49\u001aT\n/\n\u001019302-701ff27f-2\u0012\b13:31:00\u001a\b20230916 \u0000*\u00035870\u0001\u0012\u0011\b7\u0012\u0006\u0010\u00c2\u00e6\u0097\u00a8\u0006\"\u000535648\u001a\b\u001a\u0006HYYX57 \u00bd\u00e6\u0097\u00a8\u0006\"`\n/\n\u001019302-701ff27f-2\u0012\b13:31:00\u001a\b20230916 \u0000*\u00035870\u0001\u0012\u001d\r\u001ea\u0013\u00c2\u0015\u00feI\u0092\u00c2\u001d\u0000\u0080\u00b1C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f7\u00e6\u0097\u00a8\u0006B\b\u001a\u0006HYYX57" + }, + { + "type": "con_recorrido", + "entity": "\n$ded46826-2669-46d9-8e3c-46ad99999eef\u001a\u0093\u0006\n/\n\u001019303-701ff27f-2\u0012\b14:01:00\u001a\b20230916 \u0000*\u00035870\u0001\u0012\u0011\b\u0012\u0012\u0006\u0010\u00e8\u00e7\u0097\u00a8\u0006\"\u000540272\u0012\u0011\b\u0013\u0012\u0006\u0010\u00f5\u00e8\u0097\u00a8\u0006\"\u000539545\u0012\u0011\b\u0014\u0012\u0006\u0010\u00aa\u00ec\u0097\u00a8\u0006\"\u000539541\u0012\u0011\b\u0015\u0012\u0006\u0010\u00c8\u00ec\u0097\u00a8\u0006\"\u000539542\u0012\u0011\b\u0016\u0012\u0006\u0010\u00eb\u00ec\u0097\u00a8\u0006\"\u000539543\u0012\u0011\b\u0017\u0012\u0006\u0010\u00a4\u00ee\u0097\u00a8\u0006\"\u000535749\u0012\u0011\b\u0018\u0012\u0006\u0010\u00d1\u00ee\u0097\u00a8\u0006\"\u000535750\u0012\u0011\b\u0019\u0012\u0006\u0010\u009c\u00ef\u0097\u00a8\u0006\"\u000535751\u0012\u0011\b\u001a\u0012\u0006\u0010\u008a\u00f0\u0097\u00a8\u0006\"\u000535752\u0012\u0011\b\u001b\u0012\u0006\u0010\u0091\u00f1\u0097\u00a8\u0006\"\u000535417\u0012\u0011\b\u001c\u0012\u0006\u0010\u00d8\u00f1\u0097\u00a8\u0006\"\u000535755\u0012\u0011\b\u001d\u0012\u0006\u0010\u00a9\u00f3\u0097\u00a8\u0006\"\u000535864\u0012\u0011\b\u001e\u0012\u0006\u0010\u008b\u00f4\u0097\u00a8\u0006\"\u000535865\u0012\u0011\b\u001f\u0012\u0006\u0010\u00bb\u00f4\u0097\u00a8\u0006\"\u000535233\u0012\u0011\b \u0012\u0006\u0010\u00d6\u00f5\u0097\u00a8\u0006\"\u000535234\u0012\u0011\b!\u0012\u0006\u0010\u00b6\u00f8\u0097\u00a8\u0006\"\u000535235\u0012\u0011\b\"\u0012\u0006\u0010\u00c4\u00f9\u0097\u00a8\u0006\"\u000535236\u0012\u0011\b#\u0012\u0006\u0010\u00a0\u00fb\u0097\u00a8\u0006\"\u000591096\u0012\u0011\b$\u0012\u0006\u0010\u00e8\u00fc\u0097\u00a8\u0006\"\u000591097\u0012\u0011\b%\u0012\u0006\u0010\u009a\u00fe\u0097\u00a8\u0006\"\u000591098\u0012\u0011\b&\u0012\u0006\u0010\u00f0\u00fe\u0097\u00a8\u0006\"\u000591099\u0012\u0011\b'\u0012\u0006\u0010\u009b\u00ff\u0097\u00a8\u0006\"\u000591100\u0012\u0011\b(\u0012\u0006\u0010\u00db\u00ff\u0097\u00a8\u0006\"\u000591101\u0012\u0011\b)\u0012\u0006\u0010\u008d\u0080\u0098\u00a8\u0006\"\u000591102\u0012\u0011\b*\u0012\u0006\u0010\u00d7\u0080\u0098\u00a8\u0006\"\u000591103\u0012\u0011\b+\u0012\u0006\u0010\u00d3\u0081\u0098\u00a8\u0006\"\u000591104\u0012\u0011\b,\u0012\u0006\u0010\u00d7\u0082\u0098\u00a8\u0006\"\u000591105\u0012\u0011\b-\u0012\u0006\u0010\u00c7\u0086\u0098\u00a8\u0006\"\u000591106\u0012\u0011\b.\u0012\u0006\u0010\u009c\u0087\u0098\u00a8\u0006\"\u000591107\u0012\u0011\b/\u0012\u0006\u0010\u00ec\u0087\u0098\u00a8\u0006\"\u000591108\u0012\u0011\b0\u0012\u0006\u0010\u00d8\u0088\u0098\u00a8\u0006\"\u000591109\u0012\u0011\b1\u0012\u0006\u0010\u00da\u008f\u0098\u00a8\u0006\"\u000591110\u0012\u0011\b2\u0012\u0006\u0010\u00b6\u0091\u0098\u00a8\u0006\"\u000591111\u0012\u0011\b3\u0012\u0006\u0010\u00da\u0092\u0098\u00a8\u0006\"\u000591112\u0012\u0011\b4\u0012\u0006\u0010\u0084\u0094\u0098\u00a8\u0006\"\u000535645\u0012\u0011\b5\u0012\u0006\u0010\u008e\u0095\u0098\u00a8\u0006\"\u000535646\u0012\u0011\b6\u0012\u0006\u0010\u00ef\u0095\u0098\u00a8\u0006\"\u000535647\u0012\u0011\b7\u0012\u0006\u0010\u00c6\u0096\u0098\u00a8\u0006\"\u000535648\u001a\b\u001a\u0006LHFC91 \u00b8\u00e7\u0097\u00a8\u0006\"`\n/\n\u001019303-701ff27f-2\u0012\b14:01:00\u001a\b20230916 \u0000*\u00035870\u0001\u0012\u001d\r\u008eP\u0013\u00c2\u0015B!\u0092\u00c2\u001d\u0000\u0000zC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u009a\u0099\u0081A(\u00b8\u00e7\u0097\u00a8\u0006B\b\u001a\u0006LHFC91" + }, + { + "type": "con_recorrido", + "entity": "\n$5cccf38a-2d11-4475-becc-28ce4afb3acd\u001a\u00f1\u0002\n/\n\u001019342-701ff27f-2\u0012\b14:28:00\u001a\b20230916 \u0000*\u00035870\u0000\u0012\u0011\b'\u0012\u0006\u0010\u00d1\u00e8\u0097\u00a8\u0006\"\u000535796\u0012\u0011\b(\u0012\u0006\u0010\u0085\u00e9\u0097\u00a8\u0006\"\u000535797\u0012\u0011\b)\u0012\u0006\u0010\u00b0\u00e9\u0097\u00a8\u0006\"\u000535798\u0012\u0011\b*\u0012\u0006\u0010\u00d8\u00e9\u0097\u00a8\u0006\"\u000535799\u0012\u0011\b+\u0012\u0006\u0010\u00a0\u00ea\u0097\u00a8\u0006\"\u000535800\u0012\u0011\b,\u0012\u0006\u0010\u00d2\u00ea\u0097\u00a8\u0006\"\u000535801\u0012\u0011\b-\u0012\u0006\u0010\u00ec\u00ea\u0097\u00a8\u0006\"\u000535802\u0012\u0011\b.\u0012\u0006\u0010\u009a\u00eb\u0097\u00a8\u0006\"\u000535803\u0012\u0011\b/\u0012\u0006\u0010\u00d3\u00eb\u0097\u00a8\u0006\"\u000538507\u0012\u0011\b0\u0012\u0006\u0010\u0086\u00ec\u0097\u00a8\u0006\"\u000534473\u0012\u0011\b1\u0012\u0006\u0010\u00b1\u00ec\u0097\u00a8\u0006\"\u000538500\u0012\u0011\b2\u0012\u0006\u0010\u00d6\u00ec\u0097\u00a8\u0006\"\u000535808\u0012\u0011\b3\u0012\u0006\u0010\u0098\u00ed\u0097\u00a8\u0006\"\u000535710\u0012\u0011\b4\u0012\u0006\u0010\u00c4\u00ed\u0097\u00a8\u0006\"\u000550036\u0012\u0011\b5\u0012\u0006\u0010\u00a2\u00ee\u0097\u00a8\u0006\"\u000535712\u0012\u0011\b6\u0012\u0006\u0010\u0080\u00ef\u0097\u00a8\u0006\"\u000535713\u001a\b\u001a\u0006YE2810 \u00f3\u00e7\u0097\u00a8\u0006\"`\n/\n\u001019342-701ff27f-2\u0012\b14:28:00\u001a\b20230916 \u0000*\u00035870\u0000\u0012\u001d\r\u0080P\u0013\u00c2\u0015\u00c4 \u0092\u00c2\u001d\u0000\u0000@B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00cd\u00cc\f@(\u00f3\u00e7\u0097\u00a8\u0006B\b\u001a\u0006YE2810" + }, + { + "type": "con_recorrido", + "entity": "\n$15c1d274-eb5a-4c3f-a910-504a076427b2\u001a\u00ae\u0007\n/\n\u001019343-701ff27f-2\u0012\b14:58:00\u001a\b20230916 \u0000*\u00035870\u0000\u0012\u0011\b\t\u0012\u0006\u0010\u008c\u00e8\u0097\u00a8\u0006\"\u000591003\u0012\u0011\b\n\u0012\u0006\u0010\u00c5\u00e9\u0097\u00a8\u0006\"\u000591004\u0012\u0011\b\u000b\u0012\u0006\u0010\u0095\u00ea\u0097\u00a8\u0006\"\u000591005\u0012\u0011\b\f\u0012\u0006\u0010\u00c5\u00ea\u0097\u00a8\u0006\"\u000591156\u0012\u0011\b\r\u0012\u0006\u0010\u00ef\u00ea\u0097\u00a8\u0006\"\u000591006\u0012\u0011\b\u000e\u0012\u0006\u0010\u0099\u00eb\u0097\u00a8\u0006\"\u000591157\u0012\u0011\b\u000f\u0012\u0006\u0010\u00d9\u00ec\u0097\u00a8\u0006\"\u000550005\u0012\u0011\b\u0010\u0012\u0006\u0010\u00ae\u00ed\u0097\u00a8\u0006\"\u000535259\u0012\u0011\b\u0011\u0012\u0006\u0010\u00b1\u00ee\u0097\u00a8\u0006\"\u000535268\u0012\u0011\b\u0012\u0012\u0006\u0010\u00d1\u00ee\u0097\u00a8\u0006\"\u000535269\u0012\u0011\b\u0013\u0012\u0006\u0010\u00ff\u00ee\u0097\u00a8\u0006\"\u000535270\u0012\u0011\b\u0014\u0012\u0006\u0010\u00a9\u00f0\u0097\u00a8\u0006\"\u000535271\u0012\u0011\b\u0015\u0012\u0006\u0010\u00de\u00f2\u0097\u00a8\u0006\"\u000535272\u0012\u0011\b\u0016\u0012\u0006\u0010\u008b\u00f4\u0097\u00a8\u0006\"\u000535273\u0012\u0011\b\u0017\u0012\u0006\u0010\u00b1\u00f4\u0097\u00a8\u0006\"\u000535274\u0012\u0011\b\u0018\u0012\u0006\u0010\u0094\u00f5\u0097\u00a8\u0006\"\u000535785\u0012\u0011\b\u0019\u0012\u0006\u0010\u0090\u00f7\u0097\u00a8\u0006\"\u000535786\u0012\u0011\b\u001a\u0012\u0006\u0010\u00d6\u00f7\u0097\u00a8\u0006\"\u000535787\u0012\u0011\b\u001b\u0012\u0006\u0010\u009a\u00f8\u0097\u00a8\u0006\"\u000535788\u0012\u0011\b\u001c\u0012\u0006\u0010\u0087\u00f9\u0097\u00a8\u0006\"\u000535789\u0012\u0011\b\u001d\u0012\u0006\u0010\u00b8\u00f9\u0097\u00a8\u0006\"\u000535790\u0012\u0011\b\u001e\u0012\u0006\u0010\u0094\u00fa\u0097\u00a8\u0006\"\u000535791\u0012\u0011\b\u001f\u0012\u0006\u0010\u00c9\u00fa\u0097\u00a8\u0006\"\u000535792\u0012\u0011\b \u0012\u0006\u0010\u008b\u00fb\u0097\u00a8\u0006\"\u000535793\u0012\u0011\b!\u0012\u0006\u0010\u00dc\u00fb\u0097\u00a8\u0006\"\u000539973\u0012\u0011\b\"\u0012\u0006\u0010\u00e6\u00fc\u0097\u00a8\u0006\"\u000539974\u0012\u0011\b#\u0012\u0006\u0010\u0094\u00fd\u0097\u00a8\u0006\"\u000539975\u0012\u0011\b$\u0012\u0006\u0010\u00f1\u0082\u0098\u00a8\u0006\"\u000535225\u0012\u0014\b%\u0012\u0006\u0010\u00f0\u0083\u0098\u00a8\u0006\"\b16039072\u0012\u0011\b&\u0012\u0006\u0010\u008f\u0084\u0098\u00a8\u0006\"\u000535794\u0012\u0011\b'\u0012\u0006\u0010\u00a5\u0085\u0098\u00a8\u0006\"\u000535796\u0012\u0011\b(\u0012\u0006\u0010\u00f6\u0085\u0098\u00a8\u0006\"\u000535797\u0012\u0011\b)\u0012\u0006\u0010\u00bb\u0086\u0098\u00a8\u0006\"\u000535798\u0012\u0011\b*\u0012\u0006\u0010\u00fe\u0086\u0098\u00a8\u0006\"\u000535799\u0012\u0011\b+\u0012\u0006\u0010\u00f8\u0087\u0098\u00a8\u0006\"\u000535800\u0012\u0011\b,\u0012\u0006\u0010\u00d1\u0088\u0098\u00a8\u0006\"\u000535801\u0012\u0011\b-\u0012\u0006\u0010\u0080\u0089\u0098\u00a8\u0006\"\u000535802\u0012\u0011\b.\u0012\u0006\u0010\u00d7\u0089\u0098\u00a8\u0006\"\u000535803\u0012\u0011\b/\u0012\u0006\u0010\u00c4\u008a\u0098\u00a8\u0006\"\u000538507\u0012\u0011\b0\u0012\u0006\u0010\u00a8\u008b\u0098\u00a8\u0006\"\u000534473\u0012\u0011\b1\u0012\u0006\u0010\u0082\u008c\u0098\u00a8\u0006\"\u000538500\u0012\u0011\b2\u0012\u0006\u0010\u00d0\u008c\u0098\u00a8\u0006\"\u000535808\u0012\u0011\b3\u0012\u0006\u0010\u00dd\u008d\u0098\u00a8\u0006\"\u000535710\u0012\u0011\b4\u0012\u0006\u0010\u00c0\u008e\u0098\u00a8\u0006\"\u000550036\u0012\u0011\b5\u0012\u0006\u0010\u009d\u0090\u0098\u00a8\u0006\"\u000535712\u0012\u0011\b6\u0012\u0006\u0010\u008a\u0092\u0098\u00a8\u0006\"\u000535713\u001a\b\u001a\u0006YX6703 \u00de\u00e7\u0097\u00a8\u0006\"`\n/\n\u001019343-701ff27f-2\u0012\b14:58:00\u001a\b20230916 \u0000*\u00035870\u0000\u0012\u001d\r\u00d5\u0096\u0013\u00c2\u0015\u00cdL\u0092\u00c2\u001d\u0000\u00006C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00cd\u00cc\u0010B(\u00de\u00e7\u0097\u00a8\u0006B\b\u001a\u0006YX6703" + }, + { + "type": "con_recorrido", + "entity": "\n$fd8c0ad2-0497-4c4f-b3e4-8edbbcd513ea\u001a\u00f1\u0005\n/\n\u001019742-701ff27f-2\u0012\b15:16:00\u001a\b20230916 \u0000*\u00035880\u0000\u0012\u0011\b\u0014\u0012\u0006\u0010\u0082\u00e8\u0097\u00a8\u0006\"\u000544635\u0012\u0013\b\u0015\u0012\u0006\u0010\u00bf\u00e8\u0097\u00a8\u0006\"\u00075020123\u0012\u0013\b\u0016\u0012\u0006\u0010\u00fa\u00e8\u0097\u00a8\u0006\"\u00075020122\u0012\u0011\b\u0017\u0012\u0006\u0010\u00c6\u00e9\u0097\u00a8\u0006\"\u000544642\u0012\u0011\b\u0018\u0012\u0006\u0010\u00f3\u00e9\u0097\u00a8\u0006\"\u000544643\u0012\u0011\b\u0019\u0012\u0006\u0010\u009b\u00ea\u0097\u00a8\u0006\"\u000544644\u0012\u0011\b\u001a\u0012\u0006\u0010\u00f9\u00ea\u0097\u00a8\u0006\"\u000591116\u0012\u0011\b\u001b\u0012\u0006\u0010\u00c8\u00ee\u0097\u00a8\u0006\"\u000535794\u0012\u0011\b\u001c\u0012\u0006\u0010\u00a2\u00ef\u0097\u00a8\u0006\"\u000535796\u0012\u0011\b\u001d\u0012\u0006\u0010\u00d2\u00ef\u0097\u00a8\u0006\"\u000535797\u0012\u0011\b\u001e\u0012\u0006\u0010\u00f9\u00ef\u0097\u00a8\u0006\"\u000535798\u0012\u0011\b\u001f\u0012\u0006\u0010\u009f\u00f0\u0097\u00a8\u0006\"\u000535799\u0012\u0011\b \u0012\u0006\u0010\u00e2\u00f0\u0097\u00a8\u0006\"\u000535800\u0012\u0011\b!\u0012\u0006\u0010\u0092\u00f1\u0097\u00a8\u0006\"\u000535801\u0012\u0011\b\"\u0012\u0006\u0010\u00ab\u00f1\u0097\u00a8\u0006\"\u000535802\u0012\u0011\b#\u0012\u0006\u0010\u00da\u00f1\u0097\u00a8\u0006\"\u000535803\u0012\u0011\b$\u0012\u0006\u0010\u0090\u00f2\u0097\u00a8\u0006\"\u000538507\u0012\u0011\b%\u0012\u0006\u0010\u00c1\u00f2\u0097\u00a8\u0006\"\u000534473\u0012\u0011\b&\u0012\u0006\u0010\u00ec\u00f2\u0097\u00a8\u0006\"\u000538500\u0012\u0011\b'\u0012\u0006\u0010\u009a\u00f3\u0097\u00a8\u0006\"\u000535808\u0012\u0011\b(\u0012\u0006\u0010\u00ee\u00f3\u0097\u00a8\u0006\"\u000535814\u0012\u0011\b)\u0012\u0006\u0010\u00b2\u00f4\u0097\u00a8\u0006\"\u000535815\u0012\u0011\b*\u0012\u0006\u0010\u00d4\u00f4\u0097\u00a8\u0006\"\u000535816\u0012\u0011\b+\u0012\u0006\u0010\u00e0\u00f4\u0097\u00a8\u0006\"\u000535817\u0012\u0011\b,\u0012\u0006\u0010\u0083\u00f5\u0097\u00a8\u0006\"\u000535818\u0012\u0011\b-\u0012\u0006\u0010\u00aa\u00f5\u0097\u00a8\u0006\"\u000535819\u0012\u0011\b.\u0012\u0006\u0010\u00ea\u00f5\u0097\u00a8\u0006\"\u000549417\u0012\u0011\b/\u0012\u0006\u0010\u00b8\u00f6\u0097\u00a8\u0006\"\u000549421\u0012\u0011\b0\u0012\u0006\u0010\u00d5\u00f6\u0097\u00a8\u0006\"\u000549422\u0012\u0011\b1\u0012\u0006\u0010\u00a8\u00f7\u0097\u00a8\u0006\"\u000549539\u0012\u0011\b2\u0012\u0006\u0010\u00e2\u00f7\u0097\u00a8\u0006\"\u000544677\u0012\u0011\b3\u0012\u0006\u0010\u00ef\u00f7\u0097\u00a8\u0006\"\u000544671\u0012\u0011\b4\u0012\u0006\u0010\u00d1\u00f8\u0097\u00a8\u0006\"\u000544674\u0012\u0011\b5\u0012\u0006\u0010\u00eb\u00f8\u0097\u00a8\u0006\"\u000544675\u0012\u0011\b6\u0012\u0006\u0010\u0081\u00f9\u0097\u00a8\u0006\"\u000544776\u0012\u0011\b7\u0012\u0006\u0010\u009a\u00f9\u0097\u00a8\u0006\"\u000544676\u001a\b\u001a\u0006FHDP34 \u00fc\u00e7\u0097\u00a8\u0006\"`\n/\n\u001019742-701ff27f-2\u0012\b15:16:00\u001a\b20230916 \u0000*\u00035880\u0000\u0012\u001d\r\u0007_\u0013\u00c2\u0015\u00905\u0092\u00c2\u001d\u0000\u0000\u00f4B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-33\u0013A(\u00fc\u00e7\u0097\u00a8\u0006B\b\u001a\u0006FHDP34" + }, + { + "type": "con_recorrido", + "entity": "\n$c7652364-df72-43a0-98a8-a0c044f6c096\u001a\u00a0\u0001\n/\n\u001019852-701ff27f-2\u0012\b13:49:00\u001a\b20230916 \u0000*\u00035880\u0001\u0012\u0011\b1\u0012\u0006\u0010\u00b3\u00e6\u0097\u00a8\u0006\"\u000535666\u0012\u0011\b2\u0012\u0006\u0010\u00df\u00e6\u0097\u00a8\u0006\"\u000535667\u0012\u0011\b3\u0012\u0006\u0010\u00b2\u00e7\u0097\u00a8\u0006\"\u000535669\u0012\u0011\b4\u0012\u0006\u0010\u00ac\u00e8\u0097\u00a8\u0006\"\u000535854\u0012\u0011\b5\u0012\u0006\u0010\u00d5\u00e8\u0097\u00a8\u0006\"\u000535430\u001a\b\u001a\u0006FXJS41 \u00aa\u00e6\u0097\u00a8\u0006\"`\n/\n\u001019852-701ff27f-2\u0012\b13:49:00\u001a\b20230916 \u0000*\u00035880\u0001\u0012\u001d\rYO\u0013\u00c2\u0015Y>\u0092\u00c2\u001d\u0000\u0080\u0093C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-33\u009bA(\u00b0\u00e7\u0097\u00a8\u0006B\b\u001a\u0006FXJS41" + }, + { + "type": "con_recorrido", + "entity": "\n$9a00609b-636c-47d9-8226-fb7611cc0419\u001a\u00d9\u0001\n/\n\u001019853-701ff27f-2\u0012\b14:01:00\u001a\b20230916 \u0000*\u00035880\u0001\u0012\u0011\b.\u0012\u0006\u0010\u00d9\u00e7\u0097\u00a8\u0006\"\u000535418\u0012\u0011\b/\u0012\u0006\u0010\u00ed\u00e7\u0097\u00a8\u0006\"\u000535664\u0012\u0011\b0\u0012\u0006\u0010\u0091\u00e8\u0097\u00a8\u0006\"\u000591051\u0012\u0011\b1\u0012\u0006\u0010\u00b4\u00e8\u0097\u00a8\u0006\"\u000535666\u0012\u0011\b2\u0012\u0006\u0010\u00df\u00e8\u0097\u00a8\u0006\"\u000535667\u0012\u0011\b3\u0012\u0006\u0010\u00b0\u00e9\u0097\u00a8\u0006\"\u000535669\u0012\u0011\b4\u0012\u0006\u0010\u00a9\u00ea\u0097\u00a8\u0006\"\u000535854\u0012\u0011\b5\u0012\u0006\u0010\u00d2\u00ea\u0097\u00a8\u0006\"\u000535430\u001a\b\u001a\u0006FXZY58 \u00d0\u00e7\u0097\u00a8\u0006\"`\n/\n\u001019853-701ff27f-2\u0012\b14:01:00\u001a\b20230916 \u0000*\u00035880\u0001\u0012\u001d\r\u0094Y\u0013\u00c2\u0015a<\u0092\u00c2\u001d\u0000\u0000\u0088C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00d0\u00e7\u0097\u00a8\u0006B\b\u001a\u0006FXZY58" + }, + { + "type": "con_recorrido", + "entity": "\n$9a42a77e-ba42-4810-86d7-f2468e089d05\u001a\u00af\u0004\n/\n\u001019854-701ff27f-2\u0012\b14:13:00\u001a\b20230916 \u0000*\u00035880\u0001\u0012\u0011\b\u001c\u0012\u0006\u0010\u0092\u00e8\u0097\u00a8\u0006\"\u000535223\u0012\u0011\b\u001d\u0012\u0006\u0010\u00bb\u00e8\u0097\u00a8\u0006\"\u000539547\u0012\u0011\b\u001e\u0012\u0006\u0010\u0093\u00e9\u0097\u00a8\u0006\"\u000535224\u0012\u0011\b\u001f\u0012\u0006\u0010\u00cc\u00ea\u0097\u00a8\u0006\"\u000535225\u0012\u0011\b \u0012\u0006\u0010\u0094\u00ef\u0097\u00a8\u0006\"\u000535409\u0012\u0011\b!\u0012\u0006\u0010\u00b7\u00ef\u0097\u00a8\u0006\"\u000535411\u0012\u0011\b\"\u0012\u0006\u0010\u00d8\u00ef\u0097\u00a8\u0006\"\u000535412\u0012\u0011\b#\u0012\u0006\u0010\u00c2\u00f0\u0097\u00a8\u0006\"\u000544716\u0012\u0011\b$\u0012\u0006\u0010\u00e7\u00f0\u0097\u00a8\u0006\"\u000544717\u0012\u0011\b%\u0012\u0006\u0010\u00ad\u00f1\u0097\u00a8\u0006\"\u000544718\u0012\u0011\b&\u0012\u0006\u0010\u00c9\u00f1\u0097\u00a8\u0006\"\u000590010\u0012\u0011\b'\u0012\u0006\u0010\u00dd\u00f2\u0097\u00a8\u0006\"\u000544722\u0012\u0011\b(\u0012\u0006\u0010\u0080\u00f3\u0097\u00a8\u0006\"\u000544723\u0012\u0011\b)\u0012\u0006\u0010\u00b1\u00f3\u0097\u00a8\u0006\"\u000544724\u0012\u0011\b*\u0012\u0006\u0010\u00d4\u00f3\u0097\u00a8\u0006\"\u000544725\u0012\u0011\b+\u0012\u0006\u0010\u00f7\u00f3\u0097\u00a8\u0006\"\u000544726\u0012\u0011\b,\u0012\u0006\u0010\u00c2\u00f4\u0097\u00a8\u0006\"\u000544727\u0012\u0011\b-\u0012\u0006\u0010\u00e5\u00f4\u0097\u00a8\u0006\"\u000535417\u0012\u0011\b.\u0012\u0006\u0010\u00a2\u00f5\u0097\u00a8\u0006\"\u000535418\u0012\u0011\b/\u0012\u0006\u0010\u00b4\u00f5\u0097\u00a8\u0006\"\u000535664\u0012\u0011\b0\u0012\u0006\u0010\u00d8\u00f5\u0097\u00a8\u0006\"\u000591051\u0012\u0011\b1\u0012\u0006\u0010\u00f9\u00f5\u0097\u00a8\u0006\"\u000535666\u0012\u0011\b2\u0012\u0006\u0010\u00a4\u00f6\u0097\u00a8\u0006\"\u000535667\u0012\u0011\b3\u0012\u0006\u0010\u00f6\u00f6\u0097\u00a8\u0006\"\u000535669\u0012\u0011\b4\u0012\u0006\u0010\u00f3\u00f7\u0097\u00a8\u0006\"\u000535854\u0012\u0011\b5\u0012\u0006\u0010\u009e\u00f8\u0097\u00a8\u0006\"\u000535430\u001a\b\u001a\u0006GZSS52 \u00dd\u00e7\u0097\u00a8\u0006\"`\n/\n\u001019854-701ff27f-2\u0012\b14:13:00\u001a\b20230916 \u0000*\u00035880\u0001\u0012\u001d\r\u00f7R\u0013\u00c2\u0015\u00e4\u001c\u0092\u00c2\u001d\u0000\u0000\u0017C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00cd\u00cc,A(\u00dd\u00e7\u0097\u00a8\u0006B\b\u001a\u0006GZSS52" + }, + { + "type": "con_recorrido", + "entity": "\n$341f5276-49ff-4190-972e-9764e23c2439\u001a\u00af\u0007\n/\n\u001019743-701ff27f-2\u0012\b15:24:00\u001a\b20230916 \u0000*\u00035880\u0000\u0012\u0011\b\n\u0012\u0006\u0010\u008b\u00e8\u0097\u00a8\u0006\"\u000535858\u0012\u0011\b\u000b\u0012\u0006\u0010\u00bd\u00e8\u0097\u00a8\u0006\"\u000535859\u0012\u0011\b\f\u0012\u0006\u0010\u00d4\u00e8\u0097\u00a8\u0006\"\u000535665\u0012\u0011\b\r\u0012\u0006\u0010\u00f5\u00e8\u0097\u00a8\u0006\"\u000535861\u0012\u0011\b\u000e\u0012\u0006\u0010\u00d1\u00e9\u0097\u00a8\u0006\"\u000591119\u0012\u0011\b\u000f\u0012\u0006\u0010\u00e0\u00e9\u0097\u00a8\u0006\"\u000544629\u0012\u0011\b\u0010\u0012\u0006\u0010\u00a9\u00ea\u0097\u00a8\u0006\"\u000591007\u0012\u0011\b\u0011\u0012\u0006\u0010\u00bd\u00ea\u0097\u00a8\u0006\"\u000544630\u0012\u0011\b\u0012\u0012\u0006\u0010\u00dd\u00ea\u0097\u00a8\u0006\"\u000544631\u0012\u0011\b\u0013\u0012\u0006\u0010\u00a9\u00eb\u0097\u00a8\u0006\"\u000544633\u0012\u0011\b\u0014\u0012\u0006\u0010\u00ef\u00eb\u0097\u00a8\u0006\"\u000544635\u0012\u0013\b\u0015\u0012\u0006\u0010\u00a7\u00ec\u0097\u00a8\u0006\"\u00075020123\u0012\u0013\b\u0016\u0012\u0006\u0010\u00df\u00ec\u0097\u00a8\u0006\"\u00075020122\u0012\u0011\b\u0017\u0012\u0006\u0010\u00a7\u00ed\u0097\u00a8\u0006\"\u000544642\u0012\u0011\b\u0018\u0012\u0006\u0010\u00d1\u00ed\u0097\u00a8\u0006\"\u000544643\u0012\u0011\b\u0019\u0012\u0006\u0010\u00f7\u00ed\u0097\u00a8\u0006\"\u000544644\u0012\u0011\b\u001a\u0012\u0006\u0010\u00d1\u00ee\u0097\u00a8\u0006\"\u000591116\u0012\u0011\b\u001b\u0012\u0006\u0010\u0098\u00f2\u0097\u00a8\u0006\"\u000535794\u0012\u0011\b\u001c\u0012\u0006\u0010\u00f4\u00f2\u0097\u00a8\u0006\"\u000535796\u0012\u0011\b\u001d\u0012\u0006\u0010\u00a4\u00f3\u0097\u00a8\u0006\"\u000535797\u0012\u0011\b\u001e\u0012\u0006\u0010\u00cc\u00f3\u0097\u00a8\u0006\"\u000535798\u0012\u0011\b\u001f\u0012\u0006\u0010\u00f3\u00f3\u0097\u00a8\u0006\"\u000535799\u0012\u0011\b \u0012\u0006\u0010\u00b8\u00f4\u0097\u00a8\u0006\"\u000535800\u0012\u0011\b!\u0012\u0006\u0010\u00ea\u00f4\u0097\u00a8\u0006\"\u000535801\u0012\u0011\b\"\u0012\u0006\u0010\u0084\u00f5\u0097\u00a8\u0006\"\u000535802\u0012\u0011\b#\u0012\u0006\u0010\u00b4\u00f5\u0097\u00a8\u0006\"\u000535803\u0012\u0011\b$\u0012\u0006\u0010\u00ed\u00f5\u0097\u00a8\u0006\"\u000538507\u0012\u0011\b%\u0012\u0006\u0010\u00a1\u00f6\u0097\u00a8\u0006\"\u000534473\u0012\u0011\b&\u0012\u0006\u0010\u00ce\u00f6\u0097\u00a8\u0006\"\u000538500\u0012\u0011\b'\u0012\u0006\u0010\u00fe\u00f6\u0097\u00a8\u0006\"\u000535808\u0012\u0011\b(\u0012\u0006\u0010\u00d8\u00f7\u0097\u00a8\u0006\"\u000535814\u0012\u0011\b)\u0012\u0006\u0010\u00a1\u00f8\u0097\u00a8\u0006\"\u000535815\u0012\u0011\b*\u0012\u0006\u0010\u00c5\u00f8\u0097\u00a8\u0006\"\u000535816\u0012\u0011\b+\u0012\u0006\u0010\u00d3\u00f8\u0097\u00a8\u0006\"\u000535817\u0012\u0011\b,\u0012\u0006\u0010\u00f8\u00f8\u0097\u00a8\u0006\"\u000535818\u0012\u0011\b-\u0012\u0006\u0010\u00a3\u00f9\u0097\u00a8\u0006\"\u000535819\u0012\u0011\b.\u0012\u0006\u0010\u00e8\u00f9\u0097\u00a8\u0006\"\u000549417\u0012\u0011\b/\u0012\u0006\u0010\u00bd\u00fa\u0097\u00a8\u0006\"\u000549421\u0012\u0011\b0\u0012\u0006\u0010\u00de\u00fa\u0097\u00a8\u0006\"\u000549422\u0012\u0011\b1\u0012\u0006\u0010\u00b9\u00fb\u0097\u00a8\u0006\"\u000549539\u0012\u0011\b2\u0012\u0006\u0010\u00f9\u00fb\u0097\u00a8\u0006\"\u000544677\u0012\u0011\b3\u0012\u0006\u0010\u0088\u00fc\u0097\u00a8\u0006\"\u000544671\u0012\u0011\b4\u0012\u0006\u0010\u00f5\u00fc\u0097\u00a8\u0006\"\u000544674\u0012\u0011\b5\u0012\u0006\u0010\u0092\u00fd\u0097\u00a8\u0006\"\u000544675\u0012\u0011\b6\u0012\u0006\u0010\u00ab\u00fd\u0097\u00a8\u0006\"\u000544776\u0012\u0011\b7\u0012\u0006\u0010\u00c7\u00fd\u0097\u00a8\u0006\"\u000544676\u001a\b\u001a\u0006HYCZ17 \u0089\u00e8\u0097\u00a8\u0006\"`\n/\n\u001019743-701ff27f-2\u0012\b15:24:00\u001a\b20230916 \u0000*\u00035880\u0000\u0012\u001d\r\u00a7S\u0013\u00c2\u0015\u00c0=\u0092\u00c2\u001d\u0000\u0000-C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u009a\u0099\u0085A(\u0089\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HYCZ17" + }, + { + "type": "con_recorrido", + "entity": "\n$a2acb4f3-a9ae-4c16-b8c3-5360758a5cf6\u001a\u0080\u0006\n/\n\u001019856-701ff27f-2\u0012\b14:37:00\u001a\b20230916 \u0000*\u00035880\u0001\u0012\u0011\b\u0011\u0012\u0006\u0010\u0090\u00e8\u0097\u00a8\u0006\"\u00051-Mar\u0012\u0011\b\u0012\u0012\u0006\u0010\u00b3\u00e8\u0097\u00a8\u0006\"\u000537465\u0012\u0011\b\u0013\u0012\u0006\u0010\u009b\u00e9\u0097\u00a8\u0006\"\u000539599\u0012\u0011\b\u0014\u0012\u0006\u0010\u00b3\u00e9\u0097\u00a8\u0006\"\u000539600\u0012\u0011\b\u0015\u0012\u0006\u0010\u00f8\u00e9\u0097\u00a8\u0006\"\u000537496\u0012\u0011\b\u0016\u0012\u0006\u0010\u00aa\u00ea\u0097\u00a8\u0006\"\u000545064\u0012\u0011\b\u0017\u0012\u0006\u0010\u00f5\u00ea\u0097\u00a8\u0006\"\u000537506\u0012\u0011\b\u0018\u0012\u0006\u0010\u00d5\u00eb\u0097\u00a8\u0006\"\u000537520\u0012\u0011\b\u0019\u0012\u0006\u0010\u00c0\u00ec\u0097\u00a8\u0006\"\u000537470\u0012\u0011\b\u001a\u0012\u0006\u0010\u00d8\u00ec\u0097\u00a8\u0006\"\u000537477\u0012\u0011\b\u001b\u0012\u0006\u0010\u00f5\u00ec\u0097\u00a8\u0006\"\u000591118\u0012\u0011\b\u001c\u0012\u0006\u0010\u00b2\u00ed\u0097\u00a8\u0006\"\u000535223\u0012\u0011\b\u001d\u0012\u0006\u0010\u00d8\u00ed\u0097\u00a8\u0006\"\u000539547\u0012\u0011\b\u001e\u0012\u0006\u0010\u00a9\u00ee\u0097\u00a8\u0006\"\u000535224\u0012\u0011\b\u001f\u0012\u0006\u0010\u00d8\u00ef\u0097\u00a8\u0006\"\u000535225\u0012\u0011\b \u0012\u0006\u0010\u009d\u00f4\u0097\u00a8\u0006\"\u000535409\u0012\u0011\b!\u0012\u0006\u0010\u00c2\u00f4\u0097\u00a8\u0006\"\u000535411\u0012\u0011\b\"\u0012\u0006\u0010\u00e4\u00f4\u0097\u00a8\u0006\"\u000535412\u0012\u0011\b#\u0012\u0006\u0010\u00d3\u00f5\u0097\u00a8\u0006\"\u000544716\u0012\u0011\b$\u0012\u0006\u0010\u00fa\u00f5\u0097\u00a8\u0006\"\u000544717\u0012\u0011\b%\u0012\u0006\u0010\u00c5\u00f6\u0097\u00a8\u0006\"\u000544718\u0012\u0011\b&\u0012\u0006\u0010\u00e3\u00f6\u0097\u00a8\u0006\"\u000590010\u0012\u0011\b'\u0012\u0006\u0010\u0083\u00f8\u0097\u00a8\u0006\"\u000544722\u0012\u0011\b(\u0012\u0006\u0010\u00a9\u00f8\u0097\u00a8\u0006\"\u000544723\u0012\u0011\b)\u0012\u0006\u0010\u00df\u00f8\u0097\u00a8\u0006\"\u000544724\u0012\u0011\b*\u0012\u0006\u0010\u0086\u00f9\u0097\u00a8\u0006\"\u000544725\u0012\u0011\b+\u0012\u0006\u0010\u00ac\u00f9\u0097\u00a8\u0006\"\u000544726\u0012\u0011\b,\u0012\u0006\u0010\u0080\u00fa\u0097\u00a8\u0006\"\u000544727\u0012\u0011\b-\u0012\u0006\u0010\u00a7\u00fa\u0097\u00a8\u0006\"\u000535417\u0012\u0011\b.\u0012\u0006\u0010\u00ec\u00fa\u0097\u00a8\u0006\"\u000535418\u0012\u0011\b/\u0012\u0006\u0010\u0082\u00fb\u0097\u00a8\u0006\"\u000535664\u0012\u0011\b0\u0012\u0006\u0010\u00aa\u00fb\u0097\u00a8\u0006\"\u000591051\u0012\u0011\b1\u0012\u0006\u0010\u00d0\u00fb\u0097\u00a8\u0006\"\u000535666\u0012\u0011\b2\u0012\u0006\u0010\u0081\u00fc\u0097\u00a8\u0006\"\u000535667\u0012\u0011\b3\u0012\u0006\u0010\u00df\u00fc\u0097\u00a8\u0006\"\u000535669\u0012\u0011\b4\u0012\u0006\u0010\u00f2\u00fd\u0097\u00a8\u0006\"\u000535854\u0012\u0011\b5\u0012\u0006\u0010\u00a5\u00fe\u0097\u00a8\u0006\"\u000535430\u001a\b\u001a\u0006LGKJ84 \u00f2\u00e7\u0097\u00a8\u0006\"`\n/\n\u001019856-701ff27f-2\u0012\b14:37:00\u001a\b20230916 \u0000*\u00035880\u0001\u0012\u001d\r\u009dC\u0013\u00c2\u0015\u00c1\u0011\u0092\u00c2\u001d\u0000\u0000tC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-ff>A(\u00f2\u00e7\u0097\u00a8\u0006B\b\u001a\u0006LGKJ84" + }, + { + "type": "con_recorrido", + "entity": "\n$fd64ecfe-42b1-4211-826d-6836193f077c\u001a\u00eb\u0007\n/\n\u001020093-701ff27f-2\u0012\b14:25:00\u001a\b20230916 \u0000*\u00035890\u0001\u0012\u0011\b\u0004\u0012\u0006\u0010\u00fb\u00e7\u0097\u00a8\u0006\"\u000549433\u0012\u0011\b\u0005\u0012\u0006\u0010\u0091\u00e8\u0097\u00a8\u0006\"\u000549434\u0012\u0011\b\u0006\u0012\u0006\u0010\u00bb\u00e8\u0097\u00a8\u0006\"\u000549419\u0012\u0011\b\u0007\u0012\u0006\u0010\u00d7\u00e8\u0097\u00a8\u0006\"\u000549418\u0012\u0011\b\b\u0012\u0006\u0010\u00eb\u00e8\u0097\u00a8\u0006\"\u000549417\u0012\u0011\b\t\u0012\u0006\u0010\u0088\u00e9\u0097\u00a8\u0006\"\u000535820\u0012\u0011\b\n\u0012\u0006\u0010\u00a5\u00e9\u0097\u00a8\u0006\"\u000535729\u0012\u0011\b\u000b\u0012\u0006\u0010\u00be\u00e9\u0097\u00a8\u0006\"\u000535730\u0012\u0011\b\f\u0012\u0006\u0010\u00de\u00e9\u0097\u00a8\u0006\"\u000535731\u0012\u0011\b\r\u0012\u0006\u0010\u00a0\u00ea\u0097\u00a8\u0006\"\u000535201\u0012\u0011\b\u000e\u0012\u0006\u0010\u00fb\u00ea\u0097\u00a8\u0006\"\u000535202\u0012\u0011\b\u000f\u0012\u0006\u0010\u0099\u00eb\u0097\u00a8\u0006\"\u000535203\u0012\u0011\b\u0010\u0012\u0006\u0010\u00db\u00eb\u0097\u00a8\u0006\"\u00051-Feb\u0012\u0011\b\u0011\u0012\u0006\u0010\u0088\u00ec\u0097\u00a8\u0006\"\u00051-Mar\u0012\u0013\b\u0012\u0012\u0006\u0010\u009c\u00ec\u0097\u00a8\u0006\"\u00078276831\u0012\u0011\b\u0013\u0012\u0006\u0010\u00b7\u00ec\u0097\u00a8\u0006\"\u00051-Apr\u0012\u0011\b\u0014\u0012\u0006\u0010\u00e8\u00ec\u0097\u00a8\u0006\"\u00051-May\u0012\u0011\b\u0015\u0012\u0006\u0010\u008f\u00ed\u0097\u00a8\u0006\"\u00051-Jun\u0012\u0011\b\u0016\u0012\u0006\u0010\u00c8\u00ed\u0097\u00a8\u0006\"\u00051-Jul\u0012\u0011\b\u0017\u0012\u0006\u0010\u00e8\u00ed\u0097\u00a8\u0006\"\u00051-Aug\u0012\u0011\b\u0018\u0012\u0006\u0010\u0097\u00ee\u0097\u00a8\u0006\"\u00051-Sep\u0012\u0011\b\u0019\u0012\u0006\u0010\u00ca\u00ee\u0097\u00a8\u0006\"\u00051-Oct\u0012\u0011\b\u001a\u0012\u0006\u0010\u00fb\u00ee\u0097\u00a8\u0006\"\u00051-Nov\u0012\u0011\b\u001b\u0012\u0006\u0010\u00b0\u00ef\u0097\u00a8\u0006\"\u000535745\u0012\u0014\b\u001c\u0012\u0006\u0010\u00c9\u00ef\u0097\u00a8\u0006\"\b15879953\u0012\u0011\b\u001d\u0012\u0006\u0010\u00de\u00ef\u0097\u00a8\u0006\"\u000535746\u0012\u0011\b\u001e\u0012\u0006\u0010\u00b7\u00f4\u0097\u00a8\u0006\"\u000535409\u0012\u0011\b\u001f\u0012\u0006\u0010\u00e0\u00f4\u0097\u00a8\u0006\"\u000535411\u0012\u0011\b \u0012\u0006\u0010\u0087\u00f5\u0097\u00a8\u0006\"\u000535412\u0012\u0013\b!\u0012\u0006\u0010\u00a5\u00f6\u0097\u00a8\u0006\"\u00075020101\u0012\u0011\b\"\u0012\u0006\u0010\u00e5\u00f6\u0097\u00a8\u0006\"\u000544722\u0012\u0011\b#\u0012\u0006\u0010\u0090\u00f7\u0097\u00a8\u0006\"\u000544723\u0012\u0011\b$\u0012\u0006\u0010\u00be\u00f7\u0097\u00a8\u0006\"\u000544724\u0012\u0011\b%\u0012\u0006\u0010\u00ec\u00f7\u0097\u00a8\u0006\"\u000544725\u0012\u0011\b&\u0012\u0006\u0010\u0090\u00f8\u0097\u00a8\u0006\"\u000544726\u0012\u0011\b'\u0012\u0006\u0010\u00e2\u00f8\u0097\u00a8\u0006\"\u000544727\u0012\u0011\b(\u0012\u0006\u0010\u00cb\u00f9\u0097\u00a8\u0006\"\u000535418\u0012\u0011\b)\u0012\u0006\u0010\u00df\u00f9\u0097\u00a8\u0006\"\u000535664\u0012\u0011\b*\u0012\u0006\u0010\u0086\u00fa\u0097\u00a8\u0006\"\u000591051\u0012\u0011\b+\u0012\u0006\u0010\u00ab\u00fa\u0097\u00a8\u0006\"\u000535666\u0012\u0011\b,\u0012\u0006\u0010\u00da\u00fa\u0097\u00a8\u0006\"\u000535667\u0012\u0011\b-\u0012\u0006\u0010\u00fd\u00fa\u0097\u00a8\u0006\"\u000535668\u0012\u0011\b.\u0012\u0006\u0010\u009b\u00fb\u0097\u00a8\u0006\"\u000535849\u0012\u0011\b/\u0012\u0006\u0010\u00c0\u00fb\u0097\u00a8\u0006\"\u000535850\u0012\u0011\b0\u0012\u0006\u0010\u00dc\u00fb\u0097\u00a8\u0006\"\u000535851\u0012\u0011\b1\u0012\u0006\u0010\u00f5\u00fb\u0097\u00a8\u0006\"\u000535852\u0012\u0011\b2\u0012\u0006\u0010\u0094\u00fc\u0097\u00a8\u0006\"\u000535853\u0012\u0011\b3\u0012\u0006\u0010\u00c0\u00fc\u0097\u00a8\u0006\"\u000535854\u0012\u0011\b4\u0012\u0006\u0010\u00ea\u00fc\u0097\u00a8\u0006\"\u000535430\u001a\b\u001a\u0006FLHL13 \u00f2\u00e7\u0097\u00a8\u0006\"`\n/\n\u001020093-701ff27f-2\u0012\b14:25:00\u001a\b20230916 \u0000*\u00035890\u0001\u0012\u001d\r\u00b9L\u0013\u00c2\u0015\u00f1\u0007\u0092\u00c2\u001d\u0000\u0080\u0096C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u009a\u0099\u0085A(\u00f2\u00e7\u0097\u00a8\u0006B\b\u001a\u0006FLHL13" + }, + { + "type": "con_recorrido", + "entity": "\n$64d10247-3d6b-4508-bdcb-302e7742d8a4\u001a\u0097\u0003\n/\n\u001020091-701ff27f-2\u0012\b14:01:00\u001a\b20230916 \u0000*\u00035890\u0001\u0012\u0011\b#\u0012\u0006\u0010\u00ee\u00e7\u0097\u00a8\u0006\"\u000544723\u0012\u0011\b$\u0012\u0006\u0010\u009d\u00e8\u0097\u00a8\u0006\"\u000544724\u0012\u0011\b%\u0012\u0006\u0010\u00ca\u00e8\u0097\u00a8\u0006\"\u000544725\u0012\u0011\b&\u0012\u0006\u0010\u00ee\u00e8\u0097\u00a8\u0006\"\u000544726\u0012\u0011\b'\u0012\u0006\u0010\u00bb\u00e9\u0097\u00a8\u0006\"\u000544727\u0012\u0011\b(\u0012\u0006\u0010\u009c\u00ea\u0097\u00a8\u0006\"\u000535418\u0012\u0011\b)\u0012\u0006\u0010\u00af\u00ea\u0097\u00a8\u0006\"\u000535664\u0012\u0011\b*\u0012\u0006\u0010\u00d2\u00ea\u0097\u00a8\u0006\"\u000591051\u0012\u0011\b+\u0012\u0006\u0010\u00f2\u00ea\u0097\u00a8\u0006\"\u000535666\u0012\u0011\b,\u0012\u0006\u0010\u009c\u00eb\u0097\u00a8\u0006\"\u000535667\u0012\u0011\b-\u0012\u0006\u0010\u00ba\u00eb\u0097\u00a8\u0006\"\u000535668\u0012\u0011\b.\u0012\u0006\u0010\u00d3\u00eb\u0097\u00a8\u0006\"\u000535849\u0012\u0011\b/\u0012\u0006\u0010\u00f3\u00eb\u0097\u00a8\u0006\"\u000535850\u0012\u0011\b0\u0012\u0006\u0010\u008a\u00ec\u0097\u00a8\u0006\"\u000535851\u0012\u0011\b1\u0012\u0006\u0010\u009f\u00ec\u0097\u00a8\u0006\"\u000535852\u0012\u0011\b2\u0012\u0006\u0010\u00b9\u00ec\u0097\u00a8\u0006\"\u000535853\u0012\u0011\b3\u0012\u0006\u0010\u00dc\u00ec\u0097\u00a8\u0006\"\u000535854\u0012\u0011\b4\u0012\u0006\u0010\u00ff\u00ec\u0097\u00a8\u0006\"\u000535430\u001a\b\u001a\u0006FRVF49 \u00c9\u00e7\u0097\u00a8\u0006\"`\n/\n\u001020091-701ff27f-2\u0012\b14:01:00\u001a\b20230916 \u0000*\u00035890\u0001\u0012\u001d\r\u00d0^\u0013\u00c2\u0015\u00b45\u0092\u00c2\u001d\u0000\u0080\u0097C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c9\u00e7\u0097\u00a8\u0006B\b\u001a\u0006FRVF49" + }, + { + "type": "con_recorrido", + "entity": "\n$a13b292e-d3e6-4987-a38d-8adf7ab5e217\u001a\u00b4\u0004\n/\n\u001020092-701ff27f-2\u0012\b14:13:00\u001a\b20230916 \u0000*\u00035890\u0001\u0012\u0011\b\u001b\u0012\u0006\u0010\u00d6\u00e7\u0097\u00a8\u0006\"\u000535745\u0012\u0014\b\u001c\u0012\u0006\u0010\u00f2\u00e7\u0097\u00a8\u0006\"\b15879953\u0012\u0011\b\u001d\u0012\u0006\u0010\u0089\u00e8\u0097\u00a8\u0006\"\u000535746\u0012\u0011\b\u001e\u0012\u0006\u0010\u00f8\u00ec\u0097\u00a8\u0006\"\u000535409\u0012\u0011\b\u001f\u0012\u0006\u0010\u009f\u00ed\u0097\u00a8\u0006\"\u000535411\u0012\u0011\b \u0012\u0006\u0010\u00c5\u00ed\u0097\u00a8\u0006\"\u000535412\u0012\u0013\b!\u0012\u0006\u0010\u00dc\u00ee\u0097\u00a8\u0006\"\u00075020101\u0012\u0011\b\"\u0012\u0006\u0010\u0097\u00ef\u0097\u00a8\u0006\"\u000544722\u0012\u0011\b#\u0012\u0006\u0010\u00bf\u00ef\u0097\u00a8\u0006\"\u000544723\u0012\u0011\b$\u0012\u0006\u0010\u00e9\u00ef\u0097\u00a8\u0006\"\u000544724\u0012\u0011\b%\u0012\u0006\u0010\u0092\u00f0\u0097\u00a8\u0006\"\u000544725\u0012\u0011\b&\u0012\u0006\u0010\u00b3\u00f0\u0097\u00a8\u0006\"\u000544726\u0012\u0011\b'\u0012\u0006\u0010\u00fc\u00f0\u0097\u00a8\u0006\"\u000544727\u0012\u0011\b(\u0012\u0006\u0010\u00d9\u00f1\u0097\u00a8\u0006\"\u000535418\u0012\u0011\b)\u0012\u0006\u0010\u00ea\u00f1\u0097\u00a8\u0006\"\u000535664\u0012\u0011\b*\u0012\u0006\u0010\u008c\u00f2\u0097\u00a8\u0006\"\u000591051\u0012\u0011\b+\u0012\u0006\u0010\u00ac\u00f2\u0097\u00a8\u0006\"\u000535666\u0012\u0011\b,\u0012\u0006\u0010\u00d5\u00f2\u0097\u00a8\u0006\"\u000535667\u0012\u0011\b-\u0012\u0006\u0010\u00f2\u00f2\u0097\u00a8\u0006\"\u000535668\u0012\u0011\b.\u0012\u0006\u0010\u008c\u00f3\u0097\u00a8\u0006\"\u000535849\u0012\u0011\b/\u0012\u0006\u0010\u00ab\u00f3\u0097\u00a8\u0006\"\u000535850\u0012\u0011\b0\u0012\u0006\u0010\u00c3\u00f3\u0097\u00a8\u0006\"\u000535851\u0012\u0011\b1\u0012\u0006\u0010\u00d7\u00f3\u0097\u00a8\u0006\"\u000535852\u0012\u0011\b2\u0012\u0006\u0010\u00f2\u00f3\u0097\u00a8\u0006\"\u000535853\u0012\u0011\b3\u0012\u0006\u0010\u0096\u00f4\u0097\u00a8\u0006\"\u000535854\u0012\u0011\b4\u0012\u0006\u0010\u00b9\u00f4\u0097\u00a8\u0006\"\u000535430\u001a\b\u001a\u0006FXJS19 \u00d4\u00e7\u0097\u00a8\u0006\"`\n/\n\u001020092-701ff27f-2\u0012\b14:13:00\u001a\b20230916 \u0000*\u00035890\u0001\u0012\u001d\rmM\u0013\u00c2\u0015\u008c\u001d\u0092\u00c2\u001d\u0000\u0000rC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u00e0@(\u00d4\u00e7\u0097\u00a8\u0006B\b\u001a\u0006FXJS19" + }, + { + "type": "con_recorrido", + "entity": "\n$e6d245f6-5f50-4934-9aea-75416241f494\u001a\u008e\u0005\n/\n\u001019978-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00035890\u0000\u0012\u0011\b\"\u0012\u0006\u0010\u008a\u00e8\u0097\u00a8\u0006\"\u000535287\u0012\u0011\b#\u0012\u0006\u0010\u00d4\u00e8\u0097\u00a8\u0006\"\u000542317\u0012\u0011\b$\u0012\u0006\u0010\u00a3\u00e9\u0097\u00a8\u0006\"\u000542319\u0012\u0011\b%\u0012\u0006\u0010\u00f0\u00e9\u0097\u00a8\u0006\"\u000542320\u0012\u0011\b&\u0012\u0006\u0010\u00a0\u00ea\u0097\u00a8\u0006\"\u000538514\u0012\u0011\b'\u0012\u0006\u0010\u00cf\u00ea\u0097\u00a8\u0006\"\u000534586\u0012\u0011\b(\u0012\u0006\u0010\u00f6\u00ea\u0097\u00a8\u0006\"\u000534587\u0012\u0011\b)\u0012\u0006\u0010\u008f\u00eb\u0097\u00a8\u0006\"\u000534588\u0012\u0011\b*\u0012\u0006\u0010\u00bf\u00eb\u0097\u00a8\u0006\"\u000539497\u0012\u0011\b+\u0012\u0006\u0010\u00e1\u00eb\u0097\u00a8\u0006\"\u000549407\u0012\u0011\b,\u0012\u0006\u0010\u0094\u00ec\u0097\u00a8\u0006\"\u000550034\u0012\u0011\b-\u0012\u0006\u0010\u00c0\u00ec\u0097\u00a8\u0006\"\u000540903\u0012\u0011\b.\u0012\u0006\u0010\u00e2\u00ec\u0097\u00a8\u0006\"\u000540904\u0012\u0011\b/\u0012\u0006\u0010\u008e\u00ed\u0097\u00a8\u0006\"\u000535814\u0012\u0011\b0\u0012\u0006\u0010\u00d5\u00ed\u0097\u00a8\u0006\"\u000535815\u0012\u0011\b1\u0012\u0006\u0010\u00f1\u00ed\u0097\u00a8\u0006\"\u000535816\u0012\u0011\b2\u0012\u0006\u0010\u00f6\u00ed\u0097\u00a8\u0006\"\u000535817\u0012\u0011\b3\u0012\u0006\u0010\u009f\u00ee\u0097\u00a8\u0006\"\u000535818\u0012\u0011\b4\u0012\u0006\u0010\u00c4\u00ee\u0097\u00a8\u0006\"\u000535819\u0012\u0011\b5\u0012\u0006\u0010\u0081\u00ef\u0097\u00a8\u0006\"\u000549417\u0012\u0011\b6\u0012\u0006\u0010\u00a2\u00ef\u0097\u00a8\u0006\"\u000549420\u0012\u0011\b7\u0012\u0006\u0010\u00ca\u00ef\u0097\u00a8\u0006\"\u000549421\u0012\u0011\b8\u0012\u0006\u0010\u00e6\u00ef\u0097\u00a8\u0006\"\u000549422\u0012\u0011\b9\u0012\u0006\u0010\u0093\u00f0\u0097\u00a8\u0006\"\u000549423\u0012\u0011\b:\u0012\u0006\u0010\u00b2\u00f0\u0097\u00a8\u0006\"\u000549539\u0012\u0011\b;\u0012\u0006\u0010\u00e7\u00f0\u0097\u00a8\u0006\"\u000544677\u0012\u0011\b<\u0012\u0006\u0010\u00f3\u00f0\u0097\u00a8\u0006\"\u000544671\u0012\u0011\b=\u0012\u0006\u0010\u00cb\u00f1\u0097\u00a8\u0006\"\u000544674\u0012\u0011\b>\u0012\u0006\u0010\u00e2\u00f1\u0097\u00a8\u0006\"\u000544675\u0012\u0011\b?\u0012\u0006\u0010\u00f6\u00f1\u0097\u00a8\u0006\"\u000544776\u0012\u0011\b@\u0012\u0006\u0010\u008f\u00f2\u0097\u00a8\u0006\"\u000544676\u001a\b\u001a\u0006GVXX18 \u00f4\u00e7\u0097\u00a8\u0006\"`\n/\n\u001019978-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00035890\u0000\u0012\u001d\r\u0002U\u0013\u00c2\u0015h\u001b\u0092\u00c2\u001d\u0000\u0080\u00a6C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f4\u00e7\u0097\u00a8\u0006B\b\u001a\u0006GVXX18" + }, + { + "type": "con_recorrido", + "entity": "\n$ff209772-ad9a-4385-9130-dbee9537ee46\u001a\u008a\b\n/\n\u001019981-701ff27f-2\u0012\b15:24:00\u001a\b20230916 \u0000*\u00035890\u0000\u0012\u0011\b\u000e\u0012\u0006\u0010\u00b7\u00e8\u0097\u00a8\u0006\"\u000591119\u0012\u0011\b\u000f\u0012\u0006\u0010\u00c6\u00e8\u0097\u00a8\u0006\"\u000544629\u0012\u0011\b\u0010\u0012\u0006\u0010\u0090\u00e9\u0097\u00a8\u0006\"\u000591007\u0012\u0011\b\u0011\u0012\u0006\u0010\u00a5\u00e9\u0097\u00a8\u0006\"\u000544630\u0012\u0011\b\u0012\u0012\u0006\u0010\u00c5\u00e9\u0097\u00a8\u0006\"\u000544631\u0012\u0011\b\u0013\u0012\u0006\u0010\u0093\u00ea\u0097\u00a8\u0006\"\u000544633\u0012\u0011\b\u0014\u0012\u0006\u0010\u00db\u00ea\u0097\u00a8\u0006\"\u000544635\u0012\u0011\b\u0015\u0012\u0006\u0010\u00f7\u00ea\u0097\u00a8\u0006\"\u000544721\u0012\u0011\b\u0016\u0012\u0006\u0010\u009d\u00eb\u0097\u00a8\u0006\"\u000544720\u0012\u0011\b\u0017\u0012\u0006\u0010\u00f3\u00eb\u0097\u00a8\u0006\"\u000544639\u0012\u0011\b\u0018\u0012\u0006\u0010\u00bc\u00ec\u0097\u00a8\u0006\"\u000544640\u0012\u0011\b\u0019\u0012\u0006\u0010\u00f2\u00ec\u0097\u00a8\u0006\"\u000544641\u0012\u0011\b\u001a\u0012\u0006\u0010\u00bb\u00ed\u0097\u00a8\u0006\"\u000544642\u0012\u0011\b\u001b\u0012\u0006\u0010\u00e8\u00ed\u0097\u00a8\u0006\"\u000544643\u0012\u0011\b\u001c\u0012\u0006\u0010\u00b2\u00ee\u0097\u00a8\u0006\"\u000591158\u0012\u0011\b\u001d\u0012\u0006\u0010\u00f6\u00ee\u0097\u00a8\u0006\"\u000539973\u0012\u0011\b\u001e\u0012\u0006\u0010\u00e1\u00ef\u0097\u00a8\u0006\"\u000539974\u0012\u0011\b\u001f\u0012\u0006\u0010\u0086\u00f0\u0097\u00a8\u0006\"\u000539975\u0012\u0011\b \u0012\u0006\u0010\u00a7\u00f3\u0097\u00a8\u0006\"\u000539546\u0012\u0011\b!\u0012\u0006\u0010\u00b0\u00f4\u0097\u00a8\u0006\"\u000535286\u0012\u0011\b\"\u0012\u0006\u0010\u00cc\u00f4\u0097\u00a8\u0006\"\u000535287\u0012\u0011\b#\u0012\u0006\u0010\u0092\u00f5\u0097\u00a8\u0006\"\u000542317\u0012\u0011\b$\u0012\u0006\u0010\u00de\u00f5\u0097\u00a8\u0006\"\u000542319\u0012\u0011\b%\u0012\u0006\u0010\u00ab\u00f6\u0097\u00a8\u0006\"\u000542320\u0012\u0011\b&\u0012\u0006\u0010\u00dc\u00f6\u0097\u00a8\u0006\"\u000538514\u0012\u0011\b'\u0012\u0006\u0010\u008d\u00f7\u0097\u00a8\u0006\"\u000534586\u0012\u0011\b(\u0012\u0006\u0010\u00b6\u00f7\u0097\u00a8\u0006\"\u000534587\u0012\u0011\b)\u0012\u0006\u0010\u00d0\u00f7\u0097\u00a8\u0006\"\u000534588\u0012\u0011\b*\u0012\u0006\u0010\u0083\u00f8\u0097\u00a8\u0006\"\u000539497\u0012\u0011\b+\u0012\u0006\u0010\u00a7\u00f8\u0097\u00a8\u0006\"\u000549407\u0012\u0011\b,\u0012\u0006\u0010\u00e0\u00f8\u0097\u00a8\u0006\"\u000550034\u0012\u0011\b-\u0012\u0006\u0010\u0091\u00f9\u0097\u00a8\u0006\"\u000540903\u0012\u0011\b.\u0012\u0006\u0010\u00b7\u00f9\u0097\u00a8\u0006\"\u000540904\u0012\u0011\b/\u0012\u0006\u0010\u00e8\u00f9\u0097\u00a8\u0006\"\u000535814\u0012\u0011\b0\u0012\u0006\u0010\u00bb\u00fa\u0097\u00a8\u0006\"\u000535815\u0012\u0011\b1\u0012\u0006\u0010\u00dc\u00fa\u0097\u00a8\u0006\"\u000535816\u0012\u0011\b2\u0012\u0006\u0010\u00e2\u00fa\u0097\u00a8\u0006\"\u000535817\u0012\u0011\b3\u0012\u0006\u0010\u0093\u00fb\u0097\u00a8\u0006\"\u000535818\u0012\u0011\b4\u0012\u0006\u0010\u00c0\u00fb\u0097\u00a8\u0006\"\u000535819\u0012\u0011\b5\u0012\u0006\u0010\u008b\u00fc\u0097\u00a8\u0006\"\u000549417\u0012\u0011\b6\u0012\u0006\u0010\u00b3\u00fc\u0097\u00a8\u0006\"\u000549420\u0012\u0011\b7\u0012\u0006\u0010\u00e6\u00fc\u0097\u00a8\u0006\"\u000549421\u0012\u0011\b8\u0012\u0006\u0010\u0089\u00fd\u0097\u00a8\u0006\"\u000549422\u0012\u0011\b9\u0012\u0006\u0010\u00c4\u00fd\u0097\u00a8\u0006\"\u000549423\u0012\u0011\b:\u0012\u0006\u0010\u00eb\u00fd\u0097\u00a8\u0006\"\u000549539\u0012\u0011\b;\u0012\u0006\u0010\u00b1\u00fe\u0097\u00a8\u0006\"\u000544677\u0012\u0011\b<\u0012\u0006\u0010\u00c1\u00fe\u0097\u00a8\u0006\"\u000544671\u0012\u0011\b=\u0012\u0006\u0010\u00b8\u00ff\u0097\u00a8\u0006\"\u000544674\u0012\u0011\b>\u0012\u0006\u0010\u00d8\u00ff\u0097\u00a8\u0006\"\u000544675\u0012\u0011\b?\u0012\u0006\u0010\u00f3\u00ff\u0097\u00a8\u0006\"\u000544776\u0012\u0011\b@\u0012\u0006\u0010\u0095\u0080\u0098\u00a8\u0006\"\u000544676\u001a\b\u001a\u0006JFSP64 \u00ec\u00e7\u0097\u00a8\u0006\"`\n/\n\u001019981-701ff27f-2\u0012\b15:24:00\u001a\b20230916 \u0000*\u00035890\u0000\u0012\u001d\r\u0005Y\u0013\u00c2\u0015\u00dd<\u0092\u00c2\u001d\u0000\u0000\u0018C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ec\u00e7\u0097\u00a8\u0006B\b\u001a\u0006JFSP64" + }, + { + "type": "con_recorrido", + "entity": "\n$c34eb701-5649-44c8-abd5-cae7a9a7d395\u001a\u00ec\r\n/\n\u001020258-701ff27f-2\u0012\b15:15:00\u001a\b20230916 \u0000*\u00035900\u0000\u0012\u0012\b\u0013\u0012\u0006\u0010\u00d6\u00e8\u0097\u00a8\u0006\"\u000614-May\u0012\u0012\b\u0014\u0012\u0006\u0010\u00fe\u00e8\u0097\u00a8\u0006\"\u000614-Jun\u0012\u0012\b\u0015\u0012\u0006\u0010\u00b4\u00e9\u0097\u00a8\u0006\"\u000614-Aug\u0012\u0011\b\u0016\u0012\u0006\u0010\u00e2\u00e9\u0097\u00a8\u0006\"\u000550024\u0012\u0011\b\u0017\u0012\u0006\u0010\u00e8\u00ea\u0097\u00a8\u0006\"\u000514-12\u0012\u0011\b\u0018\u0012\u0006\u0010\u00ba\u00eb\u0097\u00a8\u0006\"\u000537471\u0012\u0011\b\u0019\u0012\u0006\u0010\u00db\u00eb\u0097\u00a8\u0006\"\u000537560\u0012\u0011\b\u001a\u0012\u0006\u0010\u00f3\u00eb\u0097\u00a8\u0006\"\u000537564\u0012\u0011\b\u001b\u0012\u0006\u0010\u00a4\u00ec\u0097\u00a8\u0006\"\u000537517\u0012\u0011\b\u001c\u0012\u0006\u0010\u00b5\u00ec\u0097\u00a8\u0006\"\u000537475\u0012\u0011\b\u001d\u0012\u0006\u0010\u00da\u00ec\u0097\u00a8\u0006\"\u000537508\u0012\u0011\b\u001e\u0012\u0006\u0010\u00fc\u00ec\u0097\u00a8\u0006\"\u000537476\u0012\u0011\b\u001f\u0012\u0006\u0010\u0095\u00ed\u0097\u00a8\u0006\"\u000537526\u0012\u0011\b \u0012\u0006\u0010\u00d8\u00ed\u0097\u00a8\u0006\"\u000537567\u0012\u0012\b!\u0012\u0006\u0010\u00ee\u00ed\u0097\u00a8\u0006\"\u000613-Jan\u0012\u0012\b\"\u0012\u0006\u0010\u00a1\u00ee\u0097\u00a8\u0006\"\u000613-Feb\u0012\u0012\b#\u0012\u0006\u0010\u00ba\u00ee\u0097\u00a8\u0006\"\u000628-Jan\u0012\u0010\b$\u0012\u0006\u0010\u00e7\u00ee\u0097\u00a8\u0006\"\u000412-3\u0012\u0012\b%\u0012\u0006\u0010\u00b1\u00ef\u0097\u00a8\u0006\"\u000612-Jan\u0012\u0012\b&\u0012\u0006\u0010\u00dc\u00ef\u0097\u00a8\u0006\"\u000612-Feb\u0012\u0011\b'\u0012\u0006\u0010\u008c\u00f0\u0097\u00a8\u0006\"\u00057-Jan\u0012\u0011\b(\u0012\u0006\u0010\u00c0\u00f0\u0097\u00a8\u0006\"\u00057-Mar\u0012\u0011\b)\u0012\u0006\u0010\u00c3\u00f1\u0097\u00a8\u0006\"\u00057-Jun\u0012\u0011\b*\u0012\u0006\u0010\u0088\u00f2\u0097\u00a8\u0006\"\u00057-Aug\u0012\u0011\b+\u0012\u0006\u0010\u00ca\u00f2\u0097\u00a8\u0006\"\u00056-Jan\u0012\u0011\b,\u0012\u0006\u0010\u0090\u00f3\u0097\u00a8\u0006\"\u00056-Mar\u0012\u0011\b-\u0012\u0006\u0010\u00fa\u00f3\u0097\u00a8\u0006\"\u00056-May\u0012\u0011\b.\u0012\u0006\u0010\u0097\u00f5\u0097\u00a8\u0006\"\u00056-Jul\u0012\u0011\b/\u0012\u0006\u0010\u00d6\u00f5\u0097\u00a8\u0006\"\u00056-Sep\u0012\u0011\b0\u0012\u0006\u0010\u00b0\u00f6\u0097\u00a8\u0006\"\u00056-Nov\u0012\u0011\b1\u0012\u0006\u0010\u009e\u00f7\u0097\u00a8\u0006\"\u00056-Dec\u0012\u0012\b2\u0012\u0006\u0010\u00fd\u00f7\u0097\u00a8\u0006\"\u0006Jun-14\u0012\u0012\b3\u0012\u0006\u0010\u009f\u00f9\u0097\u00a8\u0006\"\u0006Jun-17\u0012\u0012\b4\u0012\u0006\u0010\u00fc\u00f9\u0097\u00a8\u0006\"\u0006Jun-19\u0012\u0012\b5\u0012\u0006\u0010\u00b9\u00fa\u0097\u00a8\u0006\"\u0006Jun-20\u0012\u0012\b6\u0012\u0006\u0010\u00ff\u00fa\u0097\u00a8\u0006\"\u0006Jun-22\u0012\u0012\b7\u0012\u0006\u0010\u00c9\u00fb\u0097\u00a8\u0006\"\u0006Jun-24\u0012\u0012\b8\u0012\u0006\u0010\u00b1\u00fc\u0097\u00a8\u0006\"\u0006Jun-25\u0012\u0011\b9\u0012\u0006\u0010\u0094\u00ff\u0097\u00a8\u0006\"\u000590003\u0012\u0011\b:\u0012\u0006\u0010\u00d0\u00ff\u0097\u00a8\u0006\"\u000590007\u0012\u0011\b;\u0012\u0006\u0010\u0093\u0080\u0098\u00a8\u0006\"\u000590008\u0012\u0011\b<\u0012\u0006\u0010\u00a9\u0081\u0098\u00a8\u0006\"\u000539599\u0012\u0011\b=\u0012\u0006\u0010\u0094\u0082\u0098\u00a8\u0006\"\u000545011\u0012\u0011\b>\u0012\u0006\u0010\u00a5\u0083\u0098\u00a8\u0006\"\u000539623\u0012\u0011\b?\u0012\u0006\u0010\u00ee\u0083\u0098\u00a8\u0006\"\u000539624\u0012\u0011\b@\u0012\u0006\u0010\u00d3\u0084\u0098\u00a8\u0006\"\u000590000\u0012\u0011\bA\u0012\u0006\u0010\u00a2\u0085\u0098\u00a8\u0006\"\u000539628\u0012\u0011\bB\u0012\u0006\u0010\u009e\u0086\u0098\u00a8\u0006\"\u000539631\u0012\u0011\bC\u0012\u0006\u0010\u00ec\u0086\u0098\u00a8\u0006\"\u000549311\u0012\u0011\bD\u0012\u0006\u0010\u00cb\u0087\u0098\u00a8\u0006\"\u000539634\u0012\u0011\bE\u0012\u0006\u0010\u00f7\u0087\u0098\u00a8\u0006\"\u000539635\u0012\u0011\bF\u0012\u0006\u0010\u00c8\u0088\u0098\u00a8\u0006\"\u000539636\u0012\u0011\bG\u0012\u0006\u0010\u00a8\u0089\u0098\u00a8\u0006\"\u000549503\u0012\u0011\bH\u0012\u0006\u0010\u0096\u008b\u0098\u00a8\u0006\"\u000539637\u0012\u0011\bI\u0012\u0006\u0010\u00f6\u008b\u0098\u00a8\u0006\"\u000549317\u0012\u0011\bJ\u0012\u0006\u0010\u00b7\u008c\u0098\u00a8\u0006\"\u000549318\u0012\u0011\bK\u0012\u0006\u0010\u00bf\u008d\u0098\u00a8\u0006\"\u000549319\u0012\u0011\bL\u0012\u0006\u0010\u00c7\u008e\u0098\u00a8\u0006\"\u000539641\u0012\u0011\bM\u0012\u0006\u0010\u00fc\u0092\u0098\u00a8\u0006\"\u000549323\u0012\u0011\bN\u0012\u0006\u0010\u00d3\u0093\u0098\u00a8\u0006\"\u000549324\u0012\u0011\bO\u0012\u0006\u0010\u00b8\u0094\u0098\u00a8\u0006\"\u000549325\u0012\u0011\bP\u0012\u0006\u0010\u00e1\u0095\u0098\u00a8\u0006\"\u000549326\u0012\u0011\bQ\u0012\u0006\u0010\u00b7\u0096\u0098\u00a8\u0006\"\u000537425\u0012\u0011\bR\u0012\u0006\u0010\u00a1\u0097\u0098\u00a8\u0006\"\u000537426\u0012\u0011\bS\u0012\u0006\u0010\u0085\u0098\u0098\u00a8\u0006\"\u000537427\u0012\u0013\bT\u0012\u0006\u0010\u00af\u0099\u0098\u00a8\u0006\"\u00078606049\u0012\u0011\bU\u0012\u0006\u0010\u00d3\u009a\u0098\u00a8\u0006\"\u000537428\u0012\u0011\bV\u0012\u0006\u0010\u00ba\u009b\u0098\u00a8\u0006\"\u000537429\u0012\u0011\bW\u0012\u0006\u0010\u00c3\u009c\u0098\u00a8\u0006\"\u000537430\u0012\u0011\bX\u0012\u0006\u0010\u00b0\u009d\u0098\u00a8\u0006\"\u000537431\u0012\u0011\bY\u0012\u0006\u0010\u0097\u009e\u0098\u00a8\u0006\"\u000537432\u0012\u0011\bZ\u0012\u0006\u0010\u0087\u00a1\u0098\u00a8\u0006\"\u000537433\u0012\u0011\b[\u0012\u0006\u0010\u00e5\u00a3\u0098\u00a8\u0006\"\u000537434\u0012\u0011\b\\\u0012\u0006\u0010\u00b4\u00a4\u0098\u00a8\u0006\"\u000537435\u0012\u0011\b]\u0012\u0006\u0010\u009e\u00a6\u0098\u00a8\u0006\"\u000537436\u0012\u0011\b^\u0012\u0006\u0010\u00cb\u00a8\u0098\u00a8\u0006\"\u000537437\u0012\u0011\b_\u0012\u0006\u0010\u00c6\u00aa\u0098\u00a8\u0006\"\u000549337\u0012\u0011\b`\u0012\u0006\u0010\u00cf\u00ab\u0098\u00a8\u0006\"\u000539661\u0012\u0011\ba\u0012\u0006\u0010\u00cb\u00ad\u0098\u00a8\u0006\"\u000539662\u0012\u0011\bb\u0012\u0006\u0010\u00f8\u00af\u0098\u00a8\u0006\"\u000539663\u0012\u0011\bc\u0012\u0006\u0010\u00de\u00b1\u0098\u00a8\u0006\"\u000549341\u0012\u0011\bd\u0012\u0006\u0010\u00ef\u00b3\u0098\u00a8\u0006\"\u000549342\u0012\u0011\be\u0012\u0006\u0010\u00c2\u00b8\u0098\u00a8\u0006\"\u000549343\u0012\u0011\bf\u0012\u0006\u0010\u00b7\u00c3\u0098\u00a8\u0006\"\u000549344\u0012\u0011\bg\u0012\u0006\u0010\u00bd\u00ce\u0098\u00a8\u0006\"\u000549345\u0012\u0011\bh\u0012\u0006\u0010\u00aa\u00dd\u0098\u00a8\u0006\"\u000549346\u0012\u0011\bi\u0012\u0006\u0010\u00b0\u00e3\u0098\u00a8\u0006\"\u000549347\u0012\u0011\bj\u0012\u0006\u0010\u00c4\u0081\u0099\u00a8\u0006\"\u000549348\u0012\u0011\bk\u0012\u0006\u0010\u00a1\u00a5\u0099\u00a8\u0006\"\u000542250\u001a\b\u001a\u0006BHCL61 \u00c8\u00e8\u0097\u00a8\u0006\"`\n/\n\u001020258-701ff27f-2\u0012\b15:15:00\u001a\b20230916 \u0000*\u00035900\u0000\u0012\u001d\r\r\u00db\u0012\u00c2\u0015\u00c8\u00f2\u0091\u00c2\u001d\u0000\u0000\u0012\u0006\u0010\u00d8\u0082\u0098\u00a8\u0006\"\u000535803\u0012\u0011\b?\u0012\u0006\u0010\u00aa\u0083\u0098\u00a8\u0006\"\u000538507\u0012\u0011\b@\u0012\u0006\u0010\u00f6\u0083\u0098\u00a8\u0006\"\u000534473\u0012\u0011\bA\u0012\u0006\u0010\u00ba\u0084\u0098\u00a8\u0006\"\u000538500\u0012\u0011\bB\u0012\u0006\u0010\u0081\u0085\u0098\u00a8\u0006\"\u000535808\u0012\u0011\bC\u0012\u0006\u0010\u00de\u0085\u0098\u00a8\u0006\"\u000535710\u0012\u0011\bD\u0012\u0006\u0010\u00a8\u0086\u0098\u00a8\u0006\"\u000550036\u0012\u0011\bE\u0012\u0006\u0010\u00b8\u0089\u0098\u00a8\u0006\"\u000550037\u0012\u0011\bF\u0012\u0006\u0010\u00ca\u008b\u0098\u00a8\u0006\"\u000550038\u0012\u0011\bG\u0012\u0006\u0010\u00e2\u008c\u0098\u00a8\u0006\"\u000550039\u0012\u0011\bH\u0012\u0006\u0010\u00e1\u008d\u0098\u00a8\u0006\"\u000550040\u0012\u0011\bI\u0012\u0006\u0010\u00a1\u008f\u0098\u00a8\u0006\"\u000550041\u0012\u0012\bJ\u0012\u0006\u0010\u00ee\u0091\u0098\u00a8\u0006\"\u0006Jun-15\u0012\u0012\bK\u0012\u0006\u0010\u00d4\u0093\u0098\u00a8\u0006\"\u0006Jun-13\u0012\u0011\bL\u0012\u0006\u0010\u00ec\u0097\u0098\u00a8\u0006\"\u00056-Oct\u0012\u0011\bM\u0012\u0006\u0010\u0097\u0099\u0098\u00a8\u0006\"\u00056-Aug\u0012\u0011\bN\u0012\u0006\u0010\u0099\u009d\u0098\u00a8\u0006\"\u00056-Jun\u0012\u0011\bO\u0012\u0006\u0010\u00be\u00a0\u0098\u00a8\u0006\"\u00056-Feb\u0012\u0011\bP\u0012\u0006\u0010\u0081\u00a5\u0098\u00a8\u0006\"\u00057-Jul\u0012\u0011\bQ\u0012\u0006\u0010\u00a1\u00a7\u0098\u00a8\u0006\"\u00057-May\u0012\u0013\bR\u0012\u0006\u0010\u00ac\u00a8\u0098\u00a8\u0006\"\u00071508142\u0012\u0011\bS\u0012\u0006\u0010\u00b8\u00ac\u0098\u00a8\u0006\"\u00057-Feb\u0012\u0011\bT\u0012\u0006\u0010\u008b\u00af\u0098\u00a8\u0006\"\u00058-Jan\u0012\u0011\bU\u0012\u0006\u0010\u00b9\u00b0\u0098\u00a8\u0006\"\u00059-Jan\u0012\u0012\bV\u0012\u0006\u0010\u00a3\u00b2\u0098\u00a8\u0006\"\u000610-Apr\u0012\u0012\bW\u0012\u0006\u0010\u0085\u00b5\u0098\u00a8\u0006\"\u000610-Jan\u0012\u0011\bX\u0012\u0006\u0010\u0093\u00b7\u0098\u00a8\u0006\"\u000544863\u0012\u0012\bY\u0012\u0006\u0010\u00e7\u00b8\u0098\u00a8\u0006\"\u000610-Mar\u0012\u0012\bZ\u0012\u0006\u0010\u00ed\u00bb\u0098\u00a8\u0006\"\u000611-Jan\u0012\u0011\b[\u0012\u0006\u0010\u00ed\u00be\u0098\u00a8\u0006\"\u000544866\u0012\u0011\b\\\u0012\u0006\u0010\u00a1\u00c1\u0098\u00a8\u0006\"\u000544867\u0012\u0011\b]\u0012\u0006\u0010\u00fa\u00c2\u0098\u00a8\u0006\"\u000544868\u0012\u0011\b^\u0012\u0006\u0010\u00df\u00c4\u0098\u00a8\u0006\"\u000544869\u0012\u0011\b_\u0012\u0006\u0010\u00fe\u00c6\u0098\u00a8\u0006\"\u000544870\u0012\u0011\b`\u0012\u0006\u0010\u00b5\u00c9\u0098\u00a8\u0006\"\u000544871\u0012\u0011\ba\u0012\u0006\u0010\u00b9\u00cc\u0098\u00a8\u0006\"\u000544872\u0012\u0011\bb\u0012\u0006\u0010\u00d1\u00d1\u0098\u00a8\u0006\"\u000550020\u0012\u0011\bc\u0012\u0006\u0010\u00bf\u00d9\u0098\u00a8\u0006\"\u000514-11\u0012\u0011\bd\u0012\u0006\u0010\u0091\u00dd\u0098\u00a8\u0006\"\u000591162\u0012\u0011\be\u0012\u0006\u0010\u00aa\u00e6\u0098\u00a8\u0006\"\u000550023\u0012\u0012\bf\u0012\u0006\u0010\u00b0\u00f3\u0098\u00a8\u0006\"\u000614-Jul\u0012\u0012\bg\u0012\u0006\u0010\u00ef\u00f8\u0098\u00a8\u0006\"\u000614-Apr\u0012\u0011\bh\u0012\u0006\u0010\u00ad\u0080\u0099\u00a8\u0006\"\u000537474\u0012\u0011\bi\u0012\u0006\u0010\u00f5\u0088\u0099\u00a8\u0006\"\u000544879\u001a\b\u001a\u0006HYHP87 \u00b0\u00e8\u0097\u00a8\u0006\"`\n/\n\u001020183-701ff27f-2\u0012\b15:31:00\u001a\b20230916 \u0000*\u00035900\u0001\u0012\u001d\r'\u00f7\u0012\u00c2\u0015\u001a7\u0092\u00c2\u001d\u0000\u0000\u0016C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u000e@(\u00b0\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HYHP87" + }, + { + "type": "con_recorrido", + "entity": "\n$0d6efc3b-9e7f-491e-8b26-2e51bd85c6f7\u001a\u00b6\u000b\n/\n\u001020182-701ff27f-2\u0012\b15:16:00\u001a\b20230916 \u0000*\u00035900\u0001\u0012\u0011\b!\u0012\u0006\u0010\u00d7\u00e8\u0097\u00a8\u0006\"\u000538673\u0012\u0011\b\"\u0012\u0006\u0010\u00a8\u00e9\u0097\u00a8\u0006\"\u000539785\u0012\u0011\b#\u0012\u0006\u0010\u00d1\u00e9\u0097\u00a8\u0006\"\u000538664\u0012\u0011\b$\u0012\u0006\u0010\u0089\u00ea\u0097\u00a8\u0006\"\u000538702\u0012\u0011\b%\u0012\u0006\u0010\u00b7\u00ea\u0097\u00a8\u0006\"\u000539787\u0012\u0011\b&\u0012\u0006\u0010\u00e2\u00ea\u0097\u00a8\u0006\"\u000538501\u0012\u0011\b'\u0012\u0006\u0010\u00a5\u00eb\u0097\u00a8\u0006\"\u000538692\u0012\u0011\b(\u0012\u0006\u0010\u00eb\u00eb\u0097\u00a8\u0006\"\u000538714\u0012\u0011\b)\u0012\u0006\u0010\u0098\u00ec\u0097\u00a8\u0006\"\u000539791\u0012\u0011\b*\u0012\u0006\u0010\u00b7\u00ec\u0097\u00a8\u0006\"\u000538506\u0012\u0011\b+\u0012\u0006\u0010\u00e8\u00ec\u0097\u00a8\u0006\"\u000538635\u0012\u0011\b,\u0012\u0006\u0010\u0089\u00ed\u0097\u00a8\u0006\"\u000538509\u0012\u0011\b-\u0012\u0006\u0010\u00b4\u00ed\u0097\u00a8\u0006\"\u000538642\u0012\u0011\b.\u0012\u0006\u0010\u00df\u00ed\u0097\u00a8\u0006\"\u000539795\u0012\u0011\b/\u0012\u0006\u0010\u00f8\u00ed\u0097\u00a8\u0006\"\u000538502\u0012\u0011\b0\u0012\u0006\u0010\u00ba\u00ee\u0097\u00a8\u0006\"\u000538503\u0012\u0011\b1\u0012\u0006\u0010\u00d3\u00ef\u0097\u00a8\u0006\"\u000535691\u0012\u0011\b2\u0012\u0006\u0010\u00b8\u00f0\u0097\u00a8\u0006\"\u000535693\u0012\u0011\b3\u0012\u0006\u0010\u00f0\u00f0\u0097\u00a8\u0006\"\u000535694\u0012\u0011\b4\u0012\u0006\u0010\u008f\u00f1\u0097\u00a8\u0006\"\u000535695\u0012\u0011\b5\u0012\u0006\u0010\u00c5\u00f1\u0097\u00a8\u0006\"\u000535696\u0012\u0011\b6\u0012\u0006\u0010\u00e1\u00f2\u0097\u00a8\u0006\"\u000535697\u0012\u0011\b7\u0012\u0006\u0010\u00d9\u00f3\u0097\u00a8\u0006\"\u000539778\u0012\u0011\b8\u0012\u0006\u0010\u00c1\u00f4\u0097\u00a8\u0006\"\u000535797\u0012\u0011\b9\u0012\u0006\u0010\u00ea\u00f4\u0097\u00a8\u0006\"\u000535798\u0012\u0011\b:\u0012\u0006\u0010\u0090\u00f5\u0097\u00a8\u0006\"\u000535799\u0012\u0011\b;\u0012\u0006\u0010\u00d7\u00f5\u0097\u00a8\u0006\"\u000535800\u0012\u0011\b<\u0012\u0006\u0010\u0089\u00f6\u0097\u00a8\u0006\"\u000535801\u0012\u0011\b=\u0012\u0006\u0010\u00a3\u00f6\u0097\u00a8\u0006\"\u000535802\u0012\u0011\b>\u0012\u0006\u0010\u00d4\u00f6\u0097\u00a8\u0006\"\u000535803\u0012\u0011\b?\u0012\u0006\u0010\u008d\u00f7\u0097\u00a8\u0006\"\u000538507\u0012\u0011\b@\u0012\u0006\u0010\u00c2\u00f7\u0097\u00a8\u0006\"\u000534473\u0012\u0011\bA\u0012\u0006\u0010\u00f0\u00f7\u0097\u00a8\u0006\"\u000538500\u0012\u0011\bB\u0012\u0006\u0010\u00a1\u00f8\u0097\u00a8\u0006\"\u000535808\u0012\u0011\bC\u0012\u0006\u0010\u00df\u00f8\u0097\u00a8\u0006\"\u000535710\u0012\u0011\bD\u0012\u0006\u0010\u008f\u00f9\u0097\u00a8\u0006\"\u000550036\u0012\u0011\bE\u0012\u0006\u0010\u008f\u00fb\u0097\u00a8\u0006\"\u000550037\u0012\u0011\bF\u0012\u0006\u0010\u00b6\u00fc\u0097\u00a8\u0006\"\u000550038\u0012\u0011\bG\u0012\u0006\u0010\u0091\u00fd\u0097\u00a8\u0006\"\u000550039\u0012\u0011\bH\u0012\u0006\u0010\u00da\u00fd\u0097\u00a8\u0006\"\u000550040\u0012\u0011\bI\u0012\u0006\u0010\u00c8\u00fe\u0097\u00a8\u0006\"\u000550041\u0012\u0012\bJ\u0012\u0006\u0010\u0081\u0080\u0098\u00a8\u0006\"\u0006Jun-15\u0012\u0012\bK\u0012\u0006\u0010\u00fc\u0080\u0098\u00a8\u0006\"\u0006Jun-13\u0012\u0011\bL\u0012\u0006\u0010\u008f\u0083\u0098\u00a8\u0006\"\u00056-Oct\u0012\u0011\bM\u0012\u0006\u0010\u00e4\u0083\u0098\u00a8\u0006\"\u00056-Aug\u0012\u0011\bN\u0012\u0006\u0010\u00d9\u0085\u0098\u00a8\u0006\"\u00056-Jun\u0012\u0011\bO\u0012\u0006\u0010\u0098\u0087\u0098\u00a8\u0006\"\u00056-Feb\u0012\u0011\bP\u0012\u0006\u0010\u0094\u0089\u0098\u00a8\u0006\"\u00057-Jul\u0012\u0011\bQ\u0012\u0006\u0010\u008c\u008a\u0098\u00a8\u0006\"\u00057-May\u0012\u0013\bR\u0012\u0006\u0010\u00c4\u008a\u0098\u00a8\u0006\"\u00071508142\u0012\u0011\bS\u0012\u0006\u0010\u0094\u008c\u0098\u00a8\u0006\"\u00057-Feb\u0012\u0011\bT\u0012\u0006\u0010\u0096\u008d\u0098\u00a8\u0006\"\u00058-Jan\u0012\u0011\bU\u0012\u0006\u0010\u00d7\u008d\u0098\u00a8\u0006\"\u00059-Jan\u0012\u0012\bV\u0012\u0006\u0010\u00ad\u008e\u0098\u00a8\u0006\"\u000610-Apr\u0012\u0012\bW\u0012\u0006\u0010\u00ac\u008f\u0098\u00a8\u0006\"\u000610-Jan\u0012\u0011\bX\u0012\u0006\u0010\u008a\u0090\u0098\u00a8\u0006\"\u000544863\u0012\u0012\bY\u0012\u0006\u0010\u00d3\u0090\u0098\u00a8\u0006\"\u000610-Mar\u0012\u0012\bZ\u0012\u0006\u0010\u00d5\u0091\u0098\u00a8\u0006\"\u000611-Jan\u0012\u0011\b[\u0012\u0006\u0010\u00d2\u0092\u0098\u00a8\u0006\"\u000544866\u0012\u0011\b\\\u0012\u0006\u0010\u00b3\u0093\u0098\u00a8\u0006\"\u000544867\u0012\u0011\b]\u0012\u0006\u0010\u00f6\u0093\u0098\u00a8\u0006\"\u000544868\u0012\u0011\b^\u0012\u0006\u0010\u00bc\u0094\u0098\u00a8\u0006\"\u000544869\u0012\u0011\b_\u0012\u0006\u0010\u0092\u0095\u0098\u00a8\u0006\"\u000544870\u0012\u0011\b`\u0012\u0006\u0010\u00ed\u0095\u0098\u00a8\u0006\"\u000544871\u0012\u0011\ba\u0012\u0006\u0010\u00db\u0096\u0098\u00a8\u0006\"\u000544872\u0012\u0011\bb\u0012\u0006\u0010\u0091\u0098\u0098\u00a8\u0006\"\u000550020\u0012\u0011\bc\u0012\u0006\u0010\u0095\u009a\u0098\u00a8\u0006\"\u000514-11\u0012\u0011\bd\u0012\u0006\u0010\u0088\u009b\u0098\u00a8\u0006\"\u000591162\u0012\u0011\be\u0012\u0006\u0010\u009b\u009d\u0098\u00a8\u0006\"\u000550023\u0012\u0012\bf\u0012\u0006\u0010\u00ff\u009f\u0098\u00a8\u0006\"\u000614-Jul\u0012\u0012\bg\u0012\u0006\u0010\u008a\u00a1\u0098\u00a8\u0006\"\u000614-Apr\u0012\u0011\bh\u0012\u0006\u0010\u00bf\u00a2\u0098\u00a8\u0006\"\u000537474\u0012\u0011\bi\u0012\u0006\u0010\u0082\u00a4\u0098\u00a8\u0006\"\u000544879\u001a\b\u001a\u0006JSBB54 \u00cc\u00e8\u0097\u00a8\u0006\"`\n/\n\u001020182-701ff27f-2\u0012\b15:16:00\u001a\b20230916 \u0000*\u00035900\u0001\u0012\u001d\r\u00b8\u0015\u0013\u00c2\u0015\u00ee+\u0092\u00c2\u001d\u0000\u00005C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-r\u001c\u0017A(\u00cc\u00e8\u0097\u00a8\u0006B\b\u001a\u0006JSBB54" + }, + { + "type": "con_recorrido", + "entity": "\n$1f78272f-8840-4faf-b5cd-6ed247ddedbb\u001a\u0091\u000b\n/\n\u001020257-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00035900\u0000\u0012\u0012\b%\u0012\u0006\u0010\u00cc\u00e8\u0097\u00a8\u0006\"\u000612-Jan\u0012\u0012\b&\u0012\u0006\u0010\u00fa\u00e8\u0097\u00a8\u0006\"\u000612-Feb\u0012\u0011\b'\u0012\u0006\u0010\u00b0\u00e9\u0097\u00a8\u0006\"\u00057-Jan\u0012\u0011\b(\u0012\u0006\u0010\u00e8\u00e9\u0097\u00a8\u0006\"\u00057-Mar\u0012\u0011\b)\u0012\u0006\u0010\u00f4\u00ea\u0097\u00a8\u0006\"\u00057-Jun\u0012\u0011\b*\u0012\u0006\u0010\u00bc\u00eb\u0097\u00a8\u0006\"\u00057-Aug\u0012\u0011\b+\u0012\u0006\u0010\u0080\u00ec\u0097\u00a8\u0006\"\u00056-Jan\u0012\u0011\b,\u0012\u0006\u0010\u00c7\u00ec\u0097\u00a8\u0006\"\u00056-Mar\u0012\u0011\b-\u0012\u0006\u0010\u00b2\u00ed\u0097\u00a8\u0006\"\u00056-May\u0012\u0011\b.\u0012\u0006\u0010\u00cc\u00ee\u0097\u00a8\u0006\"\u00056-Jul\u0012\u0011\b/\u0012\u0006\u0010\u0089\u00ef\u0097\u00a8\u0006\"\u00056-Sep\u0012\u0011\b0\u0012\u0006\u0010\u00de\u00ef\u0097\u00a8\u0006\"\u00056-Nov\u0012\u0011\b1\u0012\u0006\u0010\u00c6\u00f0\u0097\u00a8\u0006\"\u00056-Dec\u0012\u0012\b2\u0012\u0006\u0010\u009e\u00f1\u0097\u00a8\u0006\"\u0006Jun-14\u0012\u0012\b3\u0012\u0006\u0010\u00b0\u00f2\u0097\u00a8\u0006\"\u0006Jun-17\u0012\u0012\b4\u0012\u0006\u0010\u0083\u00f3\u0097\u00a8\u0006\"\u0006Jun-19\u0012\u0012\b5\u0012\u0006\u0010\u00b9\u00f3\u0097\u00a8\u0006\"\u0006Jun-20\u0012\u0012\b6\u0012\u0006\u0010\u00f6\u00f3\u0097\u00a8\u0006\"\u0006Jun-22\u0012\u0012\b7\u0012\u0006\u0010\u00b5\u00f4\u0097\u00a8\u0006\"\u0006Jun-24\u0012\u0012\b8\u0012\u0006\u0010\u008f\u00f5\u0097\u00a8\u0006\"\u0006Jun-25\u0012\u0011\b9\u0012\u0006\u0010\u00b4\u00f7\u0097\u00a8\u0006\"\u000590003\u0012\u0011\b:\u0012\u0006\u0010\u00e5\u00f7\u0097\u00a8\u0006\"\u000590007\u0012\u0011\b;\u0012\u0006\u0010\u009a\u00f8\u0097\u00a8\u0006\"\u000590008\u0012\u0011\b<\u0012\u0006\u0010\u0091\u00f9\u0097\u00a8\u0006\"\u000539599\u0012\u0011\b=\u0012\u0006\u0010\u00e5\u00f9\u0097\u00a8\u0006\"\u000545011\u0012\u0011\b>\u0012\u0006\u0010\u00d4\u00fa\u0097\u00a8\u0006\"\u000539623\u0012\u0011\b?\u0012\u0006\u0010\u008c\u00fb\u0097\u00a8\u0006\"\u000539624\u0012\u0011\b@\u0012\u0006\u0010\u00d7\u00fb\u0097\u00a8\u0006\"\u000590000\u0012\u0011\bA\u0012\u0006\u0010\u0093\u00fc\u0097\u00a8\u0006\"\u000539628\u0012\u0011\bB\u0012\u0006\u0010\u00ee\u00fc\u0097\u00a8\u0006\"\u000539631\u0012\u0011\bC\u0012\u0006\u0010\u00a8\u00fd\u0097\u00a8\u0006\"\u000549311\u0012\u0011\bD\u0012\u0006\u0010\u00ec\u00fd\u0097\u00a8\u0006\"\u000539634\u0012\u0011\bE\u0012\u0006\u0010\u008c\u00fe\u0097\u00a8\u0006\"\u000539635\u0012\u0011\bF\u0012\u0006\u0010\u00c6\u00fe\u0097\u00a8\u0006\"\u000539636\u0012\u0011\bG\u0012\u0006\u0010\u008a\u00ff\u0097\u00a8\u0006\"\u000549503\u0012\u0011\bH\u0012\u0006\u0010\u00b1\u0080\u0098\u00a8\u0006\"\u000539637\u0012\u0011\bI\u0012\u0006\u0010\u00f3\u0080\u0098\u00a8\u0006\"\u000549317\u0012\u0011\bJ\u0012\u0006\u0010\u009f\u0081\u0098\u00a8\u0006\"\u000549318\u0012\u0011\bK\u0012\u0006\u0010\u00fb\u0081\u0098\u00a8\u0006\"\u000549319\u0012\u0011\bL\u0012\u0006\u0010\u00d7\u0082\u0098\u00a8\u0006\"\u000539641\u0012\u0011\bM\u0012\u0006\u0010\u00c6\u0085\u0098\u00a8\u0006\"\u000549323\u0012\u0011\bN\u0012\u0006\u0010\u00fd\u0085\u0098\u00a8\u0006\"\u000549324\u0012\u0011\bO\u0012\u0006\u0010\u00bd\u0086\u0098\u00a8\u0006\"\u000549325\u0012\u0011\bP\u0012\u0006\u0010\u00a5\u0087\u0098\u00a8\u0006\"\u000549326\u0012\u0011\bQ\u0012\u0006\u0010\u00da\u0087\u0098\u00a8\u0006\"\u000537425\u0012\u0011\bR\u0012\u0006\u0010\u009b\u0088\u0098\u00a8\u0006\"\u000537426\u0012\u0011\bS\u0012\u0006\u0010\u00d8\u0088\u0098\u00a8\u0006\"\u000537427\u0012\u0013\bT\u0012\u0006\u0010\u00be\u0089\u0098\u00a8\u0006\"\u00078606049\u0012\u0011\bU\u0012\u0006\u0010\u009f\u008a\u0098\u00a8\u0006\"\u000537428\u0012\u0011\bV\u0012\u0006\u0010\u00dc\u008a\u0098\u00a8\u0006\"\u000537429\u0012\u0011\bW\u0012\u0006\u0010\u00ab\u008b\u0098\u00a8\u0006\"\u000537430\u0012\u0011\bX\u0012\u0006\u0010\u00eb\u008b\u0098\u00a8\u0006\"\u000537431\u0012\u0011\bY\u0012\u0006\u0010\u00a5\u008c\u0098\u00a8\u0006\"\u000537432\u0012\u0011\bZ\u0012\u0006\u0010\u00f4\u008d\u0098\u00a8\u0006\"\u000537433\u0012\u0011\b[\u0012\u0006\u0010\u00b4\u008f\u0098\u00a8\u0006\"\u000537434\u0012\u0011\b\\\u0012\u0006\u0010\u00df\u008f\u0098\u00a8\u0006\"\u000537435\u0012\u0011\b]\u0012\u0006\u0010\u00dc\u0090\u0098\u00a8\u0006\"\u000537436\u0012\u0011\b^\u0012\u0006\u0010\u00fa\u0091\u0098\u00a8\u0006\"\u000537437\u0012\u0011\b_\u0012\u0006\u0010\u00fc\u0092\u0098\u00a8\u0006\"\u000549337\u0012\u0011\b`\u0012\u0006\u0010\u00c2\u0093\u0098\u00a8\u0006\"\u000539661\u0012\u0011\ba\u0012\u0006\u0010\u00c1\u0094\u0098\u00a8\u0006\"\u000539662\u0012\u0011\bb\u0012\u0006\u0010\u00d5\u0095\u0098\u00a8\u0006\"\u000539663\u0012\u0011\bc\u0012\u0006\u0010\u00c5\u0096\u0098\u00a8\u0006\"\u000549341\u0012\u0011\bd\u0012\u0006\u0010\u00c7\u0097\u0098\u00a8\u0006\"\u000549342\u0012\u0011\be\u0012\u0006\u0010\u00dc\u0099\u0098\u00a8\u0006\"\u000549343\u0012\u0011\bf\u0012\u0006\u0010\u00c0\u009e\u0098\u00a8\u0006\"\u000549344\u0012\u0011\bg\u0012\u0006\u0010\u00fb\u00a2\u0098\u00a8\u0006\"\u000549345\u0012\u0011\bh\u0012\u0006\u0010\u00b7\u00a8\u0098\u00a8\u0006\"\u000549346\u0012\u0011\bi\u0012\u0006\u0010\u00c0\u00aa\u0098\u00a8\u0006\"\u000549347\u0012\u0011\bj\u0012\u0006\u0010\u00dc\u00b3\u0098\u00a8\u0006\"\u000549348\u0012\u0011\bk\u0012\u0006\u0010\u00d9\u00bc\u0098\u00a8\u0006\"\u000542250\u001a\b\u001a\u0006JWXV66 \u00ca\u00e8\u0097\u00a8\u0006\"`\n/\n\u001020257-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00035900\u0000\u0012\u001d\r\u00f9\u00f3\u0012\u00c2\u0015\u00ad\u00fe\u0091\u00c2\u001d\u0000\u0000wC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000 A(\u00ca\u00e8\u0097\u00a8\u0006B\b\u001a\u0006JWXV66" + }, + { + "type": "con_recorrido", + "entity": "\n$d264dfdd-b990-49ca-a5f2-d8ff18f07492\u001a\u00d3\u0007\n/\n\u001020256-701ff27f-2\u0012\b14:45:00\u001a\b20230916 \u0000*\u00035900\u0000\u0012\u0011\b<\u0012\u0006\u0010\u00cf\u00e8\u0097\u00a8\u0006\"\u000539599\u0012\u0011\b=\u0012\u0006\u0010\u00a0\u00e9\u0097\u00a8\u0006\"\u000545011\u0012\u0011\b>\u0012\u0006\u0010\u0089\u00ea\u0097\u00a8\u0006\"\u000539623\u0012\u0011\b?\u0012\u0006\u0010\u00bc\u00ea\u0097\u00a8\u0006\"\u000539624\u0012\u0011\b@\u0012\u0006\u0010\u00ff\u00ea\u0097\u00a8\u0006\"\u000590000\u0012\u0011\bA\u0012\u0006\u0010\u00b3\u00eb\u0097\u00a8\u0006\"\u000539628\u0012\u0011\bB\u0012\u0006\u0010\u0081\u00ec\u0097\u00a8\u0006\"\u000539631\u0012\u0011\bC\u0012\u0006\u0010\u00b0\u00ec\u0097\u00a8\u0006\"\u000549311\u0012\u0011\bD\u0012\u0006\u0010\u00e7\u00ec\u0097\u00a8\u0006\"\u000539634\u0012\u0011\bE\u0012\u0006\u0010\u0081\u00ed\u0097\u00a8\u0006\"\u000539635\u0012\u0011\bF\u0012\u0006\u0010\u00ae\u00ed\u0097\u00a8\u0006\"\u000539636\u0012\u0011\bG\u0012\u0006\u0010\u00e3\u00ed\u0097\u00a8\u0006\"\u000549503\u0012\u0011\bH\u0012\u0006\u0010\u00df\u00ee\u0097\u00a8\u0006\"\u000539637\u0012\u0011\bI\u0012\u0006\u0010\u008f\u00ef\u0097\u00a8\u0006\"\u000549317\u0012\u0011\bJ\u0012\u0006\u0010\u00ae\u00ef\u0097\u00a8\u0006\"\u000549318\u0012\u0011\bK\u0012\u0006\u0010\u00ee\u00ef\u0097\u00a8\u0006\"\u000549319\u0012\u0011\bL\u0012\u0006\u0010\u00ac\u00f0\u0097\u00a8\u0006\"\u000539641\u0012\u0011\bM\u0012\u0006\u0010\u0096\u00f2\u0097\u00a8\u0006\"\u000549323\u0012\u0011\bN\u0012\u0006\u0010\u00b8\u00f2\u0097\u00a8\u0006\"\u000549324\u0012\u0011\bO\u0012\u0006\u0010\u00de\u00f2\u0097\u00a8\u0006\"\u000549325\u0012\u0011\bP\u0012\u0006\u0010\u009b\u00f3\u0097\u00a8\u0006\"\u000549326\u0012\u0011\bQ\u0012\u0006\u0010\u00ba\u00f3\u0097\u00a8\u0006\"\u000537425\u0012\u0011\bR\u0012\u0006\u0010\u00df\u00f3\u0097\u00a8\u0006\"\u000537426\u0012\u0011\bS\u0012\u0006\u0010\u0081\u00f4\u0097\u00a8\u0006\"\u000537427\u0012\u0013\bT\u0012\u0006\u0010\u00b9\u00f4\u0097\u00a8\u0006\"\u00078606049\u0012\u0011\bU\u0012\u0006\u0010\u00ed\u00f4\u0097\u00a8\u0006\"\u000537428\u0012\u0011\bV\u0012\u0006\u0010\u008d\u00f5\u0097\u00a8\u0006\"\u000537429\u0012\u0011\bW\u0012\u0006\u0010\u00b6\u00f5\u0097\u00a8\u0006\"\u000537430\u0012\u0011\bX\u0012\u0006\u0010\u00d7\u00f5\u0097\u00a8\u0006\"\u000537431\u0012\u0011\bY\u0012\u0006\u0010\u00f5\u00f5\u0097\u00a8\u0006\"\u000537432\u0012\u0011\bZ\u0012\u0006\u0010\u00db\u00f6\u0097\u00a8\u0006\"\u000537433\u0012\u0011\b[\u0012\u0006\u0010\u00b7\u00f7\u0097\u00a8\u0006\"\u000537434\u0012\u0011\b\\\u0012\u0006\u0010\u00cb\u00f7\u0097\u00a8\u0006\"\u000537435\u0012\u0011\b]\u0012\u0006\u0010\u0084\u00f8\u0097\u00a8\u0006\"\u000537436\u0012\u0011\b^\u0012\u0006\u0010\u00cb\u00f8\u0097\u00a8\u0006\"\u000537437\u0012\u0011\b_\u0012\u0006\u0010\u0083\u00f9\u0097\u00a8\u0006\"\u000549337\u0012\u0011\b`\u0012\u0006\u0010\u00a1\u00f9\u0097\u00a8\u0006\"\u000539661\u0012\u0011\ba\u0012\u0006\u0010\u00d7\u00f9\u0097\u00a8\u0006\"\u000539662\u0012\u0011\bb\u0012\u0006\u0010\u0094\u00fa\u0097\u00a8\u0006\"\u000539663\u0012\u0011\bc\u0012\u0006\u0010\u00c1\u00fa\u0097\u00a8\u0006\"\u000549341\u0012\u0011\bd\u0012\u0006\u0010\u00f4\u00fa\u0097\u00a8\u0006\"\u000549342\u0012\u0011\be\u0012\u0006\u0010\u00df\u00fb\u0097\u00a8\u0006\"\u000549343\u0012\u0011\bf\u0012\u0006\u0010\u00ba\u00fd\u0097\u00a8\u0006\"\u000549344\u0012\u0011\bg\u0012\u0006\u0010\u00f7\u00fe\u0097\u00a8\u0006\"\u000549345\u0012\u0011\bh\u0012\u0006\u0010\u00cb\u0080\u0098\u00a8\u0006\"\u000549346\u0012\u0011\bi\u0012\u0006\u0010\u0097\u0081\u0098\u00a8\u0006\"\u000549347\u0012\u0011\bj\u0012\u0006\u0010\u00cc\u0083\u0098\u00a8\u0006\"\u000549348\u0012\u0011\bk\u0012\u0006\u0010\u00d4\u0085\u0098\u00a8\u0006\"\u000542250\u001a\b\u001a\u0006KLJL33 \u00cb\u00e8\u0097\u00a8\u0006\"`\n/\n\u001020256-701ff27f-2\u0012\b14:45:00\u001a\b20230916 \u0000*\u00035900\u0000\u0012\u001d\r\u00d5F\u0013\u00c2\u0015\u00df\u0012\u0092\u00c2\u001d\u0000\u0000\u0017C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00ab\u00aa:A(\u00cb\u00e8\u0097\u00a8\u0006B\b\u001a\u0006KLJL33" + }, + { + "type": "con_recorrido", + "entity": "\n$4bb4bdbf-5e75-42ee-b66b-9a74e2daf707\u001a\u00b0\u0006\n/\n\u001020180-701ff27f-2\u0012\b14:46:00\u001a\b20230916 \u0000*\u00035900\u0001\u0012\u0011\bC\u0012\u0006\u0010\u00b3\u00e8\u0097\u00a8\u0006\"\u000535710\u0012\u0011\bD\u0012\u0006\u0010\u00e3\u00e8\u0097\u00a8\u0006\"\u000550036\u0012\u0011\bE\u0012\u0006\u0010\u00d3\u00ea\u0097\u00a8\u0006\"\u000550037\u0012\u0011\bF\u0012\u0006\u0010\u00e4\u00eb\u0097\u00a8\u0006\"\u000550038\u0012\u0011\bG\u0012\u0006\u0010\u00b0\u00ec\u0097\u00a8\u0006\"\u000550039\u0012\u0011\bH\u0012\u0006\u0010\u00eb\u00ec\u0097\u00a8\u0006\"\u000550040\u0012\u0011\bI\u0012\u0006\u0010\u00c2\u00ed\u0097\u00a8\u0006\"\u000550041\u0012\u0012\bJ\u0012\u0006\u0010\u00ce\u00ee\u0097\u00a8\u0006\"\u0006Jun-15\u0012\u0012\bK\u0012\u0006\u0010\u00a6\u00ef\u0097\u00a8\u0006\"\u0006Jun-13\u0012\u0011\bL\u0012\u0006\u0010\u00e3\u00f0\u0097\u00a8\u0006\"\u00056-Oct\u0012\u0011\bM\u0012\u0006\u0010\u009a\u00f1\u0097\u00a8\u0006\"\u00056-Aug\u0012\u0011\bN\u0012\u0006\u0010\u00b4\u00f2\u0097\u00a8\u0006\"\u00056-Jun\u0012\u0011\bO\u0012\u0006\u0010\u00a6\u00f3\u0097\u00a8\u0006\"\u00056-Feb\u0012\u0011\bP\u0012\u0006\u0010\u00b5\u00f4\u0097\u00a8\u0006\"\u00057-Jul\u0012\u0011\bQ\u0012\u0006\u0010\u00f6\u00f4\u0097\u00a8\u0006\"\u00057-May\u0012\u0013\bR\u0012\u0006\u0010\u0094\u00f5\u0097\u00a8\u0006\"\u00071508142\u0012\u0011\bS\u0012\u0006\u0010\u0081\u00f6\u0097\u00a8\u0006\"\u00057-Feb\u0012\u0011\bT\u0012\u0006\u0010\u00c2\u00f6\u0097\u00a8\u0006\"\u00058-Jan\u0012\u0011\bU\u0012\u0006\u0010\u00e2\u00f6\u0097\u00a8\u0006\"\u00059-Jan\u0012\u0012\bV\u0012\u0006\u0010\u008c\u00f7\u0097\u00a8\u0006\"\u000610-Apr\u0012\u0012\bW\u0012\u0006\u0010\u00c9\u00f7\u0097\u00a8\u0006\"\u000610-Jan\u0012\u0011\bX\u0012\u0006\u0010\u00f5\u00f7\u0097\u00a8\u0006\"\u000544863\u0012\u0012\bY\u0012\u0006\u0010\u0096\u00f8\u0097\u00a8\u0006\"\u000610-Mar\u0012\u0012\bZ\u0012\u0006\u0010\u00d2\u00f8\u0097\u00a8\u0006\"\u000611-Jan\u0012\u0011\b[\u0012\u0006\u0010\u0089\u00f9\u0097\u00a8\u0006\"\u000544866\u0012\u0011\b\\\u0012\u0006\u0010\u00b3\u00f9\u0097\u00a8\u0006\"\u000544867\u0012\u0011\b]\u0012\u0006\u0010\u00d0\u00f9\u0097\u00a8\u0006\"\u000544868\u0012\u0011\b^\u0012\u0006\u0010\u00ee\u00f9\u0097\u00a8\u0006\"\u000544869\u0012\u0011\b_\u0012\u0006\u0010\u0092\u00fa\u0097\u00a8\u0006\"\u000544870\u0012\u0011\b`\u0012\u0006\u0010\u00b7\u00fa\u0097\u00a8\u0006\"\u000544871\u0012\u0011\ba\u0012\u0006\u0010\u00e4\u00fa\u0097\u00a8\u0006\"\u000544872\u0012\u0011\bb\u0012\u0006\u0010\u00ad\u00fb\u0097\u00a8\u0006\"\u000550020\u0012\u0011\bc\u0012\u0006\u0010\u0091\u00fc\u0097\u00a8\u0006\"\u000514-11\u0012\u0011\bd\u0012\u0006\u0010\u00bc\u00fc\u0097\u00a8\u0006\"\u000591162\u0012\u0011\be\u0012\u0006\u0010\u00a0\u00fd\u0097\u00a8\u0006\"\u000550023\u0012\u0012\bf\u0012\u0006\u0010\u009b\u00fe\u0097\u00a8\u0006\"\u000614-Jul\u0012\u0012\bg\u0012\u0006\u0010\u00ca\u00fe\u0097\u00a8\u0006\"\u000614-Apr\u0012\u0011\bh\u0012\u0006\u0010\u0086\u00ff\u0097\u00a8\u0006\"\u000537474\u0012\u0011\bi\u0012\u0006\u0010\u00c5\u00ff\u0097\u00a8\u0006\"\u000544879\u001a\b\u001a\u0006SWPX84 \u00ac\u00e8\u0097\u00a8\u0006\"`\n/\n\u001020180-701ff27f-2\u0012\b14:46:00\u001a\b20230916 \u0000*\u00035900\u0001\u0012\u001d\r\u00dfB\u0013\u00c2\u0015\u0014\u0010\u0092\u00c2\u001d\u0000\u0000\u0010B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00c7q\u00cc@(\u00ac\u00e8\u0097\u00a8\u0006B\b\u001a\u0006SWPX84" + }, + { + "type": "con_recorrido", + "entity": "\n$20bc1f0b-d12d-4e05-9ebb-a04b3fc6ed73\u001a\u00f0\u000b\n/\n\u001020410-701ff27f-2\u0012\b15:15:00\u001a\b20230916 \u0000*\u00035910\u0000\u0012\u0011\b\u0018\u0012\u0006\u0010\u00f6\u00e8\u0097\u00a8\u0006\"\u000550017\u0012\u0011\b\u0019\u0012\u0006\u0010\u00a1\u00e9\u0097\u00a8\u0006\"\u000545054\u0012\u0011\b\u001a\u0012\u0006\u0010\u008b\u00ea\u0097\u00a8\u0006\"\u000545055\u0012\u0011\b\u001b\u0012\u0006\u0010\u00b5\u00ea\u0097\u00a8\u0006\"\u000545056\u0012\u0011\b\u001c\u0012\u0006\u0010\u00fb\u00ea\u0097\u00a8\u0006\"\u000545057\u0012\u0011\b\u001d\u0012\u0006\u0010\u0081\u00eb\u0097\u00a8\u0006\"\u000544958\u0012\u0013\b\u001e\u0012\u0006\u0010\u00b9\u00eb\u0097\u00a8\u0006\"\u00071508146\u0012\u0011\b\u001f\u0012\u0006\u0010\u00e8\u00eb\u0097\u00a8\u0006\"\u000544957\u0012\u0011\b \u0012\u0006\u0010\u008b\u00ec\u0097\u00a8\u0006\"\u000544956\u0012\u0011\b!\u0012\u0006\u0010\u009c\u00ec\u0097\u00a8\u0006\"\u000545060\u0012\u0011\b\"\u0012\u0006\u0010\u008b\u00ed\u0097\u00a8\u0006\"\u00056-Jan\u0012\u0011\b#\u0012\u0006\u0010\u00ce\u00ed\u0097\u00a8\u0006\"\u00056-Mar\u0012\u0011\b$\u0012\u0006\u0010\u00b2\u00ee\u0097\u00a8\u0006\"\u00056-May\u0012\u0011\b%\u0012\u0006\u0010\u00c7\u00ef\u0097\u00a8\u0006\"\u00056-Jul\u0012\u0011\b&\u0012\u0006\u0010\u0088\u00f0\u0097\u00a8\u0006\"\u00056-Sep\u0012\u0011\b'\u0012\u0006\u0010\u00d8\u00f0\u0097\u00a8\u0006\"\u00056-Nov\u0012\u0011\b(\u0012\u0006\u0010\u00c4\u00f1\u0097\u00a8\u0006\"\u00056-Dec\u0012\u0012\b)\u0012\u0006\u0010\u009d\u00f2\u0097\u00a8\u0006\"\u0006Jun-14\u0012\u0012\b*\u0012\u0006\u0010\u00b0\u00f3\u0097\u00a8\u0006\"\u0006Jun-17\u0012\u0012\b+\u0012\u0006\u0010\u00fe\u00f3\u0097\u00a8\u0006\"\u0006Jun-19\u0012\u0012\b,\u0012\u0006\u0010\u00ba\u00f4\u0097\u00a8\u0006\"\u0006Jun-20\u0012\u0012\b-\u0012\u0006\u0010\u00f7\u00f4\u0097\u00a8\u0006\"\u0006Jun-22\u0012\u0012\b.\u0012\u0006\u0010\u00b8\u00f5\u0097\u00a8\u0006\"\u0006Jun-24\u0012\u0012\b/\u0012\u0006\u0010\u0093\u00f6\u0097\u00a8\u0006\"\u0006Jun-25\u0012\u0011\b0\u0012\u0006\u0010\u00bf\u00f8\u0097\u00a8\u0006\"\u000590003\u0012\u0011\b1\u0012\u0006\u0010\u00f1\u00f8\u0097\u00a8\u0006\"\u000590007\u0012\u0011\b2\u0012\u0006\u0010\u00a8\u00f9\u0097\u00a8\u0006\"\u000590008\u0012\u0011\b3\u0012\u0006\u0010\u00a2\u00fa\u0097\u00a8\u0006\"\u000539599\u0012\u0011\b4\u0012\u0006\u0010\u00f8\u00fa\u0097\u00a8\u0006\"\u000545011\u0012\u0011\b5\u0012\u0006\u0010\u00eb\u00fb\u0097\u00a8\u0006\"\u000539623\u0012\u0011\b6\u0012\u0006\u0010\u00a5\u00fc\u0097\u00a8\u0006\"\u000539624\u0012\u0011\b7\u0012\u0006\u0010\u00f3\u00fc\u0097\u00a8\u0006\"\u000590000\u0012\u0011\b8\u0012\u0006\u0010\u00b1\u00fd\u0097\u00a8\u0006\"\u000539628\u0012\u0011\b9\u0012\u0006\u0010\u0090\u00fe\u0097\u00a8\u0006\"\u000539631\u0012\u0011\b:\u0012\u0006\u0010\u00cc\u00fe\u0097\u00a8\u0006\"\u000549311\u0012\u0011\b;\u0012\u0006\u0010\u0090\u00ff\u0097\u00a8\u0006\"\u000539634\u0012\u0011\b<\u0012\u0006\u0010\u00b4\u00ff\u0097\u00a8\u0006\"\u000539635\u0012\u0011\b=\u0012\u0006\u0010\u00f1\u00ff\u0097\u00a8\u0006\"\u000539636\u0012\u0011\b>\u0012\u0006\u0010\u00b8\u0080\u0098\u00a8\u0006\"\u000549503\u0012\u0011\b?\u0012\u0006\u0010\u00e7\u0081\u0098\u00a8\u0006\"\u000539637\u0012\u0011\b@\u0012\u0006\u0010\u00ae\u0082\u0098\u00a8\u0006\"\u000549317\u0012\u0011\bA\u0012\u0006\u0010\u00db\u0082\u0098\u00a8\u0006\"\u000549318\u0012\u0011\bB\u0012\u0006\u0010\u00bc\u0083\u0098\u00a8\u0006\"\u000549319\u0012\u0011\bC\u0012\u0006\u0010\u009d\u0084\u0098\u00a8\u0006\"\u000539641\u0012\u0011\bD\u0012\u0006\u0010\u00d3\u0084\u0098\u00a8\u0006\"\u000539642\u0012\u0011\bE\u0012\u0006\u0010\u0095\u0087\u0098\u00a8\u0006\"\u000549323\u0012\u0011\bF\u0012\u0006\u0010\u00dd\u0087\u0098\u00a8\u0006\"\u000549324\u0012\u0011\bG\u0012\u0006\u0010\u00a0\u0088\u0098\u00a8\u0006\"\u000549325\u0012\u0011\bH\u0012\u0006\u0010\u0090\u0089\u0098\u00a8\u0006\"\u000549326\u0012\u0011\bI\u0012\u0006\u0010\u00c8\u0089\u0098\u00a8\u0006\"\u000537425\u0012\u0011\bJ\u0012\u0006\u0010\u008d\u008a\u0098\u00a8\u0006\"\u000537426\u0012\u0011\bK\u0012\u0006\u0010\u00e0\u008a\u0098\u00a8\u0006\"\u000537427\u0012\u0013\bL\u0012\u0006\u0010\u00c0\u008b\u0098\u00a8\u0006\"\u00078606049\u0012\u0011\bM\u0012\u0006\u0010\u009d\u008c\u0098\u00a8\u0006\"\u000537428\u0012\u0011\bN\u0012\u0006\u0010\u00f0\u008c\u0098\u00a8\u0006\"\u000537429\u0012\u0011\bO\u0012\u0006\u0010\u00b1\u008d\u0098\u00a8\u0006\"\u000537430\u0012\u0011\bP\u0012\u0006\u0010\u00f7\u008d\u0098\u00a8\u0006\"\u000537431\u0012\u0011\bQ\u0012\u0006\u0010\u00a2\u008e\u0098\u00a8\u0006\"\u000537432\u0012\u0011\bR\u0012\u0006\u0010\u0096\u0090\u0098\u00a8\u0006\"\u000537433\u0012\u0011\bS\u0012\u0006\u0010\u00ea\u0091\u0098\u00a8\u0006\"\u000537434\u0012\u0011\bT\u0012\u0006\u0010\u0099\u0092\u0098\u00a8\u0006\"\u000537435\u0012\u0011\bU\u0012\u0006\u0010\u009f\u0093\u0098\u00a8\u0006\"\u000537436\u0012\u0011\bV\u0012\u0006\u0010\u00cc\u0094\u0098\u00a8\u0006\"\u000537437\u0012\u0011\bW\u0012\u0006\u0010\u00d9\u0095\u0098\u00a8\u0006\"\u000549337\u0012\u0011\bX\u0012\u0006\u0010\u00a5\u0096\u0098\u00a8\u0006\"\u000539661\u0012\u0011\bY\u0012\u0006\u0010\u00b3\u0097\u0098\u00a8\u0006\"\u000539662\u0012\u0011\bZ\u0012\u0006\u0010\u00c9\u0098\u0098\u00a8\u0006\"\u000539663\u0012\u0011\b[\u0012\u0006\u0010\u00e4\u0099\u0098\u00a8\u0006\"\u000549341\u0012\u0011\b\\\u0012\u0006\u0010\u00e3\u009a\u0098\u00a8\u0006\"\u000549342\u0012\u0011\b]\u0012\u0006\u0010\u0095\u009d\u0098\u00a8\u0006\"\u000549343\u0012\u0011\b^\u0012\u0006\u0010\u00c1\u00a2\u0098\u00a8\u0006\"\u000549344\u0012\u0011\b_\u0012\u0006\u0010\u00ad\u00a7\u0098\u00a8\u0006\"\u000549345\u0012\u0011\b`\u0012\u0006\u0010\u00e1\u00ad\u0098\u00a8\u0006\"\u000549346\u0012\u0011\ba\u0012\u0006\u0010\u0089\u00b0\u0098\u00a8\u0006\"\u000549347\u0012\u0011\bb\u0012\u0006\u0010\u00e6\u00ba\u0098\u00a8\u0006\"\u000549348\u0012\u0011\bc\u0012\u0006\u0010\u00b0\u00c5\u0098\u00a8\u0006\"\u000542250\u001a\b\u001a\u0006BTRB54 \u00c3\u00e8\u0097\u00a8\u0006\"`\n/\n\u001020410-701ff27f-2\u0012\b15:15:00\u001a\b20230916 \u0000*\u00035910\u0000\u0012\u001d\rf\u00f5\u0012\u00c2\u0015K\u00fb\u0091\u00c2\u001d\u0000\u0000oC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c3\u00e8\u0097\u00a8\u0006B\b\u001a\u0006BTRB54" + }, + { + "type": "con_recorrido", + "entity": "\n$856ff56f-3f7e-42ad-b76b-79982816738a\u001a\u0083\t\n/\n\u001020409-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00035910\u0000\u0012\u0012\b+\u0012\u0006\u0010\u00b0\u00e8\u0097\u00a8\u0006\"\u0006Jun-19\u0012\u0012\b,\u0012\u0006\u0010\u00f0\u00e8\u0097\u00a8\u0006\"\u0006Jun-20\u0012\u0012\b-\u0012\u0006\u0010\u00b0\u00e9\u0097\u00a8\u0006\"\u0006Jun-22\u0012\u0012\b.\u0012\u0006\u0010\u00f4\u00e9\u0097\u00a8\u0006\"\u0006Jun-24\u0012\u0012\b/\u0012\u0006\u0010\u00d0\u00ea\u0097\u00a8\u0006\"\u0006Jun-25\u0012\u0011\b0\u0012\u0006\u0010\u00f0\u00ec\u0097\u00a8\u0006\"\u000590003\u0012\u0011\b1\u0012\u0006\u0010\u009d\u00ed\u0097\u00a8\u0006\"\u000590007\u0012\u0011\b2\u0012\u0006\u0010\u00cf\u00ed\u0097\u00a8\u0006\"\u000590008\u0012\u0011\b3\u0012\u0006\u0010\u00bb\u00ee\u0097\u00a8\u0006\"\u000539599\u0012\u0011\b4\u0012\u0006\u0010\u0085\u00ef\u0097\u00a8\u0006\"\u000545011\u0012\u0011\b5\u0012\u0006\u0010\u00e6\u00ef\u0097\u00a8\u0006\"\u000539623\u0012\u0011\b6\u0012\u0006\u0010\u0095\u00f0\u0097\u00a8\u0006\"\u000539624\u0012\u0011\b7\u0012\u0006\u0010\u00d5\u00f0\u0097\u00a8\u0006\"\u000590000\u0012\u0011\b8\u0012\u0006\u0010\u0086\u00f1\u0097\u00a8\u0006\"\u000539628\u0012\u0011\b9\u0012\u0006\u0010\u00d1\u00f1\u0097\u00a8\u0006\"\u000539631\u0012\u0011\b:\u0012\u0006\u0010\u0080\u00f2\u0097\u00a8\u0006\"\u000549311\u0012\u0011\b;\u0012\u0006\u0010\u00b4\u00f2\u0097\u00a8\u0006\"\u000539634\u0012\u0011\b<\u0012\u0006\u0010\u00cf\u00f2\u0097\u00a8\u0006\"\u000539635\u0012\u0011\b=\u0012\u0006\u0010\u00fc\u00f2\u0097\u00a8\u0006\"\u000539636\u0012\u0011\b>\u0012\u0006\u0010\u00b1\u00f3\u0097\u00a8\u0006\"\u000549503\u0012\u0011\b?\u0012\u0006\u0010\u00af\u00f4\u0097\u00a8\u0006\"\u000539637\u0012\u0011\b@\u0012\u0006\u0010\u00e1\u00f4\u0097\u00a8\u0006\"\u000549317\u0012\u0011\bA\u0012\u0006\u0010\u0080\u00f5\u0097\u00a8\u0006\"\u000549318\u0012\u0011\bB\u0012\u0006\u0010\u00c3\u00f5\u0097\u00a8\u0006\"\u000549319\u0012\u0011\bC\u0012\u0006\u0010\u0084\u00f6\u0097\u00a8\u0006\"\u000539641\u0012\u0011\bD\u0012\u0006\u0010\u00a8\u00f6\u0097\u00a8\u0006\"\u000539642\u0012\u0011\bE\u0012\u0006\u0010\u00f8\u00f7\u0097\u00a8\u0006\"\u000549323\u0012\u0011\bF\u0012\u0006\u0010\u00a5\u00f8\u0097\u00a8\u0006\"\u000549324\u0012\u0011\bG\u0012\u0006\u0010\u00cf\u00f8\u0097\u00a8\u0006\"\u000549325\u0012\u0011\bH\u0012\u0006\u0010\u0093\u00f9\u0097\u00a8\u0006\"\u000549326\u0012\u0011\bI\u0012\u0006\u0010\u00b5\u00f9\u0097\u00a8\u0006\"\u000537425\u0012\u0011\bJ\u0012\u0006\u0010\u00de\u00f9\u0097\u00a8\u0006\"\u000537426\u0012\u0011\bK\u0012\u0006\u0010\u008f\u00fa\u0097\u00a8\u0006\"\u000537427\u0012\u0013\bL\u0012\u0006\u0010\u00c7\u00fa\u0097\u00a8\u0006\"\u00078606049\u0012\u0011\bM\u0012\u0006\u0010\u00fd\u00fa\u0097\u00a8\u0006\"\u000537428\u0012\u0011\bN\u0012\u0006\u0010\u00ac\u00fb\u0097\u00a8\u0006\"\u000537429\u0012\u0011\bO\u0012\u0006\u0010\u00d0\u00fb\u0097\u00a8\u0006\"\u000537430\u0012\u0011\bP\u0012\u0006\u0010\u00f7\u00fb\u0097\u00a8\u0006\"\u000537431\u0012\u0011\bQ\u0012\u0006\u0010\u008f\u00fc\u0097\u00a8\u0006\"\u000537432\u0012\u0011\bR\u0012\u0006\u0010\u0093\u00fd\u0097\u00a8\u0006\"\u000537433\u0012\u0011\bS\u0012\u0006\u0010\u0082\u00fe\u0097\u00a8\u0006\"\u000537434\u0012\u0011\bT\u0012\u0006\u0010\u009b\u00fe\u0097\u00a8\u0006\"\u000537435\u0012\u0011\bU\u0012\u0006\u0010\u00df\u00fe\u0097\u00a8\u0006\"\u000537436\u0012\u0011\bV\u0012\u0006\u0010\u00b6\u00ff\u0097\u00a8\u0006\"\u000537437\u0012\u0011\bW\u0012\u0006\u0010\u00fb\u00ff\u0097\u00a8\u0006\"\u000549337\u0012\u0011\bX\u0012\u0006\u0010\u00a0\u0080\u0098\u00a8\u0006\"\u000539661\u0012\u0011\bY\u0012\u0006\u0010\u00e4\u0080\u0098\u00a8\u0006\"\u000539662\u0012\u0011\bZ\u0012\u0006\u0010\u00ab\u0081\u0098\u00a8\u0006\"\u000539663\u0012\u0011\b[\u0012\u0006\u0010\u00f2\u0081\u0098\u00a8\u0006\"\u000549341\u0012\u0011\b\\\u0012\u0006\u0010\u00ac\u0082\u0098\u00a8\u0006\"\u000549342\u0012\u0011\b]\u0012\u0006\u0010\u00b4\u0083\u0098\u00a8\u0006\"\u000549343\u0012\u0011\b^\u0012\u0006\u0010\u00d4\u0085\u0098\u00a8\u0006\"\u000549344\u0012\u0011\b_\u0012\u0006\u0010\u00c9\u0087\u0098\u00a8\u0006\"\u000549345\u0012\u0011\b`\u0012\u0006\u0010\u00f6\u0089\u0098\u00a8\u0006\"\u000549346\u0012\u0011\ba\u0012\u0006\u0010\u00dd\u008a\u0098\u00a8\u0006\"\u000549347\u0012\u0011\bb\u0012\u0006\u0010\u0099\u008e\u0098\u00a8\u0006\"\u000549348\u0012\u0011\bc\u0012\u0006\u0010\u00a0\u0091\u0098\u00a8\u0006\"\u000542250\u001a\b\u001a\u0006DJZT67 \u00a0\u00e8\u0097\u00a8\u0006\"`\n/\n\u001020409-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00035910\u0000\u0012\u001d\r\u00b4)\u0013\u00c2\u0015\u00bf\f\u0092\u00c2\u001d\u0000\u0000HC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u001c\u00c7YA(\u00a0\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DJZT67" + }, + { + "type": "con_recorrido", + "entity": "\n$63018140-a8df-409e-ad2e-d0c4dffa1f18\u001a\u00d6\u0006\n/\n\u001020331-701ff27f-2\u0012\b14:30:00\u001a\b20230916 \u0000*\u00035910\u0001\u0012\u0011\b6\u0012\u0006\u0010\u00f1\u00e8\u0097\u00a8\u0006\"\u000538500\u0012\u0011\b7\u0012\u0006\u0010\u00a1\u00e9\u0097\u00a8\u0006\"\u000535808\u0012\u0011\b8\u0012\u0006\u0010\u00df\u00e9\u0097\u00a8\u0006\"\u000535710\u0012\u0011\b9\u0012\u0006\u0010\u008d\u00ea\u0097\u00a8\u0006\"\u000550036\u0012\u0011\b:\u0012\u0006\u0010\u00f6\u00eb\u0097\u00a8\u0006\"\u000550037\u0012\u0011\b;\u0012\u0006\u0010\u0087\u00ed\u0097\u00a8\u0006\"\u000550038\u0012\u0011\b<\u0012\u0006\u0010\u00d3\u00ed\u0097\u00a8\u0006\"\u000550039\u0012\u0011\b=\u0012\u0006\u0010\u008a\u00ee\u0097\u00a8\u0006\"\u000550040\u0012\u0011\b>\u0012\u0006\u0010\u00e2\u00ee\u0097\u00a8\u0006\"\u000550041\u0012\u0012\b?\u0012\u0006\u0010\u00e8\u00ef\u0097\u00a8\u0006\"\u0006Jun-15\u0012\u0012\b@\u0012\u0006\u0010\u00c6\u00f0\u0097\u00a8\u0006\"\u0006Jun-13\u0012\u0011\bA\u0012\u0006\u0010\u0083\u00f2\u0097\u00a8\u0006\"\u00056-Oct\u0012\u0011\bB\u0012\u0006\u0010\u00bd\u00f2\u0097\u00a8\u0006\"\u00056-Aug\u0012\u0011\bC\u0012\u0006\u0010\u00d4\u00f3\u0097\u00a8\u0006\"\u00056-Jun\u0012\u0011\bD\u0012\u0006\u0010\u00cf\u00f4\u0097\u00a8\u0006\"\u00056-Feb\u0012\u0011\bE\u0012\u0006\u0010\u00d8\u00f5\u0097\u00a8\u0006\"\u00057-Jul\u0012\u0011\bF\u0012\u0006\u0010\u009b\u00f6\u0097\u00a8\u0006\"\u00057-May\u0012\u0013\bG\u0012\u0006\u0010\u00bf\u00f6\u0097\u00a8\u0006\"\u00071508142\u0012\u0011\bH\u0012\u0006\u0010\u00ab\u00f7\u0097\u00a8\u0006\"\u00057-Feb\u0012\u0011\bI\u0012\u0006\u0010\u00ea\u00f7\u0097\u00a8\u0006\"\u00058-Jan\u0012\u0011\bJ\u0012\u0006\u0010\u008b\u00f8\u0097\u00a8\u0006\"\u00059-Jan\u0012\u0012\bK\u0012\u0006\u0010\u00b6\u00f8\u0097\u00a8\u0006\"\u000610-Apr\u0012\u0012\bL\u0012\u0006\u0010\u00f4\u00f8\u0097\u00a8\u0006\"\u000610-Jan\u0012\u0011\bM\u0012\u0006\u0010\u00a1\u00f9\u0097\u00a8\u0006\"\u000544863\u0012\u0012\bN\u0012\u0006\u0010\u00c4\u00f9\u0097\u00a8\u0006\"\u000610-Mar\u0012\u0012\bO\u0012\u0006\u0010\u0081\u00fa\u0097\u00a8\u0006\"\u000611-Jan\u0012\u0011\bP\u0012\u0006\u0010\u00b9\u00fa\u0097\u00a8\u0006\"\u000544866\u0012\u0011\bQ\u0012\u0006\u0010\u00e5\u00fa\u0097\u00a8\u0006\"\u000544867\u0012\u0011\bR\u0012\u0006\u0010\u0083\u00fb\u0097\u00a8\u0006\"\u000544868\u0012\u0011\bS\u0012\u0006\u0010\u00a1\u00fb\u0097\u00a8\u0006\"\u000544869\u0012\u0011\bT\u0012\u0006\u0010\u00c7\u00fb\u0097\u00a8\u0006\"\u000544870\u0012\u0011\bU\u0012\u0006\u0010\u00ed\u00fb\u0097\u00a8\u0006\"\u000544871\u0012\u0011\bV\u0012\u0006\u0010\u009c\u00fc\u0097\u00a8\u0006\"\u000544872\u0012\u0011\bW\u0012\u0006\u0010\u00e7\u00fc\u0097\u00a8\u0006\"\u000550020\u0012\u0011\bX\u0012\u0006\u0010\u00cb\u00fd\u0097\u00a8\u0006\"\u000514-11\u0012\u0011\bY\u0012\u0006\u0010\u00fe\u00fd\u0097\u00a8\u0006\"\u000591162\u0012\u0011\bZ\u0012\u0006\u0010\u00e3\u00fe\u0097\u00a8\u0006\"\u000550023\u0012\u0012\b[\u0012\u0006\u0010\u00e3\u00ff\u0097\u00a8\u0006\"\u000614-Jul\u0012\u0012\b\\\u0012\u0006\u0010\u0094\u0080\u0098\u00a8\u0006\"\u000614-Apr\u0012\u0011\b]\u0012\u0006\u0010\u00d3\u0080\u0098\u00a8\u0006\"\u000537474\u0012\u0011\b^\u0012\u0006\u0010\u0094\u0081\u0098\u00a8\u0006\"\u000544879\u001a\b\u001a\u0006DKYW12 \u00c9\u00e8\u0097\u00a8\u0006\"`\n/\n\u001020331-701ff27f-2\u0012\b14:30:00\u001a\b20230916 \u0000*\u00035910\u0001\u0012\u001d\r)E\u0013\u00c2\u0015c\u0013\u0092\u00c2\u001d\u0000\u0000lB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-r\u001c\u00e7@(\u00c9\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DKYW12" + }, + { + "type": "con_recorrido", + "entity": "\n$adea44f7-50cc-49b3-aa67-17a3fecdfba5\u001a\u0087\u0007\n/\n\u001020408-701ff27f-2\u0012\b14:45:00\u001a\b20230916 \u0000*\u00035910\u0000\u0012\u0011\b8\u0012\u0006\u0010\u00a3\u00e8\u0097\u00a8\u0006\"\u000539628\u0012\u0011\b9\u0012\u0006\u0010\u00f5\u00e8\u0097\u00a8\u0006\"\u000539631\u0012\u0011\b:\u0012\u0006\u0010\u00a7\u00e9\u0097\u00a8\u0006\"\u000549311\u0012\u0011\b;\u0012\u0006\u0010\u00de\u00e9\u0097\u00a8\u0006\"\u000539634\u0012\u0011\b<\u0012\u0006\u0010\u00fc\u00e9\u0097\u00a8\u0006\"\u000539635\u0012\u0011\b=\u0012\u0006\u0010\u00ab\u00ea\u0097\u00a8\u0006\"\u000539636\u0012\u0011\b>\u0012\u0006\u0010\u00e2\u00ea\u0097\u00a8\u0006\"\u000549503\u0012\u0011\b?\u0012\u0006\u0010\u00e2\u00eb\u0097\u00a8\u0006\"\u000539637\u0012\u0011\b@\u0012\u0006\u0010\u0094\u00ec\u0097\u00a8\u0006\"\u000549317\u0012\u0011\bA\u0012\u0006\u0010\u00b3\u00ec\u0097\u00a8\u0006\"\u000549318\u0012\u0011\bB\u0012\u0006\u0010\u00f4\u00ec\u0097\u00a8\u0006\"\u000549319\u0012\u0011\bC\u0012\u0006\u0010\u00b3\u00ed\u0097\u00a8\u0006\"\u000539641\u0012\u0011\bD\u0012\u0006\u0010\u00d6\u00ed\u0097\u00a8\u0006\"\u000539642\u0012\u0011\bE\u0012\u0006\u0010\u0097\u00ef\u0097\u00a8\u0006\"\u000549323\u0012\u0011\bF\u0012\u0006\u0010\u00c0\u00ef\u0097\u00a8\u0006\"\u000549324\u0012\u0011\bG\u0012\u0006\u0010\u00e5\u00ef\u0097\u00a8\u0006\"\u000549325\u0012\u0011\bH\u0012\u0006\u0010\u00a2\u00f0\u0097\u00a8\u0006\"\u000549326\u0012\u0011\bI\u0012\u0006\u0010\u00c0\u00f0\u0097\u00a8\u0006\"\u000537425\u0012\u0011\bJ\u0012\u0006\u0010\u00e4\u00f0\u0097\u00a8\u0006\"\u000537426\u0012\u0011\bK\u0012\u0006\u0010\u008f\u00f1\u0097\u00a8\u0006\"\u000537427\u0012\u0013\bL\u0012\u0006\u0010\u00bf\u00f1\u0097\u00a8\u0006\"\u00078606049\u0012\u0011\bM\u0012\u0006\u0010\u00ed\u00f1\u0097\u00a8\u0006\"\u000537428\u0012\u0011\bN\u0012\u0006\u0010\u0094\u00f2\u0097\u00a8\u0006\"\u000537429\u0012\u0011\bO\u0012\u0006\u0010\u00b3\u00f2\u0097\u00a8\u0006\"\u000537430\u0012\u0011\bP\u0012\u0006\u0010\u00d3\u00f2\u0097\u00a8\u0006\"\u000537431\u0012\u0011\bQ\u0012\u0006\u0010\u00e7\u00f2\u0097\u00a8\u0006\"\u000537432\u0012\u0011\bR\u0012\u0006\u0010\u00d3\u00f3\u0097\u00a8\u0006\"\u000537433\u0012\u0011\bS\u0012\u0006\u0010\u00ac\u00f4\u0097\u00a8\u0006\"\u000537434\u0012\u0011\bT\u0012\u0006\u0010\u00c0\u00f4\u0097\u00a8\u0006\"\u000537435\u0012\u0011\bU\u0012\u0006\u0010\u00f5\u00f4\u0097\u00a8\u0006\"\u000537436\u0012\u0011\bV\u0012\u0006\u0010\u00b9\u00f5\u0097\u00a8\u0006\"\u000537437\u0012\u0011\bW\u0012\u0006\u0010\u00ee\u00f5\u0097\u00a8\u0006\"\u000549337\u0012\u0011\bX\u0012\u0006\u0010\u008a\u00f6\u0097\u00a8\u0006\"\u000539661\u0012\u0011\bY\u0012\u0006\u0010\u00be\u00f6\u0097\u00a8\u0006\"\u000539662\u0012\u0011\bZ\u0012\u0006\u0010\u00f2\u00f6\u0097\u00a8\u0006\"\u000539663\u0012\u0011\b[\u0012\u0006\u0010\u00a8\u00f7\u0097\u00a8\u0006\"\u000549341\u0012\u0011\b\\\u0012\u0006\u0010\u00d2\u00f7\u0097\u00a8\u0006\"\u000549342\u0012\u0011\b]\u0012\u0006\u0010\u00b5\u00f8\u0097\u00a8\u0006\"\u000549343\u0012\u0011\b^\u0012\u0006\u0010\u00ff\u00f9\u0097\u00a8\u0006\"\u000549344\u0012\u0011\b_\u0012\u0006\u0010\u00a6\u00fb\u0097\u00a8\u0006\"\u000549345\u0012\u0011\b`\u0012\u0006\u0010\u00ec\u00fc\u0097\u00a8\u0006\"\u000549346\u0012\u0011\ba\u0012\u0006\u0010\u00ae\u00fd\u0097\u00a8\u0006\"\u000549347\u0012\u0011\bb\u0012\u0006\u0010\u00c3\u00ff\u0097\u00a8\u0006\"\u000549348\u0012\u0011\bc\u0012\u0006\u0010\u00ac\u0081\u0098\u00a8\u0006\"\u000542250\u001a\b\u001a\u0006FHJF77 \u009a\u00e8\u0097\u00a8\u0006\"`\n/\n\u001020408-701ff27f-2\u0012\b14:45:00\u001a\b20230916 \u0000*\u00035910\u0000\u0012\u001d\rKN\u0013\u00c2\u0015M\u001b\u0092\u00c2\u001d\u0000\u0000tC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009a\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FHJF77" + }, + { + "type": "sin_recorrido", + "entity": "\n$0d7d082e-eef8-41ec-9ef8-a0eabe8cb2f3\"`\n/\n\u001020335-701ff27f-2\u0012\b15:30:00\u001a\b20230916 \u0000*\u00035910\u0001\u0012\u001d\r\u001f\f\u0013\u00c2\u0015\u0085<\u0092\u00c2\u001d\u0000\u0000\u00a8C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-r\u001c\u0017A(\u0090\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HYHP91" + }, + { + "type": "con_recorrido", + "entity": "\n$81a4de54-c212-4560-8291-eb3f0262e89a\u001a\u0092\u000b\n/\n\u001020334-701ff27f-2\u0012\b15:15:00\u001a\b20230916 \u0000*\u00035910\u0001\u0012\u0013\b\u0018\u0012\u0006\u0010\u00d6\u00e8\u0097\u00a8\u0006\"\u00074838438\u0012\u0011\b\u0019\u0012\u0006\u0010\u00ed\u00e9\u0097\u00a8\u0006\"\u000544896\u0012\u0011\b\u001a\u0012\u0006\u0010\u00a0\u00ea\u0097\u00a8\u0006\"\u000544897\u0012\u0011\b\u001b\u0012\u0006\u0010\u00eb\u00ea\u0097\u00a8\u0006\"\u000544898\u0012\u0011\b\u001c\u0012\u0006\u0010\u0096\u00ec\u0097\u00a8\u0006\"\u000540993\u0012\u0011\b\u001d\u0012\u0006\u0010\u00f9\u00ef\u0097\u00a8\u0006\"\u000540995\u0012\u0011\b\u001e\u0012\u0006\u0010\u00c7\u00f0\u0097\u00a8\u0006\"\u000540996\u0012\u0011\b\u001f\u0012\u0006\u0010\u0092\u00f1\u0097\u00a8\u0006\"\u000540997\u0012\u0011\b \u0012\u0006\u0010\u00cb\u00f1\u0097\u00a8\u0006\"\u000539614\u0012\u0011\b!\u0012\u0006\u0010\u00fa\u00f1\u0097\u00a8\u0006\"\u000539615\u0012\u0011\b\"\u0012\u0006\u0010\u00a9\u00f2\u0097\u00a8\u0006\"\u000539616\u0012\u0011\b#\u0012\u0006\u0010\u00df\u00f2\u0097\u00a8\u0006\"\u000539617\u0012\u0011\b$\u0012\u0006\u0010\u0098\u00f3\u0097\u00a8\u0006\"\u000539618\u0012\u0011\b%\u0012\u0006\u0010\u00c5\u00f3\u0097\u00a8\u0006\"\u000539619\u0012\u0011\b&\u0012\u0006\u0010\u00ee\u00f3\u0097\u00a8\u0006\"\u000539620\u0012\u0011\b'\u0012\u0006\u0010\u00b0\u00f4\u0097\u00a8\u0006\"\u000539621\u0012\u0011\b(\u0012\u0006\u0010\u00eb\u00f4\u0097\u00a8\u0006\"\u000539623\u0012\u0011\b)\u0012\u0006\u0010\u00ff\u00f5\u0097\u00a8\u0006\"\u000539627\u0012\u0011\b*\u0012\u0006\u0010\u00e2\u00f6\u0097\u00a8\u0006\"\u000539631\u0012\u0011\b+\u0012\u0006\u0010\u0093\u00f7\u0097\u00a8\u0006\"\u000549311\u0012\u0011\b,\u0012\u0006\u0010\u00ce\u00f7\u0097\u00a8\u0006\"\u000535796\u0012\u0011\b-\u0012\u0006\u0010\u0082\u00f8\u0097\u00a8\u0006\"\u000535797\u0012\u0011\b.\u0012\u0006\u0010\u00ae\u00f8\u0097\u00a8\u0006\"\u000535798\u0012\u0011\b/\u0012\u0006\u0010\u00d7\u00f8\u0097\u00a8\u0006\"\u000535799\u0012\u0011\b0\u0012\u0006\u0010\u00a3\u00f9\u0097\u00a8\u0006\"\u000535800\u0012\u0011\b1\u0012\u0006\u0010\u00d9\u00f9\u0097\u00a8\u0006\"\u000535801\u0012\u0011\b2\u0012\u0006\u0010\u00f5\u00f9\u0097\u00a8\u0006\"\u000535802\u0012\u0011\b3\u0012\u0006\u0010\u00ab\u00fa\u0097\u00a8\u0006\"\u000535803\u0012\u0011\b4\u0012\u0006\u0010\u00ea\u00fa\u0097\u00a8\u0006\"\u000538507\u0012\u0011\b5\u0012\u0006\u0010\u00a4\u00fb\u0097\u00a8\u0006\"\u000534473\u0012\u0011\b6\u0012\u0006\u0010\u00d7\u00fb\u0097\u00a8\u0006\"\u000538500\u0012\u0011\b7\u0012\u0006\u0010\u008d\u00fc\u0097\u00a8\u0006\"\u000535808\u0012\u0011\b8\u0012\u0006\u0010\u00d2\u00fc\u0097\u00a8\u0006\"\u000535710\u0012\u0011\b9\u0012\u0006\u0010\u0088\u00fd\u0097\u00a8\u0006\"\u000550036\u0012\u0011\b:\u0012\u0006\u0010\u00a8\u00ff\u0097\u00a8\u0006\"\u000550037\u0012\u0011\b;\u0012\u0006\u0010\u00eb\u0080\u0098\u00a8\u0006\"\u000550038\u0012\u0011\b<\u0012\u0006\u0010\u00d5\u0081\u0098\u00a8\u0006\"\u000550039\u0012\u0011\b=\u0012\u0006\u0010\u00a6\u0082\u0098\u00a8\u0006\"\u000550040\u0012\u0011\b>\u0012\u0006\u0010\u00aa\u0083\u0098\u00a8\u0006\"\u000550041\u0012\u0012\b?\u0012\u0006\u0010\u00fe\u0084\u0098\u00a8\u0006\"\u0006Jun-15\u0012\u0012\b@\u0012\u0006\u0010\u0099\u0086\u0098\u00a8\u0006\"\u0006Jun-13\u0012\u0011\bA\u0012\u0006\u0010\u00e8\u0088\u0098\u00a8\u0006\"\u00056-Oct\u0012\u0011\bB\u0012\u0006\u0010\u00d6\u0089\u0098\u00a8\u0006\"\u00056-Aug\u0012\u0011\bC\u0012\u0006\u0010\u0080\u008c\u0098\u00a8\u0006\"\u00056-Jun\u0012\u0011\bD\u0012\u0006\u0010\u0081\u008e\u0098\u00a8\u0006\"\u00056-Feb\u0012\u0011\bE\u0012\u0006\u0010\u00b3\u0090\u0098\u00a8\u0006\"\u00057-Jul\u0012\u0011\bF\u0012\u0006\u0010\u00ce\u0091\u0098\u00a8\u0006\"\u00057-May\u0012\u0013\bG\u0012\u0006\u0010\u00a6\u0092\u0098\u00a8\u0006\"\u00071508142\u0012\u0011\bH\u0012\u0006\u0010\u00af\u0094\u0098\u00a8\u0006\"\u00057-Feb\u0012\u0011\bI\u0012\u0006\u0010\u00d2\u0095\u0098\u00a8\u0006\"\u00058-Jan\u0012\u0011\bJ\u0012\u0006\u0010\u00a9\u0096\u0098\u00a8\u0006\"\u00059-Jan\u0012\u0012\bK\u0012\u0006\u0010\u009c\u0097\u0098\u00a8\u0006\"\u000610-Apr\u0012\u0012\bL\u0012\u0006\u0010\u00c6\u0098\u0098\u00a8\u0006\"\u000610-Jan\u0012\u0011\bM\u0012\u0006\u0010\u00c6\u0099\u0098\u00a8\u0006\"\u000544863\u0012\u0012\bN\u0012\u0006\u0010\u00a9\u009a\u0098\u00a8\u0006\"\u000610-Mar\u0012\u0012\bO\u0012\u0006\u0010\u00db\u009b\u0098\u00a8\u0006\"\u000611-Jan\u0012\u0011\bP\u0012\u0006\u0010\u0088\u009d\u0098\u00a8\u0006\"\u000544866\u0012\u0011\bQ\u0012\u0006\u0010\u008f\u009e\u0098\u00a8\u0006\"\u000544867\u0012\u0011\bR\u0012\u0006\u0010\u00ed\u009e\u0098\u00a8\u0006\"\u000544868\u0012\u0011\bS\u0012\u0006\u0010\u00ce\u009f\u0098\u00a8\u0006\"\u000544869\u0012\u0011\bT\u0012\u0006\u0010\u00c7\u00a0\u0098\u00a8\u0006\"\u000544870\u0012\u0011\bU\u0012\u0006\u0010\u00c8\u00a1\u0098\u00a8\u0006\"\u000544871\u0012\u0011\bV\u0012\u0006\u0010\u00e5\u00a2\u0098\u00a8\u0006\"\u000544872\u0012\u0011\bW\u0012\u0006\u0010\u00eb\u00a4\u0098\u00a8\u0006\"\u000550020\u0012\u0011\bX\u0012\u0006\u0010\u00d9\u00a7\u0098\u00a8\u0006\"\u000514-11\u0012\u0011\bY\u0012\u0006\u0010\u009b\u00a9\u0098\u00a8\u0006\"\u000591162\u0012\u0011\bZ\u0012\u0006\u0010\u00a9\u00ac\u0098\u00a8\u0006\"\u000550023\u0012\u0012\b[\u0012\u0006\u0010\u00c2\u00b0\u0098\u00a8\u0006\"\u000614-Jul\u0012\u0012\b\\\u0012\u0006\u0010\u0099\u00b2\u0098\u00a8\u0006\"\u000614-Apr\u0012\u0011\b]\u0012\u0006\u0010\u00b2\u00b4\u0098\u00a8\u0006\"\u000537474\u0012\u0011\b^\u0012\u0006\u0010\u00e5\u00b6\u0098\u00a8\u0006\"\u000544879\u001a\b\u001a\u0006HYYX83 \u00ac\u00e8\u0097\u00a8\u0006\"`\n/\n\u001020334-701ff27f-2\u0012\b15:15:00\u001a\b20230916 \u0000*\u00035910\u0001\u0012\u001d\rY\f\u0013\u00c2\u00156-\u0092\u00c2\u001d\u0000\u0000\u001aC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-r\u001c?A(\u00ac\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HYYX83" + }, + { + "type": "con_recorrido", + "entity": "\n$67ad7a2d-b3eb-4a3c-b017-43380deee3e8\u001a\u00aa\u000f\n/\n\u001020411-701ff27f-2\u0012\b15:30:00\u001a\b20230916 \u0000*\u00035910\u0000\u0012\u0011\b\u0001\u0012\u0006\u0010\u00c4\u00e8\u0097\u00a8\u0006\"\u000544967\u0012\u0011\b\u0002\u0012\u0006\u0010\u00f8\u00e8\u0097\u00a8\u0006\"\u000544968\u0012\u0011\b\u0003\u0012\u0006\u0010\u00c0\u00e9\u0097\u00a8\u0006\"\u000545105\u0012\u0011\b\u0004\u0012\u0006\u0010\u00dc\u00e9\u0097\u00a8\u0006\"\u000545106\u0012\u0011\b\u0005\u0012\u0006\u0010\u00a3\u00ea\u0097\u00a8\u0006\"\u000545107\u0012\u0011\b\u0006\u0012\u0006\u0010\u00d0\u00ea\u0097\u00a8\u0006\"\u000545108\u0012\u0012\b\u0007\u0012\u0006\u0010\u00f0\u00ea\u0097\u00a8\u0006\"\u000614-Jun\u0012\u0012\b\b\u0012\u0006\u0010\u00b1\u00eb\u0097\u00a8\u0006\"\u000614-Aug\u0012\u0011\b\t\u0012\u0006\u0010\u00df\u00eb\u0097\u00a8\u0006\"\u000550024\u0012\u0011\b\n\u0012\u0006\u0010\u00db\u00ec\u0097\u00a8\u0006\"\u000514-12\u0012\u0011\b\u000b\u0012\u0006\u0010\u00f4\u00ec\u0097\u00a8\u0006\"\u000514-13\u0012\u0011\b\f\u0012\u0006\u0010\u00ca\u00ed\u0097\u00a8\u0006\"\u000514-15\u0012\u0011\b\r\u0012\u0006\u0010\u00da\u00ed\u0097\u00a8\u0006\"\u000550022\u0012\u0011\b\u000e\u0012\u0006\u0010\u0087\u00ee\u0097\u00a8\u0006\"\u000550021\u0012\u0011\b\u000f\u0012\u0006\u0010\u00d3\u00ee\u0097\u00a8\u0006\"\u000537475\u0012\u0011\b\u0010\u0012\u0006\u0010\u00f7\u00ee\u0097\u00a8\u0006\"\u000537508\u0012\u0011\b\u0011\u0012\u0006\u0010\u008d\u00ef\u0097\u00a8\u0006\"\u000537476\u0012\u0011\b\u0012\u0012\u0006\u0010\u00ae\u00ef\u0097\u00a8\u0006\"\u000537526\u0012\u0011\b\u0013\u0012\u0006\u0010\u00f1\u00ef\u0097\u00a8\u0006\"\u000537567\u0012\u0012\b\u0014\u0012\u0006\u0010\u0087\u00f0\u0097\u00a8\u0006\"\u000613-Jan\u0012\u0012\b\u0015\u0012\u0006\u0010\u00b9\u00f0\u0097\u00a8\u0006\"\u000613-Feb\u0012\u0012\b\u0016\u0012\u0006\u0010\u00ca\u00f0\u0097\u00a8\u0006\"\u000628-Jan\u0012\u0011\b\u0017\u0012\u0006\u0010\u0085\u00f1\u0097\u00a8\u0006\"\u000550016\u0012\u0011\b\u0018\u0012\u0006\u0010\u00e1\u00f1\u0097\u00a8\u0006\"\u000550017\u0012\u0011\b\u0019\u0012\u0006\u0010\u0089\u00f2\u0097\u00a8\u0006\"\u000545054\u0012\u0011\b\u001a\u0012\u0006\u0010\u00eb\u00f2\u0097\u00a8\u0006\"\u000545055\u0012\u0011\b\u001b\u0012\u0006\u0010\u0093\u00f3\u0097\u00a8\u0006\"\u000545056\u0012\u0011\b\u001c\u0012\u0006\u0010\u00d6\u00f3\u0097\u00a8\u0006\"\u000545057\u0012\u0011\b\u001d\u0012\u0006\u0010\u00dc\u00f3\u0097\u00a8\u0006\"\u000544958\u0012\u0013\b\u001e\u0012\u0006\u0010\u0093\u00f4\u0097\u00a8\u0006\"\u00071508146\u0012\u0011\b\u001f\u0012\u0006\u0010\u00c1\u00f4\u0097\u00a8\u0006\"\u000544957\u0012\u0011\b \u0012\u0006\u0010\u00e4\u00f4\u0097\u00a8\u0006\"\u000544956\u0012\u0011\b!\u0012\u0006\u0010\u00f5\u00f4\u0097\u00a8\u0006\"\u000545060\u0012\u0011\b\"\u0012\u0006\u0010\u00e6\u00f5\u0097\u00a8\u0006\"\u00056-Jan\u0012\u0011\b#\u0012\u0006\u0010\u00ac\u00f6\u0097\u00a8\u0006\"\u00056-Mar\u0012\u0011\b$\u0012\u0006\u0010\u0095\u00f7\u0097\u00a8\u0006\"\u00056-May\u0012\u0011\b%\u0012\u0006\u0010\u00b7\u00f8\u0097\u00a8\u0006\"\u00056-Jul\u0012\u0011\b&\u0012\u0006\u0010\u00ff\u00f8\u0097\u00a8\u0006\"\u00056-Sep\u0012\u0011\b'\u0012\u0006\u0010\u00da\u00f9\u0097\u00a8\u0006\"\u00056-Nov\u0012\u0011\b(\u0012\u0006\u0010\u00d6\u00fa\u0097\u00a8\u0006\"\u00056-Dec\u0012\u0012\b)\u0012\u0006\u0010\u00bf\u00fb\u0097\u00a8\u0006\"\u0006Jun-14\u0012\u0012\b*\u0012\u0006\u0010\u00f0\u00fc\u0097\u00a8\u0006\"\u0006Jun-17\u0012\u0012\b+\u0012\u0006\u0010\u00d2\u00fd\u0097\u00a8\u0006\"\u0006Jun-19\u0012\u0012\b,\u0012\u0006\u0010\u009c\u00fe\u0097\u00a8\u0006\"\u0006Jun-20\u0012\u0012\b-\u0012\u0006\u0010\u00e9\u00fe\u0097\u00a8\u0006\"\u0006Jun-22\u0012\u0012\b.\u0012\u0006\u0010\u00be\u00ff\u0097\u00a8\u0006\"\u0006Jun-24\u0012\u0012\b/\u0012\u0006\u0010\u00b4\u0080\u0098\u00a8\u0006\"\u0006Jun-25\u0012\u0011\b0\u0012\u0006\u0010\u00cd\u0083\u0098\u00a8\u0006\"\u000590003\u0012\u0011\b1\u0012\u0006\u0010\u0093\u0084\u0098\u00a8\u0006\"\u000590007\u0012\u0011\b2\u0012\u0006\u0010\u00e1\u0084\u0098\u00a8\u0006\"\u000590008\u0012\u0011\b3\u0012\u0006\u0010\u0092\u0086\u0098\u00a8\u0006\"\u000539599\u0012\u0011\b4\u0012\u0006\u0010\u0090\u0087\u0098\u00a8\u0006\"\u000545011\u0012\u0011\b5\u0012\u0006\u0010\u00be\u0088\u0098\u00a8\u0006\"\u000539623\u0012\u0011\b6\u0012\u0006\u0010\u0096\u0089\u0098\u00a8\u0006\"\u000539624\u0012\u0011\b7\u0012\u0006\u0010\u008f\u008a\u0098\u00a8\u0006\"\u000590000\u0012\u0011\b8\u0012\u0006\u0010\u00f0\u008a\u0098\u00a8\u0006\"\u000539628\u0012\u0011\b9\u0012\u0006\u0010\u0087\u008c\u0098\u00a8\u0006\"\u000539631\u0012\u0011\b:\u0012\u0006\u0010\u00e8\u008c\u0098\u00a8\u0006\"\u000549311\u0012\u0011\b;\u0012\u0006\u0010\u00d7\u008d\u0098\u00a8\u0006\"\u000539634\u0012\u0011\b<\u0012\u0006\u0010\u0093\u008e\u0098\u00a8\u0006\"\u000539635\u0012\u0011\b=\u0012\u0006\u0010\u00f8\u008e\u0098\u00a8\u0006\"\u000539636\u0012\u0011\b>\u0012\u0006\u0010\u00f0\u008f\u0098\u00a8\u0006\"\u000549503\u0012\u0011\b?\u0012\u0006\u0010\u009d\u0092\u0098\u00a8\u0006\"\u000539637\u0012\u0011\b@\u0012\u0006\u0010\u0099\u0093\u0098\u00a8\u0006\"\u000549317\u0012\u0011\bA\u0012\u0006\u0010\u00ea\u0093\u0098\u00a8\u0006\"\u000549318\u0012\u0011\bB\u0012\u0006\u0010\u0099\u0095\u0098\u00a8\u0006\"\u000549319\u0012\u0011\bC\u0012\u0006\u0010\u00c9\u0096\u0098\u00a8\u0006\"\u000539641\u0012\u0011\bD\u0012\u0006\u0010\u00ae\u0097\u0098\u00a8\u0006\"\u000539642\u0012\u0011\bE\u0012\u0006\u0010\u0099\u009c\u0098\u00a8\u0006\"\u000549323\u0012\u0011\bF\u0012\u0006\u0010\u00a7\u009d\u0098\u00a8\u0006\"\u000549324\u0012\u0011\bG\u0012\u0006\u0010\u00af\u009e\u0098\u00a8\u0006\"\u000549325\u0012\u0011\bH\u0012\u0006\u0010\u0094\u00a0\u0098\u00a8\u0006\"\u000549326\u0012\u0011\bI\u0012\u0006\u0010\u008a\u00a1\u0098\u00a8\u0006\"\u000537425\u0012\u0011\bJ\u0012\u0006\u0010\u009c\u00a2\u0098\u00a8\u0006\"\u000537426\u0012\u0011\bK\u0012\u0006\u0010\u00cb\u00a3\u0098\u00a8\u0006\"\u000537427\u0012\u0013\bL\u0012\u0006\u0010\u009d\u00a5\u0098\u00a8\u0006\"\u00078606049\u0012\u0011\bM\u0012\u0006\u0010\u00ea\u00a6\u0098\u00a8\u0006\"\u000537428\u0012\u0011\bN\u0012\u0006\u0010\u00a4\u00a8\u0098\u00a8\u0006\"\u000537429\u0012\u0011\bO\u0012\u0006\u0010\u00b8\u00a9\u0098\u00a8\u0006\"\u000537430\u0012\u0011\bP\u0012\u0006\u0010\u00da\u00aa\u0098\u00a8\u0006\"\u000537431\u0012\u0011\bQ\u0012\u0006\u0010\u00be\u00ab\u0098\u00a8\u0006\"\u000537432\u0012\u0011\bR\u0012\u0006\u0010\u0084\u00b0\u0098\u00a8\u0006\"\u000537433\u0012\u0011\bS\u0012\u0006\u0010\u0095\u00b4\u0098\u00a8\u0006\"\u000537434\u0012\u0011\bT\u0012\u0006\u0010\u008f\u00b5\u0098\u00a8\u0006\"\u000537435\u0012\u0011\bU\u0012\u0006\u0010\u00ed\u00b7\u0098\u00a8\u0006\"\u000537436\u0012\u0011\bV\u0012\u0006\u0010\u00bb\u00bb\u0098\u00a8\u0006\"\u000537437\u0012\u0011\bW\u0012\u0006\u0010\u00c3\u00be\u0098\u00a8\u0006\"\u000549337\u0012\u0011\bX\u0012\u0006\u0010\u009a\u00c0\u0098\u00a8\u0006\"\u000539661\u0012\u0011\bY\u0012\u0006\u0010\u00b6\u00c3\u0098\u00a8\u0006\"\u000539662\u0012\u0011\bZ\u0012\u0006\u0010\u00f5\u00c6\u0098\u00a8\u0006\"\u000539663\u0012\u0011\b[\u0012\u0006\u0010\u00d1\u00ca\u0098\u00a8\u0006\"\u000549341\u0012\u0011\b\\\u0012\u0006\u0010\u00e4\u00cd\u0098\u00a8\u0006\"\u000549342\u0012\u0011\b]\u0012\u0006\u0010\u00de\u00d5\u0098\u00a8\u0006\"\u000549343\u0012\u0011\b^\u0012\u0006\u0010\u00c6\u00e9\u0098\u00a8\u0006\"\u000549344\u0012\u0011\b_\u0012\u0006\u0010\u00c1\u00fe\u0098\u00a8\u0006\"\u000549345\u0012\u0011\b`\u0012\u0006\u0010\u00f4\u009f\u0099\u00a8\u0006\"\u000549346\u0012\u0011\ba\u0012\u0006\u0010\u00f5\u00ad\u0099\u00a8\u0006\"\u000549347\u0012\u0011\bb\u0012\u0006\u0010\u0080\u0083\u009a\u00a8\u0006\"\u000549348\u0012\u0011\bc\u0012\u0006\u0010\u0086\u008f\u009b\u00a8\u0006\"\u000542250\u001a\b\u001a\u0006JFSL62 \u00b9\u00e8\u0097\u00a8\u0006\"`\n/\n\u001020411-701ff27f-2\u0012\b15:30:00\u001a\b20230916 \u0000*\u00035910\u0000\u0012\u001d\r\u00d8\u00da\u0012\u00c2\u0015\u0089\u00f4\u0091\u00c2\u001d\u0000\u0000\u00a8A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b9\u00e8\u0097\u00a8\u0006B\b\u001a\u0006JFSL62" + }, + { + "type": "con_recorrido", + "entity": "\n$0ea29b65-ab82-4717-a3cd-b6936d7f0507\u001a\u00be\u0005\n/\n\u001020330-701ff27f-2\u0012\b14:15:00\u001a\b20230916 \u0000*\u00035910\u0001\u0012\u0011\b>\u0012\u0006\u0010\u008b\u00e9\u0097\u00a8\u0006\"\u000550041\u0012\u0012\b?\u0012\u0006\u0010\u009b\u00ea\u0097\u00a8\u0006\"\u0006Jun-15\u0012\u0012\b@\u0012\u0006\u0010\u00ff\u00ea\u0097\u00a8\u0006\"\u0006Jun-13\u0012\u0011\bA\u0012\u0006\u0010\u00c3\u00ec\u0097\u00a8\u0006\"\u00056-Oct\u0012\u0011\bB\u0012\u0006\u0010\u00fe\u00ec\u0097\u00a8\u0006\"\u00056-Aug\u0012\u0011\bC\u0012\u0006\u0010\u0096\u00ee\u0097\u00a8\u0006\"\u00056-Jun\u0012\u0011\bD\u0012\u0006\u0010\u008f\u00ef\u0097\u00a8\u0006\"\u00056-Feb\u0012\u0011\bE\u0012\u0006\u0010\u0093\u00f0\u0097\u00a8\u0006\"\u00057-Jul\u0012\u0011\bF\u0012\u0006\u0010\u00d3\u00f0\u0097\u00a8\u0006\"\u00057-May\u0012\u0013\bG\u0012\u0006\u0010\u00f5\u00f0\u0097\u00a8\u0006\"\u00071508142\u0012\u0011\bH\u0012\u0006\u0010\u00da\u00f1\u0097\u00a8\u0006\"\u00057-Feb\u0012\u0011\bI\u0012\u0006\u0010\u0095\u00f2\u0097\u00a8\u0006\"\u00058-Jan\u0012\u0011\bJ\u0012\u0006\u0010\u00b3\u00f2\u0097\u00a8\u0006\"\u00059-Jan\u0012\u0012\bK\u0012\u0006\u0010\u00da\u00f2\u0097\u00a8\u0006\"\u000610-Apr\u0012\u0012\bL\u0012\u0006\u0010\u0093\u00f3\u0097\u00a8\u0006\"\u000610-Jan\u0012\u0011\bM\u0012\u0006\u0010\u00bc\u00f3\u0097\u00a8\u0006\"\u000544863\u0012\u0012\bN\u0012\u0006\u0010\u00db\u00f3\u0097\u00a8\u0006\"\u000610-Mar\u0012\u0012\bO\u0012\u0006\u0010\u0091\u00f4\u0097\u00a8\u0006\"\u000611-Jan\u0012\u0011\bP\u0012\u0006\u0010\u00c4\u00f4\u0097\u00a8\u0006\"\u000544866\u0012\u0011\bQ\u0012\u0006\u0010\u00eb\u00f4\u0097\u00a8\u0006\"\u000544867\u0012\u0011\bR\u0012\u0006\u0010\u0085\u00f5\u0097\u00a8\u0006\"\u000544868\u0012\u0011\bS\u0012\u0006\u0010\u00a0\u00f5\u0097\u00a8\u0006\"\u000544869\u0012\u0011\bT\u0012\u0006\u0010\u00c0\u00f5\u0097\u00a8\u0006\"\u000544870\u0012\u0011\bU\u0012\u0006\u0010\u00e2\u00f5\u0097\u00a8\u0006\"\u000544871\u0012\u0011\bV\u0012\u0006\u0010\u008a\u00f6\u0097\u00a8\u0006\"\u000544872\u0012\u0011\bW\u0012\u0006\u0010\u00cb\u00f6\u0097\u00a8\u0006\"\u000550020\u0012\u0011\bX\u0012\u0006\u0010\u00a0\u00f7\u0097\u00a8\u0006\"\u000514-11\u0012\u0011\bY\u0012\u0006\u0010\u00cc\u00f7\u0097\u00a8\u0006\"\u000591162\u0012\u0011\bZ\u0012\u0006\u0010\u00a0\u00f8\u0097\u00a8\u0006\"\u000550023\u0012\u0012\b[\u0012\u0006\u0010\u008b\u00f9\u0097\u00a8\u0006\"\u000614-Jul\u0012\u0012\b\\\u0012\u0006\u0010\u00b3\u00f9\u0097\u00a8\u0006\"\u000614-Apr\u0012\u0011\b]\u0012\u0006\u0010\u00e6\u00f9\u0097\u00a8\u0006\"\u000537474\u0012\u0011\b^\u0012\u0006\u0010\u009b\u00fa\u0097\u00a8\u0006\"\u000544879\u001a\b\u001a\u0006JSBB30 \u00cd\u00e8\u0097\u00a8\u0006\"`\n/\n\u001020330-701ff27f-2\u0012\b14:15:00\u001a\b20230916 \u0000*\u00035910\u0001\u0012\u001d\rX)\u0013\u00c2\u0015\u008d\f\u0092\u00c2\u001d\u0000\u0000\u0098A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008e\u00e3(A(\u00cd\u00e8\u0097\u00a8\u0006B\b\u001a\u0006JSBB30" + }, + { + "type": "con_recorrido", + "entity": "\n$435debd1-4003-41d0-958f-9addc0eb3a5a\u001a\u00e0\b\n/\n\u001020332-701ff27f-2\u0012\b14:45:00\u001a\b20230916 \u0000*\u00035910\u0001\u0012\u0011\b(\u0012\u0006\u0010\u00cf\u00e8\u0097\u00a8\u0006\"\u000539623\u0012\u0011\b)\u0012\u0006\u0010\u00ea\u00e9\u0097\u00a8\u0006\"\u000539627\u0012\u0011\b*\u0012\u0006\u0010\u00ce\u00ea\u0097\u00a8\u0006\"\u000539631\u0012\u0011\b+\u0012\u0006\u0010\u00fe\u00ea\u0097\u00a8\u0006\"\u000549311\u0012\u0011\b,\u0012\u0006\u0010\u00b7\u00eb\u0097\u00a8\u0006\"\u000535796\u0012\u0011\b-\u0012\u0006\u0010\u00e8\u00eb\u0097\u00a8\u0006\"\u000535797\u0012\u0011\b.\u0012\u0006\u0010\u0092\u00ec\u0097\u00a8\u0006\"\u000535798\u0012\u0011\b/\u0012\u0006\u0010\u00b8\u00ec\u0097\u00a8\u0006\"\u000535799\u0012\u0011\b0\u0012\u0006\u0010\u00fd\u00ec\u0097\u00a8\u0006\"\u000535800\u0012\u0011\b1\u0012\u0006\u0010\u00ae\u00ed\u0097\u00a8\u0006\"\u000535801\u0012\u0011\b2\u0012\u0006\u0010\u00c7\u00ed\u0097\u00a8\u0006\"\u000535802\u0012\u0011\b3\u0012\u0006\u0010\u00f6\u00ed\u0097\u00a8\u0006\"\u000535803\u0012\u0011\b4\u0012\u0006\u0010\u00ac\u00ee\u0097\u00a8\u0006\"\u000538507\u0012\u0011\b5\u0012\u0006\u0010\u00de\u00ee\u0097\u00a8\u0006\"\u000534473\u0012\u0011\b6\u0012\u0006\u0010\u0088\u00ef\u0097\u00a8\u0006\"\u000538500\u0012\u0011\b7\u0012\u0006\u0010\u00b5\u00ef\u0097\u00a8\u0006\"\u000535808\u0012\u0011\b8\u0012\u0006\u0010\u00ed\u00ef\u0097\u00a8\u0006\"\u000535710\u0012\u0011\b9\u0012\u0006\u0010\u0099\u00f0\u0097\u00a8\u0006\"\u000550036\u0012\u0011\b:\u0012\u0006\u0010\u00f6\u00f1\u0097\u00a8\u0006\"\u000550037\u0012\u0011\b;\u0012\u0006\u0010\u0085\u00f3\u0097\u00a8\u0006\"\u000550038\u0012\u0011\b<\u0012\u0006\u0010\u00d0\u00f3\u0097\u00a8\u0006\"\u000550039\u0012\u0011\b=\u0012\u0006\u0010\u0088\u00f4\u0097\u00a8\u0006\"\u000550040\u0012\u0011\b>\u0012\u0006\u0010\u00e1\u00f4\u0097\u00a8\u0006\"\u000550041\u0012\u0012\b?\u0012\u0006\u0010\u00ec\u00f5\u0097\u00a8\u0006\"\u0006Jun-15\u0012\u0012\b@\u0012\u0006\u0010\u00cf\u00f6\u0097\u00a8\u0006\"\u0006Jun-13\u0012\u0011\bA\u0012\u0006\u0010\u009a\u00f8\u0097\u00a8\u0006\"\u00056-Oct\u0012\u0011\bB\u0012\u0006\u0010\u00da\u00f8\u0097\u00a8\u0006\"\u00056-Aug\u0012\u0011\bC\u0012\u0006\u0010\u0082\u00fa\u0097\u00a8\u0006\"\u00056-Jun\u0012\u0011\bD\u0012\u0006\u0010\u008e\u00fb\u0097\u00a8\u0006\"\u00056-Feb\u0012\u0011\bE\u0012\u0006\u0010\u00ad\u00fc\u0097\u00a8\u0006\"\u00057-Jul\u0012\u0011\bF\u0012\u0006\u0010\u00fb\u00fc\u0097\u00a8\u0006\"\u00057-May\u0012\u0013\bG\u0012\u0006\u0010\u00a6\u00fd\u0097\u00a8\u0006\"\u00071508142\u0012\u0011\bH\u0012\u0006\u0010\u00a6\u00fe\u0097\u00a8\u0006\"\u00057-Feb\u0012\u0011\bI\u0012\u0006\u0010\u00f2\u00fe\u0097\u00a8\u0006\"\u00058-Jan\u0012\u0011\bJ\u0012\u0006\u0010\u009b\u00ff\u0097\u00a8\u0006\"\u00059-Jan\u0012\u0012\bK\u0012\u0006\u0010\u00cf\u00ff\u0097\u00a8\u0006\"\u000610-Apr\u0012\u0012\bL\u0012\u0006\u0010\u009b\u0080\u0098\u00a8\u0006\"\u000610-Jan\u0012\u0011\bM\u0012\u0006\u0010\u00d3\u0080\u0098\u00a8\u0006\"\u000544863\u0012\u0012\bN\u0012\u0006\u0010\u00fe\u0080\u0098\u00a8\u0006\"\u000610-Mar\u0012\u0012\bO\u0012\u0006\u0010\u00ca\u0081\u0098\u00a8\u0006\"\u000611-Jan\u0012\u0011\bP\u0012\u0006\u0010\u0092\u0082\u0098\u00a8\u0006\"\u000544866\u0012\u0011\bQ\u0012\u0006\u0010\u00ca\u0082\u0098\u00a8\u0006\"\u000544867\u0012\u0011\bR\u0012\u0006\u0010\u00f0\u0082\u0098\u00a8\u0006\"\u000544868\u0012\u0011\bS\u0012\u0006\u0010\u0097\u0083\u0098\u00a8\u0006\"\u000544869\u0012\u0011\bT\u0012\u0006\u0010\u00c6\u0083\u0098\u00a8\u0006\"\u000544870\u0012\u0011\bU\u0012\u0006\u0010\u00f9\u0083\u0098\u00a8\u0006\"\u000544871\u0012\u0011\bV\u0012\u0006\u0010\u00b5\u0084\u0098\u00a8\u0006\"\u000544872\u0012\u0011\bW\u0012\u0006\u0010\u0097\u0085\u0098\u00a8\u0006\"\u000550020\u0012\u0011\bX\u0012\u0006\u0010\u009c\u0086\u0098\u00a8\u0006\"\u000514-11\u0012\u0011\bY\u0012\u0006\u0010\u00e0\u0086\u0098\u00a8\u0006\"\u000591162\u0012\u0011\bZ\u0012\u0006\u0010\u00e8\u0087\u0098\u00a8\u0006\"\u000550023\u0012\u0012\b[\u0012\u0006\u0010\u0097\u0089\u0098\u00a8\u0006\"\u000614-Jul\u0012\u0012\b\\\u0012\u0006\u0010\u00db\u0089\u0098\u00a8\u0006\"\u000614-Apr\u0012\u0011\b]\u0012\u0006\u0010\u00b1\u008a\u0098\u00a8\u0006\"\u000537474\u0012\u0011\b^\u0012\u0006\u0010\u008d\u008b\u0098\u00a8\u0006\"\u000544879\u001a\b\u001a\u0006KLLT57 \u00cb\u00e8\u0097\u00a8\u0006\"`\n/\n\u001020332-701ff27f-2\u0012\b14:45:00\u001a\b20230916 \u0000*\u00035910\u0001\u0012\u001d\r\u00dcJ\u0013\u00c2\u0015\u001b\u0017\u0092\u00c2\u001d\u0000\u0000qC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-9\u008e\u00c3@(\u00cb\u00e8\u0097\u00a8\u0006B\b\u001a\u0006KLLT57" + }, + { + "type": "con_recorrido", + "entity": "\n$699fe76d-f94f-41bc-940e-06e8b7442626\u001a\u0090\u0005\n/\n\u001020407-701ff27f-2\u0012\b14:30:00\u001a\b20230916 \u0000*\u00035910\u0000\u0012\u0011\bE\u0012\u0006\u0010\u00ad\u00e8\u0097\u00a8\u0006\"\u000549323\u0012\u0011\bF\u0012\u0006\u0010\u00da\u00e8\u0097\u00a8\u0006\"\u000549324\u0012\u0011\bG\u0012\u0006\u0010\u0084\u00e9\u0097\u00a8\u0006\"\u000549325\u0012\u0011\bH\u0012\u0006\u0010\u00c6\u00e9\u0097\u00a8\u0006\"\u000549326\u0012\u0011\bI\u0012\u0006\u0010\u00e6\u00e9\u0097\u00a8\u0006\"\u000537425\u0012\u0011\bJ\u0012\u0006\u0010\u008d\u00ea\u0097\u00a8\u0006\"\u000537426\u0012\u0011\bK\u0012\u0006\u0010\u00b9\u00ea\u0097\u00a8\u0006\"\u000537427\u0012\u0013\bL\u0012\u0006\u0010\u00ec\u00ea\u0097\u00a8\u0006\"\u00078606049\u0012\u0011\bM\u0012\u0006\u0010\u009c\u00eb\u0097\u00a8\u0006\"\u000537428\u0012\u0011\bN\u0012\u0006\u0010\u00c5\u00eb\u0097\u00a8\u0006\"\u000537429\u0012\u0011\bO\u0012\u0006\u0010\u00e4\u00eb\u0097\u00a8\u0006\"\u000537430\u0012\u0011\bP\u0012\u0006\u0010\u0086\u00ec\u0097\u00a8\u0006\"\u000537431\u0012\u0011\bQ\u0012\u0006\u0010\u009a\u00ec\u0097\u00a8\u0006\"\u000537432\u0012\u0011\bR\u0012\u0006\u0010\u0086\u00ed\u0097\u00a8\u0006\"\u000537433\u0012\u0011\bS\u0012\u0006\u0010\u00de\u00ed\u0097\u00a8\u0006\"\u000537434\u0012\u0011\bT\u0012\u0006\u0010\u00f2\u00ed\u0097\u00a8\u0006\"\u000537435\u0012\u0011\bU\u0012\u0006\u0010\u00a6\u00ee\u0097\u00a8\u0006\"\u000537436\u0012\u0011\bV\u0012\u0006\u0010\u00e7\u00ee\u0097\u00a8\u0006\"\u000537437\u0012\u0011\bW\u0012\u0006\u0010\u009a\u00ef\u0097\u00a8\u0006\"\u000549337\u0012\u0011\bX\u0012\u0006\u0010\u00b4\u00ef\u0097\u00a8\u0006\"\u000539661\u0012\u0011\bY\u0012\u0006\u0010\u00e5\u00ef\u0097\u00a8\u0006\"\u000539662\u0012\u0011\bZ\u0012\u0006\u0010\u0096\u00f0\u0097\u00a8\u0006\"\u000539663\u0012\u0011\b[\u0012\u0006\u0010\u00c7\u00f0\u0097\u00a8\u0006\"\u000549341\u0012\u0011\b\\\u0012\u0006\u0010\u00ee\u00f0\u0097\u00a8\u0006\"\u000549342\u0012\u0011\b]\u0012\u0006\u0010\u00c8\u00f1\u0097\u00a8\u0006\"\u000549343\u0012\u0011\b^\u0012\u0006\u0010\u00fc\u00f2\u0097\u00a8\u0006\"\u000549344\u0012\u0011\b_\u0012\u0006\u0010\u008c\u00f4\u0097\u00a8\u0006\"\u000549345\u0012\u0011\b`\u0012\u0006\u0010\u00b4\u00f5\u0097\u00a8\u0006\"\u000549346\u0012\u0011\ba\u0012\u0006\u0010\u00eb\u00f5\u0097\u00a8\u0006\"\u000549347\u0012\u0011\bb\u0012\u0006\u0010\u00cc\u00f7\u0097\u00a8\u0006\"\u000549348\u0012\u0011\bc\u0012\u0006\u0010\u0083\u00f9\u0097\u00a8\u0006\"\u000542250\u001a\b\u001a\u0006LJKK85 \u00ac\u00e8\u0097\u00a8\u0006\"`\n/\n\u001020407-701ff27f-2\u0012\b14:30:00\u001a\b20230916 \u0000*\u00035910\u0000\u0012\u001d\rs4\u0013\u00c2\u0015\u00f3*\u0092\u00c2\u001d\u0000\u0000\u00a1C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UUUA(\u00ac\u00e8\u0097\u00a8\u0006B\b\u001a\u0006LJKK85" + }, + { + "type": "con_recorrido", + "entity": "\n$185cfe55-6a41-408c-9b74-99371ef636b8\u001a\u00c7\u0007\n/\n\u001020560-701ff27f-2\u0012\b14:45:00\u001a\b20230916 \u0000*\u00035920\u0000\u0012\u0011\b1\u0012\u0006\u0010\u00c7\u00e8\u0097\u00a8\u0006\"\u000537523\u0012\u0011\b2\u0012\u0006\u0010\u00f2\u00e8\u0097\u00a8\u0006\"\u000537477\u0012\u0011\b3\u0012\u0006\u0010\u00ce\u00e9\u0097\u00a8\u0006\"\u000549310\u0012\u0011\b4\u0012\u0006\u0010\u00ef\u00e9\u0097\u00a8\u0006\"\u000549311\u0012\u0011\b5\u0012\u0006\u0010\u00a8\u00ea\u0097\u00a8\u0006\"\u000539634\u0012\u0011\b6\u0012\u0006\u0010\u00c2\u00ea\u0097\u00a8\u0006\"\u000539635\u0012\u0011\b7\u0012\u0006\u0010\u00f1\u00ea\u0097\u00a8\u0006\"\u000539636\u0012\u0011\b8\u0012\u0006\u0010\u00a8\u00eb\u0097\u00a8\u0006\"\u000549503\u0012\u0011\b9\u0012\u0006\u0010\u00a7\u00ec\u0097\u00a8\u0006\"\u000539637\u0012\u0011\b:\u0012\u0006\u0010\u00d9\u00ec\u0097\u00a8\u0006\"\u000549317\u0012\u0011\b;\u0012\u0006\u0010\u00f8\u00ec\u0097\u00a8\u0006\"\u000549318\u0012\u0011\b<\u0012\u0006\u0010\u00b9\u00ed\u0097\u00a8\u0006\"\u000549319\u0012\u0011\b=\u0012\u0006\u0010\u00f7\u00ed\u0097\u00a8\u0006\"\u000539641\u0012\u0011\b>\u0012\u0006\u0010\u00b8\u00ee\u0097\u00a8\u0006\"\u000538590\u0012\u0011\b?\u0012\u0006\u0010\u00d1\u00f1\u0097\u00a8\u0006\"\u000532575\u0012\u0013\b@\u0012\u0006\u0010\u0082\u00f2\u0097\u00a8\u0006\"\u00074950738\u0012\u0011\bA\u0012\u0006\u0010\u00ff\u00f3\u0097\u00a8\u0006\"\u000538530\u0012\u0014\bB\u0012\u0006\u0010\u008c\u00f4\u0097\u00a8\u0006\"\b16005209\u0012\u0011\bC\u0012\u0006\u0010\u00fa\u00f5\u0097\u00a8\u0006\"\u000538531\u0012\u0013\bD\u0012\u0006\u0010\u00b2\u00f6\u0097\u00a8\u0006\"\u00078921285\u0012\u0011\bE\u0012\u0006\u0010\u00a6\u00f7\u0097\u00a8\u0006\"\u000538532\u0012\u0011\bF\u0012\u0006\u0010\u00de\u00f7\u0097\u00a8\u0006\"\u000538533\u0012\u0011\bG\u0012\u0006\u0010\u0098\u00f8\u0097\u00a8\u0006\"\u000538534\u0012\u0011\bH\u0012\u0006\u0010\u00cb\u00f8\u0097\u00a8\u0006\"\u000538535\u0012\u0011\bI\u0012\u0006\u0010\u0092\u00f9\u0097\u00a8\u0006\"\u000538536\u0012\u0013\bJ\u0012\u0006\u0010\u00b9\u00f9\u0097\u00a8\u0006\"\u00074838437\u0012\u0011\bK\u0012\u0006\u0010\u00f6\u00f9\u0097\u00a8\u0006\"\u000545085\u0012\u0011\bL\u0012\u0006\u0010\u00cf\u00fa\u0097\u00a8\u0006\"\u000545086\u0012\u0011\bM\u0012\u0006\u0010\u00c6\u00fb\u0097\u00a8\u0006\"\u000545087\u0012\u0011\bN\u0012\u0006\u0010\u00e3\u00fb\u0097\u00a8\u0006\"\u000545088\u0012\u0011\bO\u0012\u0006\u0010\u0091\u00fc\u0097\u00a8\u0006\"\u000545089\u0012\u0011\bP\u0012\u0006\u0010\u00e2\u00fc\u0097\u00a8\u0006\"\u000545090\u0012\u0011\bQ\u0012\u0006\u0010\u0083\u00fd\u0097\u00a8\u0006\"\u000545091\u0012\u0011\bR\u0012\u0006\u0010\u00b2\u00fd\u0097\u00a8\u0006\"\u000545092\u0012\u0011\bS\u0012\u0006\u0010\u00e6\u00fd\u0097\u00a8\u0006\"\u000545093\u0012\u0011\bT\u0012\u0006\u0010\u00a3\u00fe\u0097\u00a8\u0006\"\u000545094\u0012\u0011\bU\u0012\u0006\u0010\u00d0\u00fe\u0097\u00a8\u0006\"\u000545095\u0012\u0011\bV\u0012\u0006\u0010\u0085\u00ff\u0097\u00a8\u0006\"\u000545096\u0012\u0011\bW\u0012\u0006\u0010\u00e0\u00ff\u0097\u00a8\u0006\"\u000545098\u0012\u0011\bX\u0012\u0006\u0010\u0089\u0080\u0098\u00a8\u0006\"\u000545099\u0012\u0011\bY\u0012\u0006\u0010\u00a2\u0080\u0098\u00a8\u0006\"\u000545100\u0012\u0011\bZ\u0012\u0006\u0010\u00cb\u0080\u0098\u00a8\u0006\"\u000545101\u0012\u0011\b[\u0012\u0006\u0010\u00fa\u0080\u0098\u00a8\u0006\"\u000545102\u0012\u0011\b\\\u0012\u0006\u0010\u009e\u0081\u0098\u00a8\u0006\"\u000545103\u0012\u0011\b]\u0012\u0006\u0010\u00c0\u0081\u0098\u00a8\u0006\"\u000545104\u0012\u0011\b^\u0012\u0006\u0010\u00e4\u0081\u0098\u00a8\u0006\"\u000545122\u0012\u0011\b_\u0012\u0006\u0010\u00af\u0082\u0098\u00a8\u0006\"\u000538630\u001a\b\u001a\u0006BLYV74 \u00ad\u00e8\u0097\u00a8\u0006\"`\n/\n\u001020560-701ff27f-2\u0012\b14:45:00\u001a\b20230916 \u0000*\u00035920\u0000\u0012\u001d\rgP\u0013\u00c2\u0015\u00a5\u001a\u0092\u00c2\u001d\u0000\u0000vC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-r\u001c?A(\u00ad\u00e8\u0097\u00a8\u0006B\b\u001a\u0006BLYV74" + }, + { + "type": "con_recorrido", + "entity": "\n$d8087585-a442-495b-9886-fedd15853dec\u001a\u00f6\u000b\n/\n\u001020562-701ff27f-2\u0012\b15:15:00\u001a\b20230916 \u0000*\u00035920\u0000\u0012\u0010\b\u0014\u0012\u0006\u0010\u00b8\u00e8\u0097\u00a8\u0006\"\u000412-3\u0012\u0012\b\u0015\u0012\u0006\u0010\u008a\u00e9\u0097\u00a8\u0006\"\u000612-Jan\u0012\u0012\b\u0016\u0012\u0006\u0010\u00b7\u00e9\u0097\u00a8\u0006\"\u000612-Feb\u0012\u0011\b\u0017\u0012\u0006\u0010\u00e6\u00e9\u0097\u00a8\u0006\"\u00057-Jan\u0012\u0011\b\u0018\u0012\u0006\u0010\u00a3\u00ea\u0097\u00a8\u0006\"\u00057-Mar\u0012\u0011\b\u0019\u0012\u0006\u0010\u00af\u00eb\u0097\u00a8\u0006\"\u00057-Jun\u0012\u0011\b\u001a\u0012\u0006\u0010\u00f5\u00eb\u0097\u00a8\u0006\"\u00057-Aug\u0012\u0011\b\u001b\u0012\u0006\u0010\u0086\u00ed\u0097\u00a8\u0006\"\u00056-Mar\u0012\u0011\b\u001c\u0012\u0006\u0010\u00ea\u00ed\u0097\u00a8\u0006\"\u00056-May\u0012\u0011\b\u001d\u0012\u0006\u0010\u00fe\u00ee\u0097\u00a8\u0006\"\u00056-Jul\u0012\u0011\b\u001e\u0012\u0006\u0010\u00c0\u00ef\u0097\u00a8\u0006\"\u00056-Sep\u0012\u0011\b\u001f\u0012\u0006\u0010\u0094\u00f0\u0097\u00a8\u0006\"\u00056-Nov\u0012\u0011\b \u0012\u0006\u0010\u00f7\u00f0\u0097\u00a8\u0006\"\u00056-Dec\u0012\u0012\b!\u0012\u0006\u0010\u00cf\u00f1\u0097\u00a8\u0006\"\u0006Jun-14\u0012\u0012\b\"\u0012\u0006\u0010\u00e7\u00f2\u0097\u00a8\u0006\"\u0006Jun-17\u0012\u0012\b#\u0012\u0006\u0010\u00bd\u00f3\u0097\u00a8\u0006\"\u0006Jun-19\u0012\u0012\b$\u0012\u0006\u0010\u00f0\u00f3\u0097\u00a8\u0006\"\u0006Jun-20\u0012\u0012\b%\u0012\u0006\u0010\u00ae\u00f4\u0097\u00a8\u0006\"\u0006Jun-22\u0012\u0012\b&\u0012\u0006\u0010\u00ee\u00f4\u0097\u00a8\u0006\"\u0006Jun-24\u0012\u0012\b'\u0012\u0006\u0010\u00c8\u00f5\u0097\u00a8\u0006\"\u0006Jun-25\u0012\u0011\b(\u0012\u0006\u0010\u00f2\u00f7\u0097\u00a8\u0006\"\u000590003\u0012\u0011\b)\u0012\u0006\u0010\u00a3\u00f8\u0097\u00a8\u0006\"\u000590007\u0012\u0011\b*\u0012\u0006\u0010\u00d9\u00f8\u0097\u00a8\u0006\"\u000590008\u0012\u0011\b+\u0012\u0006\u0010\u00d2\u00f9\u0097\u00a8\u0006\"\u000539599\u0012\u0011\b,\u0012\u0006\u0010\u00eb\u00f9\u0097\u00a8\u0006\"\u000539600\u0012\u0011\b-\u0012\u0006\u0010\u00b6\u00fa\u0097\u00a8\u0006\"\u000537496\u0012\u0011\b.\u0012\u0006\u0010\u00ee\u00fa\u0097\u00a8\u0006\"\u000545064\u0012\u0011\b/\u0012\u0006\u0010\u00c2\u00fb\u0097\u00a8\u0006\"\u000537506\u0012\u0011\b0\u0012\u0006\u0010\u009a\u00fc\u0097\u00a8\u0006\"\u000545069\u0012\u0011\b1\u0012\u0006\u0010\u00a1\u00fd\u0097\u00a8\u0006\"\u000537523\u0012\u0011\b2\u0012\u0006\u0010\u00d2\u00fd\u0097\u00a8\u0006\"\u000537477\u0012\u0011\b3\u0012\u0006\u0010\u00c0\u00fe\u0097\u00a8\u0006\"\u000549310\u0012\u0011\b4\u0012\u0006\u0010\u00e8\u00fe\u0097\u00a8\u0006\"\u000549311\u0012\u0011\b5\u0012\u0006\u0010\u00b0\u00ff\u0097\u00a8\u0006\"\u000539634\u0012\u0011\b6\u0012\u0006\u0010\u00d1\u00ff\u0097\u00a8\u0006\"\u000539635\u0012\u0011\b7\u0012\u0006\u0010\u008f\u0080\u0098\u00a8\u0006\"\u000539636\u0012\u0011\b8\u0012\u0006\u0010\u00d7\u0080\u0098\u00a8\u0006\"\u000549503\u0012\u0011\b9\u0012\u0006\u0010\u0087\u0082\u0098\u00a8\u0006\"\u000539637\u0012\u0011\b:\u0012\u0006\u0010\u00cf\u0082\u0098\u00a8\u0006\"\u000549317\u0012\u0011\b;\u0012\u0006\u0010\u00fd\u0082\u0098\u00a8\u0006\"\u000549318\u0012\u0011\b<\u0012\u0006\u0010\u00e0\u0083\u0098\u00a8\u0006\"\u000549319\u0012\u0011\b=\u0012\u0006\u0010\u00c1\u0084\u0098\u00a8\u0006\"\u000539641\u0012\u0011\b>\u0012\u0006\u0010\u00a9\u0085\u0098\u00a8\u0006\"\u000538590\u0012\u0011\b?\u0012\u0006\u0010\u008e\u008b\u0098\u00a8\u0006\"\u000532575\u0012\u0013\b@\u0012\u0006\u0010\u00f2\u008b\u0098\u00a8\u0006\"\u00074950738\u0012\u0011\bA\u0012\u0006\u0010\u009a\u0090\u0098\u00a8\u0006\"\u000538530\u0012\u0014\bB\u0012\u0006\u0010\u00b9\u0090\u0098\u00a8\u0006\"\b16005209\u0012\u0011\bC\u0012\u0006\u0010\u0088\u0095\u0098\u00a8\u0006\"\u000538531\u0012\u0013\bD\u0012\u0006\u0010\u009f\u0096\u0098\u00a8\u0006\"\u00078921285\u0012\u0011\bE\u0012\u0006\u0010\u00e4\u0098\u0098\u00a8\u0006\"\u000538532\u0012\u0011\bF\u0012\u0006\u0010\u0087\u009a\u0098\u00a8\u0006\"\u000538533\u0012\u0011\bG\u0012\u0006\u0010\u00b5\u009b\u0098\u00a8\u0006\"\u000538534\u0012\u0011\bH\u0012\u0006\u0010\u00d6\u009c\u0098\u00a8\u0006\"\u000538535\u0012\u0011\bI\u0012\u0006\u0010\u00b8\u009e\u0098\u00a8\u0006\"\u000538536\u0012\u0013\bJ\u0012\u0006\u0010\u00bb\u009f\u0098\u00a8\u0006\"\u00074838437\u0012\u0011\bK\u0012\u0006\u0010\u0088\u00a1\u0098\u00a8\u0006\"\u000545085\u0012\u0011\bL\u0012\u0006\u0010\u00c3\u00a3\u0098\u00a8\u0006\"\u000545086\u0012\u0011\bM\u0012\u0006\u0010\u0080\u00a7\u0098\u00a8\u0006\"\u000545087\u0012\u0011\bN\u0012\u0006\u0010\u00f1\u00a7\u0098\u00a8\u0006\"\u000545088\u0012\u0011\bO\u0012\u0006\u0010\u00a9\u00a9\u0098\u00a8\u0006\"\u000545089\u0012\u0011\bP\u0012\u0006\u0010\u00f8\u00ab\u0098\u00a8\u0006\"\u000545090\u0012\u0011\bQ\u0012\u0006\u0010\u0085\u00ad\u0098\u00a8\u0006\"\u000545091\u0012\u0011\bR\u0012\u0006\u0010\u00d1\u00ae\u0098\u00a8\u0006\"\u000545092\u0012\u0011\bS\u0012\u0006\u0010\u00bc\u00b0\u0098\u00a8\u0006\"\u000545093\u0012\u0011\bT\u0012\u0006\u0010\u00d8\u00b2\u0098\u00a8\u0006\"\u000545094\u0012\u0011\bU\u0012\u0006\u0010\u00ae\u00b4\u0098\u00a8\u0006\"\u000545095\u0012\u0011\bV\u0012\u0006\u0010\u00b5\u00b6\u0098\u00a8\u0006\"\u000545096\u0012\u0011\bW\u0012\u0006\u0010\u008a\u00ba\u0098\u00a8\u0006\"\u000545098\u0012\u0011\bX\u0012\u0006\u0010\u00ea\u00bb\u0098\u00a8\u0006\"\u000545099\u0012\u0011\bY\u0012\u0006\u0010\u00f4\u00bc\u0098\u00a8\u0006\"\u000545100\u0012\u0011\bZ\u0012\u0006\u0010\u00d9\u00be\u0098\u00a8\u0006\"\u000545101\u0012\u0011\b[\u0012\u0006\u0010\u00e8\u00c0\u0098\u00a8\u0006\"\u000545102\u0012\u0011\b\\\u0012\u0006\u0010\u00bd\u00c2\u0098\u00a8\u0006\"\u000545103\u0012\u0011\b]\u0012\u0006\u0010\u008a\u00c4\u0098\u00a8\u0006\"\u000545104\u0012\u0011\b^\u0012\u0006\u0010\u00ec\u00c5\u0098\u00a8\u0006\"\u000545122\u0012\u0011\b_\u0012\u0006\u0010\u00d3\u00c9\u0098\u00a8\u0006\"\u000538630\u001a\b\u001a\u0006DPZZ19 \u00b6\u00e8\u0097\u00a8\u0006\"`\n/\n\u001020562-701ff27f-2\u0012\b15:15:00\u001a\b20230916 \u0000*\u00035920\u0000\u0012\u001d\r~\u00f2\u0012\u00c2\u0015\u00a0\u00fc\u0091\u00c2\u001d\u0000\u0000vC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b6\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DPZZ19" + }, + { + "type": "con_recorrido", + "entity": "\n$17afee49-1e12-4a99-9b51-b3008df11ea6\u001a\u00eb\u000b\n/\n\u001020486-701ff27f-2\u0012\b15:16:00\u001a\b20230916 \u0000*\u00035920\u0001\u0012\u0011\b\u0015\u0012\u0006\u0010\u00b1\u00e8\u0097\u00a8\u0006\"\u000537586\u0012\u0011\b\u0016\u0012\u0006\u0010\u00cb\u00e8\u0097\u00a8\u0006\"\u000537587\u0012\u0011\b\u0017\u0012\u0006\u0010\u00dd\u00e8\u0097\u00a8\u0006\"\u000537588\u0012\u0011\b\u0018\u0012\u0006\u0010\u0091\u00e9\u0097\u00a8\u0006\"\u000537589\u0012\u0011\b\u0019\u0012\u0006\u0010\u00cd\u00e9\u0097\u00a8\u0006\"\u000537590\u0012\u0011\b\u001a\u0012\u0006\u0010\u00f8\u00e9\u0097\u00a8\u0006\"\u000537427\u0012\u0011\b\u001b\u0012\u0006\u0010\u00b1\u00ea\u0097\u00a8\u0006\"\u000537426\u0012\u0011\b\u001c\u0012\u0006\u0010\u00d7\u00ea\u0097\u00a8\u0006\"\u000537425\u0012\u0011\b\u001d\u0012\u0006\u0010\u00e1\u00ea\u0097\u00a8\u0006\"\u000537593\u0012\u0011\b\u001e\u0012\u0006\u0010\u00fa\u00ea\u0097\u00a8\u0006\"\u000538509\u0012\u0011\b\u001f\u0012\u0006\u0010\u009e\u00eb\u0097\u00a8\u0006\"\u000538642\u0012\u0011\b \u0012\u0006\u0010\u00ca\u00eb\u0097\u00a8\u0006\"\u000539795\u0012\u0011\b!\u0012\u0006\u0010\u00e4\u00eb\u0097\u00a8\u0006\"\u000538502\u0012\u0011\b\"\u0012\u0006\u0010\u00a7\u00ec\u0097\u00a8\u0006\"\u000538503\u0012\u0011\b#\u0012\u0006\u0010\u00c2\u00ed\u0097\u00a8\u0006\"\u000535691\u0012\u0011\b$\u0012\u0006\u0010\u00ea\u00ed\u0097\u00a8\u0006\"\u000535692\u0012\u0011\b%\u0012\u0006\u0010\u00a0\u00ee\u0097\u00a8\u0006\"\u000535693\u0012\u0011\b&\u0012\u0006\u0010\u00d8\u00ee\u0097\u00a8\u0006\"\u000535694\u0012\u0011\b'\u0012\u0006\u0010\u00ff\u00ee\u0097\u00a8\u0006\"\u000535695\u0012\u0011\b(\u0012\u0006\u0010\u00ad\u00ef\u0097\u00a8\u0006\"\u000535696\u0012\u0011\b)\u0012\u0006\u0010\u00d1\u00f0\u0097\u00a8\u0006\"\u000535697\u0012\u0011\b*\u0012\u0006\u0010\u00c8\u00f1\u0097\u00a8\u0006\"\u000539778\u0012\u0011\b+\u0012\u0006\u0010\u00ae\u00f2\u0097\u00a8\u0006\"\u000535797\u0012\u0011\b,\u0012\u0006\u0010\u00d6\u00f2\u0097\u00a8\u0006\"\u000535798\u0012\u0011\b-\u0012\u0006\u0010\u00fc\u00f2\u0097\u00a8\u0006\"\u000535799\u0012\u0011\b.\u0012\u0006\u0010\u00c0\u00f3\u0097\u00a8\u0006\"\u000535800\u0012\u0011\b/\u0012\u0006\u0010\u00f1\u00f3\u0097\u00a8\u0006\"\u000535801\u0012\u0011\b0\u0012\u0006\u0010\u008b\u00f4\u0097\u00a8\u0006\"\u000535802\u0012\u0011\b1\u0012\u0006\u0010\u00ba\u00f4\u0097\u00a8\u0006\"\u000535803\u0012\u0011\b2\u0012\u0006\u0010\u00f1\u00f4\u0097\u00a8\u0006\"\u000538507\u0012\u0011\b3\u0012\u0006\u0010\u00a5\u00f5\u0097\u00a8\u0006\"\u000534473\u0012\u0011\b4\u0012\u0006\u0010\u00d1\u00f5\u0097\u00a8\u0006\"\u000538500\u0012\u0011\b5\u0012\u0006\u0010\u0080\u00f6\u0097\u00a8\u0006\"\u000535808\u0012\u0011\b6\u0012\u0006\u0010\u00bc\u00f6\u0097\u00a8\u0006\"\u000535710\u0012\u0011\b7\u0012\u0006\u0010\u00ea\u00f6\u0097\u00a8\u0006\"\u000550036\u0012\u0011\b8\u0012\u0006\u0010\u00de\u00f8\u0097\u00a8\u0006\"\u000550037\u0012\u0011\b9\u0012\u0006\u0010\u00fc\u00f9\u0097\u00a8\u0006\"\u000550038\u0012\u0011\b:\u0012\u0006\u0010\u00d2\u00fa\u0097\u00a8\u0006\"\u000550039\u0012\u0011\b;\u0012\u0006\u0010\u0094\u00fb\u0097\u00a8\u0006\"\u000550040\u0012\u0011\b<\u0012\u0006\u0010\u00f8\u00fb\u0097\u00a8\u0006\"\u000550041\u0012\u0012\b=\u0012\u0006\u0010\u009e\u00fd\u0097\u00a8\u0006\"\u0006Jun-15\u0012\u0012\b>\u0012\u0006\u0010\u009a\u00fe\u0097\u00a8\u0006\"\u0006Jun-13\u0012\u0011\b?\u0012\u0006\u0010\u0097\u0080\u0098\u00a8\u0006\"\u00056-Oct\u0012\u0011\b@\u0012\u0006\u0010\u00e3\u0080\u0098\u00a8\u0006\"\u00056-Aug\u0012\u0011\bA\u0012\u0006\u0010\u00c3\u0082\u0098\u00a8\u0006\"\u00056-Jun\u0012\u0011\bB\u0012\u0006\u0010\u00fa\u0083\u0098\u00a8\u0006\"\u00056-Feb\u0012\u0011\bC\u0012\u0006\u0010\u008c\u0086\u0098\u00a8\u0006\"\u000544956\u0012\u0011\bD\u0012\u0006\u0010\u00ca\u0086\u0098\u00a8\u0006\"\u000544957\u0012\u0011\bE\u0012\u0006\u0010\u0082\u0088\u0098\u00a8\u0006\"\u000545057\u0012\u0011\bF\u0012\u0006\u0010\u00ea\u0088\u0098\u00a8\u0006\"\u000544963\u0012\u0011\bG\u0012\u0006\u0010\u00cb\u0089\u0098\u00a8\u0006\"\u000544964\u0012\u0011\bH\u0012\u0006\u0010\u00f8\u008a\u0098\u00a8\u0006\"\u000544965\u0012\u0011\bI\u0012\u0006\u0010\u00fc\u008a\u0098\u00a8\u0006\"\u000550018\u0012\u0011\bJ\u0012\u0006\u0010\u00de\u008b\u0098\u00a8\u0006\"\u000544959\u0012\u0012\bK\u0012\u0006\u0010\u0095\u008d\u0098\u00a8\u0006\"\u000610-Jan\u0012\u0011\bL\u0012\u0006\u0010\u00e6\u008d\u0098\u00a8\u0006\"\u000544863\u0012\u0012\bM\u0012\u0006\u0010\u00b2\u008e\u0098\u00a8\u0006\"\u000610-Mar\u0012\u0012\bN\u0012\u0006\u0010\u00ac\u008f\u0098\u00a8\u0006\"\u000611-Jan\u0012\u0011\bO\u0012\u0006\u0010\u00a0\u0090\u0098\u00a8\u0006\"\u000544866\u0012\u0011\bP\u0012\u0006\u0010\u00fb\u0090\u0098\u00a8\u0006\"\u000544867\u0012\u0011\bQ\u0012\u0006\u0010\u00ba\u0091\u0098\u00a8\u0006\"\u000544868\u0012\u0011\bR\u0012\u0006\u0010\u00fb\u0091\u0098\u00a8\u0006\"\u000544869\u0012\u0011\bS\u0012\u0006\u0010\u00cb\u0092\u0098\u00a8\u0006\"\u000544870\u0012\u0011\bT\u0012\u0006\u0010\u00de\u0093\u0098\u00a8\u0006\"\u000544960\u0012\u0011\bU\u0012\u0006\u0010\u00e8\u0094\u0098\u00a8\u0006\"\u000544961\u0012\u0011\bV\u0012\u0006\u0010\u00d8\u0095\u0098\u00a8\u0006\"\u000514-15\u0012\u0011\bW\u0012\u0006\u0010\u00c1\u0096\u0098\u00a8\u0006\"\u000544962\u0012\u0011\bX\u0012\u0006\u0010\u00fe\u0098\u0098\u00a8\u0006\"\u000514-11\u0012\u0011\bY\u0012\u0006\u0010\u00f6\u0099\u0098\u00a8\u0006\"\u000591162\u0012\u0011\bZ\u0012\u0006\u0010\u00fa\u009b\u0098\u00a8\u0006\"\u000550023\u0012\u0012\b[\u0012\u0006\u0010\u00d1\u009e\u0098\u00a8\u0006\"\u000614-Jul\u0012\u0011\b\\\u0012\u0006\u0010\u00e3\u009f\u0098\u00a8\u0006\"\u000550025\u0012\u0011\b]\u0012\u0006\u0010\u0097\u00a1\u0098\u00a8\u0006\"\u000550026\u0012\u0011\b^\u0012\u0006\u0010\u00f1\u00a3\u0098\u00a8\u0006\"\u000550027\u0012\u0011\b_\u0012\u0006\u0010\u009d\u00a6\u0098\u00a8\u0006\"\u000537474\u0012\u0011\b`\u0012\u0006\u0010\u00f7\u00a7\u0098\u00a8\u0006\"\u000544879\u001a\b\u001a\u0006DRZG21 \u00a8\u00e8\u0097\u00a8\u0006\"`\n/\n\u001020486-701ff27f-2\u0012\b15:16:00\u001a\b20230916 \u0000*\u00035920\u0001\u0012\u001d\r\u00d3-\u0013\u00c2\u0015\u00c83\u0092\u00c2\u001d\u0000\u0000\u00f4B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u001c\u00c7YA(\u00a8\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DRZG21" + }, + { + "type": "con_recorrido", + "entity": "\n$be8c8b14-feb9-499f-b8ee-8e16c28533cd\u001a\u00ef\b\n/\n\u001020485-701ff27f-2\u0012\b15:01:00\u001a\b20230916 \u0000*\u00035920\u0001\u0012\u0011\b)\u0012\u0006\u0010\u008d\u00e9\u0097\u00a8\u0006\"\u000535697\u0012\u0011\b*\u0012\u0006\u0010\u008c\u00ea\u0097\u00a8\u0006\"\u000539778\u0012\u0011\b+\u0012\u0006\u0010\u00f8\u00ea\u0097\u00a8\u0006\"\u000535797\u0012\u0011\b,\u0012\u0006\u0010\u00a2\u00eb\u0097\u00a8\u0006\"\u000535798\u0012\u0011\b-\u0012\u0006\u0010\u00c8\u00eb\u0097\u00a8\u0006\"\u000535799\u0012\u0011\b.\u0012\u0006\u0010\u008e\u00ec\u0097\u00a8\u0006\"\u000535800\u0012\u0011\b/\u0012\u0006\u0010\u00bf\u00ec\u0097\u00a8\u0006\"\u000535801\u0012\u0011\b0\u0012\u0006\u0010\u00d9\u00ec\u0097\u00a8\u0006\"\u000535802\u0012\u0011\b1\u0012\u0006\u0010\u0088\u00ed\u0097\u00a8\u0006\"\u000535803\u0012\u0011\b2\u0012\u0006\u0010\u00be\u00ed\u0097\u00a8\u0006\"\u000538507\u0012\u0011\b3\u0012\u0006\u0010\u00f0\u00ed\u0097\u00a8\u0006\"\u000534473\u0012\u0011\b4\u0012\u0006\u0010\u009b\u00ee\u0097\u00a8\u0006\"\u000538500\u0012\u0011\b5\u0012\u0006\u0010\u00c8\u00ee\u0097\u00a8\u0006\"\u000535808\u0012\u0011\b6\u0012\u0006\u0010\u0080\u00ef\u0097\u00a8\u0006\"\u000535710\u0012\u0011\b7\u0012\u0006\u0010\u00ac\u00ef\u0097\u00a8\u0006\"\u000550036\u0012\u0011\b8\u0012\u0006\u0010\u008b\u00f1\u0097\u00a8\u0006\"\u000550037\u0012\u0011\b9\u0012\u0006\u0010\u0096\u00f2\u0097\u00a8\u0006\"\u000550038\u0012\u0011\b:\u0012\u0006\u0010\u00e1\u00f2\u0097\u00a8\u0006\"\u000550039\u0012\u0011\b;\u0012\u0006\u0010\u009a\u00f3\u0097\u00a8\u0006\"\u000550040\u0012\u0011\b<\u0012\u0006\u0010\u00ef\u00f3\u0097\u00a8\u0006\"\u000550041\u0012\u0012\b=\u0012\u0006\u0010\u00f8\u00f4\u0097\u00a8\u0006\"\u0006Jun-15\u0012\u0012\b>\u0012\u0006\u0010\u00dd\u00f5\u0097\u00a8\u0006\"\u0006Jun-13\u0012\u0011\b?\u0012\u0006\u0010\u00a6\u00f7\u0097\u00a8\u0006\"\u00056-Oct\u0012\u0011\b@\u0012\u0006\u0010\u00e1\u00f7\u0097\u00a8\u0006\"\u00056-Aug\u0012\u0011\bA\u0012\u0006\u0010\u008b\u00f9\u0097\u00a8\u0006\"\u00056-Jun\u0012\u0011\bB\u0012\u0006\u0010\u0094\u00fa\u0097\u00a8\u0006\"\u00056-Feb\u0012\u0011\bC\u0012\u0006\u0010\u00da\u00fb\u0097\u00a8\u0006\"\u000544956\u0012\u0011\bD\u0012\u0006\u0010\u0086\u00fc\u0097\u00a8\u0006\"\u000544957\u0012\u0011\bE\u0012\u0006\u0010\u0087\u00fd\u0097\u00a8\u0006\"\u000545057\u0012\u0011\bF\u0012\u0006\u0010\u00cf\u00fd\u0097\u00a8\u0006\"\u000544963\u0012\u0011\bG\u0012\u0006\u0010\u0091\u00fe\u0097\u00a8\u0006\"\u000544964\u0012\u0011\bH\u0012\u0006\u0010\u0085\u00ff\u0097\u00a8\u0006\"\u000544965\u0012\u0011\bI\u0012\u0006\u0010\u0088\u00ff\u0097\u00a8\u0006\"\u000550018\u0012\u0011\bJ\u0012\u0006\u0010\u00c9\u00ff\u0097\u00a8\u0006\"\u000544959\u0012\u0012\bK\u0012\u0006\u0010\u00c1\u0080\u0098\u00a8\u0006\"\u000610-Jan\u0012\u0011\bL\u0012\u0006\u0010\u00f5\u0080\u0098\u00a8\u0006\"\u000544863\u0012\u0012\bM\u0012\u0006\u0010\u00a6\u0081\u0098\u00a8\u0006\"\u000610-Mar\u0012\u0012\bN\u0012\u0006\u0010\u00f3\u0081\u0098\u00a8\u0006\"\u000611-Jan\u0012\u0011\bO\u0012\u0006\u0010\u00bd\u0082\u0098\u00a8\u0006\"\u000544866\u0012\u0011\bP\u0012\u0006\u0010\u00f5\u0082\u0098\u00a8\u0006\"\u000544867\u0012\u0011\bQ\u0012\u0006\u0010\u009c\u0083\u0098\u00a8\u0006\"\u000544868\u0012\u0011\bR\u0012\u0006\u0010\u00c4\u0083\u0098\u00a8\u0006\"\u000544869\u0012\u0011\bS\u0012\u0006\u0010\u00f4\u0083\u0098\u00a8\u0006\"\u000544870\u0012\u0011\bT\u0012\u0006\u0010\u00ce\u0084\u0098\u00a8\u0006\"\u000544960\u0012\u0011\bU\u0012\u0006\u0010\u00a0\u0085\u0098\u00a8\u0006\"\u000544961\u0012\u0011\bV\u0012\u0006\u0010\u00e2\u0085\u0098\u00a8\u0006\"\u000514-15\u0012\u0011\bW\u0012\u0006\u0010\u00a0\u0086\u0098\u00a8\u0006\"\u000544962\u0012\u0011\bX\u0012\u0006\u0010\u00d6\u0087\u0098\u00a8\u0006\"\u000514-11\u0012\u0011\bY\u0012\u0006\u0010\u009a\u0088\u0098\u00a8\u0006\"\u000591162\u0012\u0011\bZ\u0012\u0006\u0010\u00aa\u0089\u0098\u00a8\u0006\"\u000550023\u0012\u0012\b[\u0012\u0006\u0010\u00e4\u008a\u0098\u00a8\u0006\"\u000614-Jul\u0012\u0011\b\\\u0012\u0006\u0010\u00b2\u008b\u0098\u00a8\u0006\"\u000550025\u0012\u0011\b]\u0012\u0006\u0010\u0091\u008c\u0098\u00a8\u0006\"\u000550026\u0012\u0011\b^\u0012\u0006\u0010\u00c3\u008d\u0098\u00a8\u0006\"\u000550027\u0012\u0011\b_\u0012\u0006\u0010\u00da\u008e\u0098\u00a8\u0006\"\u000537474\u0012\u0011\b`\u0012\u0006\u0010\u00c6\u008f\u0098\u00a8\u0006\"\u000544879\u001a\b\u001a\u0006FGPH73 \u00aa\u00e8\u0097\u00a8\u0006\"`\n/\n\u001020485-701ff27f-2\u0012\b15:01:00\u001a\b20230916 \u0000*\u00035920\u0001\u0012\u001d\rEF\u0013\u00c2\u0015-\"\u0092\u00c2\u001d\u0000\u0000\u0012C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u001c\u00c7\u0089A(\u00aa\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FGPH73" + }, + { + "type": "con_recorrido", + "entity": "\n$8af00e4e-961c-47b0-b8a8-0a07813a5346\u001a\u00fa\u0003\n/\n\u001020483-701ff27f-2\u0012\b14:31:00\u001a\b20230916 \u0000*\u00035920\u0001\u0012\u0011\bJ\u0012\u0006\u0010\u00bc\u00e8\u0097\u00a8\u0006\"\u000544959\u0012\u0012\bK\u0012\u0006\u0010\u009c\u00e9\u0097\u00a8\u0006\"\u000610-Jan\u0012\u0011\bL\u0012\u0006\u0010\u00c4\u00e9\u0097\u00a8\u0006\"\u000544863\u0012\u0012\bM\u0012\u0006\u0010\u00e8\u00e9\u0097\u00a8\u0006\"\u000610-Mar\u0012\u0012\bN\u0012\u0006\u0010\u00a1\u00ea\u0097\u00a8\u0006\"\u000611-Jan\u0012\u0011\bO\u0012\u0006\u0010\u00d5\u00ea\u0097\u00a8\u0006\"\u000544866\u0012\u0011\bP\u0012\u0006\u0010\u00fd\u00ea\u0097\u00a8\u0006\"\u000544867\u0012\u0011\bQ\u0012\u0006\u0010\u0097\u00eb\u0097\u00a8\u0006\"\u000544868\u0012\u0011\bR\u0012\u0006\u0010\u00b2\u00eb\u0097\u00a8\u0006\"\u000544869\u0012\u0011\bS\u0012\u0006\u0010\u00d2\u00eb\u0097\u00a8\u0006\"\u000544870\u0012\u0011\bT\u0012\u0006\u0010\u008c\u00ec\u0097\u00a8\u0006\"\u000544960\u0012\u0011\bU\u0012\u0006\u0010\u00c0\u00ec\u0097\u00a8\u0006\"\u000544961\u0012\u0011\bV\u0012\u0006\u0010\u00e9\u00ec\u0097\u00a8\u0006\"\u000514-15\u0012\u0011\bW\u0012\u0006\u0010\u008e\u00ed\u0097\u00a8\u0006\"\u000544962\u0012\u0011\bX\u0012\u0006\u0010\u00f8\u00ed\u0097\u00a8\u0006\"\u000514-11\u0012\u0011\bY\u0012\u0006\u0010\u009e\u00ee\u0097\u00a8\u0006\"\u000591162\u0012\u0011\bZ\u0012\u0006\u0010\u00ec\u00ee\u0097\u00a8\u0006\"\u000550023\u0012\u0012\b[\u0012\u0006\u0010\u00cc\u00ef\u0097\u00a8\u0006\"\u000614-Jul\u0012\u0011\b\\\u0012\u0006\u0010\u00f2\u00ef\u0097\u00a8\u0006\"\u000550025\u0012\u0011\b]\u0012\u0006\u0010\u00a0\u00f0\u0097\u00a8\u0006\"\u000550026\u0012\u0011\b^\u0012\u0006\u0010\u00f4\u00f0\u0097\u00a8\u0006\"\u000550027\u0012\u0011\b_\u0012\u0006\u0010\u00b8\u00f1\u0097\u00a8\u0006\"\u000537474\u0012\u0011\b`\u0012\u0006\u0010\u00e7\u00f1\u0097\u00a8\u0006\"\u000544879\u001a\b\u001a\u0006HSTC55 \u009e\u00e8\u0097\u00a8\u0006\"`\n/\n\u001020483-701ff27f-2\u0012\b14:31:00\u001a\b20230916 \u0000*\u00035920\u0001\u0012\u001d\r\u00c4\u00f8\u0012\u00c2\u0015\u0019\u00fc\u0091\u00c2\u001d\u0000\u0000\u00a9C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008e\u00e3x@(\u009e\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HSTC55" + }, + { + "type": "con_recorrido", + "entity": "\n$fc7e8c9f-efbb-4e11-b69c-158de259b6f2\u001a\u0099\u0006\n/\n\u001020484-701ff27f-2\u0012\b14:46:00\u001a\b20230916 \u0000*\u00035920\u0001\u0012\u0011\b;\u0012\u0006\u0010\u00ad\u00e8\u0097\u00a8\u0006\"\u000550040\u0012\u0011\b<\u0012\u0006\u0010\u0088\u00e9\u0097\u00a8\u0006\"\u000550041\u0012\u0012\b=\u0012\u0006\u0010\u0098\u00ea\u0097\u00a8\u0006\"\u0006Jun-15\u0012\u0012\b>\u0012\u0006\u0010\u00fe\u00ea\u0097\u00a8\u0006\"\u0006Jun-13\u0012\u0011\b?\u0012\u0006\u0010\u00c1\u00ec\u0097\u00a8\u0006\"\u00056-Oct\u0012\u0011\b@\u0012\u0006\u0010\u00f8\u00ec\u0097\u00a8\u0006\"\u00056-Aug\u0012\u0011\bA\u0012\u0006\u0010\u0094\u00ee\u0097\u00a8\u0006\"\u00056-Jun\u0012\u0011\bB\u0012\u0006\u0010\u008c\u00ef\u0097\u00a8\u0006\"\u00056-Feb\u0012\u0011\bC\u0012\u0006\u0010\u00b4\u00f0\u0097\u00a8\u0006\"\u000544956\u0012\u0011\bD\u0012\u0006\u0010\u00d9\u00f0\u0097\u00a8\u0006\"\u000544957\u0012\u0011\bE\u0012\u0006\u0010\u00c1\u00f1\u0097\u00a8\u0006\"\u000545057\u0012\u0011\bF\u0012\u0006\u0010\u00fa\u00f1\u0097\u00a8\u0006\"\u000544963\u0012\u0011\bG\u0012\u0006\u0010\u00ad\u00f2\u0097\u00a8\u0006\"\u000544964\u0012\u0011\bH\u0012\u0006\u0010\u0087\u00f3\u0097\u00a8\u0006\"\u000544965\u0012\u0011\bI\u0012\u0006\u0010\u0089\u00f3\u0097\u00a8\u0006\"\u000550018\u0012\u0011\bJ\u0012\u0006\u0010\u00ba\u00f3\u0097\u00a8\u0006\"\u000544959\u0012\u0012\bK\u0012\u0006\u0010\u0093\u00f4\u0097\u00a8\u0006\"\u000610-Jan\u0012\u0011\bL\u0012\u0006\u0010\u00b9\u00f4\u0097\u00a8\u0006\"\u000544863\u0012\u0012\bM\u0012\u0006\u0010\u00dc\u00f4\u0097\u00a8\u0006\"\u000610-Mar\u0012\u0012\bN\u0012\u0006\u0010\u0093\u00f5\u0097\u00a8\u0006\"\u000611-Jan\u0012\u0011\bO\u0012\u0006\u0010\u00c7\u00f5\u0097\u00a8\u0006\"\u000544866\u0012\u0011\bP\u0012\u0006\u0010\u00ee\u00f5\u0097\u00a8\u0006\"\u000544867\u0012\u0011\bQ\u0012\u0006\u0010\u0089\u00f6\u0097\u00a8\u0006\"\u000544868\u0012\u0011\bR\u0012\u0006\u0010\u00a4\u00f6\u0097\u00a8\u0006\"\u000544869\u0012\u0011\bS\u0012\u0006\u0010\u00c5\u00f6\u0097\u00a8\u0006\"\u000544870\u0012\u0011\bT\u0012\u0006\u0010\u0081\u00f7\u0097\u00a8\u0006\"\u000544960\u0012\u0011\bU\u0012\u0006\u0010\u00b8\u00f7\u0097\u00a8\u0006\"\u000544961\u0012\u0011\bV\u0012\u0006\u0010\u00e4\u00f7\u0097\u00a8\u0006\"\u000514-15\u0012\u0011\bW\u0012\u0006\u0010\u008b\u00f8\u0097\u00a8\u0006\"\u000544962\u0012\u0011\bX\u0012\u0006\u0010\u0080\u00f9\u0097\u00a8\u0006\"\u000514-11\u0012\u0011\bY\u0012\u0006\u0010\u00aa\u00f9\u0097\u00a8\u0006\"\u000591162\u0012\u0011\bZ\u0012\u0006\u0010\u0083\u00fa\u0097\u00a8\u0006\"\u000550023\u0012\u0012\b[\u0012\u0006\u0010\u00f3\u00fa\u0097\u00a8\u0006\"\u000614-Jul\u0012\u0011\b\\\u0012\u0006\u0010\u00a1\u00fb\u0097\u00a8\u0006\"\u000550025\u0012\u0011\b]\u0012\u0006\u0010\u00d8\u00fb\u0097\u00a8\u0006\"\u000550026\u0012\u0011\b^\u0012\u0006\u0010\u00be\u00fc\u0097\u00a8\u0006\"\u000550027\u0012\u0011\b_\u0012\u0006\u0010\u0092\u00fd\u0097\u00a8\u0006\"\u000537474\u0012\u0011\b`\u0012\u0006\u0010\u00cd\u00fd\u0097\u00a8\u0006\"\u000544879\u001a\b\u001a\u0006HYCZ33 \u00aa\u00e8\u0097\u00a8\u0006\"`\n/\n\u001020484-701ff27f-2\u0012\b14:46:00\u001a\b20230916 \u0000*\u00035920\u0001\u0012\u001d\r\u00da*\u0013\u00c2\u0015\u00d5\f\u0092\u00c2\u001d\u0000\u0000\u0080A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u00de@(\u00aa\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HYCZ33" + }, + { + "type": "con_recorrido", + "entity": "\n$eab165b9-b2a2-40d7-b73d-21efbbed7c5b\u001a\u00e5\u0003\n/\n\u001020559-701ff27f-2\u0012\b14:30:00\u001a\b20230916 \u0000*\u00035920\u0000\u0012\u0013\bJ\u0012\u0006\u0010\u00c4\u00e8\u0097\u00a8\u0006\"\u00074838437\u0012\u0011\bK\u0012\u0006\u0010\u00fe\u00e8\u0097\u00a8\u0006\"\u000545085\u0012\u0011\bL\u0012\u0006\u0010\u00d1\u00e9\u0097\u00a8\u0006\"\u000545086\u0012\u0011\bM\u0012\u0006\u0010\u00bc\u00ea\u0097\u00a8\u0006\"\u000545087\u0012\u0011\bN\u0012\u0006\u0010\u00d6\u00ea\u0097\u00a8\u0006\"\u000545088\u0012\u0011\bO\u0012\u0006\u0010\u00fe\u00ea\u0097\u00a8\u0006\"\u000545089\u0012\u0011\bP\u0012\u0006\u0010\u00c2\u00eb\u0097\u00a8\u0006\"\u000545090\u0012\u0011\bQ\u0012\u0006\u0010\u00de\u00eb\u0097\u00a8\u0006\"\u000545091\u0012\u0011\bR\u0012\u0006\u0010\u0084\u00ec\u0097\u00a8\u0006\"\u000545092\u0012\u0011\bS\u0012\u0006\u0010\u00ae\u00ec\u0097\u00a8\u0006\"\u000545093\u0012\u0011\bT\u0012\u0006\u0010\u00df\u00ec\u0097\u00a8\u0006\"\u000545094\u0012\u0011\bU\u0012\u0006\u0010\u0081\u00ed\u0097\u00a8\u0006\"\u000545095\u0012\u0011\bV\u0012\u0006\u0010\u00aa\u00ed\u0097\u00a8\u0006\"\u000545096\u0012\u0011\bW\u0012\u0006\u0010\u00ee\u00ed\u0097\u00a8\u0006\"\u000545098\u0012\u0011\bX\u0012\u0006\u0010\u008d\u00ee\u0097\u00a8\u0006\"\u000545099\u0012\u0011\bY\u0012\u0006\u0010\u009f\u00ee\u0097\u00a8\u0006\"\u000545100\u0012\u0011\bZ\u0012\u0006\u0010\u00bc\u00ee\u0097\u00a8\u0006\"\u000545101\u0012\u0011\b[\u0012\u0006\u0010\u00de\u00ee\u0097\u00a8\u0006\"\u000545102\u0012\u0011\b\\\u0012\u0006\u0010\u00f7\u00ee\u0097\u00a8\u0006\"\u000545103\u0012\u0011\b]\u0012\u0006\u0010\u008f\u00ef\u0097\u00a8\u0006\"\u000545104\u0012\u0011\b^\u0012\u0006\u0010\u00a8\u00ef\u0097\u00a8\u0006\"\u000545122\u0012\u0011\b_\u0012\u0006\u0010\u00db\u00ef\u0097\u00a8\u0006\"\u000538630\u001a\b\u001a\u0006JSBB20 \u00b0\u00e8\u0097\u00a8\u0006\"`\n/\n\u001020559-701ff27f-2\u0012\b14:30:00\u001a\b20230916 \u0000*\u00035920\u0000\u0012\u001d\r\u0015\u000f\u0013\u00c2\u0015E,\u0092\u00c2\u001d\u0000\u0000\u00a7C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-r\u001c\u0083A(\u00b0\u00e8\u0097\u00a8\u0006B\b\u001a\u0006JSBB20" + }, + { + "type": "con_recorrido", + "entity": "\n$7623000a-a671-4c4a-800f-ee503cb0211b\u001a\u00f2\b\n/\n\u001020561-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00035920\u0000\u0012\u0011\b(\u0012\u0006\u0010\u00c3\u00ea\u0097\u00a8\u0006\"\u000590003\u0012\u0011\b)\u0012\u0006\u0010\u00f2\u00ea\u0097\u00a8\u0006\"\u000590007\u0012\u0011\b*\u0012\u0006\u0010\u00a5\u00eb\u0097\u00a8\u0006\"\u000590008\u0012\u0011\b+\u0012\u0006\u0010\u0094\u00ec\u0097\u00a8\u0006\"\u000539599\u0012\u0011\b,\u0012\u0006\u0010\u00ab\u00ec\u0097\u00a8\u0006\"\u000539600\u0012\u0011\b-\u0012\u0006\u0010\u00ed\u00ec\u0097\u00a8\u0006\"\u000537496\u0012\u0011\b.\u0012\u0006\u0010\u009e\u00ed\u0097\u00a8\u0006\"\u000545064\u0012\u0011\b/\u0012\u0006\u0010\u00e6\u00ed\u0097\u00a8\u0006\"\u000537506\u0012\u0011\b0\u0012\u0006\u0010\u00af\u00ee\u0097\u00a8\u0006\"\u000545069\u0012\u0011\b1\u0012\u0006\u0010\u009c\u00ef\u0097\u00a8\u0006\"\u000537523\u0012\u0011\b2\u0012\u0006\u0010\u00c4\u00ef\u0097\u00a8\u0006\"\u000537477\u0012\u0011\b3\u0012\u0006\u0010\u0098\u00f0\u0097\u00a8\u0006\"\u000549310\u0012\u0011\b4\u0012\u0006\u0010\u00b7\u00f0\u0097\u00a8\u0006\"\u000549311\u0012\u0011\b5\u0012\u0006\u0010\u00ed\u00f0\u0097\u00a8\u0006\"\u000539634\u0012\u0011\b6\u0012\u0006\u0010\u0086\u00f1\u0097\u00a8\u0006\"\u000539635\u0012\u0011\b7\u0012\u0006\u0010\u00b2\u00f1\u0097\u00a8\u0006\"\u000539636\u0012\u0011\b8\u0012\u0006\u0010\u00e6\u00f1\u0097\u00a8\u0006\"\u000549503\u0012\u0011\b9\u0012\u0006\u0010\u00e2\u00f2\u0097\u00a8\u0006\"\u000539637\u0012\u0011\b:\u0012\u0006\u0010\u0093\u00f3\u0097\u00a8\u0006\"\u000549317\u0012\u0011\b;\u0012\u0006\u0010\u00b2\u00f3\u0097\u00a8\u0006\"\u000549318\u0012\u0011\b<\u0012\u0006\u0010\u00f3\u00f3\u0097\u00a8\u0006\"\u000549319\u0012\u0011\b=\u0012\u0006\u0010\u00b3\u00f4\u0097\u00a8\u0006\"\u000539641\u0012\u0011\b>\u0012\u0006\u0010\u00f5\u00f4\u0097\u00a8\u0006\"\u000538590\u0012\u0011\b?\u0012\u0006\u0010\u00a9\u00f8\u0097\u00a8\u0006\"\u000532575\u0012\u0013\b@\u0012\u0006\u0010\u00df\u00f8\u0097\u00a8\u0006\"\u00074950738\u0012\u0011\bA\u0012\u0006\u0010\u00fd\u00fa\u0097\u00a8\u0006\"\u000538530\u0012\u0014\bB\u0012\u0006\u0010\u008c\u00fb\u0097\u00a8\u0006\"\b16005209\u0012\u0011\bC\u0012\u0006\u0010\u00a4\u00fd\u0097\u00a8\u0006\"\u000538531\u0012\u0013\bD\u0012\u0006\u0010\u00e8\u00fd\u0097\u00a8\u0006\"\u00078921285\u0012\u0011\bE\u0012\u0006\u0010\u00f5\u00fe\u0097\u00a8\u0006\"\u000538532\u0012\u0011\bF\u0012\u0006\u0010\u00ba\u00ff\u0097\u00a8\u0006\"\u000538533\u0012\u0011\bG\u0012\u0006\u0010\u0081\u0080\u0098\u00a8\u0006\"\u000538534\u0012\u0011\bH\u0012\u0006\u0010\u00c2\u0080\u0098\u00a8\u0006\"\u000538535\u0012\u0011\bI\u0012\u0006\u0010\u009c\u0081\u0098\u00a8\u0006\"\u000538536\u0012\u0013\bJ\u0012\u0006\u0010\u00ce\u0081\u0098\u00a8\u0006\"\u00074838437\u0012\u0011\bK\u0012\u0006\u0010\u009b\u0082\u0098\u00a8\u0006\"\u000545085\u0012\u0011\bL\u0012\u0006\u0010\u008f\u0083\u0098\u00a8\u0006\"\u000545086\u0012\u0011\bM\u0012\u0006\u0010\u00ab\u0084\u0098\u00a8\u0006\"\u000545087\u0012\u0011\bN\u0012\u0006\u0010\u00d1\u0084\u0098\u00a8\u0006\"\u000545088\u0012\u0011\bO\u0012\u0006\u0010\u008f\u0085\u0098\u00a8\u0006\"\u000545089\u0012\u0011\bP\u0012\u0006\u0010\u00fc\u0085\u0098\u00a8\u0006\"\u000545090\u0012\u0011\bQ\u0012\u0006\u0010\u00a9\u0086\u0098\u00a8\u0006\"\u000545091\u0012\u0011\bR\u0012\u0006\u0010\u00e8\u0086\u0098\u00a8\u0006\"\u000545092\u0012\u0011\bS\u0012\u0006\u0010\u00b0\u0087\u0098\u00a8\u0006\"\u000545093\u0012\u0011\bT\u0012\u0006\u0010\u0084\u0088\u0098\u00a8\u0006\"\u000545094\u0012\u0011\bU\u0012\u0006\u0010\u00c2\u0088\u0098\u00a8\u0006\"\u000545095\u0012\u0011\bV\u0012\u0006\u0010\u008d\u0089\u0098\u00a8\u0006\"\u000545096\u0012\u0011\bW\u0012\u0006\u0010\u008d\u008a\u0098\u00a8\u0006\"\u000545098\u0012\u0011\bX\u0012\u0006\u0010\u00c8\u008a\u0098\u00a8\u0006\"\u000545099\u0012\u0011\bY\u0012\u0006\u0010\u00ec\u008a\u0098\u00a8\u0006\"\u000545100\u0012\u0011\bZ\u0012\u0006\u0010\u00a7\u008b\u0098\u00a8\u0006\"\u000545101\u0012\u0011\b[\u0012\u0006\u0010\u00eb\u008b\u0098\u00a8\u0006\"\u000545102\u0012\u0011\b\\\u0012\u0006\u0010\u009f\u008c\u0098\u00a8\u0006\"\u000545103\u0012\u0011\b]\u0012\u0006\u0010\u00d0\u008c\u0098\u00a8\u0006\"\u000545104\u0012\u0011\b^\u0012\u0006\u0010\u0085\u008d\u0098\u00a8\u0006\"\u000545122\u0012\u0011\b_\u0012\u0006\u0010\u00f5\u008d\u0098\u00a8\u0006\"\u000538630\u001a\b\u001a\u0006RJLV32 \u00b2\u00e8\u0097\u00a8\u0006\"`\n/\n\u001020561-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00035920\u0000\u0012\u001d\ru8\u0013\u00c2\u0015\u0096\f\u0092\u00c2\u001d\u0000\u0000 C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-9\u008eCA(\u00b2\u00e8\u0097\u00a8\u0006B\b\u001a\u0006RJLV32" + }, + { + "type": "con_recorrido", + "entity": "\n$161c593c-bd83-4318-879a-cec2967b3cca\u001a\u00d6\u000e\n/\n\u001020487-701ff27f-2\u0012\b15:31:00\u001a\b20230916 \u0000*\u00035920\u0001\u0012\u0011\b\u0001\u0012\u0006\u0010\u00d8\u00e8\u0097\u00a8\u0006\"\u000542365\u0012\u0011\b\u0002\u0012\u0006\u0010\u00a7\u00ea\u0097\u00a8\u0006\"\u000542421\u0012\u0011\b\u0003\u0012\u0006\u0010\u00f5\u00eb\u0097\u00a8\u0006\"\u000542422\u0012\u0011\b\u0004\u0012\u0006\u0010\u00c1\u00ec\u0097\u00a8\u0006\"\u000542423\u0012\u0011\b\u0005\u0012\u0006\u0010\u00b0\u00ed\u0097\u00a8\u0006\"\u000542424\u0012\u0011\b\u0006\u0012\u0006\u0010\u00eb\u00ee\u0097\u00a8\u0006\"\u000542425\u0012\u0011\b\u0007\u0012\u0006\u0010\u0099\u00f0\u0097\u00a8\u0006\"\u000542426\u0012\u0011\b\b\u0012\u0006\u0010\u00ce\u00f0\u0097\u00a8\u0006\"\u000542427\u0012\u0011\b\t\u0012\u0006\u0010\u00eb\u00f0\u0097\u00a8\u0006\"\u000542428\u0012\u0011\b\n\u0012\u0006\u0010\u0088\u00f1\u0097\u00a8\u0006\"\u000542429\u0012\u0011\b\u000b\u0012\u0006\u0010\u00ac\u00f1\u0097\u00a8\u0006\"\u000542430\u0012\u0011\b\f\u0012\u0006\u0010\u00dd\u00f1\u0097\u00a8\u0006\"\u000542431\u0012\u0011\b\r\u0012\u0006\u0010\u00f4\u00f1\u0097\u00a8\u0006\"\u000542432\u0012\u0011\b\u000e\u0012\u0006\u0010\u00ca\u00f2\u0097\u00a8\u0006\"\u000542434\u0012\u0011\b\u000f\u0012\u0006\u0010\u00fc\u00f2\u0097\u00a8\u0006\"\u000542435\u0012\u0013\b\u0010\u0012\u0006\u0010\u00a9\u00f3\u0097\u00a8\u0006\"\u00074831075\u0012\u0011\b\u0012\u0012\u0006\u0010\u00ef\u00f3\u0097\u00a8\u0006\"\u000537435\u0012\u0011\b\u0013\u0012\u0006\u0010\u0096\u00f4\u0097\u00a8\u0006\"\u000537583\u0012\u0011\b\u0014\u0012\u0006\u0010\u00bf\u00f5\u0097\u00a8\u0006\"\u000537585\u0012\u0011\b\u0015\u0012\u0006\u0010\u00e4\u00f5\u0097\u00a8\u0006\"\u000537586\u0012\u0011\b\u0016\u0012\u0006\u0010\u00fd\u00f5\u0097\u00a8\u0006\"\u000537587\u0012\u0011\b\u0017\u0012\u0006\u0010\u008e\u00f6\u0097\u00a8\u0006\"\u000537588\u0012\u0011\b\u0018\u0012\u0006\u0010\u00c0\u00f6\u0097\u00a8\u0006\"\u000537589\u0012\u0011\b\u0019\u0012\u0006\u0010\u00fb\u00f6\u0097\u00a8\u0006\"\u000537590\u0012\u0011\b\u001a\u0012\u0006\u0010\u00a6\u00f7\u0097\u00a8\u0006\"\u000537427\u0012\u0011\b\u001b\u0012\u0006\u0010\u00e0\u00f7\u0097\u00a8\u0006\"\u000537426\u0012\u0011\b\u001c\u0012\u0006\u0010\u0087\u00f8\u0097\u00a8\u0006\"\u000537425\u0012\u0011\b\u001d\u0012\u0006\u0010\u0091\u00f8\u0097\u00a8\u0006\"\u000537593\u0012\u0011\b\u001e\u0012\u0006\u0010\u00ac\u00f8\u0097\u00a8\u0006\"\u000538509\u0012\u0011\b\u001f\u0012\u0006\u0010\u00d1\u00f8\u0097\u00a8\u0006\"\u000538642\u0012\u0011\b \u0012\u0006\u0010\u0081\u00f9\u0097\u00a8\u0006\"\u000539795\u0012\u0011\b!\u0012\u0006\u0010\u009c\u00f9\u0097\u00a8\u0006\"\u000538502\u0012\u0011\b\"\u0012\u0006\u0010\u00e6\u00f9\u0097\u00a8\u0006\"\u000538503\u0012\u0011\b#\u0012\u0006\u0010\u0096\u00fb\u0097\u00a8\u0006\"\u000535691\u0012\u0011\b$\u0012\u0006\u0010\u00c5\u00fb\u0097\u00a8\u0006\"\u000535692\u0012\u0011\b%\u0012\u0006\u0010\u0085\u00fc\u0097\u00a8\u0006\"\u000535693\u0012\u0011\b&\u0012\u0006\u0010\u00ca\u00fc\u0097\u00a8\u0006\"\u000535694\u0012\u0011\b'\u0012\u0006\u0010\u00fa\u00fc\u0097\u00a8\u0006\"\u000535695\u0012\u0011\b(\u0012\u0006\u0010\u00b3\u00fd\u0097\u00a8\u0006\"\u000535696\u0012\u0011\b)\u0012\u0006\u0010\u0086\u00ff\u0097\u00a8\u0006\"\u000535697\u0012\u0011\b*\u0012\u0006\u0010\u00a7\u0080\u0098\u00a8\u0006\"\u000539778\u0012\u0011\b+\u0012\u0006\u0010\u00b6\u0081\u0098\u00a8\u0006\"\u000535797\u0012\u0011\b,\u0012\u0006\u0010\u00ef\u0081\u0098\u00a8\u0006\"\u000535798\u0012\u0011\b-\u0012\u0006\u0010\u00a5\u0082\u0098\u00a8\u0006\"\u000535799\u0012\u0011\b.\u0012\u0006\u0010\u008a\u0083\u0098\u00a8\u0006\"\u000535800\u0012\u0011\b/\u0012\u0006\u0010\u00d3\u0083\u0098\u00a8\u0006\"\u000535801\u0012\u0011\b0\u0012\u0006\u0010\u00fa\u0083\u0098\u00a8\u0006\"\u000535802\u0012\u0011\b1\u0012\u0006\u0010\u00c2\u0084\u0098\u00a8\u0006\"\u000535803\u0012\u0011\b2\u0012\u0006\u0010\u0099\u0085\u0098\u00a8\u0006\"\u000538507\u0012\u0011\b3\u0012\u0006\u0010\u00e9\u0085\u0098\u00a8\u0006\"\u000534473\u0012\u0011\b4\u0012\u0006\u0010\u00b1\u0086\u0098\u00a8\u0006\"\u000538500\u0012\u0011\b5\u0012\u0006\u0010\u00fd\u0086\u0098\u00a8\u0006\"\u000535808\u0012\u0011\b6\u0012\u0006\u0010\u00e0\u0087\u0098\u00a8\u0006\"\u000535710\u0012\u0011\b7\u0012\u0006\u0010\u00ae\u0088\u0098\u00a8\u0006\"\u000550036\u0012\u0011\b8\u0012\u0006\u0010\u00da\u008b\u0098\u00a8\u0006\"\u000550037\u0012\u0011\b9\u0012\u0006\u0010\u0081\u008e\u0098\u00a8\u0006\"\u000550038\u0012\u0011\b:\u0012\u0006\u0010\u00a7\u008f\u0098\u00a8\u0006\"\u000550039\u0012\u0011\b;\u0012\u0006\u0010\u00ab\u0090\u0098\u00a8\u0006\"\u000550040\u0012\u0011\b<\u0012\u0006\u0010\u00f6\u0091\u0098\u00a8\u0006\"\u000550041\u0012\u0012\b=\u0012\u0006\u0010\u00d2\u0094\u0098\u00a8\u0006\"\u0006Jun-15\u0012\u0012\b>\u0012\u0006\u0010\u00e3\u0096\u0098\u00a8\u0006\"\u0006Jun-13\u0012\u0011\b?\u0012\u0006\u0010\u00b2\u009b\u0098\u00a8\u0006\"\u00056-Oct\u0012\u0011\b@\u0012\u0006\u0010\u00eb\u009c\u0098\u00a8\u0006\"\u00056-Aug\u0012\u0011\bA\u0012\u0006\u0010\u00a9\u00a1\u0098\u00a8\u0006\"\u00056-Jun\u0012\u0011\bB\u0012\u0006\u0010\u009e\u00a5\u0098\u00a8\u0006\"\u00056-Feb\u0012\u0011\bC\u0012\u0006\u0010\u00bf\u00ab\u0098\u00a8\u0006\"\u000544956\u0012\u0011\bD\u0012\u0006\u0010\u0081\u00ad\u0098\u00a8\u0006\"\u000544957\u0012\u0011\bE\u0012\u0006\u0010\u00d1\u00b1\u0098\u00a8\u0006\"\u000545057\u0012\u0011\bF\u0012\u0006\u0010\u00af\u00b4\u0098\u00a8\u0006\"\u000544963\u0012\u0011\bG\u0012\u0006\u0010\u00ff\u00b6\u0098\u00a8\u0006\"\u000544964\u0012\u0011\bH\u0012\u0006\u0010\u00f6\u00bb\u0098\u00a8\u0006\"\u000544965\u0012\u0011\bI\u0012\u0006\u0010\u0084\u00bc\u0098\u00a8\u0006\"\u000550018\u0012\u0011\bJ\u0012\u0006\u0010\u00fa\u00be\u0098\u00a8\u0006\"\u000544959\u0012\u0012\bK\u0012\u0006\u0010\u00dd\u00c4\u0098\u00a8\u0006\"\u000610-Jan\u0012\u0011\bL\u0012\u0006\u0010\u00b1\u00c7\u0098\u00a8\u0006\"\u000544863\u0012\u0012\bM\u0012\u0006\u0010\u00f9\u00c9\u0098\u00a8\u0006\"\u000610-Mar\u0012\u0012\bN\u0012\u0006\u0010\u009d\u00ce\u0098\u00a8\u0006\"\u000611-Jan\u0012\u0011\bO\u0012\u0006\u0010\u00c1\u00d2\u0098\u00a8\u0006\"\u000544866\u0012\u0011\bP\u0012\u0006\u0010\u00fd\u00d5\u0098\u00a8\u0006\"\u000544867\u0012\u0011\bQ\u0012\u0006\u0010\u00b8\u00d8\u0098\u00a8\u0006\"\u000544868\u0012\u0011\bR\u0012\u0006\u0010\u0087\u00db\u0098\u00a8\u0006\"\u000544869\u0012\u0011\bS\u0012\u0006\u0010\u00af\u00de\u0098\u00a8\u0006\"\u000544870\u0012\u0011\bT\u0012\u0006\u0010\u00e3\u00e4\u0098\u00a8\u0006\"\u000544960\u0012\u0011\bU\u0012\u0006\u0010\u0093\u00eb\u0098\u00a8\u0006\"\u000544961\u0012\u0011\bV\u0012\u0006\u0010\u00ce\u00f0\u0098\u00a8\u0006\"\u000514-15\u0012\u0011\bW\u0012\u0006\u0010\u00fa\u00f5\u0098\u00a8\u0006\"\u000544962\u0012\u0011\bX\u0012\u0006\u0010\u00e4\u0087\u0099\u00a8\u0006\"\u000514-11\u0012\u0011\bY\u0012\u0006\u0010\u009d\u008f\u0099\u00a8\u0006\"\u000591162\u0012\u0011\bZ\u0012\u0006\u0010\u00fd\u00a0\u0099\u00a8\u0006\"\u000550023\u0012\u0012\b[\u0012\u0006\u0010\u00c7\u00bc\u0099\u00a8\u0006\"\u000614-Jul\u0012\u0011\b\\\u0012\u0006\u0010\u0085\u00ca\u0099\u00a8\u0006\"\u000550025\u0012\u0011\b]\u0012\u0006\u0010\u00ad\u00dc\u0099\u00a8\u0006\"\u000550026\u0012\u0011\b^\u0012\u0006\u0010\u0092\u0086\u009a\u00a8\u0006\"\u000550027\u0012\u0011\b_\u0012\u0006\u0010\u00dd\u00b3\u009a\u00a8\u0006\"\u000537474\u0012\u0011\b`\u0012\u0006\u0010\u009c\u00dc\u009a\u00a8\u0006\"\u000544879\u001a\b\u001a\u0006ZV8809 \u00cd\u00e8\u0097\u00a8\u0006\"`\n/\n\u001020487-701ff27f-2\u0012\b15:31:00\u001a\b20230916 \u0000*\u00035920\u0001\u0012\u001d\r;\u00f3\u0012\u00c2\u0015~:\u0092\u00c2\u001d\u0000\u0000fC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00c7q$A(\u00cd\u00e8\u0097\u00a8\u0006B\b\u001a\u0006ZV8809" + }, + { + "type": "con_recorrido", + "entity": "\n$edfbd7e6-de68-4254-afee-431b8b3f98a9\u001a\u00e9\n\n/\n\u001020714-701ff27f-2\u0012\b15:15:00\u001a\b20230916 \u0000*\u00035930\u0000\u0012\u0011\b\u001e\u0012\u0006\u0010\u00e3\u00e8\u0097\u00a8\u0006\"\u00056-Jul\u0012\u0011\b\u001f\u0012\u0006\u0010\u009c\u00e9\u0097\u00a8\u0006\"\u00056-Sep\u0012\u0011\b \u0012\u0006\u0010\u0082\u00ea\u0097\u00a8\u0006\"\u00056-Nov\u0012\u0011\b!\u0012\u0006\u0010\u00ef\u00ea\u0097\u00a8\u0006\"\u00056-Dec\u0012\u0012\b\"\u0012\u0006\u0010\u00c4\u00eb\u0097\u00a8\u0006\"\u0006Jun-14\u0012\u0012\b#\u0012\u0006\u0010\u00e2\u00ec\u0097\u00a8\u0006\"\u0006Jun-17\u0012\u0012\b$\u0012\u0006\u0010\u00b2\u00ed\u0097\u00a8\u0006\"\u0006Jun-19\u0012\u0012\b%\u0012\u0006\u0010\u00e8\u00ed\u0097\u00a8\u0006\"\u0006Jun-20\u0012\u0012\b&\u0012\u0006\u0010\u00a8\u00ee\u0097\u00a8\u0006\"\u0006Jun-22\u0012\u0012\b'\u0012\u0006\u0010\u00e7\u00ee\u0097\u00a8\u0006\"\u0006Jun-24\u0012\u0012\b(\u0012\u0006\u0010\u00b6\u00ef\u0097\u00a8\u0006\"\u0006Jun-25\u0012\u0011\b)\u0012\u0006\u0010\u00d5\u00f1\u0097\u00a8\u0006\"\u000590003\u0012\u0011\b*\u0012\u0006\u0010\u0082\u00f2\u0097\u00a8\u0006\"\u000590007\u0012\u0011\b+\u0012\u0006\u0010\u00b4\u00f2\u0097\u00a8\u0006\"\u000590008\u0012\u0011\b,\u0012\u0006\u0010\u00a0\u00f3\u0097\u00a8\u0006\"\u000539599\u0012\u0011\b-\u0012\u0006\u0010\u00b6\u00f3\u0097\u00a8\u0006\"\u000539600\u0012\u0011\b.\u0012\u0006\u0010\u00f8\u00f3\u0097\u00a8\u0006\"\u000537496\u0012\u0011\b/\u0012\u0006\u0010\u00a9\u00f4\u0097\u00a8\u0006\"\u000545064\u0012\u0011\b0\u0012\u0006\u0010\u00f2\u00f4\u0097\u00a8\u0006\"\u000537506\u0012\u0011\b1\u0012\u0006\u0010\u00bd\u00f5\u0097\u00a8\u0006\"\u000545069\u0012\u0011\b2\u0012\u0006\u0010\u00af\u00f6\u0097\u00a8\u0006\"\u000537523\u0012\u0011\b3\u0012\u0006\u0010\u00d9\u00f6\u0097\u00a8\u0006\"\u000537477\u0012\u0011\b4\u0012\u0006\u0010\u00b3\u00f7\u0097\u00a8\u0006\"\u000549310\u0012\u0011\b5\u0012\u0006\u0010\u00d4\u00f7\u0097\u00a8\u0006\"\u000549311\u0012\u0011\b6\u0012\u0006\u0010\u008f\u00f8\u0097\u00a8\u0006\"\u000539634\u0012\u0011\b7\u0012\u0006\u0010\u00aa\u00f8\u0097\u00a8\u0006\"\u000539635\u0012\u0011\b8\u0012\u0006\u0010\u00dc\u00f8\u0097\u00a8\u0006\"\u000539636\u0012\u0011\b9\u0012\u0006\u0010\u0096\u00f9\u0097\u00a8\u0006\"\u000549503\u0012\u0011\b:\u0012\u0006\u0010\u00a1\u00fa\u0097\u00a8\u0006\"\u000539637\u0012\u0011\b;\u0012\u0006\u0010\u00d9\u00fa\u0097\u00a8\u0006\"\u000549317\u0012\u0011\b<\u0012\u0006\u0010\u00fd\u00fa\u0097\u00a8\u0006\"\u000549318\u0012\u0011\b=\u0012\u0006\u0010\u00c9\u00fb\u0097\u00a8\u0006\"\u000549319\u0012\u0011\b>\u0012\u0006\u0010\u0093\u00fc\u0097\u00a8\u0006\"\u000539641\u0012\u0011\b?\u0012\u0006\u0010\u0096\u00ff\u0097\u00a8\u0006\"\u000549325\u0012\u0011\b@\u0012\u0006\u0010\u00e8\u00ff\u0097\u00a8\u0006\"\u000549326\u0012\u0011\bA\u0012\u0006\u0010\u008b\u0080\u0098\u00a8\u0006\"\u000539648\u0012\u0011\bB\u0012\u0006\u0010\u00cb\u0080\u0098\u00a8\u0006\"\u000539649\u0012\u0011\bC\u0012\u0006\u0010\u0081\u0081\u0098\u00a8\u0006\"\u000545112\u0012\u0011\bD\u0012\u0006\u0010\u00bd\u0081\u0098\u00a8\u0006\"\u000545113\u0012\u0011\bE\u0012\u0006\u0010\u00ae\u0082\u0098\u00a8\u0006\"\u000537490\u0012\u0011\bF\u0012\u0006\u0010\u00fc\u0082\u0098\u00a8\u0006\"\u000545115\u0012\u0011\bG\u0012\u0006\u0010\u00a0\u0083\u0098\u00a8\u0006\"\u000545116\u0012\u0011\bH\u0012\u0006\u0010\u008a\u0084\u0098\u00a8\u0006\"\u000545118\u0012\u0011\bI\u0012\u0006\u0010\u00fd\u0084\u0098\u00a8\u0006\"\u000545119\u0012\u0011\bJ\u0012\u0006\u0010\u00c4\u0085\u0098\u00a8\u0006\"\u000545120\u0012\u0011\bK\u0012\u0006\u0010\u009d\u0086\u0098\u00a8\u0006\"\u000545121\u0012\u0011\bL\u0012\u0006\u0010\u00e1\u0086\u0098\u00a8\u0006\"\u000538535\u0012\u0011\bM\u0012\u0006\u0010\u00e3\u0087\u0098\u00a8\u0006\"\u000538536\u0012\u0013\bN\u0012\u0006\u0010\u00a2\u0088\u0098\u00a8\u0006\"\u00074838437\u0012\u0011\bO\u0012\u0006\u0010\u0083\u0089\u0098\u00a8\u0006\"\u000545085\u0012\u0011\bP\u0012\u0006\u0010\u0094\u008a\u0098\u00a8\u0006\"\u000545086\u0012\u0011\bQ\u0012\u0006\u0010\u00cf\u008b\u0098\u00a8\u0006\"\u000545087\u0012\u0011\bR\u0012\u0006\u0010\u00dd\u008c\u0098\u00a8\u0006\"\u000545089\u0012\u0011\bS\u0012\u0006\u0010\u00e8\u008d\u0098\u00a8\u0006\"\u000545090\u0012\u0011\bT\u0012\u0006\u0010\u00b5\u008e\u0098\u00a8\u0006\"\u000545091\u0012\u0011\bU\u0012\u0006\u0010\u00f6\u008e\u0098\u00a8\u0006\"\u000545092\u0012\u0011\bV\u0012\u0006\u0010\u00d4\u008f\u0098\u00a8\u0006\"\u000545093\u0012\u0011\bW\u0012\u0006\u0010\u0080\u0091\u0098\u00a8\u0006\"\u000545095\u0012\u0011\bX\u0012\u0006\u0010\u00e8\u0091\u0098\u00a8\u0006\"\u000545096\u0012\u0011\bY\u0012\u0006\u0010\u00dd\u0092\u0098\u00a8\u0006\"\u000545097\u0012\u0011\bZ\u0012\u0006\u0010\u00af\u0093\u0098\u00a8\u0006\"\u000545098\u0012\u0011\b[\u0012\u0006\u0010\u00f5\u0093\u0098\u00a8\u0006\"\u000545099\u0012\u0011\b\\\u0012\u0006\u0010\u00aa\u0094\u0098\u00a8\u0006\"\u000545100\u0012\u0011\b]\u0012\u0006\u0010\u00fa\u0094\u0098\u00a8\u0006\"\u000545101\u0012\u0011\b^\u0012\u0006\u0010\u00d2\u0095\u0098\u00a8\u0006\"\u000545102\u0012\u0011\b_\u0012\u0006\u0010\u009a\u0096\u0098\u00a8\u0006\"\u000545103\u0012\u0011\b`\u0012\u0006\u0010\u00de\u0096\u0098\u00a8\u0006\"\u000545104\u0012\u0011\ba\u0012\u0006\u0010\u008c\u0097\u0098\u00a8\u0006\"\u000545122\u0012\u0011\bb\u0012\u0006\u0010\u00c2\u0098\u0098\u00a8\u0006\"\u000538630\u001a\b\u001a\u0006CJVG74 \u00cb\u00e8\u0097\u00a8\u0006\"`\n/\n\u001020714-701ff27f-2\u0012\b15:15:00\u001a\b20230916 \u0000*\u00035930\u0000\u0012\u001d\r\u009b\u0010\u0013\u00c2\u0015\u00dd\u0005\u0092\u00c2\u001d\u0000\u0000TC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00c7q\u0090A(\u00cb\u00e8\u0097\u00a8\u0006B\b\u001a\u0006CJVG74" + }, + { + "type": "con_recorrido", + "entity": "\n$794037c5-550c-4ff3-a8e2-9a152dd9d746\u001a\u0083\f\n/\n\u001020637-701ff27f-2\u0012\b15:01:00\u001a\b20230916 \u0000*\u00035930\u0001\u0012\u0011\b\u001f\u0012\u0006\u0010\u00c1\u00e8\u0097\u00a8\u0006\"\u000538509\u0012\u0011\b \u0012\u0006\u0010\u00e6\u00e8\u0097\u00a8\u0006\"\u000538642\u0012\u0011\b!\u0012\u0006\u0010\u0095\u00e9\u0097\u00a8\u0006\"\u000539795\u0012\u0011\b\"\u0012\u0006\u0010\u00b0\u00e9\u0097\u00a8\u0006\"\u000538502\u0012\u0011\b#\u0012\u0006\u0010\u00f6\u00e9\u0097\u00a8\u0006\"\u000538503\u0012\u0011\b$\u0012\u0006\u0010\u0097\u00eb\u0097\u00a8\u0006\"\u000535691\u0012\u0011\b%\u0012\u0006\u0010\u00fb\u00eb\u0097\u00a8\u0006\"\u000535693\u0012\u0011\b&\u0012\u0006\u0010\u00b1\u00ec\u0097\u00a8\u0006\"\u000535694\u0012\u0011\b'\u0012\u0006\u0010\u00d9\u00ec\u0097\u00a8\u0006\"\u000535695\u0012\u0011\b(\u0012\u0006\u0010\u0088\u00ed\u0097\u00a8\u0006\"\u000535696\u0012\u0011\b)\u0012\u0006\u0010\u00ae\u00ee\u0097\u00a8\u0006\"\u000535697\u0012\u0011\b*\u0012\u0006\u0010\u00a4\u00ef\u0097\u00a8\u0006\"\u000539778\u0012\u0011\b+\u0012\u0006\u0010\u008a\u00f0\u0097\u00a8\u0006\"\u000535797\u0012\u0011\b,\u0012\u0006\u0010\u00b8\u00f0\u0097\u00a8\u0006\"\u000535798\u0012\u0011\b-\u0012\u0006\u0010\u00d7\u00f0\u0097\u00a8\u0006\"\u000535799\u0012\u0011\b.\u0012\u0006\u0010\u009b\u00f1\u0097\u00a8\u0006\"\u000535800\u0012\u0011\b/\u0012\u0006\u0010\u00cb\u00f1\u0097\u00a8\u0006\"\u000535801\u0012\u0011\b0\u0012\u0006\u0010\u00e4\u00f1\u0097\u00a8\u0006\"\u000535802\u0012\u0011\b1\u0012\u0006\u0010\u0092\u00f2\u0097\u00a8\u0006\"\u000535803\u0012\u0011\b2\u0012\u0006\u0010\u00c8\u00f2\u0097\u00a8\u0006\"\u000538507\u0012\u0011\b3\u0012\u0006\u0010\u00fa\u00f2\u0097\u00a8\u0006\"\u000534473\u0012\u0011\b4\u0012\u0006\u0010\u00a5\u00f3\u0097\u00a8\u0006\"\u000538500\u0012\u0011\b5\u0012\u0006\u0010\u00d2\u00f3\u0097\u00a8\u0006\"\u000535808\u0012\u0011\b6\u0012\u0006\u0010\u008c\u00f4\u0097\u00a8\u0006\"\u000535710\u0012\u0011\b7\u0012\u0006\u0010\u00b8\u00f4\u0097\u00a8\u0006\"\u000550036\u0012\u0011\b8\u0012\u0006\u0010\u00a0\u00f6\u0097\u00a8\u0006\"\u000550037\u0012\u0011\b9\u0012\u0006\u0010\u00b5\u00f7\u0097\u00a8\u0006\"\u000550038\u0012\u0011\b:\u0012\u0006\u0010\u0086\u00f8\u0097\u00a8\u0006\"\u000550039\u0012\u0011\b;\u0012\u0006\u0010\u00c5\u00f8\u0097\u00a8\u0006\"\u000550040\u0012\u0011\b<\u0012\u0006\u0010\u00a2\u00f9\u0097\u00a8\u0006\"\u000550041\u0012\u0012\b=\u0012\u0006\u0010\u00bb\u00fa\u0097\u00a8\u0006\"\u0006Jun-15\u0012\u0012\b>\u0012\u0006\u0010\u00ad\u00fb\u0097\u00a8\u0006\"\u0006Jun-13\u0012\u0011\b?\u0012\u0006\u0010\u0094\u00fd\u0097\u00a8\u0006\"\u00056-Oct\u0012\u0011\b@\u0012\u0006\u0010\u00d9\u00fd\u0097\u00a8\u0006\"\u00056-Aug\u0012\u0011\bA\u0012\u0006\u0010\u00a2\u00ff\u0097\u00a8\u0006\"\u00056-Jun\u0012\u0011\bB\u0012\u0006\u0010\u00c6\u0080\u0098\u00a8\u0006\"\u00056-Feb\u0012\u0011\bC\u0012\u0006\u0010\u0085\u0082\u0098\u00a8\u0006\"\u00057-Jul\u0012\u0011\bD\u0012\u0006\u0010\u00e3\u0082\u0098\u00a8\u0006\"\u00057-May\u0012\u0013\bE\u0012\u0006\u0010\u0098\u0083\u0098\u00a8\u0006\"\u00071508142\u0012\u0011\bF\u0012\u0006\u0010\u00b5\u0084\u0098\u00a8\u0006\"\u00057-Feb\u0012\u0011\bG\u0012\u0006\u0010\u0093\u0085\u0098\u00a8\u0006\"\u00058-Jan\u0012\u0011\bH\u0012\u0006\u0010\u00c5\u0085\u0098\u00a8\u0006\"\u00059-Jan\u0012\u0012\bI\u0012\u0006\u0010\u0086\u0086\u0098\u00a8\u0006\"\u000610-Apr\u0012\u0012\bJ\u0012\u0006\u0010\u00e6\u0086\u0098\u00a8\u0006\"\u000610-Jan\u0012\u0011\bK\u0012\u0006\u0010\u00ad\u0087\u0098\u00a8\u0006\"\u000544863\u0012\u0012\bL\u0012\u0006\u0010\u00e4\u0087\u0098\u00a8\u0006\"\u000610-Mar\u0012\u0012\bM\u0012\u0006\u0010\u00c4\u0088\u0098\u00a8\u0006\"\u000611-Jan\u0012\u0011\bN\u0012\u0006\u0010\u00a1\u0089\u0098\u00a8\u0006\"\u000544866\u0012\u0011\bO\u0012\u0006\u0010\u00e8\u0089\u0098\u00a8\u0006\"\u000544867\u0012\u0011\bP\u0012\u0006\u0010\u0099\u008a\u0098\u00a8\u0006\"\u000544868\u0012\u0011\bQ\u0012\u0006\u0010\u00cc\u008a\u0098\u00a8\u0006\"\u000544869\u0012\u0011\bR\u0012\u0006\u0010\u008a\u008b\u0098\u00a8\u0006\"\u000544870\u0012\u0011\bS\u0012\u0006\u0010\u00ba\u008b\u0098\u00a8\u0006\"\u000544871\u0012\u0011\bT\u0012\u0006\u0010\u0098\u008c\u0098\u00a8\u0006\"\u000544872\u0012\u0011\bU\u0012\u0006\u0010\u0091\u008d\u0098\u00a8\u0006\"\u000550020\u0012\u0011\bV\u0012\u0006\u0010\u00d5\u008e\u0098\u00a8\u0006\"\u000514-11\u0012\u0011\bW\u0012\u0006\u0010\u00aa\u008f\u0098\u00a8\u0006\"\u000591162\u0012\u0011\bX\u0012\u0006\u0010\u00e3\u0090\u0098\u00a8\u0006\"\u000550023\u0012\u0012\bY\u0012\u0006\u0010\u00d3\u0092\u0098\u00a8\u0006\"\u000614-Jul\u0012\u0012\bZ\u0012\u0006\u0010\u00b1\u0093\u0098\u00a8\u0006\"\u000614-Apr\u0012\u0011\b[\u0012\u0006\u0010\u00a9\u0094\u0098\u00a8\u0006\"\u000537474\u0012\u0011\b\\\u0012\u0006\u0010\u00ab\u0095\u0098\u00a8\u0006\"\u000544879\u0012\u0011\b]\u0012\u0006\u0010\u00eb\u0095\u0098\u00a8\u0006\"\u000544880\u0012\u0011\b^\u0012\u0006\u0010\u00c1\u0096\u0098\u00a8\u0006\"\u000544881\u0012\u0011\b_\u0012\u0006\u0010\u00a2\u0098\u0098\u00a8\u0006\"\u000538151\u0012\u0011\b`\u0012\u0006\u0010\u00eb\u009b\u0098\u00a8\u0006\"\u000515-13\u0012\u0011\ba\u0012\u0006\u0010\u00fd\u009d\u0098\u00a8\u0006\"\u000550029\u0012\u0011\bb\u0012\u0006\u0010\u00a8\u009e\u0098\u00a8\u0006\"\u000550014\u0012\u0011\bc\u0012\u0006\u0010\u00e0\u009e\u0098\u00a8\u0006\"\u000538204\u0012\u0011\bd\u0012\u0006\u0010\u00f8\u009f\u0098\u00a8\u0006\"\u000550013\u0012\u0011\be\u0012\u0006\u0010\u00fe\u00a0\u0098\u00a8\u0006\"\u000538127\u0012\u0011\bf\u0012\u0006\u0010\u00ba\u00a1\u0098\u00a8\u0006\"\u000538124\u0012\u0011\bg\u0012\u0006\u0010\u0091\u00a2\u0098\u00a8\u0006\"\u000538194\u0012\u0011\bh\u0012\u0006\u0010\u0097\u00a2\u0098\u00a8\u0006\"\u000550015\u0012\u0011\bi\u0012\u0006\u0010\u00db\u00a8\u0098\u00a8\u0006\"\u000538149\u0012\u0012\bj\u0012\u0006\u0010\u0085\u00ab\u0098\u00a8\u0006\"\u000614-Feb\u0012\u0011\bk\u0012\u0006\u0010\u00c8\u00ab\u0098\u00a8\u0006\"\u000550028\u001a\b\u001a\u0006DPZY91 \u00af\u00e8\u0097\u00a8\u0006\"`\n/\n\u001020637-701ff27f-2\u0012\b15:01:00\u001a\b20230916 \u0000*\u00035930\u0001\u0012\u001d\r\u00e3-\u0013\u00c2\u0015\u009d,\u0092\u00c2\u001d\u0000\u0000\u00b2B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UUU?(\u00af\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DPZY91" + }, + { + "type": "con_recorrido", + "entity": "\n$48edab0e-af17-482f-9f65-0ce5f395cf08\u001a\u00ce\b\n/\n\u001020636-701ff27f-2\u0012\b14:46:00\u001a\b20230916 \u0000*\u00035930\u0001\u0012\u0011\b6\u0012\u0006\u0010\u00be\u00e8\u0097\u00a8\u0006\"\u000535710\u0012\u0011\b7\u0012\u0006\u0010\u00ee\u00e8\u0097\u00a8\u0006\"\u000550036\u0012\u0011\b8\u0012\u0006\u0010\u00dd\u00ea\u0097\u00a8\u0006\"\u000550037\u0012\u0011\b9\u0012\u0006\u0010\u00ee\u00eb\u0097\u00a8\u0006\"\u000550038\u0012\u0011\b:\u0012\u0006\u0010\u00bb\u00ec\u0097\u00a8\u0006\"\u000550039\u0012\u0011\b;\u0012\u0006\u0010\u00f5\u00ec\u0097\u00a8\u0006\"\u000550040\u0012\u0011\b<\u0012\u0006\u0010\u00c9\u00ed\u0097\u00a8\u0006\"\u000550041\u0012\u0012\b=\u0012\u0006\u0010\u00d0\u00ee\u0097\u00a8\u0006\"\u0006Jun-15\u0012\u0012\b>\u0012\u0006\u0010\u00b1\u00ef\u0097\u00a8\u0006\"\u0006Jun-13\u0012\u0011\b?\u0012\u0006\u0010\u00ed\u00f0\u0097\u00a8\u0006\"\u00056-Oct\u0012\u0011\b@\u0012\u0006\u0010\u00a4\u00f1\u0097\u00a8\u0006\"\u00056-Aug\u0012\u0011\bA\u0012\u0006\u0010\u00be\u00f2\u0097\u00a8\u0006\"\u00056-Jun\u0012\u0011\bB\u0012\u0006\u0010\u00b7\u00f3\u0097\u00a8\u0006\"\u00056-Feb\u0012\u0011\bC\u0012\u0006\u0010\u00bf\u00f4\u0097\u00a8\u0006\"\u00057-Jul\u0012\u0011\bD\u0012\u0006\u0010\u0080\u00f5\u0097\u00a8\u0006\"\u00057-May\u0012\u0013\bE\u0012\u0006\u0010\u00a4\u00f5\u0097\u00a8\u0006\"\u00071508142\u0012\u0011\bF\u0012\u0006\u0010\u008d\u00f6\u0097\u00a8\u0006\"\u00057-Feb\u0012\u0011\bG\u0012\u0006\u0010\u00cb\u00f6\u0097\u00a8\u0006\"\u00058-Jan\u0012\u0011\bH\u0012\u0006\u0010\u00eb\u00f6\u0097\u00a8\u0006\"\u00059-Jan\u0012\u0012\bI\u0012\u0006\u0010\u0095\u00f7\u0097\u00a8\u0006\"\u000610-Apr\u0012\u0012\bJ\u0012\u0006\u0010\u00d2\u00f7\u0097\u00a8\u0006\"\u000610-Jan\u0012\u0011\bK\u0012\u0006\u0010\u00fe\u00f7\u0097\u00a8\u0006\"\u000544863\u0012\u0012\bL\u0012\u0006\u0010\u009f\u00f8\u0097\u00a8\u0006\"\u000610-Mar\u0012\u0012\bM\u0012\u0006\u0010\u00db\u00f8\u0097\u00a8\u0006\"\u000611-Jan\u0012\u0011\bN\u0012\u0006\u0010\u0092\u00f9\u0097\u00a8\u0006\"\u000544866\u0012\u0011\bO\u0012\u0006\u0010\u00bc\u00f9\u0097\u00a8\u0006\"\u000544867\u0012\u0011\bP\u0012\u0006\u0010\u00d9\u00f9\u0097\u00a8\u0006\"\u000544868\u0012\u0011\bQ\u0012\u0006\u0010\u00f7\u00f9\u0097\u00a8\u0006\"\u000544869\u0012\u0011\bR\u0012\u0006\u0010\u009b\u00fa\u0097\u00a8\u0006\"\u000544870\u0012\u0011\bS\u0012\u0006\u0010\u00b6\u00fa\u0097\u00a8\u0006\"\u000544871\u0012\u0011\bT\u0012\u0006\u0010\u00eb\u00fa\u0097\u00a8\u0006\"\u000544872\u0012\u0011\bU\u0012\u0006\u0010\u00af\u00fb\u0097\u00a8\u0006\"\u000550020\u0012\u0011\bV\u0012\u0006\u0010\u009a\u00fc\u0097\u00a8\u0006\"\u000514-11\u0012\u0011\bW\u0012\u0006\u0010\u00c8\u00fc\u0097\u00a8\u0006\"\u000591162\u0012\u0011\bX\u0012\u0006\u0010\u00a9\u00fd\u0097\u00a8\u0006\"\u000550023\u0012\u0012\bY\u0012\u0006\u0010\u00a3\u00fe\u0097\u00a8\u0006\"\u000614-Jul\u0012\u0012\bZ\u0012\u0006\u0010\u00d2\u00fe\u0097\u00a8\u0006\"\u000614-Apr\u0012\u0011\b[\u0012\u0006\u0010\u008e\u00ff\u0097\u00a8\u0006\"\u000537474\u0012\u0011\b\\\u0012\u0006\u0010\u00cd\u00ff\u0097\u00a8\u0006\"\u000544879\u0012\u0011\b]\u0012\u0006\u0010\u00eb\u00ff\u0097\u00a8\u0006\"\u000544880\u0012\u0011\b^\u0012\u0006\u0010\u0094\u0080\u0098\u00a8\u0006\"\u000544881\u0012\u0011\b_\u0012\u0006\u0010\u00fe\u0080\u0098\u00a8\u0006\"\u000538151\u0012\u0011\b`\u0012\u0006\u0010\u00ca\u0082\u0098\u00a8\u0006\"\u000515-13\u0012\u0011\ba\u0012\u0006\u0010\u00c0\u0083\u0098\u00a8\u0006\"\u000550029\u0012\u0011\bb\u0012\u0006\u0010\u00d2\u0083\u0098\u00a8\u0006\"\u000550014\u0012\u0011\bc\u0012\u0006\u0010\u00ea\u0083\u0098\u00a8\u0006\"\u000538204\u0012\u0011\bd\u0012\u0006\u0010\u00a9\u0084\u0098\u00a8\u0006\"\u000550013\u0012\u0011\be\u0012\u0006\u0010\u00e0\u0084\u0098\u00a8\u0006\"\u000538127\u0012\u0011\bf\u0012\u0006\u0010\u00f8\u0084\u0098\u00a8\u0006\"\u000538124\u0012\u0011\bg\u0012\u0006\u0010\u009b\u0085\u0098\u00a8\u0006\"\u000538194\u0012\u0011\bh\u0012\u0006\u0010\u009e\u0085\u0098\u00a8\u0006\"\u000550015\u0012\u0011\bi\u0012\u0006\u0010\u00de\u0087\u0098\u00a8\u0006\"\u000538149\u0012\u0012\bj\u0012\u0006\u0010\u00ca\u0088\u0098\u00a8\u0006\"\u000614-Feb\u0012\u0011\bk\u0012\u0006\u0010\u00e1\u0088\u0098\u00a8\u0006\"\u000550028\u001a\b\u001a\u0006DRZG30 \u00b9\u00e8\u0097\u00a8\u0006\"`\n/\n\u001020636-701ff27f-2\u0012\b14:46:00\u001a\b20230916 \u0000*\u00035930\u0001\u0012\u001d\r\u00caB\u0013\u00c2\u0015\u0006\u0010\u0092\u00c2\u001d\u0000\u0000\bB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000 @(\u00b9\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DRZG30" + }, + { + "type": "con_recorrido", + "entity": "\n$b7b5d1df-3f78-4512-85e0-348cd64e859c\u001a\u00df\u0002\n/\n\u001020634-701ff27f-2\u0012\b14:16:00\u001a\b20230916 \u0000*\u00035930\u0001\u0012\u0011\b]\u0012\u0006\u0010\u00ca\u00e8\u0097\u00a8\u0006\"\u000544880\u0012\u0011\b^\u0012\u0006\u0010\u00eb\u00e8\u0097\u00a8\u0006\"\u000544881\u0012\u0011\b_\u0012\u0006\u0010\u00be\u00e9\u0097\u00a8\u0006\"\u000538151\u0012\u0011\b`\u0012\u0006\u0010\u00d4\u00ea\u0097\u00a8\u0006\"\u000515-13\u0012\u0011\ba\u0012\u0006\u0010\u00a6\u00eb\u0097\u00a8\u0006\"\u000550029\u0012\u0011\bb\u0012\u0006\u0010\u00b2\u00eb\u0097\u00a8\u0006\"\u000550014\u0012\u0011\bc\u0012\u0006\u0010\u00c2\u00eb\u0097\u00a8\u0006\"\u000538204\u0012\u0011\bd\u0012\u0006\u0010\u00ec\u00eb\u0097\u00a8\u0006\"\u000550013\u0012\u0011\be\u0012\u0006\u0010\u008f\u00ec\u0097\u00a8\u0006\"\u000538127\u0012\u0011\bf\u0012\u0006\u0010\u009f\u00ec\u0097\u00a8\u0006\"\u000538124\u0012\u0011\bg\u0012\u0006\u0010\u00b5\u00ec\u0097\u00a8\u0006\"\u000538194\u0012\u0011\bh\u0012\u0006\u0010\u00b7\u00ec\u0097\u00a8\u0006\"\u000550015\u0012\u0011\bi\u0012\u0006\u0010\u00f6\u00ed\u0097\u00a8\u0006\"\u000538149\u0012\u0012\bj\u0012\u0006\u0010\u00b2\u00ee\u0097\u00a8\u0006\"\u000614-Feb\u0012\u0011\bk\u0012\u0006\u0010\u00bf\u00ee\u0097\u00a8\u0006\"\u000550028\u001a\b\u001a\u0006HYYX85 \u00c8\u00e8\u0097\u00a8\u0006\"`\n/\n\u001020634-701ff27f-2\u0012\b14:16:00\u001a\b20230916 \u0000*\u00035930\u0001\u0012\u001d\r\u0090\u00d9\u0012\u00c2\u0015?\u00f4\u0091\u00c2\u001d\u0000\u0000\u00c0A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u000e@(\u00c8\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HYYX85" + }, + { + "type": "con_recorrido", + "entity": "\n$c43608cf-7ce7-4147-9393-2984279ffb04\u001a\u00ef\u0005\n/\n\u001020712-701ff27f-2\u0012\b14:45:00\u001a\b20230916 \u0000*\u00035930\u0000\u0012\u0011\b?\u0012\u0006\u0010\u00e3\u00ea\u0097\u00a8\u0006\"\u000549325\u0012\u0011\b@\u0012\u0006\u0010\u00a3\u00eb\u0097\u00a8\u0006\"\u000549326\u0012\u0011\bA\u0012\u0006\u0010\u00be\u00eb\u0097\u00a8\u0006\"\u000539648\u0012\u0011\bB\u0012\u0006\u0010\u00ee\u00eb\u0097\u00a8\u0006\"\u000539649\u0012\u0011\bC\u0012\u0006\u0010\u0096\u00ec\u0097\u00a8\u0006\"\u000545112\u0012\u0011\bD\u0012\u0006\u0010\u00c2\u00ec\u0097\u00a8\u0006\"\u000545113\u0012\u0011\bE\u0012\u0006\u0010\u0091\u00ed\u0097\u00a8\u0006\"\u000537490\u0012\u0011\bF\u0012\u0006\u0010\u00c6\u00ed\u0097\u00a8\u0006\"\u000545115\u0012\u0011\bG\u0012\u0006\u0010\u00de\u00ed\u0097\u00a8\u0006\"\u000545116\u0012\u0011\bH\u0012\u0006\u0010\u00a4\u00ee\u0097\u00a8\u0006\"\u000545118\u0012\u0011\bI\u0012\u0006\u0010\u00ed\u00ee\u0097\u00a8\u0006\"\u000545119\u0012\u0011\bJ\u0012\u0006\u0010\u0098\u00ef\u0097\u00a8\u0006\"\u000545120\u0012\u0011\bK\u0012\u0006\u0010\u00cd\u00ef\u0097\u00a8\u0006\"\u000545121\u0012\u0011\bL\u0012\u0006\u0010\u00f6\u00ef\u0097\u00a8\u0006\"\u000538535\u0012\u0011\bM\u0012\u0006\u0010\u00c0\u00f0\u0097\u00a8\u0006\"\u000538536\u0012\u0013\bN\u0012\u0006\u0010\u00e3\u00f0\u0097\u00a8\u0006\"\u00074838437\u0012\u0011\bO\u0012\u0006\u0010\u0098\u00f1\u0097\u00a8\u0006\"\u000545085\u0012\u0011\bP\u0012\u0006\u0010\u00e5\u00f1\u0097\u00a8\u0006\"\u000545086\u0012\u0011\bQ\u0012\u0006\u0010\u00c4\u00f2\u0097\u00a8\u0006\"\u000545087\u0012\u0011\bR\u0012\u0006\u0010\u0089\u00f3\u0097\u00a8\u0006\"\u000545089\u0012\u0011\bS\u0012\u0006\u0010\u00cb\u00f3\u0097\u00a8\u0006\"\u000545090\u0012\u0011\bT\u0012\u0006\u0010\u00ee\u00f3\u0097\u00a8\u0006\"\u000545091\u0012\u0011\bU\u0012\u0006\u0010\u008b\u00f4\u0097\u00a8\u0006\"\u000545092\u0012\u0011\bV\u0012\u0006\u0010\u00b6\u00f4\u0097\u00a8\u0006\"\u000545093\u0012\u0011\bW\u0012\u0006\u0010\u0080\u00f5\u0097\u00a8\u0006\"\u000545095\u0012\u0011\bX\u0012\u0006\u0010\u00ac\u00f5\u0097\u00a8\u0006\"\u000545096\u0012\u0011\bY\u0012\u0006\u0010\u00dc\u00f5\u0097\u00a8\u0006\"\u000545097\u0012\u0011\bZ\u0012\u0006\u0010\u00fd\u00f5\u0097\u00a8\u0006\"\u000545098\u0012\u0011\b[\u0012\u0006\u0010\u0099\u00f6\u0097\u00a8\u0006\"\u000545099\u0012\u0011\b\\\u0012\u0006\u0010\u00ad\u00f6\u0097\u00a8\u0006\"\u000545100\u0012\u0011\b]\u0012\u0006\u0010\u00cd\u00f6\u0097\u00a8\u0006\"\u000545101\u0012\u0011\b^\u0012\u0006\u0010\u00ee\u00f6\u0097\u00a8\u0006\"\u000545102\u0012\u0011\b_\u0012\u0006\u0010\u0089\u00f7\u0097\u00a8\u0006\"\u000545103\u0012\u0011\b`\u0012\u0006\u0010\u00a2\u00f7\u0097\u00a8\u0006\"\u000545104\u0012\u0011\ba\u0012\u0006\u0010\u00b3\u00f7\u0097\u00a8\u0006\"\u000545122\u0012\u0011\bb\u0012\u0006\u0010\u00f5\u00f7\u0097\u00a8\u0006\"\u000538630\u001a\b\u001a\u0006JRZZ67 \u00cc\u00e8\u0097\u00a8\u0006\"`\n/\n\u001020712-701ff27f-2\u0012\b14:45:00\u001a\b20230916 \u0000*\u00035930\u0000\u0012\u001d\rt;\u0013\u00c2\u0015\u00d6'\u0092\u00c2\u001d\u0000\u0000\u009eC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00cc\u00e8\u0097\u00a8\u0006B\b\u001a\u0006JRZZ67" + }, + { + "type": "con_recorrido", + "entity": "\n$0d96f58a-e591-4be6-93f9-39cd5b283831\u001a\u008c\b\n/\n\u001020713-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00035930\u0000\u0012\u0011\b0\u0012\u0006\u0010\u00cb\u00e8\u0097\u00a8\u0006\"\u000537506\u0012\u0011\b1\u0012\u0006\u0010\u009a\u00e9\u0097\u00a8\u0006\"\u000545069\u0012\u0011\b2\u0012\u0006\u0010\u0090\u00ea\u0097\u00a8\u0006\"\u000537523\u0012\u0011\b3\u0012\u0006\u0010\u00b9\u00ea\u0097\u00a8\u0006\"\u000537477\u0012\u0011\b4\u0012\u0006\u0010\u0092\u00eb\u0097\u00a8\u0006\"\u000549310\u0012\u0011\b5\u0012\u0006\u0010\u00b2\u00eb\u0097\u00a8\u0006\"\u000549311\u0012\u0011\b6\u0012\u0006\u0010\u00ea\u00eb\u0097\u00a8\u0006\"\u000539634\u0012\u0011\b7\u0012\u0006\u0010\u0084\u00ec\u0097\u00a8\u0006\"\u000539635\u0012\u0011\b8\u0012\u0006\u0010\u00b2\u00ec\u0097\u00a8\u0006\"\u000539636\u0012\u0011\b9\u0012\u0006\u0010\u00e7\u00ec\u0097\u00a8\u0006\"\u000549503\u0012\u0011\b:\u0012\u0006\u0010\u00e3\u00ed\u0097\u00a8\u0006\"\u000539637\u0012\u0011\b;\u0012\u0006\u0010\u0094\u00ee\u0097\u00a8\u0006\"\u000549317\u0012\u0011\b<\u0012\u0006\u0010\u00b3\u00ee\u0097\u00a8\u0006\"\u000549318\u0012\u0011\b=\u0012\u0006\u0010\u00f3\u00ee\u0097\u00a8\u0006\"\u000549319\u0012\u0011\b>\u0012\u0006\u0010\u00b1\u00ef\u0097\u00a8\u0006\"\u000539641\u0012\u0011\b?\u0012\u0006\u0010\u00e2\u00f1\u0097\u00a8\u0006\"\u000549325\u0012\u0011\b@\u0012\u0006\u0010\u00a0\u00f2\u0097\u00a8\u0006\"\u000549326\u0012\u0011\bA\u0012\u0006\u0010\u00b9\u00f2\u0097\u00a8\u0006\"\u000539648\u0012\u0011\bB\u0012\u0006\u0010\u00e8\u00f2\u0097\u00a8\u0006\"\u000539649\u0012\u0011\bC\u0012\u0006\u0010\u008f\u00f3\u0097\u00a8\u0006\"\u000545112\u0012\u0011\bD\u0012\u0006\u0010\u00ba\u00f3\u0097\u00a8\u0006\"\u000545113\u0012\u0011\bE\u0012\u0006\u0010\u0089\u00f4\u0097\u00a8\u0006\"\u000537490\u0012\u0011\bF\u0012\u0006\u0010\u00bf\u00f4\u0097\u00a8\u0006\"\u000545115\u0012\u0011\bG\u0012\u0006\u0010\u00d8\u00f4\u0097\u00a8\u0006\"\u000545116\u0012\u0011\bH\u0012\u0006\u0010\u009f\u00f5\u0097\u00a8\u0006\"\u000545118\u0012\u0011\bI\u0012\u0006\u0010\u00ea\u00f5\u0097\u00a8\u0006\"\u000545119\u0012\u0011\bJ\u0012\u0006\u0010\u0098\u00f6\u0097\u00a8\u0006\"\u000545120\u0012\u0011\bK\u0012\u0006\u0010\u00d1\u00f6\u0097\u00a8\u0006\"\u000545121\u0012\u0011\bL\u0012\u0006\u0010\u00fc\u00f6\u0097\u00a8\u0006\"\u000538535\u0012\u0011\bM\u0012\u0006\u0010\u00cc\u00f7\u0097\u00a8\u0006\"\u000538536\u0012\u0013\bN\u0012\u0006\u0010\u00f2\u00f7\u0097\u00a8\u0006\"\u00074838437\u0012\u0011\bO\u0012\u0006\u0010\u00ad\u00f8\u0097\u00a8\u0006\"\u000545085\u0012\u0011\bP\u0012\u0006\u0010\u0082\u00f9\u0097\u00a8\u0006\"\u000545086\u0012\u0011\bQ\u0012\u0006\u0010\u00ed\u00f9\u0097\u00a8\u0006\"\u000545087\u0012\u0011\bR\u0012\u0006\u0010\u00bd\u00fa\u0097\u00a8\u0006\"\u000545089\u0012\u0011\bS\u0012\u0006\u0010\u0089\u00fb\u0097\u00a8\u0006\"\u000545090\u0012\u0011\bT\u0012\u0006\u0010\u00b3\u00fb\u0097\u00a8\u0006\"\u000545091\u0012\u0011\bU\u0012\u0006\u0010\u00d5\u00fb\u0097\u00a8\u0006\"\u000545092\u0012\u0011\bV\u0012\u0006\u0010\u0087\u00fc\u0097\u00a8\u0006\"\u000545093\u0012\u0011\bW\u0012\u0006\u0010\u00e0\u00fc\u0097\u00a8\u0006\"\u000545095\u0012\u0011\bX\u0012\u0006\u0010\u0094\u00fd\u0097\u00a8\u0006\"\u000545096\u0012\u0011\bY\u0012\u0006\u0010\u00cf\u00fd\u0097\u00a8\u0006\"\u000545097\u0012\u0011\bZ\u0012\u0006\u0010\u00f7\u00fd\u0097\u00a8\u0006\"\u000545098\u0012\u0011\b[\u0012\u0006\u0010\u009a\u00fe\u0097\u00a8\u0006\"\u000545099\u0012\u0011\b\\\u0012\u0006\u0010\u00b4\u00fe\u0097\u00a8\u0006\"\u000545100\u0012\u0011\b]\u0012\u0006\u0010\u00da\u00fe\u0097\u00a8\u0006\"\u000545101\u0012\u0011\b^\u0012\u0006\u0010\u0084\u00ff\u0097\u00a8\u0006\"\u000545102\u0012\u0011\b_\u0012\u0006\u0010\u00a6\u00ff\u0097\u00a8\u0006\"\u000545103\u0012\u0011\b`\u0012\u0006\u0010\u00c6\u00ff\u0097\u00a8\u0006\"\u000545104\u0012\u0011\ba\u0012\u0006\u0010\u00db\u00ff\u0097\u00a8\u0006\"\u000545122\u0012\u0011\bb\u0012\u0006\u0010\u00ae\u0080\u0098\u00a8\u0006\"\u000538630\u001a\b\u001a\u0006LCTG72 \u00ac\u00e8\u0097\u00a8\u0006\"`\n/\n\u001020713-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00035930\u0000\u0012\u001d\r7L\u0013\u00c2\u0015\u00ad\u0015\u0092\u00c2\u001d\u0000\u0000wC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000 A(\u00ac\u00e8\u0097\u00a8\u0006B\b\u001a\u0006LCTG72" + }, + { + "type": "con_recorrido", + "entity": "\n$c9a132b5-ae8c-45df-b9dd-3661f86af0ea\u001a\u00eb\u0004\n/\n\u001020635-701ff27f-2\u0012\b14:31:00\u001a\b20230916 \u0000*\u00035930\u0001\u0012\u0011\bO\u0012\u0006\u0010\u00ef\u00e8\u0097\u00a8\u0006\"\u000544867\u0012\u0011\bP\u0012\u0006\u0010\u008b\u00e9\u0097\u00a8\u0006\"\u000544868\u0012\u0011\bQ\u0012\u0006\u0010\u00a7\u00e9\u0097\u00a8\u0006\"\u000544869\u0012\u0011\bR\u0012\u0006\u0010\u00c9\u00e9\u0097\u00a8\u0006\"\u000544870\u0012\u0011\bS\u0012\u0006\u0010\u00e3\u00e9\u0097\u00a8\u0006\"\u000544871\u0012\u0011\bT\u0012\u0006\u0010\u0094\u00ea\u0097\u00a8\u0006\"\u000544872\u0012\u0011\bU\u0012\u0006\u0010\u00d0\u00ea\u0097\u00a8\u0006\"\u000550020\u0012\u0011\bV\u0012\u0006\u0010\u00ae\u00eb\u0097\u00a8\u0006\"\u000514-11\u0012\u0011\bW\u0012\u0006\u0010\u00d5\u00eb\u0097\u00a8\u0006\"\u000591162\u0012\u0011\bX\u0012\u0006\u0010\u00a5\u00ec\u0097\u00a8\u0006\"\u000550023\u0012\u0012\bY\u0012\u0006\u0010\u0088\u00ed\u0097\u00a8\u0006\"\u000614-Jul\u0012\u0012\bZ\u0012\u0006\u0010\u00ac\u00ed\u0097\u00a8\u0006\"\u000614-Apr\u0012\u0011\b[\u0012\u0006\u0010\u00da\u00ed\u0097\u00a8\u0006\"\u000537474\u0012\u0011\b\\\u0012\u0006\u0010\u0089\u00ee\u0097\u00a8\u0006\"\u000544879\u0012\u0011\b]\u0012\u0006\u0010\u00a0\u00ee\u0097\u00a8\u0006\"\u000544880\u0012\u0011\b^\u0012\u0006\u0010\u00be\u00ee\u0097\u00a8\u0006\"\u000544881\u0012\u0011\b_\u0012\u0006\u0010\u008a\u00ef\u0097\u00a8\u0006\"\u000538151\u0012\u0011\b`\u0012\u0006\u0010\u0096\u00f0\u0097\u00a8\u0006\"\u000515-13\u0012\u0011\ba\u0012\u0006\u0010\u00e4\u00f0\u0097\u00a8\u0006\"\u000550029\u0012\u0011\bb\u0012\u0006\u0010\u00f0\u00f0\u0097\u00a8\u0006\"\u000550014\u0012\u0011\bc\u0012\u0006\u0010\u00ff\u00f0\u0097\u00a8\u0006\"\u000538204\u0012\u0011\bd\u0012\u0006\u0010\u00a7\u00f1\u0097\u00a8\u0006\"\u000550013\u0012\u0011\be\u0012\u0006\u0010\u00c9\u00f1\u0097\u00a8\u0006\"\u000538127\u0012\u0011\bf\u0012\u0006\u0010\u00d8\u00f1\u0097\u00a8\u0006\"\u000538124\u0012\u0011\bg\u0012\u0006\u0010\u00ee\u00f1\u0097\u00a8\u0006\"\u000538194\u0012\u0011\bh\u0012\u0006\u0010\u00ef\u00f1\u0097\u00a8\u0006\"\u000550015\u0012\u0011\bi\u0012\u0006\u0010\u00ac\u00f3\u0097\u00a8\u0006\"\u000538149\u0012\u0012\bj\u0012\u0006\u0010\u00e9\u00f3\u0097\u00a8\u0006\"\u000614-Feb\u0012\u0011\bk\u0012\u0006\u0010\u00f6\u00f3\u0097\u00a8\u0006\"\u000550028\u001a\b\u001a\u0006LRCH28 \u00ca\u00e8\u0097\u00a8\u0006\"`\n/\n\u001020635-701ff27f-2\u0012\b14:31:00\u001a\b20230916 \u0000*\u00035930\u0001\u0012\u001d\rP\u00ef\u0012\u00c2\u0015\u00d6\u00f9\u0091\u00c2\u001d\u0000\u0000\u00aaC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UUU@(\u00ca\u00e8\u0097\u00a8\u0006B\b\u001a\u0006LRCH28" + }, + { + "type": "con_recorrido", + "entity": "\n$88fd7614-ba09-4f95-a379-1f5ae36989fb\u001a\u00f1\u0002\n/\n\u001020711-701ff27f-2\u0012\b14:30:00\u001a\b20230916 \u0000*\u00035930\u0000\u0012\u0011\bS\u0012\u0006\u0010\u00a7\u00e8\u0097\u00a8\u0006\"\u000545090\u0012\u0011\bT\u0012\u0006\u0010\u00ce\u00e8\u0097\u00a8\u0006\"\u000545091\u0012\u0011\bU\u0012\u0006\u0010\u00ed\u00e8\u0097\u00a8\u0006\"\u000545092\u0012\u0011\bV\u0012\u0006\u0010\u009a\u00e9\u0097\u00a8\u0006\"\u000545093\u0012\u0011\bW\u0012\u0006\u0010\u00e7\u00e9\u0097\u00a8\u0006\"\u000545095\u0012\u0011\bX\u0012\u0006\u0010\u0094\u00ea\u0097\u00a8\u0006\"\u000545096\u0012\u0011\bY\u0012\u0006\u0010\u00c5\u00ea\u0097\u00a8\u0006\"\u000545097\u0012\u0011\bZ\u0012\u0006\u0010\u00e6\u00ea\u0097\u00a8\u0006\"\u000545098\u0012\u0011\b[\u0012\u0006\u0010\u0082\u00eb\u0097\u00a8\u0006\"\u000545099\u0012\u0011\b\\\u0012\u0006\u0010\u0096\u00eb\u0097\u00a8\u0006\"\u000545100\u0012\u0011\b]\u0012\u0006\u0010\u00b5\u00eb\u0097\u00a8\u0006\"\u000545101\u0012\u0011\b^\u0012\u0006\u0010\u00d6\u00eb\u0097\u00a8\u0006\"\u000545102\u0012\u0011\b_\u0012\u0006\u0010\u00f0\u00eb\u0097\u00a8\u0006\"\u000545103\u0012\u0011\b`\u0012\u0006\u0010\u0088\u00ec\u0097\u00a8\u0006\"\u000545104\u0012\u0011\ba\u0012\u0006\u0010\u0098\u00ec\u0097\u00a8\u0006\"\u000545122\u0012\u0011\bb\u0012\u0006\u0010\u00d6\u00ec\u0097\u00a8\u0006\"\u000538630\u001a\b\u001a\u0006LTHP32 \u008e\u00e8\u0097\u00a8\u0006\"`\n/\n\u001020711-701ff27f-2\u0012\b14:30:00\u001a\b20230916 \u0000*\u00035930\u0000\u0012\u001d\r\u009c\u0000\u0013\u00c2\u0015\u00d70\u0092\u00c2\u001d\u0000\u0000\u00a8C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-9\u008e\u001bA(\u008e\u00e8\u0097\u00a8\u0006B\b\u001a\u0006LTHP32" + }, + { + "type": "con_recorrido", + "entity": "\n$85a1b8cd-f2c1-4943-98b1-b99b56388a94\u001a\u00af\u0004\n/\n\u001020834-701ff27f-2\u0012\b14:20:00\u001a\b20230916 \u0000*\u00035940\u0001\u0012\u0011\b<\u0012\u0006\u0010\u00fd\u00e8\u0097\u00a8\u0006\"\u000538611\u0012\u0011\b=\u0012\u0006\u0010\u00a5\u00e9\u0097\u00a8\u0006\"\u000538612\u0012\u0011\b>\u0012\u0006\u0010\u00a7\u00e9\u0097\u00a8\u0006\"\u000545088\u0012\u0011\b?\u0012\u0006\u0010\u00dc\u00e9\u0097\u00a8\u0006\"\u000545089\u0012\u0011\b@\u0012\u0006\u0010\u00a2\u00ea\u0097\u00a8\u0006\"\u000545090\u0012\u0011\bA\u0012\u0006\u0010\u00c1\u00ea\u0097\u00a8\u0006\"\u000545091\u0012\u0011\bB\u0012\u0006\u0010\u00e6\u00ea\u0097\u00a8\u0006\"\u000545092\u0012\u0011\bC\u0012\u0006\u0010\u0093\u00eb\u0097\u00a8\u0006\"\u000545093\u0012\u0011\bD\u0012\u0006\u0010\u00e8\u00eb\u0097\u00a8\u0006\"\u000545095\u0012\u0011\bE\u0012\u0006\u0010\u0091\u00ec\u0097\u00a8\u0006\"\u000545096\u0012\u0011\bF\u0012\u0006\u0010\u00e7\u00ec\u0097\u00a8\u0006\"\u000538622\u0012\u0011\bG\u0012\u0006\u0010\u00a4\u00ef\u0097\u00a8\u0006\"\u000545102\u0012\u0011\bH\u0012\u0006\u0010\u00bd\u00ef\u0097\u00a8\u0006\"\u000545103\u0012\u0011\bI\u0012\u0006\u0010\u00d4\u00ef\u0097\u00a8\u0006\"\u000545104\u0012\u0011\bJ\u0012\u0006\u0010\u00ed\u00ef\u0097\u00a8\u0006\"\u000545122\u0012\u0011\bK\u0012\u0006\u0010\u00a1\u00f0\u0097\u00a8\u0006\"\u000538630\u0012\u0011\bL\u0012\u0006\u0010\u0080\u00f1\u0097\u00a8\u0006\"\u000542365\u0012\u0011\bM\u0012\u0006\u0010\u00f5\u00f1\u0097\u00a8\u0006\"\u000549349\u0012\u0011\bN\u0012\u0006\u0010\u00f0\u00f2\u0097\u00a8\u0006\"\u000549350\u0012\u0011\bO\u0012\u0006\u0010\u009e\u00f3\u0097\u00a8\u0006\"\u000549351\u0012\u0011\bP\u0012\u0006\u0010\u00c0\u00f3\u0097\u00a8\u0006\"\u000549352\u0012\u0011\bQ\u0012\u0006\u0010\u00e0\u00f3\u0097\u00a8\u0006\"\u000549353\u0012\u0011\bR\u0012\u0006\u0010\u00e7\u00f4\u0097\u00a8\u0006\"\u000538567\u0012\u0011\bS\u0012\u0006\u0010\u00b2\u00f5\u0097\u00a8\u0006\"\u000538569\u0012\u0011\bT\u0012\u0006\u0010\u00dc\u00f5\u0097\u00a8\u0006\"\u000538570\u0012\u0011\bU\u0012\u0006\u0010\u0095\u00f6\u0097\u00a8\u0006\"\u000538571\u001a\b\u001a\u0006BTXF73 \u00cd\u00e8\u0097\u00a8\u0006\"`\n/\n\u001020834-701ff27f-2\u0012\b14:20:00\u001a\b20230916 \u0000*\u00035940\u0001\u0012\u001d\rM\b\u0013\u00c2\u0015\u00bb0\u0092\u00c2\u001d\u0000\u0000\u0098A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-r\u001c?A(\u00cd\u00e8\u0097\u00a8\u0006B\b\u001a\u0006BTXF73" + }, + { + "type": "con_recorrido", + "entity": "\n$0f61fd8c-595a-4fda-b308-0ccb386573f5\u001a\u00b7\t\n/\n\u001020836-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00035940\u0001\u0012\u0011\b\u001a\u0012\u0006\u0010\u0084\u00e9\u0097\u00a8\u0006\"\u000539637\u0012\u0011\b\u001b\u0012\u0006\u0010\u00b8\u00e9\u0097\u00a8\u0006\"\u000549317\u0012\u0011\b\u001c\u0012\u0006\u0010\u00d9\u00e9\u0097\u00a8\u0006\"\u000549318\u0012\u0011\b\u001d\u0012\u0006\u0010\u009e\u00ea\u0097\u00a8\u0006\"\u000549319\u0012\u0011\b\u001e\u0012\u0006\u0010\u00df\u00ea\u0097\u00a8\u0006\"\u000539641\u0012\u0011\b\u001f\u0012\u0006\u0010\u0083\u00eb\u0097\u00a8\u0006\"\u000539642\u0012\u0011\b \u0012\u0006\u0010\u00f1\u00ec\u0097\u00a8\u0006\"\u000549324\u0012\u0011\b!\u0012\u0006\u0010\u009a\u00ed\u0097\u00a8\u0006\"\u000549325\u0012\u0011\b\"\u0012\u0006\u0010\u00d8\u00ed\u0097\u00a8\u0006\"\u000549326\u0012\u0011\b#\u0012\u0006\u0010\u00f1\u00ed\u0097\u00a8\u0006\"\u000539648\u0012\u0011\b$\u0012\u0006\u0010\u00a0\u00ee\u0097\u00a8\u0006\"\u000539649\u0012\u0011\b%\u0012\u0006\u0010\u00bf\u00ee\u0097\u00a8\u0006\"\u000545112\u0012\u0011\b&\u0012\u0006\u0010\u00f1\u00ee\u0097\u00a8\u0006\"\u000545113\u0012\u0011\b'\u0012\u0006\u0010\u00bf\u00ef\u0097\u00a8\u0006\"\u000537490\u0012\u0011\b(\u0012\u0006\u0010\u00f5\u00ef\u0097\u00a8\u0006\"\u000545115\u0012\u0011\b)\u0012\u0006\u0010\u008d\u00f0\u0097\u00a8\u0006\"\u000545116\u0012\u0011\b*\u0012\u0006\u0010\u00d1\u00f0\u0097\u00a8\u0006\"\u000545118\u0012\u0011\b+\u0012\u0006\u0010\u009a\u00f1\u0097\u00a8\u0006\"\u000545119\u0012\u0011\b,\u0012\u0006\u0010\u00c5\u00f1\u0097\u00a8\u0006\"\u000545120\u0012\u0011\b-\u0012\u0006\u0010\u00fb\u00f1\u0097\u00a8\u0006\"\u000545121\u0012\u0011\b.\u0012\u0006\u0010\u00a3\u00f2\u0097\u00a8\u0006\"\u000538535\u0012\u0011\b/\u0012\u0006\u0010\u00ee\u00f2\u0097\u00a8\u0006\"\u000538536\u0012\u0013\b0\u0012\u0006\u0010\u008a\u00f3\u0097\u00a8\u0006\"\u00074838437\u0012\u0011\b1\u0012\u0006\u0010\u00ce\u00f4\u0097\u00a8\u0006\"\u000539397\u0012\u0011\b2\u0012\u0006\u0010\u00e6\u00f4\u0097\u00a8\u0006\"\u000539398\u0012\u0011\b3\u0012\u0006\u0010\u00b0\u00f5\u0097\u00a8\u0006\"\u000538601\u0012\u0011\b4\u0012\u0006\u0010\u00f6\u00f5\u0097\u00a8\u0006\"\u000538603\u0012\u0011\b5\u0012\u0006\u0010\u0092\u00f6\u0097\u00a8\u0006\"\u000538607\u0012\u0011\b6\u0012\u0006\u0010\u00c8\u00f6\u0097\u00a8\u0006\"\u000539403\u0012\u0011\b7\u0012\u0006\u0010\u00ef\u00f6\u0097\u00a8\u0006\"\u000544799\u0012\u0011\b8\u0012\u0006\u0010\u0094\u00f7\u0097\u00a8\u0006\"\u000544800\u0012\u0011\b9\u0012\u0006\u0010\u00ae\u00f7\u0097\u00a8\u0006\"\u000538608\u0012\u0011\b:\u0012\u0006\u0010\u00f3\u00f7\u0097\u00a8\u0006\"\u000538609\u0012\u0011\b;\u0012\u0006\u0010\u00b4\u00f8\u0097\u00a8\u0006\"\u000538610\u0012\u0011\b<\u0012\u0006\u0010\u00e8\u00f8\u0097\u00a8\u0006\"\u000538611\u0012\u0011\b=\u0012\u0006\u0010\u0091\u00f9\u0097\u00a8\u0006\"\u000538612\u0012\u0011\b>\u0012\u0006\u0010\u0094\u00f9\u0097\u00a8\u0006\"\u000545088\u0012\u0011\b?\u0012\u0006\u0010\u00cb\u00f9\u0097\u00a8\u0006\"\u000545089\u0012\u0011\b@\u0012\u0006\u0010\u0097\u00fa\u0097\u00a8\u0006\"\u000545090\u0012\u0011\bA\u0012\u0006\u0010\u00b8\u00fa\u0097\u00a8\u0006\"\u000545091\u0012\u0011\bB\u0012\u0006\u0010\u00e2\u00fa\u0097\u00a8\u0006\"\u000545092\u0012\u0011\bC\u0012\u0006\u0010\u0094\u00fb\u0097\u00a8\u0006\"\u000545093\u0012\u0011\bD\u0012\u0006\u0010\u00f7\u00fb\u0097\u00a8\u0006\"\u000545095\u0012\u0011\bE\u0012\u0006\u0010\u00a7\u00fc\u0097\u00a8\u0006\"\u000545096\u0012\u0011\bF\u0012\u0006\u0010\u0090\u00fd\u0097\u00a8\u0006\"\u000538622\u0012\u0011\bG\u0012\u0006\u0010\u00b1\u0080\u0098\u00a8\u0006\"\u000545102\u0012\u0011\bH\u0012\u0006\u0010\u00d5\u0080\u0098\u00a8\u0006\"\u000545103\u0012\u0011\bI\u0012\u0006\u0010\u00f6\u0080\u0098\u00a8\u0006\"\u000545104\u0012\u0011\bJ\u0012\u0006\u0010\u009a\u0081\u0098\u00a8\u0006\"\u000545122\u0012\u0011\bK\u0012\u0006\u0010\u00e5\u0081\u0098\u00a8\u0006\"\u000538630\u0012\u0011\bL\u0012\u0006\u0010\u00f3\u0082\u0098\u00a8\u0006\"\u000542365\u0012\u0011\bM\u0012\u0006\u0010\u00ab\u0084\u0098\u00a8\u0006\"\u000549349\u0012\u0011\bN\u0012\u0006\u0010\u00f5\u0085\u0098\u00a8\u0006\"\u000549350\u0012\u0011\bO\u0012\u0006\u0010\u00c4\u0086\u0098\u00a8\u0006\"\u000549351\u0012\u0011\bP\u0012\u0006\u0010\u00fd\u0086\u0098\u00a8\u0006\"\u000549352\u0012\u0011\bQ\u0012\u0006\u0010\u00b4\u0087\u0098\u00a8\u0006\"\u000549353\u0012\u0011\bR\u0012\u0006\u0010\u00a9\u0089\u0098\u00a8\u0006\"\u000538567\u0012\u0011\bS\u0012\u0006\u0010\u00b5\u008a\u0098\u00a8\u0006\"\u000538569\u0012\u0011\bT\u0012\u0006\u0010\u0087\u008b\u0098\u00a8\u0006\"\u000538570\u0012\u0011\bU\u0012\u0006\u0010\u00f6\u008b\u0098\u00a8\u0006\"\u000538571\u001a\b\u001a\u0006BZPT67 \u008e\u00e8\u0097\u00a8\u0006\"`\n/\n\u001020836-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00035940\u0001\u0012\u001d\r9H\u0013\u00c2\u0015K!\u0092\u00c2\u001d\u0000\u0000\u00a2C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UU}A(\u008e\u00e8\u0097\u00a8\u0006B\b\u001a\u0006BZPT67" + }, + { + "type": "con_recorrido", + "entity": "\n$a6a10381-4a67-4958-913f-e9b6529b50b6\u001a\u0086\u0003\n/\n\u001020778-701ff27f-2\u0012\b14:41:00\u001a\b20230916 \u0000*\u00035940\u0000\u0012\u0011\b?\u0012\u0006\u0010\u00c2\u00e8\u0097\u00a8\u0006\"\u000535800\u0012\u0011\b@\u0012\u0006\u0010\u00f7\u00e8\u0097\u00a8\u0006\"\u000535801\u0012\u0011\bA\u0012\u0006\u0010\u0092\u00e9\u0097\u00a8\u0006\"\u000535802\u0012\u0011\bB\u0012\u0006\u0010\u00c4\u00e9\u0097\u00a8\u0006\"\u000535803\u0012\u0011\bC\u0012\u0006\u0010\u00fe\u00e9\u0097\u00a8\u0006\"\u000538507\u0012\u0011\bD\u0012\u0006\u0010\u00b3\u00ea\u0097\u00a8\u0006\"\u000534473\u0012\u0011\bE\u0012\u0006\u0010\u00e0\u00ea\u0097\u00a8\u0006\"\u000538500\u0012\u0011\bF\u0012\u0006\u0010\u008e\u00eb\u0097\u00a8\u0006\"\u000535808\u0012\u0011\bG\u0012\u0006\u0010\u00c9\u00eb\u0097\u00a8\u0006\"\u000535710\u0012\u0011\bH\u0012\u0006\u0010\u00f6\u00eb\u0097\u00a8\u0006\"\u000550036\u0012\u0011\bI\u0012\u0006\u0010\u00da\u00ed\u0097\u00a8\u0006\"\u000550037\u0012\u0011\bJ\u0012\u0006\u0010\u00e6\u00ee\u0097\u00a8\u0006\"\u000550038\u0012\u0011\bK\u0012\u0006\u0010\u00b0\u00ef\u0097\u00a8\u0006\"\u000550039\u0012\u0011\bL\u0012\u0006\u0010\u00e7\u00ef\u0097\u00a8\u0006\"\u000550040\u0012\u0011\bM\u0012\u0006\u0010\u00bf\u00f0\u0097\u00a8\u0006\"\u000550041\u0012\u0013\bN\u0012\u0006\u0010\u00c5\u00f1\u0097\u00a8\u0006\"\u00071566333\u0012\u0011\bO\u0012\u0006\u0010\u00ae\u00f2\u0097\u00a8\u0006\"\u000539334\u001a\b\u001a\u0006FGPH70 \u00b8\u00e8\u0097\u00a8\u0006\"`\n/\n\u001020778-701ff27f-2\u0012\b14:41:00\u001a\b20230916 \u0000*\u00035940\u0000\u0012\u001d\r_J\u0013\u00c2\u0015\u00a6\u0019\u0092\u00c2\u001d\u0000\u0000xB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UU\u00d5@(\u00b8\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FGPH70" + }, + { + "type": "con_recorrido", + "entity": "\n$af6d5477-c81b-49af-a1d2-0dbf50861a0c\u001a\u00f2\f\n/\n\u001020837-701ff27f-2\u0012\b15:20:00\u001a\b20230916 \u0000*\u00035940\u0001\u0012\u0012\b\u0003\u0012\u0006\u0010\u00bc\u00e8\u0097\u00a8\u0006\"\u0006Jun-17\u0012\u0012\b\u0004\u0012\u0006\u0010\u0091\u00e9\u0097\u00a8\u0006\"\u0006Jun-19\u0012\u0012\b\u0005\u0012\u0006\u0010\u00d0\u00e9\u0097\u00a8\u0006\"\u0006Jun-20\u0012\u0012\b\u0006\u0012\u0006\u0010\u0090\u00ea\u0097\u00a8\u0006\"\u0006Jun-22\u0012\u0012\b\u0007\u0012\u0006\u0010\u00d2\u00ea\u0097\u00a8\u0006\"\u0006Jun-24\u0012\u0012\b\b\u0012\u0006\u0010\u00ad\u00eb\u0097\u00a8\u0006\"\u0006Jun-25\u0012\u0011\b\t\u0012\u0006\u0010\u00cb\u00ed\u0097\u00a8\u0006\"\u000590003\u0012\u0011\b\n\u0012\u0006\u0010\u00f8\u00ed\u0097\u00a8\u0006\"\u000590007\u0012\u0011\b\u000b\u0012\u0006\u0010\u00a9\u00ee\u0097\u00a8\u0006\"\u000590008\u0012\u0011\b\f\u0012\u0006\u0010\u0095\u00ef\u0097\u00a8\u0006\"\u000539599\u0012\u0011\b\r\u0012\u0006\u0010\u00ab\u00ef\u0097\u00a8\u0006\"\u000539600\u0012\u0011\b\u000e\u0012\u0006\u0010\u00ec\u00ef\u0097\u00a8\u0006\"\u000537496\u0012\u0011\b\u000f\u0012\u0006\u0010\u009c\u00f0\u0097\u00a8\u0006\"\u000545064\u0012\u0011\b\u0010\u0012\u0006\u0010\u00e3\u00f0\u0097\u00a8\u0006\"\u000537506\u0012\u0011\b\u0011\u0012\u0006\u0010\u00ac\u00f1\u0097\u00a8\u0006\"\u000545069\u0012\u0011\b\u0012\u0012\u0006\u0010\u0099\u00f2\u0097\u00a8\u0006\"\u000537523\u0012\u0011\b\u0013\u0012\u0006\u0010\u00c0\u00f2\u0097\u00a8\u0006\"\u000537477\u0012\u0011\b\u0014\u0012\u0006\u0010\u0096\u00f3\u0097\u00a8\u0006\"\u000549310\u0012\u0011\b\u0015\u0012\u0006\u0010\u00b5\u00f3\u0097\u00a8\u0006\"\u000549311\u0012\u0011\b\u0016\u0012\u0006\u0010\u00ec\u00f3\u0097\u00a8\u0006\"\u000539634\u0012\u0011\b\u0017\u0012\u0006\u0010\u0085\u00f4\u0097\u00a8\u0006\"\u000539635\u0012\u0011\b\u0018\u0012\u0006\u0010\u00b3\u00f4\u0097\u00a8\u0006\"\u000539636\u0012\u0011\b\u0019\u0012\u0006\u0010\u00e8\u00f4\u0097\u00a8\u0006\"\u000549503\u0012\u0011\b\u001a\u0012\u0006\u0010\u00e9\u00f5\u0097\u00a8\u0006\"\u000539637\u0012\u0011\b\u001b\u0012\u0006\u0010\u009b\u00f6\u0097\u00a8\u0006\"\u000549317\u0012\u0011\b\u001c\u0012\u0006\u0010\u00bc\u00f6\u0097\u00a8\u0006\"\u000549318\u0012\u0011\b\u001d\u0012\u0006\u0010\u0080\u00f7\u0097\u00a8\u0006\"\u000549319\u0012\u0011\b\u001e\u0012\u0006\u0010\u00c4\u00f7\u0097\u00a8\u0006\"\u000539641\u0012\u0011\b\u001f\u0012\u0006\u0010\u00e9\u00f7\u0097\u00a8\u0006\"\u000539642\u0012\u0011\b \u0012\u0006\u0010\u00eb\u00f9\u0097\u00a8\u0006\"\u000549324\u0012\u0011\b!\u0012\u0006\u0010\u009a\u00fa\u0097\u00a8\u0006\"\u000549325\u0012\u0011\b\"\u0012\u0006\u0010\u00e1\u00fa\u0097\u00a8\u0006\"\u000549326\u0012\u0011\b#\u0012\u0006\u0010\u00ff\u00fa\u0097\u00a8\u0006\"\u000539648\u0012\u0011\b$\u0012\u0006\u0010\u00b6\u00fb\u0097\u00a8\u0006\"\u000539649\u0012\u0011\b%\u0012\u0006\u0010\u00db\u00fb\u0097\u00a8\u0006\"\u000545112\u0012\u0011\b&\u0012\u0006\u0010\u0098\u00fc\u0097\u00a8\u0006\"\u000545113\u0012\u0011\b'\u0012\u0006\u0010\u00f8\u00fc\u0097\u00a8\u0006\"\u000537490\u0012\u0011\b(\u0012\u0006\u0010\u00bc\u00fd\u0097\u00a8\u0006\"\u000545115\u0012\u0011\b)\u0012\u0006\u0010\u00da\u00fd\u0097\u00a8\u0006\"\u000545116\u0012\u0011\b*\u0012\u0006\u0010\u00b2\u00fe\u0097\u00a8\u0006\"\u000545118\u0012\u0011\b+\u0012\u0006\u0010\u0092\u00ff\u0097\u00a8\u0006\"\u000545119\u0012\u0011\b,\u0012\u0006\u0010\u00cc\u00ff\u0097\u00a8\u0006\"\u000545120\u0012\u0011\b-\u0012\u0006\u0010\u0095\u0080\u0098\u00a8\u0006\"\u000545121\u0012\u0011\b.\u0012\u0006\u0010\u00ce\u0080\u0098\u00a8\u0006\"\u000538535\u0012\u0011\b/\u0012\u0006\u0010\u00b7\u0081\u0098\u00a8\u0006\"\u000538536\u0012\u0013\b0\u0012\u0006\u0010\u00de\u0081\u0098\u00a8\u0006\"\u00074838437\u0012\u0011\b1\u0012\u0006\u0010\u0080\u0084\u0098\u00a8\u0006\"\u000539397\u0012\u0011\b2\u0012\u0006\u0010\u00a5\u0084\u0098\u00a8\u0006\"\u000539398\u0012\u0011\b3\u0012\u0006\u0010\u0096\u0085\u0098\u00a8\u0006\"\u000538601\u0012\u0011\b4\u0012\u0006\u0010\u0085\u0086\u0098\u00a8\u0006\"\u000538603\u0012\u0011\b5\u0012\u0006\u0010\u00b2\u0086\u0098\u00a8\u0006\"\u000538607\u0012\u0011\b6\u0012\u0006\u0010\u0089\u0087\u0098\u00a8\u0006\"\u000539403\u0012\u0011\b7\u0012\u0006\u0010\u00ca\u0087\u0098\u00a8\u0006\"\u000544799\u0012\u0011\b8\u0012\u0006\u0010\u0087\u0088\u0098\u00a8\u0006\"\u000544800\u0012\u0011\b9\u0012\u0006\u0010\u00b3\u0088\u0098\u00a8\u0006\"\u000538608\u0012\u0011\b:\u0012\u0006\u0010\u00a8\u0089\u0098\u00a8\u0006\"\u000538609\u0012\u0011\b;\u0012\u0006\u0010\u0098\u008a\u0098\u00a8\u0006\"\u000538610\u0012\u0011\b<\u0012\u0006\u0010\u00f5\u008a\u0098\u00a8\u0006\"\u000538611\u0012\u0011\b=\u0012\u0006\u0010\u00bd\u008b\u0098\u00a8\u0006\"\u000538612\u0012\u0011\b>\u0012\u0006\u0010\u00c3\u008b\u0098\u00a8\u0006\"\u000545088\u0012\u0011\b?\u0012\u0006\u0010\u00a6\u008c\u0098\u00a8\u0006\"\u000545089\u0012\u0011\b@\u0012\u0006\u0010\u00b2\u008d\u0098\u00a8\u0006\"\u000545090\u0012\u0011\bA\u0012\u0006\u0010\u00f1\u008d\u0098\u00a8\u0006\"\u000545091\u0012\u0011\bB\u0012\u0006\u0010\u00bf\u008e\u0098\u00a8\u0006\"\u000545092\u0012\u0011\bC\u0012\u0006\u0010\u00a0\u008f\u0098\u00a8\u0006\"\u000545093\u0012\u0011\bD\u0012\u0006\u0010\u00e0\u0090\u0098\u00a8\u0006\"\u000545095\u0012\u0011\bE\u0012\u0006\u0010\u00c1\u0091\u0098\u00a8\u0006\"\u000545096\u0012\u0011\bF\u0012\u0006\u0010\u0097\u0093\u0098\u00a8\u0006\"\u000538622\u0012\u0011\bG\u0012\u0006\u0010\u00ad\u009a\u0098\u00a8\u0006\"\u000545102\u0012\u0011\bH\u0012\u0006\u0010\u0080\u009b\u0098\u00a8\u0006\"\u000545103\u0012\u0011\bI\u0012\u0006\u0010\u00cf\u009b\u0098\u00a8\u0006\"\u000545104\u0012\u0011\bJ\u0012\u0006\u0010\u00a4\u009c\u0098\u00a8\u0006\"\u000545122\u0012\u0011\bK\u0012\u0006\u0010\u00da\u009d\u0098\u00a8\u0006\"\u000538630\u0012\u0011\bL\u0012\u0006\u0010\u00bf\u00a0\u0098\u00a8\u0006\"\u000542365\u0012\u0011\bM\u0012\u0006\u0010\u00a1\u00a4\u0098\u00a8\u0006\"\u000549349\u0012\u0011\bN\u0012\u0006\u0010\u00d2\u00a8\u0098\u00a8\u0006\"\u000549350\u0012\u0011\bO\u0012\u0006\u0010\u00b5\u00aa\u0098\u00a8\u0006\"\u000549351\u0012\u0011\bP\u0012\u0006\u0010\u00de\u00ab\u0098\u00a8\u0006\"\u000549352\u0012\u0011\bQ\u0012\u0006\u0010\u0084\u00ad\u0098\u00a8\u0006\"\u000549353\u0012\u0011\bR\u0012\u0006\u0010\u0084\u00b3\u0098\u00a8\u0006\"\u000538567\u0012\u0011\bS\u0012\u0006\u0010\u00da\u00b6\u0098\u00a8\u0006\"\u000538569\u0012\u0011\bT\u0012\u0006\u0010\u00f3\u00b8\u0098\u00a8\u0006\"\u000538570\u0012\u0011\bU\u0012\u0006\u0010\u00fe\u00bb\u0098\u00a8\u0006\"\u000538571\u001a\b\u001a\u0006FGYP57 \u00b2\u00e8\u0097\u00a8\u0006\"`\n/\n\u001020837-701ff27f-2\u0012\b15:20:00\u001a\b20230916 \u0000*\u00035940\u0001\u0012\u001d\rl&\u0013\u00c2\u0015\u0004\f\u0092\u00c2\u001d\u0000\u0000FC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UU\u0005A(\u00b2\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FGYP57" + }, + { + "type": "con_recorrido", + "entity": "\n$1c3e5654-c8ac-4f28-8cd1-766651b9f45a\u001a\u00ae\n\n/\n\u001020780-701ff27f-2\u0012\b15:21:00\u001a\b20230916 \u0000*\u00035940\u0000\u0012\u0011\b\u000e\u0012\u0006\u0010\u00cb\u00e8\u0097\u00a8\u0006\"\u000542252\u0012\u0011\b\u000f\u0012\u0006\u0010\u00eb\u00e8\u0097\u00a8\u0006\"\u000542253\u0012\u0011\b\u0010\u0012\u0006\u0010\u0095\u00e9\u0097\u00a8\u0006\"\u000542254\u0012\u0011\b\u0011\u0012\u0006\u0010\u00c4\u00e9\u0097\u00a8\u0006\"\u000542255\u0012\u0011\b\u0012\u0012\u0006\u0010\u00e0\u00e9\u0097\u00a8\u0006\"\u000542256\u0012\u0011\b\u0013\u0012\u0006\u0010\u00f4\u00e9\u0097\u00a8\u0006\"\u000542257\u0012\u0011\b\u0014\u0012\u0006\u0010\u008b\u00ea\u0097\u00a8\u0006\"\u000542258\u0012\u0011\b\u0015\u0012\u0006\u0010\u00a7\u00ea\u0097\u00a8\u0006\"\u000542259\u0012\u0011\b\u0016\u0012\u0006\u0010\u00da\u00ea\u0097\u00a8\u0006\"\u000542260\u0012\u0011\b\u0017\u0012\u0006\u0010\u0081\u00eb\u0097\u00a8\u0006\"\u000542261\u0012\u0011\b\u0018\u0012\u0006\u0010\u009f\u00eb\u0097\u00a8\u0006\"\u000545094\u0012\u0011\b\u0019\u0012\u0006\u0010\u00d7\u00eb\u0097\u00a8\u0006\"\u000542263\u0012\u0011\b\u001a\u0012\u0006\u0010\u0084\u00ec\u0097\u00a8\u0006\"\u000545092\u0012\u0011\b\u001b\u0012\u0006\u0010\u00a9\u00ec\u0097\u00a8\u0006\"\u000542265\u0012\u0011\b\u001c\u0012\u0006\u0010\u00d0\u00ec\u0097\u00a8\u0006\"\u000542266\u0012\u0011\b\u001d\u0012\u0006\u0010\u0086\u00ed\u0097\u00a8\u0006\"\u000542267\u0012\u0011\b\u001e\u0012\u0006\u0010\u00ad\u00ed\u0097\u00a8\u0006\"\u000542268\u0012\u0011\b\u001f\u0012\u0006\u0010\u00cc\u00ed\u0097\u00a8\u0006\"\u000542269\u0012\u0011\b \u0012\u0006\u0010\u00fa\u00ed\u0097\u00a8\u0006\"\u000544895\u0012\u0011\b!\u0012\u0006\u0010\u00b1\u00ee\u0097\u00a8\u0006\"\u000542270\u0012\u0011\b\"\u0012\u0006\u0010\u00e5\u00ee\u0097\u00a8\u0006\"\u000542271\u0012\u0013\b#\u0012\u0006\u0010\u00a3\u00ef\u0097\u00a8\u0006\"\u00074838438\u0012\u0011\b$\u0012\u0006\u0010\u00b3\u00f0\u0097\u00a8\u0006\"\u000544896\u0012\u0011\b%\u0012\u0006\u0010\u00e2\u00f0\u0097\u00a8\u0006\"\u000544897\u0012\u0011\b&\u0012\u0006\u0010\u00aa\u00f1\u0097\u00a8\u0006\"\u000544898\u0012\u0011\b'\u0012\u0006\u0010\u00d0\u00f2\u0097\u00a8\u0006\"\u000540993\u0012\u0014\b(\u0012\u0006\u0010\u00c3\u00f4\u0097\u00a8\u0006\"\b16005188\u0012\u0011\b)\u0012\u0006\u0010\u00bc\u00f6\u0097\u00a8\u0006\"\u000540995\u0012\u0011\b*\u0012\u0006\u0010\u008f\u00f7\u0097\u00a8\u0006\"\u000540996\u0012\u0011\b+\u0012\u0006\u0010\u00e1\u00f7\u0097\u00a8\u0006\"\u000540997\u0012\u0011\b,\u0012\u0006\u0010\u009f\u00f8\u0097\u00a8\u0006\"\u000539614\u0012\u0011\b-\u0012\u0006\u0010\u00d2\u00f8\u0097\u00a8\u0006\"\u000539615\u0012\u0011\b.\u0012\u0006\u0010\u0087\u00f9\u0097\u00a8\u0006\"\u000539616\u0012\u0011\b/\u0012\u0006\u0010\u00c2\u00f9\u0097\u00a8\u0006\"\u000539617\u0012\u0011\b0\u0012\u0006\u0010\u0082\u00fa\u0097\u00a8\u0006\"\u000539618\u0012\u0011\b1\u0012\u0006\u0010\u00b5\u00fa\u0097\u00a8\u0006\"\u000539619\u0012\u0011\b2\u0012\u0006\u0010\u00e5\u00fa\u0097\u00a8\u0006\"\u000539620\u0012\u0011\b3\u0012\u0006\u0010\u00b0\u00fb\u0097\u00a8\u0006\"\u000539621\u0012\u0011\b4\u0012\u0006\u0010\u00e8\u00fb\u0097\u00a8\u0006\"\u000538281\u0012\u0011\b5\u0012\u0006\u0010\u00a9\u00fc\u0097\u00a8\u0006\"\u000537506\u0012\u0011\b6\u0012\u0006\u0010\u0082\u00fd\u0097\u00a8\u0006\"\u000545069\u0012\u0011\b7\u0012\u0006\u0010\u008c\u00fe\u0097\u00a8\u0006\"\u000537523\u0012\u0011\b8\u0012\u0006\u0010\u00bf\u00fe\u0097\u00a8\u0006\"\u000537477\u0012\u0011\b9\u0012\u0006\u0010\u00ae\u00ff\u0097\u00a8\u0006\"\u000549310\u0012\u0011\b:\u0012\u0006\u0010\u00d7\u00ff\u0097\u00a8\u0006\"\u000549311\u0012\u0011\b;\u0012\u0006\u0010\u00a1\u0080\u0098\u00a8\u0006\"\u000535796\u0012\u0011\b<\u0012\u0006\u0010\u00e3\u0080\u0098\u00a8\u0006\"\u000535797\u0012\u0011\b=\u0012\u0006\u0010\u009b\u0081\u0098\u00a8\u0006\"\u000535798\u0012\u0011\b>\u0012\u0006\u0010\u00d0\u0081\u0098\u00a8\u0006\"\u000535799\u0012\u0011\b?\u0012\u0006\u0010\u00b3\u0082\u0098\u00a8\u0006\"\u000535800\u0012\u0011\b@\u0012\u0006\u0010\u00fa\u0082\u0098\u00a8\u0006\"\u000535801\u0012\u0011\bA\u0012\u0006\u0010\u00a0\u0083\u0098\u00a8\u0006\"\u000535802\u0012\u0011\bB\u0012\u0006\u0010\u00e7\u0083\u0098\u00a8\u0006\"\u000535803\u0012\u0011\bC\u0012\u0006\u0010\u00bb\u0084\u0098\u00a8\u0006\"\u000538507\u0012\u0011\bD\u0012\u0006\u0010\u008a\u0085\u0098\u00a8\u0006\"\u000534473\u0012\u0011\bE\u0012\u0006\u0010\u00d0\u0085\u0098\u00a8\u0006\"\u000538500\u0012\u0011\bF\u0012\u0006\u0010\u009a\u0086\u0098\u00a8\u0006\"\u000535808\u0012\u0011\bG\u0012\u0006\u0010\u00fa\u0086\u0098\u00a8\u0006\"\u000535710\u0012\u0011\bH\u0012\u0006\u0010\u00c6\u0087\u0098\u00a8\u0006\"\u000550036\u0012\u0011\bI\u0012\u0006\u0010\u00e5\u008a\u0098\u00a8\u0006\"\u000550037\u0012\u0011\bJ\u0012\u0006\u0010\u0082\u008d\u0098\u00a8\u0006\"\u000550038\u0012\u0011\bK\u0012\u0006\u0010\u00a3\u008e\u0098\u00a8\u0006\"\u000550039\u0012\u0011\bL\u0012\u0006\u0010\u009e\u008f\u0098\u00a8\u0006\"\u000550040\u0012\u0011\bM\u0012\u0006\u0010\u00ed\u0090\u0098\u00a8\u0006\"\u000550041\u0012\u0013\bN\u0012\u0006\u0010\u00c0\u0093\u0098\u00a8\u0006\"\u00071566333\u0012\u0011\bO\u0012\u0006\u0010\u00de\u0095\u0098\u00a8\u0006\"\u000539334\u001a\b\u001a\u0006XZ9735 \u00cb\u00e8\u0097\u00a8\u0006\"`\n/\n\u001020780-701ff27f-2\u0012\b15:21:00\u001a\b20230916 \u0000*\u00035940\u0000\u0012\u001d\r\u00fb\u00f4\u0012\u00c2\u0015\u00e37\u0092\u00c2\u001d\u0000\u0000\u0019C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00cb\u00e8\u0097\u00a8\u0006B\b\u001a\u0006XZ9735" + }, + { + "type": "con_recorrido", + "entity": "\n$2b296c55-1b60-42ad-86cb-73e5a3c759ed\u001a\u008d\u0001\n/\n\u001020907-701ff27f-2\u0012\b13:49:00\u001a\b20230916 \u0000*\u00035950\u0000\u0012\u0011\bu\u0012\u0006\u0010\u00fb\u00e6\u0097\u00a8\u0006\"\u000538400\u0012\u0011\bv\u0012\u0006\u0010\u00ac\u00e7\u0097\u00a8\u0006\"\u000538401\u0012\u0011\bw\u0012\u0006\u0010\u00db\u00e7\u0097\u00a8\u0006\"\u000538402\u0012\u0011\bx\u0012\u0006\u0010\u00ac\u00e8\u0097\u00a8\u0006\"\u000538433\u001a\b\u001a\u0006BLYF33 \u00d6\u00e6\u0097\u00a8\u0006\"`\n/\n\u001020907-701ff27f-2\u0012\b13:49:00\u001a\b20230916 \u0000*\u00035950\u0000\u0012\u001d\rk\u00d9\u0012\u00c2\u0015\u00b3C\u0092\u00c2\u001d\u0000\u0000pC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00ab\u00aa\u0012A(\u00ce\u00e8\u0097\u00a8\u0006B\b\u001a\u0006BLYF33" + }, + { + "type": "con_recorrido", + "entity": "\n$baae1773-c95f-475e-a651-7d93bb3c00db\u001a\u00a4\t\n/\n\u001020912-701ff27f-2\u0012\b14:49:00\u001a\b20230916 \u0000*\u00035950\u0000\u0012\u0011\b>\u0012\u0006\u0010\u009a\u00ea\u0097\u00a8\u0006\"\u000549324\u0012\u0011\b?\u0012\u0006\u0010\u00d0\u00ea\u0097\u00a8\u0006\"\u000549325\u0012\u0011\b@\u0012\u0006\u0010\u00ff\u00ea\u0097\u00a8\u0006\"\u000549326\u0012\u0011\bA\u0012\u0006\u0010\u00a1\u00eb\u0097\u00a8\u0006\"\u000539648\u0012\u0011\bB\u0012\u0006\u0010\u00c8\u00eb\u0097\u00a8\u0006\"\u000539649\u0012\u0011\bC\u0012\u0006\u0010\u00f9\u00eb\u0097\u00a8\u0006\"\u000545112\u0012\u0011\bD\u0012\u0006\u0010\u00a4\u00ec\u0097\u00a8\u0006\"\u000545113\u0012\u0011\bE\u0012\u0006\u0010\u00ed\u00ec\u0097\u00a8\u0006\"\u000537490\u0012\u0011\bF\u0012\u0006\u0010\u00a8\u00ed\u0097\u00a8\u0006\"\u000545115\u0012\u0011\bG\u0012\u0006\u0010\u00c0\u00ed\u0097\u00a8\u0006\"\u000545116\u0012\u0011\bH\u0012\u0006\u0010\u0086\u00ee\u0097\u00a8\u0006\"\u000545118\u0012\u0011\bI\u0012\u0006\u0010\u00ce\u00ee\u0097\u00a8\u0006\"\u000545119\u0012\u0011\bJ\u0012\u0006\u0010\u00fa\u00ee\u0097\u00a8\u0006\"\u000545120\u0012\u0011\bK\u0012\u0006\u0010\u00af\u00ef\u0097\u00a8\u0006\"\u000545121\u0012\u0011\bL\u0012\u0006\u0010\u00d8\u00ef\u0097\u00a8\u0006\"\u000538535\u0012\u0011\bM\u0012\u0006\u0010\u00a2\u00f0\u0097\u00a8\u0006\"\u000538536\u0012\u0013\bN\u0012\u0006\u0010\u00c5\u00f0\u0097\u00a8\u0006\"\u00074838437\u0012\u0011\bO\u0012\u0006\u0010\u00fa\u00f0\u0097\u00a8\u0006\"\u000545085\u0012\u0011\bP\u0012\u0006\u0010\u00c6\u00f1\u0097\u00a8\u0006\"\u000545086\u0012\u0011\bQ\u0012\u0006\u0010\u00b6\u00f2\u0097\u00a8\u0006\"\u000538540\u0012\u0011\bR\u0012\u0006\u0010\u0082\u00f3\u0097\u00a8\u0006\"\u000538544\u0012\u0011\bS\u0012\u0006\u0010\u00c6\u00f3\u0097\u00a8\u0006\"\u000538545\u0012\u0011\bT\u0012\u0006\u0010\u009e\u00f4\u0097\u00a8\u0006\"\u000538546\u0012\u0011\bU\u0012\u0006\u0010\u009a\u00f5\u0097\u00a8\u0006\"\u000538548\u0012\u0011\bV\u0012\u0006\u0010\u00dd\u00f5\u0097\u00a8\u0006\"\u000538549\u0012\u0011\bW\u0012\u0006\u0010\u0096\u00f6\u0097\u00a8\u0006\"\u000538550\u0012\u0011\bX\u0012\u0006\u0010\u00f9\u00f6\u0097\u00a8\u0006\"\u000538551\u0012\u0011\bY\u0012\u0006\u0010\u00d2\u00f7\u0097\u00a8\u0006\"\u000538552\u0012\u0011\bZ\u0012\u0006\u0010\u00a7\u00f8\u0097\u00a8\u0006\"\u000549359\u0012\u0011\b[\u0012\u0006\u0010\u00de\u00f8\u0097\u00a8\u0006\"\u000549360\u0012\u0011\b\\\u0012\u0006\u0010\u00d8\u00f9\u0097\u00a8\u0006\"\u000549361\u0012\u0011\b]\u0012\u0006\u0010\u00f6\u00f9\u0097\u00a8\u0006\"\u000549362\u0012\u0011\b^\u0012\u0006\u0010\u00ab\u00fa\u0097\u00a8\u0006\"\u000549363\u0012\u0011\b_\u0012\u0006\u0010\u00dd\u00fa\u0097\u00a8\u0006\"\u000549364\u0012\u0011\b`\u0012\u0006\u0010\u008b\u00fb\u0097\u00a8\u0006\"\u000549365\u0012\u0011\ba\u0012\u0006\u0010\u00db\u00fb\u0097\u00a8\u0006\"\u000538560\u0012\u0011\bb\u0012\u0006\u0010\u0088\u00fc\u0097\u00a8\u0006\"\u000542857\u0012\u0011\bc\u0012\u0006\u0010\u00ad\u00fc\u0097\u00a8\u0006\"\u000538562\u0012\u0011\bd\u0012\u0006\u0010\u00d6\u00fc\u0097\u00a8\u0006\"\u000538563\u0012\u0011\be\u0012\u0006\u0010\u0085\u00fd\u0097\u00a8\u0006\"\u000542854\u0012\u0011\bf\u0012\u0006\u0010\u00fe\u00fd\u0097\u00a8\u0006\"\u000538565\u0012\u0011\bg\u0012\u0006\u0010\u00be\u00fe\u0097\u00a8\u0006\"\u000540932\u0012\u0011\bh\u0012\u0006\u0010\u0099\u00ff\u0097\u00a8\u0006\"\u000538567\u0012\u0011\bi\u0012\u0006\u0010\u00d7\u00ff\u0097\u00a8\u0006\"\u000538568\u0012\u0011\bj\u0012\u0006\u0010\u00fc\u00ff\u0097\u00a8\u0006\"\u000538569\u0012\u0011\bk\u0012\u0006\u0010\u00b5\u0080\u0098\u00a8\u0006\"\u000538570\u0012\u0011\bl\u0012\u0006\u0010\u0081\u0081\u0098\u00a8\u0006\"\u000538571\u0012\u0011\bm\u0012\u0006\u0010\u00ca\u0081\u0098\u00a8\u0006\"\u000538572\u0012\u0011\bn\u0012\u0006\u0010\u00bd\u0083\u0098\u00a8\u0006\"\u000538393\u0012\u0011\bo\u0012\u0006\u0010\u008c\u0084\u0098\u00a8\u0006\"\u000538394\u0012\u0011\bp\u0012\u0006\u0010\u00d0\u0084\u0098\u00a8\u0006\"\u000538395\u0012\u0011\bq\u0012\u0006\u0010\u0085\u0085\u0098\u00a8\u0006\"\u000538396\u0012\u0011\br\u0012\u0006\u0010\u00e5\u0085\u0098\u00a8\u0006\"\u000538397\u0012\u0011\bs\u0012\u0006\u0010\u008c\u0086\u0098\u00a8\u0006\"\u000538398\u0012\u0011\bt\u0012\u0006\u0010\u00b6\u0086\u0098\u00a8\u0006\"\u000538399\u0012\u0011\bu\u0012\u0006\u0010\u00a0\u0087\u0098\u00a8\u0006\"\u000538400\u0012\u0011\bv\u0012\u0006\u0010\u00f1\u0087\u0098\u00a8\u0006\"\u000538401\u0012\u0011\bw\u0012\u0006\u0010\u00c0\u0088\u0098\u00a8\u0006\"\u000538402\u0012\u0011\bx\u0012\u0006\u0010\u00ce\u0089\u0098\u00a8\u0006\"\u000538433\u001a\b\u001a\u0006CLFX61 \u00a0\u00e8\u0097\u00a8\u0006\"`\n/\n\u001020912-701ff27f-2\u0012\b14:49:00\u001a\b20230916 \u0000*\u00035950\u0000\u0012\u001d\r\u00e6;\u0013\u00c2\u0015\u0093'\u0092\u00c2\u001d\u0000\u0000\u00a3C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a0\u00e8\u0097\u00a8\u0006B\b\u001a\u0006CLFX61" + }, + { + "type": "con_recorrido", + "entity": "\n$e4110f51-4f86-4889-9e5d-c4bf215559a7\u001a\u00a0\f\n/\n\u001020914-701ff27f-2\u0012\b15:13:00\u001a\b20230916 \u0000*\u00035950\u0000\u0012\u0011\b*\u0012\u0006\u0010\u0080\u00e9\u0097\u00a8\u0006\"\u000539599\u0012\u0011\b+\u0012\u0006\u0010\u0098\u00e9\u0097\u00a8\u0006\"\u000539600\u0012\u0011\b,\u0012\u0006\u0010\u00de\u00e9\u0097\u00a8\u0006\"\u000537496\u0012\u0011\b-\u0012\u0006\u0010\u0091\u00ea\u0097\u00a8\u0006\"\u000545064\u0012\u0011\b.\u0012\u0006\u0010\u00dd\u00ea\u0097\u00a8\u0006\"\u000537506\u0012\u0011\b/\u0012\u0006\u0010\u00a9\u00eb\u0097\u00a8\u0006\"\u000545069\u0012\u0011\b0\u0012\u0006\u0010\u009a\u00ec\u0097\u00a8\u0006\"\u000537523\u0012\u0011\b1\u0012\u0006\u0010\u00c2\u00ec\u0097\u00a8\u0006\"\u000537477\u0012\u0011\b2\u0012\u0006\u0010\u0098\u00ed\u0097\u00a8\u0006\"\u000549310\u0012\u0011\b3\u0012\u0006\u0010\u00b7\u00ed\u0097\u00a8\u0006\"\u000549311\u0012\u0011\b4\u0012\u0006\u0010\u00ee\u00ed\u0097\u00a8\u0006\"\u000539634\u0012\u0011\b5\u0012\u0006\u0010\u0087\u00ee\u0097\u00a8\u0006\"\u000539635\u0012\u0011\b6\u0012\u0006\u0010\u00b4\u00ee\u0097\u00a8\u0006\"\u000539636\u0012\u0011\b7\u0012\u0006\u0010\u00e6\u00ee\u0097\u00a8\u0006\"\u000549503\u0012\u0011\b8\u0012\u0006\u0010\u00e3\u00ef\u0097\u00a8\u0006\"\u000539637\u0012\u0011\b9\u0012\u0006\u0010\u0093\u00f0\u0097\u00a8\u0006\"\u000549317\u0012\u0011\b:\u0012\u0006\u0010\u00b2\u00f0\u0097\u00a8\u0006\"\u000549318\u0012\u0011\b;\u0012\u0006\u0010\u00f2\u00f0\u0097\u00a8\u0006\"\u000549319\u0012\u0011\b<\u0012\u0006\u0010\u00b0\u00f1\u0097\u00a8\u0006\"\u000539641\u0012\u0011\b=\u0012\u0006\u0010\u00ce\u00f1\u0097\u00a8\u0006\"\u000539642\u0012\u0011\b>\u0012\u0006\u0010\u00bb\u00f3\u0097\u00a8\u0006\"\u000549324\u0012\u0011\b?\u0012\u0006\u0010\u00ef\u00f3\u0097\u00a8\u0006\"\u000549325\u0012\u0011\b@\u0012\u0006\u0010\u009d\u00f4\u0097\u00a8\u0006\"\u000549326\u0012\u0011\bA\u0012\u0006\u0010\u00bf\u00f4\u0097\u00a8\u0006\"\u000539648\u0012\u0011\bB\u0012\u0006\u0010\u00e5\u00f4\u0097\u00a8\u0006\"\u000539649\u0012\u0011\bC\u0012\u0006\u0010\u0096\u00f5\u0097\u00a8\u0006\"\u000545112\u0012\u0011\bD\u0012\u0006\u0010\u00c3\u00f5\u0097\u00a8\u0006\"\u000545113\u0012\u0011\bE\u0012\u0006\u0010\u008d\u00f6\u0097\u00a8\u0006\"\u000537490\u0012\u0011\bF\u0012\u0006\u0010\u00cb\u00f6\u0097\u00a8\u0006\"\u000545115\u0012\u0011\bG\u0012\u0006\u0010\u00e4\u00f6\u0097\u00a8\u0006\"\u000545116\u0012\u0011\bH\u0012\u0006\u0010\u00ae\u00f7\u0097\u00a8\u0006\"\u000545118\u0012\u0011\bI\u0012\u0006\u0010\u00fd\u00f7\u0097\u00a8\u0006\"\u000545119\u0012\u0011\bJ\u0012\u0006\u0010\u00ad\u00f8\u0097\u00a8\u0006\"\u000545120\u0012\u0011\bK\u0012\u0006\u0010\u00e8\u00f8\u0097\u00a8\u0006\"\u000545121\u0012\u0011\bL\u0012\u0006\u0010\u0095\u00f9\u0097\u00a8\u0006\"\u000538535\u0012\u0011\bM\u0012\u0006\u0010\u00e9\u00f9\u0097\u00a8\u0006\"\u000538536\u0012\u0013\bN\u0012\u0006\u0010\u0091\u00fa\u0097\u00a8\u0006\"\u00074838437\u0012\u0011\bO\u0012\u0006\u0010\u00cf\u00fa\u0097\u00a8\u0006\"\u000545085\u0012\u0011\bP\u0012\u0006\u0010\u00a9\u00fb\u0097\u00a8\u0006\"\u000545086\u0012\u0011\bQ\u0012\u0006\u0010\u00af\u00fc\u0097\u00a8\u0006\"\u000538540\u0012\u0011\bR\u0012\u0006\u0010\u008d\u00fd\u0097\u00a8\u0006\"\u000538544\u0012\u0011\bS\u0012\u0006\u0010\u00e2\u00fd\u0097\u00a8\u0006\"\u000538545\u0012\u0011\bT\u0012\u0006\u0010\u00d2\u00fe\u0097\u00a8\u0006\"\u000538546\u0012\u0011\bU\u0012\u0006\u0010\u00f2\u00ff\u0097\u00a8\u0006\"\u000538548\u0012\u0011\bV\u0012\u0006\u0010\u00cb\u0080\u0098\u00a8\u0006\"\u000538549\u0012\u0011\bW\u0012\u0006\u0010\u0097\u0081\u0098\u00a8\u0006\"\u000538550\u0012\u0011\bX\u0012\u0006\u0010\u009e\u0082\u0098\u00a8\u0006\"\u000538551\u0012\u0011\bY\u0012\u0006\u0010\u0099\u0083\u0098\u00a8\u0006\"\u000538552\u0012\u0011\bZ\u0012\u0006\u0010\u0092\u0084\u0098\u00a8\u0006\"\u000549359\u0012\u0011\b[\u0012\u0006\u0010\u00e2\u0084\u0098\u00a8\u0006\"\u000549360\u0012\u0011\b\\\u0012\u0006\u0010\u0093\u0086\u0098\u00a8\u0006\"\u000549361\u0012\u0011\b]\u0012\u0006\u0010\u00c0\u0086\u0098\u00a8\u0006\"\u000549362\u0012\u0011\b^\u0012\u0006\u0010\u008f\u0087\u0098\u00a8\u0006\"\u000549363\u0012\u0011\b_\u0012\u0006\u0010\u00db\u0087\u0098\u00a8\u0006\"\u000549364\u0012\u0011\b`\u0012\u0006\u0010\u00a2\u0088\u0098\u00a8\u0006\"\u000549365\u0012\u0011\ba\u0012\u0006\u0010\u009c\u0089\u0098\u00a8\u0006\"\u000538560\u0012\u0011\bb\u0012\u0006\u0010\u00e2\u0089\u0098\u00a8\u0006\"\u000542857\u0012\u0011\bc\u0012\u0006\u0010\u009c\u008a\u0098\u00a8\u0006\"\u000538562\u0012\u0011\bd\u0012\u0006\u0010\u00dd\u008a\u0098\u00a8\u0006\"\u000538563\u0012\u0011\be\u0012\u0006\u0010\u00a9\u008b\u0098\u00a8\u0006\"\u000542854\u0012\u0011\bf\u0012\u0006\u0010\u00ed\u008c\u0098\u00a8\u0006\"\u000538565\u0012\u0011\bg\u0012\u0006\u0010\u00d7\u008d\u0098\u00a8\u0006\"\u000540932\u0012\u0011\bh\u0012\u0006\u0010\u00f2\u008e\u0098\u00a8\u0006\"\u000538567\u0012\u0011\bi\u0012\u0006\u0010\u00da\u008f\u0098\u00a8\u0006\"\u000538568\u0012\u0011\bj\u0012\u0006\u0010\u009b\u0090\u0098\u00a8\u0006\"\u000538569\u0012\u0011\bk\u0012\u0006\u0010\u00fd\u0090\u0098\u00a8\u0006\"\u000538570\u0012\u0011\bl\u0012\u0006\u0010\u0083\u0092\u0098\u00a8\u0006\"\u000538571\u0012\u0011\bm\u0012\u0006\u0010\u0085\u0093\u0098\u00a8\u0006\"\u000538572\u0012\u0011\bn\u0012\u0006\u0010\u00c3\u0096\u0098\u00a8\u0006\"\u000538393\u0012\u0011\bo\u0012\u0006\u0010\u00d8\u0097\u0098\u00a8\u0006\"\u000538394\u0012\u0011\bp\u0012\u0006\u0010\u00db\u0098\u0098\u00a8\u0006\"\u000538395\u0012\u0011\bq\u0012\u0006\u0010\u00c3\u0099\u0098\u00a8\u0006\"\u000538396\u0012\u0011\br\u0012\u0006\u0010\u0080\u009b\u0098\u00a8\u0006\"\u000538397\u0012\u0011\bs\u0012\u0006\u0010\u00cc\u009b\u0098\u00a8\u0006\"\u000538398\u0012\u0011\bt\u0012\u0006\u0010\u00a0\u009c\u0098\u00a8\u0006\"\u000538399\u0012\u0011\bu\u0012\u0006\u0010\u00fa\u009d\u0098\u00a8\u0006\"\u000538400\u0012\u0011\bv\u0012\u0006\u0010\u00a2\u009f\u0098\u00a8\u0006\"\u000538401\u0012\u0011\bw\u0012\u0006\u0010\u00c7\u00a0\u0098\u00a8\u0006\"\u000538402\u0012\u0011\bx\u0012\u0006\u0010\u00f9\u00a2\u0098\u00a8\u0006\"\u000538433\u001a\b\u001a\u0006CYSD51 \u00b2\u00e8\u0097\u00a8\u0006\"`\n/\n\u001020914-701ff27f-2\u0012\b15:13:00\u001a\b20230916 \u0000*\u00035950\u0000\u0012\u001d\r\u0004D\u0013\u00c2\u0015\u00b1\u0013\u0092\u00c2\u001d\u0000\u0000lC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b2\u00e8\u0097\u00a8\u0006B\b\u001a\u0006CYSD51" + }, + { + "type": "con_recorrido", + "entity": "\n$a9720ff5-7291-4753-95f9-a91af589a7fd\u001a\u00c5\b\n/\n\u001020911-701ff27f-2\u0012\b14:37:00\u001a\b20230916 \u0000*\u00035950\u0000\u0012\u0011\bC\u0012\u0006\u0010\u00e7\u00e8\u0097\u00a8\u0006\"\u000545112\u0012\u0011\bD\u0012\u0006\u0010\u0095\u00e9\u0097\u00a8\u0006\"\u000545113\u0012\u0011\bE\u0012\u0006\u0010\u00e3\u00e9\u0097\u00a8\u0006\"\u000537490\u0012\u0011\bF\u0012\u0006\u0010\u00a1\u00ea\u0097\u00a8\u0006\"\u000545115\u0012\u0011\bG\u0012\u0006\u0010\u00bb\u00ea\u0097\u00a8\u0006\"\u000545116\u0012\u0011\bH\u0012\u0006\u0010\u0083\u00eb\u0097\u00a8\u0006\"\u000545118\u0012\u0011\bI\u0012\u0006\u0010\u00cf\u00eb\u0097\u00a8\u0006\"\u000545119\u0012\u0011\bJ\u0012\u0006\u0010\u00fc\u00eb\u0097\u00a8\u0006\"\u000545120\u0012\u0011\bK\u0012\u0006\u0010\u00b3\u00ec\u0097\u00a8\u0006\"\u000545121\u0012\u0011\bL\u0012\u0006\u0010\u00dc\u00ec\u0097\u00a8\u0006\"\u000538535\u0012\u0011\bM\u0012\u0006\u0010\u00a8\u00ed\u0097\u00a8\u0006\"\u000538536\u0012\u0013\bN\u0012\u0006\u0010\u00cb\u00ed\u0097\u00a8\u0006\"\u00074838437\u0012\u0011\bO\u0012\u0006\u0010\u0081\u00ee\u0097\u00a8\u0006\"\u000545085\u0012\u0011\bP\u0012\u0006\u0010\u00ce\u00ee\u0097\u00a8\u0006\"\u000545086\u0012\u0011\bQ\u0012\u0006\u0010\u00bd\u00ef\u0097\u00a8\u0006\"\u000538540\u0012\u0011\bR\u0012\u0006\u0010\u0089\u00f0\u0097\u00a8\u0006\"\u000538544\u0012\u0011\bS\u0012\u0006\u0010\u00cc\u00f0\u0097\u00a8\u0006\"\u000538545\u0012\u0011\bT\u0012\u0006\u0010\u00a2\u00f1\u0097\u00a8\u0006\"\u000538546\u0012\u0011\bU\u0012\u0006\u0010\u009a\u00f2\u0097\u00a8\u0006\"\u000538548\u0012\u0011\bV\u0012\u0006\u0010\u00da\u00f2\u0097\u00a8\u0006\"\u000538549\u0012\u0011\bW\u0012\u0006\u0010\u0091\u00f3\u0097\u00a8\u0006\"\u000538550\u0012\u0011\bX\u0012\u0006\u0010\u00ef\u00f3\u0097\u00a8\u0006\"\u000538551\u0012\u0011\bY\u0012\u0006\u0010\u00c3\u00f4\u0097\u00a8\u0006\"\u000538552\u0012\u0011\bZ\u0012\u0006\u0010\u0093\u00f5\u0097\u00a8\u0006\"\u000549359\u0012\u0011\b[\u0012\u0006\u0010\u00c7\u00f5\u0097\u00a8\u0006\"\u000549360\u0012\u0011\b\\\u0012\u0006\u0010\u00b8\u00f6\u0097\u00a8\u0006\"\u000549361\u0012\u0011\b]\u0012\u0006\u0010\u00d4\u00f6\u0097\u00a8\u0006\"\u000549362\u0012\u0011\b^\u0012\u0006\u0010\u0084\u00f7\u0097\u00a8\u0006\"\u000549363\u0012\u0011\b_\u0012\u0006\u0010\u00b2\u00f7\u0097\u00a8\u0006\"\u000549364\u0012\u0011\b`\u0012\u0006\u0010\u00dc\u00f7\u0097\u00a8\u0006\"\u000549365\u0012\u0011\ba\u0012\u0006\u0010\u00a5\u00f8\u0097\u00a8\u0006\"\u000538560\u0012\u0011\bb\u0012\u0006\u0010\u00ce\u00f8\u0097\u00a8\u0006\"\u000542857\u0012\u0011\bc\u0012\u0006\u0010\u00ef\u00f8\u0097\u00a8\u0006\"\u000538562\u0012\u0011\bd\u0012\u0006\u0010\u0094\u00f9\u0097\u00a8\u0006\"\u000538563\u0012\u0011\be\u0012\u0006\u0010\u00be\u00f9\u0097\u00a8\u0006\"\u000542854\u0012\u0011\bf\u0012\u0006\u0010\u00aa\u00fa\u0097\u00a8\u0006\"\u000538565\u0012\u0011\bg\u0012\u0006\u0010\u00e3\u00fa\u0097\u00a8\u0006\"\u000540932\u0012\u0011\bh\u0012\u0006\u0010\u00b5\u00fb\u0097\u00a8\u0006\"\u000538567\u0012\u0011\bi\u0012\u0006\u0010\u00eb\u00fb\u0097\u00a8\u0006\"\u000538568\u0012\u0011\bj\u0012\u0006\u0010\u008c\u00fc\u0097\u00a8\u0006\"\u000538569\u0012\u0011\bk\u0012\u0006\u0010\u00bd\u00fc\u0097\u00a8\u0006\"\u000538570\u0012\u0011\bl\u0012\u0006\u0010\u0080\u00fd\u0097\u00a8\u0006\"\u000538571\u0012\u0011\bm\u0012\u0006\u0010\u00c0\u00fd\u0097\u00a8\u0006\"\u000538572\u0012\u0011\bn\u0012\u0006\u0010\u0091\u00ff\u0097\u00a8\u0006\"\u000538393\u0012\u0011\bo\u0012\u0006\u0010\u00d4\u00ff\u0097\u00a8\u0006\"\u000538394\u0012\u0011\bp\u0012\u0006\u0010\u008e\u0080\u0098\u00a8\u0006\"\u000538395\u0012\u0011\bq\u0012\u0006\u0010\u00bc\u0080\u0098\u00a8\u0006\"\u000538396\u0012\u0011\br\u0012\u0006\u0010\u008d\u0081\u0098\u00a8\u0006\"\u000538397\u0012\u0011\bs\u0012\u0006\u0010\u00ad\u0081\u0098\u00a8\u0006\"\u000538398\u0012\u0011\bt\u0012\u0006\u0010\u00d1\u0081\u0098\u00a8\u0006\"\u000538399\u0012\u0011\bu\u0012\u0006\u0010\u00aa\u0082\u0098\u00a8\u0006\"\u000538400\u0012\u0011\bv\u0012\u0006\u0010\u00ee\u0082\u0098\u00a8\u0006\"\u000538401\u0012\u0011\bw\u0012\u0006\u0010\u00af\u0083\u0098\u00a8\u0006\"\u000538402\u0012\u0011\bx\u0012\u0006\u0010\u00a4\u0084\u0098\u00a8\u0006\"\u000538433\u001a\b\u001a\u0006DDVZ66 \u00c8\u00e8\u0097\u00a8\u0006\"`\n/\n\u001020911-701ff27f-2\u0012\b14:37:00\u001a\b20230916 \u0000*\u00035950\u0000\u0012\u001d\r\u001a*\u0013\u00c2\u0015q,\u0092\u00c2\u001d\u0000\u0080\u00b3C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u001c\u00c7YA(\u00c8\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DDVZ66" + }, + { + "type": "con_recorrido", + "entity": "\n$6da266c4-69b5-417b-adc6-f939e1a92dfc\u001a\u00b9\u0006\n/\n\u001020910-701ff27f-2\u0012\b14:25:00\u001a\b20230916 \u0000*\u00035950\u0000\u0012\u0011\bQ\u0012\u0006\u0010\u009d\u00e9\u0097\u00a8\u0006\"\u000538540\u0012\u0011\bR\u0012\u0006\u0010\u00ef\u00e9\u0097\u00a8\u0006\"\u000538544\u0012\u0011\bS\u0012\u0006\u0010\u00b6\u00ea\u0097\u00a8\u0006\"\u000538545\u0012\u0011\bT\u0012\u0006\u0010\u0090\u00eb\u0097\u00a8\u0006\"\u000538546\u0012\u0011\bU\u0012\u0006\u0010\u008c\u00ec\u0097\u00a8\u0006\"\u000538548\u0012\u0011\bV\u0012\u0006\u0010\u00ce\u00ec\u0097\u00a8\u0006\"\u000538549\u0012\u0011\bW\u0012\u0006\u0010\u0085\u00ed\u0097\u00a8\u0006\"\u000538550\u0012\u0011\bX\u0012\u0006\u0010\u00e3\u00ed\u0097\u00a8\u0006\"\u000538551\u0012\u0011\bY\u0012\u0006\u0010\u00b6\u00ee\u0097\u00a8\u0006\"\u000538552\u0012\u0011\bZ\u0012\u0006\u0010\u0084\u00ef\u0097\u00a8\u0006\"\u000549359\u0012\u0011\b[\u0012\u0006\u0010\u00b6\u00ef\u0097\u00a8\u0006\"\u000549360\u0012\u0011\b\\\u0012\u0006\u0010\u00a1\u00f0\u0097\u00a8\u0006\"\u000549361\u0012\u0011\b]\u0012\u0006\u0010\u00bc\u00f0\u0097\u00a8\u0006\"\u000549362\u0012\u0011\b^\u0012\u0006\u0010\u00e9\u00f0\u0097\u00a8\u0006\"\u000549363\u0012\u0011\b_\u0012\u0006\u0010\u0094\u00f1\u0097\u00a8\u0006\"\u000549364\u0012\u0011\b`\u0012\u0006\u0010\u00bb\u00f1\u0097\u00a8\u0006\"\u000549365\u0012\u0011\ba\u0012\u0006\u0010\u00fe\u00f1\u0097\u00a8\u0006\"\u000538560\u0012\u0011\bb\u0012\u0006\u0010\u00a3\u00f2\u0097\u00a8\u0006\"\u000542857\u0012\u0011\bc\u0012\u0006\u0010\u00c1\u00f2\u0097\u00a8\u0006\"\u000538562\u0012\u0011\bd\u0012\u0006\u0010\u00e2\u00f2\u0097\u00a8\u0006\"\u000538563\u0012\u0011\be\u0012\u0006\u0010\u0089\u00f3\u0097\u00a8\u0006\"\u000542854\u0012\u0011\bf\u0012\u0006\u0010\u00e9\u00f3\u0097\u00a8\u0006\"\u000538565\u0012\u0011\bg\u0012\u0006\u0010\u009b\u00f4\u0097\u00a8\u0006\"\u000540932\u0012\u0011\bh\u0012\u0006\u0010\u00e2\u00f4\u0097\u00a8\u0006\"\u000538567\u0012\u0011\bi\u0012\u0006\u0010\u0091\u00f5\u0097\u00a8\u0006\"\u000538568\u0012\u0011\bj\u0012\u0006\u0010\u00ae\u00f5\u0097\u00a8\u0006\"\u000538569\u0012\u0011\bk\u0012\u0006\u0010\u00d8\u00f5\u0097\u00a8\u0006\"\u000538570\u0012\u0011\bl\u0012\u0006\u0010\u0091\u00f6\u0097\u00a8\u0006\"\u000538571\u0012\u0011\bm\u0012\u0006\u0010\u00c7\u00f6\u0097\u00a8\u0006\"\u000538572\u0012\u0011\bn\u0012\u0006\u0010\u00f5\u00f7\u0097\u00a8\u0006\"\u000538393\u0012\u0011\bo\u0012\u0006\u0010\u00ac\u00f8\u0097\u00a8\u0006\"\u000538394\u0012\u0011\bp\u0012\u0006\u0010\u00dc\u00f8\u0097\u00a8\u0006\"\u000538395\u0012\u0011\bq\u0012\u0006\u0010\u0081\u00f9\u0097\u00a8\u0006\"\u000538396\u0012\u0011\br\u0012\u0006\u0010\u00c2\u00f9\u0097\u00a8\u0006\"\u000538397\u0012\u0011\bs\u0012\u0006\u0010\u00dc\u00f9\u0097\u00a8\u0006\"\u000538398\u0012\u0011\bt\u0012\u0006\u0010\u00f8\u00f9\u0097\u00a8\u0006\"\u000538399\u0012\u0011\bu\u0012\u0006\u0010\u00bf\u00fa\u0097\u00a8\u0006\"\u000538400\u0012\u0011\bv\u0012\u0006\u0010\u00f4\u00fa\u0097\u00a8\u0006\"\u000538401\u0012\u0011\bw\u0012\u0006\u0010\u00a7\u00fb\u0097\u00a8\u0006\"\u000538402\u0012\u0011\bx\u0012\u0006\u0010\u0083\u00fc\u0097\u00a8\u0006\"\u000538433\u001a\b\u001a\u0006DTCG31 \u00aa\u00e8\u0097\u00a8\u0006\"`\n/\n\u001020910-701ff27f-2\u0012\b14:25:00\u001a\b20230916 \u0000*\u00035950\u0000\u0012\u001d\rh\b\u0013\u00c2\u0015I.\u0092\u00c2\u001d\u0000\u0000\u00a7C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u00a0@(\u00aa\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DTCG31" + }, + { + "type": "con_recorrido", + "entity": "\n$b42ccab1-6d11-4af0-b366-857c22bf5c7f\u001a\u00ef\u000b\n/\n\u001020998-701ff27f-2\u0012\b15:03:00\u001a\b20230916 \u0000*\u00035950\u0001\u0012\u0011\b-\u0012\u0006\u0010\u009a\u00e8\u0097\u00a8\u0006\"\u000539785\u0012\u0011\b.\u0012\u0006\u0010\u00c3\u00e8\u0097\u00a8\u0006\"\u000538664\u0012\u0011\b/\u0012\u0006\u0010\u00fb\u00e8\u0097\u00a8\u0006\"\u000538702\u0012\u0011\b0\u0012\u0006\u0010\u00a9\u00e9\u0097\u00a8\u0006\"\u000539787\u0012\u0011\b1\u0012\u0006\u0010\u00d4\u00e9\u0097\u00a8\u0006\"\u000538501\u0012\u0011\b2\u0012\u0006\u0010\u0098\u00ea\u0097\u00a8\u0006\"\u000538692\u0012\u0011\b3\u0012\u0006\u0010\u00de\u00ea\u0097\u00a8\u0006\"\u000538714\u0012\u0011\b4\u0012\u0006\u0010\u008e\u00eb\u0097\u00a8\u0006\"\u000539791\u0012\u0011\b5\u0012\u0006\u0010\u00aa\u00eb\u0097\u00a8\u0006\"\u000538506\u0012\u0011\b6\u0012\u0006\u0010\u00db\u00eb\u0097\u00a8\u0006\"\u000538635\u0012\u0011\b7\u0012\u0006\u0010\u00fc\u00eb\u0097\u00a8\u0006\"\u000538509\u0012\u0011\b8\u0012\u0006\u0010\u00a7\u00ec\u0097\u00a8\u0006\"\u000538642\u0012\u0011\b9\u0012\u0006\u0010\u00d3\u00ec\u0097\u00a8\u0006\"\u000539795\u0012\u0011\b:\u0012\u0006\u0010\u00f3\u00ec\u0097\u00a8\u0006\"\u000538502\u0012\u0011\b;\u0012\u0006\u0010\u00ad\u00ed\u0097\u00a8\u0006\"\u000538503\u0012\u0011\b<\u0012\u0006\u0010\u00c7\u00ee\u0097\u00a8\u0006\"\u000535691\u0012\u0011\b=\u0012\u0006\u0010\u00ee\u00ee\u0097\u00a8\u0006\"\u000535692\u0012\u0011\b>\u0012\u0006\u0010\u00a7\u00ef\u0097\u00a8\u0006\"\u000535693\u0012\u0011\b?\u0012\u0006\u0010\u00dc\u00ef\u0097\u00a8\u0006\"\u000535694\u0012\u0011\b@\u0012\u0006\u0010\u0082\u00f0\u0097\u00a8\u0006\"\u000535695\u0012\u0011\bA\u0012\u0006\u0010\u00b0\u00f0\u0097\u00a8\u0006\"\u000535696\u0012\u0011\bB\u0012\u0006\u0010\u00d7\u00f1\u0097\u00a8\u0006\"\u000535697\u0012\u0011\bC\u0012\u0006\u0010\u00cc\u00f2\u0097\u00a8\u0006\"\u000539778\u0012\u0011\bD\u0012\u0006\u0010\u00b4\u00f3\u0097\u00a8\u0006\"\u000535797\u0012\u0011\bE\u0012\u0006\u0010\u00e3\u00f3\u0097\u00a8\u0006\"\u000535798\u0012\u0011\bF\u0012\u0006\u0010\u0083\u00f4\u0097\u00a8\u0006\"\u000535799\u0012\u0011\bG\u0012\u0006\u0010\u00c9\u00f4\u0097\u00a8\u0006\"\u000535800\u0012\u0011\bH\u0012\u0006\u0010\u00fb\u00f4\u0097\u00a8\u0006\"\u000535801\u0012\u0011\bI\u0012\u0006\u0010\u0096\u00f5\u0097\u00a8\u0006\"\u000535802\u0012\u0011\bJ\u0012\u0006\u0010\u00c6\u00f5\u0097\u00a8\u0006\"\u000535803\u0012\u0011\bK\u0012\u0006\u0010\u00ff\u00f5\u0097\u00a8\u0006\"\u000538507\u0012\u0011\bL\u0012\u0006\u0010\u00b4\u00f6\u0097\u00a8\u0006\"\u000534473\u0012\u0011\bM\u0012\u0006\u0010\u00e2\u00f6\u0097\u00a8\u0006\"\u000538500\u0012\u0011\bN\u0012\u0006\u0010\u0093\u00f7\u0097\u00a8\u0006\"\u000535808\u0012\u0011\bO\u0012\u0006\u0010\u00d0\u00f7\u0097\u00a8\u0006\"\u000535710\u0012\u0011\bP\u0012\u0006\u0010\u0081\u00f8\u0097\u00a8\u0006\"\u000550036\u0012\u0011\bQ\u0012\u0006\u0010\u00ff\u00f9\u0097\u00a8\u0006\"\u000550037\u0012\u0011\bR\u0012\u0006\u0010\u00a5\u00fb\u0097\u00a8\u0006\"\u000550038\u0012\u0011\bS\u0012\u0006\u0010\u0080\u00fc\u0097\u00a8\u0006\"\u000550039\u0012\u0011\bT\u0012\u0006\u0010\u00c4\u00fc\u0097\u00a8\u0006\"\u000550040\u0012\u0011\bU\u0012\u0006\u0010\u00b5\u00fd\u0097\u00a8\u0006\"\u000550041\u0012\u0012\bV\u0012\u0006\u0010\u00e7\u00fe\u0097\u00a8\u0006\"\u0006Jun-15\u0012\u0012\bW\u0012\u0006\u0010\u00e6\u00ff\u0097\u00a8\u0006\"\u0006Jun-13\u0012\u0011\bX\u0012\u0006\u0010\u00f8\u0081\u0098\u00a8\u0006\"\u00056-Oct\u0012\u0011\bY\u0012\u0006\u0010\u00c5\u0082\u0098\u00a8\u0006\"\u00056-Aug\u0012\u0011\bZ\u0012\u0006\u0010\u00be\u0084\u0098\u00a8\u0006\"\u00056-Jun\u0012\u0011\b[\u0012\u0006\u0010\u0088\u0086\u0098\u00a8\u0006\"\u00056-Feb\u0012\u0011\b\\\u0012\u0006\u0010\u00f2\u0087\u0098\u00a8\u0006\"\u00057-Jul\u0012\u0011\b]\u0012\u0006\u0010\u00ec\u0088\u0098\u00a8\u0006\"\u00057-May\u0012\u0013\b^\u0012\u0006\u0010\u00ae\u0089\u0098\u00a8\u0006\"\u00071508142\u0012\u0011\b_\u0012\u0006\u0010\u00e9\u008a\u0098\u00a8\u0006\"\u00057-Feb\u0012\u0011\b`\u0012\u0006\u0010\u00f0\u008b\u0098\u00a8\u0006\"\u00058-Jan\u0012\u0011\ba\u0012\u0006\u0010\u00b0\u008c\u0098\u00a8\u0006\"\u00059-Jan\u0012\u0012\bb\u0012\u0006\u0010\u0085\u008d\u0098\u00a8\u0006\"\u000610-Apr\u0012\u0012\bc\u0012\u0006\u0010\u00fb\u008d\u0098\u00a8\u0006\"\u000610-Jan\u0012\u0011\bd\u0012\u0006\u0010\u00df\u008e\u0098\u00a8\u0006\"\u000544863\u0012\u0012\be\u0012\u0006\u0010\u00a7\u008f\u0098\u00a8\u0006\"\u000610-Mar\u0012\u0012\bf\u0012\u0006\u0010\u00a8\u0090\u0098\u00a8\u0006\"\u000611-Jan\u0012\u0011\bg\u0012\u0006\u0010\u00a3\u0091\u0098\u00a8\u0006\"\u000544866\u0012\u0011\bh\u0012\u0006\u0010\u0083\u0092\u0098\u00a8\u0006\"\u000544867\u0012\u0011\bi\u0012\u0006\u0010\u00c5\u0092\u0098\u00a8\u0006\"\u000544868\u0012\u0011\bj\u0012\u0006\u0010\u0089\u0093\u0098\u00a8\u0006\"\u000544869\u0012\u0011\bk\u0012\u0006\u0010\u00de\u0093\u0098\u00a8\u0006\"\u000544870\u0012\u0011\bl\u0012\u0006\u0010\u00b8\u0094\u0098\u00a8\u0006\"\u000544871\u0012\u0011\bm\u0012\u0006\u0010\u00a4\u0095\u0098\u00a8\u0006\"\u000544872\u0012\u0011\bn\u0012\u0006\u0010\u00d8\u0096\u0098\u00a8\u0006\"\u000550020\u0012\u0011\bo\u0012\u0006\u0010\u00d8\u0098\u0098\u00a8\u0006\"\u000514-11\u0012\u0011\bp\u0012\u0006\u0010\u00d1\u0099\u0098\u00a8\u0006\"\u000591162\u0012\u0011\bq\u0012\u0006\u0010\u00d7\u009b\u0098\u00a8\u0006\"\u000550023\u0012\u0012\br\u0012\u0006\u0010\u00b2\u009e\u0098\u00a8\u0006\"\u000614-Jul\u0012\u0012\bs\u0012\u0006\u0010\u00bb\u009f\u0098\u00a8\u0006\"\u000614-Apr\u0012\u0011\bt\u0012\u0006\u0010\u00ed\u00a0\u0098\u00a8\u0006\"\u000537474\u0012\u0011\bu\u0012\u0006\u0010\u00ac\u00a2\u0098\u00a8\u0006\"\u000544879\u0012\u0011\bv\u0012\u0006\u0010\u0087\u00a3\u0098\u00a8\u0006\"\u000544880\u0012\u0011\bw\u0012\u0006\u0010\u008c\u00a4\u0098\u00a8\u0006\"\u000544881\u0012\u0011\bx\u0012\u0006\u0010\u00ef\u00a4\u0098\u00a8\u0006\"\u000550028\u001a\b\u001a\u0006FHFT19 \u00d4\u00e7\u0097\u00a8\u0006\"`\n/\n\u001020998-701ff27f-2\u0012\b15:03:00\u001a\b20230916 \u0000*\u00035950\u0001\u0012\u001d\r\u009c\u0016\u0013\u00c2\u0015\u00f8+\u0092\u00c2\u001d\u0000\u0000\u0080C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u001c\u00c71@(\u00d4\u00e7\u0097\u00a8\u0006B\b\u001a\u0006FHFT19" + }, + { + "type": "con_recorrido", + "entity": "\n$5b313258-850e-4211-afb5-045d76b847ba\u001a\u00fd\u000e\n/\n\u001020915-701ff27f-2\u0012\b15:25:00\u001a\b20230916 \u0000*\u00035950\u0000\u0012\u0011\b\u0018\u0012\u0006\u0010\u00d5\u00e8\u0097\u00a8\u0006\"\u00057-Jun\u0012\u0011\b\u0019\u0012\u0006\u0010\u0094\u00e9\u0097\u00a8\u0006\"\u00057-Aug\u0012\u0011\b\u001a\u0012\u0006\u0010\u00ab\u00ea\u0097\u00a8\u0006\"\u00056-Mar\u0012\u0011\b\u001b\u0012\u0006\u0010\u0090\u00eb\u0097\u00a8\u0006\"\u00056-May\u0012\u0011\b\u001c\u0012\u0006\u0010\u00a9\u00ec\u0097\u00a8\u0006\"\u00056-Jul\u0012\u0011\b\u001d\u0012\u0006\u0010\u00ef\u00ec\u0097\u00a8\u0006\"\u00056-Sep\u0012\u0011\b\u001e\u0012\u0006\u0010\u00ca\u00ed\u0097\u00a8\u0006\"\u00056-Nov\u0012\u0011\b\u001f\u0012\u0006\u0010\u00ae\u00ee\u0097\u00a8\u0006\"\u00056-Dec\u0012\u0012\b \u0012\u0006\u0010\u0085\u00ef\u0097\u00a8\u0006\"\u0006Jun-14\u0012\u0012\b!\u0012\u0006\u0010\u0099\u00f0\u0097\u00a8\u0006\"\u0006Jun-17\u0012\u0012\b\"\u0012\u0006\u0010\u00e6\u00f0\u0097\u00a8\u0006\"\u0006Jun-19\u0012\u0012\b#\u0012\u0006\u0010\u00a0\u00f1\u0097\u00a8\u0006\"\u0006Jun-20\u0012\u0012\b$\u0012\u0006\u0010\u00dc\u00f1\u0097\u00a8\u0006\"\u0006Jun-22\u0012\u0012\b%\u0012\u0006\u0010\u009b\u00f2\u0097\u00a8\u0006\"\u0006Jun-24\u0012\u0012\b&\u0012\u0006\u0010\u00f2\u00f2\u0097\u00a8\u0006\"\u0006Jun-25\u0012\u0011\b'\u0012\u0006\u0010\u008f\u00f5\u0097\u00a8\u0006\"\u000590003\u0012\u0011\b(\u0012\u0006\u0010\u00be\u00f5\u0097\u00a8\u0006\"\u000590007\u0012\u0011\b)\u0012\u0006\u0010\u00f1\u00f5\u0097\u00a8\u0006\"\u000590008\u0012\u0011\b*\u0012\u0006\u0010\u00e3\u00f6\u0097\u00a8\u0006\"\u000539599\u0012\u0011\b+\u0012\u0006\u0010\u00fb\u00f6\u0097\u00a8\u0006\"\u000539600\u0012\u0011\b,\u0012\u0006\u0010\u00c0\u00f7\u0097\u00a8\u0006\"\u000537496\u0012\u0011\b-\u0012\u0006\u0010\u00f5\u00f7\u0097\u00a8\u0006\"\u000545064\u0012\u0011\b.\u0012\u0006\u0010\u00c3\u00f8\u0097\u00a8\u0006\"\u000537506\u0012\u0011\b/\u0012\u0006\u0010\u0094\u00f9\u0097\u00a8\u0006\"\u000545069\u0012\u0011\b0\u0012\u0006\u0010\u0090\u00fa\u0097\u00a8\u0006\"\u000537523\u0012\u0011\b1\u0012\u0006\u0010\u00be\u00fa\u0097\u00a8\u0006\"\u000537477\u0012\u0011\b2\u0012\u0006\u0010\u00a2\u00fb\u0097\u00a8\u0006\"\u000549310\u0012\u0011\b3\u0012\u0006\u0010\u00c6\u00fb\u0097\u00a8\u0006\"\u000549311\u0012\u0011\b4\u0012\u0006\u0010\u0087\u00fc\u0097\u00a8\u0006\"\u000539634\u0012\u0011\b5\u0012\u0006\u0010\u00a6\u00fc\u0097\u00a8\u0006\"\u000539635\u0012\u0011\b6\u0012\u0006\u0010\u00dd\u00fc\u0097\u00a8\u0006\"\u000539636\u0012\u0011\b7\u0012\u0006\u0010\u009c\u00fd\u0097\u00a8\u0006\"\u000549503\u0012\u0011\b8\u0012\u0006\u0010\u00bc\u00fe\u0097\u00a8\u0006\"\u000539637\u0012\u0011\b9\u0012\u0006\u0010\u00fc\u00fe\u0097\u00a8\u0006\"\u000549317\u0012\u0011\b:\u0012\u0006\u0010\u00a5\u00ff\u0097\u00a8\u0006\"\u000549318\u0012\u0011\b;\u0012\u0006\u0010\u00fc\u00ff\u0097\u00a8\u0006\"\u000549319\u0012\u0011\b<\u0012\u0006\u0010\u00d2\u0080\u0098\u00a8\u0006\"\u000539641\u0012\u0011\b=\u0012\u0006\u0010\u00fd\u0080\u0098\u00a8\u0006\"\u000539642\u0012\u0011\b>\u0012\u0006\u0010\u00da\u0083\u0098\u00a8\u0006\"\u000549324\u0012\u0011\b?\u0012\u0006\u0010\u00ab\u0084\u0098\u00a8\u0006\"\u000549325\u0012\u0011\b@\u0012\u0006\u0010\u00f3\u0084\u0098\u00a8\u0006\"\u000549326\u0012\u0011\bA\u0012\u0006\u0010\u00a8\u0085\u0098\u00a8\u0006\"\u000539648\u0012\u0011\bB\u0012\u0006\u0010\u00e6\u0085\u0098\u00a8\u0006\"\u000539649\u0012\u0011\bC\u0012\u0006\u0010\u00b6\u0086\u0098\u00a8\u0006\"\u000545112\u0012\u0011\bD\u0012\u0006\u0010\u00ff\u0086\u0098\u00a8\u0006\"\u000545113\u0012\u0011\bE\u0012\u0006\u0010\u00fe\u0087\u0098\u00a8\u0006\"\u000537490\u0012\u0011\bF\u0012\u0006\u0010\u00e9\u0088\u0098\u00a8\u0006\"\u000545115\u0012\u0011\bG\u0012\u0006\u0010\u0095\u0089\u0098\u00a8\u0006\"\u000545116\u0012\u0011\bH\u0012\u0006\u0010\u0098\u008a\u0098\u00a8\u0006\"\u000545118\u0012\u0011\bI\u0012\u0006\u0010\u00a8\u008b\u0098\u00a8\u0006\"\u000545119\u0012\u0011\bJ\u0012\u0006\u0010\u0081\u008c\u0098\u00a8\u0006\"\u000545120\u0012\u0011\bK\u0012\u0006\u0010\u00f1\u008c\u0098\u00a8\u0006\"\u000545121\u0012\u0011\bL\u0012\u0006\u0010\u00c8\u008d\u0098\u00a8\u0006\"\u000538535\u0012\u0011\bM\u0012\u0006\u0010\u00ee\u008e\u0098\u00a8\u0006\"\u000538536\u0012\u0013\bN\u0012\u0006\u0010\u00be\u008f\u0098\u00a8\u0006\"\u00074838437\u0012\u0011\bO\u0012\u0006\u0010\u00bb\u0090\u0098\u00a8\u0006\"\u000545085\u0012\u0011\bP\u0012\u0006\u0010\u00f9\u0091\u0098\u00a8\u0006\"\u000545086\u0012\u0011\bQ\u0012\u0006\u0010\u009a\u0094\u0098\u00a8\u0006\"\u000538540\u0012\u0011\bR\u0012\u0006\u0010\u00ed\u0095\u0098\u00a8\u0006\"\u000538544\u0012\u0011\bS\u0012\u0006\u0010\u00b1\u0097\u0098\u00a8\u0006\"\u000538545\u0012\u0011\bT\u0012\u0006\u0010\u00bb\u0099\u0098\u00a8\u0006\"\u000538546\u0012\u0011\bU\u0012\u0006\u0010\u00ca\u009c\u0098\u00a8\u0006\"\u000538548\u0012\u0011\bV\u0012\u0006\u0010\u00b0\u009e\u0098\u00a8\u0006\"\u000538549\u0012\u0011\bW\u0012\u0006\u0010\u00fb\u009f\u0098\u00a8\u0006\"\u000538550\u0012\u0011\bX\u0012\u0006\u0010\u00ef\u00a2\u0098\u00a8\u0006\"\u000538551\u0012\u0011\bY\u0012\u0006\u0010\u00d3\u00a5\u0098\u00a8\u0006\"\u000538552\u0012\u0011\bZ\u0012\u0006\u0010\u00bc\u00a8\u0098\u00a8\u0006\"\u000549359\u0012\u0011\b[\u0012\u0006\u0010\u00b4\u00aa\u0098\u00a8\u0006\"\u000549360\u0012\u0011\b\\\u0012\u0006\u0010\u00f3\u00ae\u0098\u00a8\u0006\"\u000549361\u0012\u0011\b]\u0012\u0006\u0010\u008a\u00b0\u0098\u00a8\u0006\"\u000549362\u0012\u0011\b^\u0012\u0006\u0010\u0099\u00b2\u0098\u00a8\u0006\"\u000549363\u0012\u0011\b_\u0012\u0006\u0010\u00a5\u00b4\u0098\u00a8\u0006\"\u000549364\u0012\u0011\b`\u0012\u0006\u0010\u00a7\u00b6\u0098\u00a8\u0006\"\u000549365\u0012\u0011\ba\u0012\u0006\u0010\u00f3\u00b9\u0098\u00a8\u0006\"\u000538560\u0012\u0011\bb\u0012\u0006\u0010\u0085\u00bc\u0098\u00a8\u0006\"\u000542857\u0012\u0011\bc\u0012\u0006\u0010\u00ec\u00bd\u0098\u00a8\u0006\"\u000538562\u0012\u0011\bd\u0012\u0006\u0010\u00f7\u00bf\u0098\u00a8\u0006\"\u000538563\u0012\u0011\be\u0012\u0006\u0010\u00b4\u00c2\u0098\u00a8\u0006\"\u000542854\u0012\u0011\bf\u0012\u0006\u0010\u0098\u00c9\u0098\u00a8\u0006\"\u000538565\u0012\u0011\bg\u0012\u0006\u0010\u0089\u00cd\u0098\u00a8\u0006\"\u000540932\u0012\u0011\bh\u0012\u0006\u0010\u0084\u00d3\u0098\u00a8\u0006\"\u000538567\u0012\u0011\bi\u0012\u0006\u0010\u00a3\u00d7\u0098\u00a8\u0006\"\u000538568\u0012\u0011\bj\u0012\u0006\u0010\u0082\u00da\u0098\u00a8\u0006\"\u000538569\u0012\u0011\bk\u0012\u0006\u0010\u00a7\u00de\u0098\u00a8\u0006\"\u000538570\u0012\u0011\bl\u0012\u0006\u0010\u00be\u00e4\u0098\u00a8\u0006\"\u000538571\u0012\u0011\bm\u0012\u0006\u0010\u00ee\u00ea\u0098\u00a8\u0006\"\u000538572\u0012\u0011\bn\u0012\u0006\u0010\u00f3\u0083\u0099\u00a8\u0006\"\u000538393\u0012\u0011\bo\u0012\u0006\u0010\u00c5\u008d\u0099\u00a8\u0006\"\u000538394\u0012\u0011\bp\u0012\u0006\u0010\u00dc\u0096\u0099\u00a8\u0006\"\u000538395\u0012\u0011\bq\u0012\u0006\u0010\u00c0\u009e\u0099\u00a8\u0006\"\u000538396\u0012\u0011\br\u0012\u0006\u0010\u00ec\u00ad\u0099\u00a8\u0006\"\u000538397\u0012\u0011\bs\u0012\u0006\u0010\u00c3\u00b4\u0099\u00a8\u0006\"\u000538398\u0012\u0011\bt\u0012\u0006\u0010\u00a9\u00bc\u0099\u00a8\u0006\"\u000538399\u0012\u0011\bu\u0012\u0006\u0010\u00b6\u00d2\u0099\u00a8\u0006\"\u000538400\u0012\u0011\bv\u0012\u0006\u0010\u00f2\u00e5\u0099\u00a8\u0006\"\u000538401\u0012\u0011\bw\u0012\u0006\u0010\u00b5\u00fb\u0099\u00a8\u0006\"\u000538402\u0012\u0011\bx\u0012\u0006\u0010\u00a4\u00ab\u009a\u00a8\u0006\"\u000538433\u001a\b\u001a\u0006HHBH25 \u00ad\u00e8\u0097\u00a8\u0006\"`\n/\n\u001020915-701ff27f-2\u0012\b15:25:00\u001a\b20230916 \u0000*\u00035950\u0000\u0012\u001d\r\u0092\u00fd\u0012\u00c2\u0015\u00b4\u0000\u0092\u00c2\u001d\u0000\u0000\u001fC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-9\u008e\u009bA(\u00ad\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HHBH25" + }, + { + "type": "con_recorrido", + "entity": "\n$d71d3d6c-b50a-4d6f-a7dc-54866d2b413e\u001a\u00a1\u0005\n/\n\u001020909-701ff27f-2\u0012\b14:13:00\u001a\b20230916 \u0000*\u00035950\u0000\u0012\u0011\bY\u0012\u0006\u0010\u00aa\u00e8\u0097\u00a8\u0006\"\u000538552\u0012\u0011\bZ\u0012\u0006\u0010\u00ff\u00e8\u0097\u00a8\u0006\"\u000549359\u0012\u0011\b[\u0012\u0006\u0010\u00b5\u00e9\u0097\u00a8\u0006\"\u000549360\u0012\u0011\b\\\u0012\u0006\u0010\u00a8\u00ea\u0097\u00a8\u0006\"\u000549361\u0012\u0011\b]\u0012\u0006\u0010\u00c4\u00ea\u0097\u00a8\u0006\"\u000549362\u0012\u0011\b^\u0012\u0006\u0010\u00f3\u00ea\u0097\u00a8\u0006\"\u000549363\u0012\u0011\b_\u0012\u0006\u0010\u00a0\u00eb\u0097\u00a8\u0006\"\u000549364\u0012\u0011\b`\u0012\u0006\u0010\u00c9\u00eb\u0097\u00a8\u0006\"\u000549365\u0012\u0011\ba\u0012\u0006\u0010\u008d\u00ec\u0097\u00a8\u0006\"\u000538560\u0012\u0011\bb\u0012\u0006\u0010\u00b3\u00ec\u0097\u00a8\u0006\"\u000542857\u0012\u0011\bc\u0012\u0006\u0010\u00d2\u00ec\u0097\u00a8\u0006\"\u000538562\u0012\u0011\bd\u0012\u0006\u0010\u00f3\u00ec\u0097\u00a8\u0006\"\u000538563\u0012\u0011\be\u0012\u0006\u0010\u009a\u00ed\u0097\u00a8\u0006\"\u000542854\u0012\u0011\bf\u0012\u0006\u0010\u00f9\u00ed\u0097\u00a8\u0006\"\u000538565\u0012\u0011\bg\u0012\u0006\u0010\u00ab\u00ee\u0097\u00a8\u0006\"\u000540932\u0012\u0011\bh\u0012\u0006\u0010\u00f0\u00ee\u0097\u00a8\u0006\"\u000538567\u0012\u0011\bi\u0012\u0006\u0010\u009d\u00ef\u0097\u00a8\u0006\"\u000538568\u0012\u0011\bj\u0012\u0006\u0010\u00b9\u00ef\u0097\u00a8\u0006\"\u000538569\u0012\u0011\bk\u0012\u0006\u0010\u00e1\u00ef\u0097\u00a8\u0006\"\u000538570\u0012\u0011\bl\u0012\u0006\u0010\u0097\u00f0\u0097\u00a8\u0006\"\u000538571\u0012\u0011\bm\u0012\u0006\u0010\u00ca\u00f0\u0097\u00a8\u0006\"\u000538572\u0012\u0011\bn\u0012\u0006\u0010\u00ec\u00f1\u0097\u00a8\u0006\"\u000538393\u0012\u0011\bo\u0012\u0006\u0010\u009e\u00f2\u0097\u00a8\u0006\"\u000538394\u0012\u0011\bp\u0012\u0006\u0010\u00c9\u00f2\u0097\u00a8\u0006\"\u000538395\u0012\u0011\bq\u0012\u0006\u0010\u00eb\u00f2\u0097\u00a8\u0006\"\u000538396\u0012\u0011\br\u0012\u0006\u0010\u00a5\u00f3\u0097\u00a8\u0006\"\u000538397\u0012\u0011\bs\u0012\u0006\u0010\u00bc\u00f3\u0097\u00a8\u0006\"\u000538398\u0012\u0011\bt\u0012\u0006\u0010\u00d6\u00f3\u0097\u00a8\u0006\"\u000538399\u0012\u0011\bu\u0012\u0006\u0010\u0094\u00f4\u0097\u00a8\u0006\"\u000538400\u0012\u0011\bv\u0012\u0006\u0010\u00c3\u00f4\u0097\u00a8\u0006\"\u000538401\u0012\u0011\bw\u0012\u0006\u0010\u00f0\u00f4\u0097\u00a8\u0006\"\u000538402\u0012\u0011\bx\u0012\u0006\u0010\u00bf\u00f5\u0097\u00a8\u0006\"\u000538433\u001a\b\u001a\u0006JBXY30 \u0096\u00e8\u0097\u00a8\u0006\"`\n/\n\u001020909-701ff27f-2\u0012\b14:13:00\u001a\b20230916 \u0000*\u00035950\u0000\u0012\u001d\r;\u00ea\u0012\u00c2\u0015\u001b8\u0092\u00c2\u001d\u0000\u0000\u0090A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u001c\u00c7\u0089A(\u0096\u00e8\u0097\u00a8\u0006B\b\u001a\u0006JBXY30" + }, + { + "type": "con_recorrido", + "entity": "\n$565709a4-bea3-4f0a-a8dc-83d9e510540f\u001a\u00e0\b\n/\n\u001020997-701ff27f-2\u0012\b14:48:00\u001a\b20230916 \u0000*\u00035950\u0001\u0012\u0011\bB\u0012\u0006\u0010\u00aa\u00e9\u0097\u00a8\u0006\"\u000535697\u0012\u0011\bC\u0012\u0006\u0010\u00a6\u00ea\u0097\u00a8\u0006\"\u000539778\u0012\u0011\bD\u0012\u0006\u0010\u0090\u00eb\u0097\u00a8\u0006\"\u000535797\u0012\u0011\bE\u0012\u0006\u0010\u00c0\u00eb\u0097\u00a8\u0006\"\u000535798\u0012\u0011\bF\u0012\u0006\u0010\u00e0\u00eb\u0097\u00a8\u0006\"\u000535799\u0012\u0011\bG\u0012\u0006\u0010\u00a6\u00ec\u0097\u00a8\u0006\"\u000535800\u0012\u0011\bH\u0012\u0006\u0010\u00d6\u00ec\u0097\u00a8\u0006\"\u000535801\u0012\u0011\bI\u0012\u0006\u0010\u00f0\u00ec\u0097\u00a8\u0006\"\u000535802\u0012\u0011\bJ\u0012\u0006\u0010\u009f\u00ed\u0097\u00a8\u0006\"\u000535803\u0012\u0011\bK\u0012\u0006\u0010\u00d5\u00ed\u0097\u00a8\u0006\"\u000538507\u0012\u0011\bL\u0012\u0006\u0010\u0086\u00ee\u0097\u00a8\u0006\"\u000534473\u0012\u0011\bM\u0012\u0006\u0010\u00b1\u00ee\u0097\u00a8\u0006\"\u000538500\u0012\u0011\bN\u0012\u0006\u0010\u00de\u00ee\u0097\u00a8\u0006\"\u000535808\u0012\u0011\bO\u0012\u0006\u0010\u0096\u00ef\u0097\u00a8\u0006\"\u000535710\u0012\u0011\bP\u0012\u0006\u0010\u00c2\u00ef\u0097\u00a8\u0006\"\u000550036\u0012\u0011\bQ\u0012\u0006\u0010\u00a0\u00f1\u0097\u00a8\u0006\"\u000550037\u0012\u0011\bR\u0012\u0006\u0010\u00ad\u00f2\u0097\u00a8\u0006\"\u000550038\u0012\u0011\bS\u0012\u0006\u0010\u00f7\u00f2\u0097\u00a8\u0006\"\u000550039\u0012\u0011\bT\u0012\u0006\u0010\u00af\u00f3\u0097\u00a8\u0006\"\u000550040\u0012\u0011\bU\u0012\u0006\u0010\u0089\u00f4\u0097\u00a8\u0006\"\u000550041\u0012\u0012\bV\u0012\u0006\u0010\u0094\u00f5\u0097\u00a8\u0006\"\u0006Jun-15\u0012\u0012\bW\u0012\u0006\u0010\u00f5\u00f5\u0097\u00a8\u0006\"\u0006Jun-13\u0012\u0011\bX\u0012\u0006\u0010\u00c0\u00f7\u0097\u00a8\u0006\"\u00056-Oct\u0012\u0011\bY\u0012\u0006\u0010\u00f8\u00f7\u0097\u00a8\u0006\"\u00056-Aug\u0012\u0011\bZ\u0012\u0006\u0010\u00a8\u00f9\u0097\u00a8\u0006\"\u00056-Jun\u0012\u0011\b[\u0012\u0006\u0010\u00b2\u00fa\u0097\u00a8\u0006\"\u00056-Feb\u0012\u0011\b\\\u0012\u0006\u0010\u00ce\u00fb\u0097\u00a8\u0006\"\u00057-Jul\u0012\u0011\b]\u0012\u0006\u0010\u009d\u00fc\u0097\u00a8\u0006\"\u00057-May\u0012\u0013\b^\u0012\u0006\u0010\u00c8\u00fc\u0097\u00a8\u0006\"\u00071508142\u0012\u0011\b_\u0012\u0006\u0010\u00bf\u00fd\u0097\u00a8\u0006\"\u00057-Feb\u0012\u0011\b`\u0012\u0006\u0010\u0093\u00fe\u0097\u00a8\u0006\"\u00058-Jan\u0012\u0011\ba\u0012\u0006\u0010\u00bb\u00fe\u0097\u00a8\u0006\"\u00059-Jan\u0012\u0012\bb\u0012\u0006\u0010\u00ef\u00fe\u0097\u00a8\u0006\"\u000610-Apr\u0012\u0012\bc\u0012\u0006\u0010\u00b6\u00ff\u0097\u00a8\u0006\"\u000610-Jan\u0012\u0011\bd\u0012\u0006\u0010\u00f2\u00ff\u0097\u00a8\u0006\"\u000544863\u0012\u0012\be\u0012\u0006\u0010\u009d\u0080\u0098\u00a8\u0006\"\u000610-Mar\u0012\u0012\bf\u0012\u0006\u0010\u00e8\u0080\u0098\u00a8\u0006\"\u000611-Jan\u0012\u0011\bg\u0012\u0006\u0010\u00af\u0081\u0098\u00a8\u0006\"\u000544866\u0012\u0011\bh\u0012\u0006\u0010\u00e6\u0081\u0098\u00a8\u0006\"\u000544867\u0012\u0011\bi\u0012\u0006\u0010\u008c\u0082\u0098\u00a8\u0006\"\u000544868\u0012\u0011\bj\u0012\u0006\u0010\u00b2\u0082\u0098\u00a8\u0006\"\u000544869\u0012\u0011\bk\u0012\u0006\u0010\u00e1\u0082\u0098\u00a8\u0006\"\u000544870\u0012\u0011\bl\u0012\u0006\u0010\u0093\u0083\u0098\u00a8\u0006\"\u000544871\u0012\u0011\bm\u0012\u0006\u0010\u00cf\u0083\u0098\u00a8\u0006\"\u000544872\u0012\u0011\bn\u0012\u0006\u0010\u00b0\u0084\u0098\u00a8\u0006\"\u000550020\u0012\u0011\bo\u0012\u0006\u0010\u00b8\u0085\u0098\u00a8\u0006\"\u000514-11\u0012\u0011\bp\u0012\u0006\u0010\u00f7\u0085\u0098\u00a8\u0006\"\u000591162\u0012\u0011\bq\u0012\u0006\u0010\u00fd\u0086\u0098\u00a8\u0006\"\u000550023\u0012\u0012\br\u0012\u0006\u0010\u00aa\u0088\u0098\u00a8\u0006\"\u000614-Jul\u0012\u0012\bs\u0012\u0006\u0010\u00ed\u0088\u0098\u00a8\u0006\"\u000614-Apr\u0012\u0011\bt\u0012\u0006\u0010\u00c2\u0089\u0098\u00a8\u0006\"\u000537474\u0012\u0011\bu\u0012\u0006\u0010\u009d\u008a\u0098\u00a8\u0006\"\u000544879\u0012\u0011\bv\u0012\u0006\u0010\u00c7\u008a\u0098\u00a8\u0006\"\u000544880\u0012\u0011\bw\u0012\u0006\u0010\u0085\u008b\u0098\u00a8\u0006\"\u000544881\u0012\u0011\bx\u0012\u0006\u0010\u00b2\u008b\u0098\u00a8\u0006\"\u000550028\u001a\b\u001a\u0006JHJJ50 \u008c\u00e8\u0097\u00a8\u0006\"`\n/\n\u001020997-701ff27f-2\u0012\b14:48:00\u001a\b20230916 \u0000*\u00035950\u0001\u0012\u001d\r\u00cbC\u0013\u00c2\u0015m\"\u0092\u00c2\u001d\u0000\u0000(C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00ab\u00aa:A(\u008c\u00e8\u0097\u00a8\u0006B\b\u001a\u0006JHJJ50" + }, + { + "type": "con_recorrido", + "entity": "\n$0ed5d52b-9dd2-400f-a8bb-fbad9df7a000\u001a\u00ca\t\n/\n\u001020913-701ff27f-2\u0012\b15:01:00\u001a\b20230916 \u0000*\u00035950\u0000\u0012\u0011\b<\u0012\u0006\u0010\u009b\u00e8\u0097\u00a8\u0006\"\u000539641\u0012\u0011\b=\u0012\u0006\u0010\u00bc\u00e8\u0097\u00a8\u0006\"\u000539642\u0012\u0011\b>\u0012\u0006\u0010\u00b9\u00ea\u0097\u00a8\u0006\"\u000549324\u0012\u0011\b?\u0012\u0006\u0010\u00ef\u00ea\u0097\u00a8\u0006\"\u000549325\u0012\u0011\b@\u0012\u0006\u0010\u009e\u00eb\u0097\u00a8\u0006\"\u000549326\u0012\u0011\bA\u0012\u0006\u0010\u00bf\u00eb\u0097\u00a8\u0006\"\u000539648\u0012\u0011\bB\u0012\u0006\u0010\u00e6\u00eb\u0097\u00a8\u0006\"\u000539649\u0012\u0011\bC\u0012\u0006\u0010\u0097\u00ec\u0097\u00a8\u0006\"\u000545112\u0012\u0011\bD\u0012\u0006\u0010\u00c2\u00ec\u0097\u00a8\u0006\"\u000545113\u0012\u0011\bE\u0012\u0006\u0010\u008b\u00ed\u0097\u00a8\u0006\"\u000537490\u0012\u0011\bF\u0012\u0006\u0010\u00c6\u00ed\u0097\u00a8\u0006\"\u000545115\u0012\u0011\bG\u0012\u0006\u0010\u00de\u00ed\u0097\u00a8\u0006\"\u000545116\u0012\u0011\bH\u0012\u0006\u0010\u00a3\u00ee\u0097\u00a8\u0006\"\u000545118\u0012\u0011\bI\u0012\u0006\u0010\u00ec\u00ee\u0097\u00a8\u0006\"\u000545119\u0012\u0011\bJ\u0012\u0006\u0010\u0097\u00ef\u0097\u00a8\u0006\"\u000545120\u0012\u0011\bK\u0012\u0006\u0010\u00cc\u00ef\u0097\u00a8\u0006\"\u000545121\u0012\u0011\bL\u0012\u0006\u0010\u00f5\u00ef\u0097\u00a8\u0006\"\u000538535\u0012\u0011\bM\u0012\u0006\u0010\u00bf\u00f0\u0097\u00a8\u0006\"\u000538536\u0012\u0013\bN\u0012\u0006\u0010\u00e2\u00f0\u0097\u00a8\u0006\"\u00074838437\u0012\u0011\bO\u0012\u0006\u0010\u0097\u00f1\u0097\u00a8\u0006\"\u000545085\u0012\u0011\bP\u0012\u0006\u0010\u00e4\u00f1\u0097\u00a8\u0006\"\u000545086\u0012\u0011\bQ\u0012\u0006\u0010\u00d3\u00f2\u0097\u00a8\u0006\"\u000538540\u0012\u0011\bR\u0012\u0006\u0010\u00a0\u00f3\u0097\u00a8\u0006\"\u000538544\u0012\u0011\bS\u0012\u0006\u0010\u00e4\u00f3\u0097\u00a8\u0006\"\u000538545\u0012\u0011\bT\u0012\u0006\u0010\u00bc\u00f4\u0097\u00a8\u0006\"\u000538546\u0012\u0011\bU\u0012\u0006\u0010\u00b9\u00f5\u0097\u00a8\u0006\"\u000538548\u0012\u0011\bV\u0012\u0006\u0010\u00fc\u00f5\u0097\u00a8\u0006\"\u000538549\u0012\u0011\bW\u0012\u0006\u0010\u00b5\u00f6\u0097\u00a8\u0006\"\u000538550\u0012\u0011\bX\u0012\u0006\u0010\u0099\u00f7\u0097\u00a8\u0006\"\u000538551\u0012\u0011\bY\u0012\u0006\u0010\u00f2\u00f7\u0097\u00a8\u0006\"\u000538552\u0012\u0011\bZ\u0012\u0006\u0010\u00c8\u00f8\u0097\u00a8\u0006\"\u000549359\u0012\u0011\b[\u0012\u0006\u0010\u0080\u00f9\u0097\u00a8\u0006\"\u000549360\u0012\u0011\b\\\u0012\u0006\u0010\u00fb\u00f9\u0097\u00a8\u0006\"\u000549361\u0012\u0011\b]\u0012\u0006\u0010\u0099\u00fa\u0097\u00a8\u0006\"\u000549362\u0012\u0011\b^\u0012\u0006\u0010\u00ce\u00fa\u0097\u00a8\u0006\"\u000549363\u0012\u0011\b_\u0012\u0006\u0010\u0081\u00fb\u0097\u00a8\u0006\"\u000549364\u0012\u0011\b`\u0012\u0006\u0010\u00b0\u00fb\u0097\u00a8\u0006\"\u000549365\u0012\u0011\ba\u0012\u0006\u0010\u0080\u00fc\u0097\u00a8\u0006\"\u000538560\u0012\u0011\bb\u0012\u0006\u0010\u00ad\u00fc\u0097\u00a8\u0006\"\u000542857\u0012\u0011\bc\u0012\u0006\u0010\u00d2\u00fc\u0097\u00a8\u0006\"\u000538562\u0012\u0011\bd\u0012\u0006\u0010\u00fc\u00fc\u0097\u00a8\u0006\"\u000538563\u0012\u0011\be\u0012\u0006\u0010\u00ac\u00fd\u0097\u00a8\u0006\"\u000542854\u0012\u0011\bf\u0012\u0006\u0010\u00a6\u00fe\u0097\u00a8\u0006\"\u000538565\u0012\u0011\bg\u0012\u0006\u0010\u00e7\u00fe\u0097\u00a8\u0006\"\u000540932\u0012\u0011\bh\u0012\u0006\u0010\u00c4\u00ff\u0097\u00a8\u0006\"\u000538567\u0012\u0011\bi\u0012\u0006\u0010\u0081\u0080\u0098\u00a8\u0006\"\u000538568\u0012\u0011\bj\u0012\u0006\u0010\u00a8\u0080\u0098\u00a8\u0006\"\u000538569\u0012\u0011\bk\u0012\u0006\u0010\u00e1\u0080\u0098\u00a8\u0006\"\u000538570\u0012\u0011\bl\u0012\u0006\u0010\u00ae\u0081\u0098\u00a8\u0006\"\u000538571\u0012\u0011\bm\u0012\u0006\u0010\u00f8\u0081\u0098\u00a8\u0006\"\u000538572\u0012\u0011\bn\u0012\u0006\u0010\u00ef\u0083\u0098\u00a8\u0006\"\u000538393\u0012\u0011\bo\u0012\u0006\u0010\u00bf\u0084\u0098\u00a8\u0006\"\u000538394\u0012\u0011\bp\u0012\u0006\u0010\u0084\u0085\u0098\u00a8\u0006\"\u000538395\u0012\u0011\bq\u0012\u0006\u0010\u00bb\u0085\u0098\u00a8\u0006\"\u000538396\u0012\u0011\br\u0012\u0006\u0010\u009c\u0086\u0098\u00a8\u0006\"\u000538397\u0012\u0011\bs\u0012\u0006\u0010\u00c3\u0086\u0098\u00a8\u0006\"\u000538398\u0012\u0011\bt\u0012\u0006\u0010\u00ee\u0086\u0098\u00a8\u0006\"\u000538399\u0012\u0011\bu\u0012\u0006\u0010\u00da\u0087\u0098\u00a8\u0006\"\u000538400\u0012\u0011\bv\u0012\u0006\u0010\u00ad\u0088\u0098\u00a8\u0006\"\u000538401\u0012\u0011\bw\u0012\u0006\u0010\u00fd\u0088\u0098\u00a8\u0006\"\u000538402\u0012\u0011\bx\u0012\u0006\u0010\u008e\u008a\u0098\u00a8\u0006\"\u000538433\u001a\b\u001a\u0006JRZZ78 \u0098\u00e8\u0097\u00a8\u0006\"`\n/\n\u001020913-701ff27f-2\u0012\b15:01:00\u001a\b20230916 \u0000*\u00035950\u0000\u0012\u001d\r\u0016=\u0013\u00c2\u0015\u00be&\u0092\u00c2\u001d\u0000\u0000\u0097C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UU\u00d5@(\u0098\u00e8\u0097\u00a8\u0006B\b\u001a\u0006JRZZ78" + }, + { + "type": "con_recorrido", + "entity": "\n$bac3c3cb-8dbb-4f89-aefb-4b1bf910378e\u001a\u0087\u0010\n/\n\u001020916-701ff27f-2\u0012\b15:37:00\u001a\b20230916 \u0000*\u00035950\u0000\u0012\u0011\b\u0002\u0012\u0006\u0010\u00e2\u00e8\u0097\u00a8\u0006\"\u000544967\u0012\u0011\b\u0003\u0012\u0006\u0010\u0096\u00e9\u0097\u00a8\u0006\"\u000544968\u0012\u0012\b\u0004\u0012\u0006\u0010\u00cf\u00e9\u0097\u00a8\u0006\"\u000614-May\u0012\u0012\b\u0005\u0012\u0006\u0010\u00ef\u00e9\u0097\u00a8\u0006\"\u000614-Jun\u0012\u0012\b\u0006\u0012\u0006\u0010\u00aa\u00ea\u0097\u00a8\u0006\"\u000614-Aug\u0012\u0011\b\u0007\u0012\u0006\u0010\u00d9\u00ea\u0097\u00a8\u0006\"\u000550024\u0012\u0011\b\b\u0012\u0006\u0010\u00d8\u00eb\u0097\u00a8\u0006\"\u000514-12\u0012\u0011\b\t\u0012\u0006\u0010\u00a3\u00ec\u0097\u00a8\u0006\"\u000537471\u0012\u0011\b\n\u0012\u0006\u0010\u00c3\u00ec\u0097\u00a8\u0006\"\u000537560\u0012\u0011\b\u000b\u0012\u0006\u0010\u00df\u00ec\u0097\u00a8\u0006\"\u000537564\u0012\u0011\b\f\u0012\u0006\u0010\u0084\u00ed\u0097\u00a8\u0006\"\u000537517\u0012\u0011\b\r\u0012\u0006\u0010\u00a3\u00ed\u0097\u00a8\u0006\"\u000537475\u0012\u0011\b\u000e\u0012\u0006\u0010\u00c5\u00ed\u0097\u00a8\u0006\"\u000537508\u0012\u0011\b\u000f\u0012\u0006\u0010\u00e4\u00ed\u0097\u00a8\u0006\"\u000537476\u0012\u0011\b\u0010\u0012\u0006\u0010\u00fd\u00ed\u0097\u00a8\u0006\"\u000537526\u0012\u0011\b\u0011\u0012\u0006\u0010\u00c0\u00ee\u0097\u00a8\u0006\"\u000537567\u0012\u0012\b\u0012\u0012\u0006\u0010\u00d6\u00ee\u0097\u00a8\u0006\"\u000613-Jan\u0012\u0010\b\u0013\u0012\u0006\u0010\u00ce\u00ef\u0097\u00a8\u0006\"\u000412-3\u0012\u0012\b\u0014\u0012\u0006\u0010\u0099\u00f0\u0097\u00a8\u0006\"\u000612-Jan\u0012\u0012\b\u0015\u0012\u0006\u0010\u00c3\u00f0\u0097\u00a8\u0006\"\u000612-Feb\u0012\u0011\b\u0016\u0012\u0006\u0010\u00f6\u00f0\u0097\u00a8\u0006\"\u00057-Jan\u0012\u0011\b\u0017\u0012\u0006\u0010\u00ab\u00f1\u0097\u00a8\u0006\"\u00057-Mar\u0012\u0011\b\u0018\u0012\u0006\u0010\u00b6\u00f2\u0097\u00a8\u0006\"\u00057-Jun\u0012\u0011\b\u0019\u0012\u0006\u0010\u00f1\u00f2\u0097\u00a8\u0006\"\u00057-Aug\u0012\u0011\b\u001a\u0012\u0006\u0010\u0080\u00f4\u0097\u00a8\u0006\"\u00056-Mar\u0012\u0011\b\u001b\u0012\u0006\u0010\u00e3\u00f4\u0097\u00a8\u0006\"\u00056-May\u0012\u0011\b\u001c\u0012\u0006\u0010\u00fd\u00f5\u0097\u00a8\u0006\"\u00056-Jul\u0012\u0011\b\u001d\u0012\u0006\u0010\u00c5\u00f6\u0097\u00a8\u0006\"\u00056-Sep\u0012\u0011\b\u001e\u0012\u0006\u0010\u00a5\u00f7\u0097\u00a8\u0006\"\u00056-Nov\u0012\u0011\b\u001f\u0012\u0006\u0010\u0091\u00f8\u0097\u00a8\u0006\"\u00056-Dec\u0012\u0012\b \u0012\u0006\u0010\u00f2\u00f8\u0097\u00a8\u0006\"\u0006Jun-14\u0012\u0012\b!\u0012\u0006\u0010\u009a\u00fa\u0097\u00a8\u0006\"\u0006Jun-17\u0012\u0012\b\"\u0012\u0006\u0010\u00f4\u00fa\u0097\u00a8\u0006\"\u0006Jun-19\u0012\u0012\b#\u0012\u0006\u0010\u00b9\u00fb\u0097\u00a8\u0006\"\u0006Jun-20\u0012\u0012\b$\u0012\u0006\u0010\u0081\u00fc\u0097\u00a8\u0006\"\u0006Jun-22\u0012\u0012\b%\u0012\u0006\u0010\u00ce\u00fc\u0097\u00a8\u0006\"\u0006Jun-24\u0012\u0012\b&\u0012\u0006\u0010\u00bb\u00fd\u0097\u00a8\u0006\"\u0006Jun-25\u0012\u0011\b'\u0012\u0006\u0010\u00ad\u0080\u0098\u00a8\u0006\"\u000590003\u0012\u0011\b(\u0012\u0006\u0010\u00ec\u0080\u0098\u00a8\u0006\"\u000590007\u0012\u0011\b)\u0012\u0006\u0010\u00b2\u0081\u0098\u00a8\u0006\"\u000590008\u0012\u0011\b*\u0012\u0006\u0010\u00d1\u0082\u0098\u00a8\u0006\"\u000539599\u0012\u0011\b+\u0012\u0006\u0010\u00f2\u0082\u0098\u00a8\u0006\"\u000539600\u0012\u0011\b,\u0012\u0006\u0010\u00d5\u0083\u0098\u00a8\u0006\"\u000537496\u0012\u0011\b-\u0012\u0006\u0010\u00a0\u0084\u0098\u00a8\u0006\"\u000545064\u0012\u0011\b.\u0012\u0006\u0010\u0094\u0085\u0098\u00a8\u0006\"\u000537506\u0012\u0011\b/\u0012\u0006\u0010\u008d\u0086\u0098\u00a8\u0006\"\u000545069\u0012\u0011\b0\u0012\u0006\u0010\u00ca\u0087\u0098\u00a8\u0006\"\u000537523\u0012\u0011\b1\u0012\u0006\u0010\u0090\u0088\u0098\u00a8\u0006\"\u000537477\u0012\u0011\b2\u0012\u0006\u0010\u00ad\u0089\u0098\u00a8\u0006\"\u000549310\u0012\u0011\b3\u0012\u0006\u0010\u00e7\u0089\u0098\u00a8\u0006\"\u000549311\u0012\u0011\b4\u0012\u0006\u0010\u00d1\u008a\u0098\u00a8\u0006\"\u000539634\u0012\u0011\b5\u0012\u0006\u0010\u0082\u008b\u0098\u00a8\u0006\"\u000539635\u0012\u0011\b6\u0012\u0006\u0010\u00dd\u008b\u0098\u00a8\u0006\"\u000539636\u0012\u0011\b7\u0012\u0006\u0010\u00c6\u008c\u0098\u00a8\u0006\"\u000549503\u0012\u0011\b8\u0012\u0006\u0010\u00d7\u008e\u0098\u00a8\u0006\"\u000539637\u0012\u0011\b9\u0012\u0006\u0010\u00c6\u008f\u0098\u00a8\u0006\"\u000549317\u0012\u0011\b:\u0012\u0006\u0010\u008f\u0090\u0098\u00a8\u0006\"\u000549318\u0012\u0011\b;\u0012\u0006\u0010\u00ab\u0091\u0098\u00a8\u0006\"\u000549319\u0012\u0011\b<\u0012\u0006\u0010\u00c7\u0092\u0098\u00a8\u0006\"\u000539641\u0012\u0011\b=\u0012\u0006\u0010\u0095\u0093\u0098\u00a8\u0006\"\u000539642\u0012\u0011\b>\u0012\u0006\u0010\u00b3\u0098\u0098\u00a8\u0006\"\u000549324\u0012\u0011\b?\u0012\u0006\u0010\u00d4\u0099\u0098\u00a8\u0006\"\u000549325\u0012\u0011\b@\u0012\u0006\u0010\u00e7\u009a\u0098\u00a8\u0006\"\u000549326\u0012\u0011\bA\u0012\u0006\u0010\u00d5\u009b\u0098\u00a8\u0006\"\u000539648\u0012\u0011\bB\u0012\u0006\u0010\u00d6\u009c\u0098\u00a8\u0006\"\u000539649\u0012\u0011\bC\u0012\u0006\u0010\u00ff\u009d\u0098\u00a8\u0006\"\u000545112\u0012\u0011\bD\u0012\u0006\u0010\u009d\u009f\u0098\u00a8\u0006\"\u000545113\u0012\u0011\bE\u0012\u0006\u0010\u00b3\u00a1\u0098\u00a8\u0006\"\u000537490\u0012\u0011\bF\u0012\u0006\u0010\u00a3\u00a3\u0098\u00a8\u0006\"\u000545115\u0012\u0011\bG\u0012\u0006\u0010\u0088\u00a4\u0098\u00a8\u0006\"\u000545116\u0012\u0011\bH\u0012\u0006\u0010\u00b9\u00a6\u0098\u00a8\u0006\"\u000545118\u0012\u0011\bI\u0012\u0006\u0010\u0091\u00a9\u0098\u00a8\u0006\"\u000545119\u0012\u0011\bJ\u0012\u0006\u0010\u00eb\u00aa\u0098\u00a8\u0006\"\u000545120\u0012\u0011\bK\u0012\u0006\u0010\u0084\u00ad\u0098\u00a8\u0006\"\u000545121\u0012\u0011\bL\u0012\u0006\u0010\u00e3\u00ae\u0098\u00a8\u0006\"\u000538535\u0012\u0011\bM\u0012\u0006\u0010\u0097\u00b2\u0098\u00a8\u0006\"\u000538536\u0012\u0013\bN\u0012\u0006\u0010\u00f0\u00b3\u0098\u00a8\u0006\"\u00074838437\u0012\u0011\bO\u0012\u0006\u0010\u00cb\u00b6\u0098\u00a8\u0006\"\u000545085\u0012\u0011\bP\u0012\u0006\u0010\u00e9\u00ba\u0098\u00a8\u0006\"\u000545086\u0012\u0011\bQ\u0012\u0006\u0010\u00d5\u00c1\u0098\u00a8\u0006\"\u000538540\u0012\u0011\bR\u0012\u0006\u0010\u00fa\u00c6\u0098\u00a8\u0006\"\u000538544\u0012\u0011\bS\u0012\u0006\u0010\u008b\u00cc\u0098\u00a8\u0006\"\u000538545\u0012\u0011\bT\u0012\u0006\u0010\u00be\u00d3\u0098\u00a8\u0006\"\u000538546\u0012\u0011\bU\u0012\u0006\u0010\u00c8\u00df\u0098\u00a8\u0006\"\u000538548\u0012\u0011\bV\u0012\u0006\u0010\u008f\u00e7\u0098\u00a8\u0006\"\u000538549\u0012\u0011\bW\u0012\u0006\u0010\u0097\u00ee\u0098\u00a8\u0006\"\u000538550\u0012\u0011\bX\u0012\u0006\u0010\u009a\u00fc\u0098\u00a8\u0006\"\u000538551\u0012\u0011\bY\u0012\u0006\u0010\u008e\u008b\u0099\u00a8\u0006\"\u000538552\u0012\u0011\bZ\u0012\u0006\u0010\u0082\u009c\u0099\u00a8\u0006\"\u000549359\u0012\u0011\b[\u0012\u0006\u0010\u00e6\u00a8\u0099\u00a8\u0006\"\u000549360\u0012\u0011\b\\\u0012\u0006\u0010\u008c\u00cb\u0099\u00a8\u0006\"\u000549361\u0012\u0011\b]\u0012\u0006\u0010\u00ae\u00d5\u0099\u00a8\u0006\"\u000549362\u0012\u0011\b^\u0012\u0006\u0010\u00a6\u00e9\u0099\u00a8\u0006\"\u000549363\u0012\u0011\b_\u0012\u0006\u0010\u00ac\u00ff\u0099\u00a8\u0006\"\u000549364\u0012\u0011\b`\u0012\u0006\u0010\u0085\u0097\u009a\u00a8\u0006\"\u000549365\u0012\u0011\ba\u0012\u0006\u0010\u0092\u00c9\u009a\u00a8\u0006\"\u000538560\u0012\u0011\bb\u0012\u0006\u0010\u00f4\u00ec\u009a\u00a8\u0006\"\u000542857\u0012\u0011\bc\u0012\u0006\u0010\u00bd\u008f\u009b\u00a8\u0006\"\u000538562\u0012\u0011\bd\u0012\u0006\u0010\u00c0\u00bd\u009b\u00a8\u0006\"\u000538563\u0012\u0011\be\u0012\u0006\u0010\u00d0\u00ff\u009b\u00a8\u0006\"\u000542854\u0012\u0011\bf\u0012\u0006\u0010\u00b6\u009f\u009e\u00a8\u0006\"\u000538565\u0012\u0011\bg\u0012\u0006\u0010\u00d0\u00da\u00a0\u00a8\u0006\"\u000540932\u0012\u0011\bh\u0012\u0006\u0010\u00a4\u00f8\u00aa\u00a8\u0006\"\u000538567\u0012\u0011\bi\u0012\u0006\u0010\u0088\u00ff\u00e2\u00a8\u0006\"\u000538568\u001a\b\u001a\u0006WW3308 \u00a8\u00e8\u0097\u00a8\u0006\"`\n/\n\u001020916-701ff27f-2\u0012\b15:37:00\u001a\b20230916 \u0000*\u00035950\u0000\u0012\u001d\r#\u00da\u0012\u00c2\u0015\u009c\u00f3\u0091\u00c2\u001d\u0000\u00008C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a8\u00e8\u0097\u00a8\u0006B\b\u001a\u0006WW3308" + }, + { + "type": "con_recorrido", + "entity": "\n$362d640f-2223-49c7-89f5-1cc8f1a3e215\u001a\u0083\u0010\n/\n\u001020999-701ff27f-2\u0012\b15:18:00\u001a\b20230916 \u0000*\u00035950\u0001\u0012\u0011\b\u0011\u0012\u0006\u0010\u00de\u00e8\u0097\u00a8\u0006\"\u000540932\u0012\u0011\b\u0012\u0012\u0006\u0010\u008f\u00e9\u0097\u00a8\u0006\"\u000542853\u0012\u0011\b\u0013\u0012\u0006\u0010\u00ec\u00e9\u0097\u00a8\u0006\"\u000542854\u0012\u0011\b\u0014\u0012\u0006\u0010\u00a6\u00ea\u0097\u00a8\u0006\"\u000542855\u0012\u0011\b\u0015\u0012\u0006\u0010\u00cc\u00ea\u0097\u00a8\u0006\"\u000541975\u0012\u0011\b\u0016\u0012\u0006\u0010\u00e3\u00ea\u0097\u00a8\u0006\"\u000542857\u0012\u0011\b\u0017\u0012\u0006\u0010\u00ab\u00eb\u0097\u00a8\u0006\"\u000549108\u0012\u0011\b\u0018\u0012\u0006\u0010\u00d8\u00eb\u0097\u00a8\u0006\"\u000549109\u0012\u0011\b\u0019\u0012\u0006\u0010\u00fb\u00eb\u0097\u00a8\u0006\"\u000540363\u0012\u0011\b\u001a\u0012\u0006\u0010\u009f\u00ed\u0097\u00a8\u0006\"\u000538768\u0012\u0011\b\u001b\u0012\u0006\u0010\u00cb\u00ed\u0097\u00a8\u0006\"\u000538769\u0012\u0011\b\u001c\u0012\u0006\u0010\u00f3\u00ed\u0097\u00a8\u0006\"\u000549357\u0012\u0011\b\u001d\u0012\u0006\u0010\u009a\u00ee\u0097\u00a8\u0006\"\u000538771\u0012\u0011\b\u001e\u0012\u0006\u0010\u00c5\u00ee\u0097\u00a8\u0006\"\u000538668\u0012\u0011\b\u001f\u0012\u0006\u0010\u00a4\u00ef\u0097\u00a8\u0006\"\u000538661\u0012\u0011\b \u0012\u0006\u0010\u00f5\u00ef\u0097\u00a8\u0006\"\u000538657\u0012\u0011\b!\u0012\u0006\u0010\u00b0\u00f0\u0097\u00a8\u0006\"\u000538743\u0012\u0011\b\"\u0012\u0006\u0010\u00f0\u00f0\u0097\u00a8\u0006\"\u000538652\u0012\u0011\b#\u0012\u0006\u0010\u00a6\u00f1\u0097\u00a8\u0006\"\u000538721\u0012\u0011\b$\u0012\u0006\u0010\u00e0\u00f1\u0097\u00a8\u0006\"\u000538659\u0012\u0011\b%\u0012\u0006\u0010\u00b8\u00f2\u0097\u00a8\u0006\"\u000538674\u0012\u0011\b&\u0012\u0006\u0010\u00fc\u00f2\u0097\u00a8\u0006\"\u000538649\u0012\u0011\b'\u0012\u0006\u0010\u00be\u00f3\u0097\u00a8\u0006\"\u000538718\u0012\u0011\b(\u0012\u0006\u0010\u0081\u00f4\u0097\u00a8\u0006\"\u000538735\u0012\u0011\b)\u0012\u0006\u0010\u00be\u00f4\u0097\u00a8\u0006\"\u000542270\u0012\u0011\b*\u0012\u0006\u0010\u00ed\u00f4\u0097\u00a8\u0006\"\u000542271\u0012\u0011\b+\u0012\u0006\u0010\u00b3\u00f6\u0097\u00a8\u0006\"\u000538688\u0012\u0011\b,\u0012\u0006\u0010\u00ed\u00f6\u0097\u00a8\u0006\"\u000538673\u0012\u0011\b-\u0012\u0006\u0010\u00bd\u00f7\u0097\u00a8\u0006\"\u000539785\u0012\u0011\b.\u0012\u0006\u0010\u00e6\u00f7\u0097\u00a8\u0006\"\u000538664\u0012\u0011\b/\u0012\u0006\u0010\u009f\u00f8\u0097\u00a8\u0006\"\u000538702\u0012\u0011\b0\u0012\u0006\u0010\u00ce\u00f8\u0097\u00a8\u0006\"\u000539787\u0012\u0011\b1\u0012\u0006\u0010\u00fb\u00f8\u0097\u00a8\u0006\"\u000538501\u0012\u0011\b2\u0012\u0006\u0010\u00c4\u00f9\u0097\u00a8\u0006\"\u000538692\u0012\u0011\b3\u0012\u0006\u0010\u0091\u00fa\u0097\u00a8\u0006\"\u000538714\u0012\u0011\b4\u0012\u0006\u0010\u00c6\u00fa\u0097\u00a8\u0006\"\u000539791\u0012\u0011\b5\u0012\u0006\u0010\u00e6\u00fa\u0097\u00a8\u0006\"\u000538506\u0012\u0011\b6\u0012\u0006\u0010\u009e\u00fb\u0097\u00a8\u0006\"\u000538635\u0012\u0011\b7\u0012\u0006\u0010\u00c5\u00fb\u0097\u00a8\u0006\"\u000538509\u0012\u0011\b8\u0012\u0006\u0010\u00f8\u00fb\u0097\u00a8\u0006\"\u000538642\u0012\u0011\b9\u0012\u0006\u0010\u00ac\u00fc\u0097\u00a8\u0006\"\u000539795\u0012\u0011\b:\u0012\u0006\u0010\u00d3\u00fc\u0097\u00a8\u0006\"\u000538502\u0012\u0011\b;\u0012\u0006\u0010\u009b\u00fd\u0097\u00a8\u0006\"\u000538503\u0012\u0011\b<\u0012\u0006\u0010\u00e0\u00fe\u0097\u00a8\u0006\"\u000535691\u0012\u0011\b=\u0012\u0006\u0010\u0095\u00ff\u0097\u00a8\u0006\"\u000535692\u0012\u0011\b>\u0012\u0006\u0010\u00e1\u00ff\u0097\u00a8\u0006\"\u000535693\u0012\u0011\b?\u0012\u0006\u0010\u00a9\u0080\u0098\u00a8\u0006\"\u000535694\u0012\u0011\b@\u0012\u0006\u0010\u00e0\u0080\u0098\u00a8\u0006\"\u000535695\u0012\u0011\bA\u0012\u0006\u0010\u00a1\u0081\u0098\u00a8\u0006\"\u000535696\u0012\u0011\bB\u0012\u0006\u0010\u0096\u0083\u0098\u00a8\u0006\"\u000535697\u0012\u0011\bC\u0012\u0006\u0010\u00cc\u0084\u0098\u00a8\u0006\"\u000539778\u0012\u0011\bD\u0012\u0006\u0010\u00f3\u0085\u0098\u00a8\u0006\"\u000535797\u0012\u0011\bE\u0012\u0006\u0010\u00c1\u0086\u0098\u00a8\u0006\"\u000535798\u0012\u0011\bF\u0012\u0006\u0010\u00f7\u0086\u0098\u00a8\u0006\"\u000535799\u0012\u0011\bG\u0012\u0006\u0010\u00ee\u0087\u0098\u00a8\u0006\"\u000535800\u0012\u0011\bH\u0012\u0006\u0010\u00c5\u0088\u0098\u00a8\u0006\"\u000535801\u0012\u0011\bI\u0012\u0006\u0010\u00f3\u0088\u0098\u00a8\u0006\"\u000535802\u0012\u0011\bJ\u0012\u0006\u0010\u00c9\u0089\u0098\u00a8\u0006\"\u000535803\u0012\u0011\bK\u0012\u0006\u0010\u00b1\u008a\u0098\u00a8\u0006\"\u000538507\u0012\u0011\bL\u0012\u0006\u0010\u0093\u008b\u0098\u00a8\u0006\"\u000534473\u0012\u0011\bM\u0012\u0006\u0010\u00e9\u008b\u0098\u00a8\u0006\"\u000538500\u0012\u0011\bN\u0012\u0006\u0010\u00c6\u008c\u0098\u00a8\u0006\"\u000535808\u0012\u0011\bO\u0012\u0006\u0010\u00be\u008d\u0098\u00a8\u0006\"\u000535710\u0012\u0011\bP\u0012\u0006\u0010\u009e\u008e\u0098\u00a8\u0006\"\u000550036\u0012\u0011\bQ\u0012\u0006\u0010\u00b1\u0092\u0098\u00a8\u0006\"\u000550037\u0012\u0011\bR\u0012\u0006\u0010\u00a7\u0095\u0098\u00a8\u0006\"\u000550038\u0012\u0011\bS\u0012\u0006\u0010\u00fc\u0096\u0098\u00a8\u0006\"\u000550039\u0012\u0011\bT\u0012\u0006\u0010\u00a0\u0098\u0098\u00a8\u0006\"\u000550040\u0012\u0011\bU\u0012\u0006\u0010\u00b7\u009a\u0098\u00a8\u0006\"\u000550041\u0012\u0012\bV\u0012\u0006\u0010\u0088\u009e\u0098\u00a8\u0006\"\u0006Jun-15\u0012\u0012\bW\u0012\u0006\u0010\u00e7\u00a0\u0098\u00a8\u0006\"\u0006Jun-13\u0012\u0011\bX\u0012\u0006\u0010\u008f\u00a7\u0098\u00a8\u0006\"\u00056-Oct\u0012\u0011\bY\u0012\u0006\u0010\u0083\u00a9\u0098\u00a8\u0006\"\u00056-Aug\u0012\u0011\bZ\u0012\u0006\u0010\u00c3\u00af\u0098\u00a8\u0006\"\u00056-Jun\u0012\u0011\b[\u0012\u0006\u0010\u00a0\u00b5\u0098\u00a8\u0006\"\u00056-Feb\u0012\u0011\b\\\u0012\u0006\u0010\u00be\u00bc\u0098\u00a8\u0006\"\u00057-Jul\u0012\u0011\b]\u0012\u0006\u0010\u00c2\u00c0\u0098\u00a8\u0006\"\u00057-May\u0012\u0013\b^\u0012\u0006\u0010\u00e6\u00c2\u0098\u00a8\u0006\"\u00071508142\u0012\u0011\b_\u0012\u0006\u0010\u00ca\u00c9\u0098\u00a8\u0006\"\u00057-Feb\u0012\u0011\b`\u0012\u0006\u0010\u00e9\u00ce\u0098\u00a8\u0006\"\u00058-Jan\u0012\u0011\ba\u0012\u0006\u0010\u00b8\u00d1\u0098\u00a8\u0006\"\u00059-Jan\u0012\u0012\bb\u0012\u0006\u0010\u0080\u00d5\u0098\u00a8\u0006\"\u000610-Apr\u0012\u0012\bc\u0012\u0006\u0010\u0095\u00da\u0098\u00a8\u0006\"\u000610-Jan\u0012\u0011\bd\u0012\u0006\u0010\u00e9\u00de\u0098\u00a8\u0006\"\u000544863\u0012\u0012\be\u0012\u0006\u0010\u00a1\u00e2\u0098\u00a8\u0006\"\u000610-Mar\u0012\u0012\bf\u0012\u0006\u0010\u00df\u00e8\u0098\u00a8\u0006\"\u000611-Jan\u0012\u0011\bg\u0012\u0006\u0010\u00ad\u00ef\u0098\u00a8\u0006\"\u000544866\u0012\u0011\bh\u0012\u0006\u0010\u00e6\u00f4\u0098\u00a8\u0006\"\u000544867\u0012\u0011\bi\u0012\u0006\u0010\u00dc\u00f8\u0098\u00a8\u0006\"\u000544868\u0012\u0011\bj\u0012\u0006\u0010\u00f7\u00fc\u0098\u00a8\u0006\"\u000544869\u0012\u0011\bk\u0012\u0006\u0010\u00aa\u0082\u0099\u00a8\u0006\"\u000544870\u0012\u0011\bl\u0012\u0006\u0010\u00ab\u0088\u0099\u00a8\u0006\"\u000544871\u0012\u0011\bm\u0012\u0006\u0010\u0086\u0090\u0099\u00a8\u0006\"\u000544872\u0012\u0011\bn\u0012\u0006\u0010\u00f1\u009d\u0099\u00a8\u0006\"\u000550020\u0012\u0011\bo\u0012\u0006\u0010\u00c1\u00b4\u0099\u00a8\u0006\"\u000514-11\u0012\u0011\bp\u0012\u0006\u0010\u00ca\u00c0\u0099\u00a8\u0006\"\u000591162\u0012\u0011\bq\u0012\u0006\u0010\u00c8\u00de\u0099\u00a8\u0006\"\u000550023\u0012\u0012\br\u0012\u0006\u0010\u00e7\u0090\u009a\u00a8\u0006\"\u000614-Jul\u0012\u0012\bs\u0012\u0006\u0010\u0087\u00a9\u009a\u00a8\u0006\"\u000614-Apr\u0012\u0011\bt\u0012\u0006\u0010\u00ba\u00cd\u009a\u00a8\u0006\"\u000537474\u0012\u0011\bu\u0012\u0006\u0010\u00e5\u00fc\u009a\u00a8\u0006\"\u000544879\u0012\u0011\bv\u0012\u0006\u0010\u0091\u0097\u009b\u00a8\u0006\"\u000544880\u0012\u0011\bw\u0012\u0006\u0010\u00ef\u00c2\u009b\u00a8\u0006\"\u000544881\u0012\u0011\bx\u0012\u0006\u0010\u00e4\u00e8\u009b\u00a8\u0006\"\u000550028\u001a\b\u001a\u0006ZN7803 \u00b4\u00e8\u0097\u00a8\u0006\"`\n/\n\u001020999-701ff27f-2\u0012\b15:18:00\u001a\b20230916 \u0000*\u00035950\u0001\u0012\u001d\r3\u00e6\u0012\u00c2\u0015p<\u0092\u00c2\u001d\u0000\u0000\u00f4B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-r\u001cg@(\u00b4\u00e8\u0097\u00a8\u0006B\b\u001a\u0006ZN7803" + }, + { + "type": "con_recorrido", + "entity": "\n$ae3c02f6-8010-4ba7-ad73-cf8d258b6bcf\u001a\u0096\u0010\n/\n\u001021000-701ff27f-2\u0012\b15:33:00\u001a\b20230916 \u0000*\u00035950\u0001\u0012\u0011\b\u0010\u0012\u0006\u0010\u00b2\u00e8\u0097\u00a8\u0006\"\u000540947\u0012\u0011\b\u0011\u0012\u0006\u0010\u0088\u00e9\u0097\u00a8\u0006\"\u000540932\u0012\u0011\b\u0012\u0012\u0006\u0010\u00ba\u00e9\u0097\u00a8\u0006\"\u000542853\u0012\u0011\b\u0013\u0012\u0006\u0010\u0095\u00ea\u0097\u00a8\u0006\"\u000542854\u0012\u0011\b\u0014\u0012\u0006\u0010\u00cf\u00ea\u0097\u00a8\u0006\"\u000542855\u0012\u0011\b\u0015\u0012\u0006\u0010\u00f5\u00ea\u0097\u00a8\u0006\"\u000541975\u0012\u0011\b\u0016\u0012\u0006\u0010\u008b\u00eb\u0097\u00a8\u0006\"\u000542857\u0012\u0011\b\u0017\u0012\u0006\u0010\u00d3\u00eb\u0097\u00a8\u0006\"\u000549108\u0012\u0011\b\u0018\u0012\u0006\u0010\u0080\u00ec\u0097\u00a8\u0006\"\u000549109\u0012\u0011\b\u0019\u0012\u0006\u0010\u00a3\u00ec\u0097\u00a8\u0006\"\u000540363\u0012\u0011\b\u001a\u0012\u0006\u0010\u00c6\u00ed\u0097\u00a8\u0006\"\u000538768\u0012\u0011\b\u001b\u0012\u0006\u0010\u00f2\u00ed\u0097\u00a8\u0006\"\u000538769\u0012\u0011\b\u001c\u0012\u0006\u0010\u009a\u00ee\u0097\u00a8\u0006\"\u000549357\u0012\u0011\b\u001d\u0012\u0006\u0010\u00c1\u00ee\u0097\u00a8\u0006\"\u000538771\u0012\u0011\b\u001e\u0012\u0006\u0010\u00ec\u00ee\u0097\u00a8\u0006\"\u000538668\u0012\u0011\b\u001f\u0012\u0006\u0010\u00cb\u00ef\u0097\u00a8\u0006\"\u000538661\u0012\u0011\b \u0012\u0006\u0010\u009c\u00f0\u0097\u00a8\u0006\"\u000538657\u0012\u0011\b!\u0012\u0006\u0010\u00d7\u00f0\u0097\u00a8\u0006\"\u000538743\u0012\u0011\b\"\u0012\u0006\u0010\u0097\u00f1\u0097\u00a8\u0006\"\u000538652\u0012\u0011\b#\u0012\u0006\u0010\u00cd\u00f1\u0097\u00a8\u0006\"\u000538721\u0012\u0011\b$\u0012\u0006\u0010\u0086\u00f2\u0097\u00a8\u0006\"\u000538659\u0012\u0011\b%\u0012\u0006\u0010\u00df\u00f2\u0097\u00a8\u0006\"\u000538674\u0012\u0011\b&\u0012\u0006\u0010\u00a4\u00f3\u0097\u00a8\u0006\"\u000538649\u0012\u0011\b'\u0012\u0006\u0010\u00e6\u00f3\u0097\u00a8\u0006\"\u000538718\u0012\u0011\b(\u0012\u0006\u0010\u00a9\u00f4\u0097\u00a8\u0006\"\u000538735\u0012\u0011\b)\u0012\u0006\u0010\u00e6\u00f4\u0097\u00a8\u0006\"\u000542270\u0012\u0011\b*\u0012\u0006\u0010\u0096\u00f5\u0097\u00a8\u0006\"\u000542271\u0012\u0011\b+\u0012\u0006\u0010\u00dc\u00f6\u0097\u00a8\u0006\"\u000538688\u0012\u0011\b,\u0012\u0006\u0010\u0097\u00f7\u0097\u00a8\u0006\"\u000538673\u0012\u0011\b-\u0012\u0006\u0010\u00e7\u00f7\u0097\u00a8\u0006\"\u000539785\u0012\u0011\b.\u0012\u0006\u0010\u0090\u00f8\u0097\u00a8\u0006\"\u000538664\u0012\u0011\b/\u0012\u0006\u0010\u00ca\u00f8\u0097\u00a8\u0006\"\u000538702\u0012\u0011\b0\u0012\u0006\u0010\u00fa\u00f8\u0097\u00a8\u0006\"\u000539787\u0012\u0011\b1\u0012\u0006\u0010\u00a7\u00f9\u0097\u00a8\u0006\"\u000538501\u0012\u0011\b2\u0012\u0006\u0010\u00f1\u00f9\u0097\u00a8\u0006\"\u000538692\u0012\u0011\b3\u0012\u0006\u0010\u00be\u00fa\u0097\u00a8\u0006\"\u000538714\u0012\u0011\b4\u0012\u0006\u0010\u00f4\u00fa\u0097\u00a8\u0006\"\u000539791\u0012\u0011\b5\u0012\u0006\u0010\u0094\u00fb\u0097\u00a8\u0006\"\u000538506\u0012\u0011\b6\u0012\u0006\u0010\u00cd\u00fb\u0097\u00a8\u0006\"\u000538635\u0012\u0011\b7\u0012\u0006\u0010\u00f4\u00fb\u0097\u00a8\u0006\"\u000538509\u0012\u0011\b8\u0012\u0006\u0010\u00a8\u00fc\u0097\u00a8\u0006\"\u000538642\u0012\u0011\b9\u0012\u0006\u0010\u00dc\u00fc\u0097\u00a8\u0006\"\u000539795\u0012\u0011\b:\u0012\u0006\u0010\u0084\u00fd\u0097\u00a8\u0006\"\u000538502\u0012\u0011\b;\u0012\u0006\u0010\u00cd\u00fd\u0097\u00a8\u0006\"\u000538503\u0012\u0011\b<\u0012\u0006\u0010\u0095\u00ff\u0097\u00a8\u0006\"\u000535691\u0012\u0011\b=\u0012\u0006\u0010\u00ca\u00ff\u0097\u00a8\u0006\"\u000535692\u0012\u0011\b>\u0012\u0006\u0010\u0097\u0080\u0098\u00a8\u0006\"\u000535693\u0012\u0011\b?\u0012\u0006\u0010\u00e1\u0080\u0098\u00a8\u0006\"\u000535694\u0012\u0011\b@\u0012\u0006\u0010\u0098\u0081\u0098\u00a8\u0006\"\u000535695\u0012\u0011\bA\u0012\u0006\u0010\u00da\u0081\u0098\u00a8\u0006\"\u000535696\u0012\u0011\bB\u0012\u0006\u0010\u00d4\u0083\u0098\u00a8\u0006\"\u000535697\u0012\u0011\bC\u0012\u0006\u0010\u008d\u0085\u0098\u00a8\u0006\"\u000539778\u0012\u0011\bD\u0012\u0006\u0010\u00b7\u0086\u0098\u00a8\u0006\"\u000535797\u0012\u0011\bE\u0012\u0006\u0010\u0086\u0087\u0098\u00a8\u0006\"\u000535798\u0012\u0011\bF\u0012\u0006\u0010\u00bd\u0087\u0098\u00a8\u0006\"\u000535799\u0012\u0011\bG\u0012\u0006\u0010\u00b7\u0088\u0098\u00a8\u0006\"\u000535800\u0012\u0011\bH\u0012\u0006\u0010\u0090\u0089\u0098\u00a8\u0006\"\u000535801\u0012\u0011\bI\u0012\u0006\u0010\u00bf\u0089\u0098\u00a8\u0006\"\u000535802\u0012\u0011\bJ\u0012\u0006\u0010\u0098\u008a\u0098\u00a8\u0006\"\u000535803\u0012\u0011\bK\u0012\u0006\u0010\u0082\u008b\u0098\u00a8\u0006\"\u000538507\u0012\u0011\bL\u0012\u0006\u0010\u00e5\u008b\u0098\u00a8\u0006\"\u000534473\u0012\u0011\bM\u0012\u0006\u0010\u00be\u008c\u0098\u00a8\u0006\"\u000538500\u0012\u0011\bN\u0012\u0006\u0010\u009d\u008d\u0098\u00a8\u0006\"\u000535808\u0012\u0011\bO\u0012\u0006\u0010\u0098\u008e\u0098\u00a8\u0006\"\u000535710\u0012\u0011\bP\u0012\u0006\u0010\u00fa\u008e\u0098\u00a8\u0006\"\u000550036\u0012\u0011\bQ\u0012\u0006\u0010\u009c\u0093\u0098\u00a8\u0006\"\u000550037\u0012\u0011\bR\u0012\u0006\u0010\u009c\u0096\u0098\u00a8\u0006\"\u000550038\u0012\u0011\bS\u0012\u0006\u0010\u00f8\u0097\u0098\u00a8\u0006\"\u000550039\u0012\u0011\bT\u0012\u0006\u0010\u00a1\u0099\u0098\u00a8\u0006\"\u000550040\u0012\u0011\bU\u0012\u0006\u0010\u00c1\u009b\u0098\u00a8\u0006\"\u000550041\u0012\u0012\bV\u0012\u0006\u0010\u00a2\u009f\u0098\u00a8\u0006\"\u0006Jun-15\u0012\u0012\bW\u0012\u0006\u0010\u008e\u00a2\u0098\u00a8\u0006\"\u0006Jun-13\u0012\u0011\bX\u0012\u0006\u0010\u00d6\u00a8\u0098\u00a8\u0006\"\u00056-Oct\u0012\u0011\bY\u0012\u0006\u0010\u00d4\u00aa\u0098\u00a8\u0006\"\u00056-Aug\u0012\u0011\bZ\u0012\u0006\u0010\u00ba\u00b1\u0098\u00a8\u0006\"\u00056-Jun\u0012\u0011\b[\u0012\u0006\u0010\u00b9\u00b7\u0098\u00a8\u0006\"\u00056-Feb\u0012\u0011\b\\\u0012\u0006\u0010\u0088\u00bf\u0098\u00a8\u0006\"\u00057-Jul\u0012\u0011\b]\u0012\u0006\u0010\u00a9\u00c3\u0098\u00a8\u0006\"\u00057-May\u0012\u0013\b^\u0012\u0006\u0010\u00de\u00c5\u0098\u00a8\u0006\"\u00071508142\u0012\u0011\b_\u0012\u0006\u0010\u00f7\u00cc\u0098\u00a8\u0006\"\u00057-Feb\u0012\u0011\b`\u0012\u0006\u0010\u00c1\u00d2\u0098\u00a8\u0006\"\u00058-Jan\u0012\u0011\ba\u0012\u0006\u0010\u00a7\u00d5\u0098\u00a8\u0006\"\u00059-Jan\u0012\u0012\bb\u0012\u0006\u0010\u008e\u00d9\u0098\u00a8\u0006\"\u000610-Apr\u0012\u0012\bc\u0012\u0006\u0010\u00d3\u00de\u0098\u00a8\u0006\"\u000610-Jan\u0012\u0011\bd\u0012\u0006\u0010\u00d3\u00e3\u0098\u00a8\u0006\"\u000544863\u0012\u0012\be\u0012\u0006\u0010\u00ae\u00e7\u0098\u00a8\u0006\"\u000610-Mar\u0012\u0012\bf\u0012\u0006\u0010\u00af\u00ee\u0098\u00a8\u0006\"\u000611-Jan\u0012\u0011\bg\u0012\u0006\u0010\u00c5\u00f5\u0098\u00a8\u0006\"\u000544866\u0012\u0011\bh\u0012\u0006\u0010\u00bc\u00fb\u0098\u00a8\u0006\"\u000544867\u0012\u0011\bi\u0012\u0006\u0010\u00e1\u00ff\u0098\u00a8\u0006\"\u000544868\u0012\u0011\bj\u0012\u0006\u0010\u00af\u0084\u0099\u00a8\u0006\"\u000544869\u0012\u0011\bk\u0012\u0006\u0010\u00a6\u008a\u0099\u00a8\u0006\"\u000544870\u0012\u0011\bl\u0012\u0006\u0010\u00f5\u0090\u0099\u00a8\u0006\"\u000544871\u0012\u0011\bm\u0012\u0006\u0010\u00b9\u0099\u0099\u00a8\u0006\"\u000544872\u0012\u0011\bn\u0012\u0006\u0010\u00ed\u00a8\u0099\u00a8\u0006\"\u000550020\u0012\u0011\bo\u0012\u0006\u0010\u00ab\u00c2\u0099\u00a8\u0006\"\u000514-11\u0012\u0011\bp\u0012\u0006\u0010\u0089\u00d0\u0099\u00a8\u0006\"\u000591162\u0012\u0011\bq\u0012\u0006\u0010\u00d2\u00f2\u0099\u00a8\u0006\"\u000550023\u0012\u0012\br\u0012\u0006\u0010\u0084\u00ae\u009a\u00a8\u0006\"\u000614-Jul\u0012\u0012\bs\u0012\u0006\u0010\u00b0\u00cb\u009a\u00a8\u0006\"\u000614-Apr\u0012\u0011\bt\u0012\u0006\u0010\u00a4\u00f8\u009a\u00a8\u0006\"\u000537474\u0012\u0011\bu\u0012\u0006\u0010\u00a2\u00b4\u009b\u00a8\u0006\"\u000544879\u0012\u0011\bv\u0012\u0006\u0010\u00bc\u00d6\u009b\u00a8\u0006\"\u000544880\u0012\u0011\bw\u0012\u0006\u0010\u00c8\u0090\u009c\u00a8\u0006\"\u000544881\u0012\u0011\bx\u0012\u0006\u0010\u00a8\u00c4\u009c\u00a8\u0006\"\u000550028\u001a\b\u001a\u0006ZY5139 \u00b0\u00e8\u0097\u00a8\u0006\"`\n/\n\u001021000-701ff27f-2\u0012\b15:33:00\u001a\b20230916 \u0000*\u00035950\u0001\u0012\u001d\r\u001d\u00e6\u0012\u00c2\u0015\u009f=\u0092\u00c2\u001d\u0000\u0000\u00ecB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u001c\u00c71@(\u00b0\u00e8\u0097\u00a8\u0006B\b\u001a\u0006ZY5139" + }, + { + "type": "con_recorrido", + "entity": "\n$e27fde01-7114-4fb2-9308-a015d68c4ea3\u001a\u00dc\u0005\n/\n\u001021557-701ff27f-2\u0012\b14:48:00\u001a\b20230916 \u0000*\u00035980\u0001\u0012\u0011\b\"\u0012\u0006\u0010\u009b\u00e8\u0097\u00a8\u0006\"\u000539636\u0012\u0011\b#\u0012\u0006\u0010\u00d9\u00e9\u0097\u00a8\u0006\"\u000539637\u0012\u0011\b$\u0012\u0006\u0010\u008d\u00ea\u0097\u00a8\u0006\"\u000549317\u0012\u0011\b%\u0012\u0006\u0010\u00ad\u00ea\u0097\u00a8\u0006\"\u000549318\u0012\u0011\b&\u0012\u0006\u0010\u00f1\u00ea\u0097\u00a8\u0006\"\u000549319\u0012\u0011\b'\u0012\u0006\u0010\u00b1\u00eb\u0097\u00a8\u0006\"\u000539641\u0012\u0011\b(\u0012\u0006\u0010\u009a\u00ed\u0097\u00a8\u0006\"\u000549323\u0012\u0011\b)\u0012\u0006\u0010\u00e9\u00ed\u0097\u00a8\u0006\"\u000549325\u0012\u0011\b*\u0012\u0006\u0010\u00a7\u00ee\u0097\u00a8\u0006\"\u000549326\u0012\u0011\b+\u0012\u0006\u0010\u00ba\u00ee\u0097\u00a8\u0006\"\u000539648\u0012\u0011\b,\u0012\u0006\u0010\u0080\u00ef\u0097\u00a8\u0006\"\u000536115\u0012\u0011\b-\u0012\u0006\u0010\u00b2\u00ef\u0097\u00a8\u0006\"\u000536116\u0012\u0013\b.\u0012\u0006\u0010\u00d2\u00ef\u0097\u00a8\u0006\"\u00078606049\u0012\u0011\b/\u0012\u0006\u0010\u0080\u00f0\u0097\u00a8\u0006\"\u000537428\u0012\u0011\b0\u0012\u0006\u0010\u00a8\u00f0\u0097\u00a8\u0006\"\u000537429\u0012\u0011\b1\u0012\u0006\u0010\u00c7\u00f0\u0097\u00a8\u0006\"\u000537430\u0012\u0011\b2\u0012\u0006\u0010\u00e6\u00f0\u0097\u00a8\u0006\"\u000537431\u0012\u0011\b3\u0012\u0006\u0010\u0083\u00f1\u0097\u00a8\u0006\"\u000537432\u0012\u0011\b4\u0012\u0006\u0010\u00c5\u00f1\u0097\u00a8\u0006\"\u000540720\u0012\u0011\b5\u0012\u0006\u0010\u00d1\u00f1\u0097\u00a8\u0006\"\u000540721\u0012\u0011\b6\u0012\u0006\u0010\u00f8\u00f1\u0097\u00a8\u0006\"\u000540722\u0012\u0011\b7\u0012\u0006\u0010\u00fd\u00f1\u0097\u00a8\u0006\"\u000540723\u0012\u0011\b8\u0012\u0006\u0010\u009e\u00f2\u0097\u00a8\u0006\"\u000540724\u0012\u0011\b9\u0012\u0006\u0010\u00e4\u00f2\u0097\u00a8\u0006\"\u000540725\u0012\u0011\b:\u0012\u0006\u0010\u0081\u00f3\u0097\u00a8\u0006\"\u000537435\u0012\u0011\b;\u0012\u0006\u0010\u00ab\u00f3\u0097\u00a8\u0006\"\u000539658\u0012\u0011\b<\u0012\u0006\u0010\u00d5\u00f3\u0097\u00a8\u0006\"\u000539659\u0012\u0011\b=\u0012\u0006\u0010\u00f1\u00f3\u0097\u00a8\u0006\"\u000539660\u0012\u0011\b>\u0012\u0006\u0010\u008e\u00f4\u0097\u00a8\u0006\"\u000539661\u0012\u0011\b?\u0012\u0006\u0010\u00bd\u00f4\u0097\u00a8\u0006\"\u000539662\u0012\u0011\b@\u0012\u0006\u0010\u00f7\u00f4\u0097\u00a8\u0006\"\u000539663\u0012\u0011\bA\u0012\u0006\u0010\u00a4\u00f5\u0097\u00a8\u0006\"\u000539664\u0012\u0011\bB\u0012\u0006\u0010\u00d3\u00f5\u0097\u00a8\u0006\"\u000539665\u0012\u0011\bC\u0012\u0006\u0010\u00cf\u00f6\u0097\u00a8\u0006\"\u000542655\u0012\u0011\bD\u0012\u0006\u0010\u00ff\u00f6\u0097\u00a8\u0006\"\u000549342\u001a\b\u001a\u0006DWHG74 \u009a\u00e8\u0097\u00a8\u0006\"`\n/\n\u001021557-701ff27f-2\u0012\b14:48:00\u001a\b20230916 \u0000*\u00035980\u0001\u0012\u001d\r\u000eK\u0013\u00c2\u0015E \u0092\u00c2\u001d\u0000\u0000\u00a3C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u008e@(\u009a\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DWHG74" + }, + { + "type": "con_recorrido", + "entity": "\n$97e8d47e-9423-4c19-8cef-a06601d2c8e2\u001a\u00eb\b\n/\n\u001021559-701ff27f-2\u0012\b15:12:00\u001a\b20230916 \u0000*\u00035980\u0001\u0012\u0011\b\r\u0012\u0006\u0010\u00be\u00e8\u0097\u00a8\u0006\"\u000535727\u0012\u0011\b\u000e\u0012\u0006\u0010\u008c\u00e9\u0097\u00a8\u0006\"\u000535820\u0012\u0011\b\u000f\u0012\u0006\u0010\u00b2\u00e9\u0097\u00a8\u0006\"\u000535729\u0012\u0011\b\u0010\u0012\u0006\u0010\u00d2\u00e9\u0097\u00a8\u0006\"\u000535730\u0012\u0011\b\u0011\u0012\u0006\u0010\u00f3\u00e9\u0097\u00a8\u0006\"\u000535731\u0012\u0011\b\u0012\u0012\u0006\u0010\u00b3\u00ea\u0097\u00a8\u0006\"\u000535201\u0012\u0011\b\u0013\u0012\u0006\u0010\u0090\u00eb\u0097\u00a8\u0006\"\u000535202\u0012\u0011\b\u0014\u0012\u0006\u0010\u00ae\u00eb\u0097\u00a8\u0006\"\u000535203\u0012\u0011\b\u0015\u0012\u0006\u0010\u00f1\u00eb\u0097\u00a8\u0006\"\u00051-Feb\u0012\u0011\b\u0016\u0012\u0006\u0010\u009e\u00ec\u0097\u00a8\u0006\"\u00051-Mar\u0012\u0011\b\u0017\u0012\u0006\u0010\u00bf\u00ec\u0097\u00a8\u0006\"\u000537465\u0012\u0011\b\u0018\u0012\u0006\u0010\u00a1\u00ed\u0097\u00a8\u0006\"\u000539599\u0012\u0011\b\u0019\u0012\u0006\u0010\u00eb\u00ed\u0097\u00a8\u0006\"\u000545011\u0012\u0011\b\u001a\u0012\u0006\u0010\u00cd\u00ee\u0097\u00a8\u0006\"\u000539623\u0012\u0011\b\u001b\u0012\u0006\u0010\u00fc\u00ee\u0097\u00a8\u0006\"\u000539624\u0012\u0011\b\u001c\u0012\u0006\u0010\u00bc\u00ef\u0097\u00a8\u0006\"\u000590000\u0012\u0011\b\u001d\u0012\u0006\u0010\u00ee\u00ef\u0097\u00a8\u0006\"\u000539628\u0012\u0011\b\u001e\u0012\u0006\u0010\u00b8\u00f0\u0097\u00a8\u0006\"\u000539631\u0012\u0011\b\u001f\u0012\u0006\u0010\u00e6\u00f0\u0097\u00a8\u0006\"\u000549311\u0012\u0011\b \u0012\u0006\u0010\u009c\u00f1\u0097\u00a8\u0006\"\u000539634\u0012\u0011\b!\u0012\u0006\u0010\u00b5\u00f1\u0097\u00a8\u0006\"\u000539635\u0012\u0011\b\"\u0012\u0006\u0010\u00e2\u00f1\u0097\u00a8\u0006\"\u000539636\u0012\u0011\b#\u0012\u0006\u0010\u0092\u00f3\u0097\u00a8\u0006\"\u000539637\u0012\u0011\b$\u0012\u0006\u0010\u00c3\u00f3\u0097\u00a8\u0006\"\u000549317\u0012\u0011\b%\u0012\u0006\u0010\u00e3\u00f3\u0097\u00a8\u0006\"\u000549318\u0012\u0011\b&\u0012\u0006\u0010\u00a4\u00f4\u0097\u00a8\u0006\"\u000549319\u0012\u0011\b'\u0012\u0006\u0010\u00e4\u00f4\u0097\u00a8\u0006\"\u000539641\u0012\u0011\b(\u0012\u0006\u0010\u00d2\u00f6\u0097\u00a8\u0006\"\u000549323\u0012\u0011\b)\u0012\u0006\u0010\u00a6\u00f7\u0097\u00a8\u0006\"\u000549325\u0012\u0011\b*\u0012\u0006\u0010\u00e9\u00f7\u0097\u00a8\u0006\"\u000549326\u0012\u0011\b+\u0012\u0006\u0010\u00fe\u00f7\u0097\u00a8\u0006\"\u000539648\u0012\u0011\b,\u0012\u0006\u0010\u00cb\u00f8\u0097\u00a8\u0006\"\u000536115\u0012\u0011\b-\u0012\u0006\u0010\u0083\u00f9\u0097\u00a8\u0006\"\u000536116\u0012\u0013\b.\u0012\u0006\u0010\u00a6\u00f9\u0097\u00a8\u0006\"\u00078606049\u0012\u0011\b/\u0012\u0006\u0010\u00db\u00f9\u0097\u00a8\u0006\"\u000537428\u0012\u0011\b0\u0012\u0006\u0010\u0089\u00fa\u0097\u00a8\u0006\"\u000537429\u0012\u0011\b1\u0012\u0006\u0010\u00ad\u00fa\u0097\u00a8\u0006\"\u000537430\u0012\u0011\b2\u0012\u0006\u0010\u00d2\u00fa\u0097\u00a8\u0006\"\u000537431\u0012\u0011\b3\u0012\u0006\u0010\u00f3\u00fa\u0097\u00a8\u0006\"\u000537432\u0012\u0011\b4\u0012\u0006\u0010\u00c1\u00fb\u0097\u00a8\u0006\"\u000540720\u0012\u0011\b5\u0012\u0006\u0010\u00d0\u00fb\u0097\u00a8\u0006\"\u000540721\u0012\u0011\b6\u0012\u0006\u0010\u00ff\u00fb\u0097\u00a8\u0006\"\u000540722\u0012\u0011\b7\u0012\u0006\u0010\u0085\u00fc\u0097\u00a8\u0006\"\u000540723\u0012\u0011\b8\u0012\u0006\u0010\u00ad\u00fc\u0097\u00a8\u0006\"\u000540724\u0012\u0011\b9\u0012\u0006\u0010\u0083\u00fd\u0097\u00a8\u0006\"\u000540725\u0012\u0011\b:\u0012\u0006\u0010\u00a7\u00fd\u0097\u00a8\u0006\"\u000537435\u0012\u0011\b;\u0012\u0006\u0010\u00db\u00fd\u0097\u00a8\u0006\"\u000539658\u0012\u0011\b<\u0012\u0006\u0010\u0091\u00fe\u0097\u00a8\u0006\"\u000539659\u0012\u0011\b=\u0012\u0006\u0010\u00b4\u00fe\u0097\u00a8\u0006\"\u000539660\u0012\u0011\b>\u0012\u0006\u0010\u00da\u00fe\u0097\u00a8\u0006\"\u000539661\u0012\u0011\b?\u0012\u0006\u0010\u0096\u00ff\u0097\u00a8\u0006\"\u000539662\u0012\u0011\b@\u0012\u0006\u0010\u00e3\u00ff\u0097\u00a8\u0006\"\u000539663\u0012\u0011\bA\u0012\u0006\u0010\u009f\u0080\u0098\u00a8\u0006\"\u000539664\u0012\u0011\bB\u0012\u0006\u0010\u00dc\u0080\u0098\u00a8\u0006\"\u000539665\u0012\u0011\bC\u0012\u0006\u0010\u0086\u0082\u0098\u00a8\u0006\"\u000542655\u0012\u0011\bD\u0012\u0006\u0010\u00c9\u0082\u0098\u00a8\u0006\"\u000549342\u001a\b\u001a\u0006JJJD19 \u00aa\u00e8\u0097\u00a8\u0006\"`\n/\n\u001021559-701ff27f-2\u0012\b15:12:00\u001a\b20230916 \u0000*\u00035980\u0001\u0012\u001d\rfH\u0013\u00c2\u0015C\u0006\u0092\u00c2\u001d\u0000\u0000\u0092C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00aa\u00e8\u0097\u00a8\u0006B\b\u001a\u0006JJJD19" + }, + { + "type": "con_recorrido", + "entity": "\n$874c0b30-23ce-41e2-88ac-c515f3c8daad\u001a\u00d0\u0003\n/\n\u001021462-701ff27f-2\u0012\b14:50:00\u001a\b20230916 \u0000*\u00035980\u0000\u0012\u0011\b4\u0012\u0006\u0010\u008e\u00e9\u0097\u00a8\u0006\"\u000537522\u0012\u0011\b5\u0012\u0006\u0010\u00b2\u00e9\u0097\u00a8\u0006\"\u000539599\u0012\u0011\b6\u0012\u0006\u0010\u00dc\u00e9\u0097\u00a8\u0006\"\u000550034\u0012\u0011\b7\u0012\u0006\u0010\u0087\u00ea\u0097\u00a8\u0006\"\u000540903\u0012\u0011\b8\u0012\u0006\u0010\u00a8\u00ea\u0097\u00a8\u0006\"\u000540904\u0012\u0011\b9\u0012\u0006\u0010\u00dd\u00ea\u0097\u00a8\u0006\"\u000535814\u0012\u0011\b:\u0012\u0006\u0010\u00a6\u00eb\u0097\u00a8\u0006\"\u000535815\u0012\u0011\b;\u0012\u0006\u0010\u00c0\u00eb\u0097\u00a8\u0006\"\u000535816\u0012\u0011\b<\u0012\u0006\u0010\u00d1\u00eb\u0097\u00a8\u0006\"\u000535817\u0012\u0011\b=\u0012\u0006\u0010\u00f4\u00eb\u0097\u00a8\u0006\"\u000535818\u0012\u0011\b>\u0012\u0006\u0010\u009b\u00ec\u0097\u00a8\u0006\"\u000535819\u0012\u0011\b?\u0012\u0006\u0010\u00d6\u00ed\u0097\u00a8\u0006\"\u000535822\u0012\u0011\b@\u0012\u0006\u0010\u0088\u00ee\u0097\u00a8\u0006\"\u000535823\u0012\u0011\bA\u0012\u0006\u0010\u00ba\u00ee\u0097\u00a8\u0006\"\u000535723\u0012\u0011\bB\u0012\u0006\u0010\u00e5\u00ee\u0097\u00a8\u0006\"\u000535722\u0012\u0011\bC\u0012\u0006\u0010\u00bb\u00ef\u0097\u00a8\u0006\"\u000535826\u0012\u0011\bD\u0012\u0006\u0010\u00f8\u00ef\u0097\u00a8\u0006\"\u000535548\u0012\u0011\bE\u0012\u0006\u0010\u00cf\u00f0\u0097\u00a8\u0006\"\u000535547\u0012\u0011\bF\u0012\u0006\u0010\u008f\u00f1\u0097\u00a8\u0006\"\u000535546\u0012\u0011\bG\u0012\u0006\u0010\u00cf\u00f1\u0097\u00a8\u0006\"\u000535553\u0012\u0011\bH\u0012\u0006\u0010\u0085\u00f2\u0097\u00a8\u0006\"\u000535568\u001a\b\u001a\u0006JVTK96 \u00b6\u00e8\u0097\u00a8\u0006\"`\n/\n\u001021462-701ff27f-2\u0012\b14:50:00\u001a\b20230916 \u0000*\u00035980\u0000\u0012\u001d\r-H\u0013\u00c2\u0015\u0093\u0015\u0092\u00c2\u001d\u0000\u0000xB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u00f0@(\u00b6\u00e8\u0097\u00a8\u0006B\b\u001a\u0006JVTK96" + }, + { + "type": "con_recorrido", + "entity": "\n$7fbf4be1-a5ab-4040-af14-fb5779ada23d\u001a\u00bc\n\n/\n\u001021560-701ff27f-2\u0012\b15:24:00\u001a\b20230916 \u0000*\u00035980\u0001\u0012\u0011\b\u0002\u0012\u0006\u0010\u0092\u00e8\u0097\u00a8\u0006\"\u000535318\u0012\u0011\b\u0003\u0012\u0006\u0010\u00c3\u00e8\u0097\u00a8\u0006\"\u000535319\u0012\u0011\b\u0004\u0012\u0006\u0010\u00dc\u00e8\u0097\u00a8\u0006\"\u000540659\u0012\u0011\b\u0005\u0012\u0006\u0010\u0098\u00e9\u0097\u00a8\u0006\"\u000535718\u0012\u0011\b\u0006\u0012\u0006\u0010\u00c1\u00e9\u0097\u00a8\u0006\"\u000535719\u0012\u0011\b\u0007\u0012\u0006\u0010\u00eb\u00e9\u0097\u00a8\u0006\"\u000535720\u0012\u0011\b\b\u0012\u0006\u0010\u008b\u00ea\u0097\u00a8\u0006\"\u000535721\u0012\u0011\b\t\u0012\u0006\u0010\u0099\u00ea\u0097\u00a8\u0006\"\u000535722\u0012\u0011\b\n\u0012\u0006\u0010\u00ca\u00ea\u0097\u00a8\u0006\"\u000535723\u0012\u0011\b\u000b\u0012\u0006\u0010\u00fa\u00ea\u0097\u00a8\u0006\"\u000535724\u0012\u0011\b\f\u0012\u0006\u0010\u00bf\u00eb\u0097\u00a8\u0006\"\u000535726\u0012\u0011\b\r\u0012\u0006\u0010\u0084\u00ec\u0097\u00a8\u0006\"\u000535727\u0012\u0011\b\u000e\u0012\u0006\u0010\u00cd\u00ec\u0097\u00a8\u0006\"\u000535820\u0012\u0011\b\u000f\u0012\u0006\u0010\u00f0\u00ec\u0097\u00a8\u0006\"\u000535729\u0012\u0011\b\u0010\u0012\u0006\u0010\u008f\u00ed\u0097\u00a8\u0006\"\u000535730\u0012\u0011\b\u0011\u0012\u0006\u0010\u00ad\u00ed\u0097\u00a8\u0006\"\u000535731\u0012\u0011\b\u0012\u0012\u0006\u0010\u00ea\u00ed\u0097\u00a8\u0006\"\u000535201\u0012\u0011\b\u0013\u0012\u0006\u0010\u00c3\u00ee\u0097\u00a8\u0006\"\u000535202\u0012\u0011\b\u0014\u0012\u0006\u0010\u00e0\u00ee\u0097\u00a8\u0006\"\u000535203\u0012\u0011\b\u0015\u0012\u0006\u0010\u00a0\u00ef\u0097\u00a8\u0006\"\u00051-Feb\u0012\u0011\b\u0016\u0012\u0006\u0010\u00cc\u00ef\u0097\u00a8\u0006\"\u00051-Mar\u0012\u0011\b\u0017\u0012\u0006\u0010\u00ec\u00ef\u0097\u00a8\u0006\"\u000537465\u0012\u0011\b\u0018\u0012\u0006\u0010\u00cc\u00f0\u0097\u00a8\u0006\"\u000539599\u0012\u0011\b\u0019\u0012\u0006\u0010\u0096\u00f1\u0097\u00a8\u0006\"\u000545011\u0012\u0011\b\u001a\u0012\u0006\u0010\u00f7\u00f1\u0097\u00a8\u0006\"\u000539623\u0012\u0011\b\u001b\u0012\u0006\u0010\u00a7\u00f2\u0097\u00a8\u0006\"\u000539624\u0012\u0011\b\u001c\u0012\u0006\u0010\u00e7\u00f2\u0097\u00a8\u0006\"\u000590000\u0012\u0011\b\u001d\u0012\u0006\u0010\u0099\u00f3\u0097\u00a8\u0006\"\u000539628\u0012\u0011\b\u001e\u0012\u0006\u0010\u00e5\u00f3\u0097\u00a8\u0006\"\u000539631\u0012\u0011\b\u001f\u0012\u0006\u0010\u0095\u00f4\u0097\u00a8\u0006\"\u000549311\u0012\u0011\b \u0012\u0006\u0010\u00cc\u00f4\u0097\u00a8\u0006\"\u000539634\u0012\u0011\b!\u0012\u0006\u0010\u00e6\u00f4\u0097\u00a8\u0006\"\u000539635\u0012\u0011\b\"\u0012\u0006\u0010\u0094\u00f5\u0097\u00a8\u0006\"\u000539636\u0012\u0011\b#\u0012\u0006\u0010\u00cd\u00f6\u0097\u00a8\u0006\"\u000539637\u0012\u0011\b$\u0012\u0006\u0010\u0081\u00f7\u0097\u00a8\u0006\"\u000549317\u0012\u0011\b%\u0012\u0006\u0010\u00a2\u00f7\u0097\u00a8\u0006\"\u000549318\u0012\u0011\b&\u0012\u0006\u0010\u00e8\u00f7\u0097\u00a8\u0006\"\u000549319\u0012\u0011\b'\u0012\u0006\u0010\u00ac\u00f8\u0097\u00a8\u0006\"\u000539641\u0012\u0011\b(\u0012\u0006\u0010\u00af\u00fa\u0097\u00a8\u0006\"\u000549323\u0012\u0011\b)\u0012\u0006\u0010\u008c\u00fb\u0097\u00a8\u0006\"\u000549325\u0012\u0011\b*\u0012\u0006\u0010\u00d5\u00fb\u0097\u00a8\u0006\"\u000549326\u0012\u0011\b+\u0012\u0006\u0010\u00ec\u00fb\u0097\u00a8\u0006\"\u000539648\u0012\u0011\b,\u0012\u0006\u0010\u00c2\u00fc\u0097\u00a8\u0006\"\u000536115\u0012\u0011\b-\u0012\u0006\u0010\u0081\u00fd\u0097\u00a8\u0006\"\u000536116\u0012\u0013\b.\u0012\u0006\u0010\u00a9\u00fd\u0097\u00a8\u0006\"\u00078606049\u0012\u0011\b/\u0012\u0006\u0010\u00e5\u00fd\u0097\u00a8\u0006\"\u000537428\u0012\u0011\b0\u0012\u0006\u0010\u0098\u00fe\u0097\u00a8\u0006\"\u000537429\u0012\u0011\b1\u0012\u0006\u0010\u00c2\u00fe\u0097\u00a8\u0006\"\u000537430\u0012\u0011\b2\u0012\u0006\u0010\u00eb\u00fe\u0097\u00a8\u0006\"\u000537431\u0012\u0011\b3\u0012\u0006\u0010\u0091\u00ff\u0097\u00a8\u0006\"\u000537432\u0012\u0011\b4\u0012\u0006\u0010\u00eb\u00ff\u0097\u00a8\u0006\"\u000540720\u0012\u0011\b5\u0012\u0006\u0010\u00fb\u00ff\u0097\u00a8\u0006\"\u000540721\u0012\u0011\b6\u0012\u0006\u0010\u00b2\u0080\u0098\u00a8\u0006\"\u000540722\u0012\u0011\b7\u0012\u0006\u0010\u00b9\u0080\u0098\u00a8\u0006\"\u000540723\u0012\u0011\b8\u0012\u0006\u0010\u00e7\u0080\u0098\u00a8\u0006\"\u000540724\u0012\u0011\b9\u0012\u0006\u0010\u00cb\u0081\u0098\u00a8\u0006\"\u000540725\u0012\u0011\b:\u0012\u0006\u0010\u00f5\u0081\u0098\u00a8\u0006\"\u000537435\u0012\u0011\b;\u0012\u0006\u0010\u00b2\u0082\u0098\u00a8\u0006\"\u000539658\u0012\u0011\b<\u0012\u0006\u0010\u00f1\u0082\u0098\u00a8\u0006\"\u000539659\u0012\u0011\b=\u0012\u0006\u0010\u009b\u0083\u0098\u00a8\u0006\"\u000539660\u0012\u0011\b>\u0012\u0006\u0010\u00c8\u0083\u0098\u00a8\u0006\"\u000539661\u0012\u0011\b?\u0012\u0006\u0010\u008f\u0084\u0098\u00a8\u0006\"\u000539662\u0012\u0011\b@\u0012\u0006\u0010\u00ea\u0084\u0098\u00a8\u0006\"\u000539663\u0012\u0011\bA\u0012\u0006\u0010\u00b2\u0085\u0098\u00a8\u0006\"\u000539664\u0012\u0011\bB\u0012\u0006\u0010\u00fc\u0085\u0098\u00a8\u0006\"\u000539665\u0012\u0011\bC\u0012\u0006\u0010\u00c9\u0087\u0098\u00a8\u0006\"\u000542655\u0012\u0011\bD\u0012\u0006\u0010\u009b\u0088\u0098\u00a8\u0006\"\u000549342\u001a\b\u001a\u0006ZV7323 \u0090\u00e8\u0097\u00a8\u0006\"`\n/\n\u001021560-701ff27f-2\u0012\b15:24:00\u001a\b20230916 \u0000*\u00035980\u0001\u0012\u001d\r\u0012\u0006\u0010\u00f5\u00f8\u0097\u00a8\u0006\"\u000535415\u0012\u0011\b?\u0012\u0006\u0010\u0091\u00f9\u0097\u00a8\u0006\"\u000535416\u0012\u0011\b@\u0012\u0006\u0010\u00c2\u00fa\u0097\u00a8\u0006\"\u000535752\u0012\u0011\bA\u0012\u0006\u0010\u00e2\u00fb\u0097\u00a8\u0006\"\u000535417\u0012\u0011\bB\u0012\u0006\u0010\u00a5\u00fc\u0097\u00a8\u0006\"\u000535418\u0012\u0011\bC\u0012\u0006\u0010\u00bd\u00fc\u0097\u00a8\u0006\"\u000535664\u0012\u0011\bD\u0012\u0006\u0010\u00e6\u00fc\u0097\u00a8\u0006\"\u000535665\u0012\u0011\bE\u0012\u0006\u0010\u008a\u00fd\u0097\u00a8\u0006\"\u000535666\u0012\u0011\bF\u0012\u0006\u0010\u00c0\u00fd\u0097\u00a8\u0006\"\u000535667\u0012\u0011\bG\u0012\u0006\u0010\u00e5\u00fd\u0097\u00a8\u0006\"\u000535668\u0012\u0011\bH\u0012\u0006\u0010\u00a1\u00fe\u0097\u00a8\u0006\"\u000535669\u0012\u0011\bI\u0012\u0006\u0010\u00f9\u00fe\u0097\u00a8\u0006\"\u000535670\u0012\u0011\bJ\u0012\u0006\u0010\u00a5\u00ff\u0097\u00a8\u0006\"\u000535671\u001a\b\u001a\u0006BXYT56 \u00ac\u00e8\u0097\u00a8\u0006\"`\n/\n\u001021663-701ff27f-2\u0012\b15:02:00\u001a\b20230916 \u0000*\u00035990\u0000\u0012\u001d\rB2\u0013\u00c2\u0015+\u001e\u0092\u00c2\u001d\u0000\u0000\u00fcB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-r\u001c\u0083A(\u00ac\u00e8\u0097\u00a8\u0006B\b\u001a\u0006BXYT56" + }, + { + "type": "con_recorrido", + "entity": "\n$f503df67-c5a2-457a-8682-44c6d2d38c86\u001a\u009c\u0004\n/\n\u001021662-701ff27f-2\u0012\b14:52:00\u001a\b20230916 \u0000*\u00035990\u0000\u0012\u0011\b2\u0012\u0006\u0010\u009d\u00e7\u0097\u00a8\u0006\"\u000537520\u0012\u0011\b3\u0012\u0006\u0010\u008f\u00e8\u0097\u00a8\u0006\"\u000537470\u0012\u0011\b4\u0012\u0006\u0010\u00a9\u00e8\u0097\u00a8\u0006\"\u000537477\u0012\u0011\b5\u0012\u0006\u0010\u00c7\u00e8\u0097\u00a8\u0006\"\u000591118\u0012\u0011\b6\u0012\u0006\u0010\u0088\u00e9\u0097\u00a8\u0006\"\u000535223\u0012\u0011\b7\u0012\u0006\u0010\u00b7\u00e9\u0097\u00a8\u0006\"\u000539547\u0012\u0011\b8\u0012\u0006\u0010\u0085\u00ea\u0097\u00a8\u0006\"\u000535224\u0012\u0011\b9\u0012\u0006\u0010\u00b3\u00eb\u0097\u00a8\u0006\"\u000535225\u0012\u0011\b:\u0012\u0006\u0010\u00fb\u00ef\u0097\u00a8\u0006\"\u000535409\u0012\u0011\b;\u0012\u0006\u0010\u009e\u00f0\u0097\u00a8\u0006\"\u000535411\u0012\u0011\b<\u0012\u0006\u0010\u00bf\u00f0\u0097\u00a8\u0006\"\u000535412\u0012\u0011\b=\u0012\u0006\u0010\u00b3\u00f1\u0097\u00a8\u0006\"\u000535414\u0012\u0011\b>\u0012\u0006\u0010\u00d6\u00f1\u0097\u00a8\u0006\"\u000535415\u0012\u0011\b?\u0012\u0006\u0010\u00ef\u00f1\u0097\u00a8\u0006\"\u000535416\u0012\u0011\b@\u0012\u0006\u0010\u008c\u00f3\u0097\u00a8\u0006\"\u000535752\u0012\u0011\bA\u0012\u0006\u0010\u0098\u00f4\u0097\u00a8\u0006\"\u000535417\u0012\u0011\bB\u0012\u0006\u0010\u00d1\u00f4\u0097\u00a8\u0006\"\u000535418\u0012\u0011\bC\u0012\u0006\u0010\u00e5\u00f4\u0097\u00a8\u0006\"\u000535664\u0012\u0011\bD\u0012\u0006\u0010\u0089\u00f5\u0097\u00a8\u0006\"\u000535665\u0012\u0011\bE\u0012\u0006\u0010\u00a7\u00f5\u0097\u00a8\u0006\"\u000535666\u0012\u0011\bF\u0012\u0006\u0010\u00d5\u00f5\u0097\u00a8\u0006\"\u000535667\u0012\u0011\bG\u0012\u0006\u0010\u00f4\u00f5\u0097\u00a8\u0006\"\u000535668\u0012\u0011\bH\u0012\u0006\u0010\u00a6\u00f6\u0097\u00a8\u0006\"\u000535669\u0012\u0011\bI\u0012\u0006\u0010\u00ef\u00f6\u0097\u00a8\u0006\"\u000535670\u0012\u0011\bJ\u0012\u0006\u0010\u0094\u00f7\u0097\u00a8\u0006\"\u000535671\u001a\b\u001a\u0006DWHB85 \u0092\u00e7\u0097\u00a8\u0006\"`\n/\n\u001021662-701ff27f-2\u0012\b14:52:00\u001a\b20230916 \u0000*\u00035990\u0000\u0012\u001d\r\u00b5N\u0013\u00c2\u0015\u00a2\u0018\u0092\u00c2\u001d\u0000\u0000jC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008e\u00e3\u00a8@(\u0092\u00e7\u0097\u00a8\u0006B\b\u001a\u0006DWHB85" + }, + { + "type": "con_recorrido", + "entity": "\n$b9b89734-0f29-4c10-b58d-07c6acf285cc\u001ag\n/\n\u001021660-701ff27f-2\u0012\b14:32:00\u001a\b20230916 \u0000*\u00035990\u0000\u0012\u0011\bI\u0012\u0006\u0010\u0094\u00e8\u0097\u00a8\u0006\"\u000535670\u0012\u0011\bJ\u0012\u0006\u0010\u00b8\u00e8\u0097\u00a8\u0006\"\u000535671\u001a\b\u001a\u0006FXJS17 \u008a\u00e8\u0097\u00a8\u0006\"`\n/\n\u001021660-701ff27f-2\u0012\b14:32:00\u001a\b20230916 \u0000*\u00035990\u0000\u0012\u001d\r%P\u0013\u00c2\u0015d@\u0092\u00c2\u001d\u0000\u0000\u0093C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00c7q$A(\u008a\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FXJS17" + }, + { + "type": "con_recorrido", + "entity": "\n$3149fe8b-8100-446b-a9da-0b7c5c2471e8\u001a\u00ba\t\n/\n\u001021665-701ff27f-2\u0012\b15:22:00\u001a\b20230916 \u0000*\u00035990\u0000\u0012\u0011\b\u000f\u0012\u0006\u0010\u00d6\u00e8\u0097\u00a8\u0006\"\u000540749\u0012\u0011\b\u0010\u0012\u0006\u0010\u0081\u00e9\u0097\u00a8\u0006\"\u000542525\u0012\u0011\b\u0011\u0012\u0006\u0010\u0084\u00e9\u0097\u00a8\u0006\"\u000542526\u0012\u0011\b\u0012\u0012\u0006\u0010\u00a8\u00e9\u0097\u00a8\u0006\"\u000540721\u0012\u0011\b\u0013\u0012\u0006\u0010\u00bf\u00e9\u0097\u00a8\u0006\"\u000540720\u0012\u0011\b\u0014\u0012\u0006\u0010\u00d2\u00e9\u0097\u00a8\u0006\"\u000542528\u0012\u0011\b\u0015\u0012\u0006\u0010\u0088\u00ea\u0097\u00a8\u0006\"\u000537432\u0012\u0011\b\u0016\u0012\u0006\u0010\u00a8\u00ea\u0097\u00a8\u0006\"\u000537586\u0012\u0011\b\u0017\u0012\u0006\u0010\u00be\u00ea\u0097\u00a8\u0006\"\u000537430\u0012\u0011\b\u0018\u0012\u0006\u0010\u00d2\u00ea\u0097\u00a8\u0006\"\u000537588\u0012\u0011\b\u0019\u0012\u0006\u0010\u0084\u00eb\u0097\u00a8\u0006\"\u000537589\u0012\u0011\b\u001a\u0012\u0006\u0010\u00d4\u00eb\u0097\u00a8\u0006\"\u000537840\u0012\u0011\b\u001b\u0012\u0006\u0010\u00ee\u00eb\u0097\u00a8\u0006\"\u000549140\u0012\u0011\b\u001c\u0012\u0006\u0010\u0096\u00ec\u0097\u00a8\u0006\"\u000549141\u0012\u0011\b\u001d\u0012\u0006\u0010\u00bd\u00ec\u0097\u00a8\u0006\"\u000549142\u0012\u0011\b\u001e\u0012\u0006\u0010\u00e2\u00ec\u0097\u00a8\u0006\"\u000549143\u0012\u0011\b\u001f\u0012\u0006\u0010\u00e9\u00ec\u0097\u00a8\u0006\"\u000545112\u0012\u0011\b \u0012\u0006\u0010\u009c\u00ed\u0097\u00a8\u0006\"\u000545113\u0012\u0011\b!\u0012\u0006\u0010\u00eb\u00ed\u0097\u00a8\u0006\"\u000537490\u0012\u0011\b\"\u0012\u0006\u0010\u00c1\u00ee\u0097\u00a8\u0006\"\u000537104\u0012\u0013\b#\u0012\u0006\u0010\u00eb\u00ee\u0097\u00a8\u0006\"\u00078606052\u0012\u0014\b$\u0012\u0006\u0010\u00e8\u00f0\u0097\u00a8\u0006\"\b16005188\u0012\u0011\b%\u0012\u0006\u0010\u00de\u00f2\u0097\u00a8\u0006\"\u000540995\u0012\u0011\b&\u0012\u0006\u0010\u00a6\u00f3\u0097\u00a8\u0006\"\u000540996\u0012\u0011\b'\u0012\u0006\u0010\u00f3\u00f3\u0097\u00a8\u0006\"\u000540997\u0012\u0011\b(\u0012\u0006\u0010\u00ad\u00f4\u0097\u00a8\u0006\"\u000539614\u0012\u0011\b)\u0012\u0006\u0010\u00dd\u00f4\u0097\u00a8\u0006\"\u000539615\u0012\u0011\b*\u0012\u0006\u0010\u008e\u00f5\u0097\u00a8\u0006\"\u000539616\u0012\u0011\b+\u0012\u0006\u0010\u00c5\u00f5\u0097\u00a8\u0006\"\u000539617\u0012\u0011\b,\u0012\u0006\u0010\u0080\u00f6\u0097\u00a8\u0006\"\u000539618\u0012\u0011\b-\u0012\u0006\u0010\u00af\u00f6\u0097\u00a8\u0006\"\u000539619\u0012\u0011\b.\u0012\u0006\u0010\u00d6\u00f6\u0097\u00a8\u0006\"\u000539620\u0012\u0011\b/\u0012\u0006\u0010\u009f\u00f7\u0097\u00a8\u0006\"\u000539621\u0012\u0011\b0\u0012\u0006\u0010\u00d2\u00f7\u0097\u00a8\u0006\"\u000538281\u0012\u0011\b1\u0012\u0006\u0010\u008d\u00f8\u0097\u00a8\u0006\"\u000537506\u0012\u0011\b2\u0012\u0006\u0010\u00f4\u00f8\u0097\u00a8\u0006\"\u000537520\u0012\u0011\b3\u0012\u0006\u0010\u00ea\u00f9\u0097\u00a8\u0006\"\u000537470\u0012\u0011\b4\u0012\u0006\u0010\u0085\u00fa\u0097\u00a8\u0006\"\u000537477\u0012\u0011\b5\u0012\u0006\u0010\u00a6\u00fa\u0097\u00a8\u0006\"\u000591118\u0012\u0011\b6\u0012\u0006\u0010\u00ed\u00fa\u0097\u00a8\u0006\"\u000535223\u0012\u0011\b7\u0012\u0006\u0010\u00a1\u00fb\u0097\u00a8\u0006\"\u000539547\u0012\u0011\b8\u0012\u0006\u0010\u00fa\u00fb\u0097\u00a8\u0006\"\u000535224\u0012\u0011\b9\u0012\u0006\u0010\u00cd\u00fd\u0097\u00a8\u0006\"\u000535225\u0012\u0011\b:\u0012\u0006\u0010\u0080\u0084\u0098\u00a8\u0006\"\u000535409\u0012\u0011\b;\u0012\u0006\u0010\u00b8\u0084\u0098\u00a8\u0006\"\u000535411\u0012\u0011\b<\u0012\u0006\u0010\u00ed\u0084\u0098\u00a8\u0006\"\u000535412\u0012\u0011\b=\u0012\u0006\u0010\u00ad\u0086\u0098\u00a8\u0006\"\u000535414\u0012\u0011\b>\u0012\u0006\u0010\u00e8\u0086\u0098\u00a8\u0006\"\u000535415\u0012\u0011\b?\u0012\u0006\u0010\u0093\u0087\u0098\u00a8\u0006\"\u000535416\u0012\u0011\b@\u0012\u0006\u0010\u00ac\u0089\u0098\u00a8\u0006\"\u000535752\u0012\u0011\bA\u0012\u0006\u0010\u00b5\u008b\u0098\u00a8\u0006\"\u000535417\u0012\u0011\bB\u0012\u0006\u0010\u00a5\u008c\u0098\u00a8\u0006\"\u000535418\u0012\u0011\bC\u0012\u0006\u0010\u00ce\u008c\u0098\u00a8\u0006\"\u000535664\u0012\u0011\bD\u0012\u0006\u0010\u0096\u008d\u0098\u00a8\u0006\"\u000535665\u0012\u0011\bE\u0012\u0006\u0010\u00d4\u008d\u0098\u00a8\u0006\"\u000535666\u0012\u0011\bF\u0012\u0006\u0010\u00b3\u008e\u0098\u00a8\u0006\"\u000535667\u0012\u0011\bG\u0012\u0006\u0010\u00f5\u008e\u0098\u00a8\u0006\"\u000535668\u0012\u0011\bH\u0012\u0006\u0010\u00e1\u008f\u0098\u00a8\u0006\"\u000535669\u0012\u0011\bI\u0012\u0006\u0010\u0080\u0091\u0098\u00a8\u0006\"\u000535670\u0012\u0011\bJ\u0012\u0006\u0010\u00d2\u0091\u0098\u00a8\u0006\"\u000535671\u001a\b\u001a\u0006GKLB58 \u00ac\u00e8\u0097\u00a8\u0006\"`\n/\n\u001021665-701ff27f-2\u0012\b15:22:00\u001a\b20230916 \u0000*\u00035990\u0000\u0012\u001d\r\u0018(\u0013\u00c2\u0015y6\u0092\u00c2\u001d\u0000\u0000RC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-r\u001c\u0097@(\u00ac\u00e8\u0097\u00a8\u0006B\b\u001a\u0006GKLB58" + }, + { + "type": "con_recorrido", + "entity": "\n$03ccd0c1-ae48-4e30-bec3-2f361cf56e29\u001a\u00e8\u0004\n/\n\u001021767-701ff27f-2\u0012\b15:01:00\u001a\b20230916 \u0000*\u00035990\u0001\u0012\u0011\b1\u0012\u0006\u0010\u00ee\u00e8\u0097\u00a8\u0006\"\u000538692\u0012\u0011\b2\u0012\u0006\u0010\u00b7\u00e9\u0097\u00a8\u0006\"\u000538714\u0012\u0011\b3\u0012\u0006\u0010\u00e8\u00e9\u0097\u00a8\u0006\"\u000539791\u0012\u0011\b4\u0012\u0006\u0010\u00fe\u00e9\u0097\u00a8\u0006\"\u000549329\u0012\u0011\b5\u0012\u0006\u0010\u00b8\u00ea\u0097\u00a8\u0006\"\u000549330\u0012\u0011\b6\u0012\u0006\u0010\u00df\u00ea\u0097\u00a8\u0006\"\u000539652\u0012\u0011\b7\u0012\u0006\u0010\u009d\u00eb\u0097\u00a8\u0006\"\u000536683\u0012\u0011\b8\u0012\u0006\u0010\u00c3\u00eb\u0097\u00a8\u0006\"\u000537428\u0012\u0011\b9\u0012\u0006\u0010\u00ec\u00eb\u0097\u00a8\u0006\"\u000537429\u0012\u0011\b:\u0012\u0006\u0010\u008c\u00ec\u0097\u00a8\u0006\"\u000537430\u0012\u0011\b;\u0012\u0006\u0010\u00ac\u00ec\u0097\u00a8\u0006\"\u000537431\u0012\u0011\b<\u0012\u0006\u0010\u00c9\u00ec\u0097\u00a8\u0006\"\u000537432\u0012\u0011\b=\u0012\u0006\u0010\u008c\u00ed\u0097\u00a8\u0006\"\u000540720\u0012\u0011\b>\u0012\u0006\u0010\u0098\u00ed\u0097\u00a8\u0006\"\u000540721\u0012\u0011\b?\u0012\u0006\u0010\u00c0\u00ed\u0097\u00a8\u0006\"\u000540722\u0012\u0011\b@\u0012\u0006\u0010\u00c5\u00ed\u0097\u00a8\u0006\"\u000540723\u0012\u0011\bA\u0012\u0006\u0010\u00e6\u00ed\u0097\u00a8\u0006\"\u000540724\u0012\u0011\bB\u0012\u0006\u0010\u00ab\u00ee\u0097\u00a8\u0006\"\u000540725\u0012\u0011\bC\u0012\u0006\u0010\u00c8\u00ee\u0097\u00a8\u0006\"\u000537435\u0012\u0011\bD\u0012\u0006\u0010\u00f1\u00ee\u0097\u00a8\u0006\"\u000539658\u0012\u0011\bE\u0012\u0006\u0010\u009b\u00ef\u0097\u00a8\u0006\"\u000539659\u0012\u0011\bF\u0012\u0006\u0010\u00b6\u00ef\u0097\u00a8\u0006\"\u000539660\u0012\u0011\bG\u0012\u0006\u0010\u00d3\u00ef\u0097\u00a8\u0006\"\u000539661\u0012\u0011\bH\u0012\u0006\u0010\u0080\u00f0\u0097\u00a8\u0006\"\u000539662\u0012\u0011\bI\u0012\u0006\u0010\u00b8\u00f0\u0097\u00a8\u0006\"\u000539663\u0012\u0011\bJ\u0012\u0006\u0010\u00e4\u00f0\u0097\u00a8\u0006\"\u000539664\u0012\u0011\bK\u0012\u0006\u0010\u0090\u00f1\u0097\u00a8\u0006\"\u000539665\u0012\u0011\bL\u0012\u0006\u0010\u0086\u00f2\u0097\u00a8\u0006\"\u000542655\u0012\u0011\bM\u0012\u0006\u0010\u00b4\u00f2\u0097\u00a8\u0006\"\u000549342\u001a\b\u001a\u0006GKXF28 \u008c\u00e8\u0097\u00a8\u0006\"`\n/\n\u001021767-701ff27f-2\u0012\b15:01:00\u001a\b20230916 \u0000*\u00035990\u0001\u0012\u001d\r\u008b \u0013\u00c2\u0015t.\u0092\u00c2\u001d\u0000\u0000\u00dcB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-r\u001cg@(\u00b2\u00e8\u0097\u00a8\u0006B\b\u001a\u0006GKXF28" + }, + { + "type": "con_recorrido", + "entity": "\n$953505dd-893b-4305-91e6-b13067329b93\u001a\u00de\u0002\n/\n\u001021765-701ff27f-2\u0012\b14:37:00\u001a\b20230916 \u0000*\u00035990\u0001\u0012\u0011\b?\u0012\u0006\u0010\u00d2\u00e8\u0097\u00a8\u0006\"\u000540722\u0012\u0011\b@\u0012\u0006\u0010\u00d7\u00e8\u0097\u00a8\u0006\"\u000540723\u0012\u0011\bA\u0012\u0006\u0010\u00fb\u00e8\u0097\u00a8\u0006\"\u000540724\u0012\u0011\bB\u0012\u0006\u0010\u00c6\u00e9\u0097\u00a8\u0006\"\u000540725\u0012\u0011\bC\u0012\u0006\u0010\u00e5\u00e9\u0097\u00a8\u0006\"\u000537435\u0012\u0011\bD\u0012\u0006\u0010\u0091\u00ea\u0097\u00a8\u0006\"\u000539658\u0012\u0011\bE\u0012\u0006\u0010\u00bd\u00ea\u0097\u00a8\u0006\"\u000539659\u0012\u0011\bF\u0012\u0006\u0010\u00da\u00ea\u0097\u00a8\u0006\"\u000539660\u0012\u0011\bG\u0012\u0006\u0010\u00f8\u00ea\u0097\u00a8\u0006\"\u000539661\u0012\u0011\bH\u0012\u0006\u0010\u00a7\u00eb\u0097\u00a8\u0006\"\u000539662\u0012\u0011\bI\u0012\u0006\u0010\u00e2\u00eb\u0097\u00a8\u0006\"\u000539663\u0012\u0011\bJ\u0012\u0006\u0010\u008f\u00ec\u0097\u00a8\u0006\"\u000539664\u0012\u0011\bK\u0012\u0006\u0010\u00bc\u00ec\u0097\u00a8\u0006\"\u000539665\u0012\u0011\bL\u0012\u0006\u0010\u00b4\u00ed\u0097\u00a8\u0006\"\u000542655\u0012\u0011\bM\u0012\u0006\u0010\u00e2\u00ed\u0097\u00a8\u0006\"\u000549342\u001a\b\u001a\u0006HCCR33 \u00b0\u00e8\u0097\u00a8\u0006\"`\n/\n\u001021765-701ff27f-2\u0012\b14:37:00\u001a\b20230916 \u0000*\u00035990\u0001\u0012\u001d\r\u0000+\u0013\u00c2\u0015x6\u0092\u00c2\u001d\u0000\u0000\u0097C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-r\u001cgA(\u00b0\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HCCR33" + }, + { + "type": "con_recorrido", + "entity": "\n$c09129e8-5768-452f-94b6-83a65d191591\u001a\u00ee\b\n/\n\u001021768-701ff27f-2\u0012\b15:13:00\u001a\b20230916 \u0000*\u00035990\u0001\u0012\u0011\b\u0016\u0012\u0006\u0010\u008e\u00e8\u0097\u00a8\u0006\"\u000544643\u0012\u0011\b\u0017\u0012\u0006\u0010\u00b8\u00e8\u0097\u00a8\u0006\"\u000544644\u0012\u0011\b\u0018\u0012\u0006\u0010\u0096\u00e9\u0097\u00a8\u0006\"\u000591116\u0012\u0011\b\u0019\u0012\u0006\u0010\u00f8\u00ec\u0097\u00a8\u0006\"\u000539545\u0012\u0011\b\u001a\u0012\u0006\u0010\u009d\u00ee\u0097\u00a8\u0006\"\u000539546\u0012\u0011\b\u001b\u0012\u0006\u0010\u00a2\u00ef\u0097\u00a8\u0006\"\u000535286\u0012\u0011\b\u001c\u0012\u0006\u0010\u00bd\u00ef\u0097\u00a8\u0006\"\u000535287\u0012\u0011\b\u001d\u0012\u0006\u0010\u0080\u00f0\u0097\u00a8\u0006\"\u000542317\u0012\u0011\b\u001e\u0012\u0006\u0010\u00b3\u00f0\u0097\u00a8\u0006\"\u000542318\u0012\u0013\b\u001f\u0012\u0006\u0010\u00f9\u00f0\u0097\u00a8\u0006\"\u00078606396\u0012\u0011\b \u0012\u0006\u0010\u00bf\u00f1\u0097\u00a8\u0006\"\u000538514\u0012\u0011\b!\u0012\u0006\u0010\u00e5\u00f1\u0097\u00a8\u0006\"\u000538516\u0012\u0011\b\"\u0012\u0006\u0010\u009f\u00f2\u0097\u00a8\u0006\"\u000538518\u0012\u0011\b#\u0012\u0006\u0010\u0081\u00f3\u0097\u00a8\u0006\"\u000538520\u0012\u0011\b$\u0012\u0006\u0010\u00a9\u00f3\u0097\u00a8\u0006\"\u000538521\u0012\u0011\b%\u0012\u0006\u0010\u00da\u00f3\u0097\u00a8\u0006\"\u000538522\u0012\u0011\b&\u0012\u0006\u0010\u008c\u00f4\u0097\u00a8\u0006\"\u000538523\u0012\u0011\b'\u0012\u0006\u0010\u00c0\u00f4\u0097\u00a8\u0006\"\u000538524\u0012\u0011\b(\u0012\u0006\u0010\u00f2\u00f4\u0097\u00a8\u0006\"\u000538525\u0012\u0011\b)\u0012\u0006\u0010\u00a6\u00f5\u0097\u00a8\u0006\"\u000538526\u0012\u0011\b*\u0012\u0006\u0010\u00d8\u00f5\u0097\u00a8\u0006\"\u000538527\u0012\u0011\b+\u0012\u0006\u0010\u00b1\u00f6\u0097\u00a8\u0006\"\u000538528\u0012\u0011\b,\u0012\u0006\u0010\u00a6\u00f7\u0097\u00a8\u0006\"\u000538529\u0012\u0011\b-\u0012\u0006\u0010\u0087\u00f9\u0097\u00a8\u0006\"\u000538530\u0012\u0014\b.\u0012\u0006\u0010\u009b\u00f9\u0097\u00a8\u0006\"\b16005209\u0012\u0011\b/\u0012\u0006\u0010\u00f2\u00fb\u0097\u00a8\u0006\"\u000536001\u0012\u0011\b0\u0012\u0006\u0010\u00ac\u00fd\u0097\u00a8\u0006\"\u000542604\u0012\u0011\b1\u0012\u0006\u0010\u00ba\u00fe\u0097\u00a8\u0006\"\u000538692\u0012\u0011\b2\u0012\u0006\u0010\u0094\u00ff\u0097\u00a8\u0006\"\u000538714\u0012\u0011\b3\u0012\u0006\u0010\u00d3\u00ff\u0097\u00a8\u0006\"\u000539791\u0012\u0011\b4\u0012\u0006\u0010\u00ef\u00ff\u0097\u00a8\u0006\"\u000549329\u0012\u0011\b5\u0012\u0006\u0010\u00bb\u0080\u0098\u00a8\u0006\"\u000549330\u0012\u0011\b6\u0012\u0006\u0010\u00f0\u0080\u0098\u00a8\u0006\"\u000539652\u0012\u0011\b7\u0012\u0006\u0010\u00c6\u0081\u0098\u00a8\u0006\"\u000536683\u0012\u0011\b8\u0012\u0006\u0010\u00fc\u0081\u0098\u00a8\u0006\"\u000537428\u0012\u0011\b9\u0012\u0006\u0010\u00b7\u0082\u0098\u00a8\u0006\"\u000537429\u0012\u0011\b:\u0012\u0006\u0010\u00e7\u0082\u0098\u00a8\u0006\"\u000537430\u0012\u0011\b;\u0012\u0006\u0010\u0097\u0083\u0098\u00a8\u0006\"\u000537431\u0012\u0011\b<\u0012\u0006\u0010\u00c3\u0083\u0098\u00a8\u0006\"\u000537432\u0012\u0011\b=\u0012\u0006\u0010\u00ab\u0084\u0098\u00a8\u0006\"\u000540720\u0012\u0011\b>\u0012\u0006\u0010\u00be\u0084\u0098\u00a8\u0006\"\u000540721\u0012\u0011\b?\u0012\u0006\u0010\u00fe\u0084\u0098\u00a8\u0006\"\u000540722\u0012\u0011\b@\u0012\u0006\u0010\u0086\u0085\u0098\u00a8\u0006\"\u000540723\u0012\u0011\bA\u0012\u0006\u0010\u00bc\u0085\u0098\u00a8\u0006\"\u000540724\u0012\u0011\bB\u0012\u0006\u0010\u00b2\u0086\u0098\u00a8\u0006\"\u000540725\u0012\u0011\bC\u0012\u0006\u0010\u00e3\u0086\u0098\u00a8\u0006\"\u000537435\u0012\u0011\bD\u0012\u0006\u0010\u00ac\u0087\u0098\u00a8\u0006\"\u000539658\u0012\u0011\bE\u0012\u0006\u0010\u00f7\u0087\u0098\u00a8\u0006\"\u000539659\u0012\u0011\bF\u0012\u0006\u0010\u00a8\u0088\u0098\u00a8\u0006\"\u000539660\u0012\u0011\bG\u0012\u0006\u0010\u00de\u0088\u0098\u00a8\u0006\"\u000539661\u0012\u0011\bH\u0012\u0006\u0010\u00b3\u0089\u0098\u00a8\u0006\"\u000539662\u0012\u0011\bI\u0012\u0006\u0010\u00a1\u008a\u0098\u00a8\u0006\"\u000539663\u0012\u0011\bJ\u0012\u0006\u0010\u00f7\u008a\u0098\u00a8\u0006\"\u000539664\u0012\u0011\bK\u0012\u0006\u0010\u00d1\u008b\u0098\u00a8\u0006\"\u000539665\u0012\u0011\bL\u0012\u0006\u0010\u00cc\u008d\u0098\u00a8\u0006\"\u000542655\u0012\u0011\bM\u0012\u0006\u0010\u00b1\u008e\u0098\u00a8\u0006\"\u000549342\u001a\b\u001a\u0006HRXJ94 \u008c\u00e8\u0097\u00a8\u0006\"`\n/\n\u001021768-701ff27f-2\u0012\b15:13:00\u001a\b20230916 \u0000*\u00035990\u0001\u0012\u001d\r\u00ac^\u0013\u00c2\u0015r/\u0092\u00c2\u001d\u0000\u0000HB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00c7q$A(\u008c\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HRXJ94" + }, + { + "type": "con_recorrido", + "entity": "\n$f720cc13-652b-4e83-8d15-f950083146ad\u001a\u00a4\u0005\n/\n\u001021766-701ff27f-2\u0012\b14:49:00\u001a\b20230916 \u0000*\u00035990\u0001\u0012\u0014\b.\u0012\u0006\u0010\u00b8\u00e8\u0097\u00a8\u0006\"\b16005209\u0012\u0011\b/\u0012\u0006\u0010\u00f2\u00ea\u0097\u00a8\u0006\"\u000536001\u0012\u0011\b0\u0012\u0006\u0010\u008e\u00ec\u0097\u00a8\u0006\"\u000542604\u0012\u0011\b1\u0012\u0006\u0010\u00fe\u00ec\u0097\u00a8\u0006\"\u000538692\u0012\u0011\b2\u0012\u0006\u0010\u00c2\u00ed\u0097\u00a8\u0006\"\u000538714\u0012\u0011\b3\u0012\u0006\u0010\u00f1\u00ed\u0097\u00a8\u0006\"\u000539791\u0012\u0011\b4\u0012\u0006\u0010\u0086\u00ee\u0097\u00a8\u0006\"\u000549329\u0012\u0011\b5\u0012\u0006\u0010\u00bd\u00ee\u0097\u00a8\u0006\"\u000549330\u0012\u0011\b6\u0012\u0006\u0010\u00e2\u00ee\u0097\u00a8\u0006\"\u000539652\u0012\u0011\b7\u0012\u0006\u0010\u009d\u00ef\u0097\u00a8\u0006\"\u000536683\u0012\u0011\b8\u0012\u0006\u0010\u00c3\u00ef\u0097\u00a8\u0006\"\u000537428\u0012\u0011\b9\u0012\u0006\u0010\u00ea\u00ef\u0097\u00a8\u0006\"\u000537429\u0012\u0011\b:\u0012\u0006\u0010\u0089\u00f0\u0097\u00a8\u0006\"\u000537430\u0012\u0011\b;\u0012\u0006\u0010\u00a9\u00f0\u0097\u00a8\u0006\"\u000537431\u0012\u0011\b<\u0012\u0006\u0010\u00c5\u00f0\u0097\u00a8\u0006\"\u000537432\u0012\u0011\b=\u0012\u0006\u0010\u0087\u00f1\u0097\u00a8\u0006\"\u000540720\u0012\u0011\b>\u0012\u0006\u0010\u0093\u00f1\u0097\u00a8\u0006\"\u000540721\u0012\u0011\b?\u0012\u0006\u0010\u00ba\u00f1\u0097\u00a8\u0006\"\u000540722\u0012\u0011\b@\u0012\u0006\u0010\u00bf\u00f1\u0097\u00a8\u0006\"\u000540723\u0012\u0011\bA\u0012\u0006\u0010\u00e0\u00f1\u0097\u00a8\u0006\"\u000540724\u0012\u0011\bB\u0012\u0006\u0010\u00a5\u00f2\u0097\u00a8\u0006\"\u000540725\u0012\u0011\bC\u0012\u0006\u0010\u00c2\u00f2\u0097\u00a8\u0006\"\u000537435\u0012\u0011\bD\u0012\u0006\u0010\u00eb\u00f2\u0097\u00a8\u0006\"\u000539658\u0012\u0011\bE\u0012\u0006\u0010\u0096\u00f3\u0097\u00a8\u0006\"\u000539659\u0012\u0011\bF\u0012\u0006\u0010\u00b1\u00f3\u0097\u00a8\u0006\"\u000539660\u0012\u0011\bG\u0012\u0006\u0010\u00ce\u00f3\u0097\u00a8\u0006\"\u000539661\u0012\u0011\bH\u0012\u0006\u0010\u00fc\u00f3\u0097\u00a8\u0006\"\u000539662\u0012\u0011\bI\u0012\u0006\u0010\u00b6\u00f4\u0097\u00a8\u0006\"\u000539663\u0012\u0011\bJ\u0012\u0006\u0010\u00e3\u00f4\u0097\u00a8\u0006\"\u000539664\u0012\u0011\bK\u0012\u0006\u0010\u0091\u00f5\u0097\u00a8\u0006\"\u000539665\u0012\u0011\bL\u0012\u0006\u0010\u008c\u00f6\u0097\u00a8\u0006\"\u000542655\u0012\u0011\bM\u0012\u0006\u0010\u00bc\u00f6\u0097\u00a8\u0006\"\u000549342\u001a\b\u001a\u0006JVTK78 \u00b4\u00e8\u0097\u00a8\u0006\"`\n/\n\u001021766-701ff27f-2\u0012\b14:49:00\u001a\b20230916 \u0000*\u00035990\u0001\u0012\u001d\rA*\u0013\u00c2\u0015\u00f2#\u0092\u00c2\u001d\u0000\u0000\u00a7C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b4\u00e8\u0097\u00a8\u0006B\b\u001a\u0006JVTK78" + }, + { + "type": "con_recorrido", + "entity": "\n$678f9cf2-a4ab-4877-b764-5f79ad4907bc\u001a\u00e8\u0007\n/\n\u001021943-701ff27f-2\u0012\b15:42:00\u001a\b20230916 \u0000*\u00036000\u0001\u0012\u0011\b\t\u0012\u0006\u0010\u00fc\u00e7\u0097\u00a8\u0006\"\u000539623\u0012\u0011\b\n\u0012\u0006\u0010\u00a6\u00e8\u0097\u00a8\u0006\"\u000539624\u0012\u0011\b\u000b\u0012\u0006\u0010\u00f5\u00e8\u0097\u00a8\u0006\"\u000590000\u0012\u0011\b\f\u0012\u0006\u0010\u00aa\u00e9\u0097\u00a8\u0006\"\u000539628\u0012\u0011\b\r\u0012\u0006\u0010\u00f1\u00e9\u0097\u00a8\u0006\"\u000539631\u0012\u0011\b\u000e\u0012\u0006\u0010\u00aa\u00ea\u0097\u00a8\u0006\"\u000549311\u0012\u0011\b\u000f\u0012\u0006\u0010\u00e2\u00ea\u0097\u00a8\u0006\"\u000539634\u0012\u0011\b\u0010\u0012\u0006\u0010\u00fc\u00ea\u0097\u00a8\u0006\"\u000539635\u0012\u0011\b\u0011\u0012\u0006\u0010\u00aa\u00eb\u0097\u00a8\u0006\"\u000539636\u0012\u0011\b\u0012\u0012\u0006\u0010\u00dc\u00ec\u0097\u00a8\u0006\"\u000539637\u0012\u0011\b\u0013\u0012\u0006\u0010\u008d\u00ed\u0097\u00a8\u0006\"\u000549317\u0012\u0011\b\u0014\u0012\u0006\u0010\u00ac\u00ed\u0097\u00a8\u0006\"\u000549318\u0012\u0011\b\u0015\u0012\u0006\u0010\u00ec\u00ed\u0097\u00a8\u0006\"\u000549319\u0012\u0011\b\u0016\u0012\u0006\u0010\u00ab\u00ee\u0097\u00a8\u0006\"\u000539641\u0012\u0011\b\u0017\u0012\u0006\u0010\u00cd\u00ee\u0097\u00a8\u0006\"\u000539642\u0012\u0011\b\u0018\u0012\u0006\u0010\u00c5\u00f0\u0097\u00a8\u0006\"\u000539795\u0012\u0011\b\u0019\u0012\u0006\u0010\u00fe\u00f0\u0097\u00a8\u0006\"\u000542642\u0012\u0011\b\u001a\u0012\u0006\u0010\u009d\u00f1\u0097\u00a8\u0006\"\u000542643\u0012\u0011\b\u001b\u0012\u0006\u0010\u00b4\u00f1\u0097\u00a8\u0006\"\u000542644\u0012\u0011\b\u001c\u0012\u0006\u0010\u00cc\u00f1\u0097\u00a8\u0006\"\u000542645\u0012\u0013\b\u001d\u0012\u0006\u0010\u00b1\u00f2\u0097\u00a8\u0006\"\u00078606039\u0012\u0011\b\u001e\u0012\u0006\u0010\u00d1\u00f2\u0097\u00a8\u0006\"\u000536489\u0012\u0011\b\u001f\u0012\u0006\u0010\u00ee\u00f2\u0097\u00a8\u0006\"\u000536490\u0012\u0011\b \u0012\u0006\u0010\u0086\u00f3\u0097\u00a8\u0006\"\u000540714\u0012\u0013\b!\u0012\u0006\u0010\u00c5\u00f3\u0097\u00a8\u0006\"\u00078606049\u0012\u0011\b\"\u0012\u0006\u0010\u00f4\u00f3\u0097\u00a8\u0006\"\u000537428\u0012\u0011\b#\u0012\u0006\u0010\u00b5\u00f4\u0097\u00a8\u0006\"\u000536551\u0012\u0011\b$\u0012\u0006\u0010\u00ca\u00f4\u0097\u00a8\u0006\"\u000536552\u0012\u0011\b%\u0012\u0006\u0010\u00ea\u00f4\u0097\u00a8\u0006\"\u000536553\u0012\u0011\b&\u0012\u0006\u0010\u0085\u00f5\u0097\u00a8\u0006\"\u000536554\u0012\u0011\b'\u0012\u0006\u0010\u00eb\u00f5\u0097\u00a8\u0006\"\u000539657\u0012\u0011\b(\u0012\u0006\u0010\u0093\u00f6\u0097\u00a8\u0006\"\u000539658\u0012\u0011\b)\u0012\u0006\u0010\u00cb\u00f6\u0097\u00a8\u0006\"\u000539659\u0012\u0011\b*\u0012\u0006\u0010\u00e8\u00f6\u0097\u00a8\u0006\"\u000539660\u0012\u0011\b+\u0012\u0006\u0010\u0087\u00f7\u0097\u00a8\u0006\"\u000539661\u0012\u0011\b,\u0012\u0006\u0010\u00b9\u00f7\u0097\u00a8\u0006\"\u000539662\u0012\u0011\b-\u0012\u0006\u0010\u00f7\u00f7\u0097\u00a8\u0006\"\u000539663\u0012\u0011\b.\u0012\u0006\u0010\u00a8\u00f8\u0097\u00a8\u0006\"\u000539664\u0012\u0011\b/\u0012\u0006\u0010\u00da\u00f8\u0097\u00a8\u0006\"\u000539665\u0012\u0011\b0\u0012\u0006\u0010\u00af\u00f9\u0097\u00a8\u0006\"\u000542522\u0012\u0011\b1\u0012\u0006\u0010\u00e5\u00f9\u0097\u00a8\u0006\"\u000542524\u0012\u0011\b2\u0012\u0006\u0010\u009c\u00fa\u0097\u00a8\u0006\"\u000539686\u0012\u0011\b3\u0012\u0006\u0010\u00aa\u00fa\u0097\u00a8\u0006\"\u000539687\u0012\u0011\b4\u0012\u0006\u0010\u00db\u00fb\u0097\u00a8\u0006\"\u000539232\u0012\u0011\b5\u0012\u0006\u0010\u0092\u00fc\u0097\u00a8\u0006\"\u000539233\u0012\u0011\b6\u0012\u0006\u0010\u00e0\u00fc\u0097\u00a8\u0006\"\u000539234\u0012\u0011\b7\u0012\u0006\u0010\u00fb\u00fc\u0097\u00a8\u0006\"\u000539235\u0012\u0011\b8\u0012\u0006\u0010\u00a5\u00fe\u0097\u00a8\u0006\"\u000549342\u0012\u0011\b9\u0012\u0006\u0010\u0095\u00ff\u0097\u00a8\u0006\"\u000549343\u001a\b\u001a\u0006CPHG50 \u00ca\u00e7\u0097\u00a8\u0006\"`\n/\n\u001021943-701ff27f-2\u0012\b15:42:00\u001a\b20230916 \u0000*\u00036000\u0001\u0012\u001d\rmK\u0013\u00c2\u0015 \u0013\u0092\u00c2\u001d\u0000\u0000\u00c4B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00c7q\u00cc@(\u00ae\u00e8\u0097\u00a8\u0006B\b\u001a\u0006CPHG50" + }, + { + "type": "con_recorrido", + "entity": "\n$8d26d673-0f76-44ac-97c0-60b07d394d63\u001a\u00e3\u0003\n/\n\u001021875-701ff27f-2\u0012\b15:01:00\u001a\b20230916 \u0000*\u00036000\u0000\u0012\u0011\b.\u0012\u0006\u0010\u00b1\u00e8\u0097\u00a8\u0006\"\u000535695\u0012\u0011\b/\u0012\u0006\u0010\u00e8\u00e8\u0097\u00a8\u0006\"\u000535696\u0012\u0011\b0\u0012\u0006\u0010\u009b\u00ea\u0097\u00a8\u0006\"\u000535697\u0012\u0011\b1\u0012\u0006\u0010\u00fd\u00ea\u0097\u00a8\u0006\"\u00052-Jan\u0012\u0011\b2\u0012\u0006\u0010\u009b\u00eb\u0097\u00a8\u0006\"\u000542460\u0012\u0011\b3\u0012\u0006\u0010\u00c3\u00eb\u0097\u00a8\u0006\"\u000535690\u0012\u0011\b4\u0012\u0006\u0010\u00a9\u00ec\u0097\u00a8\u0006\"\u000535700\u0012\u0011\b5\u0012\u0006\u0010\u00fe\u00ec\u0097\u00a8\u0006\"\u000535703\u0012\u0011\b6\u0012\u0006\u0010\u009d\u00ed\u0097\u00a8\u0006\"\u000535704\u0012\u0011\b7\u0012\u0006\u0010\u00ab\u00ed\u0097\u00a8\u0006\"\u000535705\u0012\u0011\b8\u0012\u0006\u0010\u00bd\u00ed\u0097\u00a8\u0006\"\u000535706\u0012\u0011\b9\u0012\u0006\u0010\u00f3\u00ed\u0097\u00a8\u0006\"\u000535707\u0012\u0011\b:\u0012\u0006\u0010\u00cb\u00ee\u0097\u00a8\u0006\"\u000538281\u0012\u0011\b;\u0012\u0006\u0010\u0081\u00ef\u0097\u00a8\u0006\"\u000534586\u0012\u0011\b<\u0012\u0006\u0010\u009e\u00ef\u0097\u00a8\u0006\"\u000534587\u0012\u0011\b=\u0012\u0006\u0010\u00b7\u00ef\u0097\u00a8\u0006\"\u000534588\u0012\u0011\b>\u0012\u0006\u0010\u00e4\u00ef\u0097\u00a8\u0006\"\u000539497\u0012\u0011\b?\u0012\u0006\u0010\u0085\u00f0\u0097\u00a8\u0006\"\u000549407\u0012\u0011\b@\u0012\u0006\u0010\u00bc\u00f0\u0097\u00a8\u0006\"\u000550034\u0012\u0011\bA\u0012\u0006\u0010\u00e2\u00f0\u0097\u00a8\u0006\"\u000540903\u0012\u0011\bB\u0012\u0006\u0010\u0094\u00f1\u0097\u00a8\u0006\"\u000550035\u0012\u0011\bC\u0012\u0006\u0010\u0081\u00f3\u0097\u00a8\u0006\"\u000535713\u001a\b\u001a\u0006FXVK53 \u0092\u00e8\u0097\u00a8\u0006\"`\n/\n\u001021875-701ff27f-2\u0012\b15:01:00\u001a\b20230916 \u0000*\u00036000\u0000\u0012\u001d\r\u00e0?\u0013\u00c2\u0015\u0004$\u0092\u00c2\u001d\u0000\u0000\u00ecB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UUU@(\u0092\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FXVK53" + }, + { + "type": "con_recorrido", + "entity": "\n$7ac558ac-405d-458b-9d6f-b9f60ba209fd\u001a\u00c2\u0007\n/\n\u001021942-701ff27f-2\u0012\b15:22:00\u001a\b20230916 \u0000*\u00036000\u0001\u0012\u0011\b\u000b\u0012\u0006\u0010\u00f7\u00e8\u0097\u00a8\u0006\"\u000590000\u0012\u0011\b\f\u0012\u0006\u0010\u00ad\u00e9\u0097\u00a8\u0006\"\u000539628\u0012\u0011\b\r\u0012\u0006\u0010\u00f4\u00e9\u0097\u00a8\u0006\"\u000539631\u0012\u0011\b\u000e\u0012\u0006\u0010\u00ae\u00ea\u0097\u00a8\u0006\"\u000549311\u0012\u0011\b\u000f\u0012\u0006\u0010\u00e8\u00ea\u0097\u00a8\u0006\"\u000539634\u0012\u0011\b\u0010\u0012\u0006\u0010\u0082\u00eb\u0097\u00a8\u0006\"\u000539635\u0012\u0011\b\u0011\u0012\u0006\u0010\u00b0\u00eb\u0097\u00a8\u0006\"\u000539636\u0012\u0011\b\u0012\u0012\u0006\u0010\u00e5\u00ec\u0097\u00a8\u0006\"\u000539637\u0012\u0011\b\u0013\u0012\u0006\u0010\u0096\u00ed\u0097\u00a8\u0006\"\u000549317\u0012\u0011\b\u0014\u0012\u0006\u0010\u00b5\u00ed\u0097\u00a8\u0006\"\u000549318\u0012\u0011\b\u0015\u0012\u0006\u0010\u00f5\u00ed\u0097\u00a8\u0006\"\u000549319\u0012\u0011\b\u0016\u0012\u0006\u0010\u00b4\u00ee\u0097\u00a8\u0006\"\u000539641\u0012\u0011\b\u0017\u0012\u0006\u0010\u00d6\u00ee\u0097\u00a8\u0006\"\u000539642\u0012\u0011\b\u0018\u0012\u0006\u0010\u00cf\u00f0\u0097\u00a8\u0006\"\u000539795\u0012\u0011\b\u0019\u0012\u0006\u0010\u0087\u00f1\u0097\u00a8\u0006\"\u000542642\u0012\u0011\b\u001a\u0012\u0006\u0010\u00a7\u00f1\u0097\u00a8\u0006\"\u000542643\u0012\u0011\b\u001b\u0012\u0006\u0010\u00be\u00f1\u0097\u00a8\u0006\"\u000542644\u0012\u0011\b\u001c\u0012\u0006\u0010\u00d6\u00f1\u0097\u00a8\u0006\"\u000542645\u0012\u0013\b\u001d\u0012\u0006\u0010\u00ba\u00f2\u0097\u00a8\u0006\"\u00078606039\u0012\u0011\b\u001e\u0012\u0006\u0010\u00d9\u00f2\u0097\u00a8\u0006\"\u000536489\u0012\u0011\b\u001f\u0012\u0006\u0010\u00f7\u00f2\u0097\u00a8\u0006\"\u000536490\u0012\u0011\b \u0012\u0006\u0010\u008e\u00f3\u0097\u00a8\u0006\"\u000540714\u0012\u0013\b!\u0012\u0006\u0010\u00cc\u00f3\u0097\u00a8\u0006\"\u00078606049\u0012\u0011\b\"\u0012\u0006\u0010\u00fb\u00f3\u0097\u00a8\u0006\"\u000537428\u0012\u0011\b#\u0012\u0006\u0010\u00bb\u00f4\u0097\u00a8\u0006\"\u000536551\u0012\u0011\b$\u0012\u0006\u0010\u00d0\u00f4\u0097\u00a8\u0006\"\u000536552\u0012\u0011\b%\u0012\u0006\u0010\u00ef\u00f4\u0097\u00a8\u0006\"\u000536553\u0012\u0011\b&\u0012\u0006\u0010\u008b\u00f5\u0097\u00a8\u0006\"\u000536554\u0012\u0011\b'\u0012\u0006\u0010\u00ef\u00f5\u0097\u00a8\u0006\"\u000539657\u0012\u0011\b(\u0012\u0006\u0010\u0097\u00f6\u0097\u00a8\u0006\"\u000539658\u0012\u0011\b)\u0012\u0006\u0010\u00cd\u00f6\u0097\u00a8\u0006\"\u000539659\u0012\u0011\b*\u0012\u0006\u0010\u00ea\u00f6\u0097\u00a8\u0006\"\u000539660\u0012\u0011\b+\u0012\u0006\u0010\u0089\u00f7\u0097\u00a8\u0006\"\u000539661\u0012\u0011\b,\u0012\u0006\u0010\u00ba\u00f7\u0097\u00a8\u0006\"\u000539662\u0012\u0011\b-\u0012\u0006\u0010\u00f7\u00f7\u0097\u00a8\u0006\"\u000539663\u0012\u0011\b.\u0012\u0006\u0010\u00a7\u00f8\u0097\u00a8\u0006\"\u000539664\u0012\u0011\b/\u0012\u0006\u0010\u00d8\u00f8\u0097\u00a8\u0006\"\u000539665\u0012\u0011\b0\u0012\u0006\u0010\u00ab\u00f9\u0097\u00a8\u0006\"\u000542522\u0012\u0011\b1\u0012\u0006\u0010\u00e0\u00f9\u0097\u00a8\u0006\"\u000542524\u0012\u0011\b2\u0012\u0006\u0010\u0096\u00fa\u0097\u00a8\u0006\"\u000539686\u0012\u0011\b3\u0012\u0006\u0010\u00a4\u00fa\u0097\u00a8\u0006\"\u000539687\u0012\u0011\b4\u0012\u0006\u0010\u00d1\u00fb\u0097\u00a8\u0006\"\u000539232\u0012\u0011\b5\u0012\u0006\u0010\u0086\u00fc\u0097\u00a8\u0006\"\u000539233\u0012\u0011\b6\u0012\u0006\u0010\u00d2\u00fc\u0097\u00a8\u0006\"\u000539234\u0012\u0011\b7\u0012\u0006\u0010\u00ec\u00fc\u0097\u00a8\u0006\"\u000539235\u0012\u0011\b8\u0012\u0006\u0010\u0091\u00fe\u0097\u00a8\u0006\"\u000549342\u0012\u0011\b9\u0012\u0006\u0010\u00fe\u00fe\u0097\u00a8\u0006\"\u000549343\u001a\b\u001a\u0006HSBW84 \u00b0\u00e8\u0097\u00a8\u0006\"`\n/\n\u001021942-701ff27f-2\u0012\b15:22:00\u001a\b20230916 \u0000*\u00036000\u0001\u0012\u001d\r\u00ebK\u0013\u00c2\u0015y\u0018\u0092\u00c2\u001d\u0000\u0000pC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b0\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HSBW84" + }, + { + "type": "con_recorrido", + "entity": "\n$338c046b-3057-41cd-8c19-2b6c3cd877a7\u001a\u00de\u0005\n/\n\u001021941-701ff27f-2\u0012\b15:02:00\u001a\b20230916 \u0000*\u00036000\u0001\u0012\u0011\b\u0017\u0012\u0006\u0010\u00bf\u00e8\u0097\u00a8\u0006\"\u000539642\u0012\u0011\b\u0018\u0012\u0006\u0010\u00cc\u00ea\u0097\u00a8\u0006\"\u000539795\u0012\u0011\b\u0019\u0012\u0006\u0010\u0087\u00eb\u0097\u00a8\u0006\"\u000542642\u0012\u0011\b\u001a\u0012\u0006\u0010\u00a8\u00eb\u0097\u00a8\u0006\"\u000542643\u0012\u0011\b\u001b\u0012\u0006\u0010\u00c0\u00eb\u0097\u00a8\u0006\"\u000542644\u0012\u0011\b\u001c\u0012\u0006\u0010\u00d9\u00eb\u0097\u00a8\u0006\"\u000542645\u0012\u0013\b\u001d\u0012\u0006\u0010\u00bf\u00ec\u0097\u00a8\u0006\"\u00078606039\u0012\u0011\b\u001e\u0012\u0006\u0010\u00e0\u00ec\u0097\u00a8\u0006\"\u000536489\u0012\u0011\b\u001f\u0012\u0006\u0010\u00fd\u00ec\u0097\u00a8\u0006\"\u000536490\u0012\u0011\b \u0012\u0006\u0010\u0095\u00ed\u0097\u00a8\u0006\"\u000540714\u0012\u0013\b!\u0012\u0006\u0010\u00d3\u00ed\u0097\u00a8\u0006\"\u00078606049\u0012\u0011\b\"\u0012\u0006\u0010\u0081\u00ee\u0097\u00a8\u0006\"\u000537428\u0012\u0011\b#\u0012\u0006\u0010\u00c0\u00ee\u0097\u00a8\u0006\"\u000536551\u0012\u0011\b$\u0012\u0006\u0010\u00d5\u00ee\u0097\u00a8\u0006\"\u000536552\u0012\u0011\b%\u0012\u0006\u0010\u00f3\u00ee\u0097\u00a8\u0006\"\u000536553\u0012\u0011\b&\u0012\u0006\u0010\u008e\u00ef\u0097\u00a8\u0006\"\u000536554\u0012\u0011\b'\u0012\u0006\u0010\u00ee\u00ef\u0097\u00a8\u0006\"\u000539657\u0012\u0011\b(\u0012\u0006\u0010\u0094\u00f0\u0097\u00a8\u0006\"\u000539658\u0012\u0011\b)\u0012\u0006\u0010\u00c7\u00f0\u0097\u00a8\u0006\"\u000539659\u0012\u0011\b*\u0012\u0006\u0010\u00e2\u00f0\u0097\u00a8\u0006\"\u000539660\u0012\u0011\b+\u0012\u0006\u0010\u00ff\u00f0\u0097\u00a8\u0006\"\u000539661\u0012\u0011\b,\u0012\u0006\u0010\u00ac\u00f1\u0097\u00a8\u0006\"\u000539662\u0012\u0011\b-\u0012\u0006\u0010\u00e5\u00f1\u0097\u00a8\u0006\"\u000539663\u0012\u0011\b.\u0012\u0006\u0010\u0090\u00f2\u0097\u00a8\u0006\"\u000539664\u0012\u0011\b/\u0012\u0006\u0010\u00bd\u00f2\u0097\u00a8\u0006\"\u000539665\u0012\u0011\b0\u0012\u0006\u0010\u0087\u00f3\u0097\u00a8\u0006\"\u000542522\u0012\u0011\b1\u0012\u0006\u0010\u00b7\u00f3\u0097\u00a8\u0006\"\u000542524\u0012\u0011\b2\u0012\u0006\u0010\u00e6\u00f3\u0097\u00a8\u0006\"\u000539686\u0012\u0011\b3\u0012\u0006\u0010\u00f2\u00f3\u0097\u00a8\u0006\"\u000539687\u0012\u0011\b4\u0012\u0006\u0010\u0089\u00f5\u0097\u00a8\u0006\"\u000539232\u0012\u0011\b5\u0012\u0006\u0010\u00b7\u00f5\u0097\u00a8\u0006\"\u000539233\u0012\u0011\b6\u0012\u0006\u0010\u00f8\u00f5\u0097\u00a8\u0006\"\u000539234\u0012\u0011\b7\u0012\u0006\u0010\u008e\u00f6\u0097\u00a8\u0006\"\u000539235\u0012\u0011\b8\u0012\u0006\u0010\u0098\u00f7\u0097\u00a8\u0006\"\u000549342\u0012\u0011\b9\u0012\u0006\u0010\u00f2\u00f7\u0097\u00a8\u0006\"\u000549343\u001a\b\u001a\u0006RVFC75 \u00be\u00e8\u0097\u00a8\u0006\"`\n/\n\u001021941-701ff27f-2\u0012\b15:02:00\u001a\b20230916 \u0000*\u00036000\u0001\u0012\u001d\r\u00f4;\u0013\u00c2\u0015\u008e'\u0092\u00c2\u001d\u0000\u0000\u00a2C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00be\u00e8\u0097\u00a8\u0006B\b\u001a\u0006RVFC75" + }, + { + "type": "con_recorrido", + "entity": "\n$3257727b-615e-4997-8e57-9dca8cb38f95\u001a\u0098\n\n/\n\u001021877-701ff27f-2\u0012\b15:31:00\u001a\b20230916 \u0000*\u00036000\u0000\u0012\u0011\b\u0003\u0012\u0006\u0010\u00ec\u00e7\u0097\u00a8\u0006\"\u000542427\u0012\u0011\b\u0004\u0012\u0006\u0010\u0089\u00e8\u0097\u00a8\u0006\"\u000542428\u0012\u0011\b\u0005\u0012\u0006\u0010\u00b2\u00e8\u0097\u00a8\u0006\"\u000542429\u0012\u0011\b\u0006\u0012\u0006\u0010\u0096\u00e9\u0097\u00a8\u0006\"\u000539668\u0012\u0011\b\u0007\u0012\u0006\u0010\u00ae\u00e9\u0097\u00a8\u0006\"\u000539234\u0012\u0011\b\b\u0012\u0006\u0010\u00b4\u00e9\u0097\u00a8\u0006\"\u000539669\u0012\u0011\b\t\u0012\u0006\u0010\u00d1\u00e9\u0097\u00a8\u0006\"\u000539670\u0012\u0011\b\n\u0012\u0006\u0010\u00e7\u00e9\u0097\u00a8\u0006\"\u000539233\u0012\u0011\b\u000b\u0012\u0006\u0010\u0090\u00ea\u0097\u00a8\u0006\"\u000536752\u0012\u0011\b\f\u0012\u0006\u0010\u00ea\u00ea\u0097\u00a8\u0006\"\u000539231\u0012\u0013\b\r\u0012\u0006\u0010\u0094\u00eb\u0097\u00a8\u0006\"\u00078606050\u0012\u0011\b\u000e\u0012\u0006\u0010\u00ae\u00eb\u0097\u00a8\u0006\"\u000536754\u0012\u0011\b\u000f\u0012\u0006\u0010\u00e4\u00eb\u0097\u00a8\u0006\"\u000537101\u0012\u0011\b\u0010\u0012\u0006\u0010\u0094\u00ec\u0097\u00a8\u0006\"\u000542653\u0012\u0011\b\u0011\u0012\u0006\u0010\u00b9\u00ec\u0097\u00a8\u0006\"\u000542654\u0012\u0011\b\u0012\u0012\u0006\u0010\u00e5\u00ec\u0097\u00a8\u0006\"\u000537046\u0012\u0011\b\u0013\u0012\u0006\u0010\u0093\u00ed\u0097\u00a8\u0006\"\u000537047\u0012\u0011\b\u0014\u0012\u0006\u0010\u00b9\u00ed\u0097\u00a8\u0006\"\u000537048\u0012\u0011\b\u0015\u0012\u0006\u0010\u00dd\u00ed\u0097\u00a8\u0006\"\u000542431\u0012\u0011\b\u0016\u0012\u0006\u0010\u00ef\u00ed\u0097\u00a8\u0006\"\u000542432\u0012\u0011\b\u0017\u0012\u0006\u0010\u00a1\u00ee\u0097\u00a8\u0006\"\u000537578\u0012\u0011\b\u0018\u0012\u0006\u0010\u00c6\u00ee\u0097\u00a8\u0006\"\u000539660\u0012\u0011\b\u0019\u0012\u0006\u0010\u00e1\u00ee\u0097\u00a8\u0006\"\u000539659\u0012\u0011\b\u001a\u0012\u0006\u0010\u008d\u00ef\u0097\u00a8\u0006\"\u000537581\u0012\u0011\b\u001b\u0012\u0006\u0010\u00a9\u00ef\u0097\u00a8\u0006\"\u000537436\u0012\u0011\b\u001c\u0012\u0006\u0010\u0098\u00f0\u0097\u00a8\u0006\"\u000536768\u0012\u0011\b\u001d\u0012\u0006\u0010\u00bf\u00f0\u0097\u00a8\u0006\"\u000536769\u0012\u0011\b\u001e\u0012\u0006\u0010\u00f3\u00f0\u0097\u00a8\u0006\"\u000536771\u0012\u0011\b\u001f\u0012\u0006\u0010\u008a\u00f1\u0097\u00a8\u0006\"\u000536772\u0012\u0011\b \u0012\u0006\u0010\u00d5\u00f1\u0097\u00a8\u0006\"\u000537590\u0012\u0011\b!\u0012\u0006\u0010\u0094\u00f2\u0097\u00a8\u0006\"\u000540760\u0012\u0011\b\"\u0012\u0006\u0010\u00b0\u00f2\u0097\u00a8\u0006\"\u000536686\u0012\u0011\b#\u0012\u0006\u0010\u00cd\u00f2\u0097\u00a8\u0006\"\u000536687\u0012\u0013\b$\u0012\u0006\u0010\u00e7\u00f2\u0097\u00a8\u0006\"\u00078606039\u0012\u0011\b%\u0012\u0006\u0010\u0090\u00f3\u0097\u00a8\u0006\"\u000542532\u0012\u0011\b&\u0012\u0006\u0010\u00c3\u00f3\u0097\u00a8\u0006\"\u000542533\u0012\u0011\b'\u0012\u0006\u0010\u00fd\u00f3\u0097\u00a8\u0006\"\u000542534\u0012\u0011\b(\u0012\u0006\u0010\u00a4\u00f4\u0097\u00a8\u0006\"\u000542535\u0012\u0011\b)\u0012\u0006\u0010\u00fe\u00f4\u0097\u00a8\u0006\"\u000538502\u0012\u0011\b*\u0012\u0006\u0010\u00bb\u00f5\u0097\u00a8\u0006\"\u000538503\u0012\u0011\b+\u0012\u0006\u0010\u00e1\u00f6\u0097\u00a8\u0006\"\u000535691\u0012\u0011\b,\u0012\u0006\u0010\u00cb\u00f7\u0097\u00a8\u0006\"\u000535693\u0012\u0011\b-\u0012\u0006\u0010\u0086\u00f8\u0097\u00a8\u0006\"\u000535694\u0012\u0011\b.\u0012\u0006\u0010\u00ad\u00f8\u0097\u00a8\u0006\"\u000535695\u0012\u0011\b/\u0012\u0006\u0010\u00e7\u00f8\u0097\u00a8\u0006\"\u000535696\u0012\u0011\b0\u0012\u0006\u0010\u00ab\u00fa\u0097\u00a8\u0006\"\u000535697\u0012\u0011\b1\u0012\u0006\u0010\u009c\u00fb\u0097\u00a8\u0006\"\u00052-Jan\u0012\u0011\b2\u0012\u0006\u0010\u00c0\u00fb\u0097\u00a8\u0006\"\u000542460\u0012\u0011\b3\u0012\u0006\u0010\u00f1\u00fb\u0097\u00a8\u0006\"\u000535690\u0012\u0011\b4\u0012\u0006\u0010\u00ef\u00fc\u0097\u00a8\u0006\"\u000535700\u0012\u0011\b5\u0012\u0006\u0010\u00dd\u00fd\u0097\u00a8\u0006\"\u000535703\u0012\u0011\b6\u0012\u0006\u0010\u0086\u00fe\u0097\u00a8\u0006\"\u000535704\u0012\u0011\b7\u0012\u0006\u0010\u0099\u00fe\u0097\u00a8\u0006\"\u000535705\u0012\u0011\b8\u0012\u0006\u0010\u00b2\u00fe\u0097\u00a8\u0006\"\u000535706\u0012\u0011\b9\u0012\u0006\u0010\u00fb\u00fe\u0097\u00a8\u0006\"\u000535707\u0012\u0011\b:\u0012\u0006\u0010\u00f6\u00ff\u0097\u00a8\u0006\"\u000538281\u0012\u0011\b;\u0012\u0006\u0010\u00c5\u0080\u0098\u00a8\u0006\"\u000534586\u0012\u0011\b<\u0012\u0006\u0010\u00ef\u0080\u0098\u00a8\u0006\"\u000534587\u0012\u0011\b=\u0012\u0006\u0010\u0094\u0081\u0098\u00a8\u0006\"\u000534588\u0012\u0011\b>\u0012\u0006\u0010\u00d7\u0081\u0098\u00a8\u0006\"\u000539497\u0012\u0011\b?\u0012\u0006\u0010\u008a\u0082\u0098\u00a8\u0006\"\u000549407\u0012\u0011\b@\u0012\u0006\u0010\u00e0\u0082\u0098\u00a8\u0006\"\u000550034\u0012\u0011\bA\u0012\u0006\u0010\u009d\u0083\u0098\u00a8\u0006\"\u000540903\u0012\u0011\bB\u0012\u0006\u0010\u00ed\u0083\u0098\u00a8\u0006\"\u000550035\u0012\u0011\bC\u0012\u0006\u0010\u0085\u0087\u0098\u00a8\u0006\"\u000535713\u001a\b\u001a\u0006RW9701 \u0086\u00e7\u0097\u00a8\u0006\"`\n/\n\u001021877-701ff27f-2\u0012\b15:31:00\u001a\b20230916 \u0000*\u00036000\u0000\u0012\u001d\rC\u0018\u0013\u00c2\u0015X:\u0092\u00c2\u001d\u0000\u0000&C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-r\u001c?A(\u0086\u00e7\u0097\u00a8\u0006B\b\u001a\u0006RW9701" + }, + { + "type": "con_recorrido", + "entity": "\n$1b151cf4-c0ee-47ac-913b-a629fc850a45\u001a\u00f7\u0006\n/\n\u001022075-701ff27f-2\u0012\b15:22:00\u001a\b20230916 \u0000*\u00036010\u0001\u0012\u0011\b\u0011\u0012\u0006\u0010\u00db\u00e8\u0097\u00a8\u0006\"\u000538528\u0012\u0011\b\u0012\u0012\u0006\u0010\u00da\u00e9\u0097\u00a8\u0006\"\u000538529\u0012\u0011\b\u0013\u0012\u0006\u0010\u00ac\u00eb\u0097\u00a8\u0006\"\u000538530\u0012\u0014\b\u0014\u0012\u0006\u0010\u00b9\u00eb\u0097\u00a8\u0006\"\b16005209\u0012\u0011\b\u0015\u0012\u0006\u0010\u00e4\u00ed\u0097\u00a8\u0006\"\u000536001\u0012\u0011\b\u0016\u0012\u0006\u0010\u00fa\u00ee\u0097\u00a8\u0006\"\u000542604\u0012\u0011\b\u0017\u0012\u0006\u0010\u00e8\u00ef\u0097\u00a8\u0006\"\u000538692\u0012\u0011\b\u0018\u0012\u0006\u0010\u00ab\u00f0\u0097\u00a8\u0006\"\u000538714\u0012\u0011\b\u0019\u0012\u0006\u0010\u00d9\u00f0\u0097\u00a8\u0006\"\u000539791\u0012\u0011\b\u001a\u0012\u0006\u0010\u00ee\u00f0\u0097\u00a8\u0006\"\u000549329\u0012\u0011\b\u001b\u0012\u0006\u0010\u00a4\u00f1\u0097\u00a8\u0006\"\u000549330\u0012\u0011\b\u001c\u0012\u0006\u0010\u00d0\u00f1\u0097\u00a8\u0006\"\u000539652\u0012\u0011\b\u001d\u0012\u0006\u0010\u0085\u00f2\u0097\u00a8\u0006\"\u000536683\u0012\u0011\b\u001e\u0012\u0006\u0010\u0097\u00f2\u0097\u00a8\u0006\"\u000537590\u0012\u0011\b\u001f\u0012\u0006\u0010\u00d5\u00f2\u0097\u00a8\u0006\"\u000540760\u0012\u0011\b \u0012\u0006\u0010\u00f1\u00f2\u0097\u00a8\u0006\"\u000536686\u0012\u0011\b!\u0012\u0006\u0010\u008e\u00f3\u0097\u00a8\u0006\"\u000536687\u0012\u0013\b\"\u0012\u0006\u0010\u00a7\u00f3\u0097\u00a8\u0006\"\u00078606039\u0012\u0011\b#\u0012\u0006\u0010\u00ce\u00f3\u0097\u00a8\u0006\"\u000536641\u0012\u0011\b$\u0012\u0006\u0010\u00cb\u00f4\u0097\u00a8\u0006\"\u000536689\u0012\u0011\b%\u0012\u0006\u0010\u00f8\u00f4\u0097\u00a8\u0006\"\u000536690\u0012\u0011\b&\u0012\u0006\u0010\u00ae\u00f5\u0097\u00a8\u0006\"\u000536691\u0012\u0011\b'\u0012\u0006\u0010\u00d1\u00f5\u0097\u00a8\u0006\"\u000536692\u0012\u0011\b(\u0012\u0006\u0010\u00e2\u00f5\u0097\u00a8\u0006\"\u000536693\u0012\u0011\b)\u0012\u0006\u0010\u0090\u00f6\u0097\u00a8\u0006\"\u000540036\u0012\u0011\b*\u0012\u0006\u0010\u00ce\u00f6\u0097\u00a8\u0006\"\u000536695\u0012\u0011\b+\u0012\u0006\u0010\u0080\u00f7\u0097\u00a8\u0006\"\u000536696\u0012\u0011\b,\u0012\u0006\u0010\u00bf\u00f7\u0097\u00a8\u0006\"\u000539229\u0012\u0011\b-\u0012\u0006\u0010\u00e3\u00f7\u0097\u00a8\u0006\"\u000532587\u0012\u0011\b.\u0012\u0006\u0010\u009e\u00f8\u0097\u00a8\u0006\"\u000539139\u0012\u0011\b/\u0012\u0006\u0010\u00d0\u00fa\u0097\u00a8\u0006\"\u000536699\u0012\u0011\b0\u0012\u0006\u0010\u00ed\u00fa\u0097\u00a8\u0006\"\u000536700\u0012\u0011\b1\u0012\u0006\u0010\u0091\u00fb\u0097\u00a8\u0006\"\u000536701\u0012\u0011\b2\u0012\u0006\u0010\u00a9\u00fb\u0097\u00a8\u0006\"\u000536702\u0012\u0011\b3\u0012\u0006\u0010\u00b8\u00fb\u0097\u00a8\u0006\"\u000536703\u0012\u0011\b4\u0012\u0006\u0010\u00da\u00fb\u0097\u00a8\u0006\"\u000536704\u0012\u0011\b5\u0012\u0006\u0010\u0090\u00fc\u0097\u00a8\u0006\"\u000539231\u0012\u0011\b6\u0012\u0006\u0010\u00ee\u00fc\u0097\u00a8\u0006\"\u000539232\u0012\u0011\b7\u0012\u0006\u0010\u00a5\u00fd\u0097\u00a8\u0006\"\u000539233\u0012\u0011\b8\u0012\u0006\u0010\u00f4\u00fd\u0097\u00a8\u0006\"\u000539234\u0012\u0011\b9\u0012\u0006\u0010\u008f\u00fe\u0097\u00a8\u0006\"\u000539235\u0012\u0011\b:\u0012\u0006\u0010\u00bc\u00ff\u0097\u00a8\u0006\"\u000549342\u0012\u0011\b;\u0012\u0006\u0010\u00b7\u0080\u0098\u00a8\u0006\"\u000549343\u001a\b\u001a\u0006BBFV12 \u00a8\u00e8\u0097\u00a8\u0006\"`\n/\n\u001022075-701ff27f-2\u0012\b15:22:00\u001a\b20230916 \u0000*\u00036010\u0001\u0012\u001d\rj6\u0013\u00c2\u0015F\u001c\u0092\u00c2\u001d\u0000\u0000\u00a7C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u008e@(\u00a8\u00e8\u0097\u00a8\u0006B\b\u001a\u0006BBFV12" + }, + { + "type": "con_recorrido", + "entity": "\n$16bc65ce-2e7a-4064-8ebb-fbcafbb45818\u001a\u008d\u0006\n/\n\u001022009-701ff27f-2\u0012\b15:16:00\u001a\b20230916 \u0000*\u00036010\u0000\u0012\u0013\b\u001c\u0012\u0006\u0010\u009c\u00e8\u0097\u00a8\u0006\"\u00073890531\u0012\u0013\b\u001d\u0012\u0006\u0010\u00c4\u00e8\u0097\u00a8\u0006\"\u00073890533\u0012\u0011\b\u001e\u0012\u0006\u0010\u00eb\u00e8\u0097\u00a8\u0006\"\u000532571\u0012\u0011\b\u001f\u0012\u0006\u0010\u00ac\u00e9\u0097\u00a8\u0006\"\u000532736\u0012\u0013\b \u0012\u0006\u0010\u00d5\u00e9\u0097\u00a8\u0006\"\u00078606039\u0012\u0011\b!\u0012\u0006\u0010\u00f6\u00e9\u0097\u00a8\u0006\"\u000536489\u0012\u0011\b\"\u0012\u0006\u0010\u0095\u00ea\u0097\u00a8\u0006\"\u000536490\u0012\u0011\b#\u0012\u0006\u0010\u00ae\u00ea\u0097\u00a8\u0006\"\u000540714\u0012\u0013\b$\u0012\u0006\u0010\u00ee\u00ea\u0097\u00a8\u0006\"\u00078606049\u0012\u0011\b%\u0012\u0006\u0010\u0095\u00eb\u0097\u00a8\u0006\"\u000537840\u0012\u0011\b&\u0012\u0006\u0010\u00ae\u00eb\u0097\u00a8\u0006\"\u000549140\u0012\u0011\b'\u0012\u0006\u0010\u00d7\u00eb\u0097\u00a8\u0006\"\u000549141\u0012\u0011\b(\u0012\u0006\u0010\u00fe\u00eb\u0097\u00a8\u0006\"\u000549142\u0012\u0011\b)\u0012\u0006\u0010\u00a3\u00ec\u0097\u00a8\u0006\"\u000549143\u0012\u0011\b*\u0012\u0006\u0010\u00aa\u00ec\u0097\u00a8\u0006\"\u000545112\u0012\u0011\b+\u0012\u0006\u0010\u00dd\u00ec\u0097\u00a8\u0006\"\u000545113\u0012\u0011\b,\u0012\u0006\u0010\u00ac\u00ed\u0097\u00a8\u0006\"\u000537490\u0012\u0011\b-\u0012\u0006\u0010\u0085\u00ee\u0097\u00a8\u0006\"\u000537104\u0012\u0013\b.\u0012\u0006\u0010\u00ad\u00ee\u0097\u00a8\u0006\"\u00078606052\u0012\u0014\b/\u0012\u0006\u0010\u00aa\u00f0\u0097\u00a8\u0006\"\b16005188\u0012\u0011\b0\u0012\u0006\u0010\u0099\u00f2\u0097\u00a8\u0006\"\u000540995\u0012\u0011\b1\u0012\u0006\u0010\u00e8\u00f2\u0097\u00a8\u0006\"\u000540996\u0012\u0011\b2\u0012\u0006\u0010\u00b4\u00f3\u0097\u00a8\u0006\"\u000540997\u0012\u0011\b3\u0012\u0006\u0010\u00ee\u00f3\u0097\u00a8\u0006\"\u000539614\u0012\u0011\b4\u0012\u0006\u0010\u009f\u00f4\u0097\u00a8\u0006\"\u000539615\u0012\u0011\b5\u0012\u0006\u0010\u00cf\u00f4\u0097\u00a8\u0006\"\u000539616\u0012\u0011\b6\u0012\u0006\u0010\u0086\u00f5\u0097\u00a8\u0006\"\u000539617\u0012\u0011\b7\u0012\u0006\u0010\u00c1\u00f5\u0097\u00a8\u0006\"\u000539618\u0012\u0011\b8\u0012\u0006\u0010\u00f0\u00f5\u0097\u00a8\u0006\"\u000539619\u0012\u0011\b9\u0012\u0006\u0010\u0098\u00f6\u0097\u00a8\u0006\"\u000539620\u0012\u0011\b:\u0012\u0006\u0010\u00df\u00f6\u0097\u00a8\u0006\"\u000539621\u0012\u0011\b;\u0012\u0006\u0010\u009d\u00f7\u0097\u00a8\u0006\"\u000539623\u0012\u0011\b<\u0012\u0006\u0010\u00d0\u00f7\u0097\u00a8\u0006\"\u000539624\u0012\u0011\b=\u0012\u0006\u0010\u0096\u00f8\u0097\u00a8\u0006\"\u000590000\u0012\u0011\b>\u0012\u0006\u0010\u00cd\u00f8\u0097\u00a8\u0006\"\u000539628\u0012\u0011\b?\u0012\u0006\u0010\u00a1\u00f9\u0097\u00a8\u0006\"\u000539631\u0012\u0011\b@\u0012\u0006\u0010\u00d6\u00f9\u0097\u00a8\u0006\"\u000549311\u001a\b\u001a\u0006BFPV68 \u008e\u00e8\u0097\u00a8\u0006\"`\n/\n\u001022009-701ff27f-2\u0012\b15:16:00\u001a\b20230916 \u0000*\u00036010\u0000\u0012\u001d\r?7\u0013\u00c2\u0015\u000f4\u0092\u00c2\u001d\u0000\u0000\u00f4B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48^A(\u008e\u00e8\u0097\u00a8\u0006B\b\u001a\u0006BFPV68" + }, + { + "type": "con_recorrido", + "entity": "\n$01045ffd-3e51-4f12-aa59-9b8d48d48289\u001a\u00de\u0002\n/\n\u001022007-701ff27f-2\u0012\b14:46:00\u001a\b20230916 \u0000*\u00036010\u0000\u0012\u0011\b2\u0012\u0006\u0010\u00d5\u00e8\u0097\u00a8\u0006\"\u000540997\u0012\u0011\b3\u0012\u0006\u0010\u0093\u00e9\u0097\u00a8\u0006\"\u000539614\u0012\u0011\b4\u0012\u0006\u0010\u00c6\u00e9\u0097\u00a8\u0006\"\u000539615\u0012\u0011\b5\u0012\u0006\u0010\u00f9\u00e9\u0097\u00a8\u0006\"\u000539616\u0012\u0011\b6\u0012\u0006\u0010\u00b1\u00ea\u0097\u00a8\u0006\"\u000539617\u0012\u0011\b7\u0012\u0006\u0010\u00ed\u00ea\u0097\u00a8\u0006\"\u000539618\u0012\u0011\b8\u0012\u0006\u0010\u009c\u00eb\u0097\u00a8\u0006\"\u000539619\u0012\u0011\b9\u0012\u0006\u0010\u00c3\u00eb\u0097\u00a8\u0006\"\u000539620\u0012\u0011\b:\u0012\u0006\u0010\u0088\u00ec\u0097\u00a8\u0006\"\u000539621\u0012\u0011\b;\u0012\u0006\u0010\u00c3\u00ec\u0097\u00a8\u0006\"\u000539623\u0012\u0011\b<\u0012\u0006\u0010\u00f3\u00ec\u0097\u00a8\u0006\"\u000539624\u0012\u0011\b=\u0012\u0006\u0010\u00b4\u00ed\u0097\u00a8\u0006\"\u000590000\u0012\u0011\b>\u0012\u0006\u0010\u00e6\u00ed\u0097\u00a8\u0006\"\u000539628\u0012\u0011\b?\u0012\u0006\u0010\u00b1\u00ee\u0097\u00a8\u0006\"\u000539631\u0012\u0011\b@\u0012\u0006\u0010\u00df\u00ee\u0097\u00a8\u0006\"\u000549311\u001a\b\u001a\u0006CYSD25 \u00b8\u00e8\u0097\u00a8\u0006\"`\n/\n\u001022007-701ff27f-2\u0012\b14:46:00\u001a\b20230916 \u0000*\u00036010\u0000\u0012\u001d\r\u00ab6\u0013\u00c2\u00158\u001c\u0092\u00c2\u001d\u0000\u0000\u0012C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008e\u00e3\u0000A(\u00b8\u00e8\u0097\u00a8\u0006B\b\u001a\u0006CYSD25" + }, + { + "type": "con_recorrido", + "entity": "\n$242d228a-2a04-4245-a207-302a6eca0ec0\u001a\u00a7\t\n/\n\u001022076-701ff27f-2\u0012\b15:42:00\u001a\b20230916 \u0000*\u00036010\u0001\u0012\u0011\b\u0001\u0012\u0006\u0010\u00f3\u00e8\u0097\u00a8\u0006\"\u000535700\u0012\u0011\b\u0002\u0012\u0006\u0010\u0092\u00e9\u0097\u00a8\u0006\"\u000535701\u0012\u0011\b\u0003\u0012\u0006\u0010\u00d6\u00e9\u0097\u00a8\u0006\"\u000535703\u0012\u0011\b\u0004\u0012\u0006\u0010\u00e5\u00e9\u0097\u00a8\u0006\"\u000535704\u0012\u0011\b\u0005\u0012\u0006\u0010\u00fd\u00e9\u0097\u00a8\u0006\"\u000535705\u0012\u0011\b\u0006\u0012\u0006\u0010\u0090\u00ea\u0097\u00a8\u0006\"\u000535706\u0012\u0011\b\u0007\u0012\u0006\u0010\u00c9\u00ea\u0097\u00a8\u0006\"\u000535707\u0012\u0011\b\b\u0012\u0006\u0010\u00e3\u00ea\u0097\u00a8\u0006\"\u000535708\u0012\u0011\b\t\u0012\u0006\u0010\u00a6\u00eb\u0097\u00a8\u0006\"\u000538520\u0012\u0011\b\n\u0012\u0006\u0010\u00cf\u00eb\u0097\u00a8\u0006\"\u000538521\u0012\u0011\b\u000b\u0012\u0006\u0010\u0080\u00ec\u0097\u00a8\u0006\"\u000538522\u0012\u0011\b\f\u0012\u0006\u0010\u00b2\u00ec\u0097\u00a8\u0006\"\u000538523\u0012\u0011\b\r\u0012\u0006\u0010\u00e6\u00ec\u0097\u00a8\u0006\"\u000538524\u0012\u0011\b\u000e\u0012\u0006\u0010\u0096\u00ed\u0097\u00a8\u0006\"\u000538525\u0012\u0011\b\u000f\u0012\u0006\u0010\u00c9\u00ed\u0097\u00a8\u0006\"\u000538526\u0012\u0011\b\u0010\u0012\u0006\u0010\u00f9\u00ed\u0097\u00a8\u0006\"\u000538527\u0012\u0011\b\u0011\u0012\u0006\u0010\u00ce\u00ee\u0097\u00a8\u0006\"\u000538528\u0012\u0011\b\u0012\u0012\u0006\u0010\u00c3\u00ef\u0097\u00a8\u0006\"\u000538529\u0012\u0011\b\u0013\u0012\u0006\u0010\u008a\u00f1\u0097\u00a8\u0006\"\u000538530\u0012\u0014\b\u0014\u0012\u0006\u0010\u0097\u00f1\u0097\u00a8\u0006\"\b16005209\u0012\u0011\b\u0015\u0012\u0006\u0010\u00bd\u00f3\u0097\u00a8\u0006\"\u000536001\u0012\u0011\b\u0016\u0012\u0006\u0010\u00d7\u00f4\u0097\u00a8\u0006\"\u000542604\u0012\u0011\b\u0017\u0012\u0006\u0010\u00c8\u00f5\u0097\u00a8\u0006\"\u000538692\u0012\u0011\b\u0018\u0012\u0006\u0010\u008f\u00f6\u0097\u00a8\u0006\"\u000538714\u0012\u0011\b\u0019\u0012\u0006\u0010\u00c0\u00f6\u0097\u00a8\u0006\"\u000539791\u0012\u0011\b\u001a\u0012\u0006\u0010\u00d6\u00f6\u0097\u00a8\u0006\"\u000549329\u0012\u0011\b\u001b\u0012\u0006\u0010\u0091\u00f7\u0097\u00a8\u0006\"\u000549330\u0012\u0011\b\u001c\u0012\u0006\u0010\u00c0\u00f7\u0097\u00a8\u0006\"\u000539652\u0012\u0011\b\u001d\u0012\u0006\u0010\u00fa\u00f7\u0097\u00a8\u0006\"\u000536683\u0012\u0011\b\u001e\u0012\u0006\u0010\u008e\u00f8\u0097\u00a8\u0006\"\u000537590\u0012\u0011\b\u001f\u0012\u0006\u0010\u00d2\u00f8\u0097\u00a8\u0006\"\u000540760\u0012\u0011\b \u0012\u0006\u0010\u00f1\u00f8\u0097\u00a8\u0006\"\u000536686\u0012\u0011\b!\u0012\u0006\u0010\u0091\u00f9\u0097\u00a8\u0006\"\u000536687\u0012\u0013\b\"\u0012\u0006\u0010\u00ae\u00f9\u0097\u00a8\u0006\"\u00078606039\u0012\u0011\b#\u0012\u0006\u0010\u00d9\u00f9\u0097\u00a8\u0006\"\u000536641\u0012\u0011\b$\u0012\u0006\u0010\u00e8\u00fa\u0097\u00a8\u0006\"\u000536689\u0012\u0011\b%\u0012\u0006\u0010\u009a\u00fb\u0097\u00a8\u0006\"\u000536690\u0012\u0011\b&\u0012\u0006\u0010\u00da\u00fb\u0097\u00a8\u0006\"\u000536691\u0012\u0011\b'\u0012\u0006\u0010\u0083\u00fc\u0097\u00a8\u0006\"\u000536692\u0012\u0011\b(\u0012\u0006\u0010\u0096\u00fc\u0097\u00a8\u0006\"\u000536693\u0012\u0011\b)\u0012\u0006\u0010\u00cc\u00fc\u0097\u00a8\u0006\"\u000540036\u0012\u0011\b*\u0012\u0006\u0010\u0095\u00fd\u0097\u00a8\u0006\"\u000536695\u0012\u0011\b+\u0012\u0006\u0010\u00d1\u00fd\u0097\u00a8\u0006\"\u000536696\u0012\u0011\b,\u0012\u0006\u0010\u009d\u00fe\u0097\u00a8\u0006\"\u000539229\u0012\u0011\b-\u0012\u0006\u0010\u00c8\u00fe\u0097\u00a8\u0006\"\u000532587\u0012\u0011\b.\u0012\u0006\u0010\u0090\u00ff\u0097\u00a8\u0006\"\u000539139\u0012\u0011\b/\u0012\u0006\u0010\u008c\u0082\u0098\u00a8\u0006\"\u000536699\u0012\u0011\b0\u0012\u0006\u0010\u00b1\u0082\u0098\u00a8\u0006\"\u000536700\u0012\u0011\b1\u0012\u0006\u0010\u00de\u0082\u0098\u00a8\u0006\"\u000536701\u0012\u0011\b2\u0012\u0006\u0010\u00fe\u0082\u0098\u00a8\u0006\"\u000536702\u0012\u0011\b3\u0012\u0006\u0010\u0091\u0083\u0098\u00a8\u0006\"\u000536703\u0012\u0011\b4\u0012\u0006\u0010\u00bc\u0083\u0098\u00a8\u0006\"\u000536704\u0012\u0011\b5\u0012\u0006\u0010\u0082\u0084\u0098\u00a8\u0006\"\u000539231\u0012\u0011\b6\u0012\u0006\u0010\u00fc\u0084\u0098\u00a8\u0006\"\u000539232\u0012\u0011\b7\u0012\u0006\u0010\u00c5\u0085\u0098\u00a8\u0006\"\u000539233\u0012\u0011\b8\u0012\u0006\u0010\u00af\u0086\u0098\u00a8\u0006\"\u000539234\u0012\u0011\b9\u0012\u0006\u0010\u00d3\u0086\u0098\u00a8\u0006\"\u000539235\u0012\u0011\b:\u0012\u0006\u0010\u00bb\u0088\u0098\u00a8\u0006\"\u000549342\u0012\u0011\b;\u0012\u0006\u0010\u00e4\u0089\u0098\u00a8\u0006\"\u000549343\u001a\b\u001a\u0006RSZJ30 \u0096\u00e8\u0097\u00a8\u0006\"`\n/\n\u001022076-701ff27f-2\u0012\b15:42:00\u001a\b20230916 \u0000*\u00036010\u0001\u0012\u001d\r5P\u0013\u00c2\u0015\u009a\u001e\u0092\u00c2\u001d\u0000\u0000\u00a6C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u001c\u00c7\u00b1?(\u0096\u00e8\u0097\u00a8\u0006B\b\u001a\u0006RSZJ30" + }, + { + "type": "con_recorrido", + "entity": "\n$b7070b35-28ea-414a-acfd-f794fce3bde7\u001az\n/\n\u001022150-701ff27f-2\u0012\b14:48:00\u001a\b20230916 \u0000*\u00036020\u0000\u0012\u0011\b/\u0012\u0006\u0010\u0099\u00e8\u0097\u00a8\u0006\"\u000545069\u0012\u0011\b0\u0012\u0006\u0010\u0090\u00e9\u0097\u00a8\u0006\"\u000537523\u0012\u0011\b1\u0012\u0006\u0010\u00ba\u00e9\u0097\u00a8\u0006\"\u000537477\u001a\b\u001a\u0006WD9973 \u0094\u00e8\u0097\u00a8\u0006\"`\n/\n\u001022150-701ff27f-2\u0012\b14:48:00\u001a\b20230916 \u0000*\u00036020\u0000\u0012\u001d\rWN\u0013\u00c2\u0015C\u0018\u0092\u00c2\u001d\u0000\u0000pC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0094\u00e8\u0097\u00a8\u0006B\b\u001a\u0006WD9973" + }, + { + "type": "con_recorrido", + "entity": "\n$f482c20d-c72a-4efe-8048-c530b05a15a8\u001a\u00cb\u0002\n/\n\u001022151-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00036020\u0000\u0012\u0011\b$\u0012\u0006\u0010\u00c2\u00e8\u0097\u00a8\u0006\"\u000540997\u0012\u0011\b%\u0012\u0006\u0010\u0080\u00e9\u0097\u00a8\u0006\"\u000539614\u0012\u0011\b&\u0012\u0006\u0010\u00b2\u00e9\u0097\u00a8\u0006\"\u000539615\u0012\u0011\b'\u0012\u0006\u0010\u00e6\u00e9\u0097\u00a8\u0006\"\u000539616\u0012\u0011\b(\u0012\u0006\u0010\u009e\u00ea\u0097\u00a8\u0006\"\u000539617\u0012\u0011\b)\u0012\u0006\u0010\u00d9\u00ea\u0097\u00a8\u0006\"\u000539618\u0012\u0011\b*\u0012\u0006\u0010\u0086\u00eb\u0097\u00a8\u0006\"\u000539619\u0012\u0011\b+\u0012\u0006\u0010\u00b0\u00eb\u0097\u00a8\u0006\"\u000539620\u0012\u0011\b,\u0012\u0006\u0010\u00f4\u00eb\u0097\u00a8\u0006\"\u000539621\u0012\u0011\b-\u0012\u0006\u0010\u00a2\u00ec\u0097\u00a8\u0006\"\u000538281\u0012\u0011\b.\u0012\u0006\u0010\u00db\u00ec\u0097\u00a8\u0006\"\u000537506\u0012\u0011\b/\u0012\u0006\u0010\u00a5\u00ed\u0097\u00a8\u0006\"\u000545069\u0012\u0011\b0\u0012\u0006\u0010\u0093\u00ee\u0097\u00a8\u0006\"\u000537523\u0012\u0011\b1\u0012\u0006\u0010\u00ba\u00ee\u0097\u00a8\u0006\"\u000537477\u001a\b\u001a\u0006WJ2140 \u0098\u00e8\u0097\u00a8\u0006\"`\n/\n\u001022151-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00036020\u0000\u0012\u001d\r,6\u0013\u00c2\u0015f\u001c\u0092\u00c2\u001d\u0000\u0000\u0018C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u001c\u00c7\tA(\u0098\u00e8\u0097\u00a8\u0006B\b\u001a\u0006WJ2140" + }, + { + "type": "con_recorrido", + "entity": "\n$d8f7e17e-05b0-4a47-a206-96c6ad837f6e\u001a\u00d7\u0004\n/\n\u001022322-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00036030\u0000\u0012\u0011\b'\u0012\u0006\u0010\u0099\u00e8\u0097\u00a8\u0006\"\u000535694\u0012\u0011\b(\u0012\u0006\u0010\u00bb\u00e8\u0097\u00a8\u0006\"\u000535695\u0012\u0011\b)\u0012\u0006\u0010\u00c8\u00e8\u0097\u00a8\u0006\"\u000549317\u0012\u0011\b*\u0012\u0006\u0010\u009a\u00e9\u0097\u00a8\u0006\"\u000549318\u0012\u0011\b+\u0012\u0006\u0010\u00fa\u00e9\u0097\u00a8\u0006\"\u000535696\u0012\u0011\b,\u0012\u0006\u0010\u00a8\u00eb\u0097\u00a8\u0006\"\u000535697\u0012\u0011\b-\u0012\u0006\u0010\u0089\u00ec\u0097\u00a8\u0006\"\u00052-Jan\u0012\u0011\b.\u0012\u0006\u0010\u00a6\u00ec\u0097\u00a8\u0006\"\u000542460\u0012\u0011\b/\u0012\u0006\u0010\u00e0\u00ec\u0097\u00a8\u0006\"\u000539726\u0012\u0011\b0\u0012\u0006\u0010\u00f5\u00ec\u0097\u00a8\u0006\"\u00052-Mar\u0012\u0013\b1\u0012\u0006\u0010\u00ac\u00ed\u0097\u00a8\u0006\"\u00071566281\u0012\u0011\b2\u0012\u0006\u0010\u00c8\u00ed\u0097\u00a8\u0006\"\u000542315\u0012\u0011\b3\u0012\u0006\u0010\u00de\u00ed\u0097\u00a8\u0006\"\u000542316\u0012\u0011\b4\u0012\u0006\u0010\u0090\u00ee\u0097\u00a8\u0006\"\u000542317\u0012\u0011\b5\u0012\u0006\u0010\u00d9\u00ee\u0097\u00a8\u0006\"\u000542319\u0012\u0011\b6\u0012\u0006\u0010\u00a1\u00ef\u0097\u00a8\u0006\"\u000542320\u0012\u0011\b7\u0012\u0006\u0010\u00cf\u00ef\u0097\u00a8\u0006\"\u000538514\u0012\u0011\b8\u0012\u0006\u0010\u0085\u00f0\u0097\u00a8\u0006\"\u000534586\u0012\u0011\b9\u0012\u0006\u0010\u00a1\u00f0\u0097\u00a8\u0006\"\u000534587\u0012\u0011\b:\u0012\u0006\u0010\u00b7\u00f0\u0097\u00a8\u0006\"\u000534588\u0012\u0011\b;\u0012\u0006\u0010\u00e7\u00f0\u0097\u00a8\u0006\"\u000539497\u0012\u0011\b<\u0012\u0006\u0010\u0088\u00f1\u0097\u00a8\u0006\"\u000549407\u0012\u0011\b=\u0012\u0006\u0010\u00c0\u00f1\u0097\u00a8\u0006\"\u000550034\u0012\u0011\b>\u0012\u0006\u0010\u00e6\u00f1\u0097\u00a8\u0006\"\u000540903\u0012\u0011\b?\u0012\u0006\u0010\u0097\u00f2\u0097\u00a8\u0006\"\u000550035\u0012\u0011\b@\u0012\u0006\u0010\u00c8\u00f2\u0097\u00a8\u0006\"\u000550036\u0012\u0011\bA\u0012\u0006\u0010\u00aa\u00f3\u0097\u00a8\u0006\"\u000535712\u0012\u0011\bB\u0012\u0006\u0010\u0087\u00f4\u0097\u00a8\u0006\"\u000535713\u001a\b\u001a\u0006CYJS26 \u0098\u00e8\u0097\u00a8\u0006\"`\n/\n\u001022322-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00036030\u0000\u0012\u001d\r\u00ec?\u0013\u00c2\u0015\u0000$\u0092\u00c2\u001d\u0000\u0000\u00f4B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-r\u001c\u0097@(\u0098\u00e8\u0097\u00a8\u0006B\b\u001a\u0006CYJS26" + }, + { + "type": "con_recorrido", + "entity": "\n$f7d7c5ef-fc5b-41cd-b1fd-99eb004c51fc\u001ag\n/\n\u001022320-701ff27f-2\u0012\b14:36:00\u001a\b20230916 \u0000*\u00036030\u0000\u0012\u0011\bA\u0012\u0006\u0010\u00c4\u00e8\u0097\u00a8\u0006\"\u000535712\u0012\u0011\bB\u0012\u0006\u0010\u00a7\u00e9\u0097\u00a8\u0006\"\u000535713\u001a\b\u001a\u0006DSJL16 \u009c\u00e8\u0097\u00a8\u0006\"`\n/\n\u001022320-701ff27f-2\u0012\b14:36:00\u001a\b20230916 \u0000*\u00036030\u0000\u0012\u001d\r\u00d7>\u0013\u00c2\u0015\u00f7\r\u0092\u00c2\u001d\u0000\u0000\u00a0B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u001c\u00c7\u00b1?(\u009c\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DSJL16" + }, + { + "type": "con_recorrido", + "entity": "\n$442ad282-837c-4e27-998a-f7c4a8a3fda7\u001a\u00a8\u0006\n/\n\u001022323-701ff27f-2\u0012\b15:12:00\u001a\b20230916 \u0000*\u00036030\u0000\u0012\u0011\b\u001c\u0012\u0006\u0010\u00c6\u00e8\u0097\u00a8\u0006\"\u000539791\u0012\u0011\b\u001d\u0012\u0006\u0010\u00e3\u00e8\u0097\u00a8\u0006\"\u000538506\u0012\u0011\b\u001e\u0012\u0006\u0010\u0097\u00e9\u0097\u00a8\u0006\"\u000538635\u0012\u0011\b\u001f\u0012\u0006\u0010\u00c4\u00e9\u0097\u00a8\u0006\"\u000538509\u0012\u0011\b \u0012\u0006\u0010\u00e8\u00e9\u0097\u00a8\u0006\"\u000538642\u0012\u0011\b!\u0012\u0006\u0010\u0095\u00ea\u0097\u00a8\u0006\"\u000539795\u0012\u0011\b\"\u0012\u0006\u0010\u00b7\u00ea\u0097\u00a8\u0006\"\u000538502\u0012\u0011\b#\u0012\u0006\u0010\u00f0\u00ea\u0097\u00a8\u0006\"\u000538503\u0012\u0011\b$\u0012\u0006\u0010\u009b\u00ec\u0097\u00a8\u0006\"\u000535691\u0012\u0011\b%\u0012\u0006\u0010\u00b5\u00ec\u0097\u00a8\u0006\"\u000535692\u0012\u0011\b&\u0012\u0006\u0010\u00f3\u00ec\u0097\u00a8\u0006\"\u000535693\u0012\u0011\b'\u0012\u0006\u0010\u00b0\u00ed\u0097\u00a8\u0006\"\u000535694\u0012\u0011\b(\u0012\u0006\u0010\u00d0\u00ed\u0097\u00a8\u0006\"\u000535695\u0012\u0011\b)\u0012\u0006\u0010\u00dc\u00ed\u0097\u00a8\u0006\"\u000549317\u0012\u0011\b*\u0012\u0006\u0010\u00a7\u00ee\u0097\u00a8\u0006\"\u000549318\u0012\u0011\b+\u0012\u0006\u0010\u0081\u00ef\u0097\u00a8\u0006\"\u000535696\u0012\u0011\b,\u0012\u0006\u0010\u00a7\u00f0\u0097\u00a8\u0006\"\u000535697\u0012\u0011\b-\u0012\u0006\u0010\u0084\u00f1\u0097\u00a8\u0006\"\u00052-Jan\u0012\u0011\b.\u0012\u0006\u0010\u00a1\u00f1\u0097\u00a8\u0006\"\u000542460\u0012\u0011\b/\u0012\u0006\u0010\u00d9\u00f1\u0097\u00a8\u0006\"\u000539726\u0012\u0011\b0\u0012\u0006\u0010\u00ee\u00f1\u0097\u00a8\u0006\"\u00052-Mar\u0012\u0013\b1\u0012\u0006\u0010\u00a5\u00f2\u0097\u00a8\u0006\"\u00071566281\u0012\u0011\b2\u0012\u0006\u0010\u00c0\u00f2\u0097\u00a8\u0006\"\u000542315\u0012\u0011\b3\u0012\u0006\u0010\u00d7\u00f2\u0097\u00a8\u0006\"\u000542316\u0012\u0011\b4\u0012\u0006\u0010\u0089\u00f3\u0097\u00a8\u0006\"\u000542317\u0012\u0011\b5\u0012\u0006\u0010\u00d3\u00f3\u0097\u00a8\u0006\"\u000542319\u0012\u0011\b6\u0012\u0006\u0010\u009d\u00f4\u0097\u00a8\u0006\"\u000542320\u0012\u0011\b7\u0012\u0006\u0010\u00cc\u00f4\u0097\u00a8\u0006\"\u000538514\u0012\u0011\b8\u0012\u0006\u0010\u0084\u00f5\u0097\u00a8\u0006\"\u000534586\u0012\u0011\b9\u0012\u0006\u0010\u00a2\u00f5\u0097\u00a8\u0006\"\u000534587\u0012\u0011\b:\u0012\u0006\u0010\u00b8\u00f5\u0097\u00a8\u0006\"\u000534588\u0012\u0011\b;\u0012\u0006\u0010\u00eb\u00f5\u0097\u00a8\u0006\"\u000539497\u0012\u0011\b<\u0012\u0006\u0010\u008e\u00f6\u0097\u00a8\u0006\"\u000549407\u0012\u0011\b=\u0012\u0006\u0010\u00c9\u00f6\u0097\u00a8\u0006\"\u000550034\u0012\u0011\b>\u0012\u0006\u0010\u00f1\u00f6\u0097\u00a8\u0006\"\u000540903\u0012\u0011\b?\u0012\u0006\u0010\u00a6\u00f7\u0097\u00a8\u0006\"\u000550035\u0012\u0011\b@\u0012\u0006\u0010\u00db\u00f7\u0097\u00a8\u0006\"\u000550036\u0012\u0011\bA\u0012\u0006\u0010\u00c6\u00f8\u0097\u00a8\u0006\"\u000535712\u0012\u0011\bB\u0012\u0006\u0010\u00ad\u00f9\u0097\u00a8\u0006\"\u000535713\u001a\b\u001a\u0006FXRZ34 \u0094\u00e8\u0097\u00a8\u0006\"`\n/\n\u001022323-701ff27f-2\u0012\b15:12:00\u001a\b20230916 \u0000*\u00036030\u0000\u0012\u001d\r\u0087&\u0013\u00c2\u0015\u0085,\u0092\u00c2\u001d\u0000\u00004C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0094\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FXRZ34" + }, + { + "type": "con_recorrido", + "entity": "\n$9fafcf83-7a61-4857-8e18-1db851f4a819\u001a\u00b9\u0006\n/\n\u001022238-701ff27f-2\u0012\b15:27:00\u001a\b20230916 \u0000*\u00036030\u0001\u0012\u0011\b\u000b\u0012\u0006\u0010\u00a2\u00e8\u0097\u00a8\u0006\"\u000539625\u0012\u0011\b\f\u0012\u0006\u0010\u00ec\u00e8\u0097\u00a8\u0006\"\u000539628\u0012\u0011\b\r\u0012\u0006\u0010\u00bd\u00e9\u0097\u00a8\u0006\"\u000539631\u0012\u0011\b\u000e\u0012\u0006\u0010\u00ef\u00e9\u0097\u00a8\u0006\"\u000549311\u0012\u0011\b\u000f\u0012\u0006\u0010\u00a8\u00ea\u0097\u00a8\u0006\"\u000539634\u0012\u0011\b\u0010\u0012\u0006\u0010\u00c2\u00ea\u0097\u00a8\u0006\"\u000539635\u0012\u0011\b\u0011\u0012\u0006\u0010\u00f1\u00ea\u0097\u00a8\u0006\"\u000539636\u0012\u0011\b\u0012\u0012\u0006\u0010\u00a7\u00eb\u0097\u00a8\u0006\"\u000549503\u0012\u0011\b\u0013\u0012\u0006\u0010\u00a7\u00ec\u0097\u00a8\u0006\"\u000539637\u0012\u0011\b\u0014\u0012\u0006\u0010\u00d8\u00ec\u0097\u00a8\u0006\"\u000549317\u0012\u0011\b\u0015\u0012\u0006\u0010\u00f7\u00ec\u0097\u00a8\u0006\"\u000549318\u0012\u0011\b\u0016\u0012\u0006\u0010\u00b8\u00ed\u0097\u00a8\u0006\"\u000549319\u0012\u0011\b\u0017\u0012\u0006\u0010\u00fc\u00ed\u0097\u00a8\u0006\"\u000539641\u0012\u0011\b\u0018\u0012\u0006\u0010\u0099\u00ee\u0097\u00a8\u0006\"\u000539642\u0012\u0011\b\u0019\u0012\u0006\u0010\u00a9\u00f0\u0097\u00a8\u0006\"\u000549325\u0012\u0011\b\u001a\u0012\u0006\u0010\u00e6\u00f0\u0097\u00a8\u0006\"\u000549326\u0012\u0011\b\u001b\u0012\u0006\u0010\u00ff\u00f0\u0097\u00a8\u0006\"\u000539648\u0012\u0011\b\u001c\u0012\u0006\u0010\u00ae\u00f1\u0097\u00a8\u0006\"\u000539649\u0012\u0011\b\u001d\u0012\u0006\u0010\u00d4\u00f1\u0097\u00a8\u0006\"\u000545112\u0012\u0011\b\u001e\u0012\u0006\u0010\u00ff\u00f1\u0097\u00a8\u0006\"\u000545113\u0012\u0011\b\u001f\u0012\u0006\u0010\u00cd\u00f2\u0097\u00a8\u0006\"\u000537490\u0012\u0011\b \u0012\u0006\u0010\u00e6\u00f3\u0097\u00a8\u0006\"\u000542604\u0012\u0011\b!\u0012\u0006\u0010\u0091\u00f4\u0097\u00a8\u0006\"\u000542605\u0012\u0011\b\"\u0012\u0006\u0010\u00cb\u00f4\u0097\u00a8\u0006\"\u000542606\u0012\u0011\b#\u0012\u0006\u0010\u00ee\u00f4\u0097\u00a8\u0006\"\u000542607\u0012\u0011\b$\u0012\u0006\u0010\u00a7\u00f5\u0097\u00a8\u0006\"\u000542608\u0012\u0011\b%\u0012\u0006\u0010\u00d3\u00f5\u0097\u00a8\u0006\"\u000549335\u0012\u0011\b&\u0012\u0006\u0010\u0086\u00f6\u0097\u00a8\u0006\"\u000549336\u0012\u0011\b'\u0012\u0006\u0010\u00e4\u00f6\u0097\u00a8\u0006\"\u000537437\u0012\u0011\b(\u0012\u0006\u0010\u0094\u00f7\u0097\u00a8\u0006\"\u000549337\u0012\u0011\b)\u0012\u0006\u0010\u00ba\u00f7\u0097\u00a8\u0006\"\u000539661\u0012\u0011\b*\u0012\u0006\u0010\u00e5\u00f7\u0097\u00a8\u0006\"\u000539662\u0012\u0011\b+\u0012\u0006\u0010\u00a1\u00f8\u0097\u00a8\u0006\"\u000539663\u0012\u0011\b,\u0012\u0006\u0010\u00d1\u00f8\u0097\u00a8\u0006\"\u000539664\u0012\u0011\b-\u0012\u0006\u0010\u0083\u00f9\u0097\u00a8\u0006\"\u000539665\u0012\u0011\b.\u0012\u0006\u0010\u00f3\u00f9\u0097\u00a8\u0006\"\u000539666\u0012\u0011\b/\u0012\u0006\u0010\u0099\u00fa\u0097\u00a8\u0006\"\u000539667\u0012\u0011\b0\u0012\u0006\u0010\u00d8\u00fa\u0097\u00a8\u0006\"\u000536935\u0012\u0011\b1\u0012\u0006\u0010\u00fb\u00fa\u0097\u00a8\u0006\"\u000536936\u0012\u0011\b2\u0012\u0006\u0010\u00fb\u00fb\u0097\u00a8\u0006\"\u000549343\u001a\b\u001a\u0006KHJL48 \u00a0\u00e8\u0097\u00a8\u0006\"`\n/\n\u001022238-701ff27f-2\u0012\b15:27:00\u001a\b20230916 \u0000*\u00036030\u0001\u0012\u001d\r\u00f8L\u0013\u00c2\u0015\u00a5\u0019\u0092\u00c2\u001d\u0000\u0000^C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a0\u00e8\u0097\u00a8\u0006B\b\u001a\u0006KHJL48" + }, + { + "type": "con_recorrido", + "entity": "\n$ac4eac7a-9f59-428e-9395-a73fcdd29dfe\u001a\u00b8\u0002\n/\n\u001022321-701ff27f-2\u0012\b14:48:00\u001a\b20230916 \u0000*\u00036030\u0000\u0012\u0011\b6\u0012\u0006\u0010\u00f4\u00e8\u0097\u00a8\u0006\"\u000542320\u0012\u0011\b7\u0012\u0006\u0010\u00a6\u00e9\u0097\u00a8\u0006\"\u000538514\u0012\u0011\b8\u0012\u0006\u0010\u00e0\u00e9\u0097\u00a8\u0006\"\u000534586\u0012\u0011\b9\u0012\u0006\u0010\u00fe\u00e9\u0097\u00a8\u0006\"\u000534587\u0012\u0011\b:\u0012\u0006\u0010\u0095\u00ea\u0097\u00a8\u0006\"\u000534588\u0012\u0011\b;\u0012\u0006\u0010\u00c9\u00ea\u0097\u00a8\u0006\"\u000539497\u0012\u0011\b<\u0012\u0006\u0010\u00eb\u00ea\u0097\u00a8\u0006\"\u000549407\u0012\u0011\b=\u0012\u0006\u0010\u00a5\u00eb\u0097\u00a8\u0006\"\u000550034\u0012\u0011\b>\u0012\u0006\u0010\u00cd\u00eb\u0097\u00a8\u0006\"\u000540903\u0012\u0011\b?\u0012\u0006\u0010\u00ff\u00eb\u0097\u00a8\u0006\"\u000550035\u0012\u0011\b@\u0012\u0006\u0010\u00b2\u00ec\u0097\u00a8\u0006\"\u000550036\u0012\u0011\bA\u0012\u0006\u0010\u0094\u00ed\u0097\u00a8\u0006\"\u000535712\u0012\u0011\bB\u0012\u0006\u0010\u00f1\u00ed\u0097\u00a8\u0006\"\u000535713\u001a\b\u001a\u0006RKKW56 \u00ac\u00e8\u0097\u00a8\u0006\"`\n/\n\u001022321-701ff27f-2\u0012\b14:48:00\u001a\b20230916 \u0000*\u00036030\u0000\u0012\u001d\rHP\u0013\u00c2\u0015\u00fb\u0018\u0092\u00c2\u001d\u0000\u0000pB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u008e>(\u00ac\u00e8\u0097\u00a8\u0006B\b\u001a\u0006RKKW56" + }, + { + "type": "con_recorrido", + "entity": "\n$cf4da3f1-e731-4ab9-8c1a-405226369379\u001a\u00c7\b\n/\n\u001022324-701ff27f-2\u0012\b15:24:00\u001a\b20230916 \u0000*\u00036030\u0000\u0012\u0011\b\r\u0012\u0006\u0010\u00bb\u00e8\u0097\u00a8\u0006\"\u000537048\u0012\u0011\b\u000e\u0012\u0006\u0010\u00e4\u00e8\u0097\u00a8\u0006\"\u000542431\u0012\u0011\b\u000f\u0012\u0006\u0010\u00f8\u00e8\u0097\u00a8\u0006\"\u000542432\u0012\u0011\b\u0010\u0012\u0006\u0010\u00ad\u00e9\u0097\u00a8\u0006\"\u000537578\u0012\u0011\b\u0011\u0012\u0006\u0010\u00d2\u00e9\u0097\u00a8\u0006\"\u000542434\u0012\u0011\b\u0012\u0012\u0006\u0010\u0085\u00ea\u0097\u00a8\u0006\"\u000542435\u0012\u0013\b\u0013\u0012\u0006\u0010\u00b4\u00ea\u0097\u00a8\u0006\"\u00074831075\u0012\u0011\b\u0014\u0012\u0006\u0010\u00e3\u00ea\u0097\u00a8\u0006\"\u000549135\u0012\u0011\b\u0015\u0012\u0006\u0010\u008d\u00eb\u0097\u00a8\u0006\"\u000549136\u0012\u0011\b\u0016\u0012\u0006\u0010\u00f1\u00eb\u0097\u00a8\u0006\"\u000542438\u0012\u0011\b\u0017\u0012\u0006\u0010\u008e\u00ec\u0097\u00a8\u0006\"\u000537442\u0012\u0011\b\u0018\u0012\u0006\u0010\u00d2\u00ec\u0097\u00a8\u0006\"\u000542440\u0012\u0011\b\u0019\u0012\u0006\u0010\u00f6\u00ec\u0097\u00a8\u0006\"\u000542441\u0012\u0011\b\u001a\u0012\u0006\u0010\u00e2\u00ed\u0097\u00a8\u0006\"\u000538692\u0012\u0011\b\u001b\u0012\u0006\u0010\u00a6\u00ee\u0097\u00a8\u0006\"\u000538714\u0012\u0011\b\u001c\u0012\u0006\u0010\u00d5\u00ee\u0097\u00a8\u0006\"\u000539791\u0012\u0011\b\u001d\u0012\u0006\u0010\u00f0\u00ee\u0097\u00a8\u0006\"\u000538506\u0012\u0011\b\u001e\u0012\u0006\u0010\u009f\u00ef\u0097\u00a8\u0006\"\u000538635\u0012\u0011\b\u001f\u0012\u0006\u0010\u00c9\u00ef\u0097\u00a8\u0006\"\u000538509\u0012\u0011\b \u0012\u0006\u0010\u00eb\u00ef\u0097\u00a8\u0006\"\u000538642\u0012\u0011\b!\u0012\u0006\u0010\u0095\u00f0\u0097\u00a8\u0006\"\u000539795\u0012\u0011\b\"\u0012\u0006\u0010\u00b5\u00f0\u0097\u00a8\u0006\"\u000538502\u0012\u0011\b#\u0012\u0006\u0010\u00eb\u00f0\u0097\u00a8\u0006\"\u000538503\u0012\u0011\b$\u0012\u0006\u0010\u0090\u00f2\u0097\u00a8\u0006\"\u000535691\u0012\u0011\b%\u0012\u0006\u0010\u00aa\u00f2\u0097\u00a8\u0006\"\u000535692\u0012\u0011\b&\u0012\u0006\u0010\u00e7\u00f2\u0097\u00a8\u0006\"\u000535693\u0012\u0011\b'\u0012\u0006\u0010\u00a5\u00f3\u0097\u00a8\u0006\"\u000535694\u0012\u0011\b(\u0012\u0006\u0010\u00c5\u00f3\u0097\u00a8\u0006\"\u000535695\u0012\u0011\b)\u0012\u0006\u0010\u00d1\u00f3\u0097\u00a8\u0006\"\u000549317\u0012\u0011\b*\u0012\u0006\u0010\u009d\u00f4\u0097\u00a8\u0006\"\u000549318\u0012\u0011\b+\u0012\u0006\u0010\u00f9\u00f4\u0097\u00a8\u0006\"\u000535696\u0012\u0011\b,\u0012\u0006\u0010\u00a6\u00f6\u0097\u00a8\u0006\"\u000535697\u0012\u0011\b-\u0012\u0006\u0010\u008a\u00f7\u0097\u00a8\u0006\"\u00052-Jan\u0012\u0011\b.\u0012\u0006\u0010\u00a9\u00f7\u0097\u00a8\u0006\"\u000542460\u0012\u0011\b/\u0012\u0006\u0010\u00e5\u00f7\u0097\u00a8\u0006\"\u000539726\u0012\u0011\b0\u0012\u0006\u0010\u00fc\u00f7\u0097\u00a8\u0006\"\u00052-Mar\u0012\u0013\b1\u0012\u0006\u0010\u00b8\u00f8\u0097\u00a8\u0006\"\u00071566281\u0012\u0011\b2\u0012\u0006\u0010\u00d6\u00f8\u0097\u00a8\u0006\"\u000542315\u0012\u0011\b3\u0012\u0006\u0010\u00ef\u00f8\u0097\u00a8\u0006\"\u000542316\u0012\u0011\b4\u0012\u0006\u0010\u00a7\u00f9\u0097\u00a8\u0006\"\u000542317\u0012\u0011\b5\u0012\u0006\u0010\u00fa\u00f9\u0097\u00a8\u0006\"\u000542319\u0012\u0011\b6\u0012\u0006\u0010\u00cd\u00fa\u0097\u00a8\u0006\"\u000542320\u0012\u0011\b7\u0012\u0006\u0010\u0083\u00fb\u0097\u00a8\u0006\"\u000538514\u0012\u0011\b8\u0012\u0006\u0010\u00c2\u00fb\u0097\u00a8\u0006\"\u000534586\u0012\u0011\b9\u0012\u0006\u0010\u00e4\u00fb\u0097\u00a8\u0006\"\u000534587\u0012\u0011\b:\u0012\u0006\u0010\u00fe\u00fb\u0097\u00a8\u0006\"\u000534588\u0012\u0011\b;\u0012\u0006\u0010\u00ba\u00fc\u0097\u00a8\u0006\"\u000539497\u0012\u0011\b<\u0012\u0006\u0010\u00e2\u00fc\u0097\u00a8\u0006\"\u000549407\u0012\u0011\b=\u0012\u0006\u0010\u00a7\u00fd\u0097\u00a8\u0006\"\u000550034\u0012\u0011\b>\u0012\u0006\u0010\u00d8\u00fd\u0097\u00a8\u0006\"\u000540903\u0012\u0011\b?\u0012\u0006\u0010\u0096\u00fe\u0097\u00a8\u0006\"\u000550035\u0012\u0011\b@\u0012\u0006\u0010\u00d6\u00fe\u0097\u00a8\u0006\"\u000550036\u0012\u0011\bA\u0012\u0006\u0010\u00d7\u00ff\u0097\u00a8\u0006\"\u000535712\u0012\u0011\bB\u0012\u0006\u0010\u00d5\u0080\u0098\u00a8\u0006\"\u000535713\u001a\b\u001a\u0006RKKW58 \u00ba\u00e8\u0097\u00a8\u0006\"`\n/\n\u001022324-701ff27f-2\u0012\b15:24:00\u001a\b20230916 \u0000*\u00036030\u0000\u0012\u001d\r\u00ed\u001f\u0013\u00c2\u0015\u00d17\u0092\u00c2\u001d\u0000\u0000\u00adC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008e\u00e3\u0000A(\u00ba\u00e8\u0097\u00a8\u0006B\b\u001a\u0006RKKW58" + }, + { + "type": "con_recorrido", + "entity": "\n$ca011d57-0e4f-45f4-90db-533cfaf2d25d\u001a\u00d1\u0007\n/\n\u001022239-701ff27f-2\u0012\b15:42:00\u001a\b20230916 \u0000*\u00036030\u0001\u0012\u0011\b\u0003\u0012\u0006\u0010\u009e\u00e8\u0097\u00a8\u0006\"\u000535203\u0012\u0011\b\u0004\u0012\u0006\u0010\u00e3\u00e8\u0097\u00a8\u0006\"\u00051-Feb\u0012\u0011\b\u0005\u0012\u0006\u0010\u009a\u00e9\u0097\u00a8\u0006\"\u00051-Mar\u0012\u0011\b\u0006\u0012\u0006\u0010\u00bc\u00e9\u0097\u00a8\u0006\"\u000537465\u0012\u0011\b\u0007\u0012\u0006\u0010\u00a3\u00ea\u0097\u00a8\u0006\"\u000539599\u0012\u0011\b\b\u0012\u0006\u0010\u00f0\u00ea\u0097\u00a8\u0006\"\u000545011\u0012\u0011\b\t\u0012\u0006\u0010\u00d5\u00eb\u0097\u00a8\u0006\"\u000539623\u0012\u0011\b\n\u0012\u0006\u0010\u0086\u00ec\u0097\u00a8\u0006\"\u000539624\u0012\u0011\b\u000b\u0012\u0006\u0010\u00b4\u00ec\u0097\u00a8\u0006\"\u000539625\u0012\u0011\b\f\u0012\u0006\u0010\u00f9\u00ec\u0097\u00a8\u0006\"\u000539628\u0012\u0011\b\r\u0012\u0006\u0010\u00c5\u00ed\u0097\u00a8\u0006\"\u000539631\u0012\u0011\b\u000e\u0012\u0006\u0010\u00f3\u00ed\u0097\u00a8\u0006\"\u000549311\u0012\u0011\b\u000f\u0012\u0006\u0010\u00aa\u00ee\u0097\u00a8\u0006\"\u000539634\u0012\u0011\b\u0010\u0012\u0006\u0010\u00c3\u00ee\u0097\u00a8\u0006\"\u000539635\u0012\u0011\b\u0011\u0012\u0006\u0010\u00ef\u00ee\u0097\u00a8\u0006\"\u000539636\u0012\u0011\b\u0012\u0012\u0006\u0010\u00a3\u00ef\u0097\u00a8\u0006\"\u000549503\u0012\u0011\b\u0013\u0012\u0006\u0010\u009e\u00f0\u0097\u00a8\u0006\"\u000539637\u0012\u0011\b\u0014\u0012\u0006\u0010\u00cf\u00f0\u0097\u00a8\u0006\"\u000549317\u0012\u0011\b\u0015\u0012\u0006\u0010\u00ed\u00f0\u0097\u00a8\u0006\"\u000549318\u0012\u0011\b\u0016\u0012\u0006\u0010\u00ad\u00f1\u0097\u00a8\u0006\"\u000549319\u0012\u0011\b\u0017\u0012\u0006\u0010\u00f1\u00f1\u0097\u00a8\u0006\"\u000539641\u0012\u0011\b\u0018\u0012\u0006\u0010\u008e\u00f2\u0097\u00a8\u0006\"\u000539642\u0012\u0011\b\u0019\u0012\u0006\u0010\u00a2\u00f4\u0097\u00a8\u0006\"\u000549325\u0012\u0011\b\u001a\u0012\u0006\u0010\u00e1\u00f4\u0097\u00a8\u0006\"\u000549326\u0012\u0011\b\u001b\u0012\u0006\u0010\u00fb\u00f4\u0097\u00a8\u0006\"\u000539648\u0012\u0011\b\u001c\u0012\u0006\u0010\u00ab\u00f5\u0097\u00a8\u0006\"\u000539649\u0012\u0011\b\u001d\u0012\u0006\u0010\u00d4\u00f5\u0097\u00a8\u0006\"\u000545112\u0012\u0011\b\u001e\u0012\u0006\u0010\u0080\u00f6\u0097\u00a8\u0006\"\u000545113\u0012\u0011\b\u001f\u0012\u0006\u0010\u00d3\u00f6\u0097\u00a8\u0006\"\u000537490\u0012\u0011\b \u0012\u0006\u0010\u00f7\u00f7\u0097\u00a8\u0006\"\u000542604\u0012\u0011\b!\u0012\u0006\u0010\u00a5\u00f8\u0097\u00a8\u0006\"\u000542605\u0012\u0011\b\"\u0012\u0006\u0010\u00e3\u00f8\u0097\u00a8\u0006\"\u000542606\u0012\u0011\b#\u0012\u0006\u0010\u0089\u00f9\u0097\u00a8\u0006\"\u000542607\u0012\u0011\b$\u0012\u0006\u0010\u00c8\u00f9\u0097\u00a8\u0006\"\u000542608\u0012\u0011\b%\u0012\u0006\u0010\u00f9\u00f9\u0097\u00a8\u0006\"\u000549335\u0012\u0011\b&\u0012\u0006\u0010\u00b1\u00fa\u0097\u00a8\u0006\"\u000549336\u0012\u0011\b'\u0012\u0006\u0010\u0099\u00fb\u0097\u00a8\u0006\"\u000537437\u0012\u0011\b(\u0012\u0006\u0010\u00cf\u00fb\u0097\u00a8\u0006\"\u000549337\u0012\u0011\b)\u0012\u0006\u0010\u00fa\u00fb\u0097\u00a8\u0006\"\u000539661\u0012\u0011\b*\u0012\u0006\u0010\u00aa\u00fc\u0097\u00a8\u0006\"\u000539662\u0012\u0011\b+\u0012\u0006\u0010\u00ed\u00fc\u0097\u00a8\u0006\"\u000539663\u0012\u0011\b,\u0012\u0006\u0010\u00a4\u00fd\u0097\u00a8\u0006\"\u000539664\u0012\u0011\b-\u0012\u0006\u0010\u00dd\u00fd\u0097\u00a8\u0006\"\u000539665\u0012\u0011\b.\u0012\u0006\u0010\u00de\u00fe\u0097\u00a8\u0006\"\u000539666\u0012\u0011\b/\u0012\u0006\u0010\u008a\u00ff\u0097\u00a8\u0006\"\u000539667\u0012\u0011\b0\u0012\u0006\u0010\u00d4\u00ff\u0097\u00a8\u0006\"\u000536935\u0012\u0011\b1\u0012\u0006\u0010\u00fc\u00ff\u0097\u00a8\u0006\"\u000536936\u0012\u0011\b2\u0012\u0006\u0010\u0093\u0081\u0098\u00a8\u0006\"\u000549343\u001a\b\u001a\u0006RKYG37 \u0094\u00e8\u0097\u00a8\u0006\"`\n/\n\u001022239-701ff27f-2\u0012\b15:42:00\u001a\b20230916 \u0000*\u00036030\u0001\u0012\u001d\r\u008eB\u0013\u00c2\u0015*\u000f\u0092\u00c2\u001d\u0000\u0000\u008eC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u001c\u00c7\u00b1@(\u0094\u00e8\u0097\u00a8\u0006B\b\u001a\u0006RKYG37" + }, + { + "type": "con_recorrido", + "entity": "\n$66edff6c-8802-4eb0-864d-adb1fbbdb468\u001a\u00cd\n\n/\n\u001022506-701ff27f-2\u0012\b15:33:00\u001a\b20230916 \u0000*\u00036040\u0000\u0012\u0011\b\u0001\u0012\u0006\u0010\u00ac\u00e9\u0097\u00a8\u0006\"\u000537577\u0012\u0011\b\u0002\u0012\u0006\u0010\u00e5\u00e9\u0097\u00a8\u0006\"\u000537578\u0012\u0011\b\u0003\u0012\u0006\u0010\u0091\u00ea\u0097\u00a8\u0006\"\u000539660\u0012\u0011\b\u0004\u0012\u0006\u0010\u00ad\u00ea\u0097\u00a8\u0006\"\u000539659\u0012\u0011\b\u0005\u0012\u0006\u0010\u00dc\u00ea\u0097\u00a8\u0006\"\u000537581\u0012\u0011\b\u0006\u0012\u0006\u0010\u00fd\u00ea\u0097\u00a8\u0006\"\u000537435\u0012\u0011\b\u0007\u0012\u0006\u0010\u00a8\u00eb\u0097\u00a8\u0006\"\u000537583\u0012\u0011\b\b\u0012\u0006\u0010\u00ee\u00eb\u0097\u00a8\u0006\"\u000537584\u0012\u0011\b\t\u0012\u0006\u0010\u00d1\u00ec\u0097\u00a8\u0006\"\u000537432\u0012\u0011\b\n\u0012\u0006\u0010\u00ef\u00ec\u0097\u00a8\u0006\"\u000537586\u0012\u0011\b\u000b\u0012\u0006\u0010\u0085\u00ed\u0097\u00a8\u0006\"\u000537430\u0012\u0011\b\f\u0012\u0006\u0010\u00a0\u00ed\u0097\u00a8\u0006\"\u000537588\u0012\u0011\b\r\u0012\u0006\u0010\u00c8\u00ed\u0097\u00a8\u0006\"\u000537589\u0012\u0011\b\u000e\u0012\u0006\u0010\u0080\u00ee\u0097\u00a8\u0006\"\u000537590\u0012\u0011\b\u000f\u0012\u0006\u0010\u00af\u00ee\u0097\u00a8\u0006\"\u000537591\u0012\u0011\b\u0010\u0012\u0006\u0010\u00e3\u00ee\u0097\u00a8\u0006\"\u000537592\u0012\u0011\b\u0011\u0012\u0006\u0010\u008c\u00ef\u0097\u00a8\u0006\"\u000537593\u0012\u0011\b\u0012\u0012\u0006\u0010\u00a5\u00ef\u0097\u00a8\u0006\"\u000538509\u0012\u0011\b\u0013\u0012\u0006\u0010\u00c7\u00ef\u0097\u00a8\u0006\"\u000538642\u0012\u0011\b\u0014\u0012\u0006\u0010\u00ed\u00ef\u0097\u00a8\u0006\"\u000539795\u0012\u0011\b\u0015\u0012\u0006\u0010\u0091\u00f0\u0097\u00a8\u0006\"\u000538502\u0012\u0011\b\u0016\u0012\u0006\u0010\u00cb\u00f0\u0097\u00a8\u0006\"\u000538503\u0012\u0011\b\u0017\u0012\u0006\u0010\u00e5\u00f1\u0097\u00a8\u0006\"\u000535691\u0012\u0011\b\u0018\u0012\u0006\u0010\u00c2\u00f2\u0097\u00a8\u0006\"\u000535693\u0012\u0011\b\u0019\u0012\u0006\u0010\u00fb\u00f2\u0097\u00a8\u0006\"\u000535694\u0012\u0011\b\u001a\u0012\u0006\u0010\u00a3\u00f3\u0097\u00a8\u0006\"\u000535695\u0012\u0011\b\u001b\u0012\u0006\u0010\u00d2\u00f3\u0097\u00a8\u0006\"\u000535696\u0012\u0011\b\u001c\u0012\u0006\u0010\u00fd\u00f4\u0097\u00a8\u0006\"\u000535697\u0012\u0011\b\u001d\u0012\u0006\u0010\u00e6\u00f5\u0097\u00a8\u0006\"\u00052-Jan\u0012\u0011\b\u001e\u0012\u0006\u0010\u0083\u00f6\u0097\u00a8\u0006\"\u000542460\u0012\u0011\b\u001f\u0012\u0006\u0010\u00a9\u00f6\u0097\u00a8\u0006\"\u000535690\u0012\u0011\b \u0012\u0006\u0010\u008f\u00f7\u0097\u00a8\u0006\"\u000535700\u0012\u0011\b!\u0012\u0006\u0010\u00ad\u00f7\u0097\u00a8\u0006\"\u000535701\u0012\u0011\b\"\u0012\u0006\u0010\u00f3\u00f7\u0097\u00a8\u0006\"\u000535703\u0012\u0011\b#\u0012\u0006\u0010\u0083\u00f8\u0097\u00a8\u0006\"\u000535704\u0012\u0011\b$\u0012\u0006\u0010\u009a\u00f8\u0097\u00a8\u0006\"\u000535705\u0012\u0011\b%\u0012\u0006\u0010\u00af\u00f8\u0097\u00a8\u0006\"\u000535706\u0012\u0011\b&\u0012\u0006\u0010\u00ea\u00f8\u0097\u00a8\u0006\"\u000535707\u0012\u0011\b'\u0012\u0006\u0010\u0086\u00f9\u0097\u00a8\u0006\"\u000535708\u0012\u0011\b(\u0012\u0006\u0010\u00a0\u00f9\u0097\u00a8\u0006\"\u000535709\u0012\u0011\b)\u0012\u0006\u0010\u00e2\u00f9\u0097\u00a8\u0006\"\u000540306\u0012\u0011\b*\u0012\u0006\u0010\u00aa\u00fa\u0097\u00a8\u0006\"\u000540308\u0012\u0011\b+\u0012\u0006\u0010\u00ff\u00fa\u0097\u00a8\u0006\"\u000540309\u0012\u0011\b,\u0012\u0006\u0010\u0088\u00fc\u0097\u00a8\u0006\"\u000539504\u0012\u0011\b-\u0012\u0006\u0010\u00ad\u00fc\u0097\u00a8\u0006\"\u000539595\u0012\u0011\b.\u0012\u0006\u0010\u00c0\u00fc\u0097\u00a8\u0006\"\u000539759\u0012\u0011\b/\u0012\u0006\u0010\u00a1\u00fd\u0097\u00a8\u0006\"\u000537627\u0012\u0011\b0\u0012\u0006\u0010\u00e9\u00fe\u0097\u00a8\u0006\"\u000539712\u0012\u0011\b1\u0012\u0006\u0010\u0091\u00ff\u0097\u00a8\u0006\"\u000539714\u0012\u0011\b2\u0012\u0006\u0010\u00bc\u00ff\u0097\u00a8\u0006\"\u000539715\u0012\u0011\b3\u0012\u0006\u0010\u00dc\u00ff\u0097\u00a8\u0006\"\u000539470\u0012\u0011\b4\u0012\u0006\u0010\u00ee\u0080\u0098\u00a8\u0006\"\u000539611\u0012\u0011\b5\u0012\u0006\u0010\u00c4\u0081\u0098\u00a8\u0006\"\u000537636\u0012\u0011\b6\u0012\u0006\u0010\u00e5\u0082\u0098\u00a8\u0006\"\u000537637\u0012\u0011\b7\u0012\u0006\u0010\u00ba\u0083\u0098\u00a8\u0006\"\u000537639\u0012\u0011\b8\u0012\u0006\u0010\u00f4\u0083\u0098\u00a8\u0006\"\u000539200\u0012\u0011\b9\u0012\u0006\u0010\u00e4\u0084\u0098\u00a8\u0006\"\u000540191\u0012\u0011\b:\u0012\u0006\u0010\u0092\u0085\u0098\u00a8\u0006\"\u000540192\u0012\u0011\b;\u0012\u0006\u0010\u00da\u0085\u0098\u00a8\u0006\"\u000540193\u0012\u0011\b<\u0012\u0006\u0010\u0090\u0086\u0098\u00a8\u0006\"\u000540194\u0012\u0011\b=\u0012\u0006\u0010\u009b\u0087\u0098\u00a8\u0006\"\u000538025\u0012\u0011\b>\u0012\u0006\u0010\u00bc\u0087\u0098\u00a8\u0006\"\u000538026\u0012\u0011\b?\u0012\u0006\u0010\u00eb\u0087\u0098\u00a8\u0006\"\u000538027\u0012\u0011\b@\u0012\u0006\u0010\u00fe\u0087\u0098\u00a8\u0006\"\u000538028\u0012\u0011\bA\u0012\u0006\u0010\u009d\u0088\u0098\u00a8\u0006\"\u000538029\u0012\u0011\bB\u0012\u0006\u0010\u00c9\u0088\u0098\u00a8\u0006\"\u000538030\u0012\u0011\bC\u0012\u0006\u0010\u00f9\u0088\u0098\u00a8\u0006\"\u000538031\u0012\u0011\bD\u0012\u0006\u0010\u00b2\u0089\u0098\u00a8\u0006\"\u000538032\u001a\b\u001a\u0006FXRS16 \u0096\u00e8\u0097\u00a8\u0006\"`\n/\n\u001022506-701ff27f-2\u0012\b15:33:00\u001a\b20230916 \u0000*\u00036040\u0000\u0012\u001d\r\u001a\u001e\u0013\u00c2\u0015\u00d12\u0092\u00c2\u001d\u0000\u0000\u008fC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0096\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FXRS16" + }, + { + "type": "con_recorrido", + "entity": "\n$859fab00-4f3a-4298-bc43-3a007111296e\u001a\u00f8\n\n/\n\u001022599-701ff27f-2\u0012\b15:30:00\u001a\b20230916 \u0000*\u00036040\u0001\u0012\u0011\b\n\u0012\u0006\u0010\u00e6\u00e8\u0097\u00a8\u0006\"\u000539536\u0012\u0014\b\u000b\u0012\u0006\u0010\u0089\u00e9\u0097\u00a8\u0006\"\b16206048\u0012\u0011\b\f\u0012\u0006\u0010\u009f\u00e9\u0097\u00a8\u0006\"\u000539537\u0012\u0011\b\r\u0012\u0006\u0010\u00b1\u00e9\u0097\u00a8\u0006\"\u000540192\u0012\u0011\b\u000e\u0012\u0006\u0010\u00ce\u00e9\u0097\u00a8\u0006\"\u000539429\u0012\u0011\b\u000f\u0012\u0006\u0010\u00f3\u00e9\u0097\u00a8\u0006\"\u000539430\u0012\u0011\b\u0010\u0012\u0006\u0010\u0084\u00ea\u0097\u00a8\u0006\"\u000537300\u0012\u0011\b\u0011\u0012\u0006\u0010\u00a0\u00ea\u0097\u00a8\u0006\"\u000539562\u0012\u0011\b\u0012\u0012\u0006\u0010\u00c4\u00ea\u0097\u00a8\u0006\"\u000539563\u0012\u0011\b\u0013\u0012\u0006\u0010\u00d6\u00ea\u0097\u00a8\u0006\"\u000539564\u0012\u0011\b\u0014\u0012\u0006\u0010\u00e1\u00ea\u0097\u00a8\u0006\"\u000537638\u0012\u0011\b\u0015\u0012\u0006\u0010\u0085\u00eb\u0097\u00a8\u0006\"\u000539587\u0012\u0011\b\u0016\u0012\u0006\u0010\u00a7\u00eb\u0097\u00a8\u0006\"\u000539588\u0012\u0011\b\u0017\u0012\u0006\u0010\u00dc\u00eb\u0097\u00a8\u0006\"\u000539589\u0012\u0011\b\u0018\u0012\u0006\u0010\u00fc\u00eb\u0097\u00a8\u0006\"\u000537322\u0012\u0011\b\u0019\u0012\u0006\u0010\u0099\u00ec\u0097\u00a8\u0006\"\u000537323\u0012\u0011\b\u001a\u0012\u0006\u0010\u00f9\u00ec\u0097\u00a8\u0006\"\u000539558\u0012\u0011\b\u001b\u0012\u0006\u0010\u00ad\u00ed\u0097\u00a8\u0006\"\u000539985\u0012\u0011\b\u001c\u0012\u0006\u0010\u00e7\u00ed\u0097\u00a8\u0006\"\u000537325\u0012\u0011\b\u001d\u0012\u0006\u0010\u008b\u00ee\u0097\u00a8\u0006\"\u000537364\u0012\u0011\b\u001e\u0012\u0006\u0010\u008f\u00ef\u0097\u00a8\u0006\"\u000537366\u0012\u0011\b\u001f\u0012\u0006\u0010\u00b3\u00ef\u0097\u00a8\u0006\"\u000539594\u0012\u0011\b \u0012\u0006\u0010\u009f\u00f0\u0097\u00a8\u0006\"\u000539505\u0012\u0011\b!\u0012\u0006\u0010\u00bb\u00f0\u0097\u00a8\u0006\"\u000539506\u0012\u0011\b\"\u0012\u0006\u0010\u00d7\u00f0\u0097\u00a8\u0006\"\u000590003\u0012\u0011\b#\u0012\u0006\u0010\u0083\u00f1\u0097\u00a8\u0006\"\u000590007\u0012\u0011\b$\u0012\u0006\u0010\u00ab\u00f1\u0097\u00a8\u0006\"\u000540830\u0012\u0011\b%\u0012\u0006\u0010\u00cf\u00f1\u0097\u00a8\u0006\"\u000540831\u0012\u0011\b&\u0012\u0006\u0010\u00a0\u00f2\u0097\u00a8\u0006\"\u000539599\u0012\u0011\b'\u0012\u0006\u0010\u00b6\u00f2\u0097\u00a8\u0006\"\u000539600\u0012\u0011\b(\u0012\u0006\u0010\u00f7\u00f2\u0097\u00a8\u0006\"\u000537496\u0012\u0011\b)\u0012\u0006\u0010\u00a8\u00f3\u0097\u00a8\u0006\"\u000545064\u0012\u0011\b*\u0012\u0006\u0010\u00f0\u00f3\u0097\u00a8\u0006\"\u000537506\u0012\u0011\b+\u0012\u0006\u0010\u0093\u00f4\u0097\u00a8\u0006\"\u000549496\u0012\u0011\b,\u0012\u0006\u0010\u00bc\u00f4\u0097\u00a8\u0006\"\u000549497\u0012\u0011\b-\u0012\u0006\u0010\u00d4\u00f4\u0097\u00a8\u0006\"\u000539624\u0012\u0011\b.\u0012\u0006\u0010\u0096\u00f5\u0097\u00a8\u0006\"\u000590000\u0012\u0011\b/\u0012\u0006\u0010\u00c9\u00f5\u0097\u00a8\u0006\"\u000539628\u0012\u0011\b0\u0012\u0006\u0010\u0098\u00f6\u0097\u00a8\u0006\"\u000539631\u0012\u0011\b1\u0012\u0006\u0010\u00c9\u00f6\u0097\u00a8\u0006\"\u000549311\u0012\u0011\b2\u0012\u0006\u0010\u0082\u00f7\u0097\u00a8\u0006\"\u000539634\u0012\u0011\b3\u0012\u0006\u0010\u009c\u00f7\u0097\u00a8\u0006\"\u000539635\u0012\u0011\b4\u0012\u0006\u0010\u00cd\u00f7\u0097\u00a8\u0006\"\u000539636\u0012\u0011\b5\u0012\u0006\u0010\u008f\u00f9\u0097\u00a8\u0006\"\u000539637\u0012\u0011\b6\u0012\u0006\u0010\u00c5\u00f9\u0097\u00a8\u0006\"\u000549317\u0012\u0011\b7\u0012\u0006\u0010\u00e8\u00f9\u0097\u00a8\u0006\"\u000549318\u0012\u0011\b8\u0012\u0006\u0010\u00b2\u00fa\u0097\u00a8\u0006\"\u000549319\u0012\u0011\b9\u0012\u0006\u0010\u00fb\u00fa\u0097\u00a8\u0006\"\u000539641\u0012\u0011\b:\u0012\u0006\u0010\u00a4\u00fb\u0097\u00a8\u0006\"\u000539642\u0012\u0011\b;\u0012\u0006\u0010\u00f3\u00fd\u0097\u00a8\u0006\"\u000549325\u0012\u0011\b<\u0012\u0006\u0010\u00c2\u00fe\u0097\u00a8\u0006\"\u000549326\u0012\u0011\b=\u0012\u0006\u0010\u00e9\u00fe\u0097\u00a8\u0006\"\u000537425\u0012\u0011\b>\u0012\u0006\u0010\u0099\u00ff\u0097\u00a8\u0006\"\u000537426\u0012\u0011\b?\u0012\u0006\u0010\u00d2\u00ff\u0097\u00a8\u0006\"\u000537427\u0012\u0013\b@\u0012\u0006\u0010\u0094\u0080\u0098\u00a8\u0006\"\u00078606049\u0012\u0011\bA\u0012\u0006\u0010\u00d4\u0080\u0098\u00a8\u0006\"\u000537428\u0012\u0011\bB\u0012\u0006\u0010\u008c\u0081\u0098\u00a8\u0006\"\u000537429\u0012\u0011\bC\u0012\u0006\u0010\u00b9\u0081\u0098\u00a8\u0006\"\u000537430\u0012\u0011\bD\u0012\u0006\u0010\u00e6\u0081\u0098\u00a8\u0006\"\u000537431\u0012\u0011\bE\u0012\u0006\u0010\u0090\u0082\u0098\u00a8\u0006\"\u000537432\u0012\u0011\bF\u0012\u0006\u0010\u00a2\u0083\u0098\u00a8\u0006\"\u000537433\u0012\u0011\bG\u0012\u0006\u0010\u00a9\u0084\u0098\u00a8\u0006\"\u000537434\u0012\u0011\bH\u0012\u0006\u0010\u00c7\u0084\u0098\u00a8\u0006\"\u000537435\u0012\u0011\bI\u0012\u0006\u0010\u008a\u0085\u0098\u00a8\u0006\"\u000539658\u0012\u0011\bJ\u0012\u0006\u0010\u00cf\u0085\u0098\u00a8\u0006\"\u000539659\u0012\u0011\bK\u0012\u0006\u0010\u00fc\u0085\u0098\u00a8\u0006\"\u000539660\u0012\u0011\bL\u0012\u0006\u0010\u00ad\u0086\u0098\u00a8\u0006\"\u000539661\u0012\u0011\bM\u0012\u0006\u0010\u0084\u0087\u0098\u00a8\u0006\"\u000537440\u0012\u0011\bN\u0012\u0006\u0010\u00c4\u0088\u0098\u00a8\u0006\"\u000537441\u0012\u0011\bO\u0012\u0006\u0010\u00e2\u008a\u0098\u00a8\u0006\"\u000537442\u001a\b\u001a\u0006FYDV83 \u00b2\u00e8\u0097\u00a8\u0006\"`\n/\n\u001022599-701ff27f-2\u0012\b15:30:00\u001a\b20230916 \u0000*\u00036040\u0001\u0012\u001d\r\u009b%\u0013\u00c2\u0015\u000b\u0016\u0092\u00c2\u001d\u0000\u00006C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-r\u001c\u00e7@(\u00b2\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FYDV83" + }, + { + "type": "con_recorrido", + "entity": "\n$3396f6bd-6605-4ddd-aa3d-f3870926e6e9\u001a\u0098\u0007\n/\n\u001022504-701ff27f-2\u0012\b15:13:00\u001a\b20230916 \u0000*\u00036040\u0000\u0012\u0011\b\u0018\u0012\u0006\u0010\u009a\u00e9\u0097\u00a8\u0006\"\u000535693\u0012\u0011\b\u0019\u0012\u0006\u0010\u00d7\u00e9\u0097\u00a8\u0006\"\u000535694\u0012\u0011\b\u001a\u0012\u0006\u0010\u0081\u00ea\u0097\u00a8\u0006\"\u000535695\u0012\u0011\b\u001b\u0012\u0006\u0010\u00b2\u00ea\u0097\u00a8\u0006\"\u000535696\u0012\u0011\b\u001c\u0012\u0006\u0010\u00e1\u00eb\u0097\u00a8\u0006\"\u000535697\u0012\u0011\b\u001d\u0012\u0006\u0010\u00c8\u00ec\u0097\u00a8\u0006\"\u00052-Jan\u0012\u0011\b\u001e\u0012\u0006\u0010\u00e4\u00ec\u0097\u00a8\u0006\"\u000542460\u0012\u0011\b\u001f\u0012\u0006\u0010\u0089\u00ed\u0097\u00a8\u0006\"\u000535690\u0012\u0011\b \u0012\u0006\u0010\u00e9\u00ed\u0097\u00a8\u0006\"\u000535700\u0012\u0011\b!\u0012\u0006\u0010\u0085\u00ee\u0097\u00a8\u0006\"\u000535701\u0012\u0011\b\"\u0012\u0006\u0010\u00c5\u00ee\u0097\u00a8\u0006\"\u000535703\u0012\u0011\b#\u0012\u0006\u0010\u00d4\u00ee\u0097\u00a8\u0006\"\u000535704\u0012\u0011\b$\u0012\u0006\u0010\u00e9\u00ee\u0097\u00a8\u0006\"\u000535705\u0012\u0011\b%\u0012\u0006\u0010\u00fc\u00ee\u0097\u00a8\u0006\"\u000535706\u0012\u0011\b&\u0012\u0006\u0010\u00b2\u00ef\u0097\u00a8\u0006\"\u000535707\u0012\u0011\b'\u0012\u0006\u0010\u00ca\u00ef\u0097\u00a8\u0006\"\u000535708\u0012\u0011\b(\u0012\u0006\u0010\u00e1\u00ef\u0097\u00a8\u0006\"\u000535709\u0012\u0011\b)\u0012\u0006\u0010\u009b\u00f0\u0097\u00a8\u0006\"\u000540306\u0012\u0011\b*\u0012\u0006\u0010\u00d9\u00f0\u0097\u00a8\u0006\"\u000540308\u0012\u0011\b+\u0012\u0006\u0010\u00a2\u00f1\u0097\u00a8\u0006\"\u000540309\u0012\u0011\b,\u0012\u0006\u0010\u0093\u00f2\u0097\u00a8\u0006\"\u000539504\u0012\u0011\b-\u0012\u0006\u0010\u00b2\u00f2\u0097\u00a8\u0006\"\u000539595\u0012\u0011\b.\u0012\u0006\u0010\u00c1\u00f2\u0097\u00a8\u0006\"\u000539759\u0012\u0011\b/\u0012\u0006\u0010\u008f\u00f3\u0097\u00a8\u0006\"\u000537627\u0012\u0011\b0\u0012\u0006\u0010\u00ab\u00f4\u0097\u00a8\u0006\"\u000539712\u0012\u0011\b1\u0012\u0006\u0010\u00ca\u00f4\u0097\u00a8\u0006\"\u000539714\u0012\u0011\b2\u0012\u0006\u0010\u00eb\u00f4\u0097\u00a8\u0006\"\u000539715\u0012\u0011\b3\u0012\u0006\u0010\u0083\u00f5\u0097\u00a8\u0006\"\u000539470\u0012\u0011\b4\u0012\u0006\u0010\u00f0\u00f5\u0097\u00a8\u0006\"\u000539611\u0012\u0011\b5\u0012\u0006\u0010\u00af\u00f6\u0097\u00a8\u0006\"\u000537636\u0012\u0011\b6\u0012\u0006\u0010\u00a3\u00f7\u0097\u00a8\u0006\"\u000537637\u0012\u0011\b7\u0012\u0006\u0010\u00de\u00f7\u0097\u00a8\u0006\"\u000537639\u0012\u0011\b8\u0012\u0006\u0010\u0087\u00f8\u0097\u00a8\u0006\"\u000539200\u0012\u0011\b9\u0012\u0006\u0010\u00d4\u00f8\u0097\u00a8\u0006\"\u000540191\u0012\u0011\b:\u0012\u0006\u0010\u00f3\u00f8\u0097\u00a8\u0006\"\u000540192\u0012\u0011\b;\u0012\u0006\u0010\u00a4\u00f9\u0097\u00a8\u0006\"\u000540193\u0012\u0011\b<\u0012\u0006\u0010\u00c8\u00f9\u0097\u00a8\u0006\"\u000540194\u0012\u0011\b=\u0012\u0006\u0010\u00a3\u00fa\u0097\u00a8\u0006\"\u000538025\u0012\u0011\b>\u0012\u0006\u0010\u00b9\u00fa\u0097\u00a8\u0006\"\u000538026\u0012\u0011\b?\u0012\u0006\u0010\u00d8\u00fa\u0097\u00a8\u0006\"\u000538027\u0012\u0011\b@\u0012\u0006\u0010\u00e4\u00fa\u0097\u00a8\u0006\"\u000538028\u0012\u0011\bA\u0012\u0006\u0010\u00f7\u00fa\u0097\u00a8\u0006\"\u000538029\u0012\u0011\bB\u0012\u0006\u0010\u0094\u00fb\u0097\u00a8\u0006\"\u000538030\u0012\u0011\bC\u0012\u0006\u0010\u00b3\u00fb\u0097\u00a8\u0006\"\u000538031\u0012\u0011\bD\u0012\u0006\u0010\u00d7\u00fb\u0097\u00a8\u0006\"\u000538032\u001a\b\u001a\u0006JGJV34 \u00bd\u00e8\u0097\u00a8\u0006\"`\n/\n\u001022504-701ff27f-2\u0012\b15:13:00\u001a\b20230916 \u0000*\u00036040\u0000\u0012\u001d\r\u00e8;\u0013\u00c2\u0015\u00a9'\u0092\u00c2\u001d\u0000\u0000\u0013C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00bd\u00e8\u0097\u00a8\u0006B\b\u001a\u0006JGJV34" + }, + { + "type": "con_recorrido", + "entity": "\n$45a577e9-30e0-4471-be43-b88a2e3f895a\u001a\u009a\u0007\n/\n\u001022597-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00036040\u0001\u0012\u0011\b#\u0012\u0006\u0010\u00b6\u00e8\u0097\u00a8\u0006\"\u000590007\u0012\u0011\b$\u0012\u0006\u0010\u00e2\u00e8\u0097\u00a8\u0006\"\u000540830\u0012\u0011\b%\u0012\u0006\u0010\u0089\u00e9\u0097\u00a8\u0006\"\u000540831\u0012\u0011\b&\u0012\u0006\u0010\u00e0\u00e9\u0097\u00a8\u0006\"\u000539599\u0012\u0011\b'\u0012\u0006\u0010\u00f7\u00e9\u0097\u00a8\u0006\"\u000539600\u0012\u0011\b(\u0012\u0006\u0010\u00bc\u00ea\u0097\u00a8\u0006\"\u000537496\u0012\u0011\b)\u0012\u0006\u0010\u00ee\u00ea\u0097\u00a8\u0006\"\u000545064\u0012\u0011\b*\u0012\u0006\u0010\u00b8\u00eb\u0097\u00a8\u0006\"\u000537506\u0012\u0011\b+\u0012\u0006\u0010\u00db\u00eb\u0097\u00a8\u0006\"\u000549496\u0012\u0011\b,\u0012\u0006\u0010\u0084\u00ec\u0097\u00a8\u0006\"\u000549497\u0012\u0011\b-\u0012\u0006\u0010\u009d\u00ec\u0097\u00a8\u0006\"\u000539624\u0012\u0011\b.\u0012\u0006\u0010\u00de\u00ec\u0097\u00a8\u0006\"\u000590000\u0012\u0011\b/\u0012\u0006\u0010\u0090\u00ed\u0097\u00a8\u0006\"\u000539628\u0012\u0011\b0\u0012\u0006\u0010\u00db\u00ed\u0097\u00a8\u0006\"\u000539631\u0012\u0011\b1\u0012\u0006\u0010\u0089\u00ee\u0097\u00a8\u0006\"\u000549311\u0012\u0011\b2\u0012\u0006\u0010\u00c0\u00ee\u0097\u00a8\u0006\"\u000539634\u0012\u0011\b3\u0012\u0006\u0010\u00d8\u00ee\u0097\u00a8\u0006\"\u000539635\u0012\u0011\b4\u0012\u0006\u0010\u0085\u00ef\u0097\u00a8\u0006\"\u000539636\u0012\u0011\b5\u0012\u0006\u0010\u00b4\u00f0\u0097\u00a8\u0006\"\u000539637\u0012\u0011\b6\u0012\u0006\u0010\u00e5\u00f0\u0097\u00a8\u0006\"\u000549317\u0012\u0011\b7\u0012\u0006\u0010\u0083\u00f1\u0097\u00a8\u0006\"\u000549318\u0012\u0011\b8\u0012\u0006\u0010\u00c4\u00f1\u0097\u00a8\u0006\"\u000549319\u0012\u0011\b9\u0012\u0006\u0010\u0082\u00f2\u0097\u00a8\u0006\"\u000539641\u0012\u0011\b:\u0012\u0006\u0010\u00a5\u00f2\u0097\u00a8\u0006\"\u000539642\u0012\u0011\b;\u0012\u0006\u0010\u00b9\u00f4\u0097\u00a8\u0006\"\u000549325\u0012\u0011\b<\u0012\u0006\u0010\u00f8\u00f4\u0097\u00a8\u0006\"\u000549326\u0012\u0011\b=\u0012\u0006\u0010\u0097\u00f5\u0097\u00a8\u0006\"\u000537425\u0012\u0011\b>\u0012\u0006\u0010\u00bd\u00f5\u0097\u00a8\u0006\"\u000537426\u0012\u0011\b?\u0012\u0006\u0010\u00e9\u00f5\u0097\u00a8\u0006\"\u000537427\u0012\u0013\b@\u0012\u0006\u0010\u009c\u00f6\u0097\u00a8\u0006\"\u00078606049\u0012\u0011\bA\u0012\u0006\u0010\u00cd\u00f6\u0097\u00a8\u0006\"\u000537428\u0012\u0011\bB\u0012\u0006\u0010\u00f8\u00f6\u0097\u00a8\u0006\"\u000537429\u0012\u0011\bC\u0012\u0006\u0010\u009a\u00f7\u0097\u00a8\u0006\"\u000537430\u0012\u0011\bD\u0012\u0006\u0010\u00bb\u00f7\u0097\u00a8\u0006\"\u000537431\u0012\u0011\bE\u0012\u0006\u0010\u00db\u00f7\u0097\u00a8\u0006\"\u000537432\u0012\u0011\bF\u0012\u0006\u0010\u00c6\u00f8\u0097\u00a8\u0006\"\u000537433\u0012\u0011\bG\u0012\u0006\u0010\u00a7\u00f9\u0097\u00a8\u0006\"\u000537434\u0012\u0011\bH\u0012\u0006\u0010\u00bd\u00f9\u0097\u00a8\u0006\"\u000537435\u0012\u0011\bI\u0012\u0006\u0010\u00ec\u00f9\u0097\u00a8\u0006\"\u000539658\u0012\u0011\bJ\u0012\u0006\u0010\u009d\u00fa\u0097\u00a8\u0006\"\u000539659\u0012\u0011\bK\u0012\u0006\u0010\u00bc\u00fa\u0097\u00a8\u0006\"\u000539660\u0012\u0011\bL\u0012\u0006\u0010\u00de\u00fa\u0097\u00a8\u0006\"\u000539661\u0012\u0011\bM\u0012\u0006\u0010\u009a\u00fb\u0097\u00a8\u0006\"\u000537440\u0012\u0011\bN\u0012\u0006\u0010\u009c\u00fc\u0097\u00a8\u0006\"\u000537441\u0012\u0011\bO\u0012\u0006\u0010\u00d9\u00fd\u0097\u00a8\u0006\"\u000537442\u001a\b\u001a\u0006JRKL26 \u0092\u00e8\u0097\u00a8\u0006\"`\n/\n\u001022597-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00036040\u0001\u0012\u001d\rTA\u0013\u00c2\u0015\u0089\u0010\u0092\u00c2\u001d\u0000\u0000lC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UUU@(\u0092\u00e8\u0097\u00a8\u0006B\b\u001a\u0006JRKL26" + }, + { + "type": "con_recorrido", + "entity": "\n$25aac175-203e-47d6-95a5-1e7d0d4e3317\u001a\u00d5\u0004\n/\n\u001022502-701ff27f-2\u0012\b14:53:00\u001a\b20230916 \u0000*\u00036040\u0000\u0012\u0011\b)\u0012\u0006\u0010\u009b\u00e8\u0097\u00a8\u0006\"\u000540306\u0012\u0011\b*\u0012\u0006\u0010\u00e0\u00e8\u0097\u00a8\u0006\"\u000540308\u0012\u0011\b+\u0012\u0006\u0010\u00af\u00e9\u0097\u00a8\u0006\"\u000540309\u0012\u0011\b,\u0012\u0006\u0010\u00a7\u00ea\u0097\u00a8\u0006\"\u000539504\u0012\u0011\b-\u0012\u0006\u0010\u00c8\u00ea\u0097\u00a8\u0006\"\u000539595\u0012\u0011\b.\u0012\u0006\u0010\u00d8\u00ea\u0097\u00a8\u0006\"\u000539759\u0012\u0011\b/\u0012\u0006\u0010\u00a8\u00eb\u0097\u00a8\u0006\"\u000537627\u0012\u0011\b0\u0012\u0006\u0010\u00c6\u00ec\u0097\u00a8\u0006\"\u000539712\u0012\u0011\b1\u0012\u0006\u0010\u00e5\u00ec\u0097\u00a8\u0006\"\u000539714\u0012\u0011\b2\u0012\u0006\u0010\u0085\u00ed\u0097\u00a8\u0006\"\u000539715\u0012\u0011\b3\u0012\u0006\u0010\u009d\u00ed\u0097\u00a8\u0006\"\u000539470\u0012\u0011\b4\u0012\u0006\u0010\u0086\u00ee\u0097\u00a8\u0006\"\u000539611\u0012\u0011\b5\u0012\u0006\u0010\u00c2\u00ee\u0097\u00a8\u0006\"\u000537636\u0012\u0011\b6\u0012\u0006\u0010\u00af\u00ef\u0097\u00a8\u0006\"\u000537637\u0012\u0011\b7\u0012\u0006\u0010\u00e6\u00ef\u0097\u00a8\u0006\"\u000537639\u0012\u0011\b8\u0012\u0006\u0010\u008b\u00f0\u0097\u00a8\u0006\"\u000539200\u0012\u0011\b9\u0012\u0006\u0010\u00d1\u00f0\u0097\u00a8\u0006\"\u000540191\u0012\u0011\b:\u0012\u0006\u0010\u00ed\u00f0\u0097\u00a8\u0006\"\u000540192\u0012\u0011\b;\u0012\u0006\u0010\u0098\u00f1\u0097\u00a8\u0006\"\u000540193\u0012\u0011\b<\u0012\u0006\u0010\u00b8\u00f1\u0097\u00a8\u0006\"\u000540194\u0012\u0011\b=\u0012\u0006\u0010\u0089\u00f2\u0097\u00a8\u0006\"\u000538025\u0012\u0011\b>\u0012\u0006\u0010\u009b\u00f2\u0097\u00a8\u0006\"\u000538026\u0012\u0011\b?\u0012\u0006\u0010\u00b6\u00f2\u0097\u00a8\u0006\"\u000538027\u0012\u0011\b@\u0012\u0006\u0010\u00c0\u00f2\u0097\u00a8\u0006\"\u000538028\u0012\u0011\bA\u0012\u0006\u0010\u00d1\u00f2\u0097\u00a8\u0006\"\u000538029\u0012\u0011\bB\u0012\u0006\u0010\u00ea\u00f2\u0097\u00a8\u0006\"\u000538030\u0012\u0011\bC\u0012\u0006\u0010\u0084\u00f3\u0097\u00a8\u0006\"\u000538031\u0012\u0011\bD\u0012\u0006\u0010\u00a3\u00f3\u0097\u00a8\u0006\"\u000538032\u001a\b\u001a\u0006JVTK75 \u008e\u00e8\u0097\u00a8\u0006\"`\n/\n\u001022502-701ff27f-2\u0012\b14:53:00\u001a\b20230916 \u0000*\u00036040\u0000\u0012\u001d\r\u0086F\u0013\u00c2\u0015;\u0016\u0092\u00c2\u001d\u0000\u0000\u00a5C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u001c\u00c71@(\u008e\u00e8\u0097\u00a8\u0006B\b\u001a\u0006JVTK75" + }, + { + "type": "con_recorrido", + "entity": "\n$f759ebf8-8032-49b2-8d28-bbb2757b1590\u001a\u00dd\u0004\n/\n\u001022672-701ff27f-2\u0012\b14:48:00\u001a\b20230916 \u0000*\u00036050\u0000\u0012\u0011\b*\u0012\u0006\u0010\u00fc\u00e8\u0097\u00a8\u0006\"\u000537465\u0012\u0011\b+\u0012\u0006\u0010\u00ad\u00e9\u0097\u00a8\u0006\"\u000539503\u0012\u0011\b,\u0012\u0006\u0010\u0094\u00ea\u0097\u00a8\u0006\"\u000539504\u0012\u0011\b-\u0012\u0006\u0010\u00aa\u00ea\u0097\u00a8\u0006\"\u000539595\u0012\u0011\b.\u0012\u0006\u0010\u00bf\u00ea\u0097\u00a8\u0006\"\u000539759\u0012\u0011\b/\u0012\u0006\u0010\u00fd\u00ea\u0097\u00a8\u0006\"\u000539760\u0012\u0011\b0\u0012\u0006\u0010\u00a5\u00eb\u0097\u00a8\u0006\"\u000539761\u0012\u0011\b1\u0012\u0006\u0010\u00cc\u00eb\u0097\u00a8\u0006\"\u000539511\u0012\u0011\b2\u0012\u0006\u0010\u00c6\u00ec\u0097\u00a8\u0006\"\u000539763\u0012\u0011\b3\u0012\u0006\u0010\u00f1\u00ec\u0097\u00a8\u0006\"\u000539764\u0012\u0011\b4\u0012\u0006\u0010\u0094\u00ed\u0097\u00a8\u0006\"\u000539765\u0012\u0011\b5\u0012\u0006\u0010\u00ab\u00ed\u0097\u00a8\u0006\"\u000539529\u0012\u0011\b6\u0012\u0006\u0010\u00e8\u00ed\u0097\u00a8\u0006\"\u000539530\u0012\u0011\b7\u0012\u0006\u0010\u0096\u00ee\u0097\u00a8\u0006\"\u000540150\u0012\u0011\b8\u0012\u0006\u0010\u00fb\u00ee\u0097\u00a8\u0006\"\u000540152\u0012\u0011\b9\u0012\u0006\u0010\u00e5\u00ef\u0097\u00a8\u0006\"\u000538025\u0012\u0011\b:\u0012\u0006\u0010\u00f7\u00ef\u0097\u00a8\u0006\"\u000538026\u0012\u0011\b;\u0012\u0006\u0010\u0092\u00f0\u0097\u00a8\u0006\"\u000538027\u0012\u0011\b<\u0012\u0006\u0010\u009c\u00f0\u0097\u00a8\u0006\"\u000538028\u0012\u0011\b=\u0012\u0006\u0010\u00b1\u00f0\u0097\u00a8\u0006\"\u000538029\u0012\u0011\b>\u0012\u0006\u0010\u00c5\u00f0\u0097\u00a8\u0006\"\u000538030\u0012\u0011\b?\u0012\u0006\u0010\u00df\u00f0\u0097\u00a8\u0006\"\u000538031\u0012\u0014\b@\u0012\u0006\u0010\u00b2\u00f1\u0097\u00a8\u0006\"\b16206047\u0012\u0011\bA\u0012\u0006\u0010\u00b7\u00f2\u0097\u00a8\u0006\"\u000539214\u0012\u0011\bB\u0012\u0006\u0010\u00ed\u00f2\u0097\u00a8\u0006\"\u000539215\u0012\u0014\bC\u0012\u0006\u0010\u00de\u00f3\u0097\u00a8\u0006\"\b16027103\u0012\u0013\bD\u0012\u0006\u0010\u00ed\u00f4\u0097\u00a8\u0006\"\u00074950739\u0012\u0011\bE\u0012\u0006\u0010\u00b9\u00f6\u0097\u00a8\u0006\"\u000540978\u001a\b\u001a\u0006DLRD47 \u00ac\u00e8\u0097\u00a8\u0006\"`\n/\n\u001022672-701ff27f-2\u0012\b14:48:00\u001a\b20230916 \u0000*\u00036050\u0000\u0012\u001d\r\u00cbF\u0013\u00c2\u0015\u0012\u0012\u0092\u00c2\u001d\u0000\u0000\u00a4C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u000e@(\u00ac\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DLRD47" + }, + { + "type": "con_recorrido", + "entity": "\n$8b6fd731-e8d4-4ccd-9d15-5607ac484279\u001a\u00aa\u0006\n/\n\u001022739-701ff27f-2\u0012\b15:03:00\u001a\b20230916 \u0000*\u00036050\u0001\u0012\u0011\b\u001f\u0012\u0006\u0010\u00b6\u00e8\u0097\u00a8\u0006\"\u000539599\u0012\u0011\b \u0012\u0006\u0010\u0087\u00e9\u0097\u00a8\u0006\"\u000545011\u0012\u0011\b!\u0012\u0006\u0010\u00f0\u00e9\u0097\u00a8\u0006\"\u000539623\u0012\u0011\b\"\u0012\u0006\u0010\u00a2\u00ea\u0097\u00a8\u0006\"\u000539624\u0012\u0011\b#\u0012\u0006\u0010\u00d2\u00ea\u0097\u00a8\u0006\"\u000539625\u0012\u0011\b$\u0012\u0006\u0010\u009a\u00eb\u0097\u00a8\u0006\"\u000539628\u0012\u0011\b%\u0012\u0006\u0010\u00e7\u00eb\u0097\u00a8\u0006\"\u000539631\u0012\u0011\b&\u0012\u0006\u0010\u0096\u00ec\u0097\u00a8\u0006\"\u000549311\u0012\u0011\b'\u0012\u0006\u0010\u00cd\u00ec\u0097\u00a8\u0006\"\u000539634\u0012\u0011\b(\u0012\u0006\u0010\u00e7\u00ec\u0097\u00a8\u0006\"\u000539635\u0012\u0011\b)\u0012\u0006\u0010\u0094\u00ed\u0097\u00a8\u0006\"\u000539636\u0012\u0011\b*\u0012\u0006\u0010\u00c4\u00ee\u0097\u00a8\u0006\"\u000539637\u0012\u0011\b+\u0012\u0006\u0010\u00f5\u00ee\u0097\u00a8\u0006\"\u000549317\u0012\u0011\b,\u0012\u0006\u0010\u0093\u00ef\u0097\u00a8\u0006\"\u000549318\u0012\u0011\b-\u0012\u0006\u0010\u00d3\u00ef\u0097\u00a8\u0006\"\u000549319\u0012\u0011\b.\u0012\u0006\u0010\u0091\u00f0\u0097\u00a8\u0006\"\u000539641\u0012\u0011\b/\u0012\u0006\u0010\u00b4\u00f0\u0097\u00a8\u0006\"\u000539642\u0012\u0011\b0\u0012\u0006\u0010\u00f5\u00f1\u0097\u00a8\u0006\"\u000549323\u0012\u0011\b1\u0012\u0006\u0010\u00c4\u00f2\u0097\u00a8\u0006\"\u000549325\u0012\u0011\b2\u0012\u0006\u0010\u0081\u00f3\u0097\u00a8\u0006\"\u000549326\u0012\u0011\b3\u0012\u0006\u0010\u00a0\u00f3\u0097\u00a8\u0006\"\u000537425\u0012\u0011\b4\u0012\u0006\u0010\u00c5\u00f3\u0097\u00a8\u0006\"\u000537426\u0012\u0011\b5\u0012\u0006\u0010\u00f0\u00f3\u0097\u00a8\u0006\"\u000537427\u0012\u0013\b6\u0012\u0006\u0010\u00a1\u00f4\u0097\u00a8\u0006\"\u00078606049\u0012\u0011\b7\u0012\u0006\u0010\u00c7\u00f4\u0097\u00a8\u0006\"\u000537840\u0012\u0011\b8\u0012\u0006\u0010\u00db\u00f4\u0097\u00a8\u0006\"\u000539653\u0012\u0011\b9\u0012\u0006\u0010\u00f5\u00f4\u0097\u00a8\u0006\"\u000539654\u0012\u0011\b:\u0012\u0006\u0010\u0094\u00f5\u0097\u00a8\u0006\"\u000549334\u0012\u0011\b;\u0012\u0006\u0010\u00d0\u00f5\u0097\u00a8\u0006\"\u000549335\u0012\u0011\b<\u0012\u0006\u0010\u0080\u00f6\u0097\u00a8\u0006\"\u000549336\u0012\u0011\b=\u0012\u0006\u0010\u0080\u00f7\u0097\u00a8\u0006\"\u000542436\u0012\u0013\b>\u0012\u0006\u0010\u00a4\u00f7\u0097\u00a8\u0006\"\u00074831072\u0012\u0011\b?\u0012\u0006\u0010\u00b0\u00f7\u0097\u00a8\u0006\"\u000542437\u0012\u0011\b@\u0012\u0006\u0010\u00eb\u00f7\u0097\u00a8\u0006\"\u000542438\u0012\u0011\bA\u0012\u0006\u0010\u008a\u00f8\u0097\u00a8\u0006\"\u000537442\u0012\u0011\bB\u0012\u0006\u0010\u00a6\u00f8\u0097\u00a8\u0006\"\u000537850\u0012\u0011\bC\u0012\u0006\u0010\u00d7\u00f8\u0097\u00a8\u0006\"\u000532692\u0012\u0011\bD\u0012\u0006\u0010\u00ef\u00f8\u0097\u00a8\u0006\"\u000537852\u0012\u0011\bE\u0012\u0006\u0010\u0089\u00f9\u0097\u00a8\u0006\"\u000537853\u001a\b\u001a\u0006HBSK84 \u008d\u00e8\u0097\u00a8\u0006\"`\n/\n\u001022739-701ff27f-2\u0012\b15:03:00\u001a\b20230916 \u0000*\u00036050\u0001\u0012\u001d\r_E\u0013\u00c2\u0015Q\u0013\u0092\u00c2\u001d\u0000\u0000\u0019C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008e\u00e3\u0000A(\u008d\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HBSK84" + }, + { + "type": "con_recorrido", + "entity": "\n$759bd548-4d85-4058-8803-c1ffca660bf5\u001a\u00e7\u0003\n/\n\u001022738-701ff27f-2\u0012\b14:43:00\u001a\b20230916 \u0000*\u00036050\u0001\u0012\u0011\b0\u0012\u0006\u0010\u00bc\u00e9\u0097\u00a8\u0006\"\u000549323\u0012\u0011\b1\u0012\u0006\u0010\u0090\u00ea\u0097\u00a8\u0006\"\u000549325\u0012\u0011\b2\u0012\u0006\u0010\u00d1\u00ea\u0097\u00a8\u0006\"\u000549326\u0012\u0011\b3\u0012\u0006\u0010\u00f0\u00ea\u0097\u00a8\u0006\"\u000537425\u0012\u0011\b4\u0012\u0006\u0010\u0096\u00eb\u0097\u00a8\u0006\"\u000537426\u0012\u0011\b5\u0012\u0006\u0010\u00c2\u00eb\u0097\u00a8\u0006\"\u000537427\u0012\u0013\b6\u0012\u0006\u0010\u00f4\u00eb\u0097\u00a8\u0006\"\u00078606049\u0012\u0011\b7\u0012\u0006\u0010\u009a\u00ec\u0097\u00a8\u0006\"\u000537840\u0012\u0011\b8\u0012\u0006\u0010\u00ad\u00ec\u0097\u00a8\u0006\"\u000539653\u0012\u0011\b9\u0012\u0006\u0010\u00c7\u00ec\u0097\u00a8\u0006\"\u000539654\u0012\u0011\b:\u0012\u0006\u0010\u00e5\u00ec\u0097\u00a8\u0006\"\u000549334\u0012\u0011\b;\u0012\u0006\u0010\u00a0\u00ed\u0097\u00a8\u0006\"\u000549335\u0012\u0011\b<\u0012\u0006\u0010\u00ce\u00ed\u0097\u00a8\u0006\"\u000549336\u0012\u0011\b=\u0012\u0006\u0010\u00c6\u00ee\u0097\u00a8\u0006\"\u000542436\u0012\u0013\b>\u0012\u0006\u0010\u00e8\u00ee\u0097\u00a8\u0006\"\u00074831072\u0012\u0011\b?\u0012\u0006\u0010\u00f3\u00ee\u0097\u00a8\u0006\"\u000542437\u0012\u0011\b@\u0012\u0006\u0010\u00a9\u00ef\u0097\u00a8\u0006\"\u000542438\u0012\u0011\bA\u0012\u0006\u0010\u00c6\u00ef\u0097\u00a8\u0006\"\u000537442\u0012\u0011\bB\u0012\u0006\u0010\u00de\u00ef\u0097\u00a8\u0006\"\u000537850\u0012\u0011\bC\u0012\u0006\u0010\u008a\u00f0\u0097\u00a8\u0006\"\u000532692\u0012\u0011\bD\u0012\u0006\u0010\u00a0\u00f0\u0097\u00a8\u0006\"\u000537852\u0012\u0011\bE\u0012\u0006\u0010\u00b7\u00f0\u0097\u00a8\u0006\"\u000537853\u001a\b\u001a\u0006HRCC75 \u00b0\u00e8\u0097\u00a8\u0006\"`\n/\n\u001022738-701ff27f-2\u0012\b14:43:00\u001a\b20230916 \u0000*\u00036050\u0001\u0012\u001d\r]9\u0013\u00c2\u0015\u00b6(\u0092\u00c2\u001d\u0000\u0000\u00a8C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008e\u00e3\u0080A(\u00b0\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HRCC75" + }, + { + "type": "con_recorrido", + "entity": "\n$4af2b46e-7d07-4e8f-9a6a-e27bcbbcff65\u001a\u00ea\n\n/\n\u001022740-701ff27f-2\u0012\b15:23:00\u001a\b20230916 \u0000*\u00036050\u0001\u0012\u0011\b\u0001\u0012\u0006\u0010\u0099\u00e9\u0097\u00a8\u0006\"\u000540977\u0012\u0014\b\u0002\u0012\u0006\u0010\u00de\u00ea\u0097\u00a8\u0006\"\b16206049\u0012\u0014\b\u0003\u0012\u0006\u0010\u009b\u00eb\u0097\u00a8\u0006\"\b16206051\u0012\u0011\b\u0004\u0012\u0006\u0010\u00dd\u00eb\u0097\u00a8\u0006\"\u000539576\u0012\u0011\b\u0005\u0012\u0006\u0010\u008f\u00ec\u0097\u00a8\u0006\"\u000539214\u0012\u0011\b\u0006\u0012\u0006\u0010\u00c5\u00ed\u0097\u00a8\u0006\"\u000538032\u0012\u0011\b\u0007\u0012\u0006\u0010\u00db\u00ed\u0097\u00a8\u0006\"\u000539678\u0012\u0011\b\b\u0012\u0006\u0010\u00ee\u00ed\u0097\u00a8\u0006\"\u000539679\u0012\u0011\b\t\u0012\u0006\u0010\u008d\u00ee\u0097\u00a8\u0006\"\u000539580\u0012\u0011\b\n\u0012\u0006\u0010\u00a8\u00ee\u0097\u00a8\u0006\"\u000539581\u0012\u0011\b\u000b\u0012\u0006\u0010\u00b7\u00ee\u0097\u00a8\u0006\"\u000539582\u0012\u0011\b\f\u0012\u0006\u0010\u00c2\u00ee\u0097\u00a8\u0006\"\u000539583\u0012\u0011\b\r\u0012\u0006\u0010\u00d7\u00ee\u0097\u00a8\u0006\"\u000539584\u0012\u0011\b\u000e\u0012\u0006\u0010\u00fd\u00ee\u0097\u00a8\u0006\"\u000539585\u0012\u0011\b\u000f\u0012\u0006\u0010\u00ce\u00ef\u0097\u00a8\u0006\"\u000540196\u0012\u0011\b\u0010\u0012\u0006\u0010\u00f9\u00ef\u0097\u00a8\u0006\"\u000540151\u0012\u0011\b\u0011\u0012\u0006\u0010\u00ff\u00f0\u0097\u00a8\u0006\"\u000539700\u0012\u0011\b\u0012\u0012\u0006\u0010\u00a9\u00f1\u0097\u00a8\u0006\"\u000539701\u0012\u0011\b\u0013\u0012\u0006\u0010\u00ce\u00f1\u0097\u00a8\u0006\"\u000539702\u0012\u0011\b\u0014\u0012\u0006\u0010\u00da\u00f1\u0097\u00a8\u0006\"\u000539703\u0012\u0011\b\u0015\u0012\u0006\u0010\u0089\u00f2\u0097\u00a8\u0006\"\u000539704\u0012\u0011\b\u0016\u0012\u0006\u0010\u00a4\u00f2\u0097\u00a8\u0006\"\u000539918\u0012\u0011\b\u0017\u0012\u0006\u0010\u00cb\u00f2\u0097\u00a8\u0006\"\u000539513\u0012\u0011\b\u0018\u0012\u0006\u0010\u00f5\u00f2\u0097\u00a8\u0006\"\u000539591\u0012\u0011\b\u0019\u0012\u0006\u0010\u0091\u00f3\u0097\u00a8\u0006\"\u000539592\u0012\u0011\b\u001a\u0012\u0006\u0010\u00cb\u00f3\u0097\u00a8\u0006\"\u000539593\u0012\u0011\b\u001b\u0012\u0006\u0010\u00f0\u00f3\u0097\u00a8\u0006\"\u000539594\u0012\u0011\b\u001c\u0012\u0006\u0010\u00eb\u00f4\u0097\u00a8\u0006\"\u000539596\u0012\u0011\b\u001d\u0012\u0006\u0010\u008f\u00f5\u0097\u00a8\u0006\"\u000539597\u0012\u0011\b\u001e\u0012\u0006\u0010\u00bd\u00f5\u0097\u00a8\u0006\"\u000539598\u0012\u0011\b\u001f\u0012\u0006\u0010\u00a1\u00f6\u0097\u00a8\u0006\"\u000539599\u0012\u0011\b \u0012\u0006\u0010\u00f0\u00f6\u0097\u00a8\u0006\"\u000545011\u0012\u0011\b!\u0012\u0006\u0010\u00da\u00f7\u0097\u00a8\u0006\"\u000539623\u0012\u0011\b\"\u0012\u0006\u0010\u008f\u00f8\u0097\u00a8\u0006\"\u000539624\u0012\u0011\b#\u0012\u0006\u0010\u00c1\u00f8\u0097\u00a8\u0006\"\u000539625\u0012\u0011\b$\u0012\u0006\u0010\u008e\u00f9\u0097\u00a8\u0006\"\u000539628\u0012\u0011\b%\u0012\u0006\u0010\u00e3\u00f9\u0097\u00a8\u0006\"\u000539631\u0012\u0011\b&\u0012\u0006\u0010\u0098\u00fa\u0097\u00a8\u0006\"\u000549311\u0012\u0011\b'\u0012\u0006\u0010\u00d8\u00fa\u0097\u00a8\u0006\"\u000539634\u0012\u0011\b(\u0012\u0006\u0010\u00f5\u00fa\u0097\u00a8\u0006\"\u000539635\u0012\u0011\b)\u0012\u0006\u0010\u00ab\u00fb\u0097\u00a8\u0006\"\u000539636\u0012\u0011\b*\u0012\u0006\u0010\u0082\u00fd\u0097\u00a8\u0006\"\u000539637\u0012\u0011\b+\u0012\u0006\u0010\u00bf\u00fd\u0097\u00a8\u0006\"\u000549317\u0012\u0011\b,\u0012\u0006\u0010\u00e7\u00fd\u0097\u00a8\u0006\"\u000549318\u0012\u0011\b-\u0012\u0006\u0010\u00ba\u00fe\u0097\u00a8\u0006\"\u000549319\u0012\u0011\b.\u0012\u0006\u0010\u008d\u00ff\u0097\u00a8\u0006\"\u000539641\u0012\u0011\b/\u0012\u0006\u0010\u00bc\u00ff\u0097\u00a8\u0006\"\u000539642\u0012\u0011\b0\u0012\u0006\u0010\u00cc\u0081\u0098\u00a8\u0006\"\u000549323\u0012\u0011\b1\u0012\u0006\u0010\u00c0\u0082\u0098\u00a8\u0006\"\u000549325\u0012\u0011\b2\u0012\u0006\u0010\u009d\u0083\u0098\u00a8\u0006\"\u000549326\u0012\u0011\b3\u0012\u0006\u0010\u00cc\u0083\u0098\u00a8\u0006\"\u000537425\u0012\u0011\b4\u0012\u0006\u0010\u0085\u0084\u0098\u00a8\u0006\"\u000537426\u0012\u0011\b5\u0012\u0006\u0010\u00c9\u0084\u0098\u00a8\u0006\"\u000537427\u0012\u0013\b6\u0012\u0006\u0010\u0097\u0085\u0098\u00a8\u0006\"\u00078606049\u0012\u0011\b7\u0012\u0006\u0010\u00d5\u0085\u0098\u00a8\u0006\"\u000537840\u0012\u0011\b8\u0012\u0006\u0010\u00f5\u0085\u0098\u00a8\u0006\"\u000539653\u0012\u0011\b9\u0012\u0006\u0010\u00a0\u0086\u0098\u00a8\u0006\"\u000539654\u0012\u0011\b:\u0012\u0006\u0010\u00d2\u0086\u0098\u00a8\u0006\"\u000549334\u0012\u0011\b;\u0012\u0006\u0010\u00b8\u0087\u0098\u00a8\u0006\"\u000549335\u0012\u0011\b<\u0012\u0006\u0010\u008b\u0088\u0098\u00a8\u0006\"\u000549336\u0012\u0011\b=\u0012\u0006\u0010\u00ec\u0089\u0098\u00a8\u0006\"\u000542436\u0012\u0013\b>\u0012\u0006\u0010\u00ad\u008a\u0098\u00a8\u0006\"\u00074831072\u0012\u0011\b?\u0012\u0006\u0010\u00c2\u008a\u0098\u00a8\u0006\"\u000542437\u0012\u0011\b@\u0012\u0006\u0010\u00b0\u008b\u0098\u00a8\u0006\"\u000542438\u0012\u0011\bA\u0012\u0006\u0010\u00eb\u008b\u0098\u00a8\u0006\"\u000537442\u0012\u0011\bB\u0012\u0006\u0010\u009e\u008c\u0098\u00a8\u0006\"\u000537850\u0012\u0011\bC\u0012\u0006\u0010\u00fc\u008c\u0098\u00a8\u0006\"\u000532692\u0012\u0011\bD\u0012\u0006\u0010\u00ab\u008d\u0098\u00a8\u0006\"\u000537852\u0012\u0011\bE\u0012\u0006\u0010\u00de\u008d\u0098\u00a8\u0006\"\u000537853\u001a\b\u001a\u0006PDBV48 \u008c\u00e8\u0097\u00a8\u0006\"`\n/\n\u001022740-701ff27f-2\u0012\b15:23:00\u001a\b20230916 \u0000*\u00036050\u0001\u0012\u001d\r\u0004(\u0013\u00c2\u0015\u0097\u001f\u0092\u00c2\u001d\u0000\u0000LC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u008c\u00e8\u0097\u00a8\u0006B\b\u001a\u0006PDBV48" + }, + { + "type": "con_recorrido", + "entity": "\n$707d1c6a-cd15-4ec5-87e8-025b72aabf80\u001a\u00c6\u0007\n/\n\u001022673-701ff27f-2\u0012\b15:03:00\u001a\b20230916 \u0000*\u00036050\u0000\u0012\u0011\b\u0017\u0012\u0006\u0010\u00cd\u00e8\u0097\u00a8\u0006\"\u000535694\u0012\u0011\b\u0018\u0012\u0006\u0010\u00f8\u00e8\u0097\u00a8\u0006\"\u000535695\u0012\u0011\b\u0019\u0012\u0006\u0010\u00db\u00ea\u0097\u00a8\u0006\"\u000535697\u0012\u0011\b\u001a\u0012\u0006\u0010\u00d5\u00eb\u0097\u00a8\u0006\"\u000539778\u0012\u0011\b\u001b\u0012\u0006\u0010\u00fc\u00eb\u0097\u00a8\u0006\"\u000537986\u0012\u0011\b\u001c\u0012\u0006\u0010\u00a5\u00ec\u0097\u00a8\u0006\"\u000537987\u0012\u0011\b\u001d\u0012\u0006\u0010\u00bf\u00ec\u0097\u00a8\u0006\"\u000537988\u0012\u0011\b\u001e\u0012\u0006\u0010\u0088\u00ed\u0097\u00a8\u0006\"\u000549393\u0012\u0011\b\u001f\u0012\u0006\u0010\u00b7\u00ed\u0097\u00a8\u0006\"\u000549394\u0012\u0011\b \u0012\u0006\u0010\u00e9\u00ed\u0097\u00a8\u0006\"\u000550004\u0012\u0011\b!\u0012\u0006\u0010\u00b1\u00ee\u0097\u00a8\u0006\"\u000550030\u0012\u0011\b\"\u0012\u0006\u0010\u00db\u00ee\u0097\u00a8\u0006\"\u00053-Mar\u0012\u0011\b#\u0012\u0006\u0010\u0092\u00ef\u0097\u00a8\u0006\"\u000550031\u0012\u0011\b$\u0012\u0006\u0010\u00ab\u00ef\u0097\u00a8\u0006\"\u000549398\u0012\u0011\b%\u0012\u0006\u0010\u00c2\u00ef\u0097\u00a8\u0006\"\u000550032\u0012\u0011\b&\u0012\u0006\u0010\u00ed\u00ef\u0097\u00a8\u0006\"\u000539495\u0012\u0011\b'\u0012\u0006\u0010\u00c0\u00f0\u0097\u00a8\u0006\"\u000550033\u0012\u0011\b(\u0012\u0006\u0010\u00e3\u00f0\u0097\u00a8\u0006\"\u000539497\u0012\u0011\b)\u0012\u0006\u0010\u0084\u00f1\u0097\u00a8\u0006\"\u000549407\u0012\u0011\b*\u0012\u0006\u0010\u00f4\u00f1\u0097\u00a8\u0006\"\u000537465\u0012\u0011\b+\u0012\u0006\u0010\u00a1\u00f2\u0097\u00a8\u0006\"\u000539503\u0012\u0011\b,\u0012\u0006\u0010\u0082\u00f3\u0097\u00a8\u0006\"\u000539504\u0012\u0011\b-\u0012\u0006\u0010\u0097\u00f3\u0097\u00a8\u0006\"\u000539595\u0012\u0011\b.\u0012\u0006\u0010\u00ab\u00f3\u0097\u00a8\u0006\"\u000539759\u0012\u0011\b/\u0012\u0006\u0010\u00e7\u00f3\u0097\u00a8\u0006\"\u000539760\u0012\u0011\b0\u0012\u0006\u0010\u008e\u00f4\u0097\u00a8\u0006\"\u000539761\u0012\u0011\b1\u0012\u0006\u0010\u00b4\u00f4\u0097\u00a8\u0006\"\u000539511\u0012\u0011\b2\u0012\u0006\u0010\u00af\u00f5\u0097\u00a8\u0006\"\u000539763\u0012\u0011\b3\u0012\u0006\u0010\u00db\u00f5\u0097\u00a8\u0006\"\u000539764\u0012\u0011\b4\u0012\u0006\u0010\u00ff\u00f5\u0097\u00a8\u0006\"\u000539765\u0012\u0011\b5\u0012\u0006\u0010\u0098\u00f6\u0097\u00a8\u0006\"\u000539529\u0012\u0011\b6\u0012\u0006\u0010\u00d8\u00f6\u0097\u00a8\u0006\"\u000539530\u0012\u0011\b7\u0012\u0006\u0010\u0088\u00f7\u0097\u00a8\u0006\"\u000540150\u0012\u0011\b8\u0012\u0006\u0010\u00f5\u00f7\u0097\u00a8\u0006\"\u000540152\u0012\u0011\b9\u0012\u0006\u0010\u00ea\u00f8\u0097\u00a8\u0006\"\u000538025\u0012\u0011\b:\u0012\u0006\u0010\u00ff\u00f8\u0097\u00a8\u0006\"\u000538026\u0012\u0011\b;\u0012\u0006\u0010\u009c\u00f9\u0097\u00a8\u0006\"\u000538027\u0012\u0011\b<\u0012\u0006\u0010\u00a8\u00f9\u0097\u00a8\u0006\"\u000538028\u0012\u0011\b=\u0012\u0006\u0010\u00bf\u00f9\u0097\u00a8\u0006\"\u000538029\u0012\u0011\b>\u0012\u0006\u0010\u00d6\u00f9\u0097\u00a8\u0006\"\u000538030\u0012\u0011\b?\u0012\u0006\u0010\u00f4\u00f9\u0097\u00a8\u0006\"\u000538031\u0012\u0014\b@\u0012\u0006\u0010\u00d4\u00fa\u0097\u00a8\u0006\"\b16206047\u0012\u0011\bA\u0012\u0006\u0010\u00f1\u00fb\u0097\u00a8\u0006\"\u000539214\u0012\u0011\bB\u0012\u0006\u0010\u00b2\u00fc\u0097\u00a8\u0006\"\u000539215\u0012\u0014\bC\u0012\u0006\u0010\u00bd\u00fd\u0097\u00a8\u0006\"\b16027103\u0012\u0013\bD\u0012\u0006\u0010\u00f2\u00fe\u0097\u00a8\u0006\"\u00074950739\u0012\u0011\bE\u0012\u0006\u0010\u00fd\u0080\u0098\u00a8\u0006\"\u000540978\u001a\b\u001a\u0006RTZZ80 \u00b6\u00e8\u0097\u00a8\u0006\"`\n/\n\u001022673-701ff27f-2\u0012\b15:03:00\u001a\b20230916 \u0000*\u00036050\u0000\u0012\u001d\r:?\u0013\u00c2\u0015\u00b9$\u0092\u00c2\u001d\u0000\u0000\u00f0B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00ab\u00aabA(\u00b6\u00e8\u0097\u00a8\u0006B\b\u001a\u0006RTZZ80" + }, + { + "type": "con_recorrido", + "entity": "\n$f127cc61-f8d9-4215-83db-6460de2e816b\u001a\u00c3\u0002\n4\n\u0015fe471c50-7-701ff27f-2\u0012\b14:30:00\u001a\b20230916 \u0000*\u00036060\u0000\u0012\u0011\b9\u0012\u0006\u0010\u0085\u00ea\u0097\u00a8\u0006\"\u000591159\u0012\u0011\b:\u0012\u0006\u0010\u00f9\u00ea\u0097\u00a8\u0006\"\u000538026\u0012\u0011\b;\u0012\u0006\u0010\u008e\u00eb\u0097\u00a8\u0006\"\u000538027\u0012\u0011\b<\u0012\u0006\u0010\u00a2\u00eb\u0097\u00a8\u0006\"\u000538028\u0012\u0011\b=\u0012\u0006\u0010\u00b4\u00eb\u0097\u00a8\u0006\"\u000538029\u0012\u0011\b>\u0012\u0006\u0010\u00cd\u00eb\u0097\u00a8\u0006\"\u000538030\u0012\u0011\b?\u0012\u0006\u0010\u00e8\u00eb\u0097\u00a8\u0006\"\u000538031\u0012\u0014\b@\u0012\u0006\u0010\u00ba\u00ec\u0097\u00a8\u0006\"\b16206047\u0012\u0011\bA\u0012\u0006\u0010\u00bf\u00ed\u0097\u00a8\u0006\"\u000539214\u0012\u0011\bB\u0012\u0006\u0010\u00f5\u00ed\u0097\u00a8\u0006\"\u000539215\u0012\u0014\bC\u0012\u0006\u0010\u00e5\u00ee\u0097\u00a8\u0006\"\b16027103\u0012\u0011\bD\u0012\u0006\u0010\u00d4\u00f0\u0097\u00a8\u0006\"\u000595000\u0012\u0011\bE\u0012\u0006\u0010\u00bb\u00f1\u0097\u00a8\u0006\"\u000540978\u001a\b\u001a\u0006FXRR80 \u00cc\u00e8\u0097\u00a8\u0006\"e\n4\n\u0015fe471c50-7-701ff27f-2\u0012\b14:30:00\u001a\b20230916 \u0000*\u00036060\u0000\u0012\u001d\rT*\u0013\u00c2\u0015N\u0012\u0092\u00c2\u001d\u0000\u0000\u0018B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00ab\u00aa\u0012A(\u00cc\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FXRR80" + }, + { + "type": "con_recorrido", + "entity": "\n$745a9437-4f76-457c-9868-cfcdadea67c4\u001a\u00e5\u0005\n4\n\u0015d6a001c3-5-701ff27f-2\u0012\b14:57:00\u001a\b20230916 \u0000*\u00036060\u0000\u0012\u0011\b#\u0012\u0006\u0010\u00c1\u00e8\u0097\u00a8\u0006\"\u000550004\u0012\u0011\b$\u0012\u0006\u0010\u008e\u00e9\u0097\u00a8\u0006\"\u000550030\u0012\u0011\b%\u0012\u0006\u0010\u00c4\u00e9\u0097\u00a8\u0006\"\u00053-Mar\u0012\u0011\b&\u0012\u0006\u0010\u00f7\u00e9\u0097\u00a8\u0006\"\u000550031\u0012\u0011\b'\u0012\u0006\u0010\u0091\u00ea\u0097\u00a8\u0006\"\u000549398\u0012\u0011\b(\u0012\u0006\u0010\u00aa\u00ea\u0097\u00a8\u0006\"\u000550032\u0012\u0011\b)\u0012\u0006\u0010\u00d7\u00ea\u0097\u00a8\u0006\"\u000539495\u0012\u0011\b*\u0012\u0006\u0010\u00ae\u00eb\u0097\u00a8\u0006\"\u000550033\u0012\u0011\b+\u0012\u0006\u0010\u00d3\u00eb\u0097\u00a8\u0006\"\u000539497\u0012\u0011\b,\u0012\u0006\u0010\u00f5\u00eb\u0097\u00a8\u0006\"\u000549407\u0012\u0011\b-\u0012\u0006\u0010\u00e7\u00ec\u0097\u00a8\u0006\"\u000537465\u0012\u0011\b.\u0012\u0006\u0010\u0095\u00ed\u0097\u00a8\u0006\"\u000539503\u0012\u0011\b/\u0012\u0006\u0010\u00f6\u00ed\u0097\u00a8\u0006\"\u000539504\u0012\u0011\b0\u0012\u0006\u0010\u0088\u00ee\u0097\u00a8\u0006\"\u000539595\u0012\u0011\b1\u0012\u0006\u0010\u009f\u00ee\u0097\u00a8\u0006\"\u000539759\u0012\u0011\b2\u0012\u0006\u0010\u00da\u00ee\u0097\u00a8\u0006\"\u000539760\u0012\u0011\b3\u0012\u0006\u0010\u0080\u00ef\u0097\u00a8\u0006\"\u000539761\u0012\u0011\b4\u0012\u0006\u0010\u00a6\u00ef\u0097\u00a8\u0006\"\u000539511\u0012\u0011\b5\u0012\u0006\u0010\u0097\u00f0\u0097\u00a8\u0006\"\u000539763\u0012\u0011\b6\u0012\u0006\u0010\u00c2\u00f0\u0097\u00a8\u0006\"\u000539764\u0012\u0011\b7\u0012\u0006\u0010\u00e4\u00f0\u0097\u00a8\u0006\"\u000539765\u0012\u0011\b8\u0012\u0006\u0010\u00fb\u00f0\u0097\u00a8\u0006\"\u000539529\u0012\u0011\b9\u0012\u0006\u0010\u0089\u00f3\u0097\u00a8\u0006\"\u000591159\u0012\u0011\b:\u0012\u0006\u0010\u00f8\u00f3\u0097\u00a8\u0006\"\u000538026\u0012\u0011\b;\u0012\u0006\u0010\u008c\u00f4\u0097\u00a8\u0006\"\u000538027\u0012\u0011\b<\u0012\u0006\u0010\u00a0\u00f4\u0097\u00a8\u0006\"\u000538028\u0012\u0011\b=\u0012\u0006\u0010\u00b1\u00f4\u0097\u00a8\u0006\"\u000538029\u0012\u0011\b>\u0012\u0006\u0010\u00ca\u00f4\u0097\u00a8\u0006\"\u000538030\u0012\u0011\b?\u0012\u0006\u0010\u00e5\u00f4\u0097\u00a8\u0006\"\u000538031\u0012\u0014\b@\u0012\u0006\u0010\u00b8\u00f5\u0097\u00a8\u0006\"\b16206047\u0012\u0011\bA\u0012\u0006\u0010\u00c1\u00f6\u0097\u00a8\u0006\"\u000539214\u0012\u0011\bB\u0012\u0006\u0010\u00fa\u00f6\u0097\u00a8\u0006\"\u000539215\u0012\u0014\bC\u0012\u0006\u0010\u00f3\u00f7\u0097\u00a8\u0006\"\b16027103\u0012\u0011\bD\u0012\u0006\u0010\u00ff\u00f9\u0097\u00a8\u0006\"\u000595000\u0012\u0011\bE\u0012\u0006\u0010\u00f7\u00fa\u0097\u00a8\u0006\"\u000540978\u001a\b\u001a\u0006JLZB26 \u00a4\u00e8\u0097\u00a8\u0006\"e\n4\n\u0015d6a001c3-5-701ff27f-2\u0012\b14:57:00\u001a\b20230916 \u0000*\u00036060\u0000\u0012\u001d\r\u00fbO\u0013\u00c2\u0015\u0099\u001a\u0092\u00c2\u001d\u0000\u0000\u0016C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-r\u001c\u0097@(\u00a4\u00e8\u0097\u00a8\u0006B\b\u001a\u0006JLZB26" + }, + { + "type": "con_recorrido", + "entity": "\n$2ae3d711-3a8e-45e3-9769-8e89c945e278\u001a\u00b9\b\n4\n\u001508422e60-e-701ff27f-2\u0012\b15:18:00\u001a\b20230916 \u0000*\u00036060\u0001\u0012\u0011\b\u000f\u0012\u0006\u0010\u00dc\u00e9\u0097\u00a8\u0006\"\u000540199\u0012\u0011\b\u0010\u0012\u0006\u0010\u0085\u00ea\u0097\u00a8\u0006\"\u000539700\u0012\u0011\b\u0011\u0012\u0006\u0010\u00b1\u00ea\u0097\u00a8\u0006\"\u000539701\u0012\u0011\b\u0012\u0012\u0006\u0010\u00d1\u00ea\u0097\u00a8\u0006\"\u000539702\u0012\u0011\b\u0013\u0012\u0006\u0010\u00e5\u00ea\u0097\u00a8\u0006\"\u000539703\u0012\u0011\b\u0014\u0012\u0006\u0010\u0096\u00eb\u0097\u00a8\u0006\"\u000539704\u0012\u0011\b\u0015\u0012\u0006\u0010\u00b0\u00eb\u0097\u00a8\u0006\"\u000539918\u0012\u0011\b\u0016\u0012\u0006\u0010\u00da\u00eb\u0097\u00a8\u0006\"\u000539513\u0012\u0011\b\u0017\u0012\u0006\u0010\u0085\u00ec\u0097\u00a8\u0006\"\u000539591\u0012\u0011\b\u0018\u0012\u0006\u0010\u009e\u00ec\u0097\u00a8\u0006\"\u000539592\u0012\u0011\b\u0019\u0012\u0006\u0010\u00dc\u00ec\u0097\u00a8\u0006\"\u000539593\u0012\u0011\b\u001a\u0012\u0006\u0010\u00fa\u00ec\u0097\u00a8\u0006\"\u000539594\u0012\u0011\b\u001b\u0012\u0006\u0010\u00f9\u00ed\u0097\u00a8\u0006\"\u000539596\u0012\u0011\b\u001c\u0012\u0006\u0010\u0099\u00ee\u0097\u00a8\u0006\"\u000539597\u0012\u0011\b\u001d\u0012\u0006\u0010\u00c9\u00ee\u0097\u00a8\u0006\"\u000539598\u0012\u0011\b\u001e\u0012\u0006\u0010\u00a8\u00ef\u0097\u00a8\u0006\"\u000539599\u0012\u0011\b\u001f\u0012\u0006\u0010\u00f2\u00ef\u0097\u00a8\u0006\"\u000545011\u0012\u0011\b \u0012\u0006\u0010\u00d3\u00f0\u0097\u00a8\u0006\"\u000539623\u0012\u0011\b!\u0012\u0006\u0010\u0082\u00f1\u0097\u00a8\u0006\"\u000539624\u0012\u0011\b\"\u0012\u0006\u0010\u00ab\u00f1\u0097\u00a8\u0006\"\u000539625\u0012\u0011\b#\u0012\u0006\u0010\u00ee\u00f1\u0097\u00a8\u0006\"\u000539628\u0012\u0011\b$\u0012\u0006\u0010\u00be\u00f2\u0097\u00a8\u0006\"\u000539631\u0012\u0011\b%\u0012\u0006\u0010\u00ed\u00f2\u0097\u00a8\u0006\"\u000549311\u0012\u0011\b&\u0012\u0006\u0010\u00a4\u00f3\u0097\u00a8\u0006\"\u000539634\u0012\u0011\b'\u0012\u0006\u0010\u00b9\u00f3\u0097\u00a8\u0006\"\u000539635\u0012\u0011\b(\u0012\u0006\u0010\u00ea\u00f3\u0097\u00a8\u0006\"\u000539636\u0012\u0011\b)\u0012\u0006\u0010\u009f\u00f4\u0097\u00a8\u0006\"\u000549503\u0012\u0011\b*\u0012\u0006\u0010\u009b\u00f5\u0097\u00a8\u0006\"\u000539637\u0012\u0011\b+\u0012\u0006\u0010\u00cf\u00f5\u0097\u00a8\u0006\"\u000549317\u0012\u0011\b,\u0012\u0006\u0010\u00ef\u00f5\u0097\u00a8\u0006\"\u000549318\u0012\u0011\b-\u0012\u0006\u0010\u00b5\u00f6\u0097\u00a8\u0006\"\u000549319\u0012\u0011\b.\u0012\u0006\u0010\u00f7\u00f6\u0097\u00a8\u0006\"\u000539641\u0012\u0011\b/\u0012\u0006\u0010\u00c8\u00f9\u0097\u00a8\u0006\"\u000549325\u0012\u0011\b0\u0012\u0006\u0010\u0093\u00fa\u0097\u00a8\u0006\"\u000540711\u0012\u0011\b1\u0012\u0006\u0010\u00c0\u00fa\u0097\u00a8\u0006\"\u000540712\u0012\u0011\b2\u0012\u0006\u0010\u00e3\u00fa\u0097\u00a8\u0006\"\u000540713\u0012\u0011\b3\u0012\u0006\u0010\u0081\u00fb\u0097\u00a8\u0006\"\u000540714\u0012\u0013\b4\u0012\u0006\u0010\u00cb\u00fb\u0097\u00a8\u0006\"\u00078606049\u0012\u0011\b5\u0012\u0006\u0010\u00ef\u00fb\u0097\u00a8\u0006\"\u000537840\u0012\u0011\b6\u0012\u0006\u0010\u0083\u00fc\u0097\u00a8\u0006\"\u000539653\u0012\u0011\b7\u0012\u0006\u0010\u00a6\u00fc\u0097\u00a8\u0006\"\u000539654\u0012\u0011\b8\u0012\u0006\u0010\u00cb\u00fc\u0097\u00a8\u0006\"\u000549334\u0012\u0011\b9\u0012\u0006\u0010\u0099\u00fd\u0097\u00a8\u0006\"\u000549335\u0012\u0011\b:\u0012\u0006\u0010\u00ce\u00fd\u0097\u00a8\u0006\"\u000549336\u0012\u0011\b;\u0012\u0006\u0010\u00e7\u00fe\u0097\u00a8\u0006\"\u000542436\u0012\u0013\b<\u0012\u0006\u0010\u0093\u00ff\u0097\u00a8\u0006\"\u00074831072\u0012\u0011\b=\u0012\u0006\u0010\u00a1\u00ff\u0097\u00a8\u0006\"\u000542437\u0012\u0011\b>\u0012\u0006\u0010\u00f4\u00ff\u0097\u00a8\u0006\"\u000542438\u0012\u0011\b?\u0012\u0006\u0010\u0096\u0080\u0098\u00a8\u0006\"\u000537442\u0012\u0011\b@\u0012\u0006\u0010\u00be\u0080\u0098\u00a8\u0006\"\u000537850\u0012\u0011\bA\u0012\u0006\u0010\u00ef\u0080\u0098\u00a8\u0006\"\u000532692\u0012\u0011\bB\u0012\u0006\u0010\u008f\u0081\u0098\u00a8\u0006\"\u000537852\u0012\u0011\bC\u0012\u0006\u0010\u00b1\u0081\u0098\u00a8\u0006\"\u000537853\u001a\b\u001a\u0006PCLT47 \u00ae\u00e8\u0097\u00a8\u0006\"e\n4\n\u001508422e60-e-701ff27f-2\u0012\b15:18:00\u001a\b20230916 \u0000*\u00036060\u0001\u0012\u001d\r(&\u0013\u00c2\u0015g\u0012\u0092\u00c2\u001d\u0000\u0000\u0000C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-9\u008eCA(\u00ae\u00e8\u0097\u00a8\u0006B\b\u001a\u0006PCLT47" + }, + { + "type": "con_recorrido", + "entity": "\n$4d0e03b1-171b-4d05-a1b2-04ba23c610e7\u001a\u008e\n\n4\n\u0015248a74d6-1-701ff27f-2\u0012\b15:24:00\u001a\b20230916 \u0000*\u00036060\u0000\u0012\u0013\b\u0006\u0012\u0006\u0010\u00b4\u00e8\u0097\u00a8\u0006\"\u00074831075\u0012\u0011\b\u0007\u0012\u0006\u0010\u00e4\u00e8\u0097\u00a8\u0006\"\u000549135\u0012\u0011\b\b\u0012\u0006\u0010\u0090\u00e9\u0097\u00a8\u0006\"\u000549136\u0012\u0011\b\t\u0012\u0006\u0010\u00dd\u00e9\u0097\u00a8\u0006\"\u000549137\u0012\u0011\b\n\u0012\u0006\u0010\u00f5\u00e9\u0097\u00a8\u0006\"\u000549138\u0012\u0011\b\u000b\u0012\u0006\u0010\u0087\u00ea\u0097\u00a8\u0006\"\u000549139\u0012\u0011\b\f\u0012\u0006\u0010\u00b5\u00ea\u0097\u00a8\u0006\"\u000536683\u0012\u0011\b\r\u0012\u0006\u0010\u00c8\u00ea\u0097\u00a8\u0006\"\u000537590\u0012\u0011\b\u000e\u0012\u0006\u0010\u0080\u00eb\u0097\u00a8\u0006\"\u000540760\u0012\u0011\b\u000f\u0012\u0006\u0010\u009f\u00eb\u0097\u00a8\u0006\"\u000540713\u0012\u0011\b\u0010\u0012\u0006\u0010\u00c5\u00eb\u0097\u00a8\u0006\"\u000540762\u0012\u0011\b\u0011\u0012\u0006\u0010\u00f7\u00eb\u0097\u00a8\u0006\"\u000540763\u0012\u0011\b\u0012\u0012\u0006\u0010\u009b\u00ec\u0097\u00a8\u0006\"\u000538642\u0012\u0011\b\u0013\u0012\u0006\u0010\u00c5\u00ec\u0097\u00a8\u0006\"\u000539795\u0012\u0011\b\u0014\u0012\u0006\u0010\u00e8\u00ec\u0097\u00a8\u0006\"\u000538502\u0012\u0011\b\u0015\u0012\u0006\u0010\u00a3\u00ed\u0097\u00a8\u0006\"\u000538503\u0012\u0011\b\u0016\u0012\u0006\u0010\u00bd\u00ee\u0097\u00a8\u0006\"\u000535691\u0012\u0011\b\u0017\u0012\u0006\u0010\u00e5\u00ee\u0097\u00a8\u0006\"\u000535692\u0012\u0011\b\u0018\u0012\u0006\u0010\u009d\u00ef\u0097\u00a8\u0006\"\u000535693\u0012\u0011\b\u0019\u0012\u0006\u0010\u00d2\u00ef\u0097\u00a8\u0006\"\u000535694\u0012\u0011\b\u001a\u0012\u0006\u0010\u00f9\u00ef\u0097\u00a8\u0006\"\u000535695\u0012\u0011\b\u001b\u0012\u0006\u0010\u00a7\u00f0\u0097\u00a8\u0006\"\u000535696\u0012\u0011\b\u001c\u0012\u0006\u0010\u00cd\u00f1\u0097\u00a8\u0006\"\u000535697\u0012\u0011\b\u001d\u0012\u0006\u0010\u00c1\u00f2\u0097\u00a8\u0006\"\u000539778\u0012\u0011\b\u001e\u0012\u0006\u0010\u00e8\u00f2\u0097\u00a8\u0006\"\u000537986\u0012\u0011\b\u001f\u0012\u0006\u0010\u0090\u00f3\u0097\u00a8\u0006\"\u000537987\u0012\u0011\b \u0012\u0006\u0010\u00aa\u00f3\u0097\u00a8\u0006\"\u000537988\u0012\u0011\b!\u0012\u0006\u0010\u00f3\u00f3\u0097\u00a8\u0006\"\u000549393\u0012\u0011\b\"\u0012\u0006\u0010\u00a2\u00f4\u0097\u00a8\u0006\"\u000549394\u0012\u0011\b#\u0012\u0006\u0010\u00d5\u00f4\u0097\u00a8\u0006\"\u000550004\u0012\u0011\b$\u0012\u0006\u0010\u009e\u00f5\u0097\u00a8\u0006\"\u000550030\u0012\u0011\b%\u0012\u0006\u0010\u00d2\u00f5\u0097\u00a8\u0006\"\u00053-Mar\u0012\u0011\b&\u0012\u0006\u0010\u0084\u00f6\u0097\u00a8\u0006\"\u000550031\u0012\u0011\b'\u0012\u0006\u0010\u009e\u00f6\u0097\u00a8\u0006\"\u000549398\u0012\u0011\b(\u0012\u0006\u0010\u00b7\u00f6\u0097\u00a8\u0006\"\u000550032\u0012\u0011\b)\u0012\u0006\u0010\u00e4\u00f6\u0097\u00a8\u0006\"\u000539495\u0012\u0011\b*\u0012\u0006\u0010\u00bd\u00f7\u0097\u00a8\u0006\"\u000550033\u0012\u0011\b+\u0012\u0006\u0010\u00e4\u00f7\u0097\u00a8\u0006\"\u000539497\u0012\u0011\b,\u0012\u0006\u0010\u0088\u00f8\u0097\u00a8\u0006\"\u000549407\u0012\u0011\b-\u0012\u0006\u0010\u0084\u00f9\u0097\u00a8\u0006\"\u000537465\u0012\u0011\b.\u0012\u0006\u0010\u00b7\u00f9\u0097\u00a8\u0006\"\u000539503\u0012\u0011\b/\u0012\u0006\u0010\u00a4\u00fa\u0097\u00a8\u0006\"\u000539504\u0012\u0011\b0\u0012\u0006\u0010\u00b9\u00fa\u0097\u00a8\u0006\"\u000539595\u0012\u0011\b1\u0012\u0006\u0010\u00d4\u00fa\u0097\u00a8\u0006\"\u000539759\u0012\u0011\b2\u0012\u0006\u0010\u0099\u00fb\u0097\u00a8\u0006\"\u000539760\u0012\u0011\b3\u0012\u0006\u0010\u00c7\u00fb\u0097\u00a8\u0006\"\u000539761\u0012\u0011\b4\u0012\u0006\u0010\u00f4\u00fb\u0097\u00a8\u0006\"\u000539511\u0012\u0011\b5\u0012\u0006\u0010\u0080\u00fd\u0097\u00a8\u0006\"\u000539763\u0012\u0011\b6\u0012\u0006\u0010\u00b5\u00fd\u0097\u00a8\u0006\"\u000539764\u0012\u0011\b7\u0012\u0006\u0010\u00e1\u00fd\u0097\u00a8\u0006\"\u000539765\u0012\u0011\b8\u0012\u0006\u0010\u00fe\u00fd\u0097\u00a8\u0006\"\u000539529\u0012\u0011\b9\u0012\u0006\u0010\u00e8\u0080\u0098\u00a8\u0006\"\u000591159\u0012\u0011\b:\u0012\u0006\u0010\u0085\u0082\u0098\u00a8\u0006\"\u000538026\u0012\u0011\b;\u0012\u0006\u0010\u00a2\u0082\u0098\u00a8\u0006\"\u000538027\u0012\u0011\b<\u0012\u0006\u0010\u00bf\u0082\u0098\u00a8\u0006\"\u000538028\u0012\u0011\b=\u0012\u0006\u0010\u00d8\u0082\u0098\u00a8\u0006\"\u000538029\u0012\u0011\b>\u0012\u0006\u0010\u00fc\u0082\u0098\u00a8\u0006\"\u000538030\u0012\u0011\b?\u0012\u0006\u0010\u00a4\u0083\u0098\u00a8\u0006\"\u000538031\u0012\u0014\b@\u0012\u0006\u0010\u009f\u0084\u0098\u00a8\u0006\"\b16206047\u0012\u0011\bA\u0012\u0006\u0010\u00f4\u0085\u0098\u00a8\u0006\"\u000539214\u0012\u0011\bB\u0012\u0006\u0010\u00cf\u0086\u0098\u00a8\u0006\"\u000539215\u0012\u0014\bC\u0012\u0006\u0010\u0093\u0088\u0098\u00a8\u0006\"\b16027103\u0012\u0011\bD\u0012\u0006\u0010\u00de\u008b\u0098\u00a8\u0006\"\u000595000\u0012\u0011\bE\u0012\u0006\u0010\u00b7\u008d\u0098\u00a8\u0006\"\u000540978\u001a\b\u001a\u0006PDBV46 \u00b4\u00e8\u0097\u00a8\u0006\"e\n4\n\u0015248a74d6-1-701ff27f-2\u0012\b15:24:00\u001a\b20230916 \u0000*\u00036060\u0000\u0012\u001d\rp%\u0013\u00c2\u0015\u00074\u0092\u00c2\u001d\u0000\u0000\"C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UU\u00d5?(\u00b4\u00e8\u0097\u00a8\u0006B\b\u001a\u0006PDBV46" + }, + { + "type": "con_recorrido", + "entity": "\n$7773b2be-eaa4-4301-9729-1fa15f2c2e76\u001a\u00bd\u0005\n4\n\u0015c930d348-a-701ff27f-2\u0012\b14:51:00\u001a\b20230916 \u0000*\u00036060\u0001\u0012\u0011\b#\u0012\u0006\u0010\u00f5\u00e7\u0097\u00a8\u0006\"\u000539628\u0012\u0011\b$\u0012\u0006\u0010\u00cd\u00e8\u0097\u00a8\u0006\"\u000539631\u0012\u0011\b%\u0012\u0006\u0010\u00ff\u00e8\u0097\u00a8\u0006\"\u000549311\u0012\u0011\b&\u0012\u0006\u0010\u00b9\u00e9\u0097\u00a8\u0006\"\u000539634\u0012\u0011\b'\u0012\u0006\u0010\u00d0\u00e9\u0097\u00a8\u0006\"\u000539635\u0012\u0011\b(\u0012\u0006\u0010\u0083\u00ea\u0097\u00a8\u0006\"\u000539636\u0012\u0011\b)\u0012\u0006\u0010\u00b9\u00ea\u0097\u00a8\u0006\"\u000549503\u0012\u0011\b*\u0012\u0006\u0010\u00b5\u00eb\u0097\u00a8\u0006\"\u000539637\u0012\u0011\b+\u0012\u0006\u0010\u00e9\u00eb\u0097\u00a8\u0006\"\u000549317\u0012\u0011\b,\u0012\u0006\u0010\u0089\u00ec\u0097\u00a8\u0006\"\u000549318\u0012\u0011\b-\u0012\u0006\u0010\u00cc\u00ec\u0097\u00a8\u0006\"\u000549319\u0012\u0011\b.\u0012\u0006\u0010\u008a\u00ed\u0097\u00a8\u0006\"\u000539641\u0012\u0011\b/\u0012\u0006\u0010\u00bd\u00ef\u0097\u00a8\u0006\"\u000549325\u0012\u0011\b0\u0012\u0006\u0010\u00fe\u00ef\u0097\u00a8\u0006\"\u000540711\u0012\u0011\b1\u0012\u0006\u0010\u00a5\u00f0\u0097\u00a8\u0006\"\u000540712\u0012\u0011\b2\u0012\u0006\u0010\u00c3\u00f0\u0097\u00a8\u0006\"\u000540713\u0012\u0011\b3\u0012\u0006\u0010\u00dd\u00f0\u0097\u00a8\u0006\"\u000540714\u0012\u0013\b4\u0012\u0006\u0010\u009b\u00f1\u0097\u00a8\u0006\"\u00078606049\u0012\u0011\b5\u0012\u0006\u0010\u00b9\u00f1\u0097\u00a8\u0006\"\u000537840\u0012\u0011\b6\u0012\u0006\u0010\u00ca\u00f1\u0097\u00a8\u0006\"\u000539653\u0012\u0011\b7\u0012\u0006\u0010\u00e7\u00f1\u0097\u00a8\u0006\"\u000539654\u0012\u0011\b8\u0012\u0006\u0010\u0084\u00f2\u0097\u00a8\u0006\"\u000549334\u0012\u0011\b9\u0012\u0006\u0010\u00c4\u00f2\u0097\u00a8\u0006\"\u000549335\u0012\u0011\b:\u0012\u0006\u0010\u00ee\u00f2\u0097\u00a8\u0006\"\u000549336\u0012\u0011\b;\u0012\u0006\u0010\u00e7\u00f3\u0097\u00a8\u0006\"\u000542436\u0012\u0013\b<\u0012\u0006\u0010\u0088\u00f4\u0097\u00a8\u0006\"\u00074831072\u0012\u0011\b=\u0012\u0006\u0010\u0093\u00f4\u0097\u00a8\u0006\"\u000542437\u0012\u0011\b>\u0012\u0006\u0010\u00d3\u00f4\u0097\u00a8\u0006\"\u000542438\u0012\u0011\b?\u0012\u0006\u0010\u00ed\u00f4\u0097\u00a8\u0006\"\u000537442\u0012\u0011\b@\u0012\u0006\u0010\u008a\u00f5\u0097\u00a8\u0006\"\u000537850\u0012\u0011\bA\u0012\u0006\u0010\u00af\u00f5\u0097\u00a8\u0006\"\u000532692\u0012\u0011\bB\u0012\u0006\u0010\u00c7\u00f5\u0097\u00a8\u0006\"\u000537852\u0012\u0011\bC\u0012\u0006\u0010\u00e0\u00f5\u0097\u00a8\u0006\"\u000537853\u001a\b\u001a\u0006RJHS95 \u00e8\u00e7\u0097\u00a8\u0006\"e\n4\n\u0015c930d348-a-701ff27f-2\u0012\b14:51:00\u001a\b20230916 \u0000*\u00036060\u0001\u0012\u001d\r\u000fN\u0013\u00c2\u0015\u000f\u001b\u0092\u00c2\u001d\u0000\u0000rC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UU\u00d5@(\u00e8\u00e7\u0097\u00a8\u0006B\b\u001a\u0006RJHS95" + }, + { + "type": "con_recorrido", + "entity": "\n$eddbf425-d866-49c5-8c1b-5c62cd31ab74\u001a\u00e8\u0003\n/\n\u001022949-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00036070\u0000\u0012\u0013\b\u0017\u0012\u0006\u0010\u00cf\u00e8\u0097\u00a8\u0006\"\u00074838438\u0012\u0011\b\u0018\u0012\u0006\u0010\u00e7\u00e9\u0097\u00a8\u0006\"\u000544896\u0012\u0011\b\u0019\u0012\u0006\u0010\u009a\u00ea\u0097\u00a8\u0006\"\u000544897\u0012\u0011\b\u001a\u0012\u0006\u0010\u00e5\u00ea\u0097\u00a8\u0006\"\u000544898\u0012\u0011\b\u001b\u0012\u0006\u0010\u0091\u00ec\u0097\u00a8\u0006\"\u000540993\u0012\u0014\b\u001c\u0012\u0006\u0010\u0086\u00ee\u0097\u00a8\u0006\"\b16005188\u0012\u0011\b\u001d\u0012\u0006\u0010\u00f4\u00ef\u0097\u00a8\u0006\"\u000540995\u0012\u0011\b\u001e\u0012\u0006\u0010\u00c3\u00f0\u0097\u00a8\u0006\"\u000540996\u0012\u0011\b\u001f\u0012\u0006\u0010\u008f\u00f1\u0097\u00a8\u0006\"\u000540997\u0012\u0011\b \u0012\u0006\u0010\u00c7\u00f1\u0097\u00a8\u0006\"\u000539614\u0012\u0011\b!\u0012\u0006\u0010\u00f5\u00f1\u0097\u00a8\u0006\"\u000539615\u0012\u0011\b\"\u0012\u0006\u0010\u00a5\u00f2\u0097\u00a8\u0006\"\u000539616\u0012\u0011\b#\u0012\u0006\u0010\u00da\u00f2\u0097\u00a8\u0006\"\u000539617\u0012\u0011\b$\u0012\u0006\u0010\u0093\u00f3\u0097\u00a8\u0006\"\u000539618\u0012\u0011\b%\u0012\u0006\u0010\u00c1\u00f3\u0097\u00a8\u0006\"\u000539619\u0012\u0011\b&\u0012\u0006\u0010\u00e7\u00f3\u0097\u00a8\u0006\"\u000539620\u0012\u0011\b'\u0012\u0006\u0010\u00ab\u00f4\u0097\u00a8\u0006\"\u000539621\u0012\u0011\b(\u0012\u0006\u0010\u00db\u00f4\u0097\u00a8\u0006\"\u000538281\u0012\u0011\b)\u0012\u0006\u0010\u0093\u00f5\u0097\u00a8\u0006\"\u000537506\u0012\u0011\b*\u0012\u0006\u0010\u00de\u00f5\u0097\u00a8\u0006\"\u000545069\u0012\u0011\b+\u0012\u0006\u0010\u00d1\u00f6\u0097\u00a8\u0006\"\u000537523\u0012\u0011\b,\u0012\u0006\u0010\u00fb\u00f6\u0097\u00a8\u0006\"\u000537477\u001a\b\u001a\u0006XC3922 \u00b4\u00e8\u0097\u00a8\u0006\"`\n/\n\u001022949-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00036070\u0000\u0012\u001d\r\u00ec\f\u0013\u00c2\u0015\u000b-\u0092\u00c2\u001d\u0000\u0000\u0018C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008e\u00e3PA(\u00b4\u00e8\u0097\u00a8\u0006B\b\u001a\u0006XC3922" + }, + { + "type": "con_recorrido", + "entity": "\n$33560a45-e33a-4838-8061-9f98efb4aa71\u001a\u00c5\u0007\n/\n\u001023034-701ff27f-2\u0012\b15:01:00\u001a\b20230916 \u0000*\u00036070\u0001\u0012\u0011\b\n\u0012\u0006\u0010\u0087\u00e9\u0097\u00a8\u0006\"\u000539642\u0012\u0011\b\u000b\u0012\u0006\u0010\u00a8\u00e9\u0097\u00a8\u0006\"\u000538590\u0012\u0011\b\f\u0012\u0006\u0010\u00d2\u00ec\u0097\u00a8\u0006\"\u000532575\u0012\u0011\b\r\u0012\u0006\u0010\u00dd\u00ee\u0097\u00a8\u0006\"\u000538530\u0012\u0014\b\u000e\u0012\u0006\u0010\u00e9\u00ee\u0097\u00a8\u0006\"\b16005209\u0012\u0011\b\u000f\u0012\u0006\u0010\u00cf\u00f0\u0097\u00a8\u0006\"\u000538531\u0012\u0013\b\u0010\u0012\u0006\u0010\u0084\u00f1\u0097\u00a8\u0006\"\u00078921285\u0012\u0011\b\u0011\u0012\u0006\u0010\u00f0\u00f1\u0097\u00a8\u0006\"\u000538532\u0012\u0011\b\u0012\u0012\u0006\u0010\u00a3\u00f2\u0097\u00a8\u0006\"\u000538533\u0012\u0011\b\u0013\u0012\u0006\u0010\u00d8\u00f2\u0097\u00a8\u0006\"\u000538534\u0012\u0011\b\u0014\u0012\u0006\u0010\u0088\u00f3\u0097\u00a8\u0006\"\u000538535\u0012\u0011\b\u0015\u0012\u0006\u0010\u00c8\u00f3\u0097\u00a8\u0006\"\u000538536\u0012\u0013\b\u0016\u0012\u0006\u0010\u00ec\u00f3\u0097\u00a8\u0006\"\u00074838437\u0012\u0011\b\u0017\u0012\u0006\u0010\u00e7\u00f5\u0097\u00a8\u0006\"\u000538598\u0012\u0011\b\u0018\u0012\u0006\u0010\u0090\u00f6\u0097\u00a8\u0006\"\u000538599\u0012\u0011\b\u0019\u0012\u0006\u0010\u00bd\u00f6\u0097\u00a8\u0006\"\u000538600\u0012\u0011\b\u001a\u0012\u0006\u0010\u00df\u00f6\u0097\u00a8\u0006\"\u000538601\u0012\u0011\b\u001b\u0012\u0006\u0010\u00a7\u00f7\u0097\u00a8\u0006\"\u000538603\u0012\u0011\b\u001c\u0012\u0006\u0010\u00d4\u00f7\u0097\u00a8\u0006\"\u000538604\u0012\u0011\b\u001d\u0012\u0006\u0010\u00bd\u00f8\u0097\u00a8\u0006\"\u000538606\u0012\u0011\b\u001e\u0012\u0006\u0010\u00f5\u00f8\u0097\u00a8\u0006\"\u000538607\u0012\u0011\b\u001f\u0012\u0006\u0010\u00aa\u00f9\u0097\u00a8\u0006\"\u000539403\u0012\u0011\b \u0012\u0006\u0010\u00d4\u00f9\u0097\u00a8\u0006\"\u000544799\u0012\u0011\b!\u0012\u0006\u0010\u00fa\u00f9\u0097\u00a8\u0006\"\u000544800\u0012\u0011\b\"\u0012\u0006\u0010\u0096\u00fa\u0097\u00a8\u0006\"\u000538608\u0012\u0011\b#\u0012\u0006\u0010\u00df\u00fa\u0097\u00a8\u0006\"\u000538609\u0012\u0011\b$\u0012\u0006\u0010\u00a5\u00fb\u0097\u00a8\u0006\"\u000538610\u0012\u0011\b%\u0012\u0006\u0010\u00dd\u00fb\u0097\u00a8\u0006\"\u000538611\u0012\u0011\b&\u0012\u0006\u0010\u0089\u00fc\u0097\u00a8\u0006\"\u000538612\u0012\u0011\b'\u0012\u0006\u0010\u0091\u00fc\u0097\u00a8\u0006\"\u000545088\u0012\u0011\b(\u0012\u0006\u0010\u00c7\u00fc\u0097\u00a8\u0006\"\u000545089\u0012\u0011\b)\u0012\u0006\u0010\u0099\u00fd\u0097\u00a8\u0006\"\u000545090\u0012\u0011\b*\u0012\u0006\u0010\u00c5\u00fd\u0097\u00a8\u0006\"\u000545091\u0012\u0011\b+\u0012\u0006\u0010\u00a0\u00fe\u0097\u00a8\u0006\"\u000545093\u0012\u0011\b,\u0012\u0006\u0010\u00dd\u00fe\u0097\u00a8\u0006\"\u000545094\u0012\u0011\b-\u0012\u0006\u0010\u008a\u00ff\u0097\u00a8\u0006\"\u000545095\u0012\u0011\b.\u0012\u0006\u0010\u00c0\u00ff\u0097\u00a8\u0006\"\u000545096\u0012\u0011\b/\u0012\u0006\u0010\u00b3\u0080\u0098\u00a8\u0006\"\u000538622\u0012\u0011\b0\u0012\u0006\u0010\u00b1\u0081\u0098\u00a8\u0006\"\u000538623\u0012\u0011\b1\u0012\u0006\u0010\u00f3\u0082\u0098\u00a8\u0006\"\u000538624\u0012\u0011\b2\u0012\u0006\u0010\u0087\u0084\u0098\u00a8\u0006\"\u000538625\u0012\u0011\b3\u0012\u0006\u0010\u008c\u0087\u0098\u00a8\u0006\"\u000545102\u0012\u0011\b4\u0012\u0006\u0010\u00b8\u0087\u0098\u00a8\u0006\"\u000545103\u0012\u0011\b5\u0012\u0006\u0010\u00e2\u0087\u0098\u00a8\u0006\"\u000545104\u0012\u0011\b6\u0012\u0006\u0010\u008f\u0088\u0098\u00a8\u0006\"\u000545122\u0012\u0011\b7\u0012\u0006\u0010\u00e2\u008a\u0098\u00a8\u0006\"\u000538575\u0012\u0011\b8\u0012\u0006\u0010\u00da\u008b\u0098\u00a8\u0006\"\u000538630\u001a\b\u001a\u0006XZ9643 \u00ae\u00e8\u0097\u00a8\u0006\"`\n/\n\u001023034-701ff27f-2\u0012\b15:01:00\u001a\b20230916 \u0000*\u00036070\u0001\u0012\u001d\r@>\u0013\u00c2\u0015\u009e%\u0092\u00c2\u001d\u0000\u0000\u0096C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00ab\u00aa\u0012A(\u00ae\u00e8\u0097\u00a8\u0006B\b\u001a\u0006XZ9643" + }, + { + "type": "con_recorrido", + "entity": "\n$6410afba-912d-41ab-b514-a5759741392b\u001a\u00f9\u0006\n/\n\u001023036-701ff27f-2\u0012\b15:31:00\u001a\b20230916 \u0000*\u00036070\u0001\u0012\u0014\b\u000e\u0012\u0006\u0010\u00ab\u00e6\u0097\u00a8\u0006\"\b16005209\u0012\u0011\b\u000f\u0012\u0006\u0010\u00a3\u00e8\u0097\u00a8\u0006\"\u000538531\u0012\u0013\b\u0010\u0012\u0006\u0010\u00db\u00e8\u0097\u00a8\u0006\"\u00078921285\u0012\u0011\b\u0011\u0012\u0006\u0010\u00cc\u00e9\u0097\u00a8\u0006\"\u000538532\u0012\u0011\b\u0012\u0012\u0006\u0010\u0081\u00ea\u0097\u00a8\u0006\"\u000538533\u0012\u0011\b\u0013\u0012\u0006\u0010\u00b7\u00ea\u0097\u00a8\u0006\"\u000538534\u0012\u0011\b\u0014\u0012\u0006\u0010\u00e7\u00ea\u0097\u00a8\u0006\"\u000538535\u0012\u0011\b\u0015\u0012\u0006\u0010\u00a7\u00eb\u0097\u00a8\u0006\"\u000538536\u0012\u0013\b\u0016\u0012\u0006\u0010\u00ca\u00eb\u0097\u00a8\u0006\"\u00074838437\u0012\u0011\b\u0017\u0012\u0006\u0010\u00be\u00ed\u0097\u00a8\u0006\"\u000538598\u0012\u0011\b\u0018\u0012\u0006\u0010\u00e5\u00ed\u0097\u00a8\u0006\"\u000538599\u0012\u0011\b\u0019\u0012\u0006\u0010\u0090\u00ee\u0097\u00a8\u0006\"\u000538600\u0012\u0011\b\u001a\u0012\u0006\u0010\u00b0\u00ee\u0097\u00a8\u0006\"\u000538601\u0012\u0011\b\u001b\u0012\u0006\u0010\u00f2\u00ee\u0097\u00a8\u0006\"\u000538603\u0012\u0011\b\u001c\u0012\u0006\u0010\u009c\u00ef\u0097\u00a8\u0006\"\u000538604\u0012\u0011\b\u001d\u0012\u0006\u0010\u00fc\u00ef\u0097\u00a8\u0006\"\u000538606\u0012\u0011\b\u001e\u0012\u0006\u0010\u00ae\u00f0\u0097\u00a8\u0006\"\u000538607\u0012\u0011\b\u001f\u0012\u0006\u0010\u00de\u00f0\u0097\u00a8\u0006\"\u000539403\u0012\u0011\b \u0012\u0006\u0010\u0083\u00f1\u0097\u00a8\u0006\"\u000544799\u0012\u0011\b!\u0012\u0006\u0010\u00a6\u00f1\u0097\u00a8\u0006\"\u000544800\u0012\u0011\b\"\u0012\u0006\u0010\u00bf\u00f1\u0097\u00a8\u0006\"\u000538608\u0012\u0011\b#\u0012\u0006\u0010\u00fe\u00f1\u0097\u00a8\u0006\"\u000538609\u0012\u0011\b$\u0012\u0006\u0010\u00bb\u00f2\u0097\u00a8\u0006\"\u000538610\u0012\u0011\b%\u0012\u0006\u0010\u00eb\u00f2\u0097\u00a8\u0006\"\u000538611\u0012\u0011\b&\u0012\u0006\u0010\u0091\u00f3\u0097\u00a8\u0006\"\u000538612\u0012\u0011\b'\u0012\u0006\u0010\u0097\u00f3\u0097\u00a8\u0006\"\u000545088\u0012\u0011\b(\u0012\u0006\u0010\u00c6\u00f3\u0097\u00a8\u0006\"\u000545089\u0012\u0011\b)\u0012\u0006\u0010\u008b\u00f4\u0097\u00a8\u0006\"\u000545090\u0012\u0011\b*\u0012\u0006\u0010\u00b0\u00f4\u0097\u00a8\u0006\"\u000545091\u0012\u0011\b+\u0012\u0006\u0010\u00fb\u00f4\u0097\u00a8\u0006\"\u000545093\u0012\u0011\b,\u0012\u0006\u0010\u00ae\u00f5\u0097\u00a8\u0006\"\u000545094\u0012\u0011\b-\u0012\u0006\u0010\u00d3\u00f5\u0097\u00a8\u0006\"\u000545095\u0012\u0011\b.\u0012\u0006\u0010\u00ff\u00f5\u0097\u00a8\u0006\"\u000545096\u0012\u0011\b/\u0012\u0006\u0010\u00db\u00f6\u0097\u00a8\u0006\"\u000538622\u0012\u0011\b0\u0012\u0006\u0010\u00c0\u00f7\u0097\u00a8\u0006\"\u000538623\u0012\u0011\b1\u0012\u0006\u0010\u00d8\u00f8\u0097\u00a8\u0006\"\u000538624\u0012\u0011\b2\u0012\u0006\u0010\u00c9\u00f9\u0097\u00a8\u0006\"\u000538625\u0012\u0011\b3\u0012\u0006\u0010\u00ee\u00fb\u0097\u00a8\u0006\"\u000545102\u0012\u0011\b4\u0012\u0006\u0010\u008e\u00fc\u0097\u00a8\u0006\"\u000545103\u0012\u0011\b5\u0012\u0006\u0010\u00ad\u00fc\u0097\u00a8\u0006\"\u000545104\u0012\u0011\b6\u0012\u0006\u0010\u00ce\u00fc\u0097\u00a8\u0006\"\u000545122\u0012\u0011\b7\u0012\u0006\u0010\u00c1\u00fe\u0097\u00a8\u0006\"\u000538575\u0012\u0011\b8\u0012\u0006\u0010\u0095\u00ff\u0097\u00a8\u0006\"\u000538630\u001a\b\u001a\u0006YX6960 \u009e\u00e6\u0097\u00a8\u0006\"`\n/\n\u001023036-701ff27f-2\u0012\b15:31:00\u001a\b20230916 \u0000*\u00036070\u0001\u0012\u001d\r\u00d2:\u0013\u00c2\u0015\u00d4\u001a\u0092\u00c2\u001d\u0000\u0000\u0018C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e486A(\u0094\u00e8\u0097\u00a8\u0006B\b\u001a\u0006YX6960" + }, + { + "type": "con_recorrido", + "entity": "\n$0441a8f9-0fe0-4da3-a9d2-700b6dc6fcec\u001a\u0085\u0007\n/\n\u001023385-701ff27f-2\u0012\b14:49:00\u001a\b20230916 \u0000*\u00036100\u0000\u0012\u0011\b;\u0012\u0006\u0010\u00fe\u00e8\u0097\u00a8\u0006\"\u000539628\u0012\u0011\b<\u0012\u0006\u0010\u00cf\u00e9\u0097\u00a8\u0006\"\u000539631\u0012\u0011\b=\u0012\u0006\u0010\u0080\u00ea\u0097\u00a8\u0006\"\u000549311\u0012\u0011\b>\u0012\u0006\u0010\u00ba\u00ea\u0097\u00a8\u0006\"\u000539634\u0012\u0011\b?\u0012\u0006\u0010\u00d4\u00ea\u0097\u00a8\u0006\"\u000539635\u0012\u0011\b@\u0012\u0006\u0010\u0083\u00eb\u0097\u00a8\u0006\"\u000539636\u0012\u0011\bA\u0012\u0006\u0010\u00b9\u00ec\u0097\u00a8\u0006\"\u000539637\u0012\u0011\bB\u0012\u0006\u0010\u00ea\u00ec\u0097\u00a8\u0006\"\u000549317\u0012\u0011\bC\u0012\u0006\u0010\u008a\u00ed\u0097\u00a8\u0006\"\u000549318\u0012\u0011\bD\u0012\u0006\u0010\u00ca\u00ed\u0097\u00a8\u0006\"\u000549319\u0012\u0011\bE\u0012\u0006\u0010\u0089\u00ee\u0097\u00a8\u0006\"\u000539641\u0012\u0011\bF\u0012\u0006\u0010\u00ac\u00ee\u0097\u00a8\u0006\"\u000539642\u0012\u0011\bG\u0012\u0006\u0010\u00ba\u00ef\u0097\u00a8\u0006\"\u000539643\u0012\u0011\bH\u0012\u0006\u0010\u00f0\u00ef\u0097\u00a8\u0006\"\u000549323\u0012\u0011\bI\u0012\u0006\u0010\u0095\u00f0\u0097\u00a8\u0006\"\u000549324\u0012\u0011\bJ\u0012\u0006\u0010\u00c4\u00f0\u0097\u00a8\u0006\"\u000549325\u0012\u0011\bK\u0012\u0006\u0010\u00f8\u00f0\u0097\u00a8\u0006\"\u000549326\u0012\u0011\bL\u0012\u0006\u0010\u008e\u00f1\u0097\u00a8\u0006\"\u000539648\u0012\u0011\bM\u0012\u0006\u0010\u00c0\u00f1\u0097\u00a8\u0006\"\u000539649\u0012\u0011\bN\u0012\u0006\u0010\u00f1\u00f1\u0097\u00a8\u0006\"\u000549329\u0012\u0011\bO\u0012\u0006\u0010\u00a8\u00f2\u0097\u00a8\u0006\"\u000549330\u0012\u0011\bP\u0012\u0006\u0010\u00cd\u00f2\u0097\u00a8\u0006\"\u000539652\u0012\u0011\bQ\u0012\u0006\u0010\u00e9\u00f2\u0097\u00a8\u0006\"\u000539653\u0012\u0011\bR\u0012\u0006\u0010\u0089\u00f3\u0097\u00a8\u0006\"\u000539654\u0012\u0011\bS\u0012\u0006\u0010\u00a7\u00f3\u0097\u00a8\u0006\"\u000549334\u0012\u0011\bT\u0012\u0006\u0010\u00e3\u00f3\u0097\u00a8\u0006\"\u000549335\u0012\u0011\bU\u0012\u0006\u0010\u0090\u00f4\u0097\u00a8\u0006\"\u000549336\u0012\u0011\bV\u0012\u0006\u0010\u00c1\u00f4\u0097\u00a8\u0006\"\u000539657\u0012\u0011\bW\u0012\u0006\u0010\u00e2\u00f4\u0097\u00a8\u0006\"\u000539658\u0012\u0011\bX\u0012\u0006\u0010\u0090\u00f5\u0097\u00a8\u0006\"\u000539659\u0012\u0011\bY\u0012\u0006\u0010\u00b1\u00f5\u0097\u00a8\u0006\"\u000539660\u0012\u0011\bZ\u0012\u0006\u0010\u00cf\u00f5\u0097\u00a8\u0006\"\u000539661\u0012\u0011\b[\u0012\u0006\u0010\u00fe\u00f5\u0097\u00a8\u0006\"\u000539662\u0012\u0011\b\\\u0012\u0006\u0010\u00ba\u00f6\u0097\u00a8\u0006\"\u000539663\u0012\u0011\b]\u0012\u0006\u0010\u00e9\u00f6\u0097\u00a8\u0006\"\u000539664\u0012\u0011\b^\u0012\u0006\u0010\u0098\u00f7\u0097\u00a8\u0006\"\u000539665\u0012\u0011\b_\u0012\u0006\u0010\u0084\u00f8\u0097\u00a8\u0006\"\u000539666\u0012\u0011\b`\u0012\u0006\u0010\u00a8\u00f8\u0097\u00a8\u0006\"\u000539667\u0012\u0011\ba\u0012\u0006\u0010\u00ff\u00f8\u0097\u00a8\u0006\"\u000539668\u0012\u0011\bb\u0012\u0006\u0010\u00ab\u00f9\u0097\u00a8\u0006\"\u000539669\u0012\u0011\bc\u0012\u0006\u0010\u00c8\u00f9\u0097\u00a8\u0006\"\u000539670\u0012\u0011\bd\u0012\u0006\u0010\u00dd\u00f9\u0097\u00a8\u0006\"\u000539233\u0012\u0011\be\u0012\u0006\u0010\u008b\u00fa\u0097\u00a8\u0006\"\u000536752\u0012\u0011\bf\u0012\u0006\u0010\u00d6\u00fb\u0097\u00a8\u0006\"\u000539689\u001a\b\u001a\u0006CFTG16 \u00bf\u00e8\u0097\u00a8\u0006\"`\n/\n\u001023385-701ff27f-2\u0012\b14:49:00\u001a\b20230916 \u0000*\u00036100\u0000\u0012\u001d\r.M\u0013\u00c2\u0015\u00ff\u0019\u0092\u00c2\u001d\u0000\u0080\u00acC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00bf\u00e8\u0097\u00a8\u0006B\b\u001a\u0006CFTG16" + }, + { + "type": "con_recorrido", + "entity": "\n$9f774ec5-fb7d-4d9e-96f2-9a492deee7a6\u001a\u00b0\b\n/\n\u001023300-701ff27f-2\u0012\b14:59:00\u001a\b20230916 \u0000*\u00036100\u0001\u0012\u0011\b'\u0012\u0006\u0010\u00d9\u00e8\u0097\u00a8\u0006\"\u000535697\u0012\u0011\b(\u0012\u0006\u0010\u00bf\u00e9\u0097\u00a8\u0006\"\u00052-Jan\u0012\u0011\b)\u0012\u0006\u0010\u00de\u00e9\u0097\u00a8\u0006\"\u000542460\u0012\u0011\b*\u0012\u0006\u0010\u008b\u00ea\u0097\u00a8\u0006\"\u000535690\u0012\u0011\b+\u0012\u0006\u0010\u00ef\u00ea\u0097\u00a8\u0006\"\u000535700\u0012\u0011\b,\u0012\u0006\u0010\u008d\u00eb\u0097\u00a8\u0006\"\u000535701\u0012\u0011\b-\u0012\u0006\u0010\u00d0\u00eb\u0097\u00a8\u0006\"\u000535703\u0012\u0011\b.\u0012\u0006\u0010\u00e7\u00eb\u0097\u00a8\u0006\"\u000535704\u0012\u0011\b/\u0012\u0006\u0010\u00f5\u00eb\u0097\u00a8\u0006\"\u000535705\u0012\u0011\b0\u0012\u0006\u0010\u0088\u00ec\u0097\u00a8\u0006\"\u000535706\u0012\u0011\b1\u0012\u0006\u0010\u00bf\u00ec\u0097\u00a8\u0006\"\u000535707\u0012\u0011\b2\u0012\u0006\u0010\u00d8\u00ec\u0097\u00a8\u0006\"\u000535708\u0012\u0011\b3\u0012\u0006\u0010\u009a\u00ed\u0097\u00a8\u0006\"\u000538520\u0012\u0011\b4\u0012\u0006\u0010\u00c2\u00ed\u0097\u00a8\u0006\"\u000538521\u0012\u0011\b5\u0012\u0006\u0010\u00f3\u00ed\u0097\u00a8\u0006\"\u000538522\u0012\u0011\b6\u0012\u0006\u0010\u00a4\u00ee\u0097\u00a8\u0006\"\u000538523\u0012\u0011\b7\u0012\u0006\u0010\u00d8\u00ee\u0097\u00a8\u0006\"\u000538524\u0012\u0011\b8\u0012\u0006\u0010\u0087\u00ef\u0097\u00a8\u0006\"\u000538525\u0012\u0011\b9\u0012\u0006\u0010\u00ba\u00ef\u0097\u00a8\u0006\"\u000538526\u0012\u0011\b:\u0012\u0006\u0010\u00e7\u00ef\u0097\u00a8\u0006\"\u000539987\u0012\u0011\b;\u0012\u0006\u0010\u0091\u00f0\u0097\u00a8\u0006\"\u000539988\u0012\u0011\b<\u0012\u0006\u0010\u00c0\u00f0\u0097\u00a8\u0006\"\u000537636\u0012\u0011\b=\u0012\u0006\u0010\u00b2\u00f1\u0097\u00a8\u0006\"\u000537637\u0012\u0011\b>\u0012\u0006\u0010\u00e3\u00f1\u0097\u00a8\u0006\"\u000537639\u0012\u0011\b?\u0012\u0006\u0010\u0089\u00f2\u0097\u00a8\u0006\"\u000539200\u0012\u0011\b@\u0012\u0006\u0010\u00a5\u00f2\u0097\u00a8\u0006\"\u000537300\u0012\u0011\bA\u0012\u0006\u0010\u00ce\u00f2\u0097\u00a8\u0006\"\u000540191\u0012\u0011\bB\u0012\u0006\u0010\u00f2\u00f2\u0097\u00a8\u0006\"\u000540192\u0012\u0011\bC\u0012\u0006\u0010\u0090\u00f3\u0097\u00a8\u0006\"\u000540193\u0012\u0011\bD\u0012\u0006\u0010\u00b1\u00f3\u0097\u00a8\u0006\"\u000540194\u0012\u0011\bE\u0012\u0006\u0010\u00d7\u00f3\u0097\u00a8\u0006\"\u000538024\u0012\u0011\bF\u0012\u0006\u0010\u0080\u00f4\u0097\u00a8\u0006\"\u000538025\u0012\u0011\bG\u0012\u0006\u0010\u0098\u00f4\u0097\u00a8\u0006\"\u000538026\u0012\u0011\bH\u0012\u0006\u0010\u00ae\u00f4\u0097\u00a8\u0006\"\u000538027\u0012\u0011\bI\u0012\u0006\u0010\u00b9\u00f4\u0097\u00a8\u0006\"\u000538028\u0012\u0011\bJ\u0012\u0006\u0010\u00d3\u00f4\u0097\u00a8\u0006\"\u000538029\u0012\u0011\bK\u0012\u0006\u0010\u00e3\u00f4\u0097\u00a8\u0006\"\u000538030\u0012\u0011\bL\u0012\u0006\u0010\u0096\u00f5\u0097\u00a8\u0006\"\u000591020\u0012\u0011\bM\u0012\u0006\u0010\u00b5\u00f5\u0097\u00a8\u0006\"\u000591021\u0012\u0011\bN\u0012\u0006\u0010\u00dc\u00f5\u0097\u00a8\u0006\"\u000539214\u0012\u0011\bO\u0012\u0006\u0010\u0093\u00f6\u0097\u00a8\u0006\"\u000539215\u0012\u0011\bP\u0012\u0006\u0010\u0089\u00f7\u0097\u00a8\u0006\"\u000539216\u0012\u0011\bQ\u0012\u0006\u0010\u00cc\u00f7\u0097\u00a8\u0006\"\u000539217\u0012\u0011\bR\u0012\u0006\u0010\u0084\u00f8\u0097\u00a8\u0006\"\u000539218\u0012\u0011\bS\u0012\u0006\u0010\u00a0\u00f8\u0097\u00a8\u0006\"\u000539219\u0012\u0011\bT\u0012\u0006\u0010\u00c9\u00f8\u0097\u00a8\u0006\"\u000539220\u0012\u0011\bU\u0012\u0006\u0010\u00e3\u00f8\u0097\u00a8\u0006\"\u000539221\u0012\u0011\bV\u0012\u0006\u0010\u00b4\u00f9\u0097\u00a8\u0006\"\u000539424\u0012\u0011\bW\u0012\u0006\u0010\u00ea\u00f9\u0097\u00a8\u0006\"\u000591022\u0012\u0011\bX\u0012\u0006\u0010\u00b0\u00fa\u0097\u00a8\u0006\"\u000591023\u0012\u0011\bY\u0012\u0006\u0010\u008c\u00fb\u0097\u00a8\u0006\"\u000539428\u0012\u0011\bZ\u0012\u0006\u0010\u00b1\u00fb\u0097\u00a8\u0006\"\u000539429\u0012\u0011\b[\u0012\u0006\u0010\u00da\u00fb\u0097\u00a8\u0006\"\u000539430\u001a\b\u001a\u0006DLRB59 \u00cd\u00e8\u0097\u00a8\u0006\"`\n/\n\u001023300-701ff27f-2\u0012\b14:59:00\u001a\b20230916 \u0000*\u00036100\u0001\u0012\u001d\r\u0091I\u0013\u00c2\u0015\u00d1 \u0092\u00c2\u001d\u0000\u0000\u0014C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-r\u001c?A(\u00cd\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DLRB59" + }, + { + "type": "con_recorrido", + "entity": "\n$4475f473-6adf-4e67-9f17-3165d9d057a6\u001a\u00a2\t\n/\n\u001023386-701ff27f-2\u0012\b15:01:00\u001a\b20230916 \u0000*\u00036100\u0000\u0012\u0011\b,\u0012\u0006\u0010\u00e5\u00e8\u0097\u00a8\u0006\"\u000539589\u0012\u0011\b-\u0012\u0006\u0010\u009c\u00e9\u0097\u00a8\u0006\"\u000539516\u0012\u0011\b.\u0012\u0006\u0010\u00cb\u00e9\u0097\u00a8\u0006\"\u000539517\u0012\u0011\b/\u0012\u0006\u0010\u0090\u00ea\u0097\u00a8\u0006\"\u000539611\u0012\u0011\b0\u0012\u0006\u0010\u00a8\u00ea\u0097\u00a8\u0006\"\u000539612\u0012\u0011\b1\u0012\u0006\u0010\u00ad\u00eb\u0097\u00a8\u0006\"\u000539615\u0012\u0011\b2\u0012\u0006\u0010\u00df\u00eb\u0097\u00a8\u0006\"\u000539616\u0012\u0011\b3\u0012\u0006\u0010\u0096\u00ec\u0097\u00a8\u0006\"\u000539617\u0012\u0011\b4\u0012\u0006\u0010\u00d0\u00ec\u0097\u00a8\u0006\"\u000539618\u0012\u0011\b5\u0012\u0006\u0010\u00fc\u00ec\u0097\u00a8\u0006\"\u000539619\u0012\u0011\b6\u0012\u0006\u0010\u00a5\u00ed\u0097\u00a8\u0006\"\u000539620\u0012\u0011\b7\u0012\u0006\u0010\u00e8\u00ed\u0097\u00a8\u0006\"\u000539621\u0012\u0011\b8\u0012\u0006\u0010\u00a2\u00ee\u0097\u00a8\u0006\"\u000539623\u0012\u0011\b9\u0012\u0006\u0010\u00d1\u00ee\u0097\u00a8\u0006\"\u000539624\u0012\u0011\b:\u0012\u0006\u0010\u00ff\u00ee\u0097\u00a8\u0006\"\u000539625\u0012\u0011\b;\u0012\u0006\u0010\u00c3\u00ef\u0097\u00a8\u0006\"\u000539628\u0012\u0011\b<\u0012\u0006\u0010\u008d\u00f0\u0097\u00a8\u0006\"\u000539631\u0012\u0011\b=\u0012\u0006\u0010\u00bb\u00f0\u0097\u00a8\u0006\"\u000549311\u0012\u0011\b>\u0012\u0006\u0010\u00f1\u00f0\u0097\u00a8\u0006\"\u000539634\u0012\u0011\b?\u0012\u0006\u0010\u008a\u00f1\u0097\u00a8\u0006\"\u000539635\u0012\u0011\b@\u0012\u0006\u0010\u00b7\u00f1\u0097\u00a8\u0006\"\u000539636\u0012\u0011\bA\u0012\u0006\u0010\u00e7\u00f2\u0097\u00a8\u0006\"\u000539637\u0012\u0011\bB\u0012\u0006\u0010\u0097\u00f3\u0097\u00a8\u0006\"\u000549317\u0012\u0011\bC\u0012\u0006\u0010\u00b7\u00f3\u0097\u00a8\u0006\"\u000549318\u0012\u0011\bD\u0012\u0006\u0010\u00f7\u00f3\u0097\u00a8\u0006\"\u000549319\u0012\u0011\bE\u0012\u0006\u0010\u00b7\u00f4\u0097\u00a8\u0006\"\u000539641\u0012\u0011\bF\u0012\u0006\u0010\u00da\u00f4\u0097\u00a8\u0006\"\u000539642\u0012\u0011\bG\u0012\u0006\u0010\u00ed\u00f5\u0097\u00a8\u0006\"\u000539643\u0012\u0011\bH\u0012\u0006\u0010\u00a6\u00f6\u0097\u00a8\u0006\"\u000549323\u0012\u0011\bI\u0012\u0006\u0010\u00cd\u00f6\u0097\u00a8\u0006\"\u000549324\u0012\u0011\bJ\u0012\u0006\u0010\u00ff\u00f6\u0097\u00a8\u0006\"\u000549325\u0012\u0011\bK\u0012\u0006\u0010\u00b7\u00f7\u0097\u00a8\u0006\"\u000549326\u0012\u0011\bL\u0012\u0006\u0010\u00cf\u00f7\u0097\u00a8\u0006\"\u000539648\u0012\u0011\bM\u0012\u0006\u0010\u0084\u00f8\u0097\u00a8\u0006\"\u000539649\u0012\u0011\bN\u0012\u0006\u0010\u00bb\u00f8\u0097\u00a8\u0006\"\u000549329\u0012\u0011\bO\u0012\u0006\u0010\u00f7\u00f8\u0097\u00a8\u0006\"\u000549330\u0012\u0011\bP\u0012\u0006\u0010\u00a0\u00f9\u0097\u00a8\u0006\"\u000539652\u0012\u0011\bQ\u0012\u0006\u0010\u00bf\u00f9\u0097\u00a8\u0006\"\u000539653\u0012\u0011\bR\u0012\u0006\u0010\u00e4\u00f9\u0097\u00a8\u0006\"\u000539654\u0012\u0011\bS\u0012\u0006\u0010\u0085\u00fa\u0097\u00a8\u0006\"\u000549334\u0012\u0011\bT\u0012\u0006\u0010\u00c9\u00fa\u0097\u00a8\u0006\"\u000549335\u0012\u0011\bU\u0012\u0006\u0010\u00fc\u00fa\u0097\u00a8\u0006\"\u000549336\u0012\u0011\bV\u0012\u0006\u0010\u00b5\u00fb\u0097\u00a8\u0006\"\u000539657\u0012\u0011\bW\u0012\u0006\u0010\u00dc\u00fb\u0097\u00a8\u0006\"\u000539658\u0012\u0011\bX\u0012\u0006\u0010\u0091\u00fc\u0097\u00a8\u0006\"\u000539659\u0012\u0011\bY\u0012\u0006\u0010\u00b7\u00fc\u0097\u00a8\u0006\"\u000539660\u0012\u0011\bZ\u0012\u0006\u0010\u00db\u00fc\u0097\u00a8\u0006\"\u000539661\u0012\u0011\b[\u0012\u0006\u0010\u0093\u00fd\u0097\u00a8\u0006\"\u000539662\u0012\u0011\b\\\u0012\u0006\u0010\u00da\u00fd\u0097\u00a8\u0006\"\u000539663\u0012\u0011\b]\u0012\u0006\u0010\u0093\u00fe\u0097\u00a8\u0006\"\u000539664\u0012\u0011\b^\u0012\u0006\u0010\u00cc\u00fe\u0097\u00a8\u0006\"\u000539665\u0012\u0011\b_\u0012\u0006\u0010\u00d0\u00ff\u0097\u00a8\u0006\"\u000539666\u0012\u0011\b`\u0012\u0006\u0010\u00fc\u00ff\u0097\u00a8\u0006\"\u000539667\u0012\u0011\ba\u0012\u0006\u0010\u00e9\u0080\u0098\u00a8\u0006\"\u000539668\u0012\u0011\bb\u0012\u0006\u0010\u00a0\u0081\u0098\u00a8\u0006\"\u000539669\u0012\u0011\bc\u0012\u0006\u0010\u00c5\u0081\u0098\u00a8\u0006\"\u000539670\u0012\u0011\bd\u0012\u0006\u0010\u00e0\u0081\u0098\u00a8\u0006\"\u000539233\u0012\u0011\be\u0012\u0006\u0010\u009a\u0082\u0098\u00a8\u0006\"\u000536752\u0012\u0011\bf\u0012\u0006\u0010\u00a2\u0084\u0098\u00a8\u0006\"\u000539689\u001a\b\u001a\u0006DPZZ42 \u00cb\u00e8\u0097\u00a8\u0006\"`\n/\n\u001023386-701ff27f-2\u0012\b15:01:00\u001a\b20230916 \u0000*\u00036100\u0000\u0012\u001d\rk4\u0013\u00c2\u0015:\u0019\u0092\u00c2\u001d\u0000\u0000JC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u00de@(\u00cb\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DPZZ42" + }, + { + "type": "con_recorrido", + "entity": "\n$5d2cd0a3-a6f8-4b3b-8139-f9d7f6bd3bbc\u001a\u00cc\u0006\n/\n\u001023299-701ff27f-2\u0012\b14:44:00\u001a\b20230916 \u0000*\u00036100\u0001\u0012\u0011\b3\u0012\u0006\u0010\u00ca\u00e8\u0097\u00a8\u0006\"\u000538520\u0012\u0011\b4\u0012\u0006\u0010\u00f6\u00e8\u0097\u00a8\u0006\"\u000538521\u0012\u0011\b5\u0012\u0006\u0010\u00aa\u00e9\u0097\u00a8\u0006\"\u000538522\u0012\u0011\b6\u0012\u0006\u0010\u00df\u00e9\u0097\u00a8\u0006\"\u000538523\u0012\u0011\b7\u0012\u0006\u0010\u0096\u00ea\u0097\u00a8\u0006\"\u000538524\u0012\u0011\b8\u0012\u0006\u0010\u00c8\u00ea\u0097\u00a8\u0006\"\u000538525\u0012\u0011\b9\u0012\u0006\u0010\u00fe\u00ea\u0097\u00a8\u0006\"\u000538526\u0012\u0011\b:\u0012\u0006\u0010\u00ae\u00eb\u0097\u00a8\u0006\"\u000539987\u0012\u0011\b;\u0012\u0006\u0010\u00d8\u00eb\u0097\u00a8\u0006\"\u000539988\u0012\u0011\b<\u0012\u0006\u0010\u0089\u00ec\u0097\u00a8\u0006\"\u000537636\u0012\u0011\b=\u0012\u0006\u0010\u00ff\u00ec\u0097\u00a8\u0006\"\u000537637\u0012\u0011\b>\u0012\u0006\u0010\u00b1\u00ed\u0097\u00a8\u0006\"\u000537639\u0012\u0011\b?\u0012\u0006\u0010\u00d7\u00ed\u0097\u00a8\u0006\"\u000539200\u0012\u0011\b@\u0012\u0006\u0010\u00f3\u00ed\u0097\u00a8\u0006\"\u000537300\u0012\u0011\bA\u0012\u0006\u0010\u009d\u00ee\u0097\u00a8\u0006\"\u000540191\u0012\u0011\bB\u0012\u0006\u0010\u00c0\u00ee\u0097\u00a8\u0006\"\u000540192\u0012\u0011\bC\u0012\u0006\u0010\u00df\u00ee\u0097\u00a8\u0006\"\u000540193\u0012\u0011\bD\u0012\u0006\u0010\u00fe\u00ee\u0097\u00a8\u0006\"\u000540194\u0012\u0011\bE\u0012\u0006\u0010\u00a4\u00ef\u0097\u00a8\u0006\"\u000538024\u0012\u0011\bF\u0012\u0006\u0010\u00cc\u00ef\u0097\u00a8\u0006\"\u000538025\u0012\u0011\bG\u0012\u0006\u0010\u00e4\u00ef\u0097\u00a8\u0006\"\u000538026\u0012\u0011\bH\u0012\u0006\u0010\u00f9\u00ef\u0097\u00a8\u0006\"\u000538027\u0012\u0011\bI\u0012\u0006\u0010\u0085\u00f0\u0097\u00a8\u0006\"\u000538028\u0012\u0011\bJ\u0012\u0006\u0010\u009d\u00f0\u0097\u00a8\u0006\"\u000538029\u0012\u0011\bK\u0012\u0006\u0010\u00ad\u00f0\u0097\u00a8\u0006\"\u000538030\u0012\u0011\bL\u0012\u0006\u0010\u00df\u00f0\u0097\u00a8\u0006\"\u000591020\u0012\u0011\bM\u0012\u0006\u0010\u00fd\u00f0\u0097\u00a8\u0006\"\u000591021\u0012\u0011\bN\u0012\u0006\u0010\u00a2\u00f1\u0097\u00a8\u0006\"\u000539214\u0012\u0011\bO\u0012\u0006\u0010\u00d7\u00f1\u0097\u00a8\u0006\"\u000539215\u0012\u0011\bP\u0012\u0006\u0010\u00c6\u00f2\u0097\u00a8\u0006\"\u000539216\u0012\u0011\bQ\u0012\u0006\u0010\u0085\u00f3\u0097\u00a8\u0006\"\u000539217\u0012\u0011\bR\u0012\u0006\u0010\u00b9\u00f3\u0097\u00a8\u0006\"\u000539218\u0012\u0011\bS\u0012\u0006\u0010\u00d3\u00f3\u0097\u00a8\u0006\"\u000539219\u0012\u0011\bT\u0012\u0006\u0010\u00fa\u00f3\u0097\u00a8\u0006\"\u000539220\u0012\u0011\bU\u0012\u0006\u0010\u0091\u00f4\u0097\u00a8\u0006\"\u000539221\u0012\u0011\bV\u0012\u0006\u0010\u00dc\u00f4\u0097\u00a8\u0006\"\u000539424\u0012\u0011\bW\u0012\u0006\u0010\u008d\u00f5\u0097\u00a8\u0006\"\u000591022\u0012\u0011\bX\u0012\u0006\u0010\u00cc\u00f5\u0097\u00a8\u0006\"\u000591023\u0012\u0011\bY\u0012\u0006\u0010\u009f\u00f6\u0097\u00a8\u0006\"\u000539428\u0012\u0011\bZ\u0012\u0006\u0010\u00c0\u00f6\u0097\u00a8\u0006\"\u000539429\u0012\u0011\b[\u0012\u0006\u0010\u00e5\u00f6\u0097\u00a8\u0006\"\u000539430\u001a\b\u001a\u0006HFZJ97 \u00c8\u00e8\u0097\u00a8\u0006\"`\n/\n\u001023299-701ff27f-2\u0012\b14:44:00\u001a\b20230916 \u0000*\u00036100\u0001\u0012\u001d\ruF\u0013\u00c2\u00150\u0017\u0092\u00c2\u001d\u0000\u0000\u00a5C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e486A(\u00c8\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HFZJ97" + }, + { + "type": "con_recorrido", + "entity": "\n$e1c499be-bbd8-4f99-ad9d-2e6cabe94319\u001a\u00e8\u0004\n/\n\u001023383-701ff27f-2\u0012\b14:25:00\u001a\b20230916 \u0000*\u00036100\u0000\u0012\u0011\bJ\u0012\u0006\u0010\u00c6\u00e8\u0097\u00a8\u0006\"\u000549325\u0012\u0011\bK\u0012\u0006\u0010\u00ff\u00e8\u0097\u00a8\u0006\"\u000549326\u0012\u0011\bL\u0012\u0006\u0010\u0098\u00e9\u0097\u00a8\u0006\"\u000539648\u0012\u0011\bM\u0012\u0006\u0010\u00cd\u00e9\u0097\u00a8\u0006\"\u000539649\u0012\u0011\bN\u0012\u0006\u0010\u0082\u00ea\u0097\u00a8\u0006\"\u000549329\u0012\u0011\bO\u0012\u0006\u0010\u00bc\u00ea\u0097\u00a8\u0006\"\u000549330\u0012\u0011\bP\u0012\u0006\u0010\u00e3\u00ea\u0097\u00a8\u0006\"\u000539652\u0012\u0011\bQ\u0012\u0006\u0010\u0080\u00eb\u0097\u00a8\u0006\"\u000539653\u0012\u0011\bR\u0012\u0006\u0010\u00a1\u00eb\u0097\u00a8\u0006\"\u000539654\u0012\u0011\bS\u0012\u0006\u0010\u00bf\u00eb\u0097\u00a8\u0006\"\u000549334\u0012\u0011\bT\u0012\u0006\u0010\u00fd\u00eb\u0097\u00a8\u0006\"\u000549335\u0012\u0011\bU\u0012\u0006\u0010\u00aa\u00ec\u0097\u00a8\u0006\"\u000549336\u0012\u0011\bV\u0012\u0006\u0010\u00db\u00ec\u0097\u00a8\u0006\"\u000539657\u0012\u0011\bW\u0012\u0006\u0010\u00fc\u00ec\u0097\u00a8\u0006\"\u000539658\u0012\u0011\bX\u0012\u0006\u0010\u00a9\u00ed\u0097\u00a8\u0006\"\u000539659\u0012\u0011\bY\u0012\u0006\u0010\u00c9\u00ed\u0097\u00a8\u0006\"\u000539660\u0012\u0011\bZ\u0012\u0006\u0010\u00e6\u00ed\u0097\u00a8\u0006\"\u000539661\u0012\u0011\b[\u0012\u0006\u0010\u0094\u00ee\u0097\u00a8\u0006\"\u000539662\u0012\u0011\b\\\u0012\u0006\u0010\u00cc\u00ee\u0097\u00a8\u0006\"\u000539663\u0012\u0011\b]\u0012\u0006\u0010\u00f9\u00ee\u0097\u00a8\u0006\"\u000539664\u0012\u0011\b^\u0012\u0006\u0010\u00a5\u00ef\u0097\u00a8\u0006\"\u000539665\u0012\u0011\b_\u0012\u0006\u0010\u0088\u00f0\u0097\u00a8\u0006\"\u000539666\u0012\u0011\b`\u0012\u0006\u0010\u00a9\u00f0\u0097\u00a8\u0006\"\u000539667\u0012\u0011\ba\u0012\u0006\u0010\u00f8\u00f0\u0097\u00a8\u0006\"\u000539668\u0012\u0011\bb\u0012\u0006\u0010\u009f\u00f1\u0097\u00a8\u0006\"\u000539669\u0012\u0011\bc\u0012\u0006\u0010\u00b9\u00f1\u0097\u00a8\u0006\"\u000539670\u0012\u0011\bd\u0012\u0006\u0010\u00cb\u00f1\u0097\u00a8\u0006\"\u000539233\u0012\u0011\be\u0012\u0006\u0010\u00f4\u00f1\u0097\u00a8\u0006\"\u000536752\u0012\u0011\bf\u0012\u0006\u0010\u00a2\u00f3\u0097\u00a8\u0006\"\u000539689\u001a\b\u001a\u0006JXLZ88 \u00ad\u00e8\u0097\u00a8\u0006\"`\n/\n\u001023383-701ff27f-2\u0012\b14:25:00\u001a\b20230916 \u0000*\u00036100\u0000\u0012\u001d\r\u00911\u0013\u00c2\u0015\u00c0+\u0092\u00c2\u001d\u0000\u0000\u00afC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-9\u008eCA(\u00ad\u00e8\u0097\u00a8\u0006B\b\u001a\u0006JXLZ88" + }, + { + "type": "con_recorrido", + "entity": "\n$caa7656f-50ca-47fe-819e-8aea6e408c90\u001a\u00e5\u000b\n/\n\u001023301-701ff27f-2\u0012\b15:14:00\u001a\b20230916 \u0000*\u00036100\u0001\u0012\u0011\b\u0010\u0012\u0006\u0010\u00b5\u00e8\u0097\u00a8\u0006\"\u000591019\u0012\u0011\b\u0011\u0012\u0006\u0010\u00f4\u00e8\u0097\u00a8\u0006\"\u000537436\u0012\u0011\b\u0012\u0012\u0006\u0010\u00bc\u00e9\u0097\u00a8\u0006\"\u000549135\u0012\u0011\b\u0013\u0012\u0006\u0010\u00e7\u00e9\u0097\u00a8\u0006\"\u000549136\u0012\u0011\b\u0014\u0012\u0006\u0010\u00b2\u00ea\u0097\u00a8\u0006\"\u000549137\u0012\u0011\b\u0015\u0012\u0006\u0010\u00ca\u00ea\u0097\u00a8\u0006\"\u000549138\u0012\u0011\b\u0016\u0012\u0006\u0010\u00dc\u00ea\u0097\u00a8\u0006\"\u000549139\u0012\u0011\b\u0017\u0012\u0006\u0010\u00fc\u00ea\u0097\u00a8\u0006\"\u000549140\u0012\u0011\b\u0018\u0012\u0006\u0010\u00a5\u00eb\u0097\u00a8\u0006\"\u000549141\u0012\u0011\b\u0019\u0012\u0006\u0010\u00cd\u00eb\u0097\u00a8\u0006\"\u000549142\u0012\u0011\b\u001a\u0012\u0006\u0010\u00f2\u00eb\u0097\u00a8\u0006\"\u000549143\u0012\u0011\b\u001b\u0012\u0006\u0010\u008d\u00ec\u0097\u00a8\u0006\"\u000538506\u0012\u0011\b\u001c\u0012\u0006\u0010\u00be\u00ec\u0097\u00a8\u0006\"\u000538635\u0012\u0011\b\u001d\u0012\u0006\u0010\u00df\u00ec\u0097\u00a8\u0006\"\u000538509\u0012\u0011\b\u001e\u0012\u0006\u0010\u008a\u00ed\u0097\u00a8\u0006\"\u000538642\u0012\u0011\b\u001f\u0012\u0006\u0010\u00b6\u00ed\u0097\u00a8\u0006\"\u000539795\u0012\u0011\b \u0012\u0006\u0010\u00d4\u00ed\u0097\u00a8\u0006\"\u000538502\u0012\u0011\b!\u0012\u0006\u0010\u0091\u00ee\u0097\u00a8\u0006\"\u000538503\u0012\u0011\b\"\u0012\u0006\u0010\u00aa\u00ef\u0097\u00a8\u0006\"\u000535691\u0012\u0011\b#\u0012\u0006\u0010\u008a\u00f0\u0097\u00a8\u0006\"\u000535693\u0012\u0011\b$\u0012\u0006\u0010\u00bf\u00f0\u0097\u00a8\u0006\"\u000535694\u0012\u0011\b%\u0012\u0006\u0010\u00e6\u00f0\u0097\u00a8\u0006\"\u000535695\u0012\u0011\b&\u0012\u0006\u0010\u0094\u00f1\u0097\u00a8\u0006\"\u000535696\u0012\u0011\b'\u0012\u0006\u0010\u00ba\u00f2\u0097\u00a8\u0006\"\u000535697\u0012\u0011\b(\u0012\u0006\u0010\u0099\u00f3\u0097\u00a8\u0006\"\u00052-Jan\u0012\u0011\b)\u0012\u0006\u0010\u00b6\u00f3\u0097\u00a8\u0006\"\u000542460\u0012\u0011\b*\u0012\u0006\u0010\u00e0\u00f3\u0097\u00a8\u0006\"\u000535690\u0012\u0011\b+\u0012\u0006\u0010\u00c1\u00f4\u0097\u00a8\u0006\"\u000535700\u0012\u0011\b,\u0012\u0006\u0010\u00de\u00f4\u0097\u00a8\u0006\"\u000535701\u0012\u0011\b-\u0012\u0006\u0010\u00a0\u00f5\u0097\u00a8\u0006\"\u000535703\u0012\u0011\b.\u0012\u0006\u0010\u00b7\u00f5\u0097\u00a8\u0006\"\u000535704\u0012\u0011\b/\u0012\u0006\u0010\u00c6\u00f5\u0097\u00a8\u0006\"\u000535705\u0012\u0011\b0\u0012\u0006\u0010\u00d9\u00f5\u0097\u00a8\u0006\"\u000535706\u0012\u0011\b1\u0012\u0006\u0010\u0091\u00f6\u0097\u00a8\u0006\"\u000535707\u0012\u0011\b2\u0012\u0006\u0010\u00ab\u00f6\u0097\u00a8\u0006\"\u000535708\u0012\u0011\b3\u0012\u0006\u0010\u00f0\u00f6\u0097\u00a8\u0006\"\u000538520\u0012\u0011\b4\u0012\u0006\u0010\u009a\u00f7\u0097\u00a8\u0006\"\u000538521\u0012\u0011\b5\u0012\u0006\u0010\u00ce\u00f7\u0097\u00a8\u0006\"\u000538522\u0012\u0011\b6\u0012\u0006\u0010\u0083\u00f8\u0097\u00a8\u0006\"\u000538523\u0012\u0011\b7\u0012\u0006\u0010\u00bc\u00f8\u0097\u00a8\u0006\"\u000538524\u0012\u0011\b8\u0012\u0006\u0010\u00f0\u00f8\u0097\u00a8\u0006\"\u000538525\u0012\u0011\b9\u0012\u0006\u0010\u00a9\u00f9\u0097\u00a8\u0006\"\u000538526\u0012\u0011\b:\u0012\u0006\u0010\u00dd\u00f9\u0097\u00a8\u0006\"\u000539987\u0012\u0011\b;\u0012\u0006\u0010\u008c\u00fa\u0097\u00a8\u0006\"\u000539988\u0012\u0011\b<\u0012\u0006\u0010\u00c3\u00fa\u0097\u00a8\u0006\"\u000537636\u0012\u0011\b=\u0012\u0006\u0010\u00cb\u00fb\u0097\u00a8\u0006\"\u000537637\u0012\u0011\b>\u0012\u0006\u0010\u0085\u00fc\u0097\u00a8\u0006\"\u000537639\u0012\u0011\b?\u0012\u0006\u0010\u00b3\u00fc\u0097\u00a8\u0006\"\u000539200\u0012\u0011\b@\u0012\u0006\u0010\u00d7\u00fc\u0097\u00a8\u0006\"\u000537300\u0012\u0011\bA\u0012\u0006\u0010\u008a\u00fd\u0097\u00a8\u0006\"\u000540191\u0012\u0011\bB\u0012\u0006\u0010\u00b6\u00fd\u0097\u00a8\u0006\"\u000540192\u0012\u0011\bC\u0012\u0006\u0010\u00dc\u00fd\u0097\u00a8\u0006\"\u000540193\u0012\u0011\bD\u0012\u0006\u0010\u0085\u00fe\u0097\u00a8\u0006\"\u000540194\u0012\u0011\bE\u0012\u0006\u0010\u00b6\u00fe\u0097\u00a8\u0006\"\u000538024\u0012\u0011\bF\u0012\u0006\u0010\u00eb\u00fe\u0097\u00a8\u0006\"\u000538025\u0012\u0011\bG\u0012\u0006\u0010\u008b\u00ff\u0097\u00a8\u0006\"\u000538026\u0012\u0011\bH\u0012\u0006\u0010\u00a7\u00ff\u0097\u00a8\u0006\"\u000538027\u0012\u0011\bI\u0012\u0006\u0010\u00b6\u00ff\u0097\u00a8\u0006\"\u000538028\u0012\u0011\bJ\u0012\u0006\u0010\u00d8\u00ff\u0097\u00a8\u0006\"\u000538029\u0012\u0011\bK\u0012\u0006\u0010\u00ed\u00ff\u0097\u00a8\u0006\"\u000538030\u0012\u0011\bL\u0012\u0006\u0010\u00b2\u0080\u0098\u00a8\u0006\"\u000591020\u0012\u0011\bM\u0012\u0006\u0010\u00dc\u0080\u0098\u00a8\u0006\"\u000591021\u0012\u0011\bN\u0012\u0006\u0010\u0091\u0081\u0098\u00a8\u0006\"\u000539214\u0012\u0011\bO\u0012\u0006\u0010\u00dd\u0081\u0098\u00a8\u0006\"\u000539215\u0012\u0011\bP\u0012\u0006\u0010\u0081\u0083\u0098\u00a8\u0006\"\u000539216\u0012\u0011\bQ\u0012\u0006\u0010\u00e2\u0083\u0098\u00a8\u0006\"\u000539217\u0012\u0011\bR\u0012\u0006\u0010\u00b3\u0084\u0098\u00a8\u0006\"\u000539218\u0012\u0011\bS\u0012\u0006\u0010\u00dc\u0084\u0098\u00a8\u0006\"\u000539219\u0012\u0011\bT\u0012\u0006\u0010\u0099\u0085\u0098\u00a8\u0006\"\u000539220\u0012\u0011\bU\u0012\u0006\u0010\u00bf\u0085\u0098\u00a8\u0006\"\u000539221\u0012\u0011\bV\u0012\u0006\u0010\u00ba\u0086\u0098\u00a8\u0006\"\u000539424\u0012\u0011\bW\u0012\u0006\u0010\u008c\u0087\u0098\u00a8\u0006\"\u000591022\u0012\u0011\bX\u0012\u0006\u0010\u00f8\u0087\u0098\u00a8\u0006\"\u000591023\u0012\u0011\bY\u0012\u0006\u0010\u0089\u0089\u0098\u00a8\u0006\"\u000539428\u0012\u0011\bZ\u0012\u0006\u0010\u00c4\u0089\u0098\u00a8\u0006\"\u000539429\u0012\u0011\b[\u0012\u0006\u0010\u0087\u008a\u0098\u00a8\u0006\"\u000539430\u001a\b\u001a\u0006WV6687 \u00af\u00e8\u0097\u00a8\u0006\"`\n/\n\u001023301-701ff27f-2\u0012\b15:14:00\u001a\b20230916 \u0000*\u00036100\u0001\u0012\u001d\r\u009b%\u0013\u00c2\u0015\u00ab6\u0092\u00c2\u001d\u0000\u0000\u00b0B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-9\u008e\u00c3@(\u00af\u00e8\u0097\u00a8\u0006B\b\u001a\u0006WV6687" + }, + { + "type": "con_recorrido", + "entity": "\n$710b0a30-70ce-4083-9e31-9b6171accb4f\u001aT\n/\n\u001023382-701ff27f-2\u0012\b14:13:00\u001a\b20230916 \u0000*\u00036100\u0000\u0012\u0011\bf\u0012\u0006\u0010\u00fa\u00e9\u0097\u00a8\u0006\"\u000539689\u001a\b\u001a\u0006ZR9567 \u00c0\u00e8\u0097\u00a8\u0006\"`\n/\n\u001023382-701ff27f-2\u0012\b14:13:00\u001a\b20230916 \u0000*\u00036100\u0000\u0012\u001d\r\u0090%\u0013\u00c2\u0015\u00ef;\u0092\u00c2\u001d\u0000\u0000\u0010C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008e\u00e3x@(\u00c0\u00e8\u0097\u00a8\u0006B\b\u001a\u0006ZR9567" + }, + { + "type": "con_recorrido", + "entity": "\n$bcf36d06-b8e9-4943-95c9-55306fff636e\u001a\u009c\u000b\n/\n\u001023482-701ff27f-2\u0012\b15:12:00\u001a\b20230916 \u0000*\u00036110\u0000\u0012\u0011\b\u0016\u0012\u0006\u0010\u00af\u00e8\u0097\u00a8\u0006\"\u000539579\u0012\u0011\b\u0017\u0012\u0006\u0010\u00d3\u00e8\u0097\u00a8\u0006\"\u000539580\u0012\u0011\b\u0018\u0012\u0006\u0010\u00f0\u00e8\u0097\u00a8\u0006\"\u000539581\u0012\u0011\b\u0019\u0012\u0006\u0010\u0081\u00e9\u0097\u00a8\u0006\"\u000539582\u0012\u0011\b\u001a\u0012\u0006\u0010\u0090\u00e9\u0097\u00a8\u0006\"\u000539583\u0012\u0011\b\u001b\u0012\u0006\u0010\u00a9\u00e9\u0097\u00a8\u0006\"\u000539584\u0012\u0011\b\u001c\u0012\u0006\u0010\u00cd\u00e9\u0097\u00a8\u0006\"\u000539585\u0012\u0011\b\u001d\u0012\u0006\u0010\u00da\u00e9\u0097\u00a8\u0006\"\u000538024\u0012\u0011\b\u001e\u0012\u0006\u0010\u0082\u00ea\u0097\u00a8\u0006\"\u000539536\u0012\u0014\b\u001f\u0012\u0006\u0010\u00a8\u00ea\u0097\u00a8\u0006\"\b16206048\u0012\u0011\b \u0012\u0006\u0010\u00bb\u00ea\u0097\u00a8\u0006\"\u000539537\u0012\u0011\b!\u0012\u0006\u0010\u00cd\u00ea\u0097\u00a8\u0006\"\u000539428\u0012\u0011\b\"\u0012\u0006\u0010\u00ea\u00ea\u0097\u00a8\u0006\"\u000539429\u0012\u0011\b#\u0012\u0006\u0010\u008e\u00eb\u0097\u00a8\u0006\"\u000539430\u0012\u0011\b$\u0012\u0006\u0010\u00fb\u00eb\u0097\u00a8\u0006\"\u000537638\u0012\u0011\b%\u0012\u0006\u0010\u009e\u00ec\u0097\u00a8\u0006\"\u000539587\u0012\u0011\b&\u0012\u0006\u0010\u00bf\u00ec\u0097\u00a8\u0006\"\u000539588\u0012\u0011\b'\u0012\u0006\u0010\u00f3\u00ec\u0097\u00a8\u0006\"\u000539589\u0012\u0011\b(\u0012\u0006\u0010\u00a5\u00ed\u0097\u00a8\u0006\"\u000539516\u0012\u0011\b)\u0012\u0006\u0010\u00d1\u00ed\u0097\u00a8\u0006\"\u000539517\u0012\u0011\b*\u0012\u0006\u0010\u0092\u00ee\u0097\u00a8\u0006\"\u000539611\u0012\u0011\b+\u0012\u0006\u0010\u00a9\u00ee\u0097\u00a8\u0006\"\u000539612\u0012\u0011\b,\u0012\u0006\u0010\u00dd\u00ee\u0097\u00a8\u0006\"\u000539613\u0012\u0011\b-\u0012\u0006\u0010\u00f3\u00ee\u0097\u00a8\u0006\"\u000539614\u0012\u0011\b.\u0012\u0006\u0010\u00a4\u00ef\u0097\u00a8\u0006\"\u000539615\u0012\u0011\b/\u0012\u0006\u0010\u00d6\u00ef\u0097\u00a8\u0006\"\u000539616\u0012\u0011\b0\u0012\u0006\u0010\u0088\u00f0\u0097\u00a8\u0006\"\u000539617\u0012\u0011\b1\u0012\u0006\u0010\u00c1\u00f0\u0097\u00a8\u0006\"\u000539618\u0012\u0011\b2\u0012\u0006\u0010\u00eb\u00f0\u0097\u00a8\u0006\"\u000539619\u0012\u0011\b3\u0012\u0006\u0010\u0094\u00f1\u0097\u00a8\u0006\"\u000539620\u0012\u0011\b4\u0012\u0006\u0010\u00d8\u00f1\u0097\u00a8\u0006\"\u000539621\u0012\u0011\b5\u0012\u0006\u0010\u0092\u00f2\u0097\u00a8\u0006\"\u000539623\u0012\u0011\b6\u0012\u0006\u0010\u00c2\u00f2\u0097\u00a8\u0006\"\u000539624\u0012\u0011\b7\u0012\u0006\u0010\u00ef\u00f2\u0097\u00a8\u0006\"\u000539625\u0012\u0011\b8\u0012\u0006\u0010\u00b4\u00f3\u0097\u00a8\u0006\"\u000539628\u0012\u0011\b9\u0012\u0006\u0010\u0080\u00f4\u0097\u00a8\u0006\"\u000539631\u0012\u0011\b:\u0012\u0006\u0010\u00b0\u00f4\u0097\u00a8\u0006\"\u000549311\u0012\u0011\b;\u0012\u0006\u0010\u00e8\u00f4\u0097\u00a8\u0006\"\u000539634\u0012\u0011\b<\u0012\u0006\u0010\u0081\u00f5\u0097\u00a8\u0006\"\u000539635\u0012\u0011\b=\u0012\u0006\u0010\u00b0\u00f5\u0097\u00a8\u0006\"\u000539636\u0012\u0011\b>\u0012\u0006\u0010\u00e9\u00f6\u0097\u00a8\u0006\"\u000539637\u0012\u0011\b?\u0012\u0006\u0010\u009d\u00f7\u0097\u00a8\u0006\"\u000549317\u0012\u0011\b@\u0012\u0006\u0010\u00bf\u00f7\u0097\u00a8\u0006\"\u000549318\u0012\u0011\bA\u0012\u0006\u0010\u0085\u00f8\u0097\u00a8\u0006\"\u000549319\u0012\u0011\bB\u0012\u0006\u0010\u00ca\u00f8\u0097\u00a8\u0006\"\u000539641\u0012\u0011\bC\u0012\u0006\u0010\u0093\u00fa\u0097\u00a8\u0006\"\u000539643\u0012\u0011\bD\u0012\u0006\u0010\u00aa\u00fb\u0097\u00a8\u0006\"\u000549325\u0012\u0011\bE\u0012\u0006\u0010\u00f4\u00fb\u0097\u00a8\u0006\"\u000549326\u0012\u0011\bF\u0012\u0006\u0010\u0093\u00fc\u0097\u00a8\u0006\"\u000539648\u0012\u0011\bG\u0012\u0006\u0010\u00cc\u00fc\u0097\u00a8\u0006\"\u000539649\u0012\u0011\bH\u0012\u0006\u0010\u008a\u00fd\u0097\u00a8\u0006\"\u000549329\u0012\u0011\bI\u0012\u0006\u0010\u00d0\u00fd\u0097\u00a8\u0006\"\u000549330\u0012\u0011\bJ\u0012\u0006\u0010\u0080\u00fe\u0097\u00a8\u0006\"\u000539652\u0012\u0011\bK\u0012\u0006\u0010\u00a3\u00fe\u0097\u00a8\u0006\"\u000539653\u0012\u0011\bL\u0012\u0006\u0010\u00ce\u00fe\u0097\u00a8\u0006\"\u000539654\u0012\u0011\bM\u0012\u0006\u0010\u00f3\u00fe\u0097\u00a8\u0006\"\u000549334\u0012\u0011\bN\u0012\u0006\u0010\u00c2\u00ff\u0097\u00a8\u0006\"\u000549335\u0012\u0011\bO\u0012\u0006\u0010\u0081\u0080\u0098\u00a8\u0006\"\u000549336\u0012\u0011\bP\u0012\u0006\u0010\u00c4\u0080\u0098\u00a8\u0006\"\u000539657\u0012\u0011\bQ\u0012\u0006\u0010\u0095\u0082\u0098\u00a8\u0006\"\u000542523\u0012\u0011\bR\u0012\u0006\u0010\u00c3\u0082\u0098\u00a8\u0006\"\u000542524\u0012\u0011\bS\u0012\u0006\u0010\u008a\u0083\u0098\u00a8\u0006\"\u000539686\u0012\u0011\bT\u0012\u0006\u0010\u009c\u0083\u0098\u00a8\u0006\"\u000539687\u0012\u0011\bU\u0012\u0006\u0010\u0080\u0084\u0098\u00a8\u0006\"\u000539689\u0012\u0011\bV\u0012\u0006\u0010\u00a4\u0084\u0098\u00a8\u0006\"\u000539690\u0012\u0011\bW\u0012\u0006\u0010\u00c3\u0084\u0098\u00a8\u0006\"\u000539691\u0012\u0011\bX\u0012\u0006\u0010\u00f1\u0084\u0098\u00a8\u0006\"\u000539692\u0012\u0011\bY\u0012\u0006\u0010\u008e\u0085\u0098\u00a8\u0006\"\u000539693\u0012\u0011\bZ\u0012\u0006\u0010\u009e\u0086\u0098\u00a8\u0006\"\u000536695\u0012\u0011\b[\u0012\u0006\u0010\u00f2\u0086\u0098\u00a8\u0006\"\u000536696\u0012\u0011\b\\\u0012\u0006\u0010\u00e2\u0087\u0098\u00a8\u0006\"\u000539229\u0012\u0011\b]\u0012\u0006\u0010\u009b\u0089\u0098\u00a8\u0006\"\u000539139\u001a\b\u001a\u0006BHWD17 \u0092\u00e8\u0097\u00a8\u0006\"`\n/\n\u001023482-701ff27f-2\u0012\b15:12:00\u001a\b20230916 \u0000*\u00036110\u0000\u0012\u001d\rN\u001f\u0013\u00c2\u0015\u00a5\u0016\u0092\u00c2\u001d\u0000\u0000\u00b4B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-r\u001c\u00e7@(\u0092\u00e8\u0097\u00a8\u0006B\b\u001a\u0006BHWD17" + }, + { + "type": "sin_recorrido", + "entity": "\n$5c1cb788-27e2-4f7c-a36c-f9b5e40cb9a0\"`\n/\n\u001023484-701ff27f-2\u0012\b15:36:00\u001a\b20230916 \u0000*\u00036110\u0000\u0012\u001d\r\u00e4-\u0013\u00c2\u0015\u0085\u0017\u0092\u00c2\u001d\u0000\u0000:C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c2\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DRBB22" + }, + { + "type": "con_recorrido", + "entity": "\n$9559013c-d7ed-429f-b4d3-a1369e376825\u001a\u00bb\u000e\n/\n\u001023568-701ff27f-2\u0012\b15:31:00\u001a\b20230916 \u0000*\u00036110\u0001\u0012\u0013\b\u0003\u0012\u0006\u0010\u00dd\u00e8\u0097\u00a8\u0006\"\u00078606050\u0012\u0011\b\u0004\u0012\u0006\u0010\u0086\u00e9\u0097\u00a8\u0006\"\u000539231\u0012\u0011\b\u0005\u0012\u0006\u0010\u00d8\u00e9\u0097\u00a8\u0006\"\u000539232\u0012\u0011\b\u0006\u0012\u0006\u0010\u0086\u00ea\u0097\u00a8\u0006\"\u000539233\u0012\u0011\b\u0007\u0012\u0006\u0010\u00c4\u00ea\u0097\u00a8\u0006\"\u000539234\u0012\u0011\b\b\u0012\u0006\u0010\u00e0\u00ea\u0097\u00a8\u0006\"\u000539235\u0012\u0011\b\t\u0012\u0006\u0010\u00c1\u00eb\u0097\u00a8\u0006\"\u000537044\u0012\u0011\b\n\u0012\u0006\u0010\u00e6\u00eb\u0097\u00a8\u0006\"\u000537045\u0012\u0011\b\u000b\u0012\u0006\u0010\u00bc\u00ec\u0097\u00a8\u0006\"\u000537046\u0012\u0011\b\f\u0012\u0006\u0010\u00e3\u00ec\u0097\u00a8\u0006\"\u000537047\u0012\u0011\b\r\u0012\u0006\u0010\u008c\u00ed\u0097\u00a8\u0006\"\u000537048\u0012\u0011\b\u000e\u0012\u0006\u0010\u00b1\u00ed\u0097\u00a8\u0006\"\u000542431\u0012\u0011\b\u000f\u0012\u0006\u0010\u00c1\u00ed\u0097\u00a8\u0006\"\u000542432\u0012\u0011\b\u0010\u0012\u0006\u0010\u00fb\u00ed\u0097\u00a8\u0006\"\u000537578\u0012\u0011\b\u0011\u0012\u0006\u0010\u009b\u00ee\u0097\u00a8\u0006\"\u000539660\u0012\u0011\b\u0012\u0012\u0006\u0010\u00be\u00ee\u0097\u00a8\u0006\"\u000539659\u0012\u0011\b\u0013\u0012\u0006\u0010\u00ea\u00ee\u0097\u00a8\u0006\"\u000537581\u0012\u0011\b\u0014\u0012\u0006\u0010\u00fe\u00ee\u0097\u00a8\u0006\"\u000537436\u0012\u0011\b\u0015\u0012\u0006\u0010\u00c0\u00ef\u0097\u00a8\u0006\"\u000549135\u0012\u0011\b\u0016\u0012\u0006\u0010\u00e8\u00ef\u0097\u00a8\u0006\"\u000549136\u0012\u0011\b\u0017\u0012\u0006\u0010\u00af\u00f0\u0097\u00a8\u0006\"\u000549137\u0012\u0011\b\u0018\u0012\u0006\u0010\u00c5\u00f0\u0097\u00a8\u0006\"\u000549138\u0012\u0011\b\u0019\u0012\u0006\u0010\u00d5\u00f0\u0097\u00a8\u0006\"\u000549139\u0012\u0011\b\u001a\u0012\u0006\u0010\u00fc\u00f0\u0097\u00a8\u0006\"\u000549140\u0012\u0011\b\u001b\u0012\u0006\u0010\u00a0\u00f1\u0097\u00a8\u0006\"\u000549141\u0012\u0011\b\u001c\u0012\u0006\u0010\u00c6\u00f1\u0097\u00a8\u0006\"\u000549142\u0012\u0011\b\u001d\u0012\u0006\u0010\u00e9\u00f1\u0097\u00a8\u0006\"\u000549143\u0012\u0011\b\u001e\u0012\u0006\u0010\u0082\u00f2\u0097\u00a8\u0006\"\u000538506\u0012\u0011\b\u001f\u0012\u0006\u0010\u00b2\u00f2\u0097\u00a8\u0006\"\u000538635\u0012\u0011\b \u0012\u0006\u0010\u00db\u00f2\u0097\u00a8\u0006\"\u000538509\u0012\u0011\b!\u0012\u0006\u0010\u00fd\u00f2\u0097\u00a8\u0006\"\u000538642\u0012\u0011\b\"\u0012\u0006\u0010\u00a8\u00f3\u0097\u00a8\u0006\"\u000539795\u0012\u0011\b#\u0012\u0006\u0010\u00c8\u00f3\u0097\u00a8\u0006\"\u000538502\u0012\u0011\b$\u0012\u0006\u0010\u00a6\u00f5\u0097\u00a8\u0006\"\u000535691\u0012\u0011\b%\u0012\u0006\u0010\u00c6\u00f5\u0097\u00a8\u0006\"\u000535692\u0012\u0011\b&\u0012\u0006\u0010\u0083\u00f6\u0097\u00a8\u0006\"\u000535693\u0012\u0011\b'\u0012\u0006\u0010\u00c3\u00f6\u0097\u00a8\u0006\"\u000535694\u0012\u0011\b(\u0012\u0006\u0010\u00c5\u00f6\u0097\u00a8\u0006\"\u000549318\u0012\u0011\b)\u0012\u0006\u0010\u00df\u00f6\u0097\u00a8\u0006\"\u000535695\u0012\u0011\b*\u0012\u0006\u0010\u00ce\u00f7\u0097\u00a8\u0006\"\u000535696\u0012\u0011\b+\u0012\u0006\u0010\u0085\u00f9\u0097\u00a8\u0006\"\u000535697\u0012\u0011\b,\u0012\u0006\u0010\u00ef\u00f9\u0097\u00a8\u0006\"\u00052-Jan\u0012\u0011\b-\u0012\u0006\u0010\u0093\u00fa\u0097\u00a8\u0006\"\u000542460\u0012\u0011\b.\u0012\u0006\u0010\u00bf\u00fa\u0097\u00a8\u0006\"\u000535690\u0012\u0011\b/\u0012\u0006\u0010\u00ae\u00fb\u0097\u00a8\u0006\"\u000535700\u0012\u0011\b0\u0012\u0006\u0010\u00d0\u00fb\u0097\u00a8\u0006\"\u000535701\u0012\u0011\b1\u0012\u0006\u0010\u009c\u00fc\u0097\u00a8\u0006\"\u000535703\u0012\u0011\b2\u0012\u0006\u0010\u00af\u00fc\u0097\u00a8\u0006\"\u000535704\u0012\u0011\b3\u0012\u0006\u0010\u00c9\u00fc\u0097\u00a8\u0006\"\u000535705\u0012\u0011\b4\u0012\u0006\u0010\u00df\u00fc\u0097\u00a8\u0006\"\u000535706\u0012\u0011\b5\u0012\u0006\u0010\u00a2\u00fd\u0097\u00a8\u0006\"\u000535707\u0012\u0011\b6\u0012\u0006\u0010\u00c1\u00fd\u0097\u00a8\u0006\"\u000535708\u0012\u0011\b7\u0012\u0006\u0010\u0093\u00fe\u0097\u00a8\u0006\"\u000538520\u0012\u0011\b8\u0012\u0006\u0010\u00c6\u00fe\u0097\u00a8\u0006\"\u000538521\u0012\u0011\b9\u0012\u0006\u0010\u0085\u00ff\u0097\u00a8\u0006\"\u000538522\u0012\u0011\b:\u0012\u0006\u0010\u00c6\u00ff\u0097\u00a8\u0006\"\u000538523\u0012\u0011\b;\u0012\u0006\u0010\u008b\u0080\u0098\u00a8\u0006\"\u000538524\u0012\u0011\b<\u0012\u0006\u0010\u00cd\u0080\u0098\u00a8\u0006\"\u000538525\u0012\u0011\b=\u0012\u0006\u0010\u0094\u0081\u0098\u00a8\u0006\"\u000538526\u0012\u0011\b>\u0012\u0006\u0010\u00d5\u0081\u0098\u00a8\u0006\"\u000539987\u0012\u0011\b?\u0012\u0006\u0010\u0091\u0082\u0098\u00a8\u0006\"\u000539988\u0012\u0011\b@\u0012\u0006\u0010\u00d7\u0082\u0098\u00a8\u0006\"\u000537636\u0012\u0011\bA\u0012\u0006\u0010\u00fc\u0083\u0098\u00a8\u0006\"\u000537637\u0012\u0011\bB\u0012\u0006\u0010\u00db\u0084\u0098\u00a8\u0006\"\u000537639\u0012\u0011\bC\u0012\u0006\u0010\u0095\u0085\u0098\u00a8\u0006\"\u000539200\u0012\u0011\bD\u0012\u0006\u0010\u0087\u0086\u0098\u00a8\u0006\"\u000540191\u0012\u0011\bE\u0012\u0006\u0010\u00c2\u0086\u0098\u00a8\u0006\"\u000540192\u0012\u0011\bF\u0012\u0006\u0010\u0080\u0087\u0098\u00a8\u0006\"\u000540193\u0012\u0011\bG\u0012\u0006\u0010\u00b9\u0087\u0098\u00a8\u0006\"\u000540194\u0012\u0011\bH\u0012\u0006\u0010\u00f3\u0087\u0098\u00a8\u0006\"\u000538024\u0012\u0011\bI\u0012\u0006\u0010\u00b9\u0088\u0098\u00a8\u0006\"\u000538025\u0012\u0011\bJ\u0012\u0006\u0010\u00eb\u0088\u0098\u00a8\u0006\"\u000538026\u0012\u0011\bK\u0012\u0006\u0010\u00a0\u0089\u0098\u00a8\u0006\"\u000538027\u0012\u0011\bL\u0012\u0006\u0010\u00b3\u0089\u0098\u00a8\u0006\"\u000538028\u0012\u0011\bM\u0012\u0006\u0010\u00cd\u0089\u0098\u00a8\u0006\"\u000538029\u0012\u0011\bN\u0012\u0006\u0010\u0082\u008a\u0098\u00a8\u0006\"\u000538030\u0012\u0011\bO\u0012\u0006\u0010\u00d9\u008b\u0098\u00a8\u0006\"\u000539214\u0012\u0011\bP\u0012\u0006\u0010\u00c8\u008c\u0098\u00a8\u0006\"\u000539215\u0012\u0014\bQ\u0012\u0006\u0010\u00b9\u008e\u0098\u00a8\u0006\"\b16027103\u0012\u0013\bR\u0012\u0006\u0010\u00fe\u0090\u0098\u00a8\u0006\"\u00074950739\u0012\u0011\bS\u0012\u0006\u0010\u00f4\u0092\u0098\u00a8\u0006\"\u000595000\u0012\u0011\bT\u0012\u0006\u0010\u0088\u0095\u0098\u00a8\u0006\"\u000540978\u0012\u0014\bU\u0012\u0006\u0010\u00b6\u0096\u0098\u00a8\u0006\"\b16206052\u0012\u0011\bV\u0012\u0006\u0010\u00c2\u0097\u0098\u00a8\u0006\"\u000539220\u0012\u0011\bW\u0012\u0006\u0010\u009f\u0098\u0098\u00a8\u0006\"\u000539221\u0012\u0014\bX\u0012\u0006\u0010\u00c4\u0098\u0098\u00a8\u0006\"\b16201786\u0012\u0014\bY\u0012\u0006\u0010\u00a3\u0099\u0098\u00a8\u0006\"\b16206050\u0012\u0011\bZ\u0012\u0006\u0010\u00eb\u009b\u0098\u00a8\u0006\"\u000539568\u0012\u0011\b[\u0012\u0006\u0010\u0082\u009d\u0098\u00a8\u0006\"\u000539567\u0012\u0011\b\\\u0012\u0006\u0010\u00e0\u009d\u0098\u00a8\u0006\"\u000539224\u0012\u0014\b]\u0012\u0006\u0010\u00f9\u009e\u0098\u00a8\u0006\"\b16201788\u0012\u0011\b^\u0012\u0006\u0010\u00b9\u009f\u0098\u00a8\u0006\"\u000539225\u0012\u0011\b_\u0012\u0006\u0010\u00b0\u00a3\u0098\u00a8\u0006\"\u000537300\u001a\b\u001a\u0006DVYT25 \u00c9\u00e8\u0097\u00a8\u0006\"`\n/\n\u001023568-701ff27f-2\u0012\b15:31:00\u001a\b20230916 \u0000*\u00036110\u0001\u0012\u001d\rd*\u0013\u00c2\u0015\u00c19\u0092\u00c2\u001d\u0000\u0080\u00a1C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00ab\u00aa\u00ba@(\u00c9\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DVYT25" + }, + { + "type": "con_recorrido", + "entity": "\n$9528b1cc-c410-429a-834e-8db9e3e9e6e5\u001a\u00b8\u0002\n/\n\u001023478-701ff27f-2\u0012\b14:24:00\u001a\b20230916 \u0000*\u00036110\u0000\u0012\u0011\bQ\u0012\u0006\u0010\u00e7\u00e9\u0097\u00a8\u0006\"\u000542523\u0012\u0011\bR\u0012\u0006\u0010\u0088\u00ea\u0097\u00a8\u0006\"\u000542524\u0012\u0011\bS\u0012\u0006\u0010\u00ba\u00ea\u0097\u00a8\u0006\"\u000539686\u0012\u0011\bT\u0012\u0006\u0010\u00c7\u00ea\u0097\u00a8\u0006\"\u000539687\u0012\u0011\bU\u0012\u0006\u0010\u008a\u00eb\u0097\u00a8\u0006\"\u000539689\u0012\u0011\bV\u0012\u0006\u0010\u00a2\u00eb\u0097\u00a8\u0006\"\u000539690\u0012\u0011\bW\u0012\u0006\u0010\u00b6\u00eb\u0097\u00a8\u0006\"\u000539691\u0012\u0011\bX\u0012\u0006\u0010\u00d3\u00eb\u0097\u00a8\u0006\"\u000539692\u0012\u0011\bY\u0012\u0006\u0010\u00e6\u00eb\u0097\u00a8\u0006\"\u000539693\u0012\u0011\bZ\u0012\u0006\u0010\u00be\u00ec\u0097\u00a8\u0006\"\u000536695\u0012\u0011\b[\u0012\u0006\u0010\u00f0\u00ec\u0097\u00a8\u0006\"\u000536696\u0012\u0011\b\\\u0012\u0006\u0010\u00b0\u00ed\u0097\u00a8\u0006\"\u000539229\u0012\u0011\b]\u0012\u0006\u0010\u0096\u00ee\u0097\u00a8\u0006\"\u000539139\u001a\b\u001a\u0006FKWB38 \u00cd\u00e8\u0097\u00a8\u0006\"`\n/\n\u001023478-701ff27f-2\u0012\b14:24:00\u001a\b20230916 \u0000*\u00036110\u0000\u0012\u001d\r\u008b%\u0013\u00c2\u0015\\4\u0092\u00c2\u001d\u0000\u0080\u0085C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00c7qtA(\u00cd\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FKWB38" + }, + { + "type": "con_recorrido", + "entity": "\n$eefe97c3-18a3-4f4d-9d2b-850b9573a415\u001a\u00a9\u0007\n/\n\u001023565-701ff27f-2\u0012\b14:46:00\u001a\b20230916 \u0000*\u00036110\u0001\u0012\u0011\b3\u0012\u0006\u0010\u00c8\u00e8\u0097\u00a8\u0006\"\u000535705\u0012\u0011\b4\u0012\u0006\u0010\u00dd\u00e8\u0097\u00a8\u0006\"\u000535706\u0012\u0011\b5\u0012\u0006\u0010\u0098\u00e9\u0097\u00a8\u0006\"\u000535707\u0012\u0011\b6\u0012\u0006\u0010\u00b2\u00e9\u0097\u00a8\u0006\"\u000535708\u0012\u0011\b7\u0012\u0006\u0010\u00f8\u00e9\u0097\u00a8\u0006\"\u000538520\u0012\u0011\b8\u0012\u0006\u0010\u00a2\u00ea\u0097\u00a8\u0006\"\u000538521\u0012\u0011\b9\u0012\u0006\u0010\u00d5\u00ea\u0097\u00a8\u0006\"\u000538522\u0012\u0011\b:\u0012\u0006\u0010\u0088\u00eb\u0097\u00a8\u0006\"\u000538523\u0012\u0011\b;\u0012\u0006\u0010\u00bd\u00eb\u0097\u00a8\u0006\"\u000538524\u0012\u0011\b<\u0012\u0006\u0010\u00ee\u00eb\u0097\u00a8\u0006\"\u000538525\u0012\u0011\b=\u0012\u0006\u0010\u00a3\u00ec\u0097\u00a8\u0006\"\u000538526\u0012\u0011\b>\u0012\u0006\u0010\u00d1\u00ec\u0097\u00a8\u0006\"\u000539987\u0012\u0011\b?\u0012\u0006\u0010\u00fb\u00ec\u0097\u00a8\u0006\"\u000539988\u0012\u0011\b@\u0012\u0006\u0010\u00ab\u00ed\u0097\u00a8\u0006\"\u000537636\u0012\u0011\bA\u0012\u0006\u0010\u0099\u00ee\u0097\u00a8\u0006\"\u000537637\u0012\u0011\bB\u0012\u0006\u0010\u00d5\u00ee\u0097\u00a8\u0006\"\u000537639\u0012\u0011\bC\u0012\u0006\u0010\u00f9\u00ee\u0097\u00a8\u0006\"\u000539200\u0012\u0011\bD\u0012\u0006\u0010\u00be\u00ef\u0097\u00a8\u0006\"\u000540191\u0012\u0011\bE\u0012\u0006\u0010\u00e2\u00ef\u0097\u00a8\u0006\"\u000540192\u0012\u0011\bF\u0012\u0006\u0010\u0086\u00f0\u0097\u00a8\u0006\"\u000540193\u0012\u0011\bG\u0012\u0006\u0010\u00a6\u00f0\u0097\u00a8\u0006\"\u000540194\u0012\u0011\bH\u0012\u0006\u0010\u00c7\u00f0\u0097\u00a8\u0006\"\u000538024\u0012\u0011\bI\u0012\u0006\u0010\u00ee\u00f0\u0097\u00a8\u0006\"\u000538025\u0012\u0011\bJ\u0012\u0006\u0010\u0089\u00f1\u0097\u00a8\u0006\"\u000538026\u0012\u0011\bK\u0012\u0006\u0010\u00a5\u00f1\u0097\u00a8\u0006\"\u000538027\u0012\u0011\bL\u0012\u0006\u0010\u00b0\u00f1\u0097\u00a8\u0006\"\u000538028\u0012\u0011\bM\u0012\u0006\u0010\u00be\u00f1\u0097\u00a8\u0006\"\u000538029\u0012\u0011\bN\u0012\u0006\u0010\u00d9\u00f1\u0097\u00a8\u0006\"\u000538030\u0012\u0011\bO\u0012\u0006\u0010\u00c6\u00f2\u0097\u00a8\u0006\"\u000539214\u0012\u0011\bP\u0012\u0006\u0010\u00fd\u00f2\u0097\u00a8\u0006\"\u000539215\u0012\u0014\bQ\u0012\u0006\u0010\u00ee\u00f3\u0097\u00a8\u0006\"\b16027103\u0012\u0013\bR\u0012\u0006\u0010\u00fd\u00f4\u0097\u00a8\u0006\"\u00074950739\u0012\u0011\bS\u0012\u0006\u0010\u00e4\u00f5\u0097\u00a8\u0006\"\u000595000\u0012\u0011\bT\u0012\u0006\u0010\u00d0\u00f6\u0097\u00a8\u0006\"\u000540978\u0012\u0014\bU\u0012\u0006\u0010\u0092\u00f7\u0097\u00a8\u0006\"\b16206052\u0012\u0011\bV\u0012\u0006\u0010\u00c5\u00f7\u0097\u00a8\u0006\"\u000539220\u0012\u0011\bW\u0012\u0006\u0010\u00e7\u00f7\u0097\u00a8\u0006\"\u000539221\u0012\u0014\bX\u0012\u0006\u0010\u00f4\u00f7\u0097\u00a8\u0006\"\b16201786\u0012\u0014\bY\u0012\u0006\u0010\u0095\u00f8\u0097\u00a8\u0006\"\b16206050\u0012\u0011\bZ\u0012\u0006\u0010\u0084\u00f9\u0097\u00a8\u0006\"\u000539568\u0012\u0011\b[\u0012\u0006\u0010\u00b6\u00f9\u0097\u00a8\u0006\"\u000539567\u0012\u0011\b\\\u0012\u0006\u0010\u00d4\u00f9\u0097\u00a8\u0006\"\u000539224\u0012\u0014\b]\u0012\u0006\u0010\u0083\u00fa\u0097\u00a8\u0006\"\b16201788\u0012\u0011\b^\u0012\u0006\u0010\u0097\u00fa\u0097\u00a8\u0006\"\u000539225\u0012\u0011\b_\u0012\u0006\u0010\u00ab\u00fb\u0097\u00a8\u0006\"\u000537300\u001a\b\u001a\u0006FYBV86 \u00bb\u00e8\u0097\u00a8\u0006\"`\n/\n\u001023565-701ff27f-2\u0012\b14:46:00\u001a\b20230916 \u0000*\u00036110\u0001\u0012\u001d\raK\u0013\u00c2\u0015V\u0019\u0092\u00c2\u001d\u0000\u0000\fB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00bb\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FYBV86" + }, + { + "type": "con_recorrido", + "entity": "\n$f748490d-bced-467e-a035-96facadeb767\u001a\u00ed\u0005\n/\n\u001023479-701ff27f-2\u0012\b14:36:00\u001a\b20230916 \u0000*\u00036110\u0000\u0012\u0011\b:\u0012\u0006\u0010\u00f2\u00e8\u0097\u00a8\u0006\"\u000549311\u0012\u0011\b;\u0012\u0006\u0010\u00ad\u00e9\u0097\u00a8\u0006\"\u000539634\u0012\u0011\b<\u0012\u0006\u0010\u00c8\u00e9\u0097\u00a8\u0006\"\u000539635\u0012\u0011\b=\u0012\u0006\u0010\u00f9\u00e9\u0097\u00a8\u0006\"\u000539636\u0012\u0011\b>\u0012\u0006\u0010\u00b2\u00eb\u0097\u00a8\u0006\"\u000539637\u0012\u0011\b?\u0012\u0006\u0010\u00e4\u00eb\u0097\u00a8\u0006\"\u000549317\u0012\u0011\b@\u0012\u0006\u0010\u0084\u00ec\u0097\u00a8\u0006\"\u000549318\u0012\u0011\bA\u0012\u0006\u0010\u00c6\u00ec\u0097\u00a8\u0006\"\u000549319\u0012\u0011\bB\u0012\u0006\u0010\u0085\u00ed\u0097\u00a8\u0006\"\u000539641\u0012\u0011\bC\u0012\u0006\u0010\u00b8\u00ee\u0097\u00a8\u0006\"\u000539643\u0012\u0011\bD\u0012\u0006\u0010\u00b9\u00ef\u0097\u00a8\u0006\"\u000549325\u0012\u0011\bE\u0012\u0006\u0010\u00f6\u00ef\u0097\u00a8\u0006\"\u000549326\u0012\u0011\bF\u0012\u0006\u0010\u008f\u00f0\u0097\u00a8\u0006\"\u000539648\u0012\u0011\bG\u0012\u0006\u0010\u00be\u00f0\u0097\u00a8\u0006\"\u000539649\u0012\u0011\bH\u0012\u0006\u0010\u00ef\u00f0\u0097\u00a8\u0006\"\u000549329\u0012\u0011\bI\u0012\u0006\u0010\u00a5\u00f1\u0097\u00a8\u0006\"\u000549330\u0012\u0011\bJ\u0012\u0006\u0010\u00cb\u00f1\u0097\u00a8\u0006\"\u000539652\u0012\u0011\bK\u0012\u0006\u0010\u00e6\u00f1\u0097\u00a8\u0006\"\u000539653\u0012\u0011\bL\u0012\u0006\u0010\u0086\u00f2\u0097\u00a8\u0006\"\u000539654\u0012\u0011\bM\u0012\u0006\u0010\u00a2\u00f2\u0097\u00a8\u0006\"\u000549334\u0012\u0011\bN\u0012\u0006\u0010\u00de\u00f2\u0097\u00a8\u0006\"\u000549335\u0012\u0011\bO\u0012\u0006\u0010\u008b\u00f3\u0097\u00a8\u0006\"\u000549336\u0012\u0011\bP\u0012\u0006\u0010\u00bc\u00f3\u0097\u00a8\u0006\"\u000539657\u0012\u0011\bQ\u0012\u0006\u0010\u00cf\u00f4\u0097\u00a8\u0006\"\u000542523\u0012\u0011\bR\u0012\u0006\u0010\u00ef\u00f4\u0097\u00a8\u0006\"\u000542524\u0012\u0011\bS\u0012\u0006\u0010\u009f\u00f5\u0097\u00a8\u0006\"\u000539686\u0012\u0011\bT\u0012\u0006\u0010\u00ac\u00f5\u0097\u00a8\u0006\"\u000539687\u0012\u0011\bU\u0012\u0006\u0010\u00ee\u00f5\u0097\u00a8\u0006\"\u000539689\u0012\u0011\bV\u0012\u0006\u0010\u0086\u00f6\u0097\u00a8\u0006\"\u000539690\u0012\u0011\bW\u0012\u0006\u0010\u009a\u00f6\u0097\u00a8\u0006\"\u000539691\u0012\u0011\bX\u0012\u0006\u0010\u00b8\u00f6\u0097\u00a8\u0006\"\u000539692\u0012\u0011\bY\u0012\u0006\u0010\u00cb\u00f6\u0097\u00a8\u0006\"\u000539693\u0012\u0011\bZ\u0012\u0006\u0010\u00a6\u00f7\u0097\u00a8\u0006\"\u000536695\u0012\u0011\b[\u0012\u0006\u0010\u00db\u00f7\u0097\u00a8\u0006\"\u000536696\u0012\u0011\b\\\u0012\u0006\u0010\u009f\u00f8\u0097\u00a8\u0006\"\u000539229\u0012\u0011\b]\u0012\u0006\u0010\u008e\u00f9\u0097\u00a8\u0006\"\u000539139\u001a\b\u001a\u0006SHZL49 \u00cc\u00e8\u0097\u00a8\u0006\"`\n/\n\u001023479-701ff27f-2\u0012\b14:36:00\u001a\b20230916 \u0000*\u00036110\u0000\u0012\u001d\r_P\u0013\u00c2\u0015\u00d3\u001d\u0092\u00c2\u001d\u0000\u0000sC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-r\u001c\u0017A(\u00cc\u00e8\u0097\u00a8\u0006B\b\u001a\u0006SHZL49" + }, + { + "type": "con_recorrido", + "entity": "\n$d212bba4-70d6-471f-9824-105dfcd33249\u001a\u00d9\b\n/\n\u001023633-701ff27f-2\u0012\b15:21:00\u001a\b20230916 \u0000*\u00036120\u0001\u0012\u0011\b\u0001\u0012\u0006\u0010\u00b0\u00e8\u0097\u00a8\u0006\"\u000549299\u0012\u0011\b\u0002\u0012\u0006\u0010\u00de\u00e8\u0097\u00a8\u0006\"\u000549300\u0012\u0011\b\u0003\u0012\u0006\u0010\u00b6\u00e9\u0097\u00a8\u0006\"\u000549301\u0012\u0011\b\u0004\u0012\u0006\u0010\u00fd\u00e9\u0097\u00a8\u0006\"\u000549302\u0012\u0011\b\u0005\u0012\u0006\u0010\u00ac\u00ea\u0097\u00a8\u0006\"\u000549303\u0012\u0011\b\u0006\u0012\u0006\u0010\u00e1\u00ea\u0097\u00a8\u0006\"\u000549304\u0012\u0011\b\u0007\u0012\u0006\u0010\u00fd\u00ea\u0097\u00a8\u0006\"\u000549305\u0012\u0011\b\b\u0012\u0006\u0010\u00b7\u00eb\u0097\u00a8\u0006\"\u000549306\u0012\u0011\b\t\u0012\u0006\u0010\u00df\u00eb\u0097\u00a8\u0006\"\u000549307\u0012\u0011\b\n\u0012\u0006\u0010\u00f7\u00eb\u0097\u00a8\u0006\"\u000549308\u0012\u0011\b\u000b\u0012\u0006\u0010\u008f\u00ec\u0097\u00a8\u0006\"\u000549309\u0012\u0011\b\f\u0012\u0006\u0010\u00d1\u00ec\u0097\u00a8\u0006\"\u000549310\u0012\u0011\b\r\u0012\u0006\u0010\u00f2\u00ec\u0097\u00a8\u0006\"\u000549311\u0012\u0011\b\u000e\u0012\u0006\u0010\u00d6\u00ed\u0097\u00a8\u0006\"\u000535700\u0012\u0011\b\u000f\u0012\u0006\u0010\u00f2\u00ed\u0097\u00a8\u0006\"\u000535701\u0012\u0011\b\u0010\u0012\u0006\u0010\u00b2\u00ee\u0097\u00a8\u0006\"\u000535703\u0012\u0011\b\u0011\u0012\u0006\u0010\u00c1\u00ee\u0097\u00a8\u0006\"\u000535704\u0012\u0011\b\u0012\u0012\u0006\u0010\u00d7\u00ee\u0097\u00a8\u0006\"\u000535705\u0012\u0011\b\u0013\u0012\u0006\u0010\u00e9\u00ee\u0097\u00a8\u0006\"\u000535706\u0012\u0011\b\u0014\u0012\u0006\u0010\u00b6\u00ef\u0097\u00a8\u0006\"\u000549535\u0012\u0011\b\u0016\u0012\u0006\u0010\u00e8\u00ef\u0097\u00a8\u0006\"\u000549536\u0012\u0011\b\u0017\u0012\u0006\u0010\u0096\u00f0\u0097\u00a8\u0006\"\u000549537\u0012\u0011\b\u0018\u0012\u0006\u0010\u00cb\u00f0\u0097\u00a8\u0006\"\u000539492\u0012\u0011\b\u0019\u0012\u0006\u0010\u00fb\u00f0\u0097\u00a8\u0006\"\u000539493\u0012\u0011\b\u001a\u0012\u0006\u0010\u00e3\u00f1\u0097\u00a8\u0006\"\u000538525\u0012\u0011\b\u001b\u0012\u0006\u0010\u0095\u00f2\u0097\u00a8\u0006\"\u000538526\u0012\u0011\b\u001c\u0012\u0006\u0010\u00c3\u00f2\u0097\u00a8\u0006\"\u000539987\u0012\u0011\b\u001d\u0012\u0006\u0010\u00ed\u00f2\u0097\u00a8\u0006\"\u000539988\u0012\u0011\b\u001e\u0012\u0006\u0010\u009d\u00f3\u0097\u00a8\u0006\"\u000539516\u0012\u0011\b\u001f\u0012\u0006\u0010\u00c9\u00f3\u0097\u00a8\u0006\"\u000539517\u0012\u0011\b \u0012\u0006\u0010\u00f3\u00f3\u0097\u00a8\u0006\"\u000539518\u0012\u0011\b!\u0012\u0006\u0010\u00b9\u00f4\u0097\u00a8\u0006\"\u000539519\u0012\u0011\b\"\u0012\u0006\u0010\u00c8\u00f4\u0097\u00a8\u0006\"\u000539520\u0012\u0011\b#\u0012\u0006\u0010\u00de\u00f4\u0097\u00a8\u0006\"\u000539521\u0012\u0011\b$\u0012\u0006\u0010\u00fc\u00f4\u0097\u00a8\u0006\"\u000539708\u0012\u0011\b%\u0012\u0006\u0010\u0085\u00f5\u0097\u00a8\u0006\"\u000539522\u0012\u0011\b&\u0012\u0006\u0010\u00a1\u00f5\u0097\u00a8\u0006\"\u000539523\u0012\u0011\b'\u0012\u0006\u0010\u00b7\u00f5\u0097\u00a8\u0006\"\u000539524\u0012\u0011\b(\u0012\u0006\u0010\u00d5\u00f5\u0097\u00a8\u0006\"\u000539705\u0012\u0011\b)\u0012\u0006\u0010\u00f0\u00f5\u0097\u00a8\u0006\"\u000539763\u0012\u0011\b*\u0012\u0006\u0010\u009d\u00f6\u0097\u00a8\u0006\"\u000539764\u0012\u0011\b+\u0012\u0006\u0010\u00c2\u00f6\u0097\u00a8\u0006\"\u000539765\u0012\u0011\b,\u0012\u0006\u0010\u00da\u00f6\u0097\u00a8\u0006\"\u000539529\u0012\u0011\b-\u0012\u0006\u0010\u009b\u00f7\u0097\u00a8\u0006\"\u000539530\u0012\u0011\b.\u0012\u0006\u0010\u00d6\u00f7\u0097\u00a8\u0006\"\u000539531\u0012\u0011\b/\u0012\u0006\u0010\u0088\u00f8\u0097\u00a8\u0006\"\u000539532\u0012\u0011\b0\u0012\u0006\u0010\u009f\u00f8\u0097\u00a8\u0006\"\u000539533\u0012\u0011\b1\u0012\u0006\u0010\u00fa\u00f8\u0097\u00a8\u0006\"\u000539535\u0012\u0011\b2\u0012\u0006\u0010\u00d2\u00f9\u0097\u00a8\u0006\"\u000539536\u0012\u0014\b3\u0012\u0006\u0010\u00f8\u00f9\u0097\u00a8\u0006\"\b16206048\u0012\u0011\b4\u0012\u0006\u0010\u008f\u00fa\u0097\u00a8\u0006\"\u000539537\u0012\u0011\b5\u0012\u0006\u0010\u00a2\u00fa\u0097\u00a8\u0006\"\u000540192\u0012\u0011\b6\u0012\u0006\u0010\u00c2\u00fa\u0097\u00a8\u0006\"\u000539429\u0012\u0011\b7\u0012\u0006\u0010\u00ea\u00fa\u0097\u00a8\u0006\"\u000539430\u0012\u0011\b8\u0012\u0006\u0010\u0082\u00fb\u0097\u00a8\u0006\"\u000537300\u001a\b\u001a\u0006CHHC77 \u00ac\u00e8\u0097\u00a8\u0006\"`\n/\n\u001023633-701ff27f-2\u0012\b15:21:00\u001a\b20230916 \u0000*\u00036120\u0001\u0012\u001d\r\u0088i\u0013\u00c2\u0015\u00c5\u0019\u0092\u00c2\u001d\u0000\u0000\u00aeC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008e\u00e3x@(\u00ac\u00e8\u0097\u00a8\u0006B\b\u001a\u0006CHHC77" + }, + { + "type": "con_recorrido", + "entity": "\n$0132290a-ca05-459d-923a-be5b363f1f4a\u001a\u00ad\u0003\n/\n\u001023700-701ff27f-2\u0012\b15:15:00\u001a\b20230916 \u0000*\u00036120\u0000\u0012\u0011\b#\u0012\u0006\u0010\u00cd\u00e8\u0097\u00a8\u0006\"\u000591027\u0012\u0011\b$\u0012\u0006\u0010\u0084\u00e9\u0097\u00a8\u0006\"\u000591028\u0012\u0011\b%\u0012\u0006\u0010\u00bf\u00e9\u0097\u00a8\u0006\"\u000539723\u0012\u0011\b&\u0012\u0006\u0010\u00f5\u00e9\u0097\u00a8\u0006\"\u000539724\u0012\u0011\b'\u0012\u0006\u0010\u00c0\u00ea\u0097\u00a8\u0006\"\u000539725\u0012\u0011\b(\u0012\u0006\u0010\u00c1\u00eb\u0097\u00a8\u0006\"\u000539624\u0012\u0011\b)\u0012\u0006\u0010\u009e\u00ec\u0097\u00a8\u0006\"\u000539627\u0012\u0011\b*\u0012\u0006\u0010\u0082\u00ed\u0097\u00a8\u0006\"\u000539631\u0012\u0014\b+\u0012\u0006\u0010\u00b6\u00ed\u0097\u00a8\u0006\"\b16057337\u0012\u0011\b,\u0012\u0006\u0010\u00d3\u00ed\u0097\u00a8\u0006\"\u000539726\u0012\u0011\b-\u0012\u0006\u0010\u00df\u00ed\u0097\u00a8\u0006\"\u00052-Mar\u0012\u0011\b.\u0012\u0006\u0010\u00b8\u00ee\u0097\u00a8\u0006\"\u00052-Apr\u0012\u0011\b/\u0012\u0006\u0010\u00f0\u00ee\u0097\u00a8\u0006\"\u000539728\u0012\u0011\b0\u0012\u0006\u0010\u00cf\u00ef\u0097\u00a8\u0006\"\u000539729\u0012\u0011\b1\u0012\u0006\u0010\u00e7\u00ef\u0097\u00a8\u0006\"\u000539730\u0012\u0011\b2\u0012\u0006\u0010\u00cb\u00f0\u0097\u00a8\u0006\"\u000542200\u0012\u0011\b3\u0012\u0006\u0010\u00f8\u00f0\u0097\u00a8\u0006\"\u000542203\u0012\u0011\b4\u0012\u0006\u0010\u00ac\u00f1\u0097\u00a8\u0006\"\u000542204\u0012\u0011\b5\u0012\u0006\u0010\u00d4\u00f1\u0097\u00a8\u0006\"\u000542205\u001a\b\u001a\u0006YG5853 \u00c8\u00e8\u0097\u00a8\u0006\"`\n/\n\u001023700-701ff27f-2\u0012\b15:15:00\u001a\b20230916 \u0000*\u00036120\u0000\u0012\u001d\r\u0015D\u0013\u00c2\u0015\u00ca\u001c\u0092\u00c2\u001d\u0000\u0000\u001aC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u000e?(\u00c8\u00e8\u0097\u00a8\u0006B\b\u001a\u0006YG5853" + }, + { + "type": "con_recorrido", + "entity": "\n$321823d0-1048-40ae-9a31-11df019382ae\u001a\u00ec\u000e\n/\n\u001023776-701ff27f-2\u0012\b15:16:00\u001a\b20230916 \u0000*\u00036130\u0000\u0012\u0011\b\t\u0012\u0006\u0010\u00ba\u00e8\u0097\u00a8\u0006\"\u000542246\u0012\u0011\b\n\u0012\u0006\u0010\u00eb\u00e8\u0097\u00a8\u0006\"\u000538779\u0012\u0011\b\u000b\u0012\u0006\u0010\u00a4\u00e9\u0097\u00a8\u0006\"\u000542247\u0012\u0011\b\f\u0012\u0006\u0010\u00d4\u00e9\u0097\u00a8\u0006\"\u000542248\u0012\u0011\b\r\u0012\u0006\u0010\u00f4\u00e9\u0097\u00a8\u0006\"\u000538782\u0012\u0011\b\u000e\u0012\u0006\u0010\u00e7\u00ea\u0097\u00a8\u0006\"\u000542249\u0012\u0011\b\u000f\u0012\u0006\u0010\u008f\u00ec\u0097\u00a8\u0006\"\u000542250\u0012\u0011\b\u0010\u0012\u0006\u0010\u00dc\u00ec\u0097\u00a8\u0006\"\u000538630\u0012\u0011\b\u0011\u0012\u0006\u0010\u009b\u00ed\u0097\u00a8\u0006\"\u000542252\u0012\u0011\b\u0012\u0012\u0006\u0010\u00b9\u00ed\u0097\u00a8\u0006\"\u000542253\u0012\u0011\b\u0013\u0012\u0006\u0010\u00e3\u00ed\u0097\u00a8\u0006\"\u000542254\u0012\u0011\b\u0014\u0012\u0006\u0010\u0087\u00ee\u0097\u00a8\u0006\"\u000542255\u0012\u0011\b\u0015\u0012\u0006\u0010\u00a5\u00ee\u0097\u00a8\u0006\"\u000542256\u0012\u0011\b\u0016\u0012\u0006\u0010\u00b8\u00ee\u0097\u00a8\u0006\"\u000542257\u0012\u0011\b\u0017\u0012\u0006\u0010\u00cd\u00ee\u0097\u00a8\u0006\"\u000542258\u0012\u0011\b\u0018\u0012\u0006\u0010\u00e8\u00ee\u0097\u00a8\u0006\"\u000542259\u0012\u0011\b\u0019\u0012\u0006\u0010\u0098\u00ef\u0097\u00a8\u0006\"\u000542260\u0012\u0011\b\u001a\u0012\u0006\u0010\u00bf\u00ef\u0097\u00a8\u0006\"\u000542261\u0012\u0011\b\u001b\u0012\u0006\u0010\u0088\u00f0\u0097\u00a8\u0006\"\u000538659\u0012\u0011\b\u001c\u0012\u0006\u0010\u00a0\u00f1\u0097\u00a8\u0006\"\u000538649\u0012\u0011\b\u001d\u0012\u0006\u0010\u00a4\u00f2\u0097\u00a8\u0006\"\u000538735\u0012\u0011\b\u001e\u0012\u0006\u0010\u00d9\u00f2\u0097\u00a8\u0006\"\u000542270\u0012\u0011\b\u001f\u0012\u0006\u0010\u0086\u00f3\u0097\u00a8\u0006\"\u000542271\u0012\u0011\b \u0012\u0006\u0010\u00c6\u00f4\u0097\u00a8\u0006\"\u000538688\u0012\u0011\b!\u0012\u0006\u0010\u00fe\u00f4\u0097\u00a8\u0006\"\u000538673\u0012\u0011\b\"\u0012\u0006\u0010\u00cb\u00f5\u0097\u00a8\u0006\"\u000539785\u0012\u0011\b#\u0012\u0006\u0010\u00f3\u00f5\u0097\u00a8\u0006\"\u000538664\u0012\u0011\b$\u0012\u0006\u0010\u00aa\u00f6\u0097\u00a8\u0006\"\u000538702\u0012\u0011\b%\u0012\u0006\u0010\u00d7\u00f6\u0097\u00a8\u0006\"\u000539787\u0012\u0011\b&\u0012\u0006\u0010\u0083\u00f7\u0097\u00a8\u0006\"\u000538501\u0012\u0011\b'\u0012\u0006\u0010\u00c8\u00f7\u0097\u00a8\u0006\"\u000538692\u0012\u0011\b(\u0012\u0006\u0010\u008b\u00f8\u0097\u00a8\u0006\"\u000538714\u0012\u0011\b)\u0012\u0006\u0010\u00c5\u00f8\u0097\u00a8\u0006\"\u000539791\u0012\u0011\b*\u0012\u0006\u0010\u00e1\u00f8\u0097\u00a8\u0006\"\u000538506\u0012\u0011\b+\u0012\u0006\u0010\u0099\u00f9\u0097\u00a8\u0006\"\u000538635\u0012\u0011\b,\u0012\u0006\u0010\u00be\u00f9\u0097\u00a8\u0006\"\u000538509\u0012\u0011\b-\u0012\u0006\u0010\u00ee\u00f9\u0097\u00a8\u0006\"\u000538642\u0012\u0011\b.\u0012\u0006\u0010\u009e\u00fa\u0097\u00a8\u0006\"\u000539795\u0012\u0011\b/\u0012\u0006\u0010\u00c5\u00fa\u0097\u00a8\u0006\"\u000538502\u0012\u0011\b0\u0012\u0006\u0010\u0089\u00fb\u0097\u00a8\u0006\"\u000538503\u0012\u0011\b1\u0012\u0006\u0010\u00c1\u00fc\u0097\u00a8\u0006\"\u000535691\u0012\u0011\b2\u0012\u0006\u0010\u00f3\u00fc\u0097\u00a8\u0006\"\u000535692\u0012\u0011\b3\u0012\u0006\u0010\u00ba\u00fd\u0097\u00a8\u0006\"\u000535693\u0012\u0011\b4\u0012\u0006\u0010\u00fd\u00fd\u0097\u00a8\u0006\"\u000535694\u0012\u0011\b5\u0012\u0006\u0010\u00b1\u00fe\u0097\u00a8\u0006\"\u000535695\u0012\u0011\b6\u0012\u0006\u0010\u00f2\u00fe\u0097\u00a8\u0006\"\u000535696\u0012\u0011\b7\u0012\u0006\u0010\u00d1\u0080\u0098\u00a8\u0006\"\u000535697\u0012\u0011\b8\u0012\u0006\u0010\u00f7\u0081\u0098\u00a8\u0006\"\u000539778\u0012\u0011\b9\u0012\u0006\u0010\u0091\u0083\u0098\u00a8\u0006\"\u000535797\u0012\u0011\b:\u0012\u0006\u0010\u00d7\u0083\u0098\u00a8\u0006\"\u000535798\u0012\u0011\b;\u0012\u0006\u0010\u0088\u0084\u0098\u00a8\u0006\"\u000535799\u0012\u0011\b<\u0012\u0006\u0010\u00f4\u0084\u0098\u00a8\u0006\"\u000535800\u0012\u0011\b=\u0012\u0006\u0010\u00c3\u0085\u0098\u00a8\u0006\"\u000535801\u0012\u0011\b>\u0012\u0006\u0010\u00ec\u0085\u0098\u00a8\u0006\"\u000535802\u0012\u0011\b?\u0012\u0006\u0010\u00be\u0086\u0098\u00a8\u0006\"\u000535803\u0012\u0011\b@\u0012\u0006\u0010\u0098\u0087\u0098\u00a8\u0006\"\u000538507\u0012\u0011\bA\u0012\u0006\u0010\u00ef\u0087\u0098\u00a8\u0006\"\u000534473\u0012\u0011\bB\u0012\u0006\u0010\u00bd\u0088\u0098\u00a8\u0006\"\u000538500\u0012\u0011\bC\u0012\u0006\u0010\u008f\u0089\u0098\u00a8\u0006\"\u000535808\u0012\u0011\bD\u0012\u0006\u0010\u00fb\u0089\u0098\u00a8\u0006\"\u000535710\u0012\u0011\bE\u0012\u0006\u0010\u00d0\u008a\u0098\u00a8\u0006\"\u000550036\u0012\u0011\bF\u0012\u0006\u0010\u00a4\u008e\u0098\u00a8\u0006\"\u000550037\u0012\u0011\bG\u0012\u0006\u0010\u00e9\u0090\u0098\u00a8\u0006\"\u000550038\u0012\u0011\bH\u0012\u0006\u0010\u00a2\u0092\u0098\u00a8\u0006\"\u000550039\u0012\u0011\bI\u0012\u0006\u0010\u00a6\u0093\u0098\u00a8\u0006\"\u000550040\u0012\u0011\bJ\u0012\u0006\u0010\u009f\u0095\u0098\u00a8\u0006\"\u000550041\u0012\u0012\bK\u0012\u0006\u0010\u00b8\u0098\u0098\u00a8\u0006\"\u0006Jun-15\u0012\u0012\bL\u0012\u0006\u0010\u00c1\u009a\u0098\u00a8\u0006\"\u0006Jun-13\u0012\u0011\bM\u0012\u0006\u0010\u00f4\u009f\u0098\u00a8\u0006\"\u00056-Oct\u0012\u0011\bN\u0012\u0006\u0010\u00da\u00a1\u0098\u00a8\u0006\"\u00056-Aug\u0012\u0011\bO\u0012\u0006\u0010\u00e3\u00a6\u0098\u00a8\u0006\"\u00056-Jun\u0012\u0011\bP\u0012\u0006\u0010\u00af\u00ab\u0098\u00a8\u0006\"\u00056-Feb\u0012\u0011\bQ\u0012\u0006\u0010\u0091\u00b1\u0098\u00a8\u0006\"\u00057-Jul\u0012\u0011\bR\u0012\u0006\u0010\u0099\u00b4\u0098\u00a8\u0006\"\u00057-May\u0012\u0013\bS\u0012\u0006\u0010\u00fa\u00b5\u0098\u00a8\u0006\"\u00071508142\u0012\u0011\bT\u0012\u0006\u0010\u0084\u00bf\u0098\u00a8\u0006\"\u00058-Jan\u0012\u0011\bU\u0012\u0006\u0010\u00fd\u00c0\u0098\u00a8\u0006\"\u00059-Jan\u0012\u0012\bV\u0012\u0006\u0010\u00cd\u00c3\u0098\u00a8\u0006\"\u000610-Apr\u0012\u0012\bW\u0012\u0006\u0010\u00ce\u00c7\u0098\u00a8\u0006\"\u000610-Jan\u0012\u0011\bX\u0012\u0006\u0010\u009c\u00ca\u0098\u00a8\u0006\"\u000544863\u0012\u0012\bY\u0012\u0006\u0010\u0094\u00cd\u0098\u00a8\u0006\"\u000610-Mar\u0012\u0012\bZ\u0012\u0006\u0010\u00cc\u00d1\u0098\u00a8\u0006\"\u000611-Jan\u0012\u0011\b[\u0012\u0006\u0010\u00f7\u00d5\u0098\u00a8\u0006\"\u000539943\u0012\u0011\b\\\u0012\u0006\u0010\u00e9\u00d8\u0098\u00a8\u0006\"\u000539944\u0012\u0011\b]\u0012\u0006\u0010\u0092\u00e7\u0098\u00a8\u0006\"\u000539947\u0012\u0011\b^\u0012\u0006\u0010\u009e\u00eb\u0098\u00a8\u0006\"\u000539949\u0012\u0011\b_\u0012\u0006\u0010\u009c\u00ec\u0098\u00a8\u0006\"\u000539950\u0012\u0011\b`\u0012\u0006\u0010\u008c\u00f3\u0098\u00a8\u0006\"\u000539952\u0012\u0011\ba\u0012\u0006\u0010\u0099\u0080\u0099\u00a8\u0006\"\u000534529\u0012\u0011\bb\u0012\u0006\u0010\u00c3\u008a\u0099\u00a8\u0006\"\u000539954\u0012\u0011\bc\u0012\u0006\u0010\u00d0\u0097\u0099\u00a8\u0006\"\u000539956\u0012\u0011\bd\u0012\u0006\u0010\u00ec\u00b6\u0099\u00a8\u0006\"\u000544967\u0012\u0011\be\u0012\u0006\u0010\u00f3\u00c6\u0099\u00a8\u0006\"\u000544968\u0012\u0012\bf\u0012\u0006\u0010\u00a1\u00db\u0099\u00a8\u0006\"\u000614-May\u0012\u0012\bg\u0012\u0006\u0010\u00f1\u00e8\u0099\u00a8\u0006\"\u000614-Jun\u0012\u0012\bh\u0012\u0006\u0010\u00e0\u0085\u009a\u00a8\u0006\"\u000614-Aug\u001a\b\u001a\u0006BKKX62 \u00ac\u00e8\u0097\u00a8\u0006\"`\n/\n\u001023776-701ff27f-2\u0012\b15:16:00\u001a\b20230916 \u0000*\u00036130\u0000\u0012\u001d\rt\u00e7\u0012\u00c2\u0015\u00ec;\u0092\u00c2\u001d\u0000\u0000\u000eC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008e\u00e3(A(\u00ac\u00e8\u0097\u00a8\u0006B\b\u001a\u0006BKKX62" + }, + { + "type": "con_recorrido", + "entity": "\n$1335e721-104c-4128-be07-bf161e702f0e\u001a\u00b9\u000f\n/\n\u001023842-701ff27f-2\u0012\b15:21:00\u001a\b20230916 \u0000*\u00036130\u0001\u0012\u0011\b\u0003\u0012\u0006\u0010\u00b5\u00e8\u0097\u00a8\u0006\"\u000540161\u0012\u0011\b\u0004\u0012\u0006\u0010\u00dc\u00e8\u0097\u00a8\u0006\"\u000539951\u0012\u0011\b\u0005\u0012\u0006\u0010\u0080\u00e9\u0097\u00a8\u0006\"\u000539949\u0012\u0011\b\u0006\u0012\u0006\u0010\u0088\u00e9\u0097\u00a8\u0006\"\u000539948\u0012\u0011\b\u0007\u0012\u0006\u0010\u00a2\u00e9\u0097\u00a8\u0006\"\u000539947\u0012\u0011\b\b\u0012\u0006\u0010\u00af\u00e9\u0097\u00a8\u0006\"\u000540167\u0012\u0011\b\t\u0012\u0006\u0010\u0082\u00ea\u0097\u00a8\u0006\"\u000539945\u0012\u0011\b\n\u0012\u0006\u0010\u00b1\u00ea\u0097\u00a8\u0006\"\u000539944\u0012\u0011\b\u000b\u0012\u0006\u0010\u00cc\u00ea\u0097\u00a8\u0006\"\u000539943\u0012\u0012\b\f\u0012\u0006\u0010\u008f\u00eb\u0097\u00a8\u0006\"\u000613-Feb\u0012\u0012\b\r\u0012\u0006\u0010\u00a9\u00eb\u0097\u00a8\u0006\"\u000628-Jan\u0012\u0010\b\u000e\u0012\u0006\u0010\u00d8\u00eb\u0097\u00a8\u0006\"\u000412-3\u0012\u0012\b\u000f\u0012\u0006\u0010\u00a4\u00ec\u0097\u00a8\u0006\"\u000612-Jan\u0012\u0012\b\u0010\u0012\u0006\u0010\u00d0\u00ec\u0097\u00a8\u0006\"\u000612-Feb\u0012\u0011\b\u0011\u0012\u0006\u0010\u0084\u00ed\u0097\u00a8\u0006\"\u00057-Jan\u0012\u0011\b\u0012\u0012\u0006\u0010\u00ba\u00ed\u0097\u00a8\u0006\"\u00057-Mar\u0012\u0011\b\u0013\u0012\u0006\u0010\u00c6\u00ee\u0097\u00a8\u0006\"\u00057-Jun\u0012\u0011\b\u0014\u0012\u0006\u0010\u0080\u00ef\u0097\u00a8\u0006\"\u00057-Aug\u0012\u0011\b\u0015\u0012\u0006\u0010\u00ca\u00ef\u0097\u00a8\u0006\"\u00056-Jan\u0012\u0011\b\u0016\u0012\u0006\u0010\u008d\u00f0\u0097\u00a8\u0006\"\u00056-Mar\u0012\u0011\b\u0017\u0012\u0006\u0010\u00ef\u00f0\u0097\u00a8\u0006\"\u00056-May\u0012\u0011\b\u0018\u0012\u0006\u0010\u00c6\u00f2\u0097\u00a8\u0006\"\u00056-Sep\u0012\u0011\b\u0019\u0012\u0006\u0010\u00a0\u00f3\u0097\u00a8\u0006\"\u00056-Nov\u0012\u0012\b\u001a\u0012\u0006\u0010\u00e0\u00f4\u0097\u00a8\u0006\"\u0006Jun-14\u0012\u0012\b\u001b\u0012\u0006\u0010\u00f7\u00f5\u0097\u00a8\u0006\"\u0006Jun-17\u0012\u0012\b\u001c\u0012\u0006\u0010\u00c9\u00f6\u0097\u00a8\u0006\"\u0006Jun-19\u0012\u0012\b\u001d\u0012\u0006\u0010\u0087\u00f7\u0097\u00a8\u0006\"\u0006Jun-20\u0012\u0012\b\u001e\u0012\u0006\u0010\u00c8\u00f7\u0097\u00a8\u0006\"\u0006Jun-22\u0012\u0012\b\u001f\u0012\u0006\u0010\u0086\u00f8\u0097\u00a8\u0006\"\u0006Jun-24\u0012\u0012\b \u0012\u0006\u0010\u00eb\u00f8\u0097\u00a8\u0006\"\u0006Jun-25\u0012\u0011\b!\u0012\u0006\u0010\u00ac\u00fb\u0097\u00a8\u0006\"\u000590003\u0012\u0011\b\"\u0012\u0006\u0010\u00e2\u00fb\u0097\u00a8\u0006\"\u000590007\u0012\u0011\b#\u0012\u0006\u0010\u0092\u00fc\u0097\u00a8\u0006\"\u000540830\u0012\u0011\b$\u0012\u0006\u0010\u00c1\u00fc\u0097\u00a8\u0006\"\u000540831\u0012\u0011\b%\u0012\u0006\u0010\u00a2\u00fd\u0097\u00a8\u0006\"\u000539599\u0012\u0011\b&\u0012\u0006\u0010\u00be\u00fd\u0097\u00a8\u0006\"\u000539600\u0012\u0011\b'\u0012\u0006\u0010\u0091\u00fe\u0097\u00a8\u0006\"\u000537496\u0012\u0011\b(\u0012\u0006\u0010\u00cf\u00fe\u0097\u00a8\u0006\"\u000545064\u0012\u0011\b)\u0012\u0006\u0010\u00af\u00ff\u0097\u00a8\u0006\"\u000537506\u0012\u0011\b*\u0012\u0006\u0010\u0092\u0080\u0098\u00a8\u0006\"\u000545069\u0012\u0011\b+\u0012\u0006\u0010\u00ab\u0081\u0098\u00a8\u0006\"\u000537523\u0012\u0011\b,\u0012\u0006\u0010\u00e4\u0081\u0098\u00a8\u0006\"\u000537477\u0012\u0011\b-\u0012\u0006\u0010\u00e1\u0082\u0098\u00a8\u0006\"\u000549310\u0012\u0011\b.\u0012\u0006\u0010\u008f\u0083\u0098\u00a8\u0006\"\u000549311\u0012\u0011\b/\u0012\u0006\u0010\u00e3\u0083\u0098\u00a8\u0006\"\u000539634\u0012\u0011\b0\u0012\u0006\u0010\u0089\u0084\u0098\u00a8\u0006\"\u000539635\u0012\u0011\b1\u0012\u0006\u0010\u00d1\u0084\u0098\u00a8\u0006\"\u000539636\u0012\u0011\b2\u0012\u0006\u0010\u00a5\u0085\u0098\u00a8\u0006\"\u000549503\u0012\u0011\b3\u0012\u0006\u0010\u00f5\u0086\u0098\u00a8\u0006\"\u000539637\u0012\u0011\b4\u0012\u0006\u0010\u00c9\u0087\u0098\u00a8\u0006\"\u000549317\u0012\u0011\b5\u0012\u0006\u0010\u0080\u0088\u0098\u00a8\u0006\"\u000549318\u0012\u0011\b6\u0012\u0006\u0010\u00f5\u0088\u0098\u00a8\u0006\"\u000549319\u0012\u0011\b7\u0012\u0006\u0010\u00ea\u0089\u0098\u00a8\u0006\"\u000539641\u0012\u0011\b8\u0012\u0006\u0010\u00ab\u008a\u0098\u00a8\u0006\"\u000539642\u0012\u0011\b9\u0012\u0006\u0010\u00ea\u008e\u0098\u00a8\u0006\"\u000549325\u0012\u0011\b:\u0012\u0006\u0010\u00f7\u008f\u0098\u00a8\u0006\"\u000549326\u0012\u0011\b;\u0012\u0006\u0010\u00b3\u0090\u0098\u00a8\u0006\"\u000539648\u0012\u0011\b<\u0012\u0006\u0010\u00a4\u0091\u0098\u00a8\u0006\"\u000539649\u0012\u0011\b=\u0012\u0006\u0010\u00f1\u0091\u0098\u00a8\u0006\"\u000545112\u0012\u0011\b>\u0012\u0006\u0010\u00f1\u0092\u0098\u00a8\u0006\"\u000545113\u0012\u0011\b?\u0012\u0006\u0010\u00bf\u0094\u0098\u00a8\u0006\"\u000537490\u0012\u0011\b@\u0012\u0006\u0010\u00dd\u0095\u0098\u00a8\u0006\"\u000545115\u0012\u0011\bA\u0012\u0006\u0010\u009a\u0096\u0098\u00a8\u0006\"\u000545116\u0012\u0011\bB\u0012\u0006\u0010\u00e4\u0097\u0098\u00a8\u0006\"\u000545118\u0012\u0011\bC\u0012\u0006\u0010\u00c6\u0099\u0098\u00a8\u0006\"\u000545119\u0012\u0011\bD\u0012\u0006\u0010\u00d2\u009a\u0098\u00a8\u0006\"\u000545120\u0012\u0011\bE\u0012\u0006\u0010\u0086\u009c\u0098\u00a8\u0006\"\u000545121\u0012\u0011\bF\u0012\u0006\u0010\u0093\u009d\u0098\u00a8\u0006\"\u000538535\u0012\u0011\bG\u0012\u0006\u0010\u0087\u009f\u0098\u00a8\u0006\"\u000538536\u0012\u0013\bH\u0012\u0006\u0010\u00a8\u00a0\u0098\u00a8\u0006\"\u00074838437\u0012\u0011\bI\u0012\u0006\u0010\u00fa\u00a1\u0098\u00a8\u0006\"\u000545085\u0012\u0011\bJ\u0012\u0006\u0010\u00bd\u00a4\u0098\u00a8\u0006\"\u000545086\u0012\u0011\bK\u0012\u0006\u0010\u00b8\u00a8\u0098\u00a8\u0006\"\u000538540\u0012\u0011\bL\u0012\u0006\u0010\u00b4\u00ab\u0098\u00a8\u0006\"\u000538544\u0012\u0011\bM\u0012\u0006\u0010\u00f8\u00ad\u0098\u00a8\u0006\"\u000538545\u0012\u0011\bN\u0012\u0006\u0010\u008c\u00b5\u0098\u00a8\u0006\"\u000545095\u0012\u0011\bO\u0012\u0006\u0010\u0097\u00b7\u0098\u00a8\u0006\"\u000545096\u0012\u0011\bP\u0012\u0006\u0010\u00f5\u00ba\u0098\u00a8\u0006\"\u000545098\u0012\u0011\bQ\u0012\u0006\u0010\u00d6\u00bc\u0098\u00a8\u0006\"\u000545099\u0012\u0011\bR\u0012\u0006\u0010\u00ef\u00bd\u0098\u00a8\u0006\"\u000545100\u0012\u0011\bS\u0012\u0006\u0010\u00bc\u00bf\u0098\u00a8\u0006\"\u000545101\u0012\u0011\bT\u0012\u0006\u0010\u00e1\u00c1\u0098\u00a8\u0006\"\u000545102\u0012\u0011\bU\u0012\u0006\u0010\u00ba\u00c3\u0098\u00a8\u0006\"\u000545103\u0012\u0011\bV\u0012\u0006\u0010\u008b\u00c5\u0098\u00a8\u0006\"\u000545104\u0012\u0011\bW\u0012\u0006\u0010\u00f0\u00c6\u0098\u00a8\u0006\"\u000545122\u0012\u0011\bX\u0012\u0006\u0010\u00e4\u00ca\u0098\u00a8\u0006\"\u000538630\u0012\u0011\bY\u0012\u0006\u0010\u00e6\u00d2\u0098\u00a8\u0006\"\u000542365\u0012\u0011\bZ\u0012\u0006\u0010\u00bc\u00de\u0098\u00a8\u0006\"\u000549349\u0012\u0011\b[\u0012\u0006\u0010\u00b4\u00ed\u0098\u00a8\u0006\"\u000549350\u0012\u0011\b\\\u0012\u0006\u0010\u00f6\u00f3\u0098\u00a8\u0006\"\u000549351\u0012\u0011\b]\u0012\u0006\u0010\u00f6\u00f7\u0098\u00a8\u0006\"\u000549352\u0012\u0011\b^\u0012\u0006\u0010\u009d\u00ff\u0098\u00a8\u0006\"\u000549353\u0012\u0011\b_\u0012\u0006\u0010\u00d9\u0097\u0099\u00a8\u0006\"\u000538567\u0012\u0011\b`\u0012\u0006\u0010\u00ca\u00a2\u0099\u00a8\u0006\"\u000538568\u0012\u0011\ba\u0012\u0006\u0010\u00f1\u00a9\u0099\u00a8\u0006\"\u000538569\u0012\u0011\bb\u0012\u0006\u0010\u00dd\u00b5\u0099\u00a8\u0006\"\u000538570\u0012\u0011\bc\u0012\u0006\u0010\u00e5\u00c7\u0099\u00a8\u0006\"\u000538571\u0012\u0011\bd\u0012\u0006\u0010\u00e4\u00db\u0099\u00a8\u0006\"\u000538572\u0012\u0011\be\u0012\u0006\u0010\u00e9\u00a9\u009a\u00a8\u0006\"\u000540115\u0012\u0011\bf\u0012\u0006\u0010\u00d1\u00d3\u009a\u00a8\u0006\"\u000540116\u001a\b\u001a\u0006DGDR23 \u00b4\u00e8\u0097\u00a8\u0006\"`\n/\n\u001023842-701ff27f-2\u0012\b15:21:00\u001a\b20230916 \u0000*\u00036130\u0001\u0012\u001d\r\u00ea\u00e3\u0012\u00c2\u0015\u00ae\u00f9\u0091\u00c2\u001d\u0000\u0000\u008cB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-r\u001c\u0097@(\u00b4\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DGDR23" + }, + { + "type": "con_recorrido", + "entity": "\n$1e7ee143-45e6-424d-9c38-060054e4b95c\u001a\u0096\f\n/\n\u001023775-701ff27f-2\u0012\b15:01:00\u001a\b20230916 \u0000*\u00036130\u0000\u0012\u0011\b\u001b\u0012\u0006\u0010\u00c7\u00e8\u0097\u00a8\u0006\"\u000538659\u0012\u0011\b\u001c\u0012\u0006\u0010\u00ed\u00e9\u0097\u00a8\u0006\"\u000538649\u0012\u0011\b\u001d\u0012\u0006\u0010\u00f8\u00ea\u0097\u00a8\u0006\"\u000538735\u0012\u0011\b\u001e\u0012\u0006\u0010\u00af\u00eb\u0097\u00a8\u0006\"\u000542270\u0012\u0011\b\u001f\u0012\u0006\u0010\u00dd\u00eb\u0097\u00a8\u0006\"\u000542271\u0012\u0011\b \u0012\u0006\u0010\u009e\u00ed\u0097\u00a8\u0006\"\u000538688\u0012\u0011\b!\u0012\u0006\u0010\u00d5\u00ed\u0097\u00a8\u0006\"\u000538673\u0012\u0011\b\"\u0012\u0006\u0010\u00a0\u00ee\u0097\u00a8\u0006\"\u000539785\u0012\u0011\b#\u0012\u0006\u0010\u00c6\u00ee\u0097\u00a8\u0006\"\u000538664\u0012\u0011\b$\u0012\u0006\u0010\u00fa\u00ee\u0097\u00a8\u0006\"\u000538702\u0012\u0011\b%\u0012\u0006\u0010\u00a5\u00ef\u0097\u00a8\u0006\"\u000539787\u0012\u0011\b&\u0012\u0006\u0010\u00cd\u00ef\u0097\u00a8\u0006\"\u000538501\u0012\u0011\b'\u0012\u0006\u0010\u008e\u00f0\u0097\u00a8\u0006\"\u000538692\u0012\u0011\b(\u0012\u0006\u0010\u00cb\u00f0\u0097\u00a8\u0006\"\u000538714\u0012\u0011\b)\u0012\u0006\u0010\u00ff\u00f0\u0097\u00a8\u0006\"\u000539791\u0012\u0011\b*\u0012\u0006\u0010\u0098\u00f1\u0097\u00a8\u0006\"\u000538506\u0012\u0011\b+\u0012\u0006\u0010\u00cb\u00f1\u0097\u00a8\u0006\"\u000538635\u0012\u0011\b,\u0012\u0006\u0010\u00eb\u00f1\u0097\u00a8\u0006\"\u000538509\u0012\u0011\b-\u0012\u0006\u0010\u0096\u00f2\u0097\u00a8\u0006\"\u000538642\u0012\u0011\b.\u0012\u0006\u0010\u00c0\u00f2\u0097\u00a8\u0006\"\u000539795\u0012\u0011\b/\u0012\u0006\u0010\u00e1\u00f2\u0097\u00a8\u0006\"\u000538502\u0012\u0011\b0\u0012\u0006\u0010\u009b\u00f3\u0097\u00a8\u0006\"\u000538503\u0012\u0011\b1\u0012\u0006\u0010\u00b7\u00f4\u0097\u00a8\u0006\"\u000535691\u0012\u0011\b2\u0012\u0006\u0010\u00e0\u00f4\u0097\u00a8\u0006\"\u000535692\u0012\u0011\b3\u0012\u0006\u0010\u009b\u00f5\u0097\u00a8\u0006\"\u000535693\u0012\u0011\b4\u0012\u0006\u0010\u00d2\u00f5\u0097\u00a8\u0006\"\u000535694\u0012\u0011\b5\u0012\u0006\u0010\u00fb\u00f5\u0097\u00a8\u0006\"\u000535695\u0012\u0011\b6\u0012\u0006\u0010\u00b0\u00f6\u0097\u00a8\u0006\"\u000535696\u0012\u0011\b7\u0012\u0006\u0010\u00df\u00f7\u0097\u00a8\u0006\"\u000535697\u0012\u0011\b8\u0012\u0006\u0010\u00de\u00f8\u0097\u00a8\u0006\"\u000539778\u0012\u0011\b9\u0012\u0006\u0010\u00d2\u00f9\u0097\u00a8\u0006\"\u000535797\u0012\u0011\b:\u0012\u0006\u0010\u0086\u00fa\u0097\u00a8\u0006\"\u000535798\u0012\u0011\b;\u0012\u0006\u0010\u00aa\u00fa\u0097\u00a8\u0006\"\u000535799\u0012\u0011\b<\u0012\u0006\u0010\u00f9\u00fa\u0097\u00a8\u0006\"\u000535800\u0012\u0011\b=\u0012\u0006\u0010\u00b2\u00fb\u0097\u00a8\u0006\"\u000535801\u0012\u0011\b>\u0012\u0006\u0010\u00d0\u00fb\u0097\u00a8\u0006\"\u000535802\u0012\u0011\b?\u0012\u0006\u0010\u008a\u00fc\u0097\u00a8\u0006\"\u000535803\u0012\u0011\b@\u0012\u0006\u0010\u00c9\u00fc\u0097\u00a8\u0006\"\u000538507\u0012\u0011\bA\u0012\u0006\u0010\u0086\u00fd\u0097\u00a8\u0006\"\u000534473\u0012\u0011\bB\u0012\u0006\u0010\u00bc\u00fd\u0097\u00a8\u0006\"\u000538500\u0012\u0011\bC\u0012\u0006\u0010\u00f5\u00fd\u0097\u00a8\u0006\"\u000535808\u0012\u0011\bD\u0012\u0006\u0010\u00be\u00fe\u0097\u00a8\u0006\"\u000535710\u0012\u0011\bE\u0012\u0006\u0010\u00f8\u00fe\u0097\u00a8\u0006\"\u000550036\u0012\u0011\bF\u0012\u0006\u0010\u00ab\u0081\u0098\u00a8\u0006\"\u000550037\u0012\u0011\bG\u0012\u0006\u0010\u00f8\u0082\u0098\u00a8\u0006\"\u000550038\u0012\u0011\bH\u0012\u0006\u0010\u00ea\u0083\u0098\u00a8\u0006\"\u000550039\u0012\u0011\bI\u0012\u0006\u0010\u00ba\u0084\u0098\u00a8\u0006\"\u000550040\u0012\u0011\bJ\u0012\u0006\u0010\u00d0\u0085\u0098\u00a8\u0006\"\u000550041\u0012\u0012\bK\u0012\u0006\u0010\u00be\u0087\u0098\u00a8\u0006\"\u0006Jun-15\u0012\u0012\bL\u0012\u0006\u0010\u00d4\u0088\u0098\u00a8\u0006\"\u0006Jun-13\u0012\u0011\bM\u0012\u0006\u0010\u00cc\u008b\u0098\u00a8\u0006\"\u00056-Oct\u0012\u0011\bN\u0012\u0006\u0010\u00c5\u008c\u0098\u00a8\u0006\"\u00056-Aug\u0012\u0011\bO\u0012\u0006\u0010\u008f\u008f\u0098\u00a8\u0006\"\u00056-Jun\u0012\u0011\bP\u0012\u0006\u0010\u00ad\u0091\u0098\u00a8\u0006\"\u00056-Feb\u0012\u0011\bQ\u0012\u0006\u0010\u0083\u0094\u0098\u00a8\u0006\"\u00057-Jul\u0012\u0011\bR\u0012\u0006\u0010\u00b1\u0095\u0098\u00a8\u0006\"\u00057-May\u0012\u0013\bS\u0012\u0006\u0010\u0094\u0096\u0098\u00a8\u0006\"\u00071508142\u0012\u0011\bT\u0012\u0006\u0010\u00f9\u0099\u0098\u00a8\u0006\"\u00058-Jan\u0012\u0011\bU\u0012\u0006\u0010\u00dc\u009a\u0098\u00a8\u0006\"\u00059-Jan\u0012\u0012\bV\u0012\u0006\u0010\u00df\u009b\u0098\u00a8\u0006\"\u000610-Apr\u0012\u0012\bW\u0012\u0006\u0010\u00a2\u009d\u0098\u00a8\u0006\"\u000610-Jan\u0012\u0011\bX\u0012\u0006\u0010\u009e\u009e\u0098\u00a8\u0006\"\u000544863\u0012\u0012\bY\u0012\u0006\u0010\u00a7\u009f\u0098\u00a8\u0006\"\u000610-Mar\u0012\u0012\bZ\u0012\u0006\u0010\u00f0\u00a0\u0098\u00a8\u0006\"\u000611-Jan\u0012\u0011\b[\u0012\u0006\u0010\u00ad\u00a2\u0098\u00a8\u0006\"\u000539943\u0012\u0011\b\\\u0012\u0006\u0010\u00a8\u00a3\u0098\u00a8\u0006\"\u000539944\u0012\u0011\b]\u0012\u0006\u0010\u00e6\u00a7\u0098\u00a8\u0006\"\u000539947\u0012\u0011\b^\u0012\u0006\u0010\u00ff\u00a8\u0098\u00a8\u0006\"\u000539949\u0012\u0011\b_\u0012\u0006\u0010\u00a3\u00a9\u0098\u00a8\u0006\"\u000539950\u0012\u0011\b`\u0012\u0006\u0010\u009a\u00ab\u0098\u00a8\u0006\"\u000539952\u0012\u0011\ba\u0012\u0006\u0010\u00d3\u00ae\u0098\u00a8\u0006\"\u000534529\u0012\u0011\bb\u0012\u0006\u0010\u0095\u00b1\u0098\u00a8\u0006\"\u000539954\u0012\u0011\bc\u0012\u0006\u0010\u0091\u00b4\u0098\u00a8\u0006\"\u000539956\u0012\u0011\bd\u0012\u0006\u0010\u00af\u00ba\u0098\u00a8\u0006\"\u000544967\u0012\u0011\be\u0012\u0006\u0010\u0098\u00bd\u0098\u00a8\u0006\"\u000544968\u0012\u0012\bf\u0012\u0006\u0010\u00b8\u00c0\u0098\u00a8\u0006\"\u000614-May\u0012\u0012\bg\u0012\u0006\u0010\u00b7\u00c2\u0098\u00a8\u0006\"\u000614-Jun\u0012\u0012\bh\u0012\u0006\u0010\u00a2\u00c6\u0098\u00a8\u0006\"\u000614-Aug\u001a\b\u001a\u0006DTJS65 \u00b4\u00e8\u0097\u00a8\u0006\"`\n/\n\u001023775-701ff27f-2\u0012\b15:01:00\u001a\b20230916 \u0000*\u00036130\u0000\u0012\u001d\r\u00bc\u00f9\u0012\u00c2\u0015\u00102\u0092\u00c2\u001d\u0000\u0000xB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u001c\u00c7\u00b1?(\u00b4\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DTJS65" + }, + { + "type": "con_recorrido", + "entity": "\n$714251e1-c01e-4dd5-9fcf-36107615e3b1\u001a\u00b2\b\n/\n\u001023840-701ff27f-2\u0012\b14:41:00\u001a\b20230916 \u0000*\u00036130\u0001\u0012\u0011\b2\u0012\u0006\u0010\u00dc\u00e8\u0097\u00a8\u0006\"\u000549503\u0012\u0011\b3\u0012\u0006\u0010\u00e1\u00e9\u0097\u00a8\u0006\"\u000539637\u0012\u0011\b4\u0012\u0006\u0010\u0095\u00ea\u0097\u00a8\u0006\"\u000549317\u0012\u0011\b5\u0012\u0006\u0010\u00b6\u00ea\u0097\u00a8\u0006\"\u000549318\u0012\u0011\b6\u0012\u0006\u0010\u00f9\u00ea\u0097\u00a8\u0006\"\u000549319\u0012\u0011\b7\u0012\u0006\u0010\u00ba\u00eb\u0097\u00a8\u0006\"\u000539641\u0012\u0011\b8\u0012\u0006\u0010\u00dc\u00eb\u0097\u00a8\u0006\"\u000539642\u0012\u0011\b9\u0012\u0006\u0010\u00f3\u00ed\u0097\u00a8\u0006\"\u000549325\u0012\u0011\b:\u0012\u0006\u0010\u00b0\u00ee\u0097\u00a8\u0006\"\u000549326\u0012\u0011\b;\u0012\u0006\u0010\u00c9\u00ee\u0097\u00a8\u0006\"\u000539648\u0012\u0011\b<\u0012\u0006\u0010\u00f8\u00ee\u0097\u00a8\u0006\"\u000539649\u0012\u0011\b=\u0012\u0006\u0010\u0097\u00ef\u0097\u00a8\u0006\"\u000545112\u0012\u0011\b>\u0012\u0006\u0010\u00c9\u00ef\u0097\u00a8\u0006\"\u000545113\u0012\u0011\b?\u0012\u0006\u0010\u0097\u00f0\u0097\u00a8\u0006\"\u000537490\u0012\u0011\b@\u0012\u0006\u0010\u00cf\u00f0\u0097\u00a8\u0006\"\u000545115\u0012\u0011\bA\u0012\u0006\u0010\u00e4\u00f0\u0097\u00a8\u0006\"\u000545116\u0012\u0011\bB\u0012\u0006\u0010\u00a9\u00f1\u0097\u00a8\u0006\"\u000545118\u0012\u0011\bC\u0012\u0006\u0010\u00f2\u00f1\u0097\u00a8\u0006\"\u000545119\u0012\u0011\bD\u0012\u0006\u0010\u009d\u00f2\u0097\u00a8\u0006\"\u000545120\u0012\u0011\bE\u0012\u0006\u0010\u00d3\u00f2\u0097\u00a8\u0006\"\u000545121\u0012\u0011\bF\u0012\u0006\u0010\u00fc\u00f2\u0097\u00a8\u0006\"\u000538535\u0012\u0011\bG\u0012\u0006\u0010\u00bf\u00f3\u0097\u00a8\u0006\"\u000538536\u0012\u0013\bH\u0012\u0006\u0010\u00eb\u00f3\u0097\u00a8\u0006\"\u00074838437\u0012\u0011\bI\u0012\u0006\u0010\u00a1\u00f4\u0097\u00a8\u0006\"\u000545085\u0012\u0011\bJ\u0012\u0006\u0010\u00f0\u00f4\u0097\u00a8\u0006\"\u000545086\u0012\u0011\bK\u0012\u0006\u0010\u00e3\u00f5\u0097\u00a8\u0006\"\u000538540\u0012\u0011\bL\u0012\u0006\u0010\u00b3\u00f6\u0097\u00a8\u0006\"\u000538544\u0012\u0011\bM\u0012\u0006\u0010\u00f4\u00f6\u0097\u00a8\u0006\"\u000538545\u0012\u0011\bN\u0012\u0006\u0010\u009a\u00f8\u0097\u00a8\u0006\"\u000545095\u0012\u0011\bO\u0012\u0006\u0010\u00c6\u00f8\u0097\u00a8\u0006\"\u000545096\u0012\u0011\bP\u0012\u0006\u0010\u0092\u00f9\u0097\u00a8\u0006\"\u000545098\u0012\u0011\bQ\u0012\u0006\u0010\u00b4\u00f9\u0097\u00a8\u0006\"\u000545099\u0012\u0011\bR\u0012\u0006\u0010\u00ca\u00f9\u0097\u00a8\u0006\"\u000545100\u0012\u0011\bS\u0012\u0006\u0010\u00e7\u00f9\u0097\u00a8\u0006\"\u000545101\u0012\u0011\bT\u0012\u0006\u0010\u0090\u00fa\u0097\u00a8\u0006\"\u000545102\u0012\u0011\bU\u0012\u0006\u0010\u00ad\u00fa\u0097\u00a8\u0006\"\u000545103\u0012\u0011\bV\u0012\u0006\u0010\u00c8\u00fa\u0097\u00a8\u0006\"\u000545104\u0012\u0011\bW\u0012\u0006\u0010\u00e6\u00fa\u0097\u00a8\u0006\"\u000545122\u0012\u0011\bX\u0012\u0006\u0010\u00a3\u00fb\u0097\u00a8\u0006\"\u000538630\u0012\u0011\bY\u0012\u0006\u0010\u0095\u00fc\u0097\u00a8\u0006\"\u000542365\u0012\u0011\bZ\u0012\u0006\u0010\u00a7\u00fd\u0097\u00a8\u0006\"\u000549349\u0012\u0011\b[\u0012\u0006\u0010\u00c5\u00fe\u0097\u00a8\u0006\"\u000549350\u0012\u0011\b\\\u0012\u0006\u0010\u0082\u00ff\u0097\u00a8\u0006\"\u000549351\u0012\u0011\b]\u0012\u0006\u0010\u00a5\u00ff\u0097\u00a8\u0006\"\u000549352\u0012\u0011\b^\u0012\u0006\u0010\u00e1\u00ff\u0097\u00a8\u0006\"\u000549353\u0012\u0011\b_\u0012\u0006\u0010\u008d\u0081\u0098\u00a8\u0006\"\u000538567\u0012\u0011\b`\u0012\u0006\u0010\u00ce\u0081\u0098\u00a8\u0006\"\u000538568\u0012\u0011\ba\u0012\u0006\u0010\u00f6\u0081\u0098\u00a8\u0006\"\u000538569\u0012\u0011\bb\u0012\u0006\u0010\u00b3\u0082\u0098\u00a8\u0006\"\u000538570\u0012\u0011\bc\u0012\u0006\u0010\u0084\u0083\u0098\u00a8\u0006\"\u000538571\u0012\u0011\bd\u0012\u0006\u0010\u00d2\u0083\u0098\u00a8\u0006\"\u000538572\u0012\u0011\be\u0012\u0006\u0010\u00b2\u0085\u0098\u00a8\u0006\"\u000540115\u0012\u0011\bf\u0012\u0006\u0010\u0086\u0086\u0098\u00a8\u0006\"\u000540116\u001a\b\u001a\u0006FFVP83 \u00aa\u00e8\u0097\u00a8\u0006\"`\n/\n\u001023840-701ff27f-2\u0012\b14:41:00\u001a\b20230916 \u0000*\u00036130\u0001\u0012\u001d\r\u00bcJ\u0013\u00c2\u0015\\ \u0092\u00c2\u001d\u0000\u0000\u00a5C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00aa\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FFVP83" + }, + { + "type": "con_recorrido", + "entity": "\n$48cd6c63-3c39-496e-b1d6-27644166fc5a\u001a\u00dd\t\n/\n\u001023841-701ff27f-2\u0012\b15:01:00\u001a\b20230916 \u0000*\u00036130\u0001\u0012\u0011\b)\u0012\u0006\u0010\u00be\u00e8\u0097\u00a8\u0006\"\u000537506\u0012\u0011\b*\u0012\u0006\u0010\u008d\u00e9\u0097\u00a8\u0006\"\u000545069\u0012\u0011\b+\u0012\u0006\u0010\u0083\u00ea\u0097\u00a8\u0006\"\u000537523\u0012\u0011\b,\u0012\u0006\u0010\u00ac\u00ea\u0097\u00a8\u0006\"\u000537477\u0012\u0011\b-\u0012\u0006\u0010\u0085\u00eb\u0097\u00a8\u0006\"\u000549310\u0012\u0011\b.\u0012\u0006\u0010\u00a5\u00eb\u0097\u00a8\u0006\"\u000549311\u0012\u0011\b/\u0012\u0006\u0010\u00dd\u00eb\u0097\u00a8\u0006\"\u000539634\u0012\u0011\b0\u0012\u0006\u0010\u00f7\u00eb\u0097\u00a8\u0006\"\u000539635\u0012\u0011\b1\u0012\u0006\u0010\u00a5\u00ec\u0097\u00a8\u0006\"\u000539636\u0012\u0011\b2\u0012\u0006\u0010\u00da\u00ec\u0097\u00a8\u0006\"\u000549503\u0012\u0011\b3\u0012\u0006\u0010\u00d7\u00ed\u0097\u00a8\u0006\"\u000539637\u0012\u0011\b4\u0012\u0006\u0010\u0088\u00ee\u0097\u00a8\u0006\"\u000549317\u0012\u0011\b5\u0012\u0006\u0010\u00a7\u00ee\u0097\u00a8\u0006\"\u000549318\u0012\u0011\b6\u0012\u0006\u0010\u00e7\u00ee\u0097\u00a8\u0006\"\u000549319\u0012\u0011\b7\u0012\u0006\u0010\u00a5\u00ef\u0097\u00a8\u0006\"\u000539641\u0012\u0011\b8\u0012\u0006\u0010\u00c6\u00ef\u0097\u00a8\u0006\"\u000539642\u0012\u0011\b9\u0012\u0006\u0010\u00d7\u00f1\u0097\u00a8\u0006\"\u000549325\u0012\u0011\b:\u0012\u0006\u0010\u0094\u00f2\u0097\u00a8\u0006\"\u000549326\u0012\u0011\b;\u0012\u0006\u0010\u00ae\u00f2\u0097\u00a8\u0006\"\u000539648\u0012\u0011\b<\u0012\u0006\u0010\u00dd\u00f2\u0097\u00a8\u0006\"\u000539649\u0012\u0011\b=\u0012\u0006\u0010\u00fc\u00f2\u0097\u00a8\u0006\"\u000545112\u0012\u0011\b>\u0012\u0006\u0010\u00af\u00f3\u0097\u00a8\u0006\"\u000545113\u0012\u0011\b?\u0012\u0006\u0010\u00fe\u00f3\u0097\u00a8\u0006\"\u000537490\u0012\u0011\b@\u0012\u0006\u0010\u00b8\u00f4\u0097\u00a8\u0006\"\u000545115\u0012\u0011\bA\u0012\u0006\u0010\u00ce\u00f4\u0097\u00a8\u0006\"\u000545116\u0012\u0011\bB\u0012\u0006\u0010\u0095\u00f5\u0097\u00a8\u0006\"\u000545118\u0012\u0011\bC\u0012\u0006\u0010\u00e0\u00f5\u0097\u00a8\u0006\"\u000545119\u0012\u0011\bD\u0012\u0006\u0010\u008e\u00f6\u0097\u00a8\u0006\"\u000545120\u0012\u0011\bE\u0012\u0006\u0010\u00c6\u00f6\u0097\u00a8\u0006\"\u000545121\u0012\u0011\bF\u0012\u0006\u0010\u00f2\u00f6\u0097\u00a8\u0006\"\u000538535\u0012\u0011\bG\u0012\u0006\u0010\u00ba\u00f7\u0097\u00a8\u0006\"\u000538536\u0012\u0013\bH\u0012\u0006\u0010\u00e8\u00f7\u0097\u00a8\u0006\"\u00074838437\u0012\u0011\bI\u0012\u0006\u0010\u00a2\u00f8\u0097\u00a8\u0006\"\u000545085\u0012\u0011\bJ\u0012\u0006\u0010\u00f7\u00f8\u0097\u00a8\u0006\"\u000545086\u0012\u0011\bK\u0012\u0006\u0010\u00f5\u00f9\u0097\u00a8\u0006\"\u000538540\u0012\u0011\bL\u0012\u0006\u0010\u00cd\u00fa\u0097\u00a8\u0006\"\u000538544\u0012\u0011\bM\u0012\u0006\u0010\u0094\u00fb\u0097\u00a8\u0006\"\u000538545\u0012\u0011\bN\u0012\u0006\u0010\u00ce\u00fc\u0097\u00a8\u0006\"\u000545095\u0012\u0011\bO\u0012\u0006\u0010\u0080\u00fd\u0097\u00a8\u0006\"\u000545096\u0012\u0011\bP\u0012\u0006\u0010\u00d5\u00fd\u0097\u00a8\u0006\"\u000545098\u0012\u0011\bQ\u0012\u0006\u0010\u00fb\u00fd\u0097\u00a8\u0006\"\u000545099\u0012\u0011\bR\u0012\u0006\u0010\u0095\u00fe\u0097\u00a8\u0006\"\u000545100\u0012\u0011\bS\u0012\u0006\u0010\u00b6\u00fe\u0097\u00a8\u0006\"\u000545101\u0012\u0011\bT\u0012\u0006\u0010\u00e5\u00fe\u0097\u00a8\u0006\"\u000545102\u0012\u0011\bU\u0012\u0006\u0010\u0086\u00ff\u0097\u00a8\u0006\"\u000545103\u0012\u0011\bV\u0012\u0006\u0010\u00a6\u00ff\u0097\u00a8\u0006\"\u000545104\u0012\u0011\bW\u0012\u0006\u0010\u00c8\u00ff\u0097\u00a8\u0006\"\u000545122\u0012\u0011\bX\u0012\u0006\u0010\u008e\u0080\u0098\u00a8\u0006\"\u000538630\u0012\u0011\bY\u0012\u0006\u0010\u0094\u0081\u0098\u00a8\u0006\"\u000542365\u0012\u0011\bZ\u0012\u0006\u0010\u00c0\u0082\u0098\u00a8\u0006\"\u000549349\u0012\u0011\b[\u0012\u0006\u0010\u00fc\u0083\u0098\u00a8\u0006\"\u000549350\u0012\u0011\b\\\u0012\u0006\u0010\u00c4\u0084\u0098\u00a8\u0006\"\u000549351\u0012\u0011\b]\u0012\u0006\u0010\u00ef\u0084\u0098\u00a8\u0006\"\u000549352\u0012\u0011\b^\u0012\u0006\u0010\u00b8\u0085\u0098\u00a8\u0006\"\u000549353\u0012\u0011\b_\u0012\u0006\u0010\u008a\u0087\u0098\u00a8\u0006\"\u000538567\u0012\u0011\b`\u0012\u0006\u0010\u00d9\u0087\u0098\u00a8\u0006\"\u000538568\u0012\u0011\ba\u0012\u0006\u0010\u008b\u0088\u0098\u00a8\u0006\"\u000538569\u0012\u0011\bb\u0012\u0006\u0010\u00d5\u0088\u0098\u00a8\u0006\"\u000538570\u0012\u0011\bc\u0012\u0006\u0010\u00bb\u0089\u0098\u00a8\u0006\"\u000538571\u0012\u0011\bd\u0012\u0006\u0010\u009d\u008a\u0098\u00a8\u0006\"\u000538572\u0012\u0011\be\u0012\u0006\u0010\u00b7\u008c\u0098\u00a8\u0006\"\u000540115\u0012\u0011\bf\u0012\u0006\u0010\u00a3\u008d\u0098\u00a8\u0006\"\u000540116\u001a\b\u001a\u0006FXRL39 \u00a8\u00e8\u0097\u00a8\u0006\"`\n/\n\u001023841-701ff27f-2\u0012\b15:01:00\u001a\b20230916 \u0000*\u00036130\u0001\u0012\u001d\rzL\u0013\u00c2\u0015\u00e0\u0015\u0092\u00c2\u001d\u0000\u0000pC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e486A(\u00a8\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FXRL39" + }, + { + "type": "con_recorrido", + "entity": "\n$b1584218-96dc-46f4-98bb-13413262b6e2\u001a\u00de\u0004\n/\n\u001023772-701ff27f-2\u0012\b14:16:00\u001a\b20230916 \u0000*\u00036130\u0000\u0012\u0011\bM\u0012\u0006\u0010\u0087\u00e9\u0097\u00a8\u0006\"\u00056-Oct\u0012\u0011\bN\u0012\u0006\u0010\u00c6\u00e9\u0097\u00a8\u0006\"\u00056-Aug\u0012\u0011\bO\u0012\u0006\u0010\u00e6\u00ea\u0097\u00a8\u0006\"\u00056-Jun\u0012\u0011\bP\u0012\u0006\u0010\u00e4\u00eb\u0097\u00a8\u0006\"\u00056-Feb\u0012\u0011\bQ\u0012\u0006\u0010\u00ec\u00ec\u0097\u00a8\u0006\"\u00057-Jul\u0012\u0011\bR\u0012\u0006\u0010\u00ac\u00ed\u0097\u00a8\u0006\"\u00057-May\u0012\u0013\bS\u0012\u0006\u0010\u00cf\u00ed\u0097\u00a8\u0006\"\u00071508142\u0012\u0011\bT\u0012\u0006\u0010\u00f0\u00ee\u0097\u00a8\u0006\"\u00058-Jan\u0012\u0011\bU\u0012\u0006\u0010\u008e\u00ef\u0097\u00a8\u0006\"\u00059-Jan\u0012\u0012\bV\u0012\u0006\u0010\u00b5\u00ef\u0097\u00a8\u0006\"\u000610-Apr\u0012\u0012\bW\u0012\u0006\u0010\u00ed\u00ef\u0097\u00a8\u0006\"\u000610-Jan\u0012\u0011\bX\u0012\u0006\u0010\u0090\u00f0\u0097\u00a8\u0006\"\u000544863\u0012\u0012\bY\u0012\u0006\u0010\u00b4\u00f0\u0097\u00a8\u0006\"\u000610-Mar\u0012\u0012\bZ\u0012\u0006\u0010\u00e8\u00f0\u0097\u00a8\u0006\"\u000611-Jan\u0012\u0011\b[\u0012\u0006\u0010\u0097\u00f1\u0097\u00a8\u0006\"\u000539943\u0012\u0011\b\\\u0012\u0006\u0010\u00b5\u00f1\u0097\u00a8\u0006\"\u000539944\u0012\u0011\b]\u0012\u0006\u0010\u00b6\u00f2\u0097\u00a8\u0006\"\u000539947\u0012\u0011\b^\u0012\u0006\u0010\u00d6\u00f2\u0097\u00a8\u0006\"\u000539949\u0012\u0011\b_\u0012\u0006\u0010\u00dd\u00f2\u0097\u00a8\u0006\"\u000539950\u0012\u0011\b`\u0012\u0006\u0010\u008f\u00f3\u0097\u00a8\u0006\"\u000539952\u0012\u0011\ba\u0012\u0006\u0010\u00e2\u00f3\u0097\u00a8\u0006\"\u000534529\u0012\u0011\bb\u0012\u0006\u0010\u009b\u00f4\u0097\u00a8\u0006\"\u000539954\u0012\u0011\bc\u0012\u0006\u0010\u00da\u00f4\u0097\u00a8\u0006\"\u000539956\u0012\u0011\bd\u0012\u0006\u0010\u00d4\u00f5\u0097\u00a8\u0006\"\u000544967\u0012\u0011\be\u0012\u0006\u0010\u0086\u00f6\u0097\u00a8\u0006\"\u000544968\u0012\u0012\bf\u0012\u0006\u0010\u00bd\u00f6\u0097\u00a8\u0006\"\u000614-May\u0012\u0012\bg\u0012\u0006\u0010\u00dd\u00f6\u0097\u00a8\u0006\"\u000614-Jun\u0012\u0012\bh\u0012\u0006\u0010\u0098\u00f7\u0097\u00a8\u0006\"\u000614-Aug\u001a\b\u001a\u0006MY5698 \u00b4\u00e8\u0097\u00a8\u0006\"`\n/\n\u001023772-701ff27f-2\u0012\b14:16:00\u001a\b20230916 \u0000*\u00036130\u0000\u0012\u001d\r\u00c7\u0017\u0013\u00c2\u0015\u00ce\u0007\u0092\u00c2\u001d\u0000\u0000\u00a0A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b4\u00e8\u0097\u00a8\u0006B\b\u001a\u0006MY5698" + }, + { + "type": "con_recorrido", + "entity": "\n$14872879-7f5c-404d-98cf-6e89c3faa2b0\u001a\u00b2\n\n/\n\u001023774-701ff27f-2\u0012\b14:46:00\u001a\b20230916 \u0000*\u00036130\u0000\u0012\u0011\b'\u0012\u0006\u0010\u00c7\u00e8\u0097\u00a8\u0006\"\u000538692\u0012\u0011\b(\u0012\u0006\u0010\u008a\u00e9\u0097\u00a8\u0006\"\u000538714\u0012\u0011\b)\u0012\u0006\u0010\u00c3\u00e9\u0097\u00a8\u0006\"\u000539791\u0012\u0011\b*\u0012\u0006\u0010\u00de\u00e9\u0097\u00a8\u0006\"\u000538506\u0012\u0011\b+\u0012\u0006\u0010\u0094\u00ea\u0097\u00a8\u0006\"\u000538635\u0012\u0011\b,\u0012\u0006\u0010\u00b6\u00ea\u0097\u00a8\u0006\"\u000538509\u0012\u0011\b-\u0012\u0006\u0010\u00e3\u00ea\u0097\u00a8\u0006\"\u000538642\u0012\u0011\b.\u0012\u0006\u0010\u008f\u00eb\u0097\u00a8\u0006\"\u000539795\u0012\u0011\b/\u0012\u0006\u0010\u00b2\u00eb\u0097\u00a8\u0006\"\u000538502\u0012\u0011\b0\u0012\u0006\u0010\u00ee\u00eb\u0097\u00a8\u0006\"\u000538503\u0012\u0011\b1\u0012\u0006\u0010\u008a\u00ed\u0097\u00a8\u0006\"\u000535691\u0012\u0011\b2\u0012\u0006\u0010\u00b2\u00ed\u0097\u00a8\u0006\"\u000535692\u0012\u0011\b3\u0012\u0006\u0010\u00ec\u00ed\u0097\u00a8\u0006\"\u000535693\u0012\u0011\b4\u0012\u0006\u0010\u00a1\u00ee\u0097\u00a8\u0006\"\u000535694\u0012\u0011\b5\u0012\u0006\u0010\u00c9\u00ee\u0097\u00a8\u0006\"\u000535695\u0012\u0011\b6\u0012\u0006\u0010\u00fb\u00ee\u0097\u00a8\u0006\"\u000535696\u0012\u0011\b7\u0012\u0006\u0010\u009e\u00f0\u0097\u00a8\u0006\"\u000535697\u0012\u0011\b8\u0012\u0006\u0010\u0092\u00f1\u0097\u00a8\u0006\"\u000539778\u0012\u0011\b9\u0012\u0006\u0010\u00f8\u00f1\u0097\u00a8\u0006\"\u000535797\u0012\u0011\b:\u0012\u0006\u0010\u00a6\u00f2\u0097\u00a8\u0006\"\u000535798\u0012\u0011\b;\u0012\u0006\u0010\u00c6\u00f2\u0097\u00a8\u0006\"\u000535799\u0012\u0011\b<\u0012\u0006\u0010\u008a\u00f3\u0097\u00a8\u0006\"\u000535800\u0012\u0011\b=\u0012\u0006\u0010\u00ba\u00f3\u0097\u00a8\u0006\"\u000535801\u0012\u0011\b>\u0012\u0006\u0010\u00d4\u00f3\u0097\u00a8\u0006\"\u000535802\u0012\u0011\b?\u0012\u0006\u0010\u0085\u00f4\u0097\u00a8\u0006\"\u000535803\u0012\u0011\b@\u0012\u0006\u0010\u00ba\u00f4\u0097\u00a8\u0006\"\u000538507\u0012\u0011\bA\u0012\u0006\u0010\u00ed\u00f4\u0097\u00a8\u0006\"\u000534473\u0012\u0011\bB\u0012\u0006\u0010\u0099\u00f5\u0097\u00a8\u0006\"\u000538500\u0012\u0011\bC\u0012\u0006\u0010\u00c7\u00f5\u0097\u00a8\u0006\"\u000535808\u0012\u0011\bD\u0012\u0006\u0010\u0082\u00f6\u0097\u00a8\u0006\"\u000535710\u0012\u0011\bE\u0012\u0006\u0010\u00b0\u00f6\u0097\u00a8\u0006\"\u000550036\u0012\u0011\bF\u0012\u0006\u0010\u00a0\u00f8\u0097\u00a8\u0006\"\u000550037\u0012\u0011\bG\u0012\u0006\u0010\u00bc\u00f9\u0097\u00a8\u0006\"\u000550038\u0012\u0011\bH\u0012\u0006\u0010\u0091\u00fa\u0097\u00a8\u0006\"\u000550039\u0012\u0011\bI\u0012\u0006\u0010\u00cc\u00fa\u0097\u00a8\u0006\"\u000550040\u0012\u0011\bJ\u0012\u0006\u0010\u00b8\u00fb\u0097\u00a8\u0006\"\u000550041\u0012\u0012\bK\u0012\u0006\u0010\u00e1\u00fc\u0097\u00a8\u0006\"\u0006Jun-15\u0012\u0012\bL\u0012\u0006\u0010\u00c9\u00fd\u0097\u00a8\u0006\"\u0006Jun-13\u0012\u0011\bM\u0012\u0006\u0010\u00c7\u00ff\u0097\u00a8\u0006\"\u00056-Oct\u0012\u0011\bN\u0012\u0006\u0010\u0097\u0080\u0098\u00a8\u0006\"\u00056-Aug\u0012\u0011\bO\u0012\u0006\u0010\u00ec\u0081\u0098\u00a8\u0006\"\u00056-Jun\u0012\u0011\bP\u0012\u0006\u0010\u009f\u0083\u0098\u00a8\u0006\"\u00056-Feb\u0012\u0011\bQ\u0012\u0006\u0010\u00ef\u0084\u0098\u00a8\u0006\"\u00057-Jul\u0012\u0011\bR\u0012\u0006\u0010\u00d8\u0085\u0098\u00a8\u0006\"\u00057-May\u0012\u0013\bS\u0012\u0006\u0010\u0091\u0086\u0098\u00a8\u0006\"\u00071508142\u0012\u0011\bT\u0012\u0006\u0010\u00a8\u0088\u0098\u00a8\u0006\"\u00058-Jan\u0012\u0011\bU\u0012\u0006\u0010\u00e0\u0088\u0098\u00a8\u0006\"\u00059-Jan\u0012\u0012\bV\u0012\u0006\u0010\u00a9\u0089\u0098\u00a8\u0006\"\u000610-Apr\u0012\u0012\bW\u0012\u0006\u0010\u0094\u008a\u0098\u00a8\u0006\"\u000610-Jan\u0012\u0011\bX\u0012\u0006\u0010\u00d7\u008a\u0098\u00a8\u0006\"\u000544863\u0012\u0012\bY\u0012\u0006\u0010\u00a0\u008b\u0098\u00a8\u0006\"\u000610-Mar\u0012\u0012\bZ\u0012\u0006\u0010\u008a\u008c\u0098\u00a8\u0006\"\u000611-Jan\u0012\u0011\b[\u0012\u0006\u0010\u00ed\u008c\u0098\u00a8\u0006\"\u000539943\u0012\u0011\b\\\u0012\u0006\u0010\u00ad\u008d\u0098\u00a8\u0006\"\u000539944\u0012\u0011\b]\u0012\u0006\u0010\u00cd\u008f\u0098\u00a8\u0006\"\u000539947\u0012\u0011\b^\u0012\u0006\u0010\u0098\u0090\u0098\u00a8\u0006\"\u000539949\u0012\u0011\b_\u0012\u0006\u0010\u00a9\u0090\u0098\u00a8\u0006\"\u000539950\u0012\u0011\b`\u0012\u0006\u0010\u00a0\u0091\u0098\u00a8\u0006\"\u000539952\u0012\u0011\ba\u0012\u0006\u0010\u00ee\u0092\u0098\u00a8\u0006\"\u000534529\u0012\u0011\bb\u0012\u0006\u0010\u0081\u0094\u0098\u00a8\u0006\"\u000539954\u0012\u0011\bc\u0012\u0006\u0010\u00ab\u0095\u0098\u00a8\u0006\"\u000539956\u0012\u0011\bd\u0012\u0006\u0010\u0081\u0098\u0098\u00a8\u0006\"\u000544967\u0012\u0011\be\u0012\u0006\u0010\u0095\u0099\u0098\u00a8\u0006\"\u000544968\u0012\u0012\bf\u0012\u0006\u0010\u00bd\u009a\u0098\u00a8\u0006\"\u000614-May\u0012\u0012\bg\u0012\u0006\u0010\u00a1\u009b\u0098\u00a8\u0006\"\u000614-Jun\u0012\u0012\bh\u0012\u0006\u0010\u00de\u009c\u0098\u00a8\u0006\"\u000614-Aug\u001a\b\u001a\u0006RTZT28 \u00b8\u00e8\u0097\u00a8\u0006\"`\n/\n\u001023774-701ff27f-2\u0012\b14:46:00\u001a\b20230916 \u0000*\u00036130\u0000\u0012\u001d\r\u0090\"\u0013\u00c2\u0015\u008a,\u0092\u00c2\u001d\u0000\u0000>C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u001c\u00c71@(\u00b8\u00e8\u0097\u00a8\u0006B\b\u001a\u0006RTZT28" + }, + { + "type": "con_recorrido", + "entity": "\n$93c6adda-9ba1-49a2-9832-b8bf010469a1\u001a\u00b6\u0007\n/\n\u001023773-701ff27f-2\u0012\b14:31:00\u001a\b20230916 \u0000*\u00036130\u0000\u0012\u0011\b;\u0012\u0006\u0010\u00b6\u00e8\u0097\u00a8\u0006\"\u000535799\u0012\u0011\b<\u0012\u0006\u0010\u0081\u00e9\u0097\u00a8\u0006\"\u000535800\u0012\u0011\b=\u0012\u0006\u0010\u00b5\u00e9\u0097\u00a8\u0006\"\u000535801\u0012\u0011\b>\u0012\u0006\u0010\u00cf\u00e9\u0097\u00a8\u0006\"\u000535802\u0012\u0011\b?\u0012\u0006\u0010\u0083\u00ea\u0097\u00a8\u0006\"\u000535803\u0012\u0011\b@\u0012\u0006\u0010\u00ba\u00ea\u0097\u00a8\u0006\"\u000538507\u0012\u0011\bA\u0012\u0006\u0010\u00ee\u00ea\u0097\u00a8\u0006\"\u000534473\u0012\u0011\bB\u0012\u0006\u0010\u009b\u00eb\u0097\u00a8\u0006\"\u000538500\u0012\u0011\bC\u0012\u0006\u0010\u00c9\u00eb\u0097\u00a8\u0006\"\u000535808\u0012\u0011\bD\u0012\u0006\u0010\u0083\u00ec\u0097\u00a8\u0006\"\u000535710\u0012\u0011\bE\u0012\u0006\u0010\u00b0\u00ec\u0097\u00a8\u0006\"\u000550036\u0012\u0011\bF\u0012\u0006\u0010\u0092\u00ee\u0097\u00a8\u0006\"\u000550037\u0012\u0011\bG\u0012\u0006\u0010\u009e\u00ef\u0097\u00a8\u0006\"\u000550038\u0012\u0011\bH\u0012\u0006\u0010\u00e8\u00ef\u0097\u00a8\u0006\"\u000550039\u0012\u0011\bI\u0012\u0006\u0010\u009b\u00f0\u0097\u00a8\u0006\"\u000550040\u0012\u0011\bJ\u0012\u0006\u0010\u00f7\u00f0\u0097\u00a8\u0006\"\u000550041\u0012\u0012\bK\u0012\u0006\u0010\u0082\u00f2\u0097\u00a8\u0006\"\u0006Jun-15\u0012\u0012\bL\u0012\u0006\u0010\u00d6\u00f2\u0097\u00a8\u0006\"\u0006Jun-13\u0012\u0011\bM\u0012\u0006\u0010\u009b\u00f4\u0097\u00a8\u0006\"\u00056-Oct\u0012\u0011\bN\u0012\u0006\u0010\u00d7\u00f4\u0097\u00a8\u0006\"\u00056-Aug\u0012\u0011\bO\u0012\u0006\u0010\u00f3\u00f5\u0097\u00a8\u0006\"\u00056-Jun\u0012\u0011\bP\u0012\u0006\u0010\u00f2\u00f6\u0097\u00a8\u0006\"\u00056-Feb\u0012\u0011\bQ\u0012\u0006\u0010\u0082\u00f8\u0097\u00a8\u0006\"\u00057-Jul\u0012\u0011\bR\u0012\u0006\u0010\u00c8\u00f8\u0097\u00a8\u0006\"\u00057-May\u0012\u0013\bS\u0012\u0006\u0010\u00ef\u00f8\u0097\u00a8\u0006\"\u00071508142\u0012\u0011\bT\u0012\u0006\u0010\u00a3\u00fa\u0097\u00a8\u0006\"\u00058-Jan\u0012\u0011\bU\u0012\u0006\u0010\u00c7\u00fa\u0097\u00a8\u0006\"\u00059-Jan\u0012\u0012\bV\u0012\u0006\u0010\u00f5\u00fa\u0097\u00a8\u0006\"\u000610-Apr\u0012\u0012\bW\u0012\u0006\u0010\u00b7\u00fb\u0097\u00a8\u0006\"\u000610-Jan\u0012\u0011\bX\u0012\u0006\u0010\u00e0\u00fb\u0097\u00a8\u0006\"\u000544863\u0012\u0012\bY\u0012\u0006\u0010\u008d\u00fc\u0097\u00a8\u0006\"\u000610-Mar\u0012\u0012\bZ\u0012\u0006\u0010\u00cd\u00fc\u0097\u00a8\u0006\"\u000611-Jan\u0012\u0011\b[\u0012\u0006\u0010\u0087\u00fd\u0097\u00a8\u0006\"\u000539943\u0012\u0011\b\\\u0012\u0006\u0010\u00ad\u00fd\u0097\u00a8\u0006\"\u000539944\u0012\u0011\b]\u0012\u0006\u0010\u00d2\u00fe\u0097\u00a8\u0006\"\u000539947\u0012\u0011\b^\u0012\u0006\u0010\u00fc\u00fe\u0097\u00a8\u0006\"\u000539949\u0012\u0011\b_\u0012\u0006\u0010\u0086\u00ff\u0097\u00a8\u0006\"\u000539950\u0012\u0011\b`\u0012\u0006\u0010\u00c8\u00ff\u0097\u00a8\u0006\"\u000539952\u0012\u0011\ba\u0012\u0006\u0010\u00b8\u0080\u0098\u00a8\u0006\"\u000534529\u0012\u0011\bb\u0012\u0006\u0010\u0087\u0081\u0098\u00a8\u0006\"\u000539954\u0012\u0011\bc\u0012\u0006\u0010\u00e0\u0081\u0098\u00a8\u0006\"\u000539956\u0012\u0011\bd\u0012\u0006\u0010\u008e\u0083\u0098\u00a8\u0006\"\u000544967\u0012\u0011\be\u0012\u0006\u0010\u00d8\u0083\u0098\u00a8\u0006\"\u000544968\u0012\u0012\bf\u0012\u0006\u0010\u00aa\u0084\u0098\u00a8\u0006\"\u000614-May\u0012\u0012\bg\u0012\u0006\u0010\u00da\u0084\u0098\u00a8\u0006\"\u000614-Jun\u0012\u0012\bh\u0012\u0006\u0010\u00b4\u0085\u0098\u00a8\u0006\"\u000614-Aug\u001a\b\u001a\u0006ZT3638 \u00b0\u00e8\u0097\u00a8\u0006\"`\n/\n\u001023773-701ff27f-2\u0012\b14:31:00\u001a\b20230916 \u0000*\u00036130\u0000\u0012\u001d\r\u00ceK\u0013\u00c2\u0015[\u001b\u0092\u00c2\u001d\u0000\u0000\u0080B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000 A(\u00b0\u00e8\u0097\u00a8\u0006B\b\u001a\u0006ZT3638" + }, + { + "type": "con_recorrido", + "entity": "\n$7aba0fb3-279d-48b9-bd26-3c183fc8c157\u001a\u00b7\t\n/\n\u001023891-701ff27f-2\u0012\b16:30:00\u001a\b20230916 \u0000*\u00036140\u0001\u0012\u0011\b\"\u0012\u0006\u0010\u00c8\u00e8\u0097\u00a8\u0006\"\u000549310\u0012\u0011\b#\u0012\u0006\u0010\u00e9\u00e8\u0097\u00a8\u0006\"\u000549311\u0012\u0011\b$\u0012\u0006\u0010\u00a4\u00e9\u0097\u00a8\u0006\"\u000539634\u0012\u0011\b%\u0012\u0006\u0010\u00bf\u00e9\u0097\u00a8\u0006\"\u000539635\u0012\u0011\b&\u0012\u0006\u0010\u00ef\u00e9\u0097\u00a8\u0006\"\u000539636\u0012\u0011\b'\u0012\u0006\u0010\u00a0\u00eb\u0097\u00a8\u0006\"\u000539637\u0012\u0011\b(\u0012\u0006\u0010\u00d9\u00eb\u0097\u00a8\u0006\"\u000549317\u0012\u0011\b)\u0012\u0006\u0010\u00f9\u00eb\u0097\u00a8\u0006\"\u000549318\u0012\u0011\b*\u0012\u0006\u0010\u00bb\u00ec\u0097\u00a8\u0006\"\u000549319\u0012\u0011\b+\u0012\u0006\u0010\u00fa\u00ec\u0097\u00a8\u0006\"\u000539641\u0012\u0011\b,\u0012\u0006\u0010\u009d\u00ed\u0097\u00a8\u0006\"\u000539642\u0012\u0011\b-\u0012\u0006\u0010\u00ac\u00ee\u0097\u00a8\u0006\"\u000539643\u0012\u0011\b.\u0012\u0006\u0010\u00e2\u00ee\u0097\u00a8\u0006\"\u000549323\u0012\u0011\b/\u0012\u0006\u0010\u0088\u00ef\u0097\u00a8\u0006\"\u000549324\u0012\u0011\b0\u0012\u0006\u0010\u00b7\u00ef\u0097\u00a8\u0006\"\u000549325\u0012\u0011\b1\u0012\u0006\u0010\u00eb\u00ef\u0097\u00a8\u0006\"\u000549326\u0012\u0011\b2\u0012\u0006\u0010\u0085\u00f0\u0097\u00a8\u0006\"\u000539648\u0012\u0011\b3\u0012\u0006\u0010\u00b3\u00f0\u0097\u00a8\u0006\"\u000539649\u0012\u0011\b4\u0012\u0006\u0010\u00d2\u00f0\u0097\u00a8\u0006\"\u000545112\u0012\u0011\b5\u0012\u0006\u0010\u0084\u00f1\u0097\u00a8\u0006\"\u000545113\u0012\u0011\b6\u0012\u0006\u0010\u00d1\u00f1\u0097\u00a8\u0006\"\u000537490\u0012\u0011\b7\u0012\u0006\u0010\u0086\u00f2\u0097\u00a8\u0006\"\u000545115\u0012\u0011\b8\u0012\u0006\u0010\u009e\u00f2\u0097\u00a8\u0006\"\u000545116\u0012\u0011\b9\u0012\u0006\u0010\u00e3\u00f2\u0097\u00a8\u0006\"\u000545118\u0012\u0011\b:\u0012\u0006\u0010\u00ac\u00f3\u0097\u00a8\u0006\"\u000545119\u0012\u0011\b;\u0012\u0006\u0010\u00d9\u00f3\u0097\u00a8\u0006\"\u000545120\u0012\u0011\b<\u0012\u0006\u0010\u008f\u00f4\u0097\u00a8\u0006\"\u000545121\u0012\u0011\b=\u0012\u0006\u0010\u00b9\u00f4\u0097\u00a8\u0006\"\u000538535\u0012\u0011\b>\u0012\u0006\u0010\u0085\u00f5\u0097\u00a8\u0006\"\u000538536\u0012\u0013\b?\u0012\u0006\u0010\u00aa\u00f5\u0097\u00a8\u0006\"\u00074838437\u0012\u0011\b@\u0012\u0006\u0010\u00e1\u00f5\u0097\u00a8\u0006\"\u000545085\u0012\u0011\bA\u0012\u0006\u0010\u00b2\u00f6\u0097\u00a8\u0006\"\u000545086\u0012\u0011\bB\u0012\u0006\u0010\u00fc\u00f7\u0097\u00a8\u0006\"\u000538544\u0012\u0011\bC\u0012\u0006\u0010\u00c6\u00f8\u0097\u00a8\u0006\"\u000538545\u0012\u0011\bD\u0012\u0006\u0010\u00eb\u00f9\u0097\u00a8\u0006\"\u000545095\u0012\u0011\bE\u0012\u0006\u0010\u009a\u00fa\u0097\u00a8\u0006\"\u000545096\u0012\u0011\bF\u0012\u0006\u0010\u00e6\u00fa\u0097\u00a8\u0006\"\u000545098\u0012\u0011\bG\u0012\u0006\u0010\u008c\u00fb\u0097\u00a8\u0006\"\u000545099\u0012\u0011\bH\u0012\u0006\u0010\u00a3\u00fb\u0097\u00a8\u0006\"\u000545100\u0012\u0011\bI\u0012\u0006\u0010\u00c2\u00fb\u0097\u00a8\u0006\"\u000545101\u0012\u0011\bJ\u0012\u0006\u0010\u00ed\u00fb\u0097\u00a8\u0006\"\u000545102\u0012\u0011\bK\u0012\u0006\u0010\u008b\u00fc\u0097\u00a8\u0006\"\u000545103\u0012\u0011\bL\u0012\u0006\u0010\u00a8\u00fc\u0097\u00a8\u0006\"\u000545104\u0012\u0011\bM\u0012\u0006\u0010\u00c7\u00fc\u0097\u00a8\u0006\"\u000545122\u0012\u0011\bN\u0012\u0006\u0010\u0087\u00fd\u0097\u00a8\u0006\"\u000538630\u0012\u0011\bO\u0012\u0006\u0010\u0080\u00fe\u0097\u00a8\u0006\"\u000542365\u0012\u0011\bP\u0012\u0006\u0010\u009b\u00ff\u0097\u00a8\u0006\"\u000549349\u0012\u0011\bQ\u0012\u0006\u0010\u00c4\u0080\u0098\u00a8\u0006\"\u000549350\u0012\u0011\bR\u0012\u0006\u0010\u0084\u0081\u0098\u00a8\u0006\"\u000549351\u0012\u0011\bS\u0012\u0006\u0010\u00aa\u0081\u0098\u00a8\u0006\"\u000549352\u0012\u0011\bT\u0012\u0006\u0010\u00eb\u0081\u0098\u00a8\u0006\"\u000549353\u0012\u0011\bU\u0012\u0006\u0010\u00a7\u0082\u0098\u00a8\u0006\"\u000549354\u0012\u0011\bV\u0012\u0006\u0010\u00a4\u0083\u0098\u00a8\u0006\"\u000538567\u0012\u0011\bW\u0012\u0006\u0010\u00ea\u0083\u0098\u00a8\u0006\"\u000538568\u0012\u0011\bX\u0012\u0006\u0010\u0096\u0084\u0098\u00a8\u0006\"\u000538569\u0012\u0011\bY\u0012\u0006\u0010\u00d7\u0084\u0098\u00a8\u0006\"\u000538570\u0012\u0011\bZ\u0012\u0006\u0010\u00af\u0085\u0098\u00a8\u0006\"\u000538571\u0012\u0011\b[\u0012\u0006\u0010\u0084\u0086\u0098\u00a8\u0006\"\u000538572\u0012\u0011\b\\\u0012\u0006\u0010\u00f8\u0087\u0098\u00a8\u0006\"\u000540115\u0012\u0011\b]\u0012\u0006\u0010\u00d4\u0088\u0098\u00a8\u0006\"\u000540116\u001a\b\u001a\u0006DBLS31 \u00a2\u00e8\u0097\u00a8\u0006\"`\n/\n\u001023891-701ff27f-2\u0012\b16:30:00\u001a\b20230916 \u0000*\u00036140\u0001\u0012\u001d\r\u00edR\u0013\u00c2\u0015\u00ab\u001d\u0092\u00c2\u001d\u0000\u0000vC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a2\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DBLS31" + }, + { + "type": "con_recorrido", + "entity": "\n$96e73fca-363c-4f58-8805-75592c96d000\u001a\u00a6\u0006\n/\n\u001023937-701ff27f-2\u0012\b15:22:00\u001a\b20230916 \u0000*\u00036140\u0000\u0012\u0011\b5\u0012\u0006\u0010\u00cd\u00e8\u0097\u00a8\u0006\"\u000535694\u0012\u0011\b6\u0012\u0006\u0010\u00f8\u00e8\u0097\u00a8\u0006\"\u000535695\u0012\u0011\b7\u0012\u0006\u0010\u00da\u00ea\u0097\u00a8\u0006\"\u000535697\u0012\u0011\b8\u0012\u0006\u0010\u00bc\u00eb\u0097\u00a8\u0006\"\u00052-Jan\u0012\u0011\b9\u0012\u0006\u0010\u00df\u00eb\u0097\u00a8\u0006\"\u000542460\u0012\u0011\b:\u0012\u0006\u0010\u0084\u00ec\u0097\u00a8\u0006\"\u000535690\u0012\u0011\b;\u0012\u0006\u0010\u00e5\u00ec\u0097\u00a8\u0006\"\u000535700\u0012\u0011\b<\u0012\u0006\u0010\u0082\u00ed\u0097\u00a8\u0006\"\u000535701\u0012\u0011\b=\u0012\u0006\u0010\u00c2\u00ed\u0097\u00a8\u0006\"\u000535703\u0012\u0011\b>\u0012\u0006\u0010\u00d1\u00ed\u0097\u00a8\u0006\"\u000535704\u0012\u0011\b?\u0012\u0006\u0010\u00e6\u00ed\u0097\u00a8\u0006\"\u000535705\u0012\u0011\b@\u0012\u0006\u0010\u00f9\u00ed\u0097\u00a8\u0006\"\u000535706\u0012\u0011\bA\u0012\u0006\u0010\u00af\u00ee\u0097\u00a8\u0006\"\u000535707\u0012\u0011\bB\u0012\u0006\u0010\u00c7\u00ee\u0097\u00a8\u0006\"\u000535708\u0012\u0011\bC\u0012\u0006\u0010\u00d6\u00ee\u0097\u00a8\u0006\"\u000535709\u0012\u0011\bD\u0012\u0006\u0010\u0098\u00ef\u0097\u00a8\u0006\"\u000540306\u0012\u0011\bE\u0012\u0006\u0010\u00d7\u00ef\u0097\u00a8\u0006\"\u000540308\u0012\u0011\bF\u0012\u0006\u0010\u009d\u00f0\u0097\u00a8\u0006\"\u000540309\u0012\u0011\bG\u0012\u0006\u0010\u0090\u00f1\u0097\u00a8\u0006\"\u000539504\u0012\u0011\bH\u0012\u0006\u0010\u00af\u00f1\u0097\u00a8\u0006\"\u000539595\u0012\u0011\bI\u0012\u0006\u0010\u00be\u00f1\u0097\u00a8\u0006\"\u000539759\u0012\u0011\bJ\u0012\u0006\u0010\u00f9\u00f1\u0097\u00a8\u0006\"\u000539760\u0012\u0011\bK\u0012\u0006\u0010\u00a0\u00f2\u0097\u00a8\u0006\"\u000539761\u0012\u0011\bL\u0012\u0006\u0010\u00c6\u00f2\u0097\u00a8\u0006\"\u000539511\u0012\u0011\bM\u0012\u0006\u0010\u00a9\u00f3\u0097\u00a8\u0006\"\u000539705\u0012\u0011\bN\u0012\u0006\u0010\u00d3\u00f3\u0097\u00a8\u0006\"\u000539706\u0012\u0011\bO\u0012\u0006\u0010\u00e5\u00f3\u0097\u00a8\u0006\"\u000539707\u0012\u0011\bP\u0012\u0006\u0010\u008c\u00f4\u0097\u00a8\u0006\"\u000539708\u0012\u0011\bQ\u0012\u0006\u0010\u00a5\u00f4\u0097\u00a8\u0006\"\u000539709\u0012\u0011\bR\u0012\u0006\u0010\u00cb\u00f4\u0097\u00a8\u0006\"\u000539711\u0012\u0011\bS\u0012\u0006\u0010\u00f2\u00f4\u0097\u00a8\u0006\"\u000539712\u0012\u0011\bT\u0012\u0006\u0010\u0092\u00f5\u0097\u00a8\u0006\"\u000539714\u0012\u0011\bU\u0012\u0006\u0010\u00b3\u00f5\u0097\u00a8\u0006\"\u000539715\u0012\u0011\bV\u0012\u0006\u0010\u00c9\u00f5\u0097\u00a8\u0006\"\u000539470\u0012\u0011\bW\u0012\u0006\u0010\u00df\u00f5\u0097\u00a8\u0006\"\u000539471\u0012\u0011\bX\u0012\u0006\u0010\u00fb\u00f5\u0097\u00a8\u0006\"\u000539472\u0012\u0011\bY\u0012\u0006\u0010\u009f\u00f6\u0097\u00a8\u0006\"\u000539473\u0012\u0011\bZ\u0012\u0006\u0010\u00b9\u00f6\u0097\u00a8\u0006\"\u000539718\u0012\u0011\b[\u0012\u0006\u0010\u00d2\u00f6\u0097\u00a8\u0006\"\u000539494\u001a\b\u001a\u0006DGLF57 \u0096\u00e8\u0097\u00a8\u0006\"`\n/\n\u001023937-701ff27f-2\u0012\b15:22:00\u001a\b20230916 \u0000*\u00036140\u0000\u0012\u001d\ri>\u0013\u00c2\u0015s%\u0092\u00c2\u001d\u0000\u0000\u00f4B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008e\u00e3\u00f8?(\u0096\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DGLF57" + }, + { + "type": "con_recorrido", + "entity": "\n$3deabf33-4c16-4f3f-8383-d18d6c90f984\u001a\u00a2\t\n/\n\u001023938-701ff27f-2\u0012\b15:42:00\u001a\b20230916 \u0000*\u00036140\u0000\u0012\u0011\b!\u0012\u0006\u0010\u0099\u00e8\u0097\u00a8\u0006\"\u000542271\u0012\u0011\b\"\u0012\u0006\u0010\u00e5\u00e9\u0097\u00a8\u0006\"\u000538688\u0012\u0011\b#\u0012\u0006\u0010\u009e\u00ea\u0097\u00a8\u0006\"\u000538673\u0012\u0011\b$\u0012\u0006\u0010\u00ec\u00ea\u0097\u00a8\u0006\"\u000539785\u0012\u0011\b%\u0012\u0006\u0010\u0094\u00eb\u0097\u00a8\u0006\"\u000538664\u0012\u0011\b&\u0012\u0006\u0010\u00ca\u00eb\u0097\u00a8\u0006\"\u000538702\u0012\u0011\b'\u0012\u0006\u0010\u00f6\u00eb\u0097\u00a8\u0006\"\u000539787\u0012\u0011\b(\u0012\u0006\u0010\u009f\u00ec\u0097\u00a8\u0006\"\u000538501\u0012\u0011\b)\u0012\u0006\u0010\u00e1\u00ec\u0097\u00a8\u0006\"\u000538692\u0012\u0011\b*\u0012\u0006\u0010\u00a5\u00ed\u0097\u00a8\u0006\"\u000538714\u0012\u0011\b+\u0012\u0006\u0010\u00d4\u00ed\u0097\u00a8\u0006\"\u000539791\u0012\u0011\b,\u0012\u0006\u0010\u00ef\u00ed\u0097\u00a8\u0006\"\u000538506\u0012\u0011\b-\u0012\u0006\u0010\u009f\u00ee\u0097\u00a8\u0006\"\u000538635\u0012\u0011\b.\u0012\u0006\u0010\u00bf\u00ee\u0097\u00a8\u0006\"\u000538509\u0012\u0011\b/\u0012\u0006\u0010\u00ea\u00ee\u0097\u00a8\u0006\"\u000538642\u0012\u0011\b0\u0012\u0006\u0010\u0092\u00ef\u0097\u00a8\u0006\"\u000539795\u0012\u0011\b1\u0012\u0006\u0010\u00b5\u00ef\u0097\u00a8\u0006\"\u000538502\u0012\u0011\b2\u0012\u0006\u0010\u00ee\u00ef\u0097\u00a8\u0006\"\u000538503\u0012\u0011\b3\u0012\u0006\u0010\u0087\u00f1\u0097\u00a8\u0006\"\u000535691\u0012\u0011\b4\u0012\u0006\u0010\u00e7\u00f1\u0097\u00a8\u0006\"\u000535693\u0012\u0011\b5\u0012\u0006\u0010\u009d\u00f2\u0097\u00a8\u0006\"\u000535694\u0012\u0011\b6\u0012\u0006\u0010\u00c4\u00f2\u0097\u00a8\u0006\"\u000535695\u0012\u0011\b7\u0012\u0006\u0010\u009c\u00f4\u0097\u00a8\u0006\"\u000535697\u0012\u0011\b8\u0012\u0006\u0010\u00fd\u00f4\u0097\u00a8\u0006\"\u00052-Jan\u0012\u0011\b9\u0012\u0006\u0010\u00a0\u00f5\u0097\u00a8\u0006\"\u000542460\u0012\u0011\b:\u0012\u0006\u0010\u00c6\u00f5\u0097\u00a8\u0006\"\u000535690\u0012\u0011\b;\u0012\u0006\u0010\u00aa\u00f6\u0097\u00a8\u0006\"\u000535700\u0012\u0011\b<\u0012\u0006\u0010\u00c8\u00f6\u0097\u00a8\u0006\"\u000535701\u0012\u0011\b=\u0012\u0006\u0010\u008c\u00f7\u0097\u00a8\u0006\"\u000535703\u0012\u0011\b>\u0012\u0006\u0010\u009c\u00f7\u0097\u00a8\u0006\"\u000535704\u0012\u0011\b?\u0012\u0006\u0010\u00b4\u00f7\u0097\u00a8\u0006\"\u000535705\u0012\u0011\b@\u0012\u0006\u0010\u00c8\u00f7\u0097\u00a8\u0006\"\u000535706\u0012\u0011\bA\u0012\u0006\u0010\u0082\u00f8\u0097\u00a8\u0006\"\u000535707\u0012\u0011\bB\u0012\u0006\u0010\u009d\u00f8\u0097\u00a8\u0006\"\u000535708\u0012\u0011\bC\u0012\u0006\u0010\u00ae\u00f8\u0097\u00a8\u0006\"\u000535709\u0012\u0011\bD\u0012\u0006\u0010\u00f8\u00f8\u0097\u00a8\u0006\"\u000540306\u0012\u0011\bE\u0012\u0006\u0010\u00bf\u00f9\u0097\u00a8\u0006\"\u000540308\u0012\u0011\bF\u0012\u0006\u0010\u008f\u00fa\u0097\u00a8\u0006\"\u000540309\u0012\u0011\bG\u0012\u0006\u0010\u0098\u00fb\u0097\u00a8\u0006\"\u000539504\u0012\u0011\bH\u0012\u0006\u0010\u00bc\u00fb\u0097\u00a8\u0006\"\u000539595\u0012\u0011\bI\u0012\u0006\u0010\u00cf\u00fb\u0097\u00a8\u0006\"\u000539759\u0012\u0011\bJ\u0012\u0006\u0010\u0097\u00fc\u0097\u00a8\u0006\"\u000539760\u0012\u0011\bK\u0012\u0006\u0010\u00c6\u00fc\u0097\u00a8\u0006\"\u000539761\u0012\u0011\bL\u0012\u0006\u0010\u00f5\u00fc\u0097\u00a8\u0006\"\u000539511\u0012\u0011\bM\u0012\u0006\u0010\u00f3\u00fd\u0097\u00a8\u0006\"\u000539705\u0012\u0011\bN\u0012\u0006\u0010\u00a8\u00fe\u0097\u00a8\u0006\"\u000539706\u0012\u0011\bO\u0012\u0006\u0010\u00bf\u00fe\u0097\u00a8\u0006\"\u000539707\u0012\u0011\bP\u0012\u0006\u0010\u00f2\u00fe\u0097\u00a8\u0006\"\u000539708\u0012\u0011\bQ\u0012\u0006\u0010\u0092\u00ff\u0097\u00a8\u0006\"\u000539709\u0012\u0011\bR\u0012\u0006\u0010\u00c5\u00ff\u0097\u00a8\u0006\"\u000539711\u0012\u0011\bS\u0012\u0006\u0010\u00f9\u00ff\u0097\u00a8\u0006\"\u000539712\u0012\u0011\bT\u0012\u0006\u0010\u00a3\u0080\u0098\u00a8\u0006\"\u000539714\u0012\u0011\bU\u0012\u0006\u0010\u00cf\u0080\u0098\u00a8\u0006\"\u000539715\u0012\u0011\bV\u0012\u0006\u0010\u00ee\u0080\u0098\u00a8\u0006\"\u000539470\u0012\u0011\bW\u0012\u0006\u0010\u008b\u0081\u0098\u00a8\u0006\"\u000539471\u0012\u0011\bX\u0012\u0006\u0010\u00b2\u0081\u0098\u00a8\u0006\"\u000539472\u0012\u0011\bY\u0012\u0006\u0010\u00e4\u0081\u0098\u00a8\u0006\"\u000539473\u0012\u0011\bZ\u0012\u0006\u0010\u0088\u0082\u0098\u00a8\u0006\"\u000539718\u0012\u0011\b[\u0012\u0006\u0010\u00ab\u0082\u0098\u00a8\u0006\"\u000539494\u001a\b\u001a\u0006DSKF38 \u008c\u00e8\u0097\u00a8\u0006\"`\n/\n\u001023938-701ff27f-2\u0012\b15:42:00\u001a\b20230916 \u0000*\u00036140\u0000\u0012\u001d\r\u0087\n\u0013\u00c2\u0015\u00a1-\u0092\u00c2\u001d\u0000\u0000\u0014C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u001c\u00c7YA(\u008c\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DSKF38" + }, + { + "type": "con_recorrido", + "entity": "\n$65113a71-ba62-4ea3-a8f5-479b37b7513c\u001a\u00d9\f\n/\n\u001023886-701ff27f-2\u0012\b14:00:00\u001a\b20230916 \u0000*\u00036140\u0001\u0012\u0011\b\f\u0012\u0006\u0010\u00c0\u00e8\u0097\u00a8\u0006\"\u000539523\u0012\u0011\b\r\u0012\u0006\u0010\u00d9\u00e8\u0097\u00a8\u0006\"\u000539524\u0012\u0011\b\u000e\u0012\u0006\u0010\u00fb\u00e8\u0097\u00a8\u0006\"\u000539705\u0012\u0011\b\u000f\u0012\u0006\u0010\u0094\u00e9\u0097\u00a8\u0006\"\u000539918\u0012\u0011\b\u0010\u0012\u0006\u0010\u00c4\u00e9\u0097\u00a8\u0006\"\u000539513\u0012\u0011\b\u0011\u0012\u0006\u0010\u0088\u00ea\u0097\u00a8\u0006\"\u000539592\u0012\u0011\b\u0012\u0012\u0006\u0010\u00c5\u00ea\u0097\u00a8\u0006\"\u000539593\u0012\u0011\b\u0013\u0012\u0006\u0010\u00e6\u00ea\u0097\u00a8\u0006\"\u000539594\u0012\u0011\b\u0014\u0012\u0006\u0010\u00d6\u00eb\u0097\u00a8\u0006\"\u000539505\u0012\u0011\b\u0015\u0012\u0006\u0010\u00f4\u00eb\u0097\u00a8\u0006\"\u000539506\u0012\u0011\b\u0016\u0012\u0006\u0010\u0090\u00ec\u0097\u00a8\u0006\"\u000590003\u0012\u0011\b\u0017\u0012\u0006\u0010\u00bd\u00ec\u0097\u00a8\u0006\"\u000590007\u0012\u0011\b\u0018\u0012\u0006\u0010\u00e6\u00ec\u0097\u00a8\u0006\"\u000540830\u0012\u0011\b\u0019\u0012\u0006\u0010\u008c\u00ed\u0097\u00a8\u0006\"\u000540831\u0012\u0011\b\u001a\u0012\u0006\u0010\u00dc\u00ed\u0097\u00a8\u0006\"\u000539599\u0012\u0011\b\u001b\u0012\u0006\u0010\u00f2\u00ed\u0097\u00a8\u0006\"\u000539600\u0012\u0011\b\u001c\u0012\u0006\u0010\u00b4\u00ee\u0097\u00a8\u0006\"\u000537496\u0012\u0011\b\u001d\u0012\u0006\u0010\u00e4\u00ee\u0097\u00a8\u0006\"\u000545064\u0012\u0011\b\u001e\u0012\u0006\u0010\u00ab\u00ef\u0097\u00a8\u0006\"\u000537506\u0012\u0011\b\u001f\u0012\u0006\u0010\u00f4\u00ef\u0097\u00a8\u0006\"\u000545069\u0012\u0011\b \u0012\u0006\u0010\u00e1\u00f0\u0097\u00a8\u0006\"\u000537523\u0012\u0011\b!\u0012\u0006\u0010\u0088\u00f1\u0097\u00a8\u0006\"\u000537477\u0012\u0011\b\"\u0012\u0006\u0010\u00dd\u00f1\u0097\u00a8\u0006\"\u000549310\u0012\u0011\b#\u0012\u0006\u0010\u00fb\u00f1\u0097\u00a8\u0006\"\u000549311\u0012\u0011\b$\u0012\u0006\u0010\u00b2\u00f2\u0097\u00a8\u0006\"\u000539634\u0012\u0011\b%\u0012\u0006\u0010\u00ca\u00f2\u0097\u00a8\u0006\"\u000539635\u0012\u0011\b&\u0012\u0006\u0010\u00f8\u00f2\u0097\u00a8\u0006\"\u000539636\u0012\u0011\b'\u0012\u0006\u0010\u00a3\u00f4\u0097\u00a8\u0006\"\u000539637\u0012\u0011\b(\u0012\u0006\u0010\u00dc\u00f4\u0097\u00a8\u0006\"\u000549317\u0012\u0011\b)\u0012\u0006\u0010\u00fb\u00f4\u0097\u00a8\u0006\"\u000549318\u0012\u0011\b*\u0012\u0006\u0010\u00be\u00f5\u0097\u00a8\u0006\"\u000549319\u0012\u0011\b+\u0012\u0006\u0010\u00ff\u00f5\u0097\u00a8\u0006\"\u000539641\u0012\u0011\b,\u0012\u0006\u0010\u00a3\u00f6\u0097\u00a8\u0006\"\u000539642\u0012\u0011\b-\u0012\u0006\u0010\u00bc\u00f7\u0097\u00a8\u0006\"\u000539643\u0012\u0011\b.\u0012\u0006\u0010\u00f6\u00f7\u0097\u00a8\u0006\"\u000549323\u0012\u0011\b/\u0012\u0006\u0010\u009f\u00f8\u0097\u00a8\u0006\"\u000549324\u0012\u0011\b0\u0012\u0006\u0010\u00d3\u00f8\u0097\u00a8\u0006\"\u000549325\u0012\u0011\b1\u0012\u0006\u0010\u008e\u00f9\u0097\u00a8\u0006\"\u000549326\u0012\u0011\b2\u0012\u0006\u0010\u00ab\u00f9\u0097\u00a8\u0006\"\u000539648\u0012\u0011\b3\u0012\u0006\u0010\u00df\u00f9\u0097\u00a8\u0006\"\u000539649\u0012\u0011\b4\u0012\u0006\u0010\u0083\u00fa\u0097\u00a8\u0006\"\u000545112\u0012\u0011\b5\u0012\u0006\u0010\u00bd\u00fa\u0097\u00a8\u0006\"\u000545113\u0012\u0011\b6\u0012\u0006\u0010\u0098\u00fb\u0097\u00a8\u0006\"\u000537490\u0012\u0011\b7\u0012\u0006\u0010\u00d7\u00fb\u0097\u00a8\u0006\"\u000545115\u0012\u0011\b8\u0012\u0006\u0010\u00f3\u00fb\u0097\u00a8\u0006\"\u000545116\u0012\u0011\b9\u0012\u0006\u0010\u00c7\u00fc\u0097\u00a8\u0006\"\u000545118\u0012\u0011\b:\u0012\u0006\u0010\u00a2\u00fd\u0097\u00a8\u0006\"\u000545119\u0012\u0011\b;\u0012\u0006\u0010\u00d9\u00fd\u0097\u00a8\u0006\"\u000545120\u0012\u0011\b<\u0012\u0006\u0010\u009d\u00fe\u0097\u00a8\u0006\"\u000545121\u0012\u0011\b=\u0012\u0006\u0010\u00d2\u00fe\u0097\u00a8\u0006\"\u000538535\u0012\u0011\b>\u0012\u0006\u0010\u00b5\u00ff\u0097\u00a8\u0006\"\u000538536\u0012\u0013\b?\u0012\u0006\u0010\u00e5\u00ff\u0097\u00a8\u0006\"\u00074838437\u0012\u0011\b@\u0012\u0006\u0010\u00ae\u0080\u0098\u00a8\u0006\"\u000545085\u0012\u0011\bA\u0012\u0006\u0010\u009a\u0081\u0098\u00a8\u0006\"\u000545086\u0012\u0011\bB\u0012\u0006\u0010\u00b0\u0083\u0098\u00a8\u0006\"\u000538544\u0012\u0011\bC\u0012\u0006\u0010\u0098\u0084\u0098\u00a8\u0006\"\u000538545\u0012\u0011\bD\u0012\u0006\u0010\u0088\u0086\u0098\u00a8\u0006\"\u000545095\u0012\u0011\bE\u0012\u0006\u0010\u00cc\u0086\u0098\u00a8\u0006\"\u000545096\u0012\u0011\bF\u0012\u0006\u0010\u00be\u0087\u0098\u00a8\u0006\"\u000545098\u0012\u0011\bG\u0012\u0006\u0010\u00f7\u0087\u0098\u00a8\u0006\"\u000545099\u0012\u0011\bH\u0012\u0006\u0010\u009b\u0088\u0098\u00a8\u0006\"\u000545100\u0012\u0011\bI\u0012\u0006\u0010\u00ca\u0088\u0098\u00a8\u0006\"\u000545101\u0012\u0011\bJ\u0012\u0006\u0010\u008c\u0089\u0098\u00a8\u0006\"\u000545102\u0012\u0011\bK\u0012\u0006\u0010\u00bb\u0089\u0098\u00a8\u0006\"\u000545103\u0012\u0011\bL\u0012\u0006\u0010\u00e8\u0089\u0098\u00a8\u0006\"\u000545104\u0012\u0011\bM\u0012\u0006\u0010\u0099\u008a\u0098\u00a8\u0006\"\u000545122\u0012\u0011\bN\u0012\u0006\u0010\u00fe\u008a\u0098\u00a8\u0006\"\u000538630\u0012\u0011\bO\u0012\u0006\u0010\u00c1\u008c\u0098\u00a8\u0006\"\u000542365\u0012\u0011\bP\u0012\u0006\u0010\u00c1\u008e\u0098\u00a8\u0006\"\u000549349\u0012\u0011\bQ\u0012\u0006\u0010\u00e0\u0090\u0098\u00a8\u0006\"\u000549350\u0012\u0011\bR\u0012\u0006\u0010\u00d0\u0091\u0098\u00a8\u0006\"\u000549351\u0012\u0011\bS\u0012\u0006\u0010\u0092\u0092\u0098\u00a8\u0006\"\u000549352\u0012\u0011\bT\u0012\u0006\u0010\u0085\u0093\u0098\u00a8\u0006\"\u000549353\u0012\u0011\bU\u0012\u0006\u0010\u00f1\u0093\u0098\u00a8\u0006\"\u000549354\u0012\u0011\bV\u0012\u0006\u0010\u00d6\u0095\u0098\u00a8\u0006\"\u000538567\u0012\u0011\bW\u0012\u0006\u0010\u00d8\u0096\u0098\u00a8\u0006\"\u000538568\u0012\u0011\bX\u0012\u0006\u0010\u00a9\u0097\u0098\u00a8\u0006\"\u000538569\u0012\u0011\bY\u0012\u0006\u0010\u00a4\u0098\u0098\u00a8\u0006\"\u000538570\u0012\u0011\bZ\u0012\u0006\u0010\u00ce\u0099\u0098\u00a8\u0006\"\u000538571\u0012\u0011\b[\u0012\u0006\u0010\u00f4\u009a\u0098\u00a8\u0006\"\u000538572\u0012\u0011\b\\\u0012\u0006\u0010\u00df\u009e\u0098\u00a8\u0006\"\u000540115\u0012\u0011\b]\u0012\u0006\u0010\u00a0\u00a0\u0098\u00a8\u0006\"\u000540116\u001a\b\u001a\u0006DVYS65 \u00ac\u00e8\u0097\u00a8\u0006\"`\n/\n\u001023886-701ff27f-2\u0012\b14:00:00\u001a\b20230916 \u0000*\u00036140\u0001\u0012\u001d\r?4\u0013\u00c2\u0015b\u0012\u0092\u00c2\u001d\u0000\u0000\u0080B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ac\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DVYS65" + }, + { + "type": "con_recorrido", + "entity": "\n$65b6e3df-585e-4674-a9cd-dab07c30ebe5\u001a\u00d3\u0007\n/\n\u001023890-701ff27f-2\u0012\b16:00:00\u001a\b20230916 \u0000*\u00036140\u0001\u0012\u0011\b.\u0012\u0006\u0010\u00c1\u00e8\u0097\u00a8\u0006\"\u000549323\u0012\u0011\b/\u0012\u0006\u0010\u00eb\u00e8\u0097\u00a8\u0006\"\u000549324\u0012\u0011\b0\u0012\u0006\u0010\u009e\u00e9\u0097\u00a8\u0006\"\u000549325\u0012\u0011\b1\u0012\u0006\u0010\u00d6\u00e9\u0097\u00a8\u0006\"\u000549326\u0012\u0011\b2\u0012\u0006\u0010\u00f2\u00e9\u0097\u00a8\u0006\"\u000539648\u0012\u0011\b3\u0012\u0006\u0010\u00a3\u00ea\u0097\u00a8\u0006\"\u000539649\u0012\u0011\b4\u0012\u0006\u0010\u00c4\u00ea\u0097\u00a8\u0006\"\u000545112\u0012\u0011\b5\u0012\u0006\u0010\u00f9\u00ea\u0097\u00a8\u0006\"\u000545113\u0012\u0011\b6\u0012\u0006\u0010\u00c9\u00eb\u0097\u00a8\u0006\"\u000537490\u0012\u0011\b7\u0012\u0006\u0010\u00ff\u00eb\u0097\u00a8\u0006\"\u000545115\u0012\u0011\b8\u0012\u0006\u0010\u0098\u00ec\u0097\u00a8\u0006\"\u000545116\u0012\u0011\b9\u0012\u0006\u0010\u00de\u00ec\u0097\u00a8\u0006\"\u000545118\u0012\u0011\b:\u0012\u0006\u0010\u00a8\u00ed\u0097\u00a8\u0006\"\u000545119\u0012\u0011\b;\u0012\u0006\u0010\u00d4\u00ed\u0097\u00a8\u0006\"\u000545120\u0012\u0011\b<\u0012\u0006\u0010\u0089\u00ee\u0097\u00a8\u0006\"\u000545121\u0012\u0011\b=\u0012\u0006\u0010\u00b2\u00ee\u0097\u00a8\u0006\"\u000538535\u0012\u0011\b>\u0012\u0006\u0010\u00fd\u00ee\u0097\u00a8\u0006\"\u000538536\u0012\u0013\b?\u0012\u0006\u0010\u00a0\u00ef\u0097\u00a8\u0006\"\u00074838437\u0012\u0011\b@\u0012\u0006\u0010\u00d5\u00ef\u0097\u00a8\u0006\"\u000545085\u0012\u0011\bA\u0012\u0006\u0010\u00a2\u00f0\u0097\u00a8\u0006\"\u000545086\u0012\u0011\bB\u0012\u0006\u0010\u00dc\u00f1\u0097\u00a8\u0006\"\u000538544\u0012\u0011\bC\u0012\u0006\u0010\u009f\u00f2\u0097\u00a8\u0006\"\u000538545\u0012\u0011\bD\u0012\u0006\u0010\u00b4\u00f3\u0097\u00a8\u0006\"\u000545095\u0012\u0011\bE\u0012\u0006\u0010\u00dc\u00f3\u0097\u00a8\u0006\"\u000545096\u0012\u0011\bF\u0012\u0006\u0010\u009f\u00f4\u0097\u00a8\u0006\"\u000545098\u0012\u0011\bG\u0012\u0006\u0010\u00c0\u00f4\u0097\u00a8\u0006\"\u000545099\u0012\u0011\bH\u0012\u0006\u0010\u00d4\u00f4\u0097\u00a8\u0006\"\u000545100\u0012\u0011\bI\u0012\u0006\u0010\u00ef\u00f4\u0097\u00a8\u0006\"\u000545101\u0012\u0011\bJ\u0012\u0006\u0010\u0094\u00f5\u0097\u00a8\u0006\"\u000545102\u0012\u0011\bK\u0012\u0006\u0010\u00ae\u00f5\u0097\u00a8\u0006\"\u000545103\u0012\u0011\bL\u0012\u0006\u0010\u00c6\u00f5\u0097\u00a8\u0006\"\u000545104\u0012\u0011\bM\u0012\u0006\u0010\u00e0\u00f5\u0097\u00a8\u0006\"\u000545122\u0012\u0011\bN\u0012\u0006\u0010\u0097\u00f6\u0097\u00a8\u0006\"\u000538630\u0012\u0011\bO\u0012\u0006\u0010\u00fc\u00f6\u0097\u00a8\u0006\"\u000542365\u0012\u0011\bP\u0012\u0006\u0010\u00fb\u00f7\u0097\u00a8\u0006\"\u000549349\u0012\u0011\bQ\u0012\u0006\u0010\u0083\u00f9\u0097\u00a8\u0006\"\u000549350\u0012\u0011\bR\u0012\u0006\u0010\u00b6\u00f9\u0097\u00a8\u0006\"\u000549351\u0012\u0011\bS\u0012\u0006\u0010\u00d4\u00f9\u0097\u00a8\u0006\"\u000549352\u0012\u0011\bT\u0012\u0006\u0010\u0087\u00fa\u0097\u00a8\u0006\"\u000549353\u0012\u0011\bU\u0012\u0006\u0010\u00b6\u00fa\u0097\u00a8\u0006\"\u000549354\u0012\u0011\bV\u0012\u0006\u0010\u0097\u00fb\u0097\u00a8\u0006\"\u000538567\u0012\u0011\bW\u0012\u0006\u0010\u00cd\u00fb\u0097\u00a8\u0006\"\u000538568\u0012\u0011\bX\u0012\u0006\u0010\u00ee\u00fb\u0097\u00a8\u0006\"\u000538569\u0012\u0011\bY\u0012\u0006\u0010\u00a0\u00fc\u0097\u00a8\u0006\"\u000538570\u0012\u0011\bZ\u0012\u0006\u0010\u00e3\u00fc\u0097\u00a8\u0006\"\u000538571\u0012\u0011\b[\u0012\u0006\u0010\u00a2\u00fd\u0097\u00a8\u0006\"\u000538572\u0012\u0011\b\\\u0012\u0006\u0010\u00d6\u00fe\u0097\u00a8\u0006\"\u000540115\u0012\u0011\b]\u0012\u0006\u0010\u0099\u00ff\u0097\u00a8\u0006\"\u000540116\u001a\b\u001a\u0006FXFW84 \u00ae\u00e8\u0097\u00a8\u0006\"`\n/\n\u001023890-701ff27f-2\u0012\b16:00:00\u001a\b20230916 \u0000*\u00036140\u0001\u0012\u001d\r\u00ef4\u0013\u00c2\u0015\u00b2*\u0092\u00c2\u001d\u0000\u0000\u009fC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UU-A(\u00ae\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FXFW84" + }, + { + "type": "con_recorrido", + "entity": "\n$1ac5816d-5675-4e8b-a322-b25c52a374ef\u001a\u00dc\u0005\n/\n\u001023889-701ff27f-2\u0012\b15:30:00\u001a\b20230916 \u0000*\u00036140\u0001\u0012\u0011\b;\u0012\u0006\u0010\u00f2\u00e8\u0097\u00a8\u0006\"\u000545120\u0012\u0011\b<\u0012\u0006\u0010\u00ad\u00e9\u0097\u00a8\u0006\"\u000545121\u0012\u0011\b=\u0012\u0006\u0010\u00d8\u00e9\u0097\u00a8\u0006\"\u000538535\u0012\u0011\b>\u0012\u0006\u0010\u00a8\u00ea\u0097\u00a8\u0006\"\u000538536\u0012\u0013\b?\u0012\u0006\u0010\u00cd\u00ea\u0097\u00a8\u0006\"\u00074838437\u0012\u0011\b@\u0012\u0006\u0010\u0085\u00eb\u0097\u00a8\u0006\"\u000545085\u0012\u0011\bA\u0012\u0006\u0010\u00d6\u00eb\u0097\u00a8\u0006\"\u000545086\u0012\u0011\bB\u0012\u0006\u0010\u0096\u00ed\u0097\u00a8\u0006\"\u000538544\u0012\u0011\bC\u0012\u0006\u0010\u00d9\u00ed\u0097\u00a8\u0006\"\u000538545\u0012\u0011\bD\u0012\u0006\u0010\u00ed\u00ee\u0097\u00a8\u0006\"\u000545095\u0012\u0011\bE\u0012\u0006\u0010\u0096\u00ef\u0097\u00a8\u0006\"\u000545096\u0012\u0011\bF\u0012\u0006\u0010\u00d7\u00ef\u0097\u00a8\u0006\"\u000545098\u0012\u0011\bG\u0012\u0006\u0010\u00f7\u00ef\u0097\u00a8\u0006\"\u000545099\u0012\u0011\bH\u0012\u0006\u0010\u008b\u00f0\u0097\u00a8\u0006\"\u000545100\u0012\u0011\bI\u0012\u0006\u0010\u00a4\u00f0\u0097\u00a8\u0006\"\u000545101\u0012\u0011\bJ\u0012\u0006\u0010\u00c8\u00f0\u0097\u00a8\u0006\"\u000545102\u0012\u0011\bK\u0012\u0006\u0010\u00e1\u00f0\u0097\u00a8\u0006\"\u000545103\u0012\u0011\bL\u0012\u0006\u0010\u00f8\u00f0\u0097\u00a8\u0006\"\u000545104\u0012\u0011\bM\u0012\u0006\u0010\u0091\u00f1\u0097\u00a8\u0006\"\u000545122\u0012\u0011\bN\u0012\u0006\u0010\u00c5\u00f1\u0097\u00a8\u0006\"\u000538630\u0012\u0011\bO\u0012\u0006\u0010\u00a4\u00f2\u0097\u00a8\u0006\"\u000542365\u0012\u0011\bP\u0012\u0006\u0010\u009a\u00f3\u0097\u00a8\u0006\"\u000549349\u0012\u0011\bQ\u0012\u0006\u0010\u0097\u00f4\u0097\u00a8\u0006\"\u000549350\u0012\u0011\bR\u0012\u0006\u0010\u00c6\u00f4\u0097\u00a8\u0006\"\u000549351\u0012\u0011\bS\u0012\u0006\u0010\u00e1\u00f4\u0097\u00a8\u0006\"\u000549352\u0012\u0011\bT\u0012\u0006\u0010\u008e\u00f5\u0097\u00a8\u0006\"\u000549353\u0012\u0011\bU\u0012\u0006\u0010\u00b9\u00f5\u0097\u00a8\u0006\"\u000549354\u0012\u0011\bV\u0012\u0006\u0010\u008f\u00f6\u0097\u00a8\u0006\"\u000538567\u0012\u0011\bW\u0012\u0006\u0010\u00bf\u00f6\u0097\u00a8\u0006\"\u000538568\u0012\u0011\bX\u0012\u0006\u0010\u00dc\u00f6\u0097\u00a8\u0006\"\u000538569\u0012\u0011\bY\u0012\u0006\u0010\u0087\u00f7\u0097\u00a8\u0006\"\u000538570\u0012\u0011\bZ\u0012\u0006\u0010\u00c1\u00f7\u0097\u00a8\u0006\"\u000538571\u0012\u0011\b[\u0012\u0006\u0010\u00f8\u00f7\u0097\u00a8\u0006\"\u000538572\u0012\u0011\b\\\u0012\u0006\u0010\u0092\u00f9\u0097\u00a8\u0006\"\u000540115\u0012\u0011\b]\u0012\u0006\u0010\u00cb\u00f9\u0097\u00a8\u0006\"\u000540116\u001a\b\u001a\u0006FXRL40 \u00cc\u00e8\u0097\u00a8\u0006\"`\n/\n\u001023889-701ff27f-2\u0012\b15:30:00\u001a\b20230916 \u0000*\u00036140\u0001\u0012\u001d\r\u00b5\u0018\u0013\u00c2\u0015\u00a2+\u0092\u00c2\u001d\u0000\u0000\u00b2C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008e\u00e3\u00f8?(\u00cc\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FXRL40" + }, + { + "type": "con_recorrido", + "entity": "\n$6a70238b-a293-4e28-b5fa-55f2077b8b2a\u001a\u00af\u0004\n/\n\u001023888-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00036140\u0001\u0012\u0011\bD\u0012\u0006\u0010\u00ff\u00e8\u0097\u00a8\u0006\"\u000545095\u0012\u0011\bE\u0012\u0006\u0010\u00ab\u00e9\u0097\u00a8\u0006\"\u000545096\u0012\u0011\bF\u0012\u0006\u0010\u00f1\u00e9\u0097\u00a8\u0006\"\u000545098\u0012\u0011\bG\u0012\u0006\u0010\u0094\u00ea\u0097\u00a8\u0006\"\u000545099\u0012\u0011\bH\u0012\u0006\u0010\u00a9\u00ea\u0097\u00a8\u0006\"\u000545100\u0012\u0011\bI\u0012\u0006\u0010\u00c4\u00ea\u0097\u00a8\u0006\"\u000545101\u0012\u0011\bJ\u0012\u0006\u0010\u00e9\u00ea\u0097\u00a8\u0006\"\u000545102\u0012\u0011\bK\u0012\u0006\u0010\u0084\u00eb\u0097\u00a8\u0006\"\u000545103\u0012\u0011\bL\u0012\u0006\u0010\u009c\u00eb\u0097\u00a8\u0006\"\u000545104\u0012\u0011\bM\u0012\u0006\u0010\u00b6\u00eb\u0097\u00a8\u0006\"\u000545122\u0012\u0011\bN\u0012\u0006\u0010\u00ec\u00eb\u0097\u00a8\u0006\"\u000538630\u0012\u0011\bO\u0012\u0006\u0010\u00ce\u00ec\u0097\u00a8\u0006\"\u000542365\u0012\u0011\bP\u0012\u0006\u0010\u00c5\u00ed\u0097\u00a8\u0006\"\u000549349\u0012\u0011\bQ\u0012\u0006\u0010\u00c1\u00ee\u0097\u00a8\u0006\"\u000549350\u0012\u0011\bR\u0012\u0006\u0010\u00ef\u00ee\u0097\u00a8\u0006\"\u000549351\u0012\u0011\bS\u0012\u0006\u0010\u0089\u00ef\u0097\u00a8\u0006\"\u000549352\u0012\u0011\bT\u0012\u0006\u0010\u00b6\u00ef\u0097\u00a8\u0006\"\u000549353\u0012\u0011\bU\u0012\u0006\u0010\u00de\u00ef\u0097\u00a8\u0006\"\u000549354\u0012\u0011\bV\u0012\u0006\u0010\u00b1\u00f0\u0097\u00a8\u0006\"\u000538567\u0012\u0011\bW\u0012\u0006\u0010\u00de\u00f0\u0097\u00a8\u0006\"\u000538568\u0012\u0011\bX\u0012\u0006\u0010\u00fa\u00f0\u0097\u00a8\u0006\"\u000538569\u0012\u0011\bY\u0012\u0006\u0010\u00a2\u00f1\u0097\u00a8\u0006\"\u000538570\u0012\u0011\bZ\u0012\u0006\u0010\u00d8\u00f1\u0097\u00a8\u0006\"\u000538571\u0012\u0011\b[\u0012\u0006\u0010\u008b\u00f2\u0097\u00a8\u0006\"\u000538572\u0012\u0011\b\\\u0012\u0006\u0010\u0098\u00f3\u0097\u00a8\u0006\"\u000540115\u0012\u0011\b]\u0012\u0006\u0010\u00cb\u00f3\u0097\u00a8\u0006\"\u000540116\u001a\b\u001a\u0006JBCY45 \u00bf\u00e8\u0097\u00a8\u0006\"`\n/\n\u001023888-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00036140\u0001\u0012\u001d\r\u0098\u00f9\u0012\u00c2\u0015\u00e91\u0092\u00c2\u001d\u0000\u0000\u0083C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u001c\u00c7\u00b1@(\u00bf\u00e8\u0097\u00a8\u0006B\b\u001a\u0006JBCY45" + }, + { + "type": "con_recorrido", + "entity": "\n$f27a0033-8cd9-4fb0-b338-9b86fa5acafc\u001a\u00f6\u0003\n/\n\u001023936-701ff27f-2\u0012\b15:02:00\u001a\b20230916 \u0000*\u00036140\u0000\u0012\u0011\bE\u0012\u0006\u0010\u00ce\u00e8\u0097\u00a8\u0006\"\u000540308\u0012\u0011\bF\u0012\u0006\u0010\u009a\u00e9\u0097\u00a8\u0006\"\u000540309\u0012\u0011\bG\u0012\u0006\u0010\u0097\u00ea\u0097\u00a8\u0006\"\u000539504\u0012\u0011\bH\u0012\u0006\u0010\u00b7\u00ea\u0097\u00a8\u0006\"\u000539595\u0012\u0011\bI\u0012\u0006\u0010\u00c8\u00ea\u0097\u00a8\u0006\"\u000539759\u0012\u0011\bJ\u0012\u0006\u0010\u0086\u00eb\u0097\u00a8\u0006\"\u000539760\u0012\u0011\bK\u0012\u0006\u0010\u00ae\u00eb\u0097\u00a8\u0006\"\u000539761\u0012\u0011\bL\u0012\u0006\u0010\u00d4\u00eb\u0097\u00a8\u0006\"\u000539511\u0012\u0011\bM\u0012\u0006\u0010\u00ba\u00ec\u0097\u00a8\u0006\"\u000539705\u0012\u0011\bN\u0012\u0006\u0010\u00e4\u00ec\u0097\u00a8\u0006\"\u000539706\u0012\u0011\bO\u0012\u0006\u0010\u00f6\u00ec\u0097\u00a8\u0006\"\u000539707\u0012\u0011\bP\u0012\u0006\u0010\u009d\u00ed\u0097\u00a8\u0006\"\u000539708\u0012\u0011\bQ\u0012\u0006\u0010\u00b5\u00ed\u0097\u00a8\u0006\"\u000539709\u0012\u0011\bR\u0012\u0006\u0010\u00db\u00ed\u0097\u00a8\u0006\"\u000539711\u0012\u0011\bS\u0012\u0006\u0010\u0081\u00ee\u0097\u00a8\u0006\"\u000539712\u0012\u0011\bT\u0012\u0006\u0010\u009f\u00ee\u0097\u00a8\u0006\"\u000539714\u0012\u0011\bU\u0012\u0006\u0010\u00bf\u00ee\u0097\u00a8\u0006\"\u000539715\u0012\u0011\bV\u0012\u0006\u0010\u00d5\u00ee\u0097\u00a8\u0006\"\u000539470\u0012\u0011\bW\u0012\u0006\u0010\u00e9\u00ee\u0097\u00a8\u0006\"\u000539471\u0012\u0011\bX\u0012\u0006\u0010\u0084\u00ef\u0097\u00a8\u0006\"\u000539472\u0012\u0011\bY\u0012\u0006\u0010\u00a6\u00ef\u0097\u00a8\u0006\"\u000539473\u0012\u0011\bZ\u0012\u0006\u0010\u00bf\u00ef\u0097\u00a8\u0006\"\u000539718\u0012\u0011\b[\u0012\u0006\u0010\u00d6\u00ef\u0097\u00a8\u0006\"\u000539494\u001a\b\u001a\u0006YV3558 \u00b4\u00e8\u0097\u00a8\u0006\"`\n/\n\u001023936-701ff27f-2\u0012\b15:02:00\u001a\b20230916 \u0000*\u00036140\u0000\u0012\u001d\rOD\u0013\u00c2\u0015\u00ee\u0016\u0092\u00c2\u001d\u0000\u0000\u00a7C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b4\u00e8\u0097\u00a8\u0006B\b\u001a\u0006YV3558" + }, + { + "type": "con_recorrido", + "entity": "\n$673d83b0-5db4-43c5-a873-556b8fbd6580\u001a\u0097\u0003\n/\n\u001024108-701ff27f-2\u0012\b15:20:00\u001a\b20230916 \u0000*\u00036160\u0001\u0012\u0011\b\u0015\u0012\u0006\u0010\u008a\u00e9\u0097\u00a8\u0006\"\u000539602\u0012\u0011\b\u0016\u0012\u0006\u0010\u00a8\u00e9\u0097\u00a8\u0006\"\u000539603\u0012\u0011\b\u0017\u0012\u0006\u0010\u0090\u00ea\u0097\u00a8\u0006\"\u000539604\u0012\u0011\b\u0018\u0012\u0006\u0010\u00c1\u00ea\u0097\u00a8\u0006\"\u000539605\u0012\u0011\b\u0019\u0012\u0006\u0010\u00f5\u00ea\u0097\u00a8\u0006\"\u000539606\u0012\u0011\b\u001a\u0012\u0006\u0010\u008c\u00eb\u0097\u00a8\u0006\"\u000539607\u0012\u0011\b\u001b\u0012\u0006\u0010\u00a8\u00eb\u0097\u00a8\u0006\"\u000539608\u0012\u0011\b\u001c\u0012\u0006\u0010\u00d3\u00eb\u0097\u00a8\u0006\"\u000539609\u0012\u0011\b\u001d\u0012\u0006\u0010\u00fc\u00eb\u0097\u00a8\u0006\"\u000539548\u0012\u0011\b\u001e\u0012\u0006\u0010\u00cf\u00ec\u0097\u00a8\u0006\"\u000539549\u0012\u0011\b\u001f\u0012\u0006\u0010\u0080\u00ed\u0097\u00a8\u0006\"\u000539550\u0012\u0011\b \u0012\u0006\u0010\u00cd\u00ed\u0097\u00a8\u0006\"\u000539551\u0012\u0011\b!\u0012\u0006\u0010\u00c9\u00ee\u0097\u00a8\u0006\"\u000539552\u0012\u0011\b\"\u0012\u0006\u0010\u00a6\u00f0\u0097\u00a8\u0006\"\u000539554\u0012\u0011\b#\u0012\u0006\u0010\u00d6\u00f0\u0097\u00a8\u0006\"\u000539493\u0012\u0011\b$\u0012\u0006\u0010\u00af\u00f1\u0097\u00a8\u0006\"\u000539515\u0012\u0011\b%\u0012\u0006\u0010\u00f9\u00f1\u0097\u00a8\u0006\"\u000539558\u0012\u0011\b&\u0012\u0006\u0010\u00a5\u00f2\u0097\u00a8\u0006\"\u000539985\u001a\b\u001a\u0006FVDP64 \u00cc\u00e8\u0097\u00a8\u0006\"`\n/\n\u001024108-701ff27f-2\u0012\b15:20:00\u001a\b20230916 \u0000*\u00036160\u0001\u0012\u001d\r\u0096H\u0013\u00c2\u0015\\\u0012\u0092\u00c2\u001d\u0000\u00000C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u00de@(\u00cc\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FVDP64" + }, + { + "type": "sin_recorrido", + "entity": "\n$f8e1c463-a381-413a-81a2-a33186e9f799\"`\n/\n\u001024107-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00036160\u0001\u0012\u001d\r\u00ab8\u0013\u00c2\u0015d\u0014\u0092\u00c2\u001d\u0000\u0000\u00a4B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u00a0@(\u00ad\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FXRL51" + }, + { + "type": "con_recorrido", + "entity": "\n$a456fcf7-44f9-46e9-bdd1-69583aae0f10\u001a\u00c2\u0004\n/\n\u001024051-701ff27f-2\u0012\b15:21:00\u001a\b20230916 \u0000*\u00036160\u0000\u0012\u0011\b\u000f\u0012\u0006\u0010\u00e0\u00e8\u0097\u00a8\u0006\"\u000549391\u0012\u0011\b\u0010\u0012\u0006\u0010\u00f6\u00e8\u0097\u00a8\u0006\"\u000549392\u0012\u0011\b\u0011\u0012\u0006\u0010\u00e2\u00e9\u0097\u00a8\u0006\"\u000549393\u0012\u0011\b\u0012\u0012\u0006\u0010\u0093\u00ea\u0097\u00a8\u0006\"\u000549394\u0012\u0011\b\u0013\u0012\u0006\u0010\u00c9\u00ea\u0097\u00a8\u0006\"\u000550004\u0012\u0011\b\u0014\u0012\u0006\u0010\u0093\u00eb\u0097\u00a8\u0006\"\u000550030\u0012\u0011\b\u0015\u0012\u0006\u0010\u00c7\u00eb\u0097\u00a8\u0006\"\u00053-Mar\u0012\u0011\b\u0016\u0012\u0006\u0010\u00fa\u00eb\u0097\u00a8\u0006\"\u000550031\u0012\u0011\b\u0017\u0012\u0006\u0010\u0093\u00ec\u0097\u00a8\u0006\"\u000549398\u0012\u0011\b\u0018\u0012\u0006\u0010\u00ac\u00ec\u0097\u00a8\u0006\"\u000550032\u0012\u0011\b\u0019\u0012\u0006\u0010\u00d7\u00ec\u0097\u00a8\u0006\"\u000539495\u0012\u0011\b\u001a\u0012\u0006\u0010\u00a7\u00ed\u0097\u00a8\u0006\"\u000550033\u0012\u0011\b\u001b\u0012\u0006\u0010\u00d2\u00ed\u0097\u00a8\u0006\"\u000539497\u0012\u0011\b\u001c\u0012\u0006\u0010\u00f1\u00ed\u0097\u00a8\u0006\"\u000549407\u0012\u0011\b\u001d\u0012\u0006\u0010\u00e2\u00ee\u0097\u00a8\u0006\"\u000537465\u0012\u0011\b\u001e\u0012\u0006\u0010\u008f\u00ef\u0097\u00a8\u0006\"\u000539503\u0012\u0011\b\u001f\u0012\u0006\u0010\u00e8\u00ef\u0097\u00a8\u0006\"\u000539504\u0012\u0011\b \u0012\u0006\u0010\u0088\u00f0\u0097\u00a8\u0006\"\u000539595\u0012\u0011\b!\u0012\u0006\u0010\u00ff\u00f0\u0097\u00a8\u0006\"\u000539509\u0012\u0011\b\"\u0012\u0006\u0010\u00b3\u00f2\u0097\u00a8\u0006\"\u000539510\u0012\u0011\b#\u0012\u0006\u0010\u009d\u00f3\u0097\u00a8\u0006\"\u000539511\u0012\u0011\b$\u0012\u0006\u0010\u0090\u00f4\u0097\u00a8\u0006\"\u000539763\u0012\u0011\b%\u0012\u0006\u0010\u00bc\u00f4\u0097\u00a8\u0006\"\u000539764\u0012\u0011\b&\u0012\u0006\u0010\u00df\u00f4\u0097\u00a8\u0006\"\u000539765\u0012\u0011\b'\u0012\u0006\u0010\u00f7\u00f4\u0097\u00a8\u0006\"\u000539529\u0012\u0011\b(\u0012\u0006\u0010\u00b5\u00f5\u0097\u00a8\u0006\"\u000539530\u0012\u0011\b)\u0012\u0006\u0010\u0091\u00f7\u0097\u00a8\u0006\"\u000591159\u001a\b\u001a\u0006HRBW37 \u00ca\u00e8\u0097\u00a8\u0006\"`\n/\n\u001024051-701ff27f-2\u0012\b15:21:00\u001a\b20230916 \u0000*\u00036160\u0000\u0012\u001d\r\u00f6F\u0013\u00c2\u0015t\u001d\u0092\u00c2\u001d\u0000\u0000\u0016C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u00f0@(\u00ca\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HRBW37" + }, + { + "type": "con_recorrido", + "entity": "\n$40c80f16-3663-4144-b4e7-361efbe53a00\u001a\u0083\u0006\n/\n\u001024109-701ff27f-2\u0012\b15:40:00\u001a\b20230916 \u0000*\u00036160\u0001\u0012\u0011\b\u0001\u0012\u0006\u0010\u00b0\u00e8\u0097\u00a8\u0006\"\u000539584\u0012\u0014\b\u0002\u0012\u0006\u0010\u0095\u00e9\u0097\u00a8\u0006\"\b16391318\u0012\u0011\b\u0003\u0012\u0006\u0010\u00f8\u00ea\u0097\u00a8\u0006\"\u000540199\u0012\u0011\b\u0004\u0012\u0006\u0010\u009c\u00eb\u0097\u00a8\u0006\"\u000539700\u0012\u0011\b\u0005\u0012\u0006\u0010\u00c6\u00eb\u0097\u00a8\u0006\"\u000539701\u0012\u0011\b\u0006\u0012\u0006\u0010\u00ee\u00eb\u0097\u00a8\u0006\"\u000539702\u0012\u0011\b\u0007\u0012\u0006\u0010\u00fa\u00eb\u0097\u00a8\u0006\"\u000539703\u0012\u0011\b\b\u0012\u0006\u0010\u00ab\u00ec\u0097\u00a8\u0006\"\u000539704\u0012\u0011\b\t\u0012\u0006\u0010\u00c5\u00ec\u0097\u00a8\u0006\"\u000539918\u0012\u0011\b\n\u0012\u0006\u0010\u00f3\u00ec\u0097\u00a8\u0006\"\u000539513\u0012\u0011\b\u000b\u0012\u0006\u0010\u0097\u00ed\u0097\u00a8\u0006\"\u000539591\u0012\u0011\b\f\u0012\u0006\u0010\u00b3\u00ed\u0097\u00a8\u0006\"\u000539592\u0012\u0011\b\r\u0012\u0006\u0010\u00ed\u00ed\u0097\u00a8\u0006\"\u000539593\u0012\u0011\b\u000e\u0012\u0006\u0010\u008c\u00ee\u0097\u00a8\u0006\"\u000539594\u0012\u0011\b\u000f\u0012\u0006\u0010\u0089\u00ef\u0097\u00a8\u0006\"\u000539596\u0012\u0011\b\u0010\u0012\u0006\u0010\u00ac\u00ef\u0097\u00a8\u0006\"\u000539597\u0012\u0011\b\u0012\u0012\u0006\u0010\u00d8\u00ef\u0097\u00a8\u0006\"\u000539598\u0012\u0011\b\u0013\u0012\u0006\u0010\u00b7\u00f0\u0097\u00a8\u0006\"\u000539599\u0012\u0011\b\u0014\u0012\u0006\u0010\u00cd\u00f0\u0097\u00a8\u0006\"\u000539600\u0012\u0011\b\u0015\u0012\u0006\u0010\u0094\u00f1\u0097\u00a8\u0006\"\u000539602\u0012\u0011\b\u0016\u0012\u0006\u0010\u00af\u00f1\u0097\u00a8\u0006\"\u000539603\u0012\u0011\b\u0017\u0012\u0006\u0010\u0090\u00f2\u0097\u00a8\u0006\"\u000539604\u0012\u0011\b\u0018\u0012\u0006\u0010\u00be\u00f2\u0097\u00a8\u0006\"\u000539605\u0012\u0011\b\u0019\u0012\u0006\u0010\u00ef\u00f2\u0097\u00a8\u0006\"\u000539606\u0012\u0011\b\u001a\u0012\u0006\u0010\u0086\u00f3\u0097\u00a8\u0006\"\u000539607\u0012\u0011\b\u001b\u0012\u0006\u0010\u00a0\u00f3\u0097\u00a8\u0006\"\u000539608\u0012\u0011\b\u001c\u0012\u0006\u0010\u00cb\u00f3\u0097\u00a8\u0006\"\u000539609\u0012\u0011\b\u001d\u0012\u0006\u0010\u00f3\u00f3\u0097\u00a8\u0006\"\u000539548\u0012\u0011\b\u001e\u0012\u0006\u0010\u00c5\u00f4\u0097\u00a8\u0006\"\u000539549\u0012\u0011\b\u001f\u0012\u0006\u0010\u00f7\u00f4\u0097\u00a8\u0006\"\u000539550\u0012\u0011\b \u0012\u0006\u0010\u00c6\u00f5\u0097\u00a8\u0006\"\u000539551\u0012\u0011\b!\u0012\u0006\u0010\u00c7\u00f6\u0097\u00a8\u0006\"\u000539552\u0012\u0011\b\"\u0012\u0006\u0010\u00b6\u00f8\u0097\u00a8\u0006\"\u000539554\u0012\u0011\b#\u0012\u0006\u0010\u00ec\u00f8\u0097\u00a8\u0006\"\u000539493\u0012\u0011\b$\u0012\u0006\u0010\u00d0\u00f9\u0097\u00a8\u0006\"\u000539515\u0012\u0011\b%\u0012\u0006\u0010\u00a5\u00fa\u0097\u00a8\u0006\"\u000539558\u0012\u0011\b&\u0012\u0006\u0010\u00d8\u00fa\u0097\u00a8\u0006\"\u000539985\u001a\b\u001a\u0006YA5911 \u00af\u00e8\u0097\u00a8\u0006\"`\n/\n\u001024109-701ff27f-2\u0012\b15:40:00\u001a\b20230916 \u0000*\u00036160\u0001\u0012\u001d\r\u00bd#\u0013\u00c2\u0015\u0003\u0016\u0092\u00c2\u001d\u0000\u0000\u008eC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00c7q\u00cc@(\u00af\u00e8\u0097\u00a8\u0006B\b\u001a\u0006YA5911" + }, + { + "type": "con_recorrido", + "entity": "\n$06dd5921-72c1-462b-8dbd-c07d95c7fce2\u001az\n/\n\u001024192-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00036170\u0000\u0012\u0011\b#\u0012\u0006\u0010\u00ad\u00e8\u0097\u00a8\u0006\"\u000539980\u0012\u0011\b$\u0012\u0006\u0010\u0094\u00e9\u0097\u00a8\u0006\"\u000539981\u0012\u0011\b%\u0012\u0006\u0010\u0082\u00ea\u0097\u00a8\u0006\"\u000539982\u001a\b\u001a\u0006YF9629 \u008a\u00e8\u0097\u00a8\u0006\"`\n/\n\u001024192-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00036170\u0000\u0012\u001d\r\u007fv\u0013\u00c2\u0015\u00e2$\u0092\u00c2\u001d\u0000\u0000eC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u000e?(\u00a8\u00e8\u0097\u00a8\u0006B\b\u001a\u0006YF9629" + }, + { + "type": "con_recorrido", + "entity": "\n$f9054203-af3b-45e4-9ecd-cb71ec6e73d4\u001a\u00ff\u0001\n/\n\u001024366-701ff27f-2\u0012\b15:10:00\u001a\b20230916 \u0000*\u00036180\u0000\u0012\u0011\b\u001c\u0012\u0006\u0010\u00ce\u00e9\u0097\u00a8\u0006\"\u000539627\u0012\u0011\b\u001d\u0012\u0006\u0010\u00b2\u00ea\u0097\u00a8\u0006\"\u000539631\u0012\u0011\b\u001e\u0012\u0006\u0010\u00e3\u00ea\u0097\u00a8\u0006\"\u000549311\u0012\u0011\b\u001f\u0012\u0006\u0010\u009c\u00eb\u0097\u00a8\u0006\"\u000539634\u0012\u0011\b \u0012\u0006\u0010\u00b5\u00eb\u0097\u00a8\u0006\"\u000539635\u0012\u0011\b!\u0012\u0006\u0010\u00e4\u00eb\u0097\u00a8\u0006\"\u000539636\u0012\u0011\b\"\u0012\u0006\u0010\u0098\u00ed\u0097\u00a8\u0006\"\u000539637\u0012\u0011\b#\u0012\u0006\u0010\u00fc\u00ed\u0097\u00a8\u0006\"\u000539940\u0012\u0011\b$\u0012\u0006\u0010\u009e\u00ef\u0097\u00a8\u0006\"\u000539941\u0012\u0011\b%\u0012\u0006\u0010\u00dc\u00ef\u0097\u00a8\u0006\"\u000539736\u001a\b\u001a\u0006DZZG72 \u00cd\u00e8\u0097\u00a8\u0006\"`\n/\n\u001024366-701ff27f-2\u0012\b15:10:00\u001a\b20230916 \u0000*\u00036180\u0000\u0012\u001d\rtK\u0013\u00c2\u0015\u00de\u0017\u0092\u00c2\u001d\u0000\u0000mC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u008e?(\u00cd\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DZZG72" + }, + { + "type": "con_recorrido", + "entity": "\n$2f18df24-de20-468f-a51e-7ed60969f896\u001a\u0092\u0002\n/\n\u001024261-701ff27f-2\u0012\b15:12:00\u001a\b20230916 \u0000*\u00036180\u0001\u0012\u0011\b$\u0012\u0006\u0010\u00bb\u00e8\u0097\u00a8\u0006\"\u000539767\u0012\u0011\b%\u0012\u0006\u0010\u00e7\u00e8\u0097\u00a8\u0006\"\u000539768\u0012\u0011\b&\u0012\u0006\u0010\u00f4\u00e8\u0097\u00a8\u0006\"\u000539911\u0012\u0011\b'\u0012\u0006\u0010\u008f\u00e9\u0097\u00a8\u0006\"\u000539769\u0012\u0011\b(\u0012\u0006\u0010\u00aa\u00e9\u0097\u00a8\u0006\"\u000539910\u0012\u0011\b)\u0012\u0006\u0010\u00d0\u00e9\u0097\u00a8\u0006\"\u000539709\u0012\u0011\b*\u0012\u0006\u0010\u00e6\u00e9\u0097\u00a8\u0006\"\u000539710\u0012\u0011\b+\u0012\u0006\u0010\u00f6\u00e9\u0097\u00a8\u0006\"\u000539711\u0012\u0011\b,\u0012\u0006\u0010\u00a0\u00ea\u0097\u00a8\u0006\"\u000539712\u0012\u0011\b-\u0012\u0006\u0010\u00b4\u00ea\u0097\u00a8\u0006\"\u000539713\u0012\u0011\b.\u0012\u0006\u0010\u00d9\u00ea\u0097\u00a8\u0006\"\u000539559\u001a\b\u001a\u0006FDCP20 \u00a6\u00e8\u0097\u00a8\u0006\"`\n/\n\u001024261-701ff27f-2\u0012\b15:12:00\u001a\b20230916 \u0000*\u00036180\u0001\u0012\u001d\r\u0095/\u0013\u00c2\u0015~\u0012\u0092\u00c2\u001d\u0000\u0000uC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-9\u008e\u001bA(\u00a6\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FDCP20" + }, + { + "type": "con_recorrido", + "entity": "\n$8e07a3a4-3d24-49c4-a5d8-ea135099ebc5\u001a\u00e3\u0003\n/\n\u001024367-701ff27f-2\u0012\b15:20:00\u001a\b20230916 \u0000*\u00036180\u0000\u0012\u0011\b\u0010\u0012\u0006\u0010\u00a0\u00e8\u0097\u00a8\u0006\"\u000539918\u0012\u0011\b\u0011\u0012\u0006\u0010\u00d1\u00e8\u0097\u00a8\u0006\"\u000539513\u0012\u0011\b\u0012\u0012\u0006\u0010\u00f8\u00e8\u0097\u00a8\u0006\"\u000539591\u0012\u0011\b\u0013\u0012\u0006\u0010\u0092\u00e9\u0097\u00a8\u0006\"\u000539592\u0012\u0011\b\u0014\u0012\u0006\u0010\u00d3\u00e9\u0097\u00a8\u0006\"\u000539593\u0012\u0011\b\u0015\u0012\u0006\u0010\u00f5\u00e9\u0097\u00a8\u0006\"\u000539594\u0012\u0011\b\u0016\u0012\u0006\u0010\u00f8\u00ea\u0097\u00a8\u0006\"\u000539596\u0012\u0011\b\u0017\u0012\u0006\u0010\u009c\u00eb\u0097\u00a8\u0006\"\u000539597\u0012\u0011\b\u0018\u0012\u0006\u0010\u00c9\u00eb\u0097\u00a8\u0006\"\u000539598\u0012\u0011\b\u0019\u0012\u0006\u0010\u00ab\u00ec\u0097\u00a8\u0006\"\u000539599\u0012\u0011\b\u001a\u0012\u0006\u0010\u00f6\u00ec\u0097\u00a8\u0006\"\u000545011\u0012\u0011\b\u001b\u0012\u0006\u0010\u00d8\u00ed\u0097\u00a8\u0006\"\u000539623\u0012\u0011\b\u001c\u0012\u0006\u0010\u00e7\u00ee\u0097\u00a8\u0006\"\u000539627\u0012\u0011\b\u001d\u0012\u0006\u0010\u00c4\u00ef\u0097\u00a8\u0006\"\u000539631\u0012\u0011\b\u001e\u0012\u0006\u0010\u00f2\u00ef\u0097\u00a8\u0006\"\u000549311\u0012\u0011\b\u001f\u0012\u0006\u0010\u00a8\u00f0\u0097\u00a8\u0006\"\u000539634\u0012\u0011\b \u0012\u0006\u0010\u00c1\u00f0\u0097\u00a8\u0006\"\u000539635\u0012\u0011\b!\u0012\u0006\u0010\u00ee\u00f0\u0097\u00a8\u0006\"\u000539636\u0012\u0011\b\"\u0012\u0006\u0010\u009d\u00f2\u0097\u00a8\u0006\"\u000539637\u0012\u0011\b#\u0012\u0006\u0010\u0081\u00f3\u0097\u00a8\u0006\"\u000539940\u0012\u0011\b$\u0012\u0006\u0010\u00a6\u00f4\u0097\u00a8\u0006\"\u000539941\u0012\u0011\b%\u0012\u0006\u0010\u00e6\u00f4\u0097\u00a8\u0006\"\u000539736\u001a\b\u001a\u0006HWHP33 \u0092\u00e8\u0097\u00a8\u0006\"`\n/\n\u001024367-701ff27f-2\u0012\b15:20:00\u001a\b20230916 \u0000*\u00036180\u0000\u0012\u001d\r\u000f3\u0013\u00c2\u0015)\u0010\u0092\u00c2\u001d\u0000\u0000\u0018C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008e\u00e3\u00f8@(\u0092\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HWHP33" + }, + { + "type": "con_recorrido", + "entity": "\n$badb879e-aadc-4e03-a3c3-432280014fc1\u001a\u00df\u0006\n/\n\u001024263-701ff27f-2\u0012\b15:36:00\u001a\b20230916 \u0000*\u00036180\u0001\u0012\u0011\b\u0005\u0012\u0006\u0010\u00b7\u00e8\u0097\u00a8\u0006\"\u000539741\u0012\u0011\b\u0006\u0012\u0006\u0010\u00ce\u00e8\u0097\u00a8\u0006\"\u000540277\u0012\u0011\b\u0007\u0012\u0006\u0010\u00e4\u00e8\u0097\u00a8\u0006\"\u000539742\u0012\u0011\b\b\u0012\u0006\u0010\u00e2\u00e9\u0097\u00a8\u0006\"\u000535697\u0012\u0011\b\t\u0012\u0006\u0010\u00cc\u00ea\u0097\u00a8\u0006\"\u00052-Jan\u0012\u0011\b\n\u0012\u0006\u0010\u00e9\u00ea\u0097\u00a8\u0006\"\u000542460\u0012\u0011\b\u000b\u0012\u0006\u0010\u008f\u00eb\u0097\u00a8\u0006\"\u000535690\u0012\u0011\b\f\u0012\u0006\u0010\u00f1\u00eb\u0097\u00a8\u0006\"\u000535700\u0012\u0011\b\r\u0012\u0006\u0010\u008e\u00ec\u0097\u00a8\u0006\"\u000535701\u0012\u0011\b\u000e\u0012\u0006\u0010\u00ca\u00ec\u0097\u00a8\u0006\"\u000535703\u0012\u0011\b\u000f\u0012\u0006\u0010\u00e6\u00ec\u0097\u00a8\u0006\"\u000535704\u0012\u0011\b\u0010\u0012\u0006\u0010\u00f1\u00ec\u0097\u00a8\u0006\"\u000535705\u0012\u0011\b\u0011\u0012\u0006\u0010\u0087\u00ed\u0097\u00a8\u0006\"\u000535706\u0012\u0011\b\u0012\u0012\u0006\u0010\u00bd\u00ed\u0097\u00a8\u0006\"\u000535707\u0012\u0011\b\u0013\u0012\u0006\u0010\u00d6\u00ed\u0097\u00a8\u0006\"\u000535708\u0012\u0011\b\u0014\u0012\u0006\u0010\u00ee\u00ed\u0097\u00a8\u0006\"\u000535709\u0012\u0011\b\u0015\u0012\u0006\u0010\u00c8\u00ee\u0097\u00a8\u0006\"\u000537522\u0012\u0011\b\u0016\u0012\u0006\u0010\u00e9\u00ee\u0097\u00a8\u0006\"\u000539599\u0012\u0011\b\u0017\u0012\u0006\u0010\u00c9\u00ef\u0097\u00a8\u0006\"\u000537465\u0012\u0011\b\u0018\u0012\u0006\u0010\u00f6\u00ef\u0097\u00a8\u0006\"\u000539503\u0012\u0011\b\u0019\u0012\u0006\u0010\u00d0\u00f0\u0097\u00a8\u0006\"\u000539504\u0012\u0011\b\u001a\u0012\u0006\u0010\u00ef\u00f0\u0097\u00a8\u0006\"\u000539595\u0012\u0011\b\u001b\u0012\u0006\u0010\u00fe\u00f0\u0097\u00a8\u0006\"\u000539759\u0012\u0011\b\u001c\u0012\u0006\u0010\u00b9\u00f1\u0097\u00a8\u0006\"\u000539760\u0012\u0011\b\u001d\u0012\u0006\u0010\u00e0\u00f1\u0097\u00a8\u0006\"\u000539761\u0012\u0011\b\u001e\u0012\u0006\u0010\u0085\u00f2\u0097\u00a8\u0006\"\u000539511\u0012\u0011\b\u001f\u0012\u0006\u0010\u00f8\u00f2\u0097\u00a8\u0006\"\u000539763\u0012\u0011\b \u0012\u0006\u0010\u00a2\u00f3\u0097\u00a8\u0006\"\u000539764\u0012\u0011\b!\u0012\u0006\u0010\u00c6\u00f3\u0097\u00a8\u0006\"\u000539765\u0012\u0011\b\"\u0012\u0006\u0010\u00ce\u00f3\u0097\u00a8\u0006\"\u000539701\u0012\u0011\b#\u0012\u0006\u0010\u00ef\u00f3\u0097\u00a8\u0006\"\u000539766\u0012\u0011\b$\u0012\u0006\u0010\u0091\u00f4\u0097\u00a8\u0006\"\u000539767\u0012\u0011\b%\u0012\u0006\u0010\u00ba\u00f4\u0097\u00a8\u0006\"\u000539768\u0012\u0011\b&\u0012\u0006\u0010\u00c6\u00f4\u0097\u00a8\u0006\"\u000539911\u0012\u0011\b'\u0012\u0006\u0010\u00e0\u00f4\u0097\u00a8\u0006\"\u000539769\u0012\u0011\b(\u0012\u0006\u0010\u00fa\u00f4\u0097\u00a8\u0006\"\u000539910\u0012\u0011\b)\u0012\u0006\u0010\u009e\u00f5\u0097\u00a8\u0006\"\u000539709\u0012\u0011\b*\u0012\u0006\u0010\u00b3\u00f5\u0097\u00a8\u0006\"\u000539710\u0012\u0011\b+\u0012\u0006\u0010\u00c3\u00f5\u0097\u00a8\u0006\"\u000539711\u0012\u0011\b,\u0012\u0006\u0010\u00ec\u00f5\u0097\u00a8\u0006\"\u000539712\u0012\u0011\b-\u0012\u0006\u0010\u0080\u00f6\u0097\u00a8\u0006\"\u000539713\u0012\u0011\b.\u0012\u0006\u0010\u00a5\u00f6\u0097\u00a8\u0006\"\u000539559\u001a\b\u001a\u0006HYYX78 \u00ac\u00e8\u0097\u00a8\u0006\"`\n/\n\u001024263-701ff27f-2\u0012\b15:36:00\u001a\b20230916 \u0000*\u00036180\u0001\u0012\u001d\r\u00cbD\u0013\u00c2\u0015\u00df#\u0092\u00c2\u001d\u0000\u0000\u0006C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UU\u0085@(\u00ac\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HYYX78" + }, + { + "type": "con_recorrido", + "entity": "\n$f512e465-e6f4-4170-9e0f-b0bf1977c09d\u001a\u008d\u0001\n/\n\u001024365-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00036180\u0000\u0012\u0011\b\"\u0012\u0006\u0010\u00cd\u00e9\u0097\u00a8\u0006\"\u000539637\u0012\u0011\b#\u0012\u0006\u0010\u00b7\u00ea\u0097\u00a8\u0006\"\u000539940\u0012\u0011\b$\u0012\u0006\u0010\u00e0\u00eb\u0097\u00a8\u0006\"\u000539941\u0012\u0011\b%\u0012\u0006\u0010\u00a0\u00ec\u0097\u00a8\u0006\"\u000539736\u001a\b\u001a\u0006KJPT10 \u00c7\u00e8\u0097\u00a8\u0006\"`\n/\n\u001024365-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00036180\u0000\u0012\u001d\r\u00cfH\u0013\u00c2\u0015\u000e!\u0092\u00c2\u001d\u0000\u0080\u00a3C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UU}A(\u00c7\u00e8\u0097\u00a8\u0006B\b\u001a\u0006KJPT10" + }, + { + "type": "con_recorrido", + "entity": "\n$749de9d5-49c9-476d-9cfa-f75cdf5adda5\u001a\u00b4\u0005\n/\n\u001024262-701ff27f-2\u0012\b15:24:00\u001a\b20230916 \u0000*\u00036180\u0001\u0012\u0011\b\u000e\u0012\u0006\u0010\u00ee\u00e8\u0097\u00a8\u0006\"\u000535703\u0012\u0011\b\u000f\u0012\u0006\u0010\u008d\u00e9\u0097\u00a8\u0006\"\u000535704\u0012\u0011\b\u0010\u0012\u0006\u0010\u0098\u00e9\u0097\u00a8\u0006\"\u000535705\u0012\u0011\b\u0011\u0012\u0006\u0010\u00b0\u00e9\u0097\u00a8\u0006\"\u000535706\u0012\u0011\b\u0012\u0012\u0006\u0010\u00e9\u00e9\u0097\u00a8\u0006\"\u000535707\u0012\u0011\b\u0013\u0012\u0006\u0010\u0084\u00ea\u0097\u00a8\u0006\"\u000535708\u0012\u0011\b\u0014\u0012\u0006\u0010\u009d\u00ea\u0097\u00a8\u0006\"\u000535709\u0012\u0011\b\u0015\u0012\u0006\u0010\u00fb\u00ea\u0097\u00a8\u0006\"\u000537522\u0012\u0011\b\u0016\u0012\u0006\u0010\u009d\u00eb\u0097\u00a8\u0006\"\u000539599\u0012\u0011\b\u0017\u0012\u0006\u0010\u0081\u00ec\u0097\u00a8\u0006\"\u000537465\u0012\u0011\b\u0018\u0012\u0006\u0010\u00af\u00ec\u0097\u00a8\u0006\"\u000539503\u0012\u0011\b\u0019\u0012\u0006\u0010\u008c\u00ed\u0097\u00a8\u0006\"\u000539504\u0012\u0011\b\u001a\u0012\u0006\u0010\u00ab\u00ed\u0097\u00a8\u0006\"\u000539595\u0012\u0011\b\u001b\u0012\u0006\u0010\u00ba\u00ed\u0097\u00a8\u0006\"\u000539759\u0012\u0011\b\u001c\u0012\u0006\u0010\u00f5\u00ed\u0097\u00a8\u0006\"\u000539760\u0012\u0011\b\u001d\u0012\u0006\u0010\u009d\u00ee\u0097\u00a8\u0006\"\u000539761\u0012\u0011\b\u001e\u0012\u0006\u0010\u00c2\u00ee\u0097\u00a8\u0006\"\u000539511\u0012\u0011\b\u001f\u0012\u0006\u0010\u00b4\u00ef\u0097\u00a8\u0006\"\u000539763\u0012\u0011\b \u0012\u0006\u0010\u00de\u00ef\u0097\u00a8\u0006\"\u000539764\u0012\u0011\b!\u0012\u0006\u0010\u0081\u00f0\u0097\u00a8\u0006\"\u000539765\u0012\u0011\b\"\u0012\u0006\u0010\u0089\u00f0\u0097\u00a8\u0006\"\u000539701\u0012\u0011\b#\u0012\u0006\u0010\u00a9\u00f0\u0097\u00a8\u0006\"\u000539766\u0012\u0011\b$\u0012\u0006\u0010\u00cb\u00f0\u0097\u00a8\u0006\"\u000539767\u0012\u0011\b%\u0012\u0006\u0010\u00f3\u00f0\u0097\u00a8\u0006\"\u000539768\u0012\u0011\b&\u0012\u0006\u0010\u00fe\u00f0\u0097\u00a8\u0006\"\u000539911\u0012\u0011\b'\u0012\u0006\u0010\u0098\u00f1\u0097\u00a8\u0006\"\u000539769\u0012\u0011\b(\u0012\u0006\u0010\u00b0\u00f1\u0097\u00a8\u0006\"\u000539910\u0012\u0011\b)\u0012\u0006\u0010\u00d3\u00f1\u0097\u00a8\u0006\"\u000539709\u0012\u0011\b*\u0012\u0006\u0010\u00e8\u00f1\u0097\u00a8\u0006\"\u000539710\u0012\u0011\b+\u0012\u0006\u0010\u00f7\u00f1\u0097\u00a8\u0006\"\u000539711\u0012\u0011\b,\u0012\u0006\u0010\u009e\u00f2\u0097\u00a8\u0006\"\u000539712\u0012\u0011\b-\u0012\u0006\u0010\u00b1\u00f2\u0097\u00a8\u0006\"\u000539713\u0012\u0011\b.\u0012\u0006\u0010\u00d5\u00f2\u0097\u00a8\u0006\"\u000539559\u001a\b\u001a\u0006YJ1867 \u00b2\u00e8\u0097\u00a8\u0006\"`\n/\n\u001024262-701ff27f-2\u0012\b15:24:00\u001a\b20230916 \u0000*\u00036180\u0001\u0012\u001d\r.M\u0013\u00c2\u0015\u009c\u001b\u0092\u00c2\u001d\u0000\u0000xB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UU\u00d5?(\u00b2\u00e8\u0097\u00a8\u0006B\b\u001a\u0006YJ1867" + }, + { + "type": "con_recorrido", + "entity": "\n$fe774239-3720-4fc6-8845-91ac281b0b03\u001a\u00f6\u0003\n/\n\u001024460-701ff27f-2\u0012\b15:16:00\u001a\b20230916 \u0000*\u00036190\u0000\u0012\u0011\b\u0016\u0012\u0006\u0010\u00fa\u00e8\u0097\u00a8\u0006\"\u000550031\u0012\u0011\b\u0017\u0012\u0006\u0010\u0095\u00e9\u0097\u00a8\u0006\"\u000549398\u0012\u0011\b\u0018\u0012\u0006\u0010\u00af\u00e9\u0097\u00a8\u0006\"\u000550032\u0012\u0011\b\u0019\u0012\u0006\u0010\u00dd\u00e9\u0097\u00a8\u0006\"\u000539495\u0012\u0011\b\u001a\u0012\u0006\u0010\u00b0\u00ea\u0097\u00a8\u0006\"\u000550033\u0012\u0011\b\u001b\u0012\u0006\u0010\u00de\u00ea\u0097\u00a8\u0006\"\u000539497\u0012\u0011\b\u001c\u0012\u0006\u0010\u00ff\u00ea\u0097\u00a8\u0006\"\u000549407\u0012\u0011\b\u001d\u0012\u0006\u0010\u00f3\u00eb\u0097\u00a8\u0006\"\u000537465\u0012\u0011\b\u001e\u0012\u0006\u0010\u00a2\u00ec\u0097\u00a8\u0006\"\u000539503\u0012\u0011\b\u001f\u0012\u0006\u0010\u00ff\u00ec\u0097\u00a8\u0006\"\u000539504\u0012\u0011\b \u0012\u0006\u0010\u009e\u00ed\u0097\u00a8\u0006\"\u000539595\u0012\u0011\b!\u0012\u0006\u0010\u00b5\u00ed\u0097\u00a8\u0006\"\u000539759\u0012\u0011\b\"\u0012\u0006\u0010\u00e9\u00ed\u0097\u00a8\u0006\"\u000539760\u0012\u0011\b#\u0012\u0006\u0010\u0090\u00ee\u0097\u00a8\u0006\"\u000539761\u0012\u0011\b$\u0012\u0006\u0010\u00b6\u00ee\u0097\u00a8\u0006\"\u000539511\u0012\u0011\b%\u0012\u0006\u0010\u00a8\u00ef\u0097\u00a8\u0006\"\u000539763\u0012\u0011\b&\u0012\u0006\u0010\u00d2\u00ef\u0097\u00a8\u0006\"\u000539764\u0012\u0011\b'\u0012\u0006\u0010\u00f5\u00ef\u0097\u00a8\u0006\"\u000539765\u0012\u0011\b(\u0012\u0006\u0010\u008c\u00f0\u0097\u00a8\u0006\"\u000539529\u0012\u0011\b)\u0012\u0006\u0010\u00c8\u00f0\u0097\u00a8\u0006\"\u000539530\u0012\u0011\b*\u0012\u0006\u0010\u0098\u00f2\u0097\u00a8\u0006\"\u000591159\u0012\u0011\b+\u0012\u0006\u0010\u00ab\u00f4\u0097\u00a8\u0006\"\u000539214\u0012\u0011\b,\u0012\u0006\u0010\u00e2\u00f4\u0097\u00a8\u0006\"\u000539215\u001a\b\u001a\u0006PTFH78 \u00cd\u00e8\u0097\u00a8\u0006\"`\n/\n\u001024460-701ff27f-2\u0012\b15:16:00\u001a\b20230916 \u0000*\u00036190\u0000\u0012\u001d\r\u00b7Q\u0013\u00c2\u0015\u0088\u0017\u0092\u00c2\u001d\u0000\u0000|B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-9\u008eCA(\u00cd\u00e8\u0097\u00a8\u0006B\b\u001a\u0006PTFH78" + }, + { + "type": "con_recorrido", + "entity": "\n$71e1aa6a-2e80-4b2b-b527-3e01ded4c929\u001a\u0089\u0003\n/\n\u001024600-701ff27f-2\u0012\b14:43:00\u001a\b20230916 \u0000*\u00036200\u0001\u0012\u0011\b\u001c\u0012\u0006\u0010\u00e1\u00e8\u0097\u00a8\u0006\"\u000550036\u0012\u0011\b\u001d\u0012\u0006\u0010\u00df\u00e9\u0097\u00a8\u0006\"\u000539509\u0012\u0011\b\u001e\u0012\u0006\u0010\u00c5\u00ea\u0097\u00a8\u0006\"\u000539760\u0012\u0011\b\u001f\u0012\u0006\u0010\u00ed\u00ea\u0097\u00a8\u0006\"\u000539761\u0012\u0011\b \u0012\u0006\u0010\u0094\u00eb\u0097\u00a8\u0006\"\u000539511\u0012\u0011\b!\u0012\u0006\u0010\u008a\u00ec\u0097\u00a8\u0006\"\u000539763\u0012\u0011\b\"\u0012\u0006\u0010\u00b6\u00ec\u0097\u00a8\u0006\"\u000539764\u0012\u0011\b#\u0012\u0006\u0010\u00d9\u00ec\u0097\u00a8\u0006\"\u000539765\u0012\u0011\b$\u0012\u0006\u0010\u00f0\u00ec\u0097\u00a8\u0006\"\u000539529\u0012\u0011\b%\u0012\u0006\u0010\u00ae\u00ed\u0097\u00a8\u0006\"\u000539530\u0012\u0013\b&\u0012\u0006\u0010\u00fe\u00ed\u0097\u00a8\u0006\"\u00076734219\u0012\u0011\b'\u0012\u0006\u0010\u00c5\u00ee\u0097\u00a8\u0006\"\u000539536\u0012\u0014\b(\u0012\u0006\u0010\u00e8\u00ee\u0097\u00a8\u0006\"\b16206048\u0012\u0011\b)\u0012\u0006\u0010\u00fa\u00ee\u0097\u00a8\u0006\"\u000539537\u0012\u0011\b*\u0012\u0006\u0010\u008b\u00ef\u0097\u00a8\u0006\"\u000539428\u0012\u0011\b+\u0012\u0006\u0010\u009f\u00ef\u0097\u00a8\u0006\"\u000539429\u0012\u0011\b,\u0012\u0006\u0010\u00c9\u00ef\u0097\u00a8\u0006\"\u000539430\u001a\b\u001a\u0006HYHS90 \u00b2\u00e8\u0097\u00a8\u0006\"`\n/\n\u001024600-701ff27f-2\u0012\b14:43:00\u001a\b20230916 \u0000*\u00036200\u0001\u0012\u001d\r\u0099B\u0013\u00c2\u0015\u00f3\u000f\u0092\u00c2\u001d\u0000\u0000\bB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-9\u008eC@(\u00b2\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HYHS90" + }, + { + "type": "con_recorrido", + "entity": "\n$d52f7d21-87f1-453b-b1e3-2733151ebaae\u001a\u0088\u0006\n/\n\u001024602-701ff27f-2\u0012\b15:23:00\u001a\b20230916 \u0000*\u00036200\u0001\u0012\u0011\b\b\u0012\u0006\u0010\u00e7\u00e9\u0097\u00a8\u0006\"\u000540273\u0012\u0011\b\t\u0012\u0006\u0010\u00fa\u00e9\u0097\u00a8\u0006\"\u000540272\u0012\u0014\b\n\u0012\u0006\u0010\u00b3\u00ea\u0097\u00a8\u0006\"\b16039072\u0012\u0011\b\u000b\u0012\u0006\u0010\u00c7\u00ea\u0097\u00a8\u0006\"\u000535794\u0012\u0011\b\f\u0012\u0006\u0010\u00a7\u00eb\u0097\u00a8\u0006\"\u000535796\u0012\u0011\b\r\u0012\u0006\u0010\u00d8\u00eb\u0097\u00a8\u0006\"\u000535797\u0012\u0011\b\u000e\u0012\u0006\u0010\u0084\u00ec\u0097\u00a8\u0006\"\u000535700\u0012\u0011\b\u000f\u0012\u0006\u0010\u00a1\u00ec\u0097\u00a8\u0006\"\u000535701\u0012\u0011\b\u0010\u0012\u0006\u0010\u00e2\u00ec\u0097\u00a8\u0006\"\u000535703\u0012\u0011\b\u0011\u0012\u0006\u0010\u00f9\u00ec\u0097\u00a8\u0006\"\u000535704\u0012\u0011\b\u0012\u0012\u0006\u0010\u0084\u00ed\u0097\u00a8\u0006\"\u000535705\u0012\u0011\b\u0013\u0012\u0006\u0010\u009a\u00ed\u0097\u00a8\u0006\"\u000535706\u0012\u0011\b\u0014\u0012\u0006\u0010\u00d0\u00ed\u0097\u00a8\u0006\"\u000535707\u0012\u0011\b\u0015\u0012\u0006\u0010\u00e9\u00ed\u0097\u00a8\u0006\"\u000535708\u0012\u0011\b\u0016\u0012\u0006\u0010\u0081\u00ee\u0097\u00a8\u0006\"\u000535709\u0012\u0011\b\u0017\u0012\u0006\u0010\u00c6\u00ee\u0097\u00a8\u0006\"\u000538507\u0012\u0011\b\u0018\u0012\u0006\u0010\u00f7\u00ee\u0097\u00a8\u0006\"\u000534473\u0012\u0011\b\u0019\u0012\u0006\u0010\u00a2\u00ef\u0097\u00a8\u0006\"\u000538500\u0012\u0011\b\u001a\u0012\u0006\u0010\u00c7\u00ef\u0097\u00a8\u0006\"\u000535808\u0012\u0011\b\u001b\u0012\u0006\u0010\u0087\u00f0\u0097\u00a8\u0006\"\u000535710\u0012\u0011\b\u001c\u0012\u0006\u0010\u00b2\u00f0\u0097\u00a8\u0006\"\u000550036\u0012\u0011\b\u001d\u0012\u0006\u0010\u00a6\u00f1\u0097\u00a8\u0006\"\u000539509\u0012\u0011\b\u001e\u0012\u0006\u0010\u0085\u00f2\u0097\u00a8\u0006\"\u000539760\u0012\u0011\b\u001f\u0012\u0006\u0010\u00ac\u00f2\u0097\u00a8\u0006\"\u000539761\u0012\u0011\b \u0012\u0006\u0010\u00d1\u00f2\u0097\u00a8\u0006\"\u000539511\u0012\u0011\b!\u0012\u0006\u0010\u00c5\u00f3\u0097\u00a8\u0006\"\u000539763\u0012\u0011\b\"\u0012\u0006\u0010\u00f0\u00f3\u0097\u00a8\u0006\"\u000539764\u0012\u0011\b#\u0012\u0006\u0010\u0093\u00f4\u0097\u00a8\u0006\"\u000539765\u0012\u0011\b$\u0012\u0006\u0010\u00aa\u00f4\u0097\u00a8\u0006\"\u000539529\u0012\u0011\b%\u0012\u0006\u0010\u00e9\u00f4\u0097\u00a8\u0006\"\u000539530\u0012\u0013\b&\u0012\u0006\u0010\u00bb\u00f5\u0097\u00a8\u0006\"\u00076734219\u0012\u0011\b'\u0012\u0006\u0010\u0085\u00f6\u0097\u00a8\u0006\"\u000539536\u0012\u0014\b(\u0012\u0006\u0010\u00aa\u00f6\u0097\u00a8\u0006\"\b16206048\u0012\u0011\b)\u0012\u0006\u0010\u00bd\u00f6\u0097\u00a8\u0006\"\u000539537\u0012\u0011\b*\u0012\u0006\u0010\u00cf\u00f6\u0097\u00a8\u0006\"\u000539428\u0012\u0011\b+\u0012\u0006\u0010\u00e4\u00f6\u0097\u00a8\u0006\"\u000539429\u0012\u0011\b,\u0012\u0006\u0010\u0091\u00f7\u0097\u00a8\u0006\"\u000539430\u001a\b\u001a\u0006HYVL46 \u00b2\u00e8\u0097\u00a8\u0006\"`\n/\n\u001024602-701ff27f-2\u0012\b15:23:00\u001a\b20230916 \u0000*\u00036200\u0001\u0012\u001d\r#O\u0013\u00c2\u0015\u00fe#\u0092\u00c2\u001d\u0000\u0000\u00a3C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u00a0@(\u00b2\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HYVL46" + }, + { + "type": "con_recorrido", + "entity": "\n$505f544d-278c-4e22-a166-3c1d67d918b3\u001aT\n/\n\u001024668-701ff27f-2\u0012\b15:01:00\u001a\b20230916 \u0000*\u00036200\u0000\u0012\u0011\b'\u0012\u0006\u0010\u00e3\u00e9\u0097\u00a8\u0006\"\u000549478\u001a\b\u001a\u0006KTFG56 \u00ae\u00e8\u0097\u00a8\u0006\"`\n/\n\u001024668-701ff27f-2\u0012\b15:01:00\u001a\b20230916 \u0000*\u00036200\u0000\u0012\u001d\rg;\u0013\u00c2\u0015\u00e1'\u0092\u00c2\u001d\u0000\u0000\u009eC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ae\u00e8\u0097\u00a8\u0006B\b\u001a\u0006KTFG56" + }, + { + "type": "con_recorrido", + "entity": "\n$9ba7b984-ccb9-416c-83af-70ebdd8b0da4\u001a\u00a1\u0004\n/\n\u001024601-701ff27f-2\u0012\b15:03:00\u001a\b20230916 \u0000*\u00036200\u0001\u0012\u0011\b\u0014\u0012\u0006\u0010\u00d0\u00e8\u0097\u00a8\u0006\"\u000535707\u0012\u0011\b\u0015\u0012\u0006\u0010\u00eb\u00e8\u0097\u00a8\u0006\"\u000535708\u0012\u0011\b\u0016\u0012\u0006\u0010\u0084\u00e9\u0097\u00a8\u0006\"\u000535709\u0012\u0011\b\u0017\u0012\u0006\u0010\u00cf\u00e9\u0097\u00a8\u0006\"\u000538507\u0012\u0011\b\u0018\u0012\u0006\u0010\u0083\u00ea\u0097\u00a8\u0006\"\u000534473\u0012\u0011\b\u0019\u0012\u0006\u0010\u00b1\u00ea\u0097\u00a8\u0006\"\u000538500\u0012\u0011\b\u001a\u0012\u0006\u0010\u00d7\u00ea\u0097\u00a8\u0006\"\u000535808\u0012\u0011\b\u001b\u0012\u0006\u0010\u009a\u00eb\u0097\u00a8\u0006\"\u000535710\u0012\u0011\b\u001c\u0012\u0006\u0010\u00c7\u00eb\u0097\u00a8\u0006\"\u000550036\u0012\u0011\b\u001d\u0012\u0006\u0010\u00be\u00ec\u0097\u00a8\u0006\"\u000539509\u0012\u0011\b\u001e\u0012\u0006\u0010\u009f\u00ed\u0097\u00a8\u0006\"\u000539760\u0012\u0011\b\u001f\u0012\u0006\u0010\u00c6\u00ed\u0097\u00a8\u0006\"\u000539761\u0012\u0011\b \u0012\u0006\u0010\u00ec\u00ed\u0097\u00a8\u0006\"\u000539511\u0012\u0011\b!\u0012\u0006\u0010\u00de\u00ee\u0097\u00a8\u0006\"\u000539763\u0012\u0011\b\"\u0012\u0006\u0010\u0088\u00ef\u0097\u00a8\u0006\"\u000539764\u0012\u0011\b#\u0012\u0006\u0010\u00ab\u00ef\u0097\u00a8\u0006\"\u000539765\u0012\u0011\b$\u0012\u0006\u0010\u00c2\u00ef\u0097\u00a8\u0006\"\u000539529\u0012\u0011\b%\u0012\u0006\u0010\u00fe\u00ef\u0097\u00a8\u0006\"\u000539530\u0012\u0013\b&\u0012\u0006\u0010\u00ce\u00f0\u0097\u00a8\u0006\"\u00076734219\u0012\u0011\b'\u0012\u0006\u0010\u0094\u00f1\u0097\u00a8\u0006\"\u000539536\u0012\u0014\b(\u0012\u0006\u0010\u00b7\u00f1\u0097\u00a8\u0006\"\b16206048\u0012\u0011\b)\u0012\u0006\u0010\u00c9\u00f1\u0097\u00a8\u0006\"\u000539537\u0012\u0011\b*\u0012\u0006\u0010\u00da\u00f1\u0097\u00a8\u0006\"\u000539428\u0012\u0011\b+\u0012\u0006\u0010\u00ee\u00f1\u0097\u00a8\u0006\"\u000539429\u0012\u0011\b,\u0012\u0006\u0010\u0098\u00f2\u0097\u00a8\u0006\"\u000539430\u001a\b\u001a\u0006LBDS25 \u009c\u00e8\u0097\u00a8\u0006\"`\n/\n\u001024601-701ff27f-2\u0012\b15:03:00\u001a\b20230916 \u0000*\u00036200\u0001\u0012\u001d\r\u0084J\u0013\u00c2\u0015X\u0018\u0092\u00c2\u001d\u0000\u0000pB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009c\u00e8\u0097\u00a8\u0006B\b\u001a\u0006LBDS25" + }, + { + "type": "con_recorrido", + "entity": "\n$73c2b6df-e2c9-4354-8ad1-4f6e3888d461\u001a\u00ff\u0001\n/\n\u001024669-701ff27f-2\u0012\b15:16:00\u001a\b20230916 \u0000*\u00036200\u0000\u0012\u0011\b\u001e\u0012\u0006\u0010\u00ac\u00e9\u0097\u00a8\u0006\"\u000540268\u0012\u0011\b\u001f\u0012\u0006\u0010\u00f6\u00e9\u0097\u00a8\u0006\"\u000540269\u0012\u0011\b \u0012\u0006\u0010\u00d6\u00ea\u0097\u00a8\u0006\"\u000540274\u0012\u0011\b!\u0012\u0006\u0010\u00ee\u00ea\u0097\u00a8\u0006\"\u000540275\u0012\u0011\b\"\u0012\u0006\u0010\u00a8\u00eb\u0097\u00a8\u0006\"\u000540277\u0012\u0011\b#\u0012\u0006\u0010\u00e5\u00eb\u0097\u00a8\u0006\"\u000539940\u0012\u0011\b$\u0012\u0006\u0010\u00c7\u00ec\u0097\u00a8\u0006\"\u000540279\u0012\u0011\b%\u0012\u0006\u0010\u0083\u00ed\u0097\u00a8\u0006\"\u000549319\u0012\u0011\b&\u0012\u0006\u0010\u00c2\u00ed\u0097\u00a8\u0006\"\u000539641\u0012\u0011\b'\u0012\u0006\u0010\u009a\u00ef\u0097\u00a8\u0006\"\u000549478\u001a\b\u001a\u0006RSZG37 \u00b4\u00e8\u0097\u00a8\u0006\"`\n/\n\u001024669-701ff27f-2\u0012\b15:16:00\u001a\b20230916 \u0000*\u00036200\u0000\u0012\u001d\r\u00a3O\u0013\u00c2\u0015\u00ba#\u0092\u00c2\u001d\u0000\u0000\fC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-9\u008e\u00c3@(\u00b4\u00e8\u0097\u00a8\u0006B\b\u001a\u0006RSZG37" + }, + { + "type": "con_recorrido", + "entity": "\n$243dca6a-0a93-40aa-a0e9-ef6c76059551\u001a\u00a0\u0004\n/\n\u001024745-701ff27f-2\u0012\b15:16:00\u001a\b20230916 \u0000*\u00036210\u0000\u0012\u0011\b$\u0012\u0006\u0010\u00e0\u00e8\u0097\u00a8\u0006\"\u000539641\u0012\u0011\b%\u0012\u0006\u0010\u0086\u00e9\u0097\u00a8\u0006\"\u000539642\u0012\u0011\b&\u0012\u0006\u0010\u008e\u00eb\u0097\u00a8\u0006\"\u000539795\u0012\u0011\b'\u0012\u0006\u0010\u00c9\u00eb\u0097\u00a8\u0006\"\u000542642\u0012\u0011\b(\u0012\u0006\u0010\u00ea\u00eb\u0097\u00a8\u0006\"\u000542643\u0012\u0011\b)\u0012\u0006\u0010\u0086\u00ec\u0097\u00a8\u0006\"\u000542644\u0012\u0011\b*\u0012\u0006\u0010\u009a\u00ec\u0097\u00a8\u0006\"\u000542645\u0012\u0011\b+\u0012\u0006\u0010\u00e8\u00ec\u0097\u00a8\u0006\"\u000542532\u0012\u0011\b,\u0012\u0006\u0010\u0094\u00ee\u0097\u00a8\u0006\"\u000540249\u0012\u0011\b-\u0012\u0006\u0010\u00bc\u00ee\u0097\u00a8\u0006\"\u000540250\u0012\u0011\b.\u0012\u0006\u0010\u00d3\u00ee\u0097\u00a8\u0006\"\u000540251\u0012\u0011\b/\u0012\u0006\u0010\u00a1\u00ef\u0097\u00a8\u0006\"\u000536699\u0012\u0011\b0\u0012\u0006\u0010\u00bd\u00ef\u0097\u00a8\u0006\"\u000536700\u0012\u0011\b1\u0012\u0006\u0010\u00db\u00ef\u0097\u00a8\u0006\"\u000536701\u0012\u0011\b2\u0012\u0006\u0010\u00f0\u00ef\u0097\u00a8\u0006\"\u000536702\u0012\u0011\b3\u0012\u0006\u0010\u00c1\u00f0\u0097\u00a8\u0006\"\u000539140\u0012\u0011\b4\u0012\u0006\u0010\u00ff\u00f0\u0097\u00a8\u0006\"\u000539141\u0012\u0011\b5\u0012\u0006\u0010\u00b6\u00f1\u0097\u00a8\u0006\"\u000539082\u0012\u0011\b6\u0012\u0006\u0010\u00d5\u00f1\u0097\u00a8\u0006\"\u000540252\u0012\u0011\b7\u0012\u0006\u0010\u0090\u00f2\u0097\u00a8\u0006\"\u000536693\u0012\u0011\b8\u0012\u0006\u0010\u009e\u00f2\u0097\u00a8\u0006\"\u000532731\u0012\u0011\b9\u0012\u0006\u0010\u00c6\u00f2\u0097\u00a8\u0006\"\u000536691\u0012\u0011\b:\u0012\u0006\u0010\u00fb\u00f2\u0097\u00a8\u0006\"\u000536690\u0012\u0013\b;\u0012\u0006\u0010\u0095\u00f3\u0097\u00a8\u0006\"\u00073890531\u0012\u0013\b<\u0012\u0006\u0010\u00bb\u00f3\u0097\u00a8\u0006\"\u00073890533\u001a\b\u001a\u0006CFTT38 \u00b8\u00e8\u0097\u00a8\u0006\"`\n/\n\u001024745-701ff27f-2\u0012\b15:16:00\u001a\b20230916 \u0000*\u00036210\u0000\u0012\u001d\r\u00f1=\u0013\u00c2\u0015\u00db%\u0092\u00c2\u001d\u0000\u0000\u0094C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u000eA(\u00b8\u00e8\u0097\u00a8\u0006B\b\u001a\u0006CFTT38" + }, + { + "type": "con_recorrido", + "entity": "\n$c1a75573-e24f-4049-b4ec-5d75dedc930d\u001a\u00f1\t\n/\n\u001024822-701ff27f-2\u0012\b15:32:00\u001a\b20230916 \u0000*\u00036210\u0001\u0012\u0011\b\u0001\u0012\u0006\u0010\u00ea\u00e8\u0097\u00a8\u0006\"\u000540035\u0012\u0011\b\u0002\u0012\u0006\u0010\u00c4\u00e9\u0097\u00a8\u0006\"\u000540036\u0012\u0011\b\u0003\u0012\u0006\u0010\u0082\u00ea\u0097\u00a8\u0006\"\u000536695\u0012\u0011\b\u0004\u0012\u0006\u0010\u00aa\u00ea\u0097\u00a8\u0006\"\u000536696\u0012\u0011\b\u0005\u0012\u0006\u0010\u00f1\u00ea\u0097\u00a8\u0006\"\u000539229\u0012\u0011\b\u0006\u0012\u0006\u0010\u0094\u00eb\u0097\u00a8\u0006\"\u000532587\u0012\u0011\b\u0007\u0012\u0006\u0010\u00b2\u00eb\u0097\u00a8\u0006\"\u000539230\u0012\u0011\b\b\u0012\u0006\u0010\u00c3\u00eb\u0097\u00a8\u0006\"\u000539690\u0012\u0011\b\t\u0012\u0006\u0010\u00dc\u00eb\u0097\u00a8\u0006\"\u000539691\u0012\u0011\b\n\u0012\u0006\u0010\u00fb\u00eb\u0097\u00a8\u0006\"\u000539692\u0012\u0011\b\u000b\u0012\u0006\u0010\u008c\u00ec\u0097\u00a8\u0006\"\u000539693\u0012\u0011\b\f\u0012\u0006\u0010\u00df\u00ec\u0097\u00a8\u0006\"\u000540037\u0012\u0011\b\r\u0012\u0006\u0010\u00f9\u00ec\u0097\u00a8\u0006\"\u000540038\u0012\u0011\b\u000e\u0012\u0006\u0010\u00b2\u00ed\u0097\u00a8\u0006\"\u000540039\u0012\u0011\b\u000f\u0012\u0006\u0010\u00fe\u00ed\u0097\u00a8\u0006\"\u000540040\u0012\u0011\b\u0010\u0012\u0006\u0010\u00ce\u00ee\u0097\u00a8\u0006\"\u000542532\u0012\u0011\b\u0011\u0012\u0006\u0010\u0082\u00ef\u0097\u00a8\u0006\"\u000542533\u0012\u0011\b\u0012\u0012\u0006\u0010\u00b7\u00ef\u0097\u00a8\u0006\"\u000542534\u0012\u0011\b\u0013\u0012\u0006\u0010\u00dd\u00ef\u0097\u00a8\u0006\"\u000542535\u0012\u0011\b\u0014\u0012\u0006\u0010\u00b2\u00f0\u0097\u00a8\u0006\"\u000538502\u0012\u0011\b\u0015\u0012\u0006\u0010\u00ec\u00f0\u0097\u00a8\u0006\"\u000538503\u0012\u0011\b\u0016\u0012\u0006\u0010\u0085\u00f2\u0097\u00a8\u0006\"\u000535691\u0012\u0011\b\u0017\u0012\u0006\u0010\u00ac\u00f2\u0097\u00a8\u0006\"\u000535692\u0012\u0011\b\u0018\u0012\u0006\u0010\u00e2\u00f2\u0097\u00a8\u0006\"\u000535693\u0012\u0011\b\u0019\u0012\u0006\u0010\u009b\u00f3\u0097\u00a8\u0006\"\u000535694\u0012\u0011\b\u001a\u0012\u0006\u0010\u00c3\u00f3\u0097\u00a8\u0006\"\u000535695\u0012\u0011\b\u001b\u0012\u0006\u0010\u00f1\u00f3\u0097\u00a8\u0006\"\u000535696\u0012\u0011\b\u001c\u0012\u0006\u0010\u009a\u00f5\u0097\u00a8\u0006\"\u000535697\u0012\u0011\b\u001d\u0012\u0006\u0010\u00ff\u00f5\u0097\u00a8\u0006\"\u00052-Jan\u0012\u0011\b\u001e\u0012\u0006\u0010\u00a3\u00f6\u0097\u00a8\u0006\"\u000542460\u0012\u0011\b\u001f\u0012\u0006\u0010\u00c8\u00f6\u0097\u00a8\u0006\"\u000535690\u0012\u0011\b \u0012\u0006\u0010\u00ae\u00f7\u0097\u00a8\u0006\"\u000535700\u0012\u0011\b!\u0012\u0006\u0010\u00cd\u00f7\u0097\u00a8\u0006\"\u000535701\u0012\u0011\b\"\u0012\u0006\u0010\u0093\u00f8\u0097\u00a8\u0006\"\u000535703\u0012\u0011\b#\u0012\u0006\u0010\u00ab\u00f8\u0097\u00a8\u0006\"\u000535704\u0012\u0011\b$\u0012\u0006\u0010\u00b7\u00f8\u0097\u00a8\u0006\"\u000535705\u0012\u0011\b%\u0012\u0006\u0010\u00cf\u00f8\u0097\u00a8\u0006\"\u000535706\u0012\u0011\b&\u0012\u0006\u0010\u008b\u00f9\u0097\u00a8\u0006\"\u000535707\u0012\u0011\b'\u0012\u0006\u0010\u00a7\u00f9\u0097\u00a8\u0006\"\u000535708\u0012\u0011\b(\u0012\u0006\u0010\u00c1\u00f9\u0097\u00a8\u0006\"\u000535709\u0012\u0011\b)\u0012\u0006\u0010\u00a8\u00fa\u0097\u00a8\u0006\"\u000537522\u0012\u0011\b*\u0012\u0006\u0010\u00ce\u00fa\u0097\u00a8\u0006\"\u000539599\u0012\u0011\b+\u0012\u0006\u0010\u00bf\u00fb\u0097\u00a8\u0006\"\u000537465\u0012\u0011\b,\u0012\u0006\u0010\u00f6\u00fb\u0097\u00a8\u0006\"\u000539503\u0012\u0011\b-\u0012\u0006\u0010\u00ec\u00fc\u0097\u00a8\u0006\"\u000539504\u0012\u0011\b.\u0012\u0006\u0010\u008b\u00fd\u0097\u00a8\u0006\"\u000539595\u0012\u0011\b/\u0012\u0006\u0010\u009f\u00fd\u0097\u00a8\u0006\"\u000539759\u0012\u0011\b0\u0012\u0006\u0010\u00ea\u00fd\u0097\u00a8\u0006\"\u000539760\u0012\u0011\b1\u0012\u0006\u0010\u009b\u00fe\u0097\u00a8\u0006\"\u000539761\u0012\u0011\b2\u0012\u0006\u0010\u00ca\u00fe\u0097\u00a8\u0006\"\u000539511\u0012\u0011\b3\u0012\u0006\u0010\u00e5\u00ff\u0097\u00a8\u0006\"\u000539763\u0012\u0011\b4\u0012\u0006\u0010\u009f\u0080\u0098\u00a8\u0006\"\u000539764\u0012\u0011\b5\u0012\u0006\u0010\u00cc\u0080\u0098\u00a8\u0006\"\u000539765\u0012\u0011\b6\u0012\u0006\u0010\u00ef\u0080\u0098\u00a8\u0006\"\u000539529\u0012\u0011\b7\u0012\u0006\u0010\u00c6\u0081\u0098\u00a8\u0006\"\u000539530\u0012\u0011\b8\u0012\u0006\u0010\u0089\u0082\u0098\u00a8\u0006\"\u000540150\u0012\u0011\b9\u0012\u0006\u0010\u009f\u0083\u0098\u00a8\u0006\"\u000540152\u0012\u0011\b:\u0012\u0006\u0010\u00df\u0083\u0098\u00a8\u0006\"\u000539536\u0012\u0014\b;\u0012\u0006\u0010\u0087\u0084\u0098\u00a8\u0006\"\b16206048\u0012\u0011\b<\u0012\u0006\u0010\u00a6\u0084\u0098\u00a8\u0006\"\u000539537\u0012\u0011\b=\u0012\u0006\u0010\u00c1\u0084\u0098\u00a8\u0006\"\u000540192\u0012\u0011\b>\u0012\u0006\u0010\u00ec\u0084\u0098\u00a8\u0006\"\u000539429\u0012\u0011\b?\u0012\u0006\u0010\u00a5\u0085\u0098\u00a8\u0006\"\u000539430\u001a\b\u001a\u0006DHTY91 \u00aa\u00e8\u0097\u00a8\u0006\"`\n/\n\u001024822-701ff27f-2\u0012\b15:32:00\u001a\b20230916 \u0000*\u00036210\u0001\u0012\u001d\r\u00be4\u0013\u00c2\u0015\u00cb4\u0092\u00c2\u001d\u0000\u0000\u0092C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00aa\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DHTY91" + }, + { + "type": "con_recorrido", + "entity": "\n$4c6d49ba-40e2-4622-99ef-e11058c92781\u001a\u0097\u0006\n/\n\u001024746-701ff27f-2\u0012\b15:31:00\u001a\b20230916 \u0000*\u00036210\u0000\u0012\u0011\b\u0017\u0012\u0006\u0010\u00ba\u00e8\u0097\u00a8\u0006\"\u000539623\u0012\u0011\b\u0018\u0012\u0006\u0010\u00ee\u00e8\u0097\u00a8\u0006\"\u000539624\u0012\u0011\b\u0019\u0012\u0006\u0010\u00a0\u00e9\u0097\u00a8\u0006\"\u000539625\u0012\u0011\b\u001a\u0012\u0006\u0010\u00e9\u00e9\u0097\u00a8\u0006\"\u000539628\u0012\u0011\b\u001b\u0012\u0006\u0010\u00b9\u00ea\u0097\u00a8\u0006\"\u000539631\u0012\u0011\b\u001c\u0012\u0006\u0010\u00e9\u00ea\u0097\u00a8\u0006\"\u000549311\u0012\u0011\b\u001d\u0012\u0006\u0010\u00a2\u00eb\u0097\u00a8\u0006\"\u000539634\u0012\u0011\b\u001e\u0012\u0006\u0010\u00bc\u00eb\u0097\u00a8\u0006\"\u000539635\u0012\u0011\b\u001f\u0012\u0006\u0010\u00ea\u00eb\u0097\u00a8\u0006\"\u000539636\u0012\u0011\b \u0012\u0006\u0010\u009d\u00ed\u0097\u00a8\u0006\"\u000539637\u0012\u0011\b!\u0012\u0006\u0010\u00ce\u00ed\u0097\u00a8\u0006\"\u000549317\u0012\u0011\b\"\u0012\u0006\u0010\u00ed\u00ed\u0097\u00a8\u0006\"\u000549318\u0012\u0011\b#\u0012\u0006\u0010\u00ae\u00ee\u0097\u00a8\u0006\"\u000549319\u0012\u0011\b$\u0012\u0006\u0010\u00ec\u00ee\u0097\u00a8\u0006\"\u000539641\u0012\u0011\b%\u0012\u0006\u0010\u008f\u00ef\u0097\u00a8\u0006\"\u000539642\u0012\u0011\b&\u0012\u0006\u0010\u0086\u00f1\u0097\u00a8\u0006\"\u000539795\u0012\u0011\b'\u0012\u0006\u0010\u00be\u00f1\u0097\u00a8\u0006\"\u000542642\u0012\u0011\b(\u0012\u0006\u0010\u00de\u00f1\u0097\u00a8\u0006\"\u000542643\u0012\u0011\b)\u0012\u0006\u0010\u00f9\u00f1\u0097\u00a8\u0006\"\u000542644\u0012\u0011\b*\u0012\u0006\u0010\u008c\u00f2\u0097\u00a8\u0006\"\u000542645\u0012\u0011\b+\u0012\u0006\u0010\u00d9\u00f2\u0097\u00a8\u0006\"\u000542532\u0012\u0011\b,\u0012\u0006\u0010\u0085\u00f4\u0097\u00a8\u0006\"\u000540249\u0012\u0011\b-\u0012\u0006\u0010\u00ae\u00f4\u0097\u00a8\u0006\"\u000540250\u0012\u0011\b.\u0012\u0006\u0010\u00c6\u00f4\u0097\u00a8\u0006\"\u000540251\u0012\u0011\b/\u0012\u0006\u0010\u0096\u00f5\u0097\u00a8\u0006\"\u000536699\u0012\u0011\b0\u0012\u0006\u0010\u00b3\u00f5\u0097\u00a8\u0006\"\u000536700\u0012\u0011\b1\u0012\u0006\u0010\u00d3\u00f5\u0097\u00a8\u0006\"\u000536701\u0012\u0011\b2\u0012\u0006\u0010\u00e8\u00f5\u0097\u00a8\u0006\"\u000536702\u0012\u0011\b3\u0012\u0006\u0010\u00be\u00f6\u0097\u00a8\u0006\"\u000539140\u0012\u0011\b4\u0012\u0006\u0010\u0080\u00f7\u0097\u00a8\u0006\"\u000539141\u0012\u0011\b5\u0012\u0006\u0010\u00bb\u00f7\u0097\u00a8\u0006\"\u000539082\u0012\u0011\b6\u0012\u0006\u0010\u00dd\u00f7\u0097\u00a8\u0006\"\u000540252\u0012\u0011\b7\u0012\u0006\u0010\u009e\u00f8\u0097\u00a8\u0006\"\u000536693\u0012\u0011\b8\u0012\u0006\u0010\u00ac\u00f8\u0097\u00a8\u0006\"\u000532731\u0012\u0011\b9\u0012\u0006\u0010\u00d9\u00f8\u0097\u00a8\u0006\"\u000536691\u0012\u0011\b:\u0012\u0006\u0010\u0093\u00f9\u0097\u00a8\u0006\"\u000536690\u0012\u0013\b;\u0012\u0006\u0010\u00b1\u00f9\u0097\u00a8\u0006\"\u00073890531\u0012\u0013\b<\u0012\u0006\u0010\u00db\u00f9\u0097\u00a8\u0006\"\u00073890533\u001a\b\u001a\u0006JBTK37 \u00b8\u00e8\u0097\u00a8\u0006\"`\n/\n\u001024746-701ff27f-2\u0012\b15:31:00\u001a\b20230916 \u0000*\u00036210\u0000\u0012\u001d\r\u00d6J\u0013\u00c2\u0015/\u0017\u0092\u00c2\u001d\u0000\u0000rC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b8\u00e8\u0097\u00a8\u0006B\b\u001a\u0006JBTK37" + }, + { + "type": "con_recorrido", + "entity": "\n$898f6aab-4502-4045-ad1e-09efd086966a\u001a\u00f0\u0005\n/\n\u001024821-701ff27f-2\u0012\b15:17:00\u001a\b20230916 \u0000*\u00036210\u0001\u0012\u0011\b\u001c\u0012\u0006\u0010\u00de\u00e9\u0097\u00a8\u0006\"\u000535697\u0012\u0011\b\u001d\u0012\u0006\u0010\u00c5\u00ea\u0097\u00a8\u0006\"\u00052-Jan\u0012\u0011\b\u001e\u0012\u0006\u0010\u00e9\u00ea\u0097\u00a8\u0006\"\u000542460\u0012\u0011\b\u001f\u0012\u0006\u0010\u008d\u00eb\u0097\u00a8\u0006\"\u000535690\u0012\u0011\b \u0012\u0006\u0010\u00f1\u00eb\u0097\u00a8\u0006\"\u000535700\u0012\u0011\b!\u0012\u0006\u0010\u008e\u00ec\u0097\u00a8\u0006\"\u000535701\u0012\u0011\b\"\u0012\u0006\u0010\u00cf\u00ec\u0097\u00a8\u0006\"\u000535703\u0012\u0011\b#\u0012\u0006\u0010\u00e6\u00ec\u0097\u00a8\u0006\"\u000535704\u0012\u0011\b$\u0012\u0006\u0010\u00f0\u00ec\u0097\u00a8\u0006\"\u000535705\u0012\u0011\b%\u0012\u0006\u0010\u0087\u00ed\u0097\u00a8\u0006\"\u000535706\u0012\u0011\b&\u0012\u0006\u0010\u00bd\u00ed\u0097\u00a8\u0006\"\u000535707\u0012\u0011\b'\u0012\u0006\u0010\u00d6\u00ed\u0097\u00a8\u0006\"\u000535708\u0012\u0011\b(\u0012\u0006\u0010\u00ed\u00ed\u0097\u00a8\u0006\"\u000535709\u0012\u0011\b)\u0012\u0006\u0010\u00c8\u00ee\u0097\u00a8\u0006\"\u000537522\u0012\u0011\b*\u0012\u0006\u0010\u00e8\u00ee\u0097\u00a8\u0006\"\u000539599\u0012\u0011\b+\u0012\u0006\u0010\u00c8\u00ef\u0097\u00a8\u0006\"\u000537465\u0012\u0011\b,\u0012\u0006\u0010\u00f5\u00ef\u0097\u00a8\u0006\"\u000539503\u0012\u0011\b-\u0012\u0006\u0010\u00d5\u00f0\u0097\u00a8\u0006\"\u000539504\u0012\u0011\b.\u0012\u0006\u0010\u00ef\u00f0\u0097\u00a8\u0006\"\u000539595\u0012\u0011\b/\u0012\u0006\u0010\u00fe\u00f0\u0097\u00a8\u0006\"\u000539759\u0012\u0011\b0\u0012\u0006\u0010\u00b9\u00f1\u0097\u00a8\u0006\"\u000539760\u0012\u0011\b1\u0012\u0006\u0010\u00df\u00f1\u0097\u00a8\u0006\"\u000539761\u0012\u0011\b2\u0012\u0006\u0010\u0083\u00f2\u0097\u00a8\u0006\"\u000539511\u0012\u0011\b3\u0012\u0006\u0010\u00f7\u00f2\u0097\u00a8\u0006\"\u000539763\u0012\u0011\b4\u0012\u0006\u0010\u00a2\u00f3\u0097\u00a8\u0006\"\u000539764\u0012\u0011\b5\u0012\u0006\u0010\u00c3\u00f3\u0097\u00a8\u0006\"\u000539765\u0012\u0011\b6\u0012\u0006\u0010\u00dc\u00f3\u0097\u00a8\u0006\"\u000539529\u0012\u0011\b7\u0012\u0006\u0010\u009a\u00f4\u0097\u00a8\u0006\"\u000539530\u0012\u0011\b8\u0012\u0006\u0010\u00c9\u00f4\u0097\u00a8\u0006\"\u000540150\u0012\u0011\b9\u0012\u0006\u0010\u00b0\u00f5\u0097\u00a8\u0006\"\u000540152\u0012\u0011\b:\u0012\u0006\u0010\u00db\u00f5\u0097\u00a8\u0006\"\u000539536\u0012\u0014\b;\u0012\u0006\u0010\u00f6\u00f5\u0097\u00a8\u0006\"\b16206048\u0012\u0011\b<\u0012\u0006\u0010\u008b\u00f6\u0097\u00a8\u0006\"\u000539537\u0012\u0011\b=\u0012\u0006\u0010\u009d\u00f6\u0097\u00a8\u0006\"\u000540192\u0012\u0011\b>\u0012\u0006\u0010\u00b9\u00f6\u0097\u00a8\u0006\"\u000539429\u0012\u0011\b?\u0012\u0006\u0010\u00de\u00f6\u0097\u00a8\u0006\"\u000539430\u001a\b\u001a\u0006KYDS57 \u00b4\u00e8\u0097\u00a8\u0006\"`\n/\n\u001024821-701ff27f-2\u0012\b15:17:00\u001a\b20230916 \u0000*\u00036210\u0001\u0012\u001d\r\u001fC\u0013\u00c2\u0015y\"\u0092\u00c2\u001d\u0000\u0000.C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000 A(\u00b4\u00e8\u0097\u00a8\u0006B\b\u001a\u0006KYDS57" + }, + { + "type": "con_recorrido", + "entity": "\n$76c5770b-69cf-4964-8c34-38e81b7ad3a6\u001a\u00a6\t\n/\n\u001024747-701ff27f-2\u0012\b15:46:00\u001a\b20230916 \u0000*\u00036210\u0000\u0012\u0011\b\u0002\u0012\u0006\u0010\u00b2\u00e8\u0097\u00a8\u0006\"\u000540192\u0012\u0011\b\u0003\u0012\u0006\u0010\u00da\u00e8\u0097\u00a8\u0006\"\u000540193\u0012\u0011\b\u0004\u0012\u0006\u0010\u00f6\u00e8\u0097\u00a8\u0006\"\u000540194\u0012\u0011\b\u0005\u0012\u0006\u0010\u008a\u00e9\u0097\u00a8\u0006\"\u000540195\u0012\u0011\b\u0006\u0012\u0006\u0010\u00a4\u00e9\u0097\u00a8\u0006\"\u000540196\u0012\u0011\b\u0007\u0012\u0006\u0010\u00d3\u00e9\u0097\u00a8\u0006\"\u000540151\u0012\u0011\b\b\u0012\u0006\u0010\u00e1\u00ea\u0097\u00a8\u0006\"\u000539700\u0012\u0011\b\t\u0012\u0006\u0010\u008c\u00eb\u0097\u00a8\u0006\"\u000539701\u0012\u0011\b\n\u0012\u0006\u0010\u00b3\u00eb\u0097\u00a8\u0006\"\u000539702\u0012\u0011\b\u000b\u0012\u0006\u0010\u00bf\u00eb\u0097\u00a8\u0006\"\u000539703\u0012\u0011\b\f\u0012\u0006\u0010\u00f0\u00eb\u0097\u00a8\u0006\"\u000539704\u0012\u0011\b\r\u0012\u0006\u0010\u008b\u00ec\u0097\u00a8\u0006\"\u000539918\u0012\u0011\b\u000e\u0012\u0006\u0010\u00b8\u00ec\u0097\u00a8\u0006\"\u000539513\u0012\u0011\b\u000f\u0012\u0006\u0010\u00f9\u00ec\u0097\u00a8\u0006\"\u000539592\u0012\u0011\b\u0010\u0012\u0006\u0010\u00b3\u00ed\u0097\u00a8\u0006\"\u000539593\u0012\u0011\b\u0011\u0012\u0006\u0010\u00d3\u00ed\u0097\u00a8\u0006\"\u000539594\u0012\u0011\b\u0012\u0012\u0006\u0010\u00d0\u00ee\u0097\u00a8\u0006\"\u000539596\u0012\u0011\b\u0013\u0012\u0006\u0010\u00f3\u00ee\u0097\u00a8\u0006\"\u000539597\u0012\u0011\b\u0014\u0012\u0006\u0010\u009e\u00ef\u0097\u00a8\u0006\"\u000539598\u0012\u0011\b\u0015\u0012\u0006\u0010\u00fd\u00ef\u0097\u00a8\u0006\"\u000539599\u0012\u0011\b\u0016\u0012\u0006\u0010\u00c7\u00f0\u0097\u00a8\u0006\"\u000545011\u0012\u0011\b\u0017\u0012\u0006\u0010\u00a8\u00f1\u0097\u00a8\u0006\"\u000539623\u0012\u0011\b\u0018\u0012\u0006\u0010\u00d8\u00f1\u0097\u00a8\u0006\"\u000539624\u0012\u0011\b\u0019\u0012\u0006\u0010\u0085\u00f2\u0097\u00a8\u0006\"\u000539625\u0012\u0011\b\u001a\u0012\u0006\u0010\u00c9\u00f2\u0097\u00a8\u0006\"\u000539628\u0012\u0011\b\u001b\u0012\u0006\u0010\u0095\u00f3\u0097\u00a8\u0006\"\u000539631\u0012\u0011\b\u001c\u0012\u0006\u0010\u00c4\u00f3\u0097\u00a8\u0006\"\u000549311\u0012\u0011\b\u001d\u0012\u0006\u0010\u00fb\u00f3\u0097\u00a8\u0006\"\u000539634\u0012\u0011\b\u001e\u0012\u0006\u0010\u0094\u00f4\u0097\u00a8\u0006\"\u000539635\u0012\u0011\b\u001f\u0012\u0006\u0010\u00c2\u00f4\u0097\u00a8\u0006\"\u000539636\u0012\u0011\b \u0012\u0006\u0010\u00f9\u00f5\u0097\u00a8\u0006\"\u000539637\u0012\u0011\b!\u0012\u0006\u0010\u00ac\u00f6\u0097\u00a8\u0006\"\u000549317\u0012\u0011\b\"\u0012\u0006\u0010\u00cc\u00f6\u0097\u00a8\u0006\"\u000549318\u0012\u0011\b#\u0012\u0006\u0010\u0091\u00f7\u0097\u00a8\u0006\"\u000549319\u0012\u0011\b$\u0012\u0006\u0010\u00d4\u00f7\u0097\u00a8\u0006\"\u000539641\u0012\u0011\b%\u0012\u0006\u0010\u00fa\u00f7\u0097\u00a8\u0006\"\u000539642\u0012\u0011\b&\u0012\u0006\u0010\u0090\u00fa\u0097\u00a8\u0006\"\u000539795\u0012\u0011\b'\u0012\u0006\u0010\u00d1\u00fa\u0097\u00a8\u0006\"\u000542642\u0012\u0011\b(\u0012\u0006\u0010\u00f7\u00fa\u0097\u00a8\u0006\"\u000542643\u0012\u0011\b)\u0012\u0006\u0010\u0097\u00fb\u0097\u00a8\u0006\"\u000542644\u0012\u0011\b*\u0012\u0006\u0010\u00ae\u00fb\u0097\u00a8\u0006\"\u000542645\u0012\u0011\b+\u0012\u0006\u0010\u008a\u00fc\u0097\u00a8\u0006\"\u000542532\u0012\u0011\b,\u0012\u0006\u0010\u00de\u00fd\u0097\u00a8\u0006\"\u000540249\u0012\u0011\b-\u0012\u0006\u0010\u0092\u00fe\u0097\u00a8\u0006\"\u000540250\u0012\u0011\b.\u0012\u0006\u0010\u00b0\u00fe\u0097\u00a8\u0006\"\u000540251\u0012\u0011\b/\u0012\u0006\u0010\u0097\u00ff\u0097\u00a8\u0006\"\u000536699\u0012\u0011\b0\u0012\u0006\u0010\u00bd\u00ff\u0097\u00a8\u0006\"\u000536700\u0012\u0011\b1\u0012\u0006\u0010\u00e6\u00ff\u0097\u00a8\u0006\"\u000536701\u0012\u0011\b2\u0012\u0006\u0010\u0083\u0080\u0098\u00a8\u0006\"\u000536702\u0012\u0011\b3\u0012\u0006\u0010\u00f5\u0080\u0098\u00a8\u0006\"\u000539140\u0012\u0011\b4\u0012\u0006\u0010\u00cd\u0081\u0098\u00a8\u0006\"\u000539141\u0012\u0011\b5\u0012\u0006\u0010\u009e\u0082\u0098\u00a8\u0006\"\u000539082\u0012\u0011\b6\u0012\u0006\u0010\u00cd\u0082\u0098\u00a8\u0006\"\u000540252\u0012\u0011\b7\u0012\u0006\u0010\u00a7\u0083\u0098\u00a8\u0006\"\u000536693\u0012\u0011\b8\u0012\u0006\u0010\u00bc\u0083\u0098\u00a8\u0006\"\u000532731\u0012\u0011\b9\u0012\u0006\u0010\u00fa\u0083\u0098\u00a8\u0006\"\u000536691\u0012\u0011\b:\u0012\u0006\u0010\u00ce\u0084\u0098\u00a8\u0006\"\u000536690\u0012\u0013\b;\u0012\u0006\u0010\u00f8\u0084\u0098\u00a8\u0006\"\u00073890531\u0012\u0013\b<\u0012\u0006\u0010\u00b5\u0085\u0098\u00a8\u0006\"\u00073890533\u001a\b\u001a\u0006PCTS71 \u00a2\u00e8\u0097\u00a8\u0006\"`\n/\n\u001024747-701ff27f-2\u0012\b15:46:00\u001a\b20230916 \u0000*\u00036210\u0000\u0012\u001d\r\u00dd*\u0013\u00c2\u0015b\u0017\u0092\u00c2\u001d\u0000\u0000\u00b0C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008e\u00e3\u00f8@(\u00a2\u00e8\u0097\u00a8\u0006B\b\u001a\u0006PCTS71" + }, + { + "type": "con_recorrido", + "entity": "\n$d1460db6-3799-4570-bec4-15ae853588b0\u001a\u0088\u0003\n/\n\u001024744-701ff27f-2\u0012\b15:01:00\u001a\b20230916 \u0000*\u00036210\u0000\u0012\u0011\b,\u0012\u0006\u0010\u00e0\u00e9\u0097\u00a8\u0006\"\u000540249\u0012\u0011\b-\u0012\u0006\u0010\u008b\u00ea\u0097\u00a8\u0006\"\u000540250\u0012\u0011\b.\u0012\u0006\u0010\u00a4\u00ea\u0097\u00a8\u0006\"\u000540251\u0012\u0011\b/\u0012\u0006\u0010\u00f6\u00ea\u0097\u00a8\u0006\"\u000536699\u0012\u0011\b0\u0012\u0006\u0010\u0093\u00eb\u0097\u00a8\u0006\"\u000536700\u0012\u0011\b1\u0012\u0006\u0010\u00b3\u00eb\u0097\u00a8\u0006\"\u000536701\u0012\u0011\b2\u0012\u0006\u0010\u00c8\u00eb\u0097\u00a8\u0006\"\u000536702\u0012\u0011\b3\u0012\u0006\u0010\u009c\u00ec\u0097\u00a8\u0006\"\u000539140\u0012\u0011\b4\u0012\u0006\u0010\u00db\u00ec\u0097\u00a8\u0006\"\u000539141\u0012\u0011\b5\u0012\u0006\u0010\u0093\u00ed\u0097\u00a8\u0006\"\u000539082\u0012\u0011\b6\u0012\u0006\u0010\u00b3\u00ed\u0097\u00a8\u0006\"\u000540252\u0012\u0011\b7\u0012\u0006\u0010\u00ef\u00ed\u0097\u00a8\u0006\"\u000536693\u0012\u0011\b8\u0012\u0006\u0010\u00fc\u00ed\u0097\u00a8\u0006\"\u000532731\u0012\u0011\b9\u0012\u0006\u0010\u00a4\u00ee\u0097\u00a8\u0006\"\u000536691\u0012\u0011\b:\u0012\u0006\u0010\u00d9\u00ee\u0097\u00a8\u0006\"\u000536690\u0012\u0013\b;\u0012\u0006\u0010\u00f3\u00ee\u0097\u00a8\u0006\"\u00073890531\u0012\u0013\b<\u0012\u0006\u0010\u0098\u00ef\u0097\u00a8\u0006\"\u00073890533\u001a\b\u001a\u0006RJZL16 \u00b0\u00e8\u0097\u00a8\u0006\"`\n/\n\u001024744-701ff27f-2\u0012\b15:01:00\u001a\b20230916 \u0000*\u00036210\u0000\u0012\u001d\r<2\u0013\u00c2\u0015\u00981\u0092\u00c2\u001d\u0000\u0000\u009aC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-r\u001c\u00e7@(\u00b0\u00e8\u0097\u00a8\u0006B\b\u001a\u0006RJZL16" + }, + { + "type": "con_recorrido", + "entity": "\n$42ea9384-0c4d-4efb-b193-5b7ab2a50191\u001a\u00ad\u0003\n/\n\u001024817-701ff27f-2\u0012\b14:17:00\u001a\b20230916 \u0000*\u00036210\u0001\u0012\u0011\b-\u0012\u0006\u0010\u00c7\u00e8\u0097\u00a8\u0006\"\u000539504\u0012\u0011\b.\u0012\u0006\u0010\u00e2\u00e8\u0097\u00a8\u0006\"\u000539595\u0012\u0011\b/\u0012\u0006\u0010\u00f3\u00e8\u0097\u00a8\u0006\"\u000539759\u0012\u0011\b0\u0012\u0006\u0010\u00b3\u00e9\u0097\u00a8\u0006\"\u000539760\u0012\u0011\b1\u0012\u0006\u0010\u00dc\u00e9\u0097\u00a8\u0006\"\u000539761\u0012\u0011\b2\u0012\u0006\u0010\u0082\u00ea\u0097\u00a8\u0006\"\u000539511\u0012\u0011\b3\u0012\u0006\u0010\u00fb\u00ea\u0097\u00a8\u0006\"\u000539763\u0012\u0011\b4\u0012\u0006\u0010\u00a7\u00eb\u0097\u00a8\u0006\"\u000539764\u0012\u0011\b5\u0012\u0006\u0010\u00c9\u00eb\u0097\u00a8\u0006\"\u000539765\u0012\u0011\b6\u0012\u0006\u0010\u00e3\u00eb\u0097\u00a8\u0006\"\u000539529\u0012\u0011\b7\u0012\u0006\u0010\u00a1\u00ec\u0097\u00a8\u0006\"\u000539530\u0012\u0011\b8\u0012\u0006\u0010\u00d0\u00ec\u0097\u00a8\u0006\"\u000540150\u0012\u0011\b9\u0012\u0006\u0010\u00b5\u00ed\u0097\u00a8\u0006\"\u000540152\u0012\u0011\b:\u0012\u0006\u0010\u00de\u00ed\u0097\u00a8\u0006\"\u000539536\u0012\u0014\b;\u0012\u0006\u0010\u00f8\u00ed\u0097\u00a8\u0006\"\b16206048\u0012\u0011\b<\u0012\u0006\u0010\u008c\u00ee\u0097\u00a8\u0006\"\u000539537\u0012\u0011\b=\u0012\u0006\u0010\u009d\u00ee\u0097\u00a8\u0006\"\u000540192\u0012\u0011\b>\u0012\u0006\u0010\u00b8\u00ee\u0097\u00a8\u0006\"\u000539429\u0012\u0011\b?\u0012\u0006\u0010\u00db\u00ee\u0097\u00a8\u0006\"\u000539430\u001a\b\u001a\u0006RPYG62 \u0090\u00e8\u0097\u00a8\u0006\"`\n/\n\u001024817-701ff27f-2\u0012\b14:17:00\u001a\b20230916 \u0000*\u00036210\u0001\u0012\u001d\r\u0005@\u0013\u00c2\u0015\u00f7\u0012\u0092\u00c2\u001d\u0000\u0000 B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e486A(\u0090\u00e8\u0097\u00a8\u0006B\b\u001a\u0006RPYG62" + }, + { + "type": "con_recorrido", + "entity": "\n$c35288af-b4ad-4275-9682-2861b11c3b34\u001a\u00eb\u0004\n/\n\u001024820-701ff27f-2\u0012\b15:02:00\u001a\b20230916 \u0000*\u00036210\u0001\u0012\u0011\b#\u0012\u0006\u0010\u00bf\u00e8\u0097\u00a8\u0006\"\u000535704\u0012\u0011\b$\u0012\u0006\u0010\u00ca\u00e8\u0097\u00a8\u0006\"\u000535705\u0012\u0011\b%\u0012\u0006\u0010\u00e2\u00e8\u0097\u00a8\u0006\"\u000535706\u0012\u0011\b&\u0012\u0006\u0010\u009d\u00e9\u0097\u00a8\u0006\"\u000535707\u0012\u0011\b'\u0012\u0006\u0010\u00b8\u00e9\u0097\u00a8\u0006\"\u000535708\u0012\u0011\b(\u0012\u0006\u0010\u00d1\u00e9\u0097\u00a8\u0006\"\u000535709\u0012\u0011\b)\u0012\u0006\u0010\u00b1\u00ea\u0097\u00a8\u0006\"\u000537522\u0012\u0011\b*\u0012\u0006\u0010\u00d3\u00ea\u0097\u00a8\u0006\"\u000539599\u0012\u0011\b+\u0012\u0006\u0010\u00b8\u00eb\u0097\u00a8\u0006\"\u000537465\u0012\u0011\b,\u0012\u0006\u0010\u00e7\u00eb\u0097\u00a8\u0006\"\u000539503\u0012\u0011\b-\u0012\u0006\u0010\u00c9\u00ec\u0097\u00a8\u0006\"\u000539504\u0012\u0011\b.\u0012\u0006\u0010\u00e3\u00ec\u0097\u00a8\u0006\"\u000539595\u0012\u0011\b/\u0012\u0006\u0010\u00f3\u00ec\u0097\u00a8\u0006\"\u000539759\u0012\u0011\b0\u0012\u0006\u0010\u00af\u00ed\u0097\u00a8\u0006\"\u000539760\u0012\u0011\b1\u0012\u0006\u0010\u00d6\u00ed\u0097\u00a8\u0006\"\u000539761\u0012\u0011\b2\u0012\u0006\u0010\u00fa\u00ed\u0097\u00a8\u0006\"\u000539511\u0012\u0011\b3\u0012\u0006\u0010\u00ee\u00ee\u0097\u00a8\u0006\"\u000539763\u0012\u0011\b4\u0012\u0006\u0010\u0098\u00ef\u0097\u00a8\u0006\"\u000539764\u0012\u0011\b5\u0012\u0006\u0010\u00b9\u00ef\u0097\u00a8\u0006\"\u000539765\u0012\u0011\b6\u0012\u0006\u0010\u00d2\u00ef\u0097\u00a8\u0006\"\u000539529\u0012\u0011\b7\u0012\u0006\u0010\u008e\u00f0\u0097\u00a8\u0006\"\u000539530\u0012\u0011\b8\u0012\u0006\u0010\u00bc\u00f0\u0097\u00a8\u0006\"\u000540150\u0012\u0011\b9\u0012\u0006\u0010\u00a0\u00f1\u0097\u00a8\u0006\"\u000540152\u0012\u0011\b:\u0012\u0006\u0010\u00c9\u00f1\u0097\u00a8\u0006\"\u000539536\u0012\u0014\b;\u0012\u0006\u0010\u00e2\u00f1\u0097\u00a8\u0006\"\b16206048\u0012\u0011\b<\u0012\u0006\u0010\u00f6\u00f1\u0097\u00a8\u0006\"\u000539537\u0012\u0011\b=\u0012\u0006\u0010\u0087\u00f2\u0097\u00a8\u0006\"\u000540192\u0012\u0011\b>\u0012\u0006\u0010\u00a2\u00f2\u0097\u00a8\u0006\"\u000539429\u0012\u0011\b?\u0012\u0006\u0010\u00c5\u00f2\u0097\u00a8\u0006\"\u000539430\u001a\b\u001a\u0006SVZW59 \u00be\u00e8\u0097\u00a8\u0006\"`\n/\n\u001024820-701ff27f-2\u0012\b15:02:00\u001a\b20230916 \u0000*\u00036210\u0001\u0012\u001d\r\\K\u0013\u00c2\u0015j\u0019\u0092\u00c2\u001d\u0000\u0000xB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00be\u00e8\u0097\u00a8\u0006B\b\u001a\u0006SVZW59" + }, + { + "type": "con_recorrido", + "entity": "\n$43ab0a05-2718-4484-b371-2da96d2758d6\u001a\u00fb\u0003\n/\n\u001024945-701ff27f-2\u0012\b15:41:00\u001a\b20230916 \u0000*\u00036220\u0000\u0012\u0011\b\u000f\u0012\u0006\u0010\u00ae\u00e8\u0097\u00a8\u0006\"\u000539592\u0012\u0011\b\u0010\u0012\u0006\u0010\u00f4\u00e8\u0097\u00a8\u0006\"\u000539593\u0012\u0011\b\u0011\u0012\u0006\u0010\u0095\u00e9\u0097\u00a8\u0006\"\u000539594\u0012\u0011\b\u0012\u0012\u0006\u0010\u009b\u00ea\u0097\u00a8\u0006\"\u000539596\u0012\u0011\b\u0013\u0012\u0006\u0010\u00bc\u00ea\u0097\u00a8\u0006\"\u000539597\u0012\u0011\b\u0014\u0012\u0006\u0010\u00ee\u00ea\u0097\u00a8\u0006\"\u000539598\u0012\u0011\b\u0015\u0012\u0006\u0010\u00d2\u00eb\u0097\u00a8\u0006\"\u000539599\u0012\u0011\b\u0016\u0012\u0006\u0010\u009e\u00ec\u0097\u00a8\u0006\"\u000545011\u0012\u0011\b\u0017\u0012\u0006\u0010\u0081\u00ed\u0097\u00a8\u0006\"\u000539623\u0012\u0011\b\u0018\u0012\u0006\u0010\u00b1\u00ed\u0097\u00a8\u0006\"\u000539624\u0012\u0011\b\u0019\u0012\u0006\u0010\u00df\u00ed\u0097\u00a8\u0006\"\u000539625\u0012\u0011\b\u001a\u0012\u0006\u0010\u00a3\u00ee\u0097\u00a8\u0006\"\u000539628\u0012\u0014\b\u001b\u0012\u0006\u0010\u00a3\u00ef\u0097\u00a8\u0006\"\b15879953\u0012\u0011\b\u001c\u0012\u0006\u0010\u00b8\u00ef\u0097\u00a8\u0006\"\u000535746\u0012\u0011\b\u001d\u0012\u0006\u0010\u00bb\u00f0\u0097\u00a8\u0006\"\u000540272\u0012\u0013\b\u001e\u0012\u0006\u0010\u00a3\u00f5\u0097\u00a8\u0006\"\u00076734217\u0012\u0011\b\u001f\u0012\u0006\u0010\u00f8\u00f6\u0097\u00a8\u0006\"\u000540257\u0012\u0011\b \u0012\u0006\u0010\u009f\u00f7\u0097\u00a8\u0006\"\u000540256\u0012\u0011\b!\u0012\u0006\u0010\u00d3\u00f7\u0097\u00a8\u0006\"\u000540255\u0012\u0011\b\"\u0012\u0006\u0010\u00f5\u00fa\u0097\u00a8\u0006\"\u000539139\u0012\u0011\b#\u0012\u0006\u0010\u00c0\u00fb\u0097\u00a8\u0006\"\u000532587\u0012\u0011\b$\u0012\u0006\u0010\u00de\u00fb\u0097\u00a8\u0006\"\u000539230\u0012\u0011\b%\u0012\u0006\u0010\u00f4\u00fb\u0097\u00a8\u0006\"\u000536703\u001a\b\u001a\u0006DDBD91 \u00a8\u00e8\u0097\u00a8\u0006\"`\n/\n\u001024945-701ff27f-2\u0012\b15:41:00\u001a\b20230916 \u0000*\u00036220\u0000\u0012\u001d\r\f7\u0013\u00c2\u0015u\u000f\u0092\u00c2\u001d\u0000\u0000JC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UU\u0085@(\u00a8\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DDBD91" + }, + { + "type": "con_recorrido", + "entity": "\n$8ab55ded-be22-4c2a-be52-eb4b0489034d\u001a\u00e1\u0002\n/\n\u001024886-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00036220\u0001\u0012\u0011\b\u001f\u0012\u0006\u0010\u00a4\u00e8\u0097\u00a8\u0006\"\u000539763\u0012\u0011\b \u0012\u0006\u0010\u00c9\u00e8\u0097\u00a8\u0006\"\u000539764\u0012\u0011\b!\u0012\u0006\u0010\u00f0\u00e8\u0097\u00a8\u0006\"\u000539765\u0012\u0011\b\"\u0012\u0006\u0010\u0088\u00e9\u0097\u00a8\u0006\"\u000539529\u0012\u0011\b#\u0012\u0006\u0010\u00d2\u00e9\u0097\u00a8\u0006\"\u000539530\u0012\u0011\b$\u0012\u0006\u0010\u00af\u00eb\u0097\u00a8\u0006\"\u000591159\u0012\u0011\b%\u0012\u0006\u0010\u0096\u00ec\u0097\u00a8\u0006\"\u000539584\u0012\u0011\b&\u0012\u0006\u0010\u00c4\u00ec\u0097\u00a8\u0006\"\u000539585\u0012\u0011\b'\u0012\u0006\u0010\u00d0\u00ec\u0097\u00a8\u0006\"\u000538024\u0012\u0011\b(\u0012\u0006\u0010\u00f7\u00ec\u0097\u00a8\u0006\"\u000539536\u0012\u0014\b)\u0012\u0006\u0010\u009b\u00ed\u0097\u00a8\u0006\"\b16206048\u0012\u0011\b*\u0012\u0006\u0010\u00ae\u00ed\u0097\u00a8\u0006\"\u000539537\u0012\u0011\b+\u0012\u0006\u0010\u00bf\u00ed\u0097\u00a8\u0006\"\u000539428\u0012\u0011\b,\u0012\u0006\u0010\u00da\u00ed\u0097\u00a8\u0006\"\u000539429\u0012\u0011\b-\u0012\u0006\u0010\u00fd\u00ed\u0097\u00a8\u0006\"\u000539430\u001a\b\u001a\u0006JZZZ63 \u008e\u00e8\u0097\u00a8\u0006\"`\n/\n\u001024886-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00036220\u0001\u0012\u001d\r)3\u0013\u00c2\u0015\u000e\u0010\u0092\u00c2\u001d\u0000\u0000\u00a6C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u008e\u00e8\u0097\u00a8\u0006B\b\u001a\u0006JZZZ63" + }, + { + "type": "con_recorrido", + "entity": "\n$94b12a5e-d8d5-49d5-bfe6-3da767927dbb\u001a\u00a4\u0005\n/\n\u001024887-701ff27f-2\u0012\b15:20:00\u001a\b20230916 \u0000*\u00036220\u0001\u0012\u0011\b\u000e\u0012\u0006\u0010\u0095\u00e8\u0097\u00a8\u0006\"\u000535703\u0012\u0011\b\u000f\u0012\u0006\u0010\u00ae\u00e8\u0097\u00a8\u0006\"\u000535704\u0012\u0011\b\u0010\u0012\u0006\u0010\u00ba\u00e8\u0097\u00a8\u0006\"\u000535705\u0012\u0011\b\u0011\u0012\u0006\u0010\u00d2\u00e8\u0097\u00a8\u0006\"\u000535706\u0012\u0011\b\u0012\u0012\u0006\u0010\u0089\u00e9\u0097\u00a8\u0006\"\u000535707\u0012\u0011\b\u0013\u0012\u0006\u0010\u00a7\u00e9\u0097\u00a8\u0006\"\u000535708\u0012\u0011\b\u0014\u0012\u0006\u0010\u00c0\u00e9\u0097\u00a8\u0006\"\u000535709\u0012\u0011\b\u0015\u0012\u0006\u0010\u00a0\u00ea\u0097\u00a8\u0006\"\u000537522\u0012\u0011\b\u0016\u0012\u0006\u0010\u00c2\u00ea\u0097\u00a8\u0006\"\u000539599\u0012\u0011\b\u0017\u0012\u0006\u0010\u00a6\u00eb\u0097\u00a8\u0006\"\u000537465\u0012\u0011\b\u0018\u0012\u0006\u0010\u00d5\u00eb\u0097\u00a8\u0006\"\u000539503\u0012\u0011\b\u0019\u0012\u0006\u0010\u00b2\u00ec\u0097\u00a8\u0006\"\u000539504\u0012\u0011\b\u001a\u0012\u0006\u0010\u00cb\u00ec\u0097\u00a8\u0006\"\u000539595\u0012\u0011\b\u001b\u0012\u0006\u0010\u00e1\u00ec\u0097\u00a8\u0006\"\u000539759\u0012\u0011\b\u001c\u0012\u0006\u0010\u009c\u00ed\u0097\u00a8\u0006\"\u000539760\u0012\u0011\b\u001d\u0012\u0006\u0010\u00c3\u00ed\u0097\u00a8\u0006\"\u000539761\u0012\u0011\b\u001e\u0012\u0006\u0010\u00e9\u00ed\u0097\u00a8\u0006\"\u000539511\u0012\u0011\b\u001f\u0012\u0006\u0010\u00db\u00ee\u0097\u00a8\u0006\"\u000539763\u0012\u0011\b \u0012\u0006\u0010\u00fd\u00ee\u0097\u00a8\u0006\"\u000539764\u0012\u0011\b!\u0012\u0006\u0010\u00a0\u00ef\u0097\u00a8\u0006\"\u000539765\u0012\u0011\b\"\u0012\u0006\u0010\u00b7\u00ef\u0097\u00a8\u0006\"\u000539529\u0012\u0011\b#\u0012\u0006\u0010\u00fb\u00ef\u0097\u00a8\u0006\"\u000539530\u0012\u0011\b$\u0012\u0006\u0010\u00cd\u00f1\u0097\u00a8\u0006\"\u000591159\u0012\u0011\b%\u0012\u0006\u0010\u00b2\u00f2\u0097\u00a8\u0006\"\u000539584\u0012\u0011\b&\u0012\u0006\u0010\u00df\u00f2\u0097\u00a8\u0006\"\u000539585\u0012\u0011\b'\u0012\u0006\u0010\u00eb\u00f2\u0097\u00a8\u0006\"\u000538024\u0012\u0011\b(\u0012\u0006\u0010\u0092\u00f3\u0097\u00a8\u0006\"\u000539536\u0012\u0014\b)\u0012\u0006\u0010\u00b6\u00f3\u0097\u00a8\u0006\"\b16206048\u0012\u0011\b*\u0012\u0006\u0010\u00c9\u00f3\u0097\u00a8\u0006\"\u000539537\u0012\u0011\b+\u0012\u0006\u0010\u00da\u00f3\u0097\u00a8\u0006\"\u000539428\u0012\u0011\b,\u0012\u0006\u0010\u00f5\u00f3\u0097\u00a8\u0006\"\u000539429\u0012\u0011\b-\u0012\u0006\u0010\u0099\u00f4\u0097\u00a8\u0006\"\u000539430\u001a\b\u001a\u0006KTFG58 \u0094\u00e8\u0097\u00a8\u0006\"`\n/\n\u001024887-701ff27f-2\u0012\b15:20:00\u001a\b20230916 \u0000*\u00036220\u0001\u0012\u001d\r\u00f3K\u0013\u00c2\u0015\u0001\u001a\u0092\u00c2\u001d\u0000\u0000xB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008e\u00e3\u0000A(\u0094\u00e8\u0097\u00a8\u0006B\b\u001a\u0006KTFG58" + }, + { + "type": "con_recorrido", + "entity": "\n$90434c2f-965a-4d1a-99d6-53b00e902996\u001a\u008d\u0001\n/\n\u001024943-701ff27f-2\u0012\b15:01:00\u001a\b20230916 \u0000*\u00036220\u0000\u0012\u0011\b\"\u0012\u0006\u0010\u00ab\u00e9\u0097\u00a8\u0006\"\u000539139\u0012\u0011\b#\u0012\u0006\u0010\u00ef\u00e9\u0097\u00a8\u0006\"\u000532587\u0012\u0011\b$\u0012\u0006\u0010\u0089\u00ea\u0097\u00a8\u0006\"\u000539230\u0012\u0011\b%\u0012\u0006\u0010\u009c\u00ea\u0097\u00a8\u0006\"\u000536703\u001a\b\u001a\u0006KVGR49 \u0090\u00e8\u0097\u00a8\u0006\"`\n/\n\u001024943-701ff27f-2\u0012\b15:01:00\u001a\b20230916 \u0000*\u00036220\u0000\u0012\u001d\r\u00e20\u0013\u00c2\u0015\u00c8:\u0092\u00c2\u001d\u0000\u0000\u0091C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-r\u001c\u0017A(\u0090\u00e8\u0097\u00a8\u0006B\b\u001a\u0006KVGR49" + }, + { + "type": "con_recorrido", + "entity": "\n$471daeb5-934a-41b4-81a3-8833099aedce\u001a\u00f5\u0006\n/\n\u001024888-701ff27f-2\u0012\b15:40:00\u001a\b20230916 \u0000*\u00036220\u0001\u0012\u0011\b\u0003\u0012\u0006\u0010\u00e4\u00e9\u0097\u00a8\u0006\"\u000539141\u0012\u0011\b\u0004\u0012\u0006\u0010\u009f\u00ea\u0097\u00a8\u0006\"\u000539082\u0012\u0011\b\u0005\u0012\u0006\u0010\u00c1\u00ea\u0097\u00a8\u0006\"\u000540252\u0012\u0011\b\u0006\u0012\u0006\u0010\u00ff\u00ea\u0097\u00a8\u0006\"\u000536693\u0012\u0011\b\u0007\u0012\u0006\u0010\u0090\u00eb\u0097\u00a8\u0006\"\u000532731\u0012\u0011\b\b\u0012\u0006\u0010\u00c8\u00f2\u0097\u00a8\u0006\"\u000540272\u0012\u0011\b\t\u0012\u0006\u0010\u009c\u00f3\u0097\u00a8\u0006\"\u00052-Jan\u0012\u0011\b\n\u0012\u0006\u0010\u00bd\u00f3\u0097\u00a8\u0006\"\u000542460\u0012\u0011\b\u000b\u0012\u0006\u0010\u00e7\u00f3\u0097\u00a8\u0006\"\u000535690\u0012\u0011\b\f\u0012\u0006\u0010\u00c8\u00f4\u0097\u00a8\u0006\"\u000535700\u0012\u0011\b\r\u0012\u0006\u0010\u00e5\u00f4\u0097\u00a8\u0006\"\u000535701\u0012\u0011\b\u000e\u0012\u0006\u0010\u00a7\u00f5\u0097\u00a8\u0006\"\u000535703\u0012\u0011\b\u000f\u0012\u0006\u0010\u00bf\u00f5\u0097\u00a8\u0006\"\u000535704\u0012\u0011\b\u0010\u0012\u0006\u0010\u00ca\u00f5\u0097\u00a8\u0006\"\u000535705\u0012\u0011\b\u0011\u0012\u0006\u0010\u00e1\u00f5\u0097\u00a8\u0006\"\u000535706\u0012\u0011\b\u0012\u0012\u0006\u0010\u0096\u00f6\u0097\u00a8\u0006\"\u000535707\u0012\u0011\b\u0013\u0012\u0006\u0010\u00b3\u00f6\u0097\u00a8\u0006\"\u000535708\u0012\u0011\b\u0014\u0012\u0006\u0010\u00cc\u00f6\u0097\u00a8\u0006\"\u000535709\u0012\u0011\b\u0015\u0012\u0006\u0010\u00ac\u00f7\u0097\u00a8\u0006\"\u000537522\u0012\u0011\b\u0016\u0012\u0006\u0010\u00cf\u00f7\u0097\u00a8\u0006\"\u000539599\u0012\u0011\b\u0017\u0012\u0006\u0010\u00b9\u00f8\u0097\u00a8\u0006\"\u000537465\u0012\u0011\b\u0018\u0012\u0006\u0010\u00eb\u00f8\u0097\u00a8\u0006\"\u000539503\u0012\u0011\b\u0019\u0012\u0006\u0010\u00d1\u00f9\u0097\u00a8\u0006\"\u000539504\u0012\u0011\b\u001a\u0012\u0006\u0010\u00ed\u00f9\u0097\u00a8\u0006\"\u000539595\u0012\u0011\b\u001b\u0012\u0006\u0010\u0086\u00fa\u0097\u00a8\u0006\"\u000539759\u0012\u0011\b\u001c\u0012\u0006\u0010\u00ca\u00fa\u0097\u00a8\u0006\"\u000539760\u0012\u0011\b\u001d\u0012\u0006\u0010\u00f7\u00fa\u0097\u00a8\u0006\"\u000539761\u0012\u0011\b\u001e\u0012\u0006\u0010\u00a3\u00fb\u0097\u00a8\u0006\"\u000539511\u0012\u0011\b\u001f\u0012\u0006\u0010\u00ad\u00fc\u0097\u00a8\u0006\"\u000539763\u0012\u0011\b \u0012\u0006\u0010\u00d6\u00fc\u0097\u00a8\u0006\"\u000539764\u0012\u0011\b!\u0012\u0006\u0010\u0082\u00fd\u0097\u00a8\u0006\"\u000539765\u0012\u0011\b\"\u0012\u0006\u0010\u009f\u00fd\u0097\u00a8\u0006\"\u000539529\u0012\u0011\b#\u0012\u0006\u0010\u00f6\u00fd\u0097\u00a8\u0006\"\u000539530\u0012\u0011\b$\u0012\u0006\u0010\u008d\u0080\u0098\u00a8\u0006\"\u000591159\u0012\u0011\b%\u0012\u0006\u0010\u009b\u0081\u0098\u00a8\u0006\"\u000539584\u0012\u0011\b&\u0012\u0006\u0010\u00db\u0081\u0098\u00a8\u0006\"\u000539585\u0012\u0011\b'\u0012\u0006\u0010\u00ec\u0081\u0098\u00a8\u0006\"\u000538024\u0012\u0011\b(\u0012\u0006\u0010\u00a5\u0082\u0098\u00a8\u0006\"\u000539536\u0012\u0014\b)\u0012\u0006\u0010\u00da\u0082\u0098\u00a8\u0006\"\b16206048\u0012\u0011\b*\u0012\u0006\u0010\u00f6\u0082\u0098\u00a8\u0006\"\u000539537\u0012\u0011\b+\u0012\u0006\u0010\u008f\u0083\u0098\u00a8\u0006\"\u000539428\u0012\u0011\b,\u0012\u0006\u0010\u00b9\u0083\u0098\u00a8\u0006\"\u000539429\u0012\u0011\b-\u0012\u0006\u0010\u00ef\u0083\u0098\u00a8\u0006\"\u000539430\u001a\b\u001a\u0006PGYF76 \u00ac\u00e8\u0097\u00a8\u0006\"`\n/\n\u001024888-701ff27f-2\u0012\b15:40:00\u001a\b20230916 \u0000*\u00036220\u0001\u0012\u001d\r\u00a3-\u0013\u00c2\u0015l<\u0092\u00c2\u001d\u0000\u00006C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00ab\u00aa\u00ba@(\u00ac\u00e8\u0097\u00a8\u0006B\b\u001a\u0006PGYF76" + }, + { + "type": "con_recorrido", + "entity": "\n$0a1644b2-256d-4ac5-a996-d1738535a9cb\u001a\u00bd\u0002\n/\n\u001024944-701ff27f-2\u0012\b15:21:00\u001a\b20230916 \u0000*\u00036220\u0000\u0012\u0011\b\u0019\u0012\u0006\u0010\u00d0\u00e8\u0097\u00a8\u0006\"\u000539625\u0012\u0011\b\u001a\u0012\u0006\u0010\u009a\u00e9\u0097\u00a8\u0006\"\u000539628\u0012\u0014\b\u001b\u0012\u0006\u0010\u00a2\u00ea\u0097\u00a8\u0006\"\b15879953\u0012\u0011\b\u001c\u0012\u0006\u0010\u00b8\u00ea\u0097\u00a8\u0006\"\u000535746\u0012\u0011\b\u001d\u0012\u0006\u0010\u00c2\u00eb\u0097\u00a8\u0006\"\u000540272\u0012\u0013\b\u001e\u0012\u0006\u0010\u00a9\u00f0\u0097\u00a8\u0006\"\u00076734217\u0012\u0011\b\u001f\u0012\u0006\u0010\u00f2\u00f1\u0097\u00a8\u0006\"\u000540257\u0012\u0011\b \u0012\u0006\u0010\u0097\u00f2\u0097\u00a8\u0006\"\u000540256\u0012\u0011\b!\u0012\u0006\u0010\u00c7\u00f2\u0097\u00a8\u0006\"\u000540255\u0012\u0011\b\"\u0012\u0006\u0010\u00c2\u00f5\u0097\u00a8\u0006\"\u000539139\u0012\u0011\b#\u0012\u0006\u0010\u0084\u00f6\u0097\u00a8\u0006\"\u000532587\u0012\u0011\b$\u0012\u0006\u0010\u009e\u00f6\u0097\u00a8\u0006\"\u000539230\u0012\u0011\b%\u0012\u0006\u0010\u00b1\u00f6\u0097\u00a8\u0006\"\u000536703\u001a\b\u001a\u0006ZJ7262 \u00ae\u00e8\u0097\u00a8\u0006\"`\n/\n\u001024944-701ff27f-2\u0012\b15:21:00\u001a\b20230916 \u0000*\u00036220\u0000\u0012\u001d\rRL\u0013\u00c2\u0015\u00df\u0018\u0092\u00c2\u001d\u0000\u0000pC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008e\u00e3\u0000A(\u00ae\u00e8\u0097\u00a8\u0006B\b\u001a\u0006ZJ7262" + }, + { + "type": "con_recorrido", + "entity": "\n$6a4b49df-cab9-4b7e-b595-d287be5785e5\u001a\u0092\b\n4\n\u0015742beaf6-4-701ff27f-2\u0012\b15:14:00\u001a\b20230916 \u0000*\u00036260\u0000\u0012\u0011\b\u0013\u0012\u0006\u0010\u00ff\u00e7\u0097\u00a8\u0006\"\u000535203\u0012\u0011\b\u0014\u0012\u0006\u0010\u00c5\u00e8\u0097\u00a8\u0006\"\u00051-Feb\u0012\u0011\b\u0015\u0012\u0006\u0010\u00f6\u00e8\u0097\u00a8\u0006\"\u00051-Mar\u0012\u0011\b\u0016\u0012\u0006\u0010\u0098\u00e9\u0097\u00a8\u0006\"\u000537465\u0012\u0011\b\u0017\u0012\u0006\u0010\u00ff\u00e9\u0097\u00a8\u0006\"\u000539599\u0012\u0011\b\u0018\u0012\u0006\u0010\u00cd\u00ea\u0097\u00a8\u0006\"\u000545011\u0012\u0011\b\u0019\u0012\u0006\u0010\u00b2\u00eb\u0097\u00a8\u0006\"\u000539623\u0012\u0011\b\u001a\u0012\u0006\u0010\u00e3\u00eb\u0097\u00a8\u0006\"\u000539624\u0012\u0011\b\u001b\u0012\u0006\u0010\u00a4\u00ec\u0097\u00a8\u0006\"\u000590000\u0012\u0011\b\u001c\u0012\u0006\u0010\u00d6\u00ec\u0097\u00a8\u0006\"\u000539628\u0012\u0011\b\u001d\u0012\u0006\u0010\u00a2\u00ed\u0097\u00a8\u0006\"\u000539631\u0012\u0011\b\u001e\u0012\u0006\u0010\u00d0\u00ed\u0097\u00a8\u0006\"\u000549311\u0012\u0011\b\u001f\u0012\u0006\u0010\u0087\u00ee\u0097\u00a8\u0006\"\u000539634\u0012\u0011\b \u0012\u0006\u0010\u00a0\u00ee\u0097\u00a8\u0006\"\u000539635\u0012\u0011\b!\u0012\u0006\u0010\u00cd\u00ee\u0097\u00a8\u0006\"\u000539636\u0012\u0011\b\"\u0012\u0006\u0010\u0081\u00ef\u0097\u00a8\u0006\"\u000549503\u0012\u0011\b#\u0012\u0006\u0010\u00fc\u00ef\u0097\u00a8\u0006\"\u000539637\u0012\u0011\b$\u0012\u0006\u0010\u00ac\u00f0\u0097\u00a8\u0006\"\u000549317\u0012\u0011\b%\u0012\u0006\u0010\u00cb\u00f0\u0097\u00a8\u0006\"\u000549318\u0012\u0011\b&\u0012\u0006\u0010\u008b\u00f1\u0097\u00a8\u0006\"\u000549319\u0012\u0011\b'\u0012\u0006\u0010\u00c9\u00f1\u0097\u00a8\u0006\"\u000539641\u0012\u0011\b(\u0012\u0006\u0010\u00ec\u00f1\u0097\u00a8\u0006\"\u000539642\u0012\u0011\b)\u0012\u0006\u0010\u0080\u00f4\u0097\u00a8\u0006\"\u000549325\u0012\u0011\b*\u0012\u0006\u0010\u00c9\u00f4\u0097\u00a8\u0006\"\u000540711\u0012\u0011\b+\u0012\u0006\u0010\u00f4\u00f4\u0097\u00a8\u0006\"\u000540712\u0012\u0011\b,\u0012\u0006\u0010\u0095\u00f5\u0097\u00a8\u0006\"\u000540713\u0012\u0011\b-\u0012\u0006\u0010\u00a7\u00f5\u0097\u00a8\u0006\"\u000540714\u0012\u0013\b.\u0012\u0006\u0010\u00e8\u00f5\u0097\u00a8\u0006\"\u00078606049\u0012\u0011\b/\u0012\u0006\u0010\u0098\u00f6\u0097\u00a8\u0006\"\u000537428\u0012\u0011\b0\u0012\u0006\u0010\u00c2\u00f6\u0097\u00a8\u0006\"\u000537429\u0012\u0011\b1\u0012\u0006\u0010\u00e4\u00f6\u0097\u00a8\u0006\"\u000537430\u0012\u0011\b2\u0012\u0006\u0010\u0086\u00f7\u0097\u00a8\u0006\"\u000537431\u0012\u0011\b3\u0012\u0006\u0010\u00a5\u00f7\u0097\u00a8\u0006\"\u000537432\u0012\u0011\b4\u0012\u0006\u0010\u00ed\u00f7\u0097\u00a8\u0006\"\u000540720\u0012\u0011\b5\u0012\u0006\u0010\u00fa\u00f7\u0097\u00a8\u0006\"\u000540721\u0012\u0011\b6\u0012\u0006\u0010\u00a6\u00f8\u0097\u00a8\u0006\"\u000540722\u0012\u0011\b7\u0012\u0006\u0010\u00ac\u00f8\u0097\u00a8\u0006\"\u000540723\u0012\u0011\b8\u0012\u0006\u0010\u00d0\u00f8\u0097\u00a8\u0006\"\u000540724\u0012\u0011\b9\u0012\u0006\u0010\u009f\u00f9\u0097\u00a8\u0006\"\u000540725\u0012\u0011\b:\u0012\u0006\u0010\u00bf\u00f9\u0097\u00a8\u0006\"\u000537435\u0012\u0011\b;\u0012\u0006\u0010\u00ef\u00f9\u0097\u00a8\u0006\"\u000539658\u0012\u0011\b<\u0012\u0006\u0010\u009f\u00fa\u0097\u00a8\u0006\"\u000539659\u0012\u0011\b=\u0012\u0006\u0010\u00b9\u00fa\u0097\u00a8\u0006\"\u000539660\u0012\u0011\b>\u0012\u0006\u0010\u00e1\u00fa\u0097\u00a8\u0006\"\u000539661\u0012\u0011\b?\u0012\u0006\u0010\u0097\u00fb\u0097\u00a8\u0006\"\u000539662\u0012\u0011\b@\u0012\u0006\u0010\u00db\u00fb\u0097\u00a8\u0006\"\u000539663\u0012\u0011\bA\u0012\u0006\u0010\u0092\u00fc\u0097\u00a8\u0006\"\u000549341\u0012\u0011\bB\u0012\u0006\u0010\u00c3\u00fc\u0097\u00a8\u0006\"\u000549342\u0012\u0011\bC\u0012\u0006\u0010\u00b4\u00fd\u0097\u00a8\u0006\"\u000549343\u0012\u0011\bD\u0012\u0006\u0010\u00a4\u008b\u0098\u00a8\u0006\"\u000540735\u0012\u0011\bE\u0012\u0006\u0010\u0083\u008d\u0098\u00a8\u0006\"\u000540736\u001a\t\u001a\u0007DXXD507 \u00fc\u00e7\u0097\u00a8\u0006\"f\n4\n\u0015742beaf6-4-701ff27f-2\u0012\b15:14:00\u001a\b20230916 \u0000*\u00036260\u0000\u0012\u001d\rOB\u0013\u00c2\u0015x\u000f\u0092\u00c2\u001d\u0000\u0000\u0093C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-ffFA(\u00fc\u00e7\u0097\u00a8\u0006B\t\u001a\u0007DXXD507" + }, + { + "type": "con_recorrido", + "entity": "\n$5ffaee9c-8cfa-472d-b4ac-185d550277ed\u001a\u00f6\u0002\n4\n\u0015d217be94-b-701ff27f-2\u0012\b13:40:00\u001a\b20230916 \u0000*\u00036260\u0001\u0012\u0011\b4\u0012\u0006\u0010\u00f8\u00e7\u0097\u00a8\u0006\"\u000550034\u0012\u0011\b5\u0012\u0006\u0010\u00a4\u00e8\u0097\u00a8\u0006\"\u000540903\u0012\u0011\b6\u0012\u0006\u0010\u00c5\u00e8\u0097\u00a8\u0006\"\u000540904\u0012\u0011\b7\u0012\u0006\u0010\u00c7\u00e9\u0097\u00a8\u0006\"\u000535815\u0012\u0011\b8\u0012\u0006\u0010\u00e5\u00e9\u0097\u00a8\u0006\"\u000535816\u0012\u0011\b9\u0012\u0006\u0010\u00ea\u00e9\u0097\u00a8\u0006\"\u000535817\u0012\u0011\b:\u0012\u0006\u0010\u0095\u00ea\u0097\u00a8\u0006\"\u000535818\u0012\u0011\b;\u0012\u0006\u0010\u00bc\u00ea\u0097\u00a8\u0006\"\u000535819\u0012\u0011\b<\u0012\u0006\u0010\u00fa\u00eb\u0097\u00a8\u0006\"\u000535822\u0012\u0011\b=\u0012\u0006\u0010\u00a2\u00ec\u0097\u00a8\u0006\"\u000535823\u0012\u0011\b>\u0012\u0006\u0010\u00e1\u00ec\u0097\u00a8\u0006\"\u000535723\u0012\u0011\b?\u0012\u0006\u0010\u008e\u00ed\u0097\u00a8\u0006\"\u000535722\u0012\u0011\b@\u0012\u0006\u0010\u00dd\u00ed\u0097\u00a8\u0006\"\u000535826\u0012\u0011\bA\u0012\u0006\u0010\u009f\u00ee\u0097\u00a8\u0006\"\u000535548\u0012\u0011\bB\u0012\u0006\u0010\u00f4\u00ee\u0097\u00a8\u0006\"\u000535547\u0012\u0011\bC\u0012\u0006\u0010\u00cd\u00ef\u0097\u00a8\u0006\"\u000550003\u001a\b\u001a\u0006FSJW61 \u00ce\u00e7\u0097\u00a8\u0006\"e\n4\n\u0015d217be94-b-701ff27f-2\u0012\b13:40:00\u001a\b20230916 \u0000*\u00036260\u0001\u0012\u001d\r\fG\u0013\u00c2\u0015\u00c8\u0012\u0092\u00c2\u001d\u0000\u0000\u0015C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-ffFA(\u00ce\u00e7\u0097\u00a8\u0006B\b\u001a\u0006FSJW61" + }, + { + "type": "con_recorrido", + "entity": "\n$da4e6172-8c11-4d08-b23a-5ad634329898\u001a\u00bd\u0002\n4\n\u001585b9f14e-1-701ff27f-2\u0012\b13:28:00\u001a\b20230916 \u0000*\u00036260\u0001\u0012\u0011\b7\u0012\u0006\u0010\u00cc\u00e7\u0097\u00a8\u0006\"\u000535815\u0012\u0011\b8\u0012\u0006\u0010\u00eb\u00e7\u0097\u00a8\u0006\"\u000535816\u0012\u0011\b9\u0012\u0006\u0010\u00f0\u00e7\u0097\u00a8\u0006\"\u000535817\u0012\u0011\b:\u0012\u0006\u0010\u009d\u00e8\u0097\u00a8\u0006\"\u000535818\u0012\u0011\b;\u0012\u0006\u0010\u00c5\u00e8\u0097\u00a8\u0006\"\u000535819\u0012\u0011\b<\u0012\u0006\u0010\u008a\u00ea\u0097\u00a8\u0006\"\u000535822\u0012\u0011\b=\u0012\u0006\u0010\u00b3\u00ea\u0097\u00a8\u0006\"\u000535823\u0012\u0011\b>\u0012\u0006\u0010\u00f4\u00ea\u0097\u00a8\u0006\"\u000535723\u0012\u0011\b?\u0012\u0006\u0010\u00a1\u00eb\u0097\u00a8\u0006\"\u000535722\u0012\u0011\b@\u0012\u0006\u0010\u00f2\u00eb\u0097\u00a8\u0006\"\u000535826\u0012\u0011\bA\u0012\u0006\u0010\u00b5\u00ec\u0097\u00a8\u0006\"\u000535548\u0012\u0011\bB\u0012\u0006\u0010\u008b\u00ed\u0097\u00a8\u0006\"\u000535547\u0012\u0011\bC\u0012\u0006\u0010\u00e5\u00ed\u0097\u00a8\u0006\"\u000550003\u001a\b\u001a\u0006HYWD41 \u00cb\u00e7\u0097\u00a8\u0006\"e\n4\n\u001585b9f14e-1-701ff27f-2\u0012\b13:28:00\u001a\b20230916 \u0000*\u00036260\u0001\u0012\u001d\r\rE\u0013\u00c2\u0015;\r\u0092\u00c2\u001d\u0000\u0000\u00e8B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u00d4A(\u00cb\u00e7\u0097\u00a8\u0006B\b\u001a\u0006HYWD41" + }, + { + "type": "con_recorrido", + "entity": "\n$6830f4f1-3904-45a3-88e5-335583a8c56a\u001a\u00f9\u0006\n4\n\u001577ce18f2-2-701ff27f-2\u0012\b15:02:00\u001a\b20230916 \u0000*\u00036260\u0000\u0012\u0011\b\u001b\u0012\u0006\u0010\u0099\u00e8\u0097\u00a8\u0006\"\u000590000\u0012\u0011\b\u001c\u0012\u0006\u0010\u00cf\u00e8\u0097\u00a8\u0006\"\u000539628\u0012\u0011\b\u001d\u0012\u0006\u0010\u00a0\u00e9\u0097\u00a8\u0006\"\u000539631\u0012\u0011\b\u001e\u0012\u0006\u0010\u00d0\u00e9\u0097\u00a8\u0006\"\u000549311\u0012\u0011\b\u001f\u0012\u0006\u0010\u008a\u00ea\u0097\u00a8\u0006\"\u000539634\u0012\u0011\b \u0012\u0006\u0010\u00a4\u00ea\u0097\u00a8\u0006\"\u000539635\u0012\u0011\b!\u0012\u0006\u0010\u00d2\u00ea\u0097\u00a8\u0006\"\u000539636\u0012\u0011\b\"\u0012\u0006\u0010\u0088\u00eb\u0097\u00a8\u0006\"\u000549503\u0012\u0011\b#\u0012\u0006\u0010\u0087\u00ec\u0097\u00a8\u0006\"\u000539637\u0012\u0011\b$\u0012\u0006\u0010\u00b8\u00ec\u0097\u00a8\u0006\"\u000549317\u0012\u0011\b%\u0012\u0006\u0010\u00d7\u00ec\u0097\u00a8\u0006\"\u000549318\u0012\u0011\b&\u0012\u0006\u0010\u0098\u00ed\u0097\u00a8\u0006\"\u000549319\u0012\u0011\b'\u0012\u0006\u0010\u00d7\u00ed\u0097\u00a8\u0006\"\u000539641\u0012\u0011\b(\u0012\u0006\u0010\u00f9\u00ed\u0097\u00a8\u0006\"\u000539642\u0012\u0011\b)\u0012\u0006\u0010\u0089\u00f0\u0097\u00a8\u0006\"\u000549325\u0012\u0011\b*\u0012\u0006\u0010\u00d0\u00f0\u0097\u00a8\u0006\"\u000540711\u0012\u0011\b+\u0012\u0006\u0010\u00f9\u00f0\u0097\u00a8\u0006\"\u000540712\u0012\u0011\b,\u0012\u0006\u0010\u0099\u00f1\u0097\u00a8\u0006\"\u000540713\u0012\u0011\b-\u0012\u0006\u0010\u00aa\u00f1\u0097\u00a8\u0006\"\u000540714\u0012\u0013\b.\u0012\u0006\u0010\u00e8\u00f1\u0097\u00a8\u0006\"\u00078606049\u0012\u0011\b/\u0012\u0006\u0010\u0096\u00f2\u0097\u00a8\u0006\"\u000537428\u0012\u0011\b0\u0012\u0006\u0010\u00be\u00f2\u0097\u00a8\u0006\"\u000537429\u0012\u0011\b1\u0012\u0006\u0010\u00de\u00f2\u0097\u00a8\u0006\"\u000537430\u0012\u0011\b2\u0012\u0006\u0010\u00fe\u00f2\u0097\u00a8\u0006\"\u000537431\u0012\u0011\b3\u0012\u0006\u0010\u009b\u00f3\u0097\u00a8\u0006\"\u000537432\u0012\u0011\b4\u0012\u0006\u0010\u00df\u00f3\u0097\u00a8\u0006\"\u000540720\u0012\u0011\b5\u0012\u0006\u0010\u00eb\u00f3\u0097\u00a8\u0006\"\u000540721\u0012\u0011\b6\u0012\u0006\u0010\u0094\u00f4\u0097\u00a8\u0006\"\u000540722\u0012\u0011\b7\u0012\u0006\u0010\u0099\u00f4\u0097\u00a8\u0006\"\u000540723\u0012\u0011\b8\u0012\u0006\u0010\u00bb\u00f4\u0097\u00a8\u0006\"\u000540724\u0012\u0011\b9\u0012\u0006\u0010\u0083\u00f5\u0097\u00a8\u0006\"\u000540725\u0012\u0011\b:\u0012\u0006\u0010\u00a1\u00f5\u0097\u00a8\u0006\"\u000537435\u0012\u0011\b;\u0012\u0006\u0010\u00cd\u00f5\u0097\u00a8\u0006\"\u000539658\u0012\u0011\b<\u0012\u0006\u0010\u00f9\u00f5\u0097\u00a8\u0006\"\u000539659\u0012\u0011\b=\u0012\u0006\u0010\u0090\u00f6\u0097\u00a8\u0006\"\u000539660\u0012\u0011\b>\u0012\u0006\u0010\u00b5\u00f6\u0097\u00a8\u0006\"\u000539661\u0012\u0011\b?\u0012\u0006\u0010\u00e6\u00f6\u0097\u00a8\u0006\"\u000539662\u0012\u0011\b@\u0012\u0006\u0010\u00a3\u00f7\u0097\u00a8\u0006\"\u000539663\u0012\u0011\bA\u0012\u0006\u0010\u00d4\u00f7\u0097\u00a8\u0006\"\u000549341\u0012\u0011\bB\u0012\u0006\u0010\u0080\u00f8\u0097\u00a8\u0006\"\u000549342\u0012\u0011\bC\u0012\u0006\u0010\u00e5\u00f8\u0097\u00a8\u0006\"\u000549343\u0012\u0011\bD\u0012\u0006\u0010\u00b7\u0084\u0098\u00a8\u0006\"\u000540735\u0012\u0011\bE\u0012\u0006\u0010\u00e8\u0085\u0098\u00a8\u0006\"\u000540736\u001a\b\u001a\u0006JLZB90 \u00d4\u00e7\u0097\u00a8\u0006\"e\n4\n\u001577ce18f2-2-701ff27f-2\u0012\b15:02:00\u001a\b20230916 \u0000*\u00036260\u0000\u0012\u001d\r\u00eeK\u0013\u00c2\u0015\u0085\u0018\u0092\u00c2\u001d\u0000\u0000sC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00d4\u00e7\u0097\u00a8\u0006B\b\u001a\u0006JLZB90" + }, + { + "type": "con_recorrido", + "entity": "\n$c832c2e7-feae-4ade-bb12-df173b8ce3c7\u001a\u00bf\n\n4\n\u001522889603-2-701ff27f-2\u0012\b14:16:00\u001a\b20230916 \u0000*\u00036260\u0001\u0012\u0011\b\u0001\u0012\u0006\u0010\u00f3\u00e7\u0097\u00a8\u0006\"\u000550001\u0012\u0011\b\u0002\u0012\u0006\u0010\u00dd\u00e8\u0097\u00a8\u0006\"\u000550002\u0012\u0011\b\u0003\u0012\u0006\u0010\u00fc\u00f0\u0097\u00a8\u0006\"\u000542428\u0012\u0011\b\u0004\u0012\u0006\u0010\u00a3\u00f1\u0097\u00a8\u0006\"\u000542429\u0012\u0011\b\u0005\u0012\u0006\u0010\u00be\u00f1\u0097\u00a8\u0006\"\u000542430\u0012\u0011\b\u0006\u0012\u0006\u0010\u00f9\u00f1\u0097\u00a8\u0006\"\u000542431\u0012\u0011\b\u0007\u0012\u0006\u0010\u008b\u00f2\u0097\u00a8\u0006\"\u000542432\u0012\u0011\b\b\u0012\u0006\u0010\u00bd\u00f2\u0097\u00a8\u0006\"\u000537578\u0012\u0011\b\t\u0012\u0006\u0010\u00df\u00f2\u0097\u00a8\u0006\"\u000537579\u0012\u0011\b\n\u0012\u0006\u0010\u0082\u00f3\u0097\u00a8\u0006\"\u000537580\u0012\u0011\b\u000b\u0012\u0006\u0010\u00ad\u00f3\u0097\u00a8\u0006\"\u000537581\u0012\u0011\b\f\u0012\u0006\u0010\u00cf\u00f3\u0097\u00a8\u0006\"\u000537582\u0012\u0011\b\r\u0012\u0006\u0010\u00f1\u00f3\u0097\u00a8\u0006\"\u000540748\u0012\u0011\b\u000e\u0012\u0006\u0010\u00af\u00f4\u0097\u00a8\u0006\"\u000540749\u0012\u0011\b\u000f\u0012\u0006\u0010\u00d7\u00f4\u0097\u00a8\u0006\"\u000542525\u0012\u0011\b\u0010\u0012\u0006\u0010\u00da\u00f4\u0097\u00a8\u0006\"\u000542526\u0012\u0011\b\u0011\u0012\u0006\u0010\u00f4\u00f4\u0097\u00a8\u0006\"\u000542527\u0012\u0011\b\u0012\u0012\u0006\u0010\u00a3\u00f5\u0097\u00a8\u0006\"\u000542528\u0012\u0011\b\u0013\u0012\u0006\u0010\u00dd\u00f5\u0097\u00a8\u0006\"\u000537432\u0012\u0011\b\u0014\u0012\u0006\u0010\u00fc\u00f5\u0097\u00a8\u0006\"\u000537586\u0012\u0011\b\u0015\u0012\u0006\u0010\u0093\u00f6\u0097\u00a8\u0006\"\u000537430\u0012\u0011\b\u0016\u0012\u0006\u0010\u00a7\u00f6\u0097\u00a8\u0006\"\u000537588\u0012\u0011\b\u0017\u0012\u0006\u0010\u00da\u00f6\u0097\u00a8\u0006\"\u000537589\u0012\u0011\b\u0018\u0012\u0006\u0010\u0096\u00f7\u0097\u00a8\u0006\"\u000537590\u0012\u0011\b\u0019\u0012\u0006\u0010\u00da\u00f7\u0097\u00a8\u0006\"\u000540760\u0012\u0011\b\u001a\u0012\u0006\u0010\u00f2\u00f7\u0097\u00a8\u0006\"\u000540713\u0012\u0011\b\u001b\u0012\u0006\u0010\u009b\u00f8\u0097\u00a8\u0006\"\u000540762\u0012\u0011\b\u001c\u0012\u0006\u0010\u00d2\u00f8\u0097\u00a8\u0006\"\u000540763\u0012\u0011\b\u001d\u0012\u0006\u0010\u00f9\u00f8\u0097\u00a8\u0006\"\u000538642\u0012\u0011\b\u001e\u0012\u0006\u0010\u00aa\u00f9\u0097\u00a8\u0006\"\u000539795\u0012\u0011\b\u001f\u0012\u0006\u0010\u00d0\u00f9\u0097\u00a8\u0006\"\u000538502\u0012\u0011\b \u0012\u0006\u0010\u0093\u00fa\u0097\u00a8\u0006\"\u000538503\u0012\u0011\b!\u0012\u0006\u0010\u00cb\u00fb\u0097\u00a8\u0006\"\u000535691\u0012\u0011\b\"\u0012\u0006\u0010\u00bf\u00fc\u0097\u00a8\u0006\"\u000535693\u0012\u0011\b#\u0012\u0006\u0010\u0086\u00fd\u0097\u00a8\u0006\"\u000535694\u0012\u0011\b$\u0012\u0006\u0010\u00b2\u00fd\u0097\u00a8\u0006\"\u000535695\u0012\u0011\b%\u0012\u0006\u0010\u00f5\u00fd\u0097\u00a8\u0006\"\u000535696\u0012\u0011\b&\u0012\u0006\u0010\u00d6\u00ff\u0097\u00a8\u0006\"\u000535697\u0012\u0011\b'\u0012\u0006\u0010\u00db\u0080\u0098\u00a8\u0006\"\u00052-Jan\u0012\u0011\b(\u0012\u0006\u0010\u008d\u0081\u0098\u00a8\u0006\"\u000542460\u0012\u0011\b)\u0012\u0006\u0010\u00c0\u0081\u0098\u00a8\u0006\"\u000535690\u0012\u0011\b*\u0012\u0006\u0010\u00d1\u0082\u0098\u00a8\u0006\"\u000535700\u0012\u0011\b+\u0012\u0006\u0010\u00e1\u0083\u0098\u00a8\u0006\"\u000535703\u0012\u0011\b,\u0012\u0006\u0010\u00f9\u0083\u0098\u00a8\u0006\"\u000535704\u0012\u0011\b-\u0012\u0006\u0010\u009b\u0084\u0098\u00a8\u0006\"\u000535705\u0012\u0011\b.\u0012\u0006\u0010\u00ba\u0084\u0098\u00a8\u0006\"\u000535706\u0012\u0011\b/\u0012\u0006\u0010\u0092\u0085\u0098\u00a8\u0006\"\u000535707\u0012\u0011\b0\u0012\u0006\u0010\u00bc\u0085\u0098\u00a8\u0006\"\u000535708\u0012\u0011\b1\u0012\u0006\u0010\u00d7\u0085\u0098\u00a8\u0006\"\u000535709\u0012\u0011\b2\u0012\u0006\u0010\u0080\u0087\u0098\u00a8\u0006\"\u000537522\u0012\u0011\b3\u0012\u0006\u0010\u00bc\u0087\u0098\u00a8\u0006\"\u000539599\u0012\u0011\b4\u0012\u0006\u0010\u0084\u0088\u0098\u00a8\u0006\"\u000550034\u0012\u0011\b5\u0012\u0006\u0010\u00cf\u0088\u0098\u00a8\u0006\"\u000540903\u0012\u0011\b6\u0012\u0006\u0010\u008a\u0089\u0098\u00a8\u0006\"\u000540904\u0012\u0011\b7\u0012\u0006\u0010\u00fb\u008a\u0098\u00a8\u0006\"\u000535815\u0012\u0011\b8\u0012\u0006\u0010\u00b5\u008b\u0098\u00a8\u0006\"\u000535816\u0012\u0011\b9\u0012\u0006\u0010\u00bf\u008b\u0098\u00a8\u0006\"\u000535817\u0012\u0011\b:\u0012\u0006\u0010\u0095\u008c\u0098\u00a8\u0006\"\u000535818\u0012\u0011\b;\u0012\u0006\u0010\u00e6\u008c\u0098\u00a8\u0006\"\u000535819\u0012\u0011\b<\u0012\u0006\u0010\u008f\u0090\u0098\u00a8\u0006\"\u000535822\u0012\u0011\b=\u0012\u0006\u0010\u00f1\u0090\u0098\u00a8\u0006\"\u000535823\u0012\u0011\b>\u0012\u0006\u0010\u0090\u0092\u0098\u00a8\u0006\"\u000535723\u0012\u0011\b?\u0012\u0006\u0010\u0083\u0093\u0098\u00a8\u0006\"\u000535722\u0012\u0011\b@\u0012\u0006\u0010\u00db\u0094\u0098\u00a8\u0006\"\u000535826\u0012\u0011\bA\u0012\u0006\u0010\u009a\u0096\u0098\u00a8\u0006\"\u000535548\u0012\u0011\bB\u0012\u0006\u0010\u009c\u0098\u0098\u00a8\u0006\"\u000535547\u0012\u0011\bC\u0012\u0006\u0010\u00c0\u009a\u0098\u00a8\u0006\"\u000550003\u001a\b\u001a\u0006JRGP16 \u00c9\u00e7\u0097\u00a8\u0006\"e\n4\n\u001522889603-2-701ff27f-2\u0012\b14:16:00\u001a\b20230916 \u0000*\u00036260\u0001\u0012\u001d\r\u00b9\u0010\u0013\u00c2\u0015\u00e1X\u0092\u00c2\u001d\u0000\u0000\u008aB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c9\u00e7\u0097\u00a8\u0006B\b\u001a\u0006JRGP16" + }, + { + "type": "con_recorrido", + "entity": "\n$92f52987-496a-4208-9c3b-8942ae3c99ed\u001a\u00ef\u0004\n4\n\u0015a6bb2544-b-701ff27f-2\u0012\b14:50:00\u001a\b20230916 \u0000*\u00036260\u0000\u0012\u0011\b)\u0012\u0006\u0010\u00a7\u00e8\u0097\u00a8\u0006\"\u000549325\u0012\u0011\b*\u0012\u0006\u0010\u00f3\u00e8\u0097\u00a8\u0006\"\u000540711\u0012\u0011\b+\u0012\u0006\u0010\u009f\u00e9\u0097\u00a8\u0006\"\u000540712\u0012\u0011\b,\u0012\u0006\u0010\u00c2\u00e9\u0097\u00a8\u0006\"\u000540713\u0012\u0011\b-\u0012\u0006\u0010\u00d3\u00e9\u0097\u00a8\u0006\"\u000540714\u0012\u0013\b.\u0012\u0006\u0010\u0095\u00ea\u0097\u00a8\u0006\"\u00078606049\u0012\u0011\b/\u0012\u0006\u0010\u00c5\u00ea\u0097\u00a8\u0006\"\u000537428\u0012\u0011\b0\u0012\u0006\u0010\u00ee\u00ea\u0097\u00a8\u0006\"\u000537429\u0012\u0011\b1\u0012\u0006\u0010\u008e\u00eb\u0097\u00a8\u0006\"\u000537430\u0012\u0011\b2\u0012\u0006\u0010\u00af\u00eb\u0097\u00a8\u0006\"\u000537431\u0012\u0011\b3\u0012\u0006\u0010\u00cc\u00eb\u0097\u00a8\u0006\"\u000537432\u0012\u0011\b4\u0012\u0006\u0010\u0090\u00ec\u0097\u00a8\u0006\"\u000540720\u0012\u0011\b5\u0012\u0006\u0010\u009c\u00ec\u0097\u00a8\u0006\"\u000540721\u0012\u0011\b6\u0012\u0006\u0010\u00c4\u00ec\u0097\u00a8\u0006\"\u000540722\u0012\u0011\b7\u0012\u0006\u0010\u00c9\u00ec\u0097\u00a8\u0006\"\u000540723\u0012\u0011\b8\u0012\u0006\u0010\u00ea\u00ec\u0097\u00a8\u0006\"\u000540724\u0012\u0011\b9\u0012\u0006\u0010\u00b0\u00ed\u0097\u00a8\u0006\"\u000540725\u0012\u0011\b:\u0012\u0006\u0010\u00cd\u00ed\u0097\u00a8\u0006\"\u000537435\u0012\u0011\b;\u0012\u0006\u0010\u00f7\u00ed\u0097\u00a8\u0006\"\u000539658\u0012\u0011\b<\u0012\u0006\u0010\u00a0\u00ee\u0097\u00a8\u0006\"\u000539659\u0012\u0011\b=\u0012\u0006\u0010\u00b6\u00ee\u0097\u00a8\u0006\"\u000539660\u0012\u0011\b>\u0012\u0006\u0010\u00d8\u00ee\u0097\u00a8\u0006\"\u000539661\u0012\u0011\b?\u0012\u0006\u0010\u0086\u00ef\u0097\u00a8\u0006\"\u000539662\u0012\u0011\b@\u0012\u0006\u0010\u00be\u00ef\u0097\u00a8\u0006\"\u000539663\u0012\u0011\bA\u0012\u0006\u0010\u00ea\u00ef\u0097\u00a8\u0006\"\u000549341\u0012\u0011\bB\u0012\u0006\u0010\u0092\u00f0\u0097\u00a8\u0006\"\u000549342\u0012\u0011\bC\u0012\u0006\u0010\u00ec\u00f0\u0097\u00a8\u0006\"\u000549343\u0012\u0011\bD\u0012\u0006\u0010\u0087\u00fa\u0097\u00a8\u0006\"\u000540735\u0012\u0011\bE\u0012\u0006\u0010\u0084\u00fb\u0097\u00a8\u0006\"\u000540736\u001a\b\u001a\u0006KTFG90 \u00df\u00e7\u0097\u00a8\u0006\"e\n4\n\u0015a6bb2544-b-701ff27f-2\u0012\b14:50:00\u001a\b20230916 \u0000*\u00036260\u0000\u0012\u001d\r\u00db3\u0013\u00c2\u00159+\u0092\u00c2\u001d\u0000\u0080\u009fC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00df\u00e7\u0097\u00a8\u0006B\b\u001a\u0006KTFG90" + }, + { + "type": "con_recorrido", + "entity": "\n$f03b2f14-d5e8-4502-a73f-b44b4fe4362e\u001a\u00df\u0005\n4\n\u0015864e29e1-7-701ff27f-2\u0012\b13:52:00\u001a\b20230916 \u0000*\u00036260\u0001\u0012\u0011\b!\u0012\u0006\u0010\u0084\u00e8\u0097\u00a8\u0006\"\u000535691\u0012\u0011\b\"\u0012\u0006\u0010\u00ea\u00e8\u0097\u00a8\u0006\"\u000535693\u0012\u0011\b#\u0012\u0006\u0010\u00a7\u00e9\u0097\u00a8\u0006\"\u000535694\u0012\u0011\b$\u0012\u0006\u0010\u00cb\u00e9\u0097\u00a8\u0006\"\u000535695\u0012\u0011\b%\u0012\u0006\u0010\u0081\u00ea\u0097\u00a8\u0006\"\u000535696\u0012\u0011\b&\u0012\u0006\u0010\u00af\u00eb\u0097\u00a8\u0006\"\u000535697\u0012\u0011\b'\u0012\u0006\u0010\u008f\u00ec\u0097\u00a8\u0006\"\u00052-Jan\u0012\u0011\b(\u0012\u0006\u0010\u00b2\u00ec\u0097\u00a8\u0006\"\u000542460\u0012\u0011\b)\u0012\u0006\u0010\u00d6\u00ec\u0097\u00a8\u0006\"\u000535690\u0012\u0011\b*\u0012\u0006\u0010\u00b6\u00ed\u0097\u00a8\u0006\"\u000535700\u0012\u0011\b+\u0012\u0006\u0010\u0093\u00ee\u0097\u00a8\u0006\"\u000535703\u0012\u0011\b,\u0012\u0006\u0010\u00a2\u00ee\u0097\u00a8\u0006\"\u000535704\u0012\u0011\b-\u0012\u0006\u0010\u00b7\u00ee\u0097\u00a8\u0006\"\u000535705\u0012\u0011\b.\u0012\u0006\u0010\u00c9\u00ee\u0097\u00a8\u0006\"\u000535706\u0012\u0011\b/\u0012\u0006\u0010\u00ff\u00ee\u0097\u00a8\u0006\"\u000535707\u0012\u0011\b0\u0012\u0006\u0010\u0098\u00ef\u0097\u00a8\u0006\"\u000535708\u0012\u0011\b1\u0012\u0006\u0010\u00a7\u00ef\u0097\u00a8\u0006\"\u000535709\u0012\u0011\b2\u0012\u0006\u0010\u0088\u00f0\u0097\u00a8\u0006\"\u000537522\u0012\u0011\b3\u0012\u0006\u0010\u00a9\u00f0\u0097\u00a8\u0006\"\u000539599\u0012\u0011\b4\u0012\u0006\u0010\u00d0\u00f0\u0097\u00a8\u0006\"\u000550034\u0012\u0011\b5\u0012\u0006\u0010\u00f8\u00f0\u0097\u00a8\u0006\"\u000540903\u0012\u0011\b6\u0012\u0006\u0010\u0097\u00f1\u0097\u00a8\u0006\"\u000540904\u0012\u0011\b7\u0012\u0006\u0010\u0091\u00f2\u0097\u00a8\u0006\"\u000535815\u0012\u0011\b8\u0012\u0006\u0010\u00ad\u00f2\u0097\u00a8\u0006\"\u000535816\u0012\u0011\b9\u0012\u0006\u0010\u00b2\u00f2\u0097\u00a8\u0006\"\u000535817\u0012\u0011\b:\u0012\u0006\u0010\u00db\u00f2\u0097\u00a8\u0006\"\u000535818\u0012\u0011\b;\u0012\u0006\u0010\u0081\u00f3\u0097\u00a8\u0006\"\u000535819\u0012\u0011\b<\u0012\u0006\u0010\u00be\u00f4\u0097\u00a8\u0006\"\u000535822\u0012\u0011\b=\u0012\u0006\u0010\u00e7\u00f4\u0097\u00a8\u0006\"\u000535823\u0012\u0011\b>\u0012\u0006\u0010\u00a8\u00f5\u0097\u00a8\u0006\"\u000535723\u0012\u0011\b?\u0012\u0006\u0010\u00d6\u00f5\u0097\u00a8\u0006\"\u000535722\u0012\u0011\b@\u0012\u0006\u0010\u00aa\u00f6\u0097\u00a8\u0006\"\u000535826\u0012\u0011\bA\u0012\u0006\u0010\u00f1\u00f6\u0097\u00a8\u0006\"\u000535548\u0012\u0011\bB\u0012\u0006\u0010\u00cd\u00f7\u0097\u00a8\u0006\"\u000535547\u0012\u0011\bC\u0012\u0006\u0010\u00b0\u00f8\u0097\u00a8\u0006\"\u000550003\u001a\b\u001a\u0006LHXT58 \u00f6\u00e7\u0097\u00a8\u0006\"e\n4\n\u0015864e29e1-7-701ff27f-2\u0012\b13:52:00\u001a\b20230916 \u0000*\u00036260\u0001\u0012\u001d\r);\u0013\u00c2\u0015\u0018(\u0092\u00c2\u001d\u0000\u0000\rC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f6\u00e7\u0097\u00a8\u0006B\b\u001a\u0006LHXT58" + }, + { + "type": "con_recorrido", + "entity": "\n$4bf98f39-93c9-4a59-986a-e88699a1b425\u001a\u00c1\n\n4\n\u0015b9ec6b9b-c-701ff27f-2\u0012\b15:26:00\u001a\b20230916 \u0000*\u00036260\u0000\u0012\u0011\b\u0003\u0012\u0006\u0010\u009b\u00e8\u0097\u00a8\u0006\"\u000535319\u0012\u0011\b\u0004\u0012\u0006\u0010\u00b5\u00e8\u0097\u00a8\u0006\"\u000540659\u0012\u0011\b\u0005\u0012\u0006\u0010\u00f1\u00e8\u0097\u00a8\u0006\"\u000535718\u0012\u0011\b\u0006\u0012\u0006\u0010\u009a\u00e9\u0097\u00a8\u0006\"\u000535719\u0012\u0011\b\u0007\u0012\u0006\u0010\u00c4\u00e9\u0097\u00a8\u0006\"\u000535720\u0012\u0011\b\b\u0012\u0006\u0010\u00e3\u00e9\u0097\u00a8\u0006\"\u000535721\u0012\u0011\b\t\u0012\u0006\u0010\u00f2\u00e9\u0097\u00a8\u0006\"\u000535722\u0012\u0011\b\n\u0012\u0006\u0010\u00a3\u00ea\u0097\u00a8\u0006\"\u000535723\u0012\u0011\b\u000b\u0012\u0006\u0010\u00d3\u00ea\u0097\u00a8\u0006\"\u000535724\u0012\u0011\b\f\u0012\u0006\u0010\u0099\u00eb\u0097\u00a8\u0006\"\u000535726\u0012\u0011\b\r\u0012\u0006\u0010\u00a8\u00ec\u0097\u00a8\u0006\"\u000535820\u0012\u0011\b\u000e\u0012\u0006\u0010\u00ce\u00ec\u0097\u00a8\u0006\"\u000535729\u0012\u0011\b\u000f\u0012\u0006\u0010\u00ea\u00ec\u0097\u00a8\u0006\"\u000535730\u0012\u0011\b\u0010\u0012\u0006\u0010\u0088\u00ed\u0097\u00a8\u0006\"\u000535731\u0012\u0011\b\u0011\u0012\u0006\u0010\u00c7\u00ed\u0097\u00a8\u0006\"\u000535201\u0012\u0011\b\u0012\u0012\u0006\u0010\u009e\u00ee\u0097\u00a8\u0006\"\u000535202\u0012\u0011\b\u0013\u0012\u0006\u0010\u00bb\u00ee\u0097\u00a8\u0006\"\u000535203\u0012\u0011\b\u0014\u0012\u0006\u0010\u00fb\u00ee\u0097\u00a8\u0006\"\u00051-Feb\u0012\u0011\b\u0015\u0012\u0006\u0010\u00a7\u00ef\u0097\u00a8\u0006\"\u00051-Mar\u0012\u0011\b\u0016\u0012\u0006\u0010\u00c7\u00ef\u0097\u00a8\u0006\"\u000537465\u0012\u0011\b\u0017\u0012\u0006\u0010\u00a8\u00f0\u0097\u00a8\u0006\"\u000539599\u0012\u0011\b\u0018\u0012\u0006\u0010\u00f1\u00f0\u0097\u00a8\u0006\"\u000545011\u0012\u0011\b\u0019\u0012\u0006\u0010\u00d3\u00f1\u0097\u00a8\u0006\"\u000539623\u0012\u0011\b\u001a\u0012\u0006\u0010\u0083\u00f2\u0097\u00a8\u0006\"\u000539624\u0012\u0011\b\u001b\u0012\u0006\u0010\u00c3\u00f2\u0097\u00a8\u0006\"\u000590000\u0012\u0011\b\u001c\u0012\u0006\u0010\u00f5\u00f2\u0097\u00a8\u0006\"\u000539628\u0012\u0011\b\u001d\u0012\u0006\u0010\u00c1\u00f3\u0097\u00a8\u0006\"\u000539631\u0012\u0011\b\u001e\u0012\u0006\u0010\u00f0\u00f3\u0097\u00a8\u0006\"\u000549311\u0012\u0011\b\u001f\u0012\u0006\u0010\u00a8\u00f4\u0097\u00a8\u0006\"\u000539634\u0012\u0011\b \u0012\u0006\u0010\u00c1\u00f4\u0097\u00a8\u0006\"\u000539635\u0012\u0011\b!\u0012\u0006\u0010\u00f0\u00f4\u0097\u00a8\u0006\"\u000539636\u0012\u0011\b\"\u0012\u0006\u0010\u00a6\u00f5\u0097\u00a8\u0006\"\u000549503\u0012\u0011\b#\u0012\u0006\u0010\u00a8\u00f6\u0097\u00a8\u0006\"\u000539637\u0012\u0011\b$\u0012\u0006\u0010\u00dc\u00f6\u0097\u00a8\u0006\"\u000549317\u0012\u0011\b%\u0012\u0006\u0010\u00fd\u00f6\u0097\u00a8\u0006\"\u000549318\u0012\u0011\b&\u0012\u0006\u0010\u00c3\u00f7\u0097\u00a8\u0006\"\u000549319\u0012\u0011\b'\u0012\u0006\u0010\u0088\u00f8\u0097\u00a8\u0006\"\u000539641\u0012\u0011\b(\u0012\u0006\u0010\u00af\u00f8\u0097\u00a8\u0006\"\u000539642\u0012\u0011\b)\u0012\u0006\u0010\u00e8\u00fa\u0097\u00a8\u0006\"\u000549325\u0012\u0011\b*\u0012\u0006\u0010\u00bd\u00fb\u0097\u00a8\u0006\"\u000540711\u0012\u0011\b+\u0012\u0006\u0010\u00ef\u00fb\u0097\u00a8\u0006\"\u000540712\u0012\u0011\b,\u0012\u0006\u0010\u0096\u00fc\u0097\u00a8\u0006\"\u000540713\u0012\u0011\b-\u0012\u0006\u0010\u00ab\u00fc\u0097\u00a8\u0006\"\u000540714\u0012\u0013\b.\u0012\u0006\u0010\u00f9\u00fc\u0097\u00a8\u0006\"\u00078606049\u0012\u0011\b/\u0012\u0006\u0010\u00b3\u00fd\u0097\u00a8\u0006\"\u000537428\u0012\u0011\b0\u0012\u0006\u0010\u00e6\u00fd\u0097\u00a8\u0006\"\u000537429\u0012\u0011\b1\u0012\u0006\u0010\u008f\u00fe\u0097\u00a8\u0006\"\u000537430\u0012\u0011\b2\u0012\u0006\u0010\u00b9\u00fe\u0097\u00a8\u0006\"\u000537431\u0012\u0011\b3\u0012\u0006\u0010\u00df\u00fe\u0097\u00a8\u0006\"\u000537432\u0012\u0011\b4\u0012\u0006\u0010\u00b9\u00ff\u0097\u00a8\u0006\"\u000540720\u0012\u0011\b5\u0012\u0006\u0010\u00c8\u00ff\u0097\u00a8\u0006\"\u000540721\u0012\u0011\b6\u0012\u0006\u0010\u0080\u0080\u0098\u00a8\u0006\"\u000540722\u0012\u0011\b7\u0012\u0006\u0010\u0087\u0080\u0098\u00a8\u0006\"\u000540723\u0012\u0011\b8\u0012\u0006\u0010\u00b5\u0080\u0098\u00a8\u0006\"\u000540724\u0012\u0011\b9\u0012\u0006\u0010\u0098\u0081\u0098\u00a8\u0006\"\u000540725\u0012\u0011\b:\u0012\u0006\u0010\u00c2\u0081\u0098\u00a8\u0006\"\u000537435\u0012\u0011\b;\u0012\u0006\u0010\u00ff\u0081\u0098\u00a8\u0006\"\u000539658\u0012\u0011\b<\u0012\u0006\u0010\u00bd\u0082\u0098\u00a8\u0006\"\u000539659\u0012\u0011\b=\u0012\u0006\u0010\u00df\u0082\u0098\u00a8\u0006\"\u000539660\u0012\u0011\b>\u0012\u0006\u0010\u0093\u0083\u0098\u00a8\u0006\"\u000539661\u0012\u0011\b?\u0012\u0006\u0010\u00da\u0083\u0098\u00a8\u0006\"\u000539662\u0012\u0011\b@\u0012\u0006\u0010\u00b4\u0084\u0098\u00a8\u0006\"\u000539663\u0012\u0011\bA\u0012\u0006\u0010\u00fd\u0084\u0098\u00a8\u0006\"\u000549341\u0012\u0011\bB\u0012\u0006\u0010\u00bf\u0085\u0098\u00a8\u0006\"\u000549342\u0012\u0011\bC\u0012\u0006\u0010\u00da\u0086\u0098\u00a8\u0006\"\u000549343\u0012\u0011\bD\u0012\u0006\u0010\u00f5\u009b\u0098\u00a8\u0006\"\u000540735\u0012\u0011\bE\u0012\u0006\u0010\u00f4\u009e\u0098\u00a8\u0006\"\u000540736\u001a\b\u001a\u0006LTRB65 \u00f1\u00e7\u0097\u00a8\u0006\"e\n4\n\u0015b9ec6b9b-c-701ff27f-2\u0012\b15:26:00\u001a\b20230916 \u0000*\u00036260\u0000\u0012\u001d\r\u0004X\u0013\u00c2\u0015k\u0000\u0092\u00c2\u001d\u0000\u0000\u00c0A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00cd\u00cc\f@(\u00f1\u00e7\u0097\u00a8\u0006B\b\u001a\u0006LTRB65" + }, + { + "type": "con_recorrido", + "entity": "\n$584b28eb-74c8-4a62-ae09-aeb9e8f4f8e9\u001a\u00e9\u0007\n4\n\u0015067a8eff-4-701ff27f-2\u0012\b14:04:00\u001a\b20230916 \u0000*\u00036260\u0001\u0012\u0011\b\u0013\u0012\u0006\u0010\u00e2\u00e7\u0097\u00a8\u0006\"\u000537432\u0012\u0011\b\u0014\u0012\u0006\u0010\u0083\u00e8\u0097\u00a8\u0006\"\u000537586\u0012\u0011\b\u0015\u0012\u0006\u0010\u009b\u00e8\u0097\u00a8\u0006\"\u000537430\u0012\u0011\b\u0016\u0012\u0006\u0010\u00af\u00e8\u0097\u00a8\u0006\"\u000537588\u0012\u0011\b\u0017\u0012\u0006\u0010\u00e3\u00e8\u0097\u00a8\u0006\"\u000537589\u0012\u0011\b\u0018\u0012\u0006\u0010\u009e\u00e9\u0097\u00a8\u0006\"\u000537590\u0012\u0011\b\u0019\u0012\u0006\u0010\u00e0\u00e9\u0097\u00a8\u0006\"\u000540760\u0012\u0011\b\u001a\u0012\u0006\u0010\u00f6\u00e9\u0097\u00a8\u0006\"\u000540713\u0012\u0011\b\u001b\u0012\u0006\u0010\u009d\u00ea\u0097\u00a8\u0006\"\u000540762\u0012\u0011\b\u001c\u0012\u0006\u0010\u00d0\u00ea\u0097\u00a8\u0006\"\u000540763\u0012\u0011\b\u001d\u0012\u0006\u0010\u00f4\u00ea\u0097\u00a8\u0006\"\u000538642\u0012\u0011\b\u001e\u0012\u0006\u0010\u00a0\u00eb\u0097\u00a8\u0006\"\u000539795\u0012\u0011\b\u001f\u0012\u0006\u0010\u00c1\u00eb\u0097\u00a8\u0006\"\u000538502\u0012\u0011\b \u0012\u0006\u0010\u00fd\u00eb\u0097\u00a8\u0006\"\u000538503\u0012\u0011\b!\u0012\u0006\u0010\u0098\u00ed\u0097\u00a8\u0006\"\u000535691\u0012\u0011\b\"\u0012\u0006\u0010\u00f5\u00ed\u0097\u00a8\u0006\"\u000535693\u0012\u0011\b#\u0012\u0006\u0010\u00ae\u00ee\u0097\u00a8\u0006\"\u000535694\u0012\u0011\b$\u0012\u0006\u0010\u00d0\u00ee\u0097\u00a8\u0006\"\u000535695\u0012\u0011\b%\u0012\u0006\u0010\u0082\u00ef\u0097\u00a8\u0006\"\u000535696\u0012\u0011\b&\u0012\u0006\u0010\u00a8\u00f0\u0097\u00a8\u0006\"\u000535697\u0012\u0011\b'\u0012\u0006\u0010\u0086\u00f1\u0097\u00a8\u0006\"\u00052-Jan\u0012\u0011\b(\u0012\u0006\u0010\u00a9\u00f1\u0097\u00a8\u0006\"\u000542460\u0012\u0011\b)\u0012\u0006\u0010\u00cc\u00f1\u0097\u00a8\u0006\"\u000535690\u0012\u0011\b*\u0012\u0006\u0010\u00ac\u00f2\u0097\u00a8\u0006\"\u000535700\u0012\u0011\b+\u0012\u0006\u0010\u0089\u00f3\u0097\u00a8\u0006\"\u000535703\u0012\u0011\b,\u0012\u0006\u0010\u0098\u00f3\u0097\u00a8\u0006\"\u000535704\u0012\u0011\b-\u0012\u0006\u0010\u00ae\u00f3\u0097\u00a8\u0006\"\u000535705\u0012\u0011\b.\u0012\u0006\u0010\u00c1\u00f3\u0097\u00a8\u0006\"\u000535706\u0012\u0011\b/\u0012\u0006\u0010\u00f8\u00f3\u0097\u00a8\u0006\"\u000535707\u0012\u0011\b0\u0012\u0006\u0010\u0091\u00f4\u0097\u00a8\u0006\"\u000535708\u0012\u0011\b1\u0012\u0006\u0010\u00a1\u00f4\u0097\u00a8\u0006\"\u000535709\u0012\u0011\b2\u0012\u0006\u0010\u0086\u00f5\u0097\u00a8\u0006\"\u000537522\u0012\u0011\b3\u0012\u0006\u0010\u00a9\u00f5\u0097\u00a8\u0006\"\u000539599\u0012\u0011\b4\u0012\u0006\u0010\u00d2\u00f5\u0097\u00a8\u0006\"\u000550034\u0012\u0011\b5\u0012\u0006\u0010\u00fd\u00f5\u0097\u00a8\u0006\"\u000540903\u0012\u0011\b6\u0012\u0006\u0010\u009e\u00f6\u0097\u00a8\u0006\"\u000540904\u0012\u0011\b7\u0012\u0006\u0010\u00a1\u00f7\u0097\u00a8\u0006\"\u000535815\u0012\u0011\b8\u0012\u0006\u0010\u00bf\u00f7\u0097\u00a8\u0006\"\u000535816\u0012\u0011\b9\u0012\u0006\u0010\u00c4\u00f7\u0097\u00a8\u0006\"\u000535817\u0012\u0011\b:\u0012\u0006\u0010\u00f2\u00f7\u0097\u00a8\u0006\"\u000535818\u0012\u0011\b;\u0012\u0006\u0010\u009b\u00f8\u0097\u00a8\u0006\"\u000535819\u0012\u0011\b<\u0012\u0006\u0010\u00ed\u00f9\u0097\u00a8\u0006\"\u000535822\u0012\u0011\b=\u0012\u0006\u0010\u009b\u00fa\u0097\u00a8\u0006\"\u000535823\u0012\u0011\b>\u0012\u0006\u0010\u00e5\u00fa\u0097\u00a8\u0006\"\u000535723\u0012\u0011\b?\u0012\u0006\u0010\u009a\u00fb\u0097\u00a8\u0006\"\u000535722\u0012\u0011\b@\u0012\u0006\u0010\u00fa\u00fb\u0097\u00a8\u0006\"\u000535826\u0012\u0011\bA\u0012\u0006\u0010\u00cc\u00fc\u0097\u00a8\u0006\"\u000535548\u0012\u0011\bB\u0012\u0006\u0010\u00b8\u00fd\u0097\u00a8\u0006\"\u000535547\u0012\u0011\bC\u0012\u0006\u0010\u00ae\u00fe\u0097\u00a8\u0006\"\u000550003\u001a\b\u001a\u0006RLVZ66 \u00df\u00e7\u0097\u00a8\u0006\"e\n4\n\u0015067a8eff-4-701ff27f-2\u0012\b14:04:00\u001a\b20230916 \u0000*\u00036260\u0001\u0012\u001d\r4-\u0013\u00c2\u0015f4\u0092\u00c2\u001d\u0000\u0000\u00f4B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-ff\u008aA(\u00df\u00e7\u0097\u00a8\u0006B\b\u001a\u0006RLVZ66" + }, + { + "type": "sin_recorrido", + "entity": "\n$fa2f9405-f619-4ff0-bdf3-1d82e9dbe67d\"f\n4\n\u001513bb2b47-1-701ff27f-2\u0012\b13:16:00\u001a\b20230916 \u0000*\u00036260\u0001\u0012\u001d\r[[\u0013\u00c2\u0015F\u0004\u0092\u00c2\u001d\u0000\u00007C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b5\u00e7\u0097\u00a8\u0006B\t\u001a\u0007WV66891" + }, + { + "type": "con_recorrido", + "entity": "\n$d869341b-c1d8-4b51-8c03-1a5b157ef7f3\u001a\u00e3\u0002\n4\n\u00155e12e7c6-7-701ff27f-2\u0012\b14:38:00\u001a\b20230916 \u0000*\u00036260\u0000\u0012\u0011\b7\u0012\u0006\u0010\u00f9\u00e7\u0097\u00a8\u0006\"\u000540723\u0012\u0011\b8\u0012\u0006\u0010\u009d\u00e8\u0097\u00a8\u0006\"\u000540724\u0012\u0011\b9\u0012\u0006\u0010\u00e9\u00e8\u0097\u00a8\u0006\"\u000540725\u0012\u0011\b:\u0012\u0006\u0010\u0088\u00e9\u0097\u00a8\u0006\"\u000537435\u0012\u0011\b;\u0012\u0006\u0010\u00b4\u00e9\u0097\u00a8\u0006\"\u000539658\u0012\u0011\b<\u0012\u0006\u0010\u00e1\u00e9\u0097\u00a8\u0006\"\u000539659\u0012\u0011\b=\u0012\u0006\u0010\u00f8\u00e9\u0097\u00a8\u0006\"\u000539660\u0012\u0011\b>\u0012\u0006\u0010\u009c\u00ea\u0097\u00a8\u0006\"\u000539661\u0012\u0011\b?\u0012\u0006\u0010\u00cc\u00ea\u0097\u00a8\u0006\"\u000539662\u0012\u0011\b@\u0012\u0006\u0010\u0086\u00eb\u0097\u00a8\u0006\"\u000539663\u0012\u0011\bA\u0012\u0006\u0010\u00b4\u00eb\u0097\u00a8\u0006\"\u000549341\u0012\u0011\bB\u0012\u0006\u0010\u00dd\u00eb\u0097\u00a8\u0006\"\u000549342\u0012\u0011\bC\u0012\u0006\u0010\u00b9\u00ec\u0097\u00a8\u0006\"\u000549343\u0012\u0011\bD\u0012\u0006\u0010\u009b\u00f5\u0097\u00a8\u0006\"\u000540735\u0012\u0011\bE\u0012\u0006\u0010\u008b\u00f6\u0097\u00a8\u0006\"\u000540736\u001a\b\u001a\u0006WV6695 \u00f7\u00e7\u0097\u00a8\u0006\"e\n4\n\u00155e12e7c6-7-701ff27f-2\u0012\b14:38:00\u001a\b20230916 \u0000*\u00036260\u0000\u0012\u001d\r\u00ed*\u0013\u00c2\u0015j7\u0092\u00c2\u001d\u0000\u0000\u0080C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f7\u00e7\u0097\u00a8\u0006B\b\u001a\u0006WV6695" + }, + { + "type": "con_recorrido", + "entity": "\n$3b2ad06c-b56d-4012-99e1-c6df96781029\u001a\u0080\u0001\n4\n\u0015d6a47dea-b-701ff27f-2\u0012\b14:26:00\u001a\b20230916 \u0000*\u00036260\u0000\u0012\u0011\bC\u0012\u0006\u0010\u009e\u00e8\u0097\u00a8\u0006\"\u000549343\u0012\u0011\bD\u0012\u0006\u0010\u008d\u00f1\u0097\u00a8\u0006\"\u000540735\u0012\u0011\bE\u0012\u0006\u0010\u00f8\u00f1\u0097\u00a8\u0006\"\u000540736\u001a\t\u001a\u0007ZJ61750 \u00ca\u00e7\u0097\u00a8\u0006\"f\n4\n\u0015d6a47dea-b-701ff27f-2\u0012\b14:26:00\u001a\b20230916 \u0000*\u00036260\u0000\u0012\u001d\r\u00bf\u001d\u0013\u00c2\u0015\u00899\u0092\u00c2\u001d\u0000\u0000\u00adC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-33\u0093A(\u00ca\u00e7\u0097\u00a8\u0006B\t\u001a\u0007ZJ61750" + }, + { + "type": "con_recorrido", + "entity": "\n$37f4243e-6d2d-4820-b309-709c9cd7d1d5\u001a\u00f6\u0002\n4\n\u0015549dd60c-0-701ff27f-2\u0012\b14:54:00\u001a\b20230916 \u0000*\u00036270\u0001\u0012\u0011\b\u0018\u0012\u0006\u0010\u00c6\u00e8\u0097\u00a8\u0006\"\u000537506\u0012\u0011\b\u0019\u0012\u0006\u0010\u00f1\u00e8\u0097\u00a8\u0006\"\u000545068\u0012\u0011\b\u001a\u0012\u0006\u0010\u00ec\u00e9\u0097\u00a8\u0006\"\u000537480\u0012\u0011\b\u001b\u0012\u0006\u0010\u00ab\u00ea\u0097\u00a8\u0006\"\u000537477\u0012\u0011\b\u001c\u0012\u0006\u0010\u00f5\u00ea\u0097\u00a8\u0006\"\u000540848\u0012\u0011\b\u001d\u0012\u0006\u0010\u00cb\u00eb\u0097\u00a8\u0006\"\u00052-Apr\u0012\u0011\b\u001e\u0012\u0006\u0010\u0086\u00ec\u0097\u00a8\u0006\"\u000539728\u0012\u0011\b\u001f\u0012\u0006\u0010\u00e9\u00ec\u0097\u00a8\u0006\"\u000539729\u0012\u0011\b \u0012\u0006\u0010\u00fb\u00ec\u0097\u00a8\u0006\"\u000539730\u0012\u0011\b!\u0012\u0006\u0010\u00e6\u00ed\u0097\u00a8\u0006\"\u000542200\u0012\u0011\b\"\u0012\u0006\u0010\u0090\u00ee\u0097\u00a8\u0006\"\u000542203\u0012\u0011\b#\u0012\u0006\u0010\u00cb\u00ee\u0097\u00a8\u0006\"\u000542204\u0012\u0011\b$\u0012\u0006\u0010\u00ea\u00ee\u0097\u00a8\u0006\"\u000542205\u0012\u0011\b%\u0012\u0006\u0010\u00aa\u00ef\u0097\u00a8\u0006\"\u000542201\u0012\u0011\b&\u0012\u0006\u0010\u009d\u00f1\u0097\u00a8\u0006\"\u000542206\u0012\u0011\b'\u0012\u0006\u0010\u00bd\u00f1\u0097\u00a8\u0006\"\u000540855\u001a\b\u001a\u0006BBGB85 \u00c4\u00e8\u0097\u00a8\u0006\"e\n4\n\u0015549dd60c-0-701ff27f-2\u0012\b14:54:00\u001a\b20230916 \u0000*\u00036270\u0001\u0012\u001d\r\u00c7L\u0013\u00c2\u0015c\u0016\u0092\u00c2\u001d\u0000\u0000pC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0098A(\u00c4\u00e8\u0097\u00a8\u0006B\b\u001a\u0006BBGB85" + }, + { + "type": "con_recorrido", + "entity": "\n$409d1e2e-bfd1-4b68-8226-11638437d0bf\u001a\u00c7\u0004\n4\n\u0015d8148350-b-701ff27f-2\u0012\b15:02:00\u001a\b20230916 \u0000*\u00036270\u0000\u0012\u0011\b\u0015\u0012\u0006\u0010\u00d7\u00e8\u0097\u00a8\u0006\"\u000542319\u0012\u0011\b\u0016\u0012\u0006\u0010\u009c\u00e9\u0097\u00a8\u0006\"\u000542320\u0012\u0011\b\u0017\u0012\u0006\u0010\u00d7\u00e9\u0097\u00a8\u0006\"\u000538514\u0012\u0011\b\u0018\u0012\u0006\u0010\u0092\u00ea\u0097\u00a8\u0006\"\u000534586\u0012\u0011\b\u0019\u0012\u0006\u0010\u00ab\u00ea\u0097\u00a8\u0006\"\u000534587\u0012\u0011\b\u001a\u0012\u0006\u0010\u00c9\u00ea\u0097\u00a8\u0006\"\u000534588\u0012\u0011\b\u001b\u0012\u0006\u0010\u00fa\u00ea\u0097\u00a8\u0006\"\u000539497\u0012\u0011\b\u001c\u0012\u0006\u0010\u0099\u00eb\u0097\u00a8\u0006\"\u000549407\u0012\u0011\b\u001d\u0012\u0006\u0010\u00cf\u00eb\u0097\u00a8\u0006\"\u000550034\u0012\u0011\b\u001e\u0012\u0006\u0010\u00f8\u00eb\u0097\u00a8\u0006\"\u000540903\u0012\u0011\b\u001f\u0012\u0006\u0010\u0098\u00ec\u0097\u00a8\u0006\"\u000540904\u0012\u0011\b \u0012\u0006\u0010\u00cc\u00ec\u0097\u00a8\u0006\"\u000535814\u0012\u0011\b!\u0012\u0006\u0010\u0092\u00ed\u0097\u00a8\u0006\"\u000535815\u0012\u0011\b\"\u0012\u0006\u0010\u00b0\u00ed\u0097\u00a8\u0006\"\u000535816\u0012\u0011\b#\u0012\u0006\u0010\u00b5\u00ed\u0097\u00a8\u0006\"\u000535817\u0012\u0011\b$\u0012\u0006\u0010\u00de\u00ed\u0097\u00a8\u0006\"\u000535818\u0012\u0011\b%\u0012\u0006\u0010\u0083\u00ee\u0097\u00a8\u0006\"\u000535819\u0012\u0011\b&\u0012\u0006\u0010\u00bd\u00ef\u0097\u00a8\u0006\"\u000535822\u0012\u0011\b'\u0012\u0006\u0010\u00e5\u00ef\u0097\u00a8\u0006\"\u000535823\u0012\u0011\b(\u0012\u0006\u0010\u00a1\u00f0\u0097\u00a8\u0006\"\u000535723\u0012\u0011\b)\u0012\u0006\u0010\u00c9\u00f0\u0097\u00a8\u0006\"\u000535722\u0012\u0011\b*\u0012\u0006\u0010\u00a0\u00f1\u0097\u00a8\u0006\"\u000535826\u0012\u0011\b+\u0012\u0006\u0010\u00d1\u00f1\u0097\u00a8\u0006\"\u000535827\u0012\u0011\b,\u0012\u0006\u0010\u00e8\u00f1\u0097\u00a8\u0006\"\u000535828\u0012\u0011\b-\u0012\u0006\u0010\u00a3\u00f2\u0097\u00a8\u0006\"\u000535829\u0012\u0011\b.\u0012\u0006\u0010\u00cb\u00f2\u0097\u00a8\u0006\"\u000550003\u0012\u0011\b/\u0012\u0006\u0010\u009c\u00f3\u0097\u00a8\u0006\"\u000540921\u001a\b\u001a\u0006FSRZ36 \u00b3\u00e8\u0097\u00a8\u0006\"e\n4\n\u0015d8148350-b-701ff27f-2\u0012\b15:02:00\u001a\b20230916 \u0000*\u00036270\u0000\u0012\u001d\r&Q\u0013\u00c2\u0015\n\u001a\u0092\u00c2\u001d\u0000\u0000xB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u00f8A(\u00b3\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FSRZ36" + }, + { + "type": "sin_recorrido", + "entity": "\n$9f92c2eb-bc29-49b7-b247-1f42d7eabbad\"e\n4\n\u0015e6cf8df5-5-701ff27f-2\u0012\b14:55:00\u001a\b20230916 \u0000*\u00036280\u0001\u0012\u001d\rbw\u0013\u00c2\u0015e\u0012\u0092\u00c2\u001d\u0000\u0000\u0090B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u00b0A(\u00eb\u00e7\u0097\u00a8\u0006B\b\u001a\u0006GVXX98" + }, + { + "type": "con_recorrido", + "entity": "\n$656e4b95-6955-4cff-8fa5-7468bfcf6d2b\u001a\u00b4\u0004\n4\n\u0015d844b036-0-701ff27f-2\u0012\b15:35:00\u001a\b20230916 \u0000*\u00036280\u0001\u0012\u0011\b\u0001\u0012\u0006\u0010\u00f1\u00e9\u0097\u00a8\u0006\"\u000540863\u0012\u0011\b\u0002\u0012\u0006\u0010\u0087\u00ed\u0097\u00a8\u0006\"\u000540865\u0012\u0011\b\u0003\u0012\u0006\u0010\u00c2\u00ee\u0097\u00a8\u0006\"\u000590003\u0012\u0011\b\u0004\u0012\u0006\u0010\u00ef\u00ee\u0097\u00a8\u0006\"\u000590007\u0012\u0011\b\u0005\u0012\u0006\u0010\u0097\u00ef\u0097\u00a8\u0006\"\u000540830\u0012\u0011\b\u0006\u0012\u0006\u0010\u00ba\u00ef\u0097\u00a8\u0006\"\u000540831\u0012\u0011\b\u0007\u0012\u0006\u0010\u008b\u00f0\u0097\u00a8\u0006\"\u000539599\u0012\u0011\b\b\u0012\u0006\u0010\u009b\u00f0\u0097\u00a8\u0006\"\u000539600\u0012\u0011\b\t\u0012\u0006\u0010\u00e2\u00f0\u0097\u00a8\u0006\"\u000537496\u0012\u0011\b\n\u0012\u0006\u0010\u0092\u00f1\u0097\u00a8\u0006\"\u000545064\u0012\u0011\b\u000b\u0012\u0006\u0010\u00d9\u00f1\u0097\u00a8\u0006\"\u000537506\u0012\u0011\b\f\u0012\u0006\u0010\u0081\u00f2\u0097\u00a8\u0006\"\u000545068\u0012\u0011\b\r\u0012\u0006\u0010\u00fb\u00f2\u0097\u00a8\u0006\"\u000537480\u0012\u0011\b\u000e\u0012\u0006\u0010\u00b8\u00f3\u0097\u00a8\u0006\"\u000537477\u0012\u0011\b\u000f\u0012\u0006\u0010\u00fb\u00f3\u0097\u00a8\u0006\"\u000540848\u0012\u0011\b\u0010\u0012\u0006\u0010\u00ce\u00f4\u0097\u00a8\u0006\"\u00052-Apr\u0012\u0011\b\u0011\u0012\u0006\u0010\u008b\u00f5\u0097\u00a8\u0006\"\u000539728\u0012\u0011\b\u0012\u0012\u0006\u0010\u00ea\u00f5\u0097\u00a8\u0006\"\u000539729\u0012\u0011\b\u0013\u0012\u0006\u0010\u0083\u00f6\u0097\u00a8\u0006\"\u000539730\u0012\u0011\b\u0014\u0012\u0006\u0010\u00ed\u00f6\u0097\u00a8\u0006\"\u000542200\u0012\u0011\b\u0015\u0012\u0006\u0010\u009d\u00f7\u0097\u00a8\u0006\"\u000542203\u0012\u0011\b\u0016\u0012\u0006\u0010\u00df\u00f7\u0097\u00a8\u0006\"\u000542204\u0012\u0011\b\u0017\u0012\u0006\u0010\u0081\u00f8\u0097\u00a8\u0006\"\u000542205\u0012\u0011\b\u0018\u0012\u0006\u0010\u00c2\u00f8\u0097\u00a8\u0006\"\u000542201\u0012\u0011\b\u0019\u0012\u0006\u0010\u00d8\u00fa\u0097\u00a8\u0006\"\u000542206\u0012\u0011\b\u001a\u0012\u0006\u0010\u00fa\u00fa\u0097\u00a8\u0006\"\u000540855\u001a\b\u001a\u0006RPSV28 \u00c5\u00e8\u0097\u00a8\u0006\"e\n4\n\u0015d844b036-0-701ff27f-2\u0012\b15:35:00\u001a\b20230916 \u0000*\u00036280\u0001\u0012\u001d\r\u001eF\u0013\u00c2\u0015\u00e6\u00fe\u0091\u00c2\u001d\u0000\u00008B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u00e0@(\u00c5\u00e8\u0097\u00a8\u0006B\b\u001a\u0006RPSV28" + }, + { + "type": "con_recorrido", + "entity": "\n$bd167a5e-0c55-42b9-a13c-18e6fa7ffaef\u001a\u00b9\u0005\n4\n\u001539bc4ff9-7-701ff27f-2\u0012\b15:21:00\u001a\b20230916 \u0000*\u00036280\u0000\u0012\u0011\b\t\u0012\u0006\u0010\u00c8\u00e8\u0097\u00a8\u0006\"\u000549301\u0012\u0011\b\n\u0012\u0006\u0010\u008b\u00e9\u0097\u00a8\u0006\"\u000549302\u0012\u0011\b\u000b\u0012\u0006\u0010\u00ba\u00e9\u0097\u00a8\u0006\"\u000549303\u0012\u0011\b\f\u0012\u0006\u0010\u00f0\u00e9\u0097\u00a8\u0006\"\u000549304\u0012\u0011\b\r\u0012\u0006\u0010\u008d\u00ea\u0097\u00a8\u0006\"\u000549305\u0012\u0011\b\u000e\u0012\u0006\u0010\u00c7\u00ea\u0097\u00a8\u0006\"\u000549306\u0012\u0011\b\u000f\u0012\u0006\u0010\u00f0\u00ea\u0097\u00a8\u0006\"\u000549307\u0012\u0011\b\u0010\u0012\u0006\u0010\u0088\u00eb\u0097\u00a8\u0006\"\u000549308\u0012\u0011\b\u0011\u0012\u0006\u0010\u00a1\u00eb\u0097\u00a8\u0006\"\u000549309\u0012\u0011\b\u0012\u0012\u0006\u0010\u00bd\u00eb\u0097\u00a8\u0006\"\u000542315\u0012\u0011\b\u0013\u0012\u0006\u0010\u00d4\u00eb\u0097\u00a8\u0006\"\u000542316\u0012\u0011\b\u0014\u0012\u0006\u0010\u0087\u00ec\u0097\u00a8\u0006\"\u000542317\u0012\u0011\b\u0015\u0012\u0006\u0010\u00d0\u00ec\u0097\u00a8\u0006\"\u000542319\u0012\u0011\b\u0016\u0012\u0006\u0010\u009b\u00ed\u0097\u00a8\u0006\"\u000542320\u0012\u0011\b\u0017\u0012\u0006\u0010\u00c9\u00ed\u0097\u00a8\u0006\"\u000538514\u0012\u0011\b\u0018\u0012\u0006\u0010\u00ff\u00ed\u0097\u00a8\u0006\"\u000534586\u0012\u0011\b\u0019\u0012\u0006\u0010\u009c\u00ee\u0097\u00a8\u0006\"\u000534587\u0012\u0011\b\u001a\u0012\u0006\u0010\u00b4\u00ee\u0097\u00a8\u0006\"\u000534588\u0012\u0011\b\u001b\u0012\u0006\u0010\u00e2\u00ee\u0097\u00a8\u0006\"\u000539497\u0012\u0011\b\u001c\u0012\u0006\u0010\u0083\u00ef\u0097\u00a8\u0006\"\u000549407\u0012\u0011\b\u001d\u0012\u0006\u0010\u00bb\u00ef\u0097\u00a8\u0006\"\u000550034\u0012\u0011\b\u001e\u0012\u0006\u0010\u00e1\u00ef\u0097\u00a8\u0006\"\u000540903\u0012\u0011\b\u001f\u0012\u0006\u0010\u0082\u00f0\u0097\u00a8\u0006\"\u000540904\u0012\u0011\b \u0012\u0006\u0010\u00ad\u00f0\u0097\u00a8\u0006\"\u000535814\u0012\u0011\b!\u0012\u0006\u0010\u00f6\u00f0\u0097\u00a8\u0006\"\u000535815\u0012\u0011\b\"\u0012\u0006\u0010\u008c\u00f1\u0097\u00a8\u0006\"\u000535816\u0012\u0011\b#\u0012\u0006\u0010\u009b\u00f1\u0097\u00a8\u0006\"\u000535817\u0012\u0011\b$\u0012\u0006\u0010\u00bd\u00f1\u0097\u00a8\u0006\"\u000535818\u0012\u0011\b%\u0012\u0006\u0010\u00e3\u00f1\u0097\u00a8\u0006\"\u000535819\u0012\u0011\b&\u0012\u0006\u0010\u009c\u00f3\u0097\u00a8\u0006\"\u000535822\u0012\u0011\b'\u0012\u0006\u0010\u00ea\u00f3\u0097\u00a8\u0006\"\u000538833\u0012\u0011\b(\u0012\u0006\u0010\u0082\u00f4\u0097\u00a8\u0006\"\u000540924\u0012\u0011\b)\u0012\u0006\u0010\u00fb\u00f6\u0097\u00a8\u0006\"\u000540864\u001a\b\u001a\u0006YH2202 \u009a\u00e8\u0097\u00a8\u0006\"e\n4\n\u001539bc4ff9-7-701ff27f-2\u0012\b15:21:00\u001a\b20230916 \u0000*\u00036280\u0000\u0012\u001d\rFe\u0013\u00c2\u0015;\u001a\u0092\u00c2\u001d\u0000\u0000\u00b3C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000B(\u009a\u00e8\u0097\u00a8\u0006B\b\u001a\u0006YH2202" + }, + { + "type": "con_recorrido", + "entity": "\n$a443e7d6-775f-4f61-880d-ae9eb1a6e8dd\u001a\u00d3\t\n4\n\u00157b03ef8e-e-701ff27f-2\u0012\b14:23:00\u001a\b20230916 \u0000*\u00036320\u0001\u0012\u0011\bI\u0012\u0006\u0010\u00f5\u00e8\u0097\u00a8\u0006\"\u000542210\u0012\u0011\bJ\u0012\u0006\u0010\u00b8\u00ea\u0097\u00a8\u0006\"\u000542215\u0012\u0011\bK\u0012\u0006\u0010\u00d7\u00ea\u0097\u00a8\u0006\"\u000542216\u0012\u0011\bL\u0012\u0006\u0010\u0081\u00eb\u0097\u00a8\u0006\"\u000542217\u0012\u0011\bM\u0012\u0006\u0010\u00cd\u00eb\u0097\u00a8\u0006\"\u000542218\u0012\u0011\bN\u0012\u0006\u0010\u00f9\u00eb\u0097\u00a8\u0006\"\u000542219\u0012\u0011\bO\u0012\u0006\u0010\u00d4\u00ec\u0097\u00a8\u0006\"\u000542220\u0012\u0011\bP\u0012\u0006\u0010\u0087\u00ed\u0097\u00a8\u0006\"\u000542221\u0012\u0011\bQ\u0012\u0006\u0010\u00ca\u00ed\u0097\u00a8\u0006\"\u000542222\u0012\u0011\bR\u0012\u0006\u0010\u008d\u00ee\u0097\u00a8\u0006\"\u000542223\u0012\u0011\bS\u0012\u0006\u0010\u00a8\u00ee\u0097\u00a8\u0006\"\u000542224\u0012\u0011\bT\u0012\u0006\u0010\u00f2\u00ee\u0097\u00a8\u0006\"\u000542225\u0012\u0011\bU\u0012\u0006\u0010\u00b1\u00ef\u0097\u00a8\u0006\"\u000542226\u0012\u0011\bV\u0012\u0006\u0010\u00e4\u00ef\u0097\u00a8\u0006\"\u000542227\u0012\u0011\bW\u0012\u0006\u0010\u00b5\u00f0\u0097\u00a8\u0006\"\u000542228\u0012\u0011\bX\u0012\u0006\u0010\u00de\u00f0\u0097\u00a8\u0006\"\u000542229\u0012\u0011\bY\u0012\u0006\u0010\u00ab\u00f1\u0097\u00a8\u0006\"\u000542230\u0012\u0011\bZ\u0012\u0006\u0010\u00d4\u00f1\u0097\u00a8\u0006\"\u000542231\u0012\u0011\b[\u0012\u0006\u0010\u00a2\u00f2\u0097\u00a8\u0006\"\u000542232\u0012\u0011\b\\\u0012\u0006\u0010\u009f\u00f3\u0097\u00a8\u0006\"\u000542234\u0012\u0011\b]\u0012\u0006\u0010\u00e4\u00f3\u0097\u00a8\u0006\"\u000542235\u0012\u0011\b^\u0012\u0006\u0010\u0082\u00f4\u0097\u00a8\u0006\"\u000542211\u0012\u0011\b_\u0012\u0006\u0010\u00b7\u00f4\u0097\u00a8\u0006\"\u000549203\u0012\u0011\b`\u0012\u0006\u0010\u00ed\u00f4\u0097\u00a8\u0006\"\u000549204\u0012\u0011\ba\u0012\u0006\u0010\u00f7\u00f4\u0097\u00a8\u0006\"\u000542503\u0012\u0011\bb\u0012\u0006\u0010\u0084\u00f5\u0097\u00a8\u0006\"\u000534564\u0012\u0011\bc\u0012\u0006\u0010\u00e4\u00f7\u0097\u00a8\u0006\"\u000534789\u0012\u0011\bd\u0012\u0006\u0010\u00fa\u00f7\u0097\u00a8\u0006\"\u000549163\u0012\u0011\be\u0012\u0006\u0010\u00db\u00fe\u0097\u00a8\u0006\"\u000549208\u0012\u0011\bf\u0012\u0006\u0010\u00fb\u00fe\u0097\u00a8\u0006\"\u000549209\u0012\u0011\bg\u0012\u0006\u0010\u008f\u00ff\u0097\u00a8\u0006\"\u000549210\u0012\u0011\bh\u0012\u0006\u0010\u0084\u0081\u0098\u00a8\u0006\"\u000549211\u0012\u0011\bi\u0012\u0006\u0010\u00ab\u0081\u0098\u00a8\u0006\"\u000549212\u0012\u0011\bj\u0012\u0006\u0010\u00f9\u0081\u0098\u00a8\u0006\"\u000549213\u0012\u0011\bk\u0012\u0006\u0010\u0083\u0084\u0098\u00a8\u0006\"\u000549206\u0012\u0011\bl\u0012\u0006\u0010\u00ee\u0084\u0098\u00a8\u0006\"\u000549215\u0012\u0011\bm\u0012\u0006\u0010\u008c\u0085\u0098\u00a8\u0006\"\u000549216\u0012\u0011\bn\u0012\u0006\u0010\u00a2\u0085\u0098\u00a8\u0006\"\u000549217\u0012\u0011\bo\u0012\u0006\u0010\u00c9\u0085\u0098\u00a8\u0006\"\u000549214\u0012\u0011\bp\u0012\u0006\u0010\u0084\u0086\u0098\u00a8\u0006\"\u000549249\u0012\u0011\bq\u0012\u0006\u0010\u00a1\u0086\u0098\u00a8\u0006\"\u000549218\u0012\u0011\br\u0012\u0006\u0010\u00c2\u0086\u0098\u00a8\u0006\"\u000549219\u0012\u0011\bs\u0012\u0006\u0010\u009a\u0087\u0098\u00a8\u0006\"\u000538044\u0012\u0011\bt\u0012\u0006\u0010\u00d0\u0087\u0098\u00a8\u0006\"\u000538045\u0012\u0011\bu\u0012\u0006\u0010\u00ce\u0088\u0098\u00a8\u0006\"\u000549220\u0012\u0011\bv\u0012\u0006\u0010\u00b8\u0089\u0098\u00a8\u0006\"\u000549221\u0012\u0011\bw\u0012\u0006\u0010\u00d4\u0089\u0098\u00a8\u0006\"\u000549222\u0012\u0011\bx\u0012\u0006\u0010\u00e3\u0089\u0098\u00a8\u0006\"\u000549223\u0012\u0011\by\u0012\u0006\u0010\u00f7\u0089\u0098\u00a8\u0006\"\u000538049\u0012\u0011\bz\u0012\u0006\u0010\u009b\u008a\u0098\u00a8\u0006\"\u000549224\u0012\u0011\b{\u0012\u0006\u0010\u008e\u008b\u0098\u00a8\u0006\"\u000549253\u0012\u0011\b|\u0012\u0006\u0010\u008c\u008c\u0098\u00a8\u0006\"\u000549226\u0012\u0011\b}\u0012\u0006\u0010\u00bf\u008c\u0098\u00a8\u0006\"\u000549227\u0012\u0011\b~\u0012\u0006\u0010\u00f9\u008c\u0098\u00a8\u0006\"\u000549229\u0012\u0011\b\u007f\u0012\u0006\u0010\u009a\u008d\u0098\u00a8\u0006\"\u000549228\u0012\u0012\b\u0080\u0001\u0012\u0006\u0010\u00e3\u008d\u0098\u00a8\u0006\"\u000549230\u0012\u0012\b\u0081\u0001\u0012\u0006\u0010\u00bb\u008e\u0098\u00a8\u0006\"\u000549235\u0012\u0012\b\u0082\u0001\u0012\u0006\u0010\u00d5\u0091\u0098\u00a8\u0006\"\u000549232\u0012\u0012\b\u0083\u0001\u0012\u0006\u0010\u00f4\u0096\u0098\u00a8\u0006\"\u000540342\u0012\u0012\b\u0084\u0001\u0012\u0006\u0010\u0099\u0099\u0098\u00a8\u0006\"\u000540343\u0012\u0012\b\u0085\u0001\u0012\u0006\u0010\u00e1\u009a\u0098\u00a8\u0006\"\u000549243\u001a\b\u001a\u0006CYRT89 \u00ba\u00e8\u0097\u00a8\u0006\"e\n4\n\u00157b03ef8e-e-701ff27f-2\u0012\b14:23:00\u001a\b20230916 \u0000*\u00036320\u0001\u0012\u001d\r!\u008d\u0013\u00c2\u0015\u00ba\u0012\u0092\u00c2\u001d\u0000\u0000\u001cC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u008aB(\u00ba\u00e8\u0097\u00a8\u0006B\b\u001a\u0006CYRT89" + }, + { + "type": "con_recorrido", + "entity": "\n$ade68416-7dfa-4fc7-b381-83fe1b6f210f\u001a\u00e1\r\n4\n\u001547a2a852-d-701ff27f-2\u0012\b14:41:00\u001a\b20230916 \u0000*\u00036320\u0000\u0012\u0011\b&\u0012\u0006\u0010\u008b\u00e9\u0097\u00a8\u0006\"\u000542282\u0012\u0011\b'\u0012\u0006\u0010\u00c6\u00e9\u0097\u00a8\u0006\"\u000542283\u0012\u0011\b(\u0012\u0006\u0010\u008a\u00ea\u0097\u00a8\u0006\"\u000549279\u0012\u0011\b)\u0012\u0006\u0010\u00db\u00ea\u0097\u00a8\u0006\"\u000542285\u0012\u0011\b*\u0012\u0006\u0010\u00b5\u00eb\u0097\u00a8\u0006\"\u000542286\u0012\u0011\b+\u0012\u0006\u0010\u00c5\u00eb\u0097\u00a8\u0006\"\u000542287\u0012\u0011\b,\u0012\u0006\u0010\u00fb\u00eb\u0097\u00a8\u0006\"\u000542288\u0012\u0011\b-\u0012\u0006\u0010\u00a2\u00ec\u0097\u00a8\u0006\"\u000542289\u0012\u0011\b.\u0012\u0006\u0010\u00ef\u00ec\u0097\u00a8\u0006\"\u000542290\u0012\u0011\b/\u0012\u0006\u0010\u00a5\u00ed\u0097\u00a8\u0006\"\u000542291\u0012\u0011\b0\u0012\u0006\u0010\u00fa\u00ed\u0097\u00a8\u0006\"\u000542292\u0012\u0011\b1\u0012\u0006\u0010\u00bf\u00ee\u0097\u00a8\u0006\"\u000542293\u0012\u0011\b2\u0012\u0006\u0010\u00ec\u00ef\u0097\u00a8\u0006\"\u000542294\u0012\u0011\b3\u0012\u0006\u0010\u00e9\u00f0\u0097\u00a8\u0006\"\u000542295\u0012\u0011\b4\u0012\u0006\u0010\u00d8\u00f1\u0097\u00a8\u0006\"\u000542296\u0012\u0011\b5\u0012\u0006\u0010\u00d2\u00f2\u0097\u00a8\u0006\"\u000542297\u0012\u0011\b6\u0012\u0006\u0010\u00b1\u00f3\u0097\u00a8\u0006\"\u000542298\u0012\u0011\b7\u0012\u0006\u0010\u00f0\u00f3\u0097\u00a8\u0006\"\u000542299\u0012\u0011\b8\u0012\u0006\u0010\u0099\u00f4\u0097\u00a8\u0006\"\u000549295\u0012\u0011\b9\u0012\u0006\u0010\u0092\u00f5\u0097\u00a8\u0006\"\u000549296\u0012\u0011\b:\u0012\u0006\u0010\u00ea\u00f5\u0097\u00a8\u0006\"\u000549297\u0012\u0011\b;\u0012\u0006\u0010\u0090\u00f6\u0097\u00a8\u0006\"\u000549298\u0012\u0011\b<\u0012\u0006\u0010\u00d5\u00f6\u0097\u00a8\u0006\"\u000549299\u0012\u0011\b=\u0012\u0006\u0010\u0081\u00f7\u0097\u00a8\u0006\"\u000549300\u0012\u0011\b>\u0012\u0006\u0010\u00d8\u00f7\u0097\u00a8\u0006\"\u000549301\u0012\u0011\b?\u0012\u0006\u0010\u00a0\u00f8\u0097\u00a8\u0006\"\u000549302\u0012\u0011\b@\u0012\u0006\u0010\u00d0\u00f8\u0097\u00a8\u0006\"\u000549303\u0012\u0011\bA\u0012\u0006\u0010\u0088\u00f9\u0097\u00a8\u0006\"\u000549304\u0012\u0011\bB\u0012\u0006\u0010\u00a7\u00f9\u0097\u00a8\u0006\"\u000549305\u0012\u0011\bC\u0012\u0006\u0010\u00e5\u00f9\u0097\u00a8\u0006\"\u000549306\u0012\u0011\bD\u0012\u0006\u0010\u0091\u00fa\u0097\u00a8\u0006\"\u000549307\u0012\u0011\bE\u0012\u0006\u0010\u00ac\u00fa\u0097\u00a8\u0006\"\u000549308\u0012\u0011\bF\u0012\u0006\u0010\u00c7\u00fa\u0097\u00a8\u0006\"\u000549309\u0012\u0011\bG\u0012\u0006\u0010\u0094\u00fb\u0097\u00a8\u0006\"\u000549310\u0012\u0011\bH\u0012\u0006\u0010\u00b9\u00fb\u0097\u00a8\u0006\"\u000549311\u0012\u0011\bI\u0012\u0006\u0010\u00d5\u00fb\u0097\u00a8\u0006\"\u000539633\u0012\u0011\bJ\u0012\u0006\u0010\u00fa\u00fb\u0097\u00a8\u0006\"\u000539634\u0012\u0011\bK\u0012\u0006\u0010\u0098\u00fc\u0097\u00a8\u0006\"\u000539635\u0012\u0011\bL\u0012\u0006\u0010\u00ca\u00fc\u0097\u00a8\u0006\"\u000539636\u0012\u0011\bM\u0012\u0006\u0010\u008f\u00fd\u0097\u00a8\u0006\"\u000549503\u0012\u0011\bN\u0012\u0006\u0010\u00ac\u00fe\u0097\u00a8\u0006\"\u000539637\u0012\u0011\bO\u0012\u0006\u0010\u00eb\u00fe\u0097\u00a8\u0006\"\u000549317\u0012\u0011\bP\u0012\u0006\u0010\u0093\u00ff\u0097\u00a8\u0006\"\u000549318\u0012\u0011\bQ\u0012\u0006\u0010\u00ea\u00ff\u0097\u00a8\u0006\"\u000549319\u0012\u0011\bR\u0012\u0006\u0010\u00bf\u0080\u0098\u00a8\u0006\"\u000539641\u0012\u0011\bS\u0012\u0006\u0010\u00ef\u0080\u0098\u00a8\u0006\"\u000539642\u0012\u0011\bT\u0012\u0006\u0010\u0083\u0084\u0098\u00a8\u0006\"\u000549325\u0012\u0011\bU\u0012\u0006\u0010\u00e3\u0084\u0098\u00a8\u0006\"\u000549326\u0012\u0011\bV\u0012\u0006\u0010\u008c\u0085\u0098\u00a8\u0006\"\u000539648\u0012\u0011\bW\u0012\u0006\u0010\u00d8\u0085\u0098\u00a8\u0006\"\u000539649\u0012\u0011\bX\u0012\u0006\u0010\u00ab\u0086\u0098\u00a8\u0006\"\u000549329\u0012\u0011\bY\u0012\u0006\u0010\u0088\u0087\u0098\u00a8\u0006\"\u000549330\u0012\u0011\bZ\u0012\u0006\u0010\u00ca\u0087\u0098\u00a8\u0006\"\u000539652\u0012\u0011\b[\u0012\u0006\u0010\u00fa\u0087\u0098\u00a8\u0006\"\u000539653\u0012\u0011\b\\\u0012\u0006\u0010\u00b4\u0088\u0098\u00a8\u0006\"\u000539654\u0012\u0011\b]\u0012\u0006\u0010\u00e9\u0088\u0098\u00a8\u0006\"\u000549334\u0012\u0011\b^\u0012\u0006\u0010\u00d6\u0089\u0098\u00a8\u0006\"\u000549335\u0012\u0011\b_\u0012\u0006\u0010\u00ad\u008a\u0098\u00a8\u0006\"\u000549336\u0012\u0011\b`\u0012\u0006\u0010\u00dd\u008b\u0098\u00a8\u0006\"\u000537437\u0012\u0011\ba\u0012\u0006\u0010\u00c8\u008c\u0098\u00a8\u0006\"\u000549337\u0012\u0011\bb\u0012\u0006\u0010\u0083\u008d\u0098\u00a8\u0006\"\u000539661\u0012\u0011\bc\u0012\u0006\u0010\u00d3\u008d\u0098\u00a8\u0006\"\u000539662\u0012\u0011\bd\u0012\u0006\u0010\u00d0\u008e\u0098\u00a8\u0006\"\u000539663\u0012\u0011\be\u0012\u0006\u0010\u00b5\u008f\u0098\u00a8\u0006\"\u000549341\u0012\u0011\bf\u0012\u0006\u0010\u0092\u0090\u0098\u00a8\u0006\"\u000549342\u0012\u0011\bg\u0012\u0006\u0010\u00ec\u0091\u0098\u00a8\u0006\"\u000549343\u0012\u0011\bh\u0012\u0006\u0010\u00c7\u0095\u0098\u00a8\u0006\"\u000549344\u0012\u0011\bi\u0012\u0006\u0010\u00ea\u0098\u0098\u00a8\u0006\"\u000549345\u0012\u0011\bj\u0012\u0006\u0010\u00e6\u009c\u0098\u00a8\u0006\"\u000549346\u0012\u0011\bk\u0012\u0006\u0010\u00c2\u009e\u0098\u00a8\u0006\"\u000549347\u0012\u0011\bl\u0012\u0006\u0010\u008c\u00a5\u0098\u00a8\u0006\"\u000549348\u0012\u0011\bm\u0012\u0006\u0010\u00dd\u00a8\u0098\u00a8\u0006\"\u000549349\u0012\u0011\bn\u0012\u0006\u0010\u00ce\u00ad\u0098\u00a8\u0006\"\u000549350\u0012\u0011\bo\u0012\u0006\u0010\u00cf\u00af\u0098\u00a8\u0006\"\u000549351\u0012\u0011\bp\u0012\u0006\u0010\u00e7\u00b0\u0098\u00a8\u0006\"\u000549352\u0012\u0011\bq\u0012\u0006\u0010\u00f3\u00b2\u0098\u00a8\u0006\"\u000549353\u0012\u0011\br\u0012\u0006\u0010\u00f5\u00b4\u0098\u00a8\u0006\"\u000549354\u0012\u0011\bs\u0012\u0006\u0010\u00ff\u00b6\u0098\u00a8\u0006\"\u000549355\u0012\u0011\bt\u0012\u0006\u0010\u00af\u00bb\u0098\u00a8\u0006\"\u000542244\u0012\u0011\bu\u0012\u0006\u0010\u0082\u00bc\u0098\u00a8\u0006\"\u000549356\u0012\u0011\bv\u0012\u0006\u0010\u00f2\u00bf\u0098\u00a8\u0006\"\u000549357\u0012\u0011\bw\u0012\u0006\u0010\u00b9\u00c1\u0098\u00a8\u0006\"\u000549358\u0012\u0011\bx\u0012\u0006\u0010\u00d2\u00c4\u0098\u00a8\u0006\"\u000549359\u0012\u0011\by\u0012\u0006\u0010\u00a1\u00c8\u0098\u00a8\u0006\"\u000549360\u0012\u0011\bz\u0012\u0006\u0010\u00fb\u00d0\u0098\u00a8\u0006\"\u000549361\u0012\u0011\b{\u0012\u0006\u0010\u00a8\u00d3\u0098\u00a8\u0006\"\u000549362\u0012\u0011\b|\u0012\u0006\u0010\u00cd\u00d7\u0098\u00a8\u0006\"\u000549363\u0012\u0011\b}\u0012\u0006\u0010\u00af\u00dc\u0098\u00a8\u0006\"\u000549364\u0012\u0011\b~\u0012\u0006\u0010\u009a\u00e0\u0098\u00a8\u0006\"\u000549365\u001a\b\u001a\u0006CZXH27 \u00c3\u00e8\u0097\u00a8\u0006\"e\n4\n\u001547a2a852-d-701ff27f-2\u0012\b14:41:00\u001a\b20230916 \u0000*\u00036320\u0000\u0012\u001d\r\u0091\u00b9\u0013\u00c2\u0015\u00ac\u000b\u0092\u00c2\u001d\u0000\u0000\u00a8C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c3\u00e8\u0097\u00a8\u0006B\b\u001a\u0006CZXH27" + }, + { + "type": "con_recorrido", + "entity": "\n$31c19356-cc4c-4be4-84db-917e836ed536\u001a\u00f9\u000e\n4\n\u001516c9a590-a-701ff27f-2\u0012\b15:01:00\u001a\b20230916 \u0000*\u00036320\u0000\u0012\u0011\b\u0007\u0012\u0006\u0010\u00f4\u00e8\u0097\u00a8\u0006\"\u000549237\u0012\u0011\b\b\u0012\u0006\u0010\u00a0\u00e9\u0097\u00a8\u0006\"\u000549238\u0012\u0011\b\t\u0012\u0006\u0010\u008e\u00ea\u0097\u00a8\u0006\"\u000538096\u0012\u0011\b\n\u0012\u0006\u0010\u00ef\u00ea\u0097\u00a8\u0006\"\u000549248\u0012\u0011\b\u000b\u0012\u0006\u0010\u0098\u00eb\u0097\u00a8\u0006\"\u000549254\u0012\u0011\b\f\u0012\u0006\u0010\u00ba\u00eb\u0097\u00a8\u0006\"\u000549255\u0012\u0011\b\r\u0012\u0006\u0010\u00f2\u00eb\u0097\u00a8\u0006\"\u000549256\u0012\u0011\b\u000e\u0012\u0006\u0010\u00fc\u00ec\u0097\u00a8\u0006\"\u000549216\u0012\u0011\b\u000f\u0012\u0006\u0010\u00a2\u00ed\u0097\u00a8\u0006\"\u000549217\u0012\u0011\b\u0010\u0012\u0006\u0010\u00ba\u00ed\u0097\u00a8\u0006\"\u000549214\u0012\u0011\b\u0011\u0012\u0006\u0010\u00e9\u00ed\u0097\u00a8\u0006\"\u000549218\u0012\u0011\b\u0012\u0012\u0006\u0010\u0080\u00ee\u0097\u00a8\u0006\"\u000549257\u0012\u0011\b\u0013\u0012\u0006\u0010\u00f6\u00ee\u0097\u00a8\u0006\"\u000549258\u0012\u0011\b\u0014\u0012\u0006\u0010\u00ad\u00ef\u0097\u00a8\u0006\"\u000549259\u0012\u0011\b\u0015\u0012\u0006\u0010\u00b5\u00ef\u0097\u00a8\u0006\"\u000549260\u0012\u0011\b\u0016\u0012\u0006\u0010\u00d9\u00f0\u0097\u00a8\u0006\"\u000549261\u0012\u0011\b\u0017\u0012\u0006\u0010\u00f7\u00f0\u0097\u00a8\u0006\"\u000549262\u0012\u0011\b\u0018\u0012\u0006\u0010\u0090\u00f1\u0097\u00a8\u0006\"\u000549263\u0012\u0011\b\u0019\u0012\u0006\u0010\u0092\u00f7\u0097\u00a8\u0006\"\u000534549\u0012\u0011\b\u001a\u0012\u0006\u0010\u00ff\u00f9\u0097\u00a8\u0006\"\u000549264\u0012\u0011\b\u001b\u0012\u0006\u0010\u0082\u00fa\u0097\u00a8\u0006\"\u000549265\u0012\u0011\b\u001c\u0012\u0006\u0010\u00ae\u00fa\u0097\u00a8\u0006\"\u000549266\u0012\u0011\b\u001d\u0012\u0006\u0010\u00ec\u00fa\u0097\u00a8\u0006\"\u000549267\u0012\u0011\b\u001e\u0012\u0006\u0010\u00c0\u00fb\u0097\u00a8\u0006\"\u000542274\u0012\u0011\b\u001f\u0012\u0006\u0010\u009b\u00fc\u0097\u00a8\u0006\"\u000542275\u0012\u0011\b \u0012\u0006\u0010\u00cb\u00fc\u0097\u00a8\u0006\"\u000542276\u0012\u0011\b!\u0012\u0006\u0010\u00af\u00fd\u0097\u00a8\u0006\"\u000542277\u0012\u0011\b\"\u0012\u0006\u0010\u0094\u00fe\u0097\u00a8\u0006\"\u000542278\u0012\u0011\b#\u0012\u0006\u0010\u00c8\u00fe\u0097\u00a8\u0006\"\u000542279\u0012\u0011\b$\u0012\u0006\u0010\u00b0\u00ff\u0097\u00a8\u0006\"\u000542280\u0012\u0011\b%\u0012\u0006\u0010\u00e8\u00ff\u0097\u00a8\u0006\"\u000542281\u0012\u0011\b&\u0012\u0006\u0010\u00cc\u0080\u0098\u00a8\u0006\"\u000542282\u0012\u0011\b'\u0012\u0006\u0010\u0098\u0081\u0098\u00a8\u0006\"\u000542283\u0012\u0011\b(\u0012\u0006\u0010\u00f3\u0081\u0098\u00a8\u0006\"\u000549279\u0012\u0011\b)\u0012\u0006\u0010\u00e4\u0082\u0098\u00a8\u0006\"\u000542285\u0012\u0011\b*\u0012\u0006\u0010\u00e6\u0083\u0098\u00a8\u0006\"\u000542286\u0012\u0011\b+\u0012\u0006\u0010\u00ff\u0083\u0098\u00a8\u0006\"\u000542287\u0012\u0011\b,\u0012\u0006\u0010\u00d1\u0084\u0098\u00a8\u0006\"\u000542288\u0012\u0011\b-\u0012\u0006\u0010\u008d\u0085\u0098\u00a8\u0006\"\u000542289\u0012\u0011\b.\u0012\u0006\u0010\u008a\u0086\u0098\u00a8\u0006\"\u000542290\u0012\u0011\b/\u0012\u0006\u0010\u00e4\u0086\u0098\u00a8\u0006\"\u000542291\u0012\u0011\b0\u0012\u0006\u0010\u00f7\u0087\u0098\u00a8\u0006\"\u000542292\u0012\u0011\b1\u0012\u0006\u0010\u00f3\u0088\u0098\u00a8\u0006\"\u000542293\u0012\u0011\b2\u0012\u0006\u0010\u00c2\u008b\u0098\u00a8\u0006\"\u000542294\u0012\u0011\b3\u0012\u0006\u0010\u00c7\u008d\u0098\u00a8\u0006\"\u000542295\u0012\u0011\b4\u0012\u0006\u0010\u00bf\u008f\u0098\u00a8\u0006\"\u000542296\u0012\u0011\b5\u0012\u0006\u0010\u00e4\u0091\u0098\u00a8\u0006\"\u000542297\u0012\u0011\b6\u0012\u0006\u0010\u00d5\u0093\u0098\u00a8\u0006\"\u000542298\u0012\u0011\b7\u0012\u0006\u0010\u00fd\u0094\u0098\u00a8\u0006\"\u000542299\u0012\u0011\b8\u0012\u0006\u0010\u00f0\u0095\u0098\u00a8\u0006\"\u000549295\u0012\u0011\b9\u0012\u0006\u0010\u00ca\u0098\u0098\u00a8\u0006\"\u000549296\u0012\u0011\b:\u0012\u0006\u0010\u00d8\u009a\u0098\u00a8\u0006\"\u000549297\u0012\u0011\b;\u0012\u0006\u0010\u00d1\u009b\u0098\u00a8\u0006\"\u000549298\u0012\u0011\b<\u0012\u0006\u0010\u00b2\u009d\u0098\u00a8\u0006\"\u000549299\u0012\u0011\b=\u0012\u0006\u0010\u00c9\u009e\u0098\u00a8\u0006\"\u000549300\u0012\u0011\b>\u0012\u0006\u0010\u00fd\u00a0\u0098\u00a8\u0006\"\u000549301\u0012\u0011\b?\u0012\u0006\u0010\u0088\u00a3\u0098\u00a8\u0006\"\u000549302\u0012\u0011\b@\u0012\u0006\u0010\u00c1\u00a4\u0098\u00a8\u0006\"\u000549303\u0012\u0011\bA\u0012\u0006\u0010\u00a0\u00a6\u0098\u00a8\u0006\"\u000549304\u0012\u0011\bB\u0012\u0006\u0010\u009e\u00a7\u0098\u00a8\u0006\"\u000549305\u0012\u0011\bC\u0012\u0006\u0010\u00a4\u00a9\u0098\u00a8\u0006\"\u000549306\u0012\u0011\bD\u0012\u0006\u0010\u00e5\u00aa\u0098\u00a8\u0006\"\u000549307\u0012\u0011\bE\u0012\u0006\u0010\u00de\u00ab\u0098\u00a8\u0006\"\u000549308\u0012\u0011\bF\u0012\u0006\u0010\u00da\u00ac\u0098\u00a8\u0006\"\u000549309\u0012\u0011\bG\u0012\u0006\u0010\u00c6\u00af\u0098\u00a8\u0006\"\u000549310\u0012\u0011\bH\u0012\u0006\u0010\u00f7\u00b0\u0098\u00a8\u0006\"\u000549311\u0012\u0011\bI\u0012\u0006\u0010\u0084\u00b2\u0098\u00a8\u0006\"\u000539633\u0012\u0011\bJ\u0012\u0006\u0010\u00c1\u00b3\u0098\u00a8\u0006\"\u000539634\u0012\u0011\bK\u0012\u0006\u0010\u00de\u00b4\u0098\u00a8\u0006\"\u000539635\u0012\u0011\bL\u0012\u0006\u0010\u00f0\u00b6\u0098\u00a8\u0006\"\u000539636\u0012\u0011\bM\u0012\u0006\u0010\u00f1\u00b9\u0098\u00a8\u0006\"\u000549503\u0012\u0011\bN\u0012\u0006\u0010\u00ae\u00c1\u0098\u00a8\u0006\"\u000539637\u0012\u0011\bO\u0012\u0006\u0010\u00d0\u00c4\u0098\u00a8\u0006\"\u000549317\u0012\u0011\bP\u0012\u0006\u0010\u00e9\u00c6\u0098\u00a8\u0006\"\u000549318\u0012\u0011\bQ\u0012\u0006\u0010\u00dc\u00cb\u0098\u00a8\u0006\"\u000549319\u0012\u0011\bR\u0012\u0006\u0010\u00f1\u00d0\u0098\u00a8\u0006\"\u000539641\u0012\u0011\bS\u0012\u0006\u0010\u00fd\u00d3\u0098\u00a8\u0006\"\u000539642\u0012\u0011\bT\u0012\u0006\u0010\u00dd\u00f3\u0098\u00a8\u0006\"\u000549325\u0012\u0011\bU\u0012\u0006\u0010\u00a8\u00fd\u0098\u00a8\u0006\"\u000549326\u0012\u0011\bV\u0012\u0006\u0010\u00db\u0081\u0099\u00a8\u0006\"\u000539648\u0012\u0011\bW\u0012\u0006\u0010\u00ab\u008a\u0099\u00a8\u0006\"\u000539649\u0012\u0011\bX\u0012\u0006\u0010\u00cd\u0094\u0099\u00a8\u0006\"\u000549329\u0012\u0011\bY\u0012\u0006\u0010\u00b8\u00a1\u0099\u00a8\u0006\"\u000549330\u0012\u0011\bZ\u0012\u0006\u0010\u00a9\u00ab\u0099\u00a8\u0006\"\u000539652\u0012\u0011\b[\u0012\u0006\u0010\u00a4\u00b3\u0099\u00a8\u0006\"\u000539653\u0012\u0011\b\\\u0012\u0006\u0010\u00b4\u00bd\u0099\u00a8\u0006\"\u000539654\u0012\u0011\b]\u0012\u0006\u0010\u00b2\u00c7\u0099\u00a8\u0006\"\u000549334\u0012\u0011\b^\u0012\u0006\u0010\u00a8\u00de\u0099\u00a8\u0006\"\u000549335\u0012\u0011\b_\u0012\u0006\u0010\u00e7\u00f3\u0099\u00a8\u0006\"\u000549336\u0012\u0011\b`\u0012\u0006\u0010\u00fa\u00a9\u009a\u00a8\u0006\"\u000537437\u0012\u0011\ba\u0012\u0006\u0010\u00b4\u00d4\u009a\u00a8\u0006\"\u000549337\u0012\u0011\bb\u0012\u0006\u0010\u00d0\u00f0\u009a\u00a8\u0006\"\u000539661\u0012\u0011\bc\u0012\u0006\u0010\u008e\u009d\u009b\u00a8\u0006\"\u000539662\u0012\u0011\bd\u0012\u0006\u0010\u00bb\u00f7\u009b\u00a8\u0006\"\u000539663\u0012\u0011\be\u0012\u0006\u0010\u00cf\u00dd\u009c\u00a8\u0006\"\u000549341\u0012\u0011\bf\u0012\u0006\u0010\u008a\u00e0\u009d\u00a8\u0006\"\u000549342\u0012\u0011\bg\u0012\u0006\u0010\u00c7\u00f8\u00a2\u00a8\u0006\"\u000549343\u001a\b\u001a\u0006DBGH97 \u00c5\u00e8\u0097\u00a8\u0006\"e\n4\n\u001516c9a590-a-701ff27f-2\u0012\b15:01:00\u001a\b20230916 \u0000*\u00036320\u0000\u0012\u001d\r\u008f\u00dc\u0013\u00c2\u0015\u00a3\u00df\u0091\u00c2\u001d\u0000\u0000$C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u00c8A(\u00c5\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DBGH97" + }, + { + "type": "con_recorrido", + "entity": "\n$454294b1-5407-4762-a00a-4cdc0a0d5e64\u001a\u008d\u000e\n4\n\u001571aa25d5-0-701ff27f-2\u0012\b14:43:00\u001a\b20230916 \u0000*\u00036320\u0001\u0012\u0011\b+\u0012\u0006\u0010\u00db\u00e8\u0097\u00a8\u0006\"\u000538509\u0012\u0011\b,\u0012\u0006\u0010\u0081\u00e9\u0097\u00a8\u0006\"\u000538642\u0012\u0011\b-\u0012\u0006\u0010\u00b0\u00e9\u0097\u00a8\u0006\"\u000539795\u0012\u0011\b.\u0012\u0006\u0010\u00c9\u00e9\u0097\u00a8\u0006\"\u000538502\u0012\u0011\b/\u0012\u0006\u0010\u0091\u00ea\u0097\u00a8\u0006\"\u000538503\u0012\u0011\b0\u0012\u0006\u0010\u00b2\u00eb\u0097\u00a8\u0006\"\u000535691\u0012\u0011\b1\u0012\u0006\u0010\u0092\u00ec\u0097\u00a8\u0006\"\u000535693\u0012\u0011\b2\u0012\u0006\u0010\u00cc\u00ec\u0097\u00a8\u0006\"\u000535694\u0012\u0011\b3\u0012\u0006\u0010\u00ef\u00ec\u0097\u00a8\u0006\"\u000535695\u0012\u0011\b4\u0012\u0006\u0010\u00a3\u00ed\u0097\u00a8\u0006\"\u000535696\u0012\u0011\b5\u0012\u0006\u0010\u00cb\u00ee\u0097\u00a8\u0006\"\u000535697\u0012\u0011\b6\u0012\u0006\u0010\u00a9\u00ef\u0097\u00a8\u0006\"\u00052-Jan\u0012\u0011\b7\u0012\u0006\u0010\u00cb\u00ef\u0097\u00a8\u0006\"\u000542460\u0012\u0011\b8\u0012\u0006\u0010\u00fd\u00ef\u0097\u00a8\u0006\"\u000539726\u0012\u0011\b9\u0012\u0006\u0010\u0092\u00f0\u0097\u00a8\u0006\"\u00052-Mar\u0012\u0011\b:\u0012\u0006\u0010\u00e2\u00f0\u0097\u00a8\u0006\"\u00052-Apr\u0012\u0011\b;\u0012\u0006\u0010\u0099\u00f1\u0097\u00a8\u0006\"\u000539728\u0012\u0011\b<\u0012\u0006\u0010\u00f8\u00f1\u0097\u00a8\u0006\"\u000539729\u0012\u0011\b=\u0012\u0006\u0010\u0090\u00f2\u0097\u00a8\u0006\"\u000539730\u0012\u0011\b>\u0012\u0006\u0010\u00f5\u00f2\u0097\u00a8\u0006\"\u000542200\u0012\u0011\b?\u0012\u0006\u0010\u00a2\u00f3\u0097\u00a8\u0006\"\u000542203\u0012\u0011\b@\u0012\u0006\u0010\u00d7\u00f3\u0097\u00a8\u0006\"\u000542204\u0012\u0011\bA\u0012\u0006\u0010\u0080\u00f4\u0097\u00a8\u0006\"\u000542205\u0012\u0011\bB\u0012\u0006\u0010\u00bc\u00f4\u0097\u00a8\u0006\"\u000542201\u0012\u0011\bC\u0012\u0006\u0010\u00b4\u00f6\u0097\u00a8\u0006\"\u000542206\u0012\u0011\bD\u0012\u0006\u0010\u00f4\u00f6\u0097\u00a8\u0006\"\u000542207\u0012\u0011\bE\u0012\u0006\u0010\u00b2\u00f7\u0097\u00a8\u0006\"\u000542208\u0012\u0011\bF\u0012\u0006\u0010\u00b7\u00f8\u0097\u00a8\u0006\"\u000542564\u0012\u0011\bG\u0012\u0006\u0010\u00ac\u00f9\u0097\u00a8\u0006\"\u000542214\u0012\u0011\bH\u0012\u0006\u0010\u009f\u00fa\u0097\u00a8\u0006\"\u000542209\u0012\u0011\bI\u0012\u0006\u0010\u00a6\u00fb\u0097\u00a8\u0006\"\u000542210\u0012\u0011\bJ\u0012\u0006\u0010\u0082\u00fd\u0097\u00a8\u0006\"\u000542215\u0012\u0011\bK\u0012\u0006\u0010\u00a7\u00fd\u0097\u00a8\u0006\"\u000542216\u0012\u0011\bL\u0012\u0006\u0010\u00da\u00fd\u0097\u00a8\u0006\"\u000542217\u0012\u0011\bM\u0012\u0006\u0010\u00b7\u00fe\u0097\u00a8\u0006\"\u000542218\u0012\u0011\bN\u0012\u0006\u0010\u00ee\u00fe\u0097\u00a8\u0006\"\u000542219\u0012\u0011\bO\u0012\u0006\u0010\u00e5\u00ff\u0097\u00a8\u0006\"\u000542220\u0012\u0011\bP\u0012\u0006\u0010\u00aa\u0080\u0098\u00a8\u0006\"\u000542221\u0012\u0011\bQ\u0012\u0006\u0010\u0086\u0081\u0098\u00a8\u0006\"\u000542222\u0012\u0011\bR\u0012\u0006\u0010\u00e5\u0081\u0098\u00a8\u0006\"\u000542223\u0012\u0011\bS\u0012\u0006\u0010\u008d\u0082\u0098\u00a8\u0006\"\u000542224\u0012\u0011\bT\u0012\u0006\u0010\u00fa\u0082\u0098\u00a8\u0006\"\u000542225\u0012\u0011\bU\u0012\u0006\u0010\u00da\u0083\u0098\u00a8\u0006\"\u000542226\u0012\u0011\bV\u0012\u0006\u0010\u00aa\u0084\u0098\u00a8\u0006\"\u000542227\u0012\u0011\bW\u0012\u0006\u0010\u00ac\u0085\u0098\u00a8\u0006\"\u000542228\u0012\u0011\bX\u0012\u0006\u0010\u00ef\u0085\u0098\u00a8\u0006\"\u000542229\u0012\u0011\bY\u0012\u0006\u0010\u00f2\u0086\u0098\u00a8\u0006\"\u000542230\u0012\u0011\bZ\u0012\u0006\u0010\u00b9\u0087\u0098\u00a8\u0006\"\u000542231\u0012\u0011\b[\u0012\u0006\u0010\u00c5\u0088\u0098\u00a8\u0006\"\u000542232\u0012\u0011\b\\\u0012\u0006\u0010\u00af\u008a\u0098\u00a8\u0006\"\u000542234\u0012\u0011\b]\u0012\u0006\u0010\u00b6\u008b\u0098\u00a8\u0006\"\u000542235\u0012\u0011\b^\u0012\u0006\u0010\u00f2\u008b\u0098\u00a8\u0006\"\u000542211\u0012\u0011\b_\u0012\u0006\u0010\u00dd\u008c\u0098\u00a8\u0006\"\u000549203\u0012\u0011\b`\u0012\u0006\u0010\u00cd\u008d\u0098\u00a8\u0006\"\u000549204\u0012\u0011\ba\u0012\u0006\u0010\u00e2\u008d\u0098\u00a8\u0006\"\u000542503\u0012\u0011\bb\u0012\u0006\u0010\u00fd\u008d\u0098\u00a8\u0006\"\u000534564\u0012\u0011\bc\u0012\u0006\u0010\u00a7\u0094\u0098\u00a8\u0006\"\u000534789\u0012\u0011\bd\u0012\u0006\u0010\u00e0\u0094\u0098\u00a8\u0006\"\u000549163\u0012\u0011\be\u0012\u0006\u0010\u00c8\u00a9\u0098\u00a8\u0006\"\u000549208\u0012\u0011\bf\u0012\u0006\u0010\u00c4\u00aa\u0098\u00a8\u0006\"\u000549209\u0012\u0011\bg\u0012\u0006\u0010\u0090\u00ab\u0098\u00a8\u0006\"\u000549210\u0012\u0011\bh\u0012\u0006\u0010\u00fd\u00b2\u0098\u00a8\u0006\"\u000549211\u0012\u0011\bi\u0012\u0006\u0010\u00a7\u00b4\u0098\u00a8\u0006\"\u000549212\u0012\u0011\bj\u0012\u0006\u0010\u0089\u00b7\u0098\u00a8\u0006\"\u000549213\u0012\u0011\bk\u0012\u0006\u0010\u00ba\u00c1\u0098\u00a8\u0006\"\u000549206\u0012\u0011\bl\u0012\u0006\u0010\u0089\u00c6\u0098\u00a8\u0006\"\u000549215\u0012\u0011\bm\u0012\u0006\u0010\u00b7\u00c7\u0098\u00a8\u0006\"\u000549216\u0012\u0011\bn\u0012\u0006\u0010\u00b7\u00c8\u0098\u00a8\u0006\"\u000549217\u0012\u0011\bo\u0012\u0006\u0010\u009c\u00ca\u0098\u00a8\u0006\"\u000549214\u0012\u0011\bp\u0012\u0006\u0010\u0086\u00cd\u0098\u00a8\u0006\"\u000549249\u0012\u0011\bq\u0012\u0006\u0010\u00bc\u00ce\u0098\u00a8\u0006\"\u000549218\u0012\u0011\br\u0012\u0006\u0010\u008b\u00d0\u0098\u00a8\u0006\"\u000549219\u0012\u0011\bs\u0012\u0006\u0010\u00d5\u00d4\u0098\u00a8\u0006\"\u000538044\u0012\u0011\bt\u0012\u0006\u0010\u00c9\u00d7\u0098\u00a8\u0006\"\u000538045\u0012\u0011\bu\u0012\u0006\u0010\u00e6\u00de\u0098\u00a8\u0006\"\u000549220\u0012\u0011\bv\u0012\u0006\u0010\u00b0\u00e5\u0098\u00a8\u0006\"\u000549221\u0012\u0011\bw\u0012\u0006\u0010\u0093\u00e7\u0098\u00a8\u0006\"\u000549222\u0012\u0011\bx\u0012\u0006\u0010\u0093\u00e8\u0098\u00a8\u0006\"\u000549223\u0012\u0011\by\u0012\u0006\u0010\u00c1\u00e9\u0098\u00a8\u0006\"\u000538049\u0012\u0011\bz\u0012\u0006\u0010\u00f2\u00eb\u0098\u00a8\u0006\"\u000549224\u0012\u0011\b{\u0012\u0006\u0010\u0091\u00f4\u0098\u00a8\u0006\"\u000549253\u0012\u0011\b|\u0012\u0006\u0010\u00fd\u00fd\u0098\u00a8\u0006\"\u000549226\u0012\u0011\b}\u0012\u0006\u0010\u0093\u0082\u0099\u00a8\u0006\"\u000549227\u0012\u0011\b~\u0012\u0006\u0010\u009e\u0087\u0099\u00a8\u0006\"\u000549229\u0012\u0011\b\u007f\u0012\u0006\u0010\u009d\u008a\u0099\u00a8\u0006\"\u000549228\u0012\u0012\b\u0080\u0001\u0012\u0006\u0010\u0087\u0091\u0099\u00a8\u0006\"\u000549230\u0012\u0012\b\u0081\u0001\u0012\u0006\u0010\u00ef\u0099\u0099\u00a8\u0006\"\u000549235\u0012\u0012\b\u0082\u0001\u0012\u0006\u0010\u00cd\u00cd\u0099\u00a8\u0006\"\u000549232\u0012\u0012\b\u0083\u0001\u0012\u0006\u0010\u00c1\u00e9\u009a\u00a8\u0006\"\u000540342\u0012\u0012\b\u0084\u0001\u0012\u0006\u0010\u00a1\u00f0\u009b\u00a8\u0006\"\u000540343\u0012\u0012\b\u0085\u0001\u0012\u0006\u0010\u00a0\u0085\u009d\u00a8\u0006\"\u000549243\u001a\b\u001a\u0006XS4553 \u00c4\u00e8\u0097\u00a8\u0006\"e\n4\n\u001571aa25d5-0-701ff27f-2\u0012\b14:43:00\u001a\b20230916 \u0000*\u00036320\u0001\u0012\u001d\rB-\u0013\u00c2\u0015w,\u0092\u00c2\u001d\u0000\u00002C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u00d0A(\u00c4\u00e8\u0097\u00a8\u0006B\b\u001a\u0006XS4553" + }, + { + "type": "con_recorrido", + "entity": "\n$e6dc7aa2-2c8b-442b-a9d2-5ff726cdc11b\u001a\u00b4\u000f\n4\n\u001563740513-9-701ff27f-2\u0012\b15:23:00\u001a\b20230916 \u0000*\u00036320\u0001\u0012\u0011\b\u0001\u0012\u0006\u0010\u0089\u00e9\u0097\u00a8\u0006\"\u000538560\u0012\u0011\b\u0002\u0012\u0006\u0010\u0098\u00e9\u0097\u00a8\u0006\"\u000538697\u0012\u0011\b\u0003\u0012\u0006\u0010\u00c7\u00e9\u0097\u00a8\u0006\"\u000538646\u0012\u0011\b\u0004\u0012\u0006\u0010\u00ef\u00e9\u0097\u00a8\u0006\"\u000538632\u0012\u0011\b\u0005\u0012\u0006\u0010\u00bf\u00ea\u0097\u00a8\u0006\"\u000538767\u0012\u0011\b\u0006\u0012\u0006\u0010\u00ff\u00ea\u0097\u00a8\u0006\"\u000538768\u0012\u0011\b\u0007\u0012\u0006\u0010\u00b0\u00eb\u0097\u00a8\u0006\"\u000538769\u0012\u0011\b\b\u0012\u0006\u0010\u0090\u00ec\u0097\u00a8\u0006\"\u000542244\u0012\u0011\b\t\u0012\u0006\u0010\u00de\u00ec\u0097\u00a8\u0006\"\u000542245\u0012\u0011\b\n\u0012\u0006\u0010\u0088\u00ed\u0097\u00a8\u0006\"\u000542246\u0012\u0011\b\u000b\u0012\u0006\u0010\u00bd\u00ed\u0097\u00a8\u0006\"\u000538779\u0012\u0011\b\f\u0012\u0006\u0010\u00ea\u00ed\u0097\u00a8\u0006\"\u000542247\u0012\u0011\b\r\u0012\u0006\u0010\u0097\u00ee\u0097\u00a8\u0006\"\u000542248\u0012\u0011\b\u000e\u0012\u0006\u0010\u00b5\u00ee\u0097\u00a8\u0006\"\u000538782\u0012\u0011\b\u000f\u0012\u0006\u0010\u00a2\u00ef\u0097\u00a8\u0006\"\u000542249\u0012\u0011\b\u0010\u0012\u0006\u0010\u008b\u00f0\u0097\u00a8\u0006\"\u000542421\u0012\u0011\b\u0011\u0012\u0006\u0010\u00d2\u00f1\u0097\u00a8\u0006\"\u000542422\u0012\u0011\b\u0012\u0012\u0006\u0010\u00a0\u00f2\u0097\u00a8\u0006\"\u000542423\u0012\u0011\b\u0013\u0012\u0006\u0010\u008d\u00f3\u0097\u00a8\u0006\"\u000542424\u0012\u0011\b\u0014\u0012\u0006\u0010\u00c6\u00f4\u0097\u00a8\u0006\"\u000542425\u0012\u0011\b\u0015\u0012\u0006\u0010\u0080\u00f6\u0097\u00a8\u0006\"\u000542426\u0012\u0011\b\u0016\u0012\u0006\u0010\u00b8\u00f6\u0097\u00a8\u0006\"\u000542427\u0012\u0011\b\u0017\u0012\u0006\u0010\u00d7\u00f6\u0097\u00a8\u0006\"\u000542428\u0012\u0011\b\u0018\u0012\u0006\u0010\u00ff\u00f6\u0097\u00a8\u0006\"\u000542429\u0012\u0011\b\u0019\u0012\u0006\u0010\u009b\u00f7\u0097\u00a8\u0006\"\u000542430\u0012\u0011\b\u001a\u0012\u0006\u0010\u00d6\u00f7\u0097\u00a8\u0006\"\u000542431\u0012\u0011\b\u001b\u0012\u0006\u0010\u00ed\u00f7\u0097\u00a8\u0006\"\u000542432\u0012\u0011\b\u001c\u0012\u0006\u0010\u00a3\u00f8\u0097\u00a8\u0006\"\u000537578\u0012\u0011\b\u001d\u0012\u0006\u0010\u00c8\u00f8\u0097\u00a8\u0006\"\u000542434\u0012\u0011\b\u001e\u0012\u0006\u0010\u00fe\u00f8\u0097\u00a8\u0006\"\u000542435\u0012\u0013\b\u001f\u0012\u0006\u0010\u00af\u00f9\u0097\u00a8\u0006\"\u00074831075\u0012\u0011\b \u0012\u0006\u0010\u00e1\u00f9\u0097\u00a8\u0006\"\u000549135\u0012\u0011\b!\u0012\u0006\u0010\u008f\u00fa\u0097\u00a8\u0006\"\u000549136\u0012\u0011\b\"\u0012\u0006\u0010\u00e1\u00fa\u0097\u00a8\u0006\"\u000549137\u0012\u0011\b#\u0012\u0006\u0010\u00fc\u00fa\u0097\u00a8\u0006\"\u000549138\u0012\u0011\b$\u0012\u0006\u0010\u008f\u00fb\u0097\u00a8\u0006\"\u000549139\u0012\u0011\b%\u0012\u0006\u0010\u00b3\u00fb\u0097\u00a8\u0006\"\u000549140\u0012\u0011\b&\u0012\u0006\u0010\u00e3\u00fb\u0097\u00a8\u0006\"\u000549141\u0012\u0011\b'\u0012\u0006\u0010\u0091\u00fc\u0097\u00a8\u0006\"\u000549142\u0012\u0011\b(\u0012\u0006\u0010\u00bc\u00fc\u0097\u00a8\u0006\"\u000549143\u0012\u0011\b)\u0012\u0006\u0010\u00dd\u00fc\u0097\u00a8\u0006\"\u000538506\u0012\u0011\b*\u0012\u0006\u0010\u0099\u00fd\u0097\u00a8\u0006\"\u000538635\u0012\u0011\b+\u0012\u0006\u0010\u00cb\u00fd\u0097\u00a8\u0006\"\u000538509\u0012\u0011\b,\u0012\u0006\u0010\u00f7\u00fd\u0097\u00a8\u0006\"\u000538642\u0012\u0011\b-\u0012\u0006\u0010\u00ae\u00fe\u0097\u00a8\u0006\"\u000539795\u0012\u0011\b.\u0012\u0006\u0010\u00cd\u00fe\u0097\u00a8\u0006\"\u000538502\u0012\u0011\b/\u0012\u0006\u0010\u00a5\u00ff\u0097\u00a8\u0006\"\u000538503\u0012\u0011\b0\u0012\u0006\u0010\u00f7\u0080\u0098\u00a8\u0006\"\u000535691\u0012\u0011\b1\u0012\u0006\u0010\u00fc\u0081\u0098\u00a8\u0006\"\u000535693\u0012\u0011\b2\u0012\u0006\u0010\u00cf\u0082\u0098\u00a8\u0006\"\u000535694\u0012\u0011\b3\u0012\u0006\u0010\u0083\u0083\u0098\u00a8\u0006\"\u000535695\u0012\u0011\b4\u0012\u0006\u0010\u00d0\u0083\u0098\u00a8\u0006\"\u000535696\u0012\u0011\b5\u0012\u0006\u0010\u00da\u0085\u0098\u00a8\u0006\"\u000535697\u0012\u0011\b6\u0012\u0006\u0010\u00f8\u0086\u0098\u00a8\u0006\"\u00052-Jan\u0012\u0011\b7\u0012\u0006\u0010\u00b4\u0087\u0098\u00a8\u0006\"\u000542460\u0012\u0011\b8\u0012\u0006\u0010\u008d\u0088\u0098\u00a8\u0006\"\u000539726\u0012\u0011\b9\u0012\u0006\u0010\u00b3\u0088\u0098\u00a8\u0006\"\u00052-Mar\u0012\u0011\b:\u0012\u0006\u0010\u00c7\u0089\u0098\u00a8\u0006\"\u00052-Apr\u0012\u0011\b;\u0012\u0006\u0010\u00b2\u008a\u0098\u00a8\u0006\"\u000539728\u0012\u0011\b<\u0012\u0006\u0010\u00ef\u008b\u0098\u00a8\u0006\"\u000539729\u0012\u0011\b=\u0012\u0006\u0010\u00a0\u008c\u0098\u00a8\u0006\"\u000539730\u0012\u0011\b>\u0012\u0006\u0010\u00f6\u008d\u0098\u00a8\u0006\"\u000542200\u0012\u0011\b?\u0012\u0006\u0010\u00d9\u008e\u0098\u00a8\u0006\"\u000542203\u0012\u0011\b@\u0012\u0006\u0010\u00d1\u008f\u0098\u00a8\u0006\"\u000542204\u0012\u0011\bA\u0012\u0006\u0010\u00b1\u0090\u0098\u00a8\u0006\"\u000542205\u0012\u0011\bB\u0012\u0006\u0010\u00bf\u0091\u0098\u00a8\u0006\"\u000542201\u0012\u0011\bC\u0012\u0006\u0010\u00bb\u0096\u0098\u00a8\u0006\"\u000542206\u0012\u0011\bD\u0012\u0006\u0010\u00ef\u0097\u0098\u00a8\u0006\"\u000542207\u0012\u0011\bE\u0012\u0006\u0010\u00a1\u0099\u0098\u00a8\u0006\"\u000542208\u0012\u0011\bF\u0012\u0006\u0010\u00b5\u009c\u0098\u00a8\u0006\"\u000542564\u0012\u0011\bG\u0012\u0006\u0010\u00ae\u009f\u0098\u00a8\u0006\"\u000542214\u0012\u0011\bH\u0012\u0006\u0010\u00bd\u00a2\u0098\u00a8\u0006\"\u000542209\u0012\u0011\bI\u0012\u0006\u0010\u00af\u00a6\u0098\u00a8\u0006\"\u000542210\u0012\u0011\bJ\u0012\u0006\u0010\u00b5\u00ad\u0098\u00a8\u0006\"\u000542215\u0012\u0011\bK\u0012\u0006\u0010\u00d9\u00ae\u0098\u00a8\u0006\"\u000542216\u0012\u0011\bL\u0012\u0006\u0010\u00be\u00b0\u0098\u00a8\u0006\"\u000542217\u0012\u0011\bM\u0012\u0006\u0010\u00f8\u00b3\u0098\u00a8\u0006\"\u000542218\u0012\u0011\bN\u0012\u0006\u0010\u0088\u00b6\u0098\u00a8\u0006\"\u000542219\u0012\u0011\bO\u0012\u0006\u0010\u00f7\u00ba\u0098\u00a8\u0006\"\u000542220\u0012\u0011\bP\u0012\u0006\u0010\u00f4\u00bd\u0098\u00a8\u0006\"\u000542221\u0012\u0011\bQ\u0012\u0006\u0010\u008e\u00c2\u0098\u00a8\u0006\"\u000542222\u0012\u0011\bR\u0012\u0006\u0010\u00d9\u00c6\u0098\u00a8\u0006\"\u000542223\u0012\u0011\bS\u0012\u0006\u0010\u00dc\u00c8\u0098\u00a8\u0006\"\u000542224\u0012\u0011\bT\u0012\u0006\u0010\u00ca\u00ce\u0098\u00a8\u0006\"\u000542225\u0012\u0011\bU\u0012\u0006\u0010\u008b\u00d4\u0098\u00a8\u0006\"\u000542226\u0012\u0011\bV\u0012\u0006\u0010\u0082\u00d9\u0098\u00a8\u0006\"\u000542227\u0012\u0011\bW\u0012\u0006\u0010\u00d7\u00e1\u0098\u00a8\u0006\"\u000542228\u0012\u0011\bX\u0012\u0006\u0010\u00be\u00e6\u0098\u00a8\u0006\"\u000542229\u0012\u0011\bY\u0012\u0006\u0010\u00de\u00f0\u0098\u00a8\u0006\"\u000542230\u0012\u0011\bZ\u0012\u0006\u0010\u00df\u00f6\u0098\u00a8\u0006\"\u000542231\u0012\u0011\b[\u0012\u0006\u0010\u00e0\u0083\u0099\u00a8\u0006\"\u000542232\u0012\u0011\b\\\u0012\u0006\u0010\u00f5\u009d\u0099\u00a8\u0006\"\u000542234\u0012\u0011\b]\u0012\u0006\u0010\u0082\u00b0\u0099\u00a8\u0006\"\u000542235\u0012\u0011\b^\u0012\u0006\u0010\u00fe\u00b8\u0099\u00a8\u0006\"\u000542211\u0012\u0011\b_\u0012\u0006\u0010\u00de\u00ca\u0099\u00a8\u0006\"\u000549203\u0012\u0011\b`\u0012\u0006\u0010\u00f4\u00df\u0099\u00a8\u0006\"\u000549204\u0012\u0011\ba\u0012\u0006\u0010\u008f\u00e4\u0099\u00a8\u0006\"\u000542503\u0012\u0011\bb\u0012\u0006\u0010\u00ed\u00e9\u0099\u00a8\u0006\"\u000534564\u0012\u0011\bc\u0012\u0006\u0010\u0086\u00ef\u009c\u00a8\u0006\"\u000534789\u0012\u0011\bd\u0012\u0006\u0010\u00d0\u00b1\u009d\u00a8\u0006\"\u000549163\u001a\b\u001a\u0006YS3977 \u00c3\u00e8\u0097\u00a8\u0006\"e\n4\n\u001563740513-9-701ff27f-2\u0012\b15:23:00\u001a\b20230916 \u0000*\u00036320\u0001\u0012\u001d\r\u008f\u00d5\u0012\u00c2\u0015\u00af:\u0092\u00c2\u001d\u0000\u0000>C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000 A(\u00c3\u00e8\u0097\u00a8\u0006B\b\u001a\u0006YS3977" + }, + { + "type": "con_recorrido", + "entity": "\n$88558a68-3bf9-45f1-a3b7-519e893aed48\u001a\u00f1\u0001\n4\n\u00159433f1f7-2-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00036330\u0000\u0012\u0011\b\u001d\u0012\u0006\u0010\u009a\u00e8\u0097\u00a8\u0006\"\u000535808\u0012\u0011\b\u001e\u0012\u0006\u0010\u00e0\u00e8\u0097\u00a8\u0006\"\u000535710\u0012\u0011\b\u001f\u0012\u0006\u0010\u0090\u00e9\u0097\u00a8\u0006\"\u000550036\u0012\u0011\b \u0012\u0006\u0010\u00f6\u00e9\u0097\u00a8\u0006\"\u000535712\u0012\u0011\b!\u0012\u0006\u0010\u00d8\u00ea\u0097\u00a8\u0006\"\u000535713\u0012\u0011\b\"\u0012\u0006\u0010\u00a4\u00eb\u0097\u00a8\u0006\"\u000535817\u0012\u0011\b#\u0012\u0006\u0010\u00cf\u00eb\u0097\u00a8\u0006\"\u000535818\u0012\u0011\b$\u0012\u0006\u0010\u00ed\u00eb\u0097\u00a8\u0006\"\u000549532\u0012\u0011\b%\u0012\u0006\u0010\u0081\u00ed\u0097\u00a8\u0006\"\u000549487\u001a\b\u001a\u0006JVXY87 \u0092\u00e8\u0097\u00a8\u0006\"e\n4\n\u00159433f1f7-2-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00036330\u0000\u0012\u001d\r\u00b6C\u0013\u00c2\u0015\u00a2\u0011\u0092\u00c2\u001d\u0000\u0000xB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0092\u00e8\u0097\u00a8\u0006B\b\u001a\u0006JVXY87" + }, + { + "type": "con_recorrido", + "entity": "\n$9621c27e-22a7-4605-932d-9bd5dcb11c60\u001a\u00b8\u0001\n4\n\u0015f33f6815-5-701ff27f-2\u0012\b14:34:00\u001a\b20230916 \u0000*\u00036330\u0001\u0012\u0011\b\u001f\u0012\u0006\u0010\u0094\u00e8\u0097\u00a8\u0006\"\u000549514\u0012\u0011\b \u0012\u0006\u0010\u00d5\u00e8\u0097\u00a8\u0006\"\u000549516\u0012\u0011\b!\u0012\u0006\u0010\u00a6\u00e9\u0097\u00a8\u0006\"\u000549517\u0012\u0011\b\"\u0012\u0006\u0010\u00c6\u00e9\u0097\u00a8\u0006\"\u000549511\u0012\u0011\b#\u0012\u0006\u0010\u00b9\u00ea\u0097\u00a8\u0006\"\u000549481\u0012\u0011\b$\u0012\u0006\u0010\u00d1\u00ea\u0097\u00a8\u0006\"\u000549485\u001a\b\u001a\u0006SKJR70 \u008e\u00e8\u0097\u00a8\u0006\"e\n4\n\u0015f33f6815-5-701ff27f-2\u0012\b14:34:00\u001a\b20230916 \u0000*\u00036330\u0001\u0012\u001d\r'/\u0013\u00c2\u0015\u00fc)\u0092\u00c2\u001d\u0000\u0000\u00a5C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u001c\u00c7\u00b1?(\u008e\u00e8\u0097\u00a8\u0006B\b\u001a\u0006SKJR70" + }, + { + "type": "con_recorrido", + "entity": "\n$521d3e63-6042-435e-ad46-b5c6f29d4889\u001a\u00e8\u0003\n4\n\u0015db21da87-b-701ff27f-2\u0012\b14:49:00\u001a\b20230916 \u0000*\u00036340\u0000\u0012\u0011\b\u001c\u0012\u0006\u0010\u0092\u00e8\u0097\u00a8\u0006\"\u000550032\u0012\u0011\b\u001d\u0012\u0006\u0010\u00c0\u00e8\u0097\u00a8\u0006\"\u000539495\u0012\u0011\b\u001e\u0012\u0006\u0010\u009b\u00e9\u0097\u00a8\u0006\"\u000550033\u0012\u0011\b\u001f\u0012\u0006\u0010\u00c1\u00e9\u0097\u00a8\u0006\"\u000539497\u0012\u0011\b \u0012\u0006\u0010\u00e5\u00e9\u0097\u00a8\u0006\"\u000549407\u0012\u0011\b!\u0012\u0006\u0010\u00a0\u00ea\u0097\u00a8\u0006\"\u000550034\u0012\u0011\b\"\u0012\u0006\u0010\u00c8\u00ea\u0097\u00a8\u0006\"\u000540903\u0012\u0011\b#\u0012\u0006\u0010\u00ea\u00ea\u0097\u00a8\u0006\"\u000540904\u0012\u0011\b$\u0012\u0006\u0010\u0097\u00eb\u0097\u00a8\u0006\"\u000535814\u0012\u0011\b%\u0012\u0006\u0010\u00da\u00eb\u0097\u00a8\u0006\"\u000535815\u0012\u0011\b&\u0012\u0006\u0010\u00fd\u00eb\u0097\u00a8\u0006\"\u000535816\u0012\u0011\b'\u0012\u0006\u0010\u008a\u00ec\u0097\u00a8\u0006\"\u000535817\u0012\u0011\b(\u0012\u0006\u0010\u00ac\u00ec\u0097\u00a8\u0006\"\u000535818\u0012\u0011\b)\u0012\u0006\u0010\u00d2\u00ec\u0097\u00a8\u0006\"\u000535819\u0012\u0011\b*\u0012\u0006\u0010\u0090\u00ed\u0097\u00a8\u0006\"\u000549417\u0012\u0011\b+\u0012\u0006\u0010\u00ab\u00ed\u0097\u00a8\u0006\"\u000549420\u0012\u0011\b,\u0012\u0006\u0010\u00da\u00ed\u0097\u00a8\u0006\"\u000549421\u0012\u0011\b-\u0012\u0006\u0010\u00f5\u00ed\u0097\u00a8\u0006\"\u000549422\u0012\u0011\b.\u0012\u0006\u0010\u00a3\u00ee\u0097\u00a8\u0006\"\u000549423\u0012\u0011\b/\u0012\u0006\u0010\u00c2\u00ee\u0097\u00a8\u0006\"\u000549539\u0012\u0011\b0\u0012\u0006\u0010\u00bc\u00ef\u0097\u00a8\u0006\"\u000549424\u0012\u0011\b1\u0012\u0006\u0010\u00ff\u00ef\u0097\u00a8\u0006\"\u000549374\u001a\b\u001a\u0006DBLS32 \u008e\u00e8\u0097\u00a8\u0006\"e\n4\n\u0015db21da87-b-701ff27f-2\u0012\b14:49:00\u001a\b20230916 \u0000*\u00036340\u0000\u0012\u001d\r\u00cbO\u0013\u00c2\u0015;\u0015\u0092\u00c2\u001d\u0000\u0000pB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00ab\u00aa\u0012A(\u008e\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DBLS32" + }, + { + "type": "con_recorrido", + "entity": "\n$2691e208-7676-4ce6-a0e8-1e607fe9bfd7\u001a\u0080\u0005\n4\n\u001545c13cfe-f-701ff27f-2\u0012\b14:50:00\u001a\b20230916 \u0000*\u00036340\u0001\u0012\u0011\b\u0018\u0012\u0006\u0010\u00e6\u00e8\u0097\u00a8\u0006\"\u000537523\u0012\u0011\b\u0019\u0012\u0006\u0010\u008c\u00e9\u0097\u00a8\u0006\"\u000537477\u0012\u0011\b\u001a\u0012\u0006\u0010\u00f0\u00e9\u0097\u00a8\u0006\"\u000549310\u0012\u0011\b\u001b\u0012\u0006\u0010\u0091\u00ea\u0097\u00a8\u0006\"\u000549311\u0012\u0011\b\u001c\u0012\u0006\u0010\u00f8\u00ea\u0097\u00a8\u0006\"\u000535700\u0012\u0011\b\u001d\u0012\u0006\u0010\u0096\u00eb\u0097\u00a8\u0006\"\u000535701\u0012\u0011\b\u001e\u0012\u0006\u0010\u00d8\u00eb\u0097\u00a8\u0006\"\u000535703\u0012\u0011\b\u001f\u0012\u0006\u0010\u00ef\u00eb\u0097\u00a8\u0006\"\u000535704\u0012\u0011\b \u0012\u0006\u0010\u00fa\u00eb\u0097\u00a8\u0006\"\u000535705\u0012\u0011\b!\u0012\u0006\u0010\u0090\u00ec\u0097\u00a8\u0006\"\u000535706\u0012\u0011\b\"\u0012\u0006\u0010\u00df\u00ec\u0097\u00a8\u0006\"\u000549535\u0012\u0011\b#\u0012\u0006\u0010\u0091\u00ed\u0097\u00a8\u0006\"\u000549536\u0012\u0011\b$\u0012\u0006\u0010\u00bf\u00ed\u0097\u00a8\u0006\"\u000549537\u0012\u0011\b%\u0012\u0006\u0010\u00f6\u00ed\u0097\u00a8\u0006\"\u000539492\u0012\u0011\b&\u0012\u0006\u0010\u00c1\u00ee\u0097\u00a8\u0006\"\u000549472\u0012\u0011\b'\u0012\u0006\u0010\u00a0\u00ef\u0097\u00a8\u0006\"\u000549432\u0012\u0011\b(\u0012\u0006\u0010\u00bf\u00ef\u0097\u00a8\u0006\"\u000549386\u0012\u0011\b)\u0012\u0006\u0010\u00eb\u00f0\u0097\u00a8\u0006\"\u000549383\u0012\u0011\b*\u0012\u0006\u0010\u00ce\u00f1\u0097\u00a8\u0006\"\u000549381\u0012\u0011\b+\u0012\u0006\u0010\u0082\u00f3\u0097\u00a8\u0006\"\u000549505\u0012\u0011\b,\u0012\u0006\u0010\u009b\u00f4\u0097\u00a8\u0006\"\u000549475\u0012\u0011\b-\u0012\u0006\u0010\u00f1\u00f4\u0097\u00a8\u0006\"\u000549476\u0012\u0011\b.\u0012\u0006\u0010\u0088\u00f7\u0097\u00a8\u0006\"\u000549478\u0012\u0011\b/\u0012\u0006\u0010\u00b1\u00f7\u0097\u00a8\u0006\"\u000549479\u0012\u0011\b0\u0012\u0006\u0010\u00ef\u00f7\u0097\u00a8\u0006\"\u000549480\u0012\u0011\b1\u0012\u0006\u0010\u00a2\u00f8\u0097\u00a8\u0006\"\u000549482\u0012\u0011\b2\u0012\u0006\u0010\u00d3\u00f8\u0097\u00a8\u0006\"\u000549483\u0012\u0011\b3\u0012\u0006\u0010\u0088\u00f9\u0097\u00a8\u0006\"\u000549484\u0012\u0011\b4\u0012\u0006\u0010\u0092\u00f9\u0097\u00a8\u0006\"\u000549481\u0012\u0011\b5\u0012\u0006\u0010\u00b7\u00f9\u0097\u00a8\u0006\"\u000549485\u001a\b\u001a\u0006GXYY75 \u0094\u00e8\u0097\u00a8\u0006\"e\n4\n\u001545c13cfe-f-701ff27f-2\u0012\b14:50:00\u001a\b20230916 \u0000*\u00036340\u0001\u0012\u001d\r\u001bO\u0013\u00c2\u0015+\u0019\u0092\u00c2\u001d\u0000\u0000nC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0094\u00e8\u0097\u00a8\u0006B\b\u001a\u0006GXYY75" + }, + { + "type": "con_recorrido", + "entity": "\n$7ebd6901-2e49-460f-a9b5-e35937cd8444\u001a\u008a\u0007\n4\n\u0015a380b886-6-701ff27f-2\u0012\b15:21:00\u001a\b20230916 \u0000*\u00036340\u0000\u0012\u0011\b\u0006\u0012\u0006\u0010\u00c5\u00e8\u0097\u00a8\u0006\"\u000549373\u0012\u0011\b\u0007\u0012\u0006\u0010\u0087\u00e9\u0097\u00a8\u0006\"\u000549376\u0012\u0011\b\b\u0012\u0006\u0010\u00df\u00e9\u0097\u00a8\u0006\"\u000549377\u0012\u0011\b\t\u0012\u0006\u0010\u0092\u00ea\u0097\u00a8\u0006\"\u000549520\u0012\u0011\b\n\u0012\u0006\u0010\u00e2\u00ea\u0097\u00a8\u0006\"\u000549379\u0012\u0011\b\u000b\u0012\u0006\u0010\u009c\u00eb\u0097\u00a8\u0006\"\u000549380\u0012\u0011\b\f\u0012\u0006\u0010\u0097\u00ec\u0097\u00a8\u0006\"\u000549382\u0012\u0011\b\r\u0012\u0006\u0010\u0089\u00ed\u0097\u00a8\u0006\"\u000549384\u0012\u0011\b\u000e\u0012\u0006\u0010\u0097\u00ed\u0097\u00a8\u0006\"\u000549385\u0012\u0011\b\u000f\u0012\u0006\u0010\u00a1\u00ee\u0097\u00a8\u0006\"\u000549387\u0012\u0011\b\u0010\u0012\u0006\u0010\u008c\u00ef\u0097\u00a8\u0006\"\u000549388\u0012\u0011\b\u0011\u0012\u0006\u0010\u00b1\u00ef\u0097\u00a8\u0006\"\u000549389\u0012\u0011\b\u0012\u0012\u0006\u0010\u00da\u00ef\u0097\u00a8\u0006\"\u000549390\u0012\u0011\b\u0013\u0012\u0006\u0010\u0091\u00f0\u0097\u00a8\u0006\"\u000549391\u0012\u0011\b\u0014\u0012\u0006\u0010\u00a4\u00f0\u0097\u00a8\u0006\"\u000549392\u0012\u0011\b\u0015\u0012\u0006\u0010\u0088\u00f1\u0097\u00a8\u0006\"\u000549393\u0012\u0011\b\u0016\u0012\u0006\u0010\u00b6\u00f1\u0097\u00a8\u0006\"\u000549394\u0012\u0011\b\u0017\u0012\u0006\u0010\u00e8\u00f1\u0097\u00a8\u0006\"\u000550004\u0012\u0011\b\u0018\u0012\u0006\u0010\u00af\u00f2\u0097\u00a8\u0006\"\u000550030\u0012\u0011\b\u0019\u0012\u0006\u0010\u00e1\u00f2\u0097\u00a8\u0006\"\u00053-Mar\u0012\u0011\b\u001a\u0012\u0006\u0010\u0091\u00f3\u0097\u00a8\u0006\"\u000550031\u0012\u0011\b\u001b\u0012\u0006\u0010\u00aa\u00f3\u0097\u00a8\u0006\"\u000549398\u0012\u0011\b\u001c\u0012\u0006\u0010\u00c2\u00f3\u0097\u00a8\u0006\"\u000550032\u0012\u0011\b\u001d\u0012\u0006\u0010\u00ed\u00f3\u0097\u00a8\u0006\"\u000539495\u0012\u0011\b\u001e\u0012\u0006\u0010\u00c2\u00f4\u0097\u00a8\u0006\"\u000550033\u0012\u0011\b\u001f\u0012\u0006\u0010\u00e7\u00f4\u0097\u00a8\u0006\"\u000539497\u0012\u0011\b \u0012\u0006\u0010\u0089\u00f5\u0097\u00a8\u0006\"\u000549407\u0012\u0011\b!\u0012\u0006\u0010\u00c3\u00f5\u0097\u00a8\u0006\"\u000550034\u0012\u0011\b\"\u0012\u0006\u0010\u00eb\u00f5\u0097\u00a8\u0006\"\u000540903\u0012\u0011\b#\u0012\u0006\u0010\u008d\u00f6\u0097\u00a8\u0006\"\u000540904\u0012\u0011\b$\u0012\u0006\u0010\u00bb\u00f6\u0097\u00a8\u0006\"\u000535814\u0012\u0011\b%\u0012\u0006\u0010\u0080\u00f7\u0097\u00a8\u0006\"\u000535815\u0012\u0011\b&\u0012\u0006\u0010\u00a5\u00f7\u0097\u00a8\u0006\"\u000535816\u0012\u0011\b'\u0012\u0006\u0010\u00b2\u00f7\u0097\u00a8\u0006\"\u000535817\u0012\u0011\b(\u0012\u0006\u0010\u00d6\u00f7\u0097\u00a8\u0006\"\u000535818\u0012\u0011\b)\u0012\u0006\u0010\u00ff\u00f7\u0097\u00a8\u0006\"\u000535819\u0012\u0011\b*\u0012\u0006\u0010\u00c2\u00f8\u0097\u00a8\u0006\"\u000549417\u0012\u0011\b+\u0012\u0006\u0010\u00e0\u00f8\u0097\u00a8\u0006\"\u000549420\u0012\u0011\b,\u0012\u0006\u0010\u0094\u00f9\u0097\u00a8\u0006\"\u000549421\u0012\u0011\b-\u0012\u0006\u0010\u00b2\u00f9\u0097\u00a8\u0006\"\u000549422\u0012\u0011\b.\u0012\u0006\u0010\u00e7\u00f9\u0097\u00a8\u0006\"\u000549423\u0012\u0011\b/\u0012\u0006\u0010\u008a\u00fa\u0097\u00a8\u0006\"\u000549539\u0012\u0011\b0\u0012\u0006\u0010\u0098\u00fb\u0097\u00a8\u0006\"\u000549424\u0012\u0011\b1\u0012\u0006\u0010\u00e8\u00fb\u0097\u00a8\u0006\"\u000549374\u001a\b\u001a\u0006HVLT12 \u00ae\u00e8\u0097\u00a8\u0006\"e\n4\n\u0015a380b886-6-701ff27f-2\u0012\b15:21:00\u001a\b20230916 \u0000*\u00036340\u0000\u0012\u001d\r\u0002;\u0013\u00c2\u0015\u00ba'\u0092\u00c2\u001d\u0000\u0000PB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ae\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HVLT12" + }, + { + "type": "con_recorrido", + "entity": "\n$4708858d-32c8-452d-ab08-8c441cf849b3\u001a\u00f7\u0006\n4\n\u00154c7e6b56-9-701ff27f-2\u0012\b15:14:00\u001a\b20230916 \u0000*\u00036340\u0001\u0012\u0011\b\u000b\u0012\u0006\u0010\u00c1\u00e8\u0097\u00a8\u0006\"\u000535820\u0012\u0011\b\f\u0012\u0006\u0010\u00df\u00e8\u0097\u00a8\u0006\"\u000535729\u0012\u0011\b\r\u0012\u0006\u0010\u00f9\u00e8\u0097\u00a8\u0006\"\u000535730\u0012\u0011\b\u000e\u0012\u0006\u0010\u009a\u00e9\u0097\u00a8\u0006\"\u000535731\u0012\u0011\b\u000f\u0012\u0006\u0010\u00dd\u00e9\u0097\u00a8\u0006\"\u000535201\u0012\u0011\b\u0010\u0012\u0006\u0010\u00b3\u00ea\u0097\u00a8\u0006\"\u000535202\u0012\u0011\b\u0011\u0012\u0006\u0010\u00a0\u00eb\u0097\u00a8\u0006\"\u000590001\u0012\u0011\b\u0012\u0012\u0006\u0010\u00f8\u00eb\u0097\u00a8\u0006\"\u000539599\u0012\u0011\b\u0013\u0012\u0006\u0010\u0086\u00ec\u0097\u00a8\u0006\"\u000539600\u0012\u0011\b\u0014\u0012\u0006\u0010\u00d0\u00ec\u0097\u00a8\u0006\"\u000537496\u0012\u0011\b\u0015\u0012\u0006\u0010\u0083\u00ed\u0097\u00a8\u0006\"\u000545064\u0012\u0011\b\u0016\u0012\u0006\u0010\u00cb\u00ed\u0097\u00a8\u0006\"\u000537506\u0012\u0011\b\u0017\u0012\u0006\u0010\u00a3\u00ee\u0097\u00a8\u0006\"\u000537520\u0012\u0011\b\u0018\u0012\u0006\u0010\u00fd\u00ee\u0097\u00a8\u0006\"\u000537523\u0012\u0011\b\u0019\u0012\u0006\u0010\u00a0\u00ef\u0097\u00a8\u0006\"\u000537477\u0012\u0011\b\u001a\u0012\u0006\u0010\u00fd\u00ef\u0097\u00a8\u0006\"\u000549310\u0012\u0011\b\u001b\u0012\u0006\u0010\u009c\u00f0\u0097\u00a8\u0006\"\u000549311\u0012\u0011\b\u001c\u0012\u0006\u0010\u00fe\u00f0\u0097\u00a8\u0006\"\u000535700\u0012\u0011\b\u001d\u0012\u0006\u0010\u009b\u00f1\u0097\u00a8\u0006\"\u000535701\u0012\u0011\b\u001e\u0012\u0006\u0010\u00da\u00f1\u0097\u00a8\u0006\"\u000535703\u0012\u0011\b\u001f\u0012\u0006\u0010\u00f1\u00f1\u0097\u00a8\u0006\"\u000535704\u0012\u0011\b \u0012\u0006\u0010\u00fb\u00f1\u0097\u00a8\u0006\"\u000535705\u0012\u0011\b!\u0012\u0006\u0010\u0091\u00f2\u0097\u00a8\u0006\"\u000535706\u0012\u0011\b\"\u0012\u0006\u0010\u00df\u00f2\u0097\u00a8\u0006\"\u000549535\u0012\u0011\b#\u0012\u0006\u0010\u0090\u00f3\u0097\u00a8\u0006\"\u000549536\u0012\u0011\b$\u0012\u0006\u0010\u00bf\u00f3\u0097\u00a8\u0006\"\u000549537\u0012\u0011\b%\u0012\u0006\u0010\u00f6\u00f3\u0097\u00a8\u0006\"\u000539492\u0012\u0011\b&\u0012\u0006\u0010\u00c3\u00f4\u0097\u00a8\u0006\"\u000549472\u0012\u0011\b'\u0012\u0006\u0010\u00a5\u00f5\u0097\u00a8\u0006\"\u000549432\u0012\u0011\b(\u0012\u0006\u0010\u00c5\u00f5\u0097\u00a8\u0006\"\u000549386\u0012\u0011\b)\u0012\u0006\u0010\u00fb\u00f6\u0097\u00a8\u0006\"\u000549383\u0012\u0011\b*\u0012\u0006\u0010\u00e5\u00f7\u0097\u00a8\u0006\"\u000549381\u0012\u0011\b+\u0012\u0006\u0010\u00ab\u00f9\u0097\u00a8\u0006\"\u000549505\u0012\u0011\b,\u0012\u0006\u0010\u00d7\u00fa\u0097\u00a8\u0006\"\u000549475\u0012\u0011\b-\u0012\u0006\u0010\u00b9\u00fb\u0097\u00a8\u0006\"\u000549476\u0012\u0011\b.\u0012\u0006\u0010\u0081\u00fe\u0097\u00a8\u0006\"\u000549478\u0012\u0011\b/\u0012\u0006\u0010\u00b1\u00fe\u0097\u00a8\u0006\"\u000549479\u0012\u0011\b0\u0012\u0006\u0010\u00fc\u00fe\u0097\u00a8\u0006\"\u000549480\u0012\u0011\b1\u0012\u0006\u0010\u00ba\u00ff\u0097\u00a8\u0006\"\u000549482\u0012\u0011\b2\u0012\u0006\u0010\u00f5\u00ff\u0097\u00a8\u0006\"\u000549483\u0012\u0011\b3\u0012\u0006\u0010\u00b7\u0080\u0098\u00a8\u0006\"\u000549484\u0012\u0011\b4\u0012\u0006\u0010\u00c3\u0080\u0098\u00a8\u0006\"\u000549481\u0012\u0011\b5\u0012\u0006\u0010\u00f1\u0080\u0098\u00a8\u0006\"\u000549485\u001a\b\u001a\u0006JPRY91 \u00ba\u00e8\u0097\u00a8\u0006\"e\n4\n\u00154c7e6b56-9-701ff27f-2\u0012\b15:14:00\u001a\b20230916 \u0000*\u00036340\u0001\u0012\u001d\r3H\u0013\u00c2\u0015\u001f\t\u0092\u00c2\u001d\u0000\u0000\u00a0A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ba\u00e8\u0097\u00a8\u0006B\b\u001a\u0006JPRY91" + }, + { + "type": "con_recorrido", + "entity": "\n$b71b6505-ef1c-4c0f-913d-ff49eb24bff7\u001a\u00ed\u0004\n4\n\u0015c83efe61-5-701ff27f-2\u0012\b15:05:00\u001a\b20230916 \u0000*\u00036340\u0000\u0012\u0011\b\u0015\u0012\u0006\u0010\u00bd\u00e8\u0097\u00a8\u0006\"\u000549393\u0012\u0011\b\u0016\u0012\u0006\u0010\u00ef\u00e8\u0097\u00a8\u0006\"\u000549394\u0012\u0011\b\u0017\u0012\u0006\u0010\u00a5\u00e9\u0097\u00a8\u0006\"\u000550004\u0012\u0011\b\u0018\u0012\u0006\u0010\u00f1\u00e9\u0097\u00a8\u0006\"\u000550030\u0012\u0011\b\u0019\u0012\u0006\u0010\u00a6\u00ea\u0097\u00a8\u0006\"\u00053-Mar\u0012\u0011\b\u001a\u0012\u0006\u0010\u00d8\u00ea\u0097\u00a8\u0006\"\u000550031\u0012\u0011\b\u001b\u0012\u0006\u0010\u00f2\u00ea\u0097\u00a8\u0006\"\u000549398\u0012\u0011\b\u001c\u0012\u0006\u0010\u008b\u00eb\u0097\u00a8\u0006\"\u000550032\u0012\u0011\b\u001d\u0012\u0006\u0010\u00b7\u00eb\u0097\u00a8\u0006\"\u000539495\u0012\u0011\b\u001e\u0012\u0006\u0010\u008d\u00ec\u0097\u00a8\u0006\"\u000550033\u0012\u0011\b\u001f\u0012\u0006\u0010\u00b1\u00ec\u0097\u00a8\u0006\"\u000539497\u0012\u0011\b \u0012\u0006\u0010\u00d3\u00ec\u0097\u00a8\u0006\"\u000549407\u0012\u0011\b!\u0012\u0006\u0010\u008c\u00ed\u0097\u00a8\u0006\"\u000550034\u0012\u0011\b\"\u0012\u0006\u0010\u00b2\u00ed\u0097\u00a8\u0006\"\u000540903\u0012\u0011\b#\u0012\u0006\u0010\u00d3\u00ed\u0097\u00a8\u0006\"\u000540904\u0012\u0011\b$\u0012\u0006\u0010\u00ff\u00ed\u0097\u00a8\u0006\"\u000535814\u0012\u0011\b%\u0012\u0006\u0010\u00c0\u00ee\u0097\u00a8\u0006\"\u000535815\u0012\u0011\b&\u0012\u0006\u0010\u00e2\u00ee\u0097\u00a8\u0006\"\u000535816\u0012\u0011\b'\u0012\u0006\u0010\u00ee\u00ee\u0097\u00a8\u0006\"\u000535817\u0012\u0011\b(\u0012\u0006\u0010\u0090\u00ef\u0097\u00a8\u0006\"\u000535818\u0012\u0011\b)\u0012\u0006\u0010\u00b5\u00ef\u0097\u00a8\u0006\"\u000535819\u0012\u0011\b*\u0012\u0006\u0010\u00f2\u00ef\u0097\u00a8\u0006\"\u000549417\u0012\u0011\b+\u0012\u0006\u0010\u008d\u00f0\u0097\u00a8\u0006\"\u000549420\u0012\u0011\b,\u0012\u0006\u0010\u00bb\u00f0\u0097\u00a8\u0006\"\u000549421\u0012\u0011\b-\u0012\u0006\u0010\u00d6\u00f0\u0097\u00a8\u0006\"\u000549422\u0012\u0011\b.\u0012\u0006\u0010\u0084\u00f1\u0097\u00a8\u0006\"\u000549423\u0012\u0011\b/\u0012\u0006\u0010\u00a3\u00f1\u0097\u00a8\u0006\"\u000549539\u0012\u0011\b0\u0012\u0006\u0010\u009d\u00f2\u0097\u00a8\u0006\"\u000549424\u0012\u0011\b1\u0012\u0006\u0010\u00e0\u00f2\u0097\u00a8\u0006\"\u000549374\u001a\b\u001a\u0006SVPZ92 \u00a2\u00e8\u0097\u00a8\u0006\"e\n4\n\u0015c83efe61-5-701ff27f-2\u0012\b15:05:00\u001a\b20230916 \u0000*\u00036340\u0000\u0012\u001d\r\u00ebK\u0013\u00c2\u0015\u00e0\u001b\u0092\u00c2\u001d\u0000\u0000\u001aC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a2\u00e8\u0097\u00a8\u0006B\b\u001a\u0006SVPZ92" + }, + { + "type": "con_recorrido", + "entity": "\n$fdab2b7c-7c45-48ab-96bf-13f20fcaf40c\u001a\u00a1\u0004\n4\n\u001509f9f4d9-a-701ff27f-2\u0012\b15:33:00\u001a\b20230916 \u0000*\u00036360\u0001\u0012\u0011\b\u0004\u0012\u0006\u0010\u00ee\u00e8\u0097\u00a8\u0006\"\u000540989\u0012\u0011\b\u0005\u0012\u0006\u0010\u00c6\u00e9\u0097\u00a8\u0006\"\u000540985\u0012\u0011\b\u0006\u0012\u0006\u0010\u00f1\u00e9\u0097\u00a8\u0006\"\u000540973\u0012\u0011\b\u0007\u0012\u0006\u0010\u008c\u00ea\u0097\u00a8\u0006\"\u000540983\u0012\u0011\b\b\u0012\u0006\u0010\u00b7\u00ea\u0097\u00a8\u0006\"\u000540984\u0012\u0011\b\t\u0012\u0006\u0010\u0088\u00eb\u0097\u00a8\u0006\"\u000540990\u0012\u0011\b\n\u0012\u0006\u0010\u00c6\u00eb\u0097\u00a8\u0006\"\u000540991\u0012\u0011\b\u000b\u0012\u0006\u0010\u00da\u00ed\u0097\u00a8\u0006\"\u000540974\u0012\u0011\b\f\u0012\u0006\u0010\u00a6\u00f2\u0097\u00a8\u0006\"\u000540995\u0012\u0011\b\r\u0012\u0006\u0010\u00f6\u00f2\u0097\u00a8\u0006\"\u000540996\u0012\u0011\b\u000e\u0012\u0006\u0010\u00c1\u00f3\u0097\u00a8\u0006\"\u000540997\u0012\u0011\b\u000f\u0012\u0006\u0010\u00f7\u00f3\u0097\u00a8\u0006\"\u000539614\u0012\u0011\b\u0010\u0012\u0006\u0010\u00a9\u00f4\u0097\u00a8\u0006\"\u000539615\u0012\u0011\b\u0011\u0012\u0006\u0010\u00dc\u00f4\u0097\u00a8\u0006\"\u000539616\u0012\u0011\b\u0012\u0012\u0006\u0010\u0091\u00f5\u0097\u00a8\u0006\"\u000539617\u0012\u0011\b\u0013\u0012\u0006\u0010\u00cc\u00f5\u0097\u00a8\u0006\"\u000539618\u0012\u0011\b\u0014\u0012\u0006\u0010\u00f8\u00f5\u0097\u00a8\u0006\"\u000539619\u0012\u0011\b\u0015\u0012\u0006\u0010\u00a3\u00f6\u0097\u00a8\u0006\"\u000539620\u0012\u0011\b\u0016\u0012\u0006\u0010\u00eb\u00f6\u0097\u00a8\u0006\"\u000539621\u0012\u0011\b\u0017\u0012\u0006\u0010\u009d\u00f7\u0097\u00a8\u0006\"\u000538281\u0012\u0011\b\u0018\u0012\u0006\u0010\u00d7\u00f7\u0097\u00a8\u0006\"\u000537506\u0012\u0011\b\u0019\u0012\u0006\u0010\u00a4\u00f8\u0097\u00a8\u0006\"\u000545069\u0012\u0011\b\u001a\u0012\u0006\u0010\u009b\u00f9\u0097\u00a8\u0006\"\u000537523\u0012\u0011\b\u001b\u0012\u0006\u0010\u00cd\u00f9\u0097\u00a8\u0006\"\u000537477\u0012\u0011\b\u001c\u0012\u0006\u0010\u0092\u00fa\u0097\u00a8\u0006\"\u000540848\u001a\b\u001a\u0006PZLF28 \u00b5\u00e8\u0097\u00a8\u0006\"e\n4\n\u001509f9f4d9-a-701ff27f-2\u0012\b15:33:00\u001a\b20230916 \u0000*\u00036360\u0001\u0012\u001d\r\u0016\u0014\u0013\u00c2\u0015s%\u0092\u00c2\u001d\u0000\u0080\u008aC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008f\u00e3\u00a8@(\u00b5\u00e8\u0097\u00a8\u0006B\b\u001a\u0006PZLF28" + }, + { + "type": "con_recorrido", + "entity": "\n$726f1e30-7ef7-429e-bf06-1f1f3ae5661b\u001a\u00e5\t\n4\n\u0015a966cd42-9-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00037250\u0000\u0012\u0011\b\u001f\u0012\u0006\u0010\u00a7\u00e8\u0097\u00a8\u0006\"\u000539634\u0012\u0011\b \u0012\u0006\u0010\u00bf\u00e8\u0097\u00a8\u0006\"\u000539635\u0012\u0011\b!\u0012\u0006\u0010\u00f4\u00e8\u0097\u00a8\u0006\"\u000539636\u0012\u0011\b\"\u0012\u0006\u0010\u00ac\u00e9\u0097\u00a8\u0006\"\u000549503\u0012\u0011\b#\u0012\u0006\u0010\u00ab\u00ea\u0097\u00a8\u0006\"\u000539637\u0012\u0011\b$\u0012\u0006\u0010\u00e0\u00ea\u0097\u00a8\u0006\"\u000549317\u0012\u0011\b%\u0012\u0006\u0010\u0080\u00eb\u0097\u00a8\u0006\"\u000549318\u0012\u0011\b&\u0012\u0006\u0010\u00c5\u00eb\u0097\u00a8\u0006\"\u000549319\u0012\u0011\b'\u0012\u0006\u0010\u0084\u00ec\u0097\u00a8\u0006\"\u000539641\u0012\u0011\b(\u0012\u0006\u0010\u00bb\u00ee\u0097\u00a8\u0006\"\u000549325\u0012\u0011\b)\u0012\u0006\u0010\u00f3\u00ee\u0097\u00a8\u0006\"\u000549326\u0012\u0011\b*\u0012\u0006\u0010\u008a\u00ef\u0097\u00a8\u0006\"\u000539648\u0012\u0011\b+\u0012\u0006\u0010\u00bc\u00ef\u0097\u00a8\u0006\"\u000539649\u0012\u0011\b,\u0012\u0006\u0010\u00df\u00ef\u0097\u00a8\u0006\"\u000545112\u0012\u0011\b-\u0012\u0006\u0010\u0091\u00f0\u0097\u00a8\u0006\"\u000545113\u0012\u0011\b.\u0012\u0006\u0010\u00d6\u00f0\u0097\u00a8\u0006\"\u000537490\u0012\u0011\b/\u0012\u0006\u0010\u0093\u00f1\u0097\u00a8\u0006\"\u000545115\u0012\u0011\b0\u0012\u0006\u0010\u00ab\u00f1\u0097\u00a8\u0006\"\u000545116\u0012\u0011\b1\u0012\u0006\u0010\u00f0\u00f1\u0097\u00a8\u0006\"\u000545118\u0012\u0011\b2\u0012\u0006\u0010\u00b9\u00f2\u0097\u00a8\u0006\"\u000545119\u0012\u0011\b3\u0012\u0006\u0010\u00e4\u00f2\u0097\u00a8\u0006\"\u000545120\u0012\u0011\b4\u0012\u0006\u0010\u009b\u00f3\u0097\u00a8\u0006\"\u000545121\u0012\u0011\b5\u0012\u0006\u0010\u00c4\u00f3\u0097\u00a8\u0006\"\u000538535\u0012\u0011\b6\u0012\u0006\u0010\u0090\u00f4\u0097\u00a8\u0006\"\u000538536\u0012\u0013\b7\u0012\u0006\u0010\u00ab\u00f4\u0097\u00a8\u0006\"\u00074838437\u0012\u0011\b8\u0012\u0006\u0010\u00e8\u00f4\u0097\u00a8\u0006\"\u000545085\u0012\u0011\b9\u0012\u0006\u0010\u00b5\u00f5\u0097\u00a8\u0006\"\u000545086\u0012\u0011\b:\u0012\u0006\u0010\u00ec\u00f5\u0097\u00a8\u0006\"\u000538539\u0012\u0011\b;\u0012\u0006\u0010\u00b1\u00f6\u0097\u00a8\u0006\"\u000538540\u0012\u0011\b<\u0012\u0006\u0010\u00fb\u00f6\u0097\u00a8\u0006\"\u000538544\u0012\u0011\b=\u0012\u0006\u0010\u00c2\u00f7\u0097\u00a8\u0006\"\u000538545\u0012\u0011\b>\u0012\u0006\u0010\u00a9\u00f8\u0097\u00a8\u0006\"\u000538546\u0012\u0011\b?\u0012\u0006\u0010\u00ad\u00f9\u0097\u00a8\u0006\"\u000538548\u0012\u0011\b@\u0012\u0006\u0010\u00f6\u00f9\u0097\u00a8\u0006\"\u000538549\u0012\u0011\bA\u0012\u0006\u0010\u00b8\u00fa\u0097\u00a8\u0006\"\u000538550\u0012\u0011\bB\u0012\u0006\u0010\u00a6\u00fb\u0097\u00a8\u0006\"\u000538551\u0012\u0011\bC\u0012\u0006\u0010\u008a\u00fc\u0097\u00a8\u0006\"\u000538552\u0012\u0011\bD\u0012\u0006\u0010\u00ea\u00fc\u0097\u00a8\u0006\"\u000549359\u0012\u0011\bE\u0012\u0006\u0010\u00a9\u00fd\u0097\u00a8\u0006\"\u000549360\u0012\u0011\bF\u0012\u0006\u0010\u00b4\u00fe\u0097\u00a8\u0006\"\u000549361\u0012\u0011\bG\u0012\u0006\u0010\u00ce\u00fe\u0097\u00a8\u0006\"\u000549362\u0012\u0011\bH\u0012\u0006\u0010\u0094\u00ff\u0097\u00a8\u0006\"\u000549363\u0012\u0011\bI\u0012\u0006\u0010\u00d4\u00ff\u0097\u00a8\u0006\"\u000549364\u0012\u0011\bJ\u0012\u0006\u0010\u0085\u0080\u0098\u00a8\u0006\"\u000549365\u0012\u0011\bK\u0012\u0006\u0010\u00e0\u0080\u0098\u00a8\u0006\"\u000538560\u0012\u0011\bL\u0012\u0006\u0010\u0094\u0081\u0098\u00a8\u0006\"\u000542857\u0012\u0011\bM\u0012\u0006\u0010\u00ba\u0081\u0098\u00a8\u0006\"\u000538562\u0012\u0011\bN\u0012\u0006\u0010\u00c1\u0082\u0098\u00a8\u0006\"\u000540539\u0012\u0011\bO\u0012\u0006\u0010\u0084\u0083\u0098\u00a8\u0006\"\u000540540\u0012\u0011\bP\u0012\u0006\u0010\u00bc\u0083\u0098\u00a8\u0006\"\u000540541\u0012\u0011\bQ\u0012\u0006\u0010\u00f7\u0084\u0098\u00a8\u0006\"\u000540543\u0012\u0011\bR\u0012\u0006\u0010\u008d\u0085\u0098\u00a8\u0006\"\u000541943\u0012\u0011\bS\u0012\u0006\u0010\u00a4\u0086\u0098\u00a8\u0006\"\u000540544\u0012\u0014\bT\u0012\u0006\u0010\u00c2\u0086\u0098\u00a8\u0006\"\b16705477\u0012\u0011\bU\u0012\u0006\u0010\u008f\u0087\u0098\u00a8\u0006\"\u000540545\u0012\u0011\bV\u0012\u0006\u0010\u00e7\u0087\u0098\u00a8\u0006\"\u000540546\u0012\u0011\bW\u0012\u0006\u0010\u009d\u0088\u0098\u00a8\u0006\"\u000540547\u0012\u0011\bX\u0012\u0006\u0010\u00f4\u0088\u0098\u00a8\u0006\"\u000540548\u0012\u0011\bY\u0012\u0006\u0010\u00fa\u008b\u0098\u00a8\u0006\"\u000540590\u0012\u0011\bZ\u0012\u0006\u0010\u00ed\u008c\u0098\u00a8\u0006\"\u000540591\u0012\u0011\b[\u0012\u0006\u0010\u00a9\u008e\u0098\u00a8\u0006\"\u000540592\u0012\u0011\b\\\u0012\u0006\u0010\u0080\u0091\u0098\u00a8\u0006\"\u000541947\u001a\b\u001a\u0006DRZG36 \u0090\u00e8\u0097\u00a8\u0006\"e\n4\n\u0015a966cd42-9-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00037250\u0000\u0012\u001d\r\u00eaN\u0013\u00c2\u0015\u00ff\u001e\u0092\u00c2\u001d\u0000\u0000\u00a5C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0090\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DRZG36" + }, + { + "type": "con_recorrido", + "entity": "\n$db34b698-d115-4177-a222-aade17763b7a\u001a\u008c\u000e\n4\n\u00159994fa86-6-701ff27f-2\u0012\b15:36:00\u001a\b20230916 \u0000*\u00037250\u0000\u0012\u0011\b\u0002\u0012\u0006\u0010\u0093\u00ef\u0097\u00a8\u0006\"\u000538817\u0012\u0011\b\u0003\u0012\u0006\u0010\u00c2\u00ef\u0097\u00a8\u0006\"\u000538825\u0012\u0011\b\u0004\u0012\u0006\u0010\u00f8\u00ef\u0097\u00a8\u0006\"\u000538826\u0012\u0011\b\u0005\u0012\u0006\u0010\u0087\u00f0\u0097\u00a8\u0006\"\u000538827\u0012\u0011\b\u0006\u0012\u0006\u0010\u0091\u00f0\u0097\u00a8\u0006\"\u000538828\u0012\u0011\b\u0007\u0012\u0006\u0010\u00aa\u00f0\u0097\u00a8\u0006\"\u000538829\u0012\u0011\b\b\u0012\u0006\u0010\u00c9\u00f0\u0097\u00a8\u0006\"\u000538830\u0012\u0011\b\t\u0012\u0006\u0010\u0083\u00f1\u0097\u00a8\u0006\"\u000538831\u0012\u0011\b\n\u0012\u0006\u0010\u008d\u00f2\u0097\u00a8\u0006\"\u000538832\u0012\u0011\b\u000b\u0012\u0006\u0010\u00af\u00f2\u0097\u00a8\u0006\"\u000538833\u0012\u0011\b\f\u0012\u0006\u0010\u00d0\u00f2\u0097\u00a8\u0006\"\u000538834\u0012\u0011\b\r\u0012\u0006\u0010\u00ff\u00f2\u0097\u00a8\u0006\"\u000535726\u0012\u0011\b\u000e\u0012\u0006\u0010\u008c\u00f4\u0097\u00a8\u0006\"\u000535820\u0012\u0011\b\u000f\u0012\u0006\u0010\u00ae\u00f4\u0097\u00a8\u0006\"\u000535729\u0012\u0011\b\u0010\u0012\u0006\u0010\u00c5\u00f4\u0097\u00a8\u0006\"\u000535730\u0012\u0011\b\u0011\u0012\u0006\u0010\u00ee\u00f4\u0097\u00a8\u0006\"\u000535731\u0012\u0011\b\u0012\u0012\u0006\u0010\u00a6\u00f5\u0097\u00a8\u0006\"\u000535201\u0012\u0011\b\u0013\u0012\u0006\u0010\u0080\u00f6\u0097\u00a8\u0006\"\u000535202\u0012\u0011\b\u0014\u0012\u0006\u0010\u00f0\u00f6\u0097\u00a8\u0006\"\u000590001\u0012\u0011\b\u0015\u0012\u0006\u0010\u00cc\u00f7\u0097\u00a8\u0006\"\u000539599\u0012\u0011\b\u0016\u0012\u0006\u0010\u00e4\u00f7\u0097\u00a8\u0006\"\u000539600\u0012\u0011\b\u0017\u0012\u0006\u0010\u00aa\u00f8\u0097\u00a8\u0006\"\u000537496\u0012\u0011\b\u0018\u0012\u0006\u0010\u00df\u00f8\u0097\u00a8\u0006\"\u000545064\u0012\u0011\b\u0019\u0012\u0006\u0010\u00b0\u00f9\u0097\u00a8\u0006\"\u000537506\u0012\u0011\b\u001a\u0012\u0006\u0010\u0080\u00fa\u0097\u00a8\u0006\"\u000545069\u0012\u0011\b\u001b\u0012\u0006\u0010\u00fc\u00fa\u0097\u00a8\u0006\"\u000537523\u0012\u0011\b\u001c\u0012\u0006\u0010\u00b0\u00fb\u0097\u00a8\u0006\"\u000537477\u0012\u0011\b\u001d\u0012\u0006\u0010\u008d\u00fc\u0097\u00a8\u0006\"\u000549310\u0012\u0011\b\u001e\u0012\u0006\u0010\u00ba\u00fc\u0097\u00a8\u0006\"\u000549311\u0012\u0011\b\u001f\u0012\u0006\u0010\u00fe\u00fc\u0097\u00a8\u0006\"\u000539634\u0012\u0011\b \u0012\u0006\u0010\u0098\u00fd\u0097\u00a8\u0006\"\u000539635\u0012\u0011\b!\u0012\u0006\u0010\u00d5\u00fd\u0097\u00a8\u0006\"\u000539636\u0012\u0011\b\"\u0012\u0006\u0010\u0098\u00fe\u0097\u00a8\u0006\"\u000549503\u0012\u0011\b#\u0012\u0006\u0010\u00b5\u00ff\u0097\u00a8\u0006\"\u000539637\u0012\u0011\b$\u0012\u0006\u0010\u00fa\u00ff\u0097\u00a8\u0006\"\u000549317\u0012\u0011\b%\u0012\u0006\u0010\u00a4\u0080\u0098\u00a8\u0006\"\u000549318\u0012\u0011\b&\u0012\u0006\u0010\u0081\u0081\u0098\u00a8\u0006\"\u000549319\u0012\u0011\b'\u0012\u0006\u0010\u00d9\u0081\u0098\u00a8\u0006\"\u000539641\u0012\u0011\b(\u0012\u0006\u0010\u00b3\u0085\u0098\u00a8\u0006\"\u000549325\u0012\u0011\b)\u0012\u0006\u0010\u0090\u0086\u0098\u00a8\u0006\"\u000549326\u0012\u0011\b*\u0012\u0006\u0010\u00b6\u0086\u0098\u00a8\u0006\"\u000539648\u0012\u0011\b+\u0012\u0006\u0010\u008d\u0087\u0098\u00a8\u0006\"\u000539649\u0012\u0011\b,\u0012\u0006\u0010\u00cb\u0087\u0098\u00a8\u0006\"\u000545112\u0012\u0011\b-\u0012\u0006\u0010\u00a5\u0088\u0098\u00a8\u0006\"\u000545113\u0012\u0011\b.\u0012\u0006\u0010\u00a4\u0089\u0098\u00a8\u0006\"\u000537490\u0012\u0011\b/\u0012\u0006\u0010\u009a\u008a\u0098\u00a8\u0006\"\u000545115\u0012\u0011\b0\u0012\u0006\u0010\u00c8\u008a\u0098\u00a8\u0006\"\u000545116\u0012\u0011\b1\u0012\u0006\u0010\u00d1\u008b\u0098\u00a8\u0006\"\u000545118\u0012\u0011\b2\u0012\u0006\u0010\u00e8\u008c\u0098\u00a8\u0006\"\u000545119\u0012\u0011\b3\u0012\u0006\u0010\u00c5\u008d\u0098\u00a8\u0006\"\u000545120\u0012\u0011\b4\u0012\u0006\u0010\u00bb\u008e\u0098\u00a8\u0006\"\u000545121\u0012\u0011\b5\u0012\u0006\u0010\u0097\u008f\u0098\u00a8\u0006\"\u000538535\u0012\u0011\b6\u0012\u0006\u0010\u00c5\u0090\u0098\u00a8\u0006\"\u000538536\u0012\u0013\b7\u0012\u0006\u0010\u0087\u0091\u0098\u00a8\u0006\"\u00074838437\u0012\u0011\b8\u0012\u0006\u0010\u0098\u0092\u0098\u00a8\u0006\"\u000545085\u0012\u0011\b9\u0012\u0006\u0010\u00da\u0093\u0098\u00a8\u0006\"\u000545086\u0012\u0011\b:\u0012\u0006\u0010\u00e6\u0094\u0098\u00a8\u0006\"\u000538539\u0012\u0011\b;\u0012\u0006\u0010\u009d\u0096\u0098\u00a8\u0006\"\u000538540\u0012\u0011\b<\u0012\u0006\u0010\u00ec\u0097\u0098\u00a8\u0006\"\u000538544\u0012\u0011\b=\u0012\u0006\u0010\u00b5\u0099\u0098\u00a8\u0006\"\u000538545\u0012\u0011\b>\u0012\u0006\u0010\u00ec\u009b\u0098\u00a8\u0006\"\u000538546\u0012\u0011\b?\u0012\u0006\u0010\u008f\u009f\u0098\u00a8\u0006\"\u000538548\u0012\u0011\b@\u0012\u0006\u0010\u0084\u00a1\u0098\u00a8\u0006\"\u000538549\u0012\u0011\bA\u0012\u0006\u0010\u00eb\u00a2\u0098\u00a8\u0006\"\u000538550\u0012\u0011\bB\u0012\u0006\u0010\u00fe\u00a5\u0098\u00a8\u0006\"\u000538551\u0012\u0011\bC\u0012\u0006\u0010\u0081\u00a9\u0098\u00a8\u0006\"\u000538552\u0012\u0011\bD\u0012\u0006\u0010\u008a\u00ac\u0098\u00a8\u0006\"\u000549359\u0012\u0011\bE\u0012\u0006\u0010\u0099\u00ae\u0098\u00a8\u0006\"\u000549360\u0012\u0011\bF\u0012\u0006\u0010\u0092\u00b3\u0098\u00a8\u0006\"\u000549361\u0012\u0011\bG\u0012\u0006\u0010\u008e\u00b4\u0098\u00a8\u0006\"\u000549362\u0012\u0011\bH\u0012\u0006\u0010\u00e3\u00b6\u0098\u00a8\u0006\"\u000549363\u0012\u0011\bI\u0012\u0006\u0010\u00a9\u00b9\u0098\u00a8\u0006\"\u000549364\u0012\u0011\bJ\u0012\u0006\u0010\u00aa\u00bb\u0098\u00a8\u0006\"\u000549365\u0012\u0011\bK\u0012\u0006\u0010\u00a5\u00bf\u0098\u00a8\u0006\"\u000538560\u0012\u0011\bL\u0012\u0006\u0010\u00cf\u00c1\u0098\u00a8\u0006\"\u000542857\u0012\u0011\bM\u0012\u0006\u0010\u00b4\u00c3\u0098\u00a8\u0006\"\u000538562\u0012\u0011\bN\u0012\u0006\u0010\u0085\u00ca\u0098\u00a8\u0006\"\u000540539\u0012\u0011\bO\u0012\u0006\u0010\u00c6\u00cd\u0098\u00a8\u0006\"\u000540540\u0012\u0011\bP\u0012\u0006\u0010\u00cf\u00d0\u0098\u00a8\u0006\"\u000540541\u0012\u0011\bQ\u0012\u0006\u0010\u00ea\u00db\u0098\u00a8\u0006\"\u000540543\u0012\u0011\bR\u0012\u0006\u0010\u00a1\u00dd\u0098\u00a8\u0006\"\u000541943\u0012\u0011\bS\u0012\u0006\u0010\u00d8\u00e7\u0098\u00a8\u0006\"\u000540544\u0012\u0014\bT\u0012\u0006\u0010\u00f0\u00e9\u0098\u00a8\u0006\"\b16705477\u0012\u0011\bU\u0012\u0006\u0010\u00ef\u00ef\u0098\u00a8\u0006\"\u000540545\u0012\u0011\bV\u0012\u0006\u0010\u0094\u00f7\u0098\u00a8\u0006\"\u000540546\u0012\u0011\bW\u0012\u0006\u0010\u00e9\u00fb\u0098\u00a8\u0006\"\u000540547\u0012\u0011\bX\u0012\u0006\u0010\u0083\u0084\u0099\u00a8\u0006\"\u000540548\u0012\u0011\bY\u0012\u0006\u0010\u00f2\u00b1\u0099\u00a8\u0006\"\u000540590\u0012\u0011\bZ\u0012\u0006\u0010\u00c0\u00c3\u0099\u00a8\u0006\"\u000540591\u0012\u0011\b[\u0012\u0006\u0010\u00cf\u00e5\u0099\u00a8\u0006\"\u000540592\u0012\u0011\b\\\u0012\u0006\u0010\u00f9\u00bf\u009a\u00a8\u0006\"\u000541947\u001a\b\u001a\u0006DRZG45 \u00b6\u00e8\u0097\u00a8\u0006\"e\n4\n\u00159994fa86-6-701ff27f-2\u0012\b15:36:00\u001a\b20230916 \u0000*\u00037250\u0000\u0012\u001d\r\u00923\u0013\u00c2\u0015+\u00eb\u0091\u00c2\u001d\u0000\u0000LC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b6\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DRZG45" + }, + { + "type": "sin_recorrido", + "entity": "\n$9a5b8f2e-3f5c-4ba7-b1ac-a07eb49d142f\"e\n4\n\u001584c3b11a-5-701ff27f-2\u0012\b14:00:00\u001a\b20230916 \u0000*\u00037250\u0000\u0012\u001d\r\u00cb\u00d7\u0012\u00c2\u0015aK\u0092\u00c2\u001d\u0000\u0000LC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u001c\u00c71@(\u008c\u00e4\u0097\u00a8\u0006B\b\u001a\u0006DVWY24" + }, + { + "type": "con_recorrido", + "entity": "\n$2bf60d47-6900-4dbc-8f96-05ff79f566ae\u001a\u00b5\u0007\n4\n\u0015ae8c2cde-a-701ff27f-2\u0012\b14:48:00\u001a\b20230916 \u0000*\u00037250\u0000\u0012\u0011\b/\u0012\u0006\u0010\u00b8\u00e8\u0097\u00a8\u0006\"\u000545115\u0012\u0011\b0\u0012\u0006\u0010\u00d2\u00e8\u0097\u00a8\u0006\"\u000545116\u0012\u0011\b1\u0012\u0006\u0010\u009d\u00e9\u0097\u00a8\u0006\"\u000545118\u0012\u0011\b2\u0012\u0006\u0010\u00eb\u00e9\u0097\u00a8\u0006\"\u000545119\u0012\u0011\b3\u0012\u0006\u0010\u0099\u00ea\u0097\u00a8\u0006\"\u000545120\u0012\u0011\b4\u0012\u0006\u0010\u00d1\u00ea\u0097\u00a8\u0006\"\u000545121\u0012\u0011\b5\u0012\u0006\u0010\u00fb\u00ea\u0097\u00a8\u0006\"\u000538535\u0012\u0011\b6\u0012\u0006\u0010\u00c8\u00eb\u0097\u00a8\u0006\"\u000538536\u0012\u0013\b7\u0012\u0006\u0010\u00e4\u00eb\u0097\u00a8\u0006\"\u00074838437\u0012\u0011\b8\u0012\u0006\u0010\u00a0\u00ec\u0097\u00a8\u0006\"\u000545085\u0012\u0011\b9\u0012\u0006\u0010\u00ec\u00ec\u0097\u00a8\u0006\"\u000545086\u0012\u0011\b:\u0012\u0006\u0010\u00a1\u00ed\u0097\u00a8\u0006\"\u000538539\u0012\u0011\b;\u0012\u0006\u0010\u00e2\u00ed\u0097\u00a8\u0006\"\u000538540\u0012\u0011\b<\u0012\u0006\u0010\u00a8\u00ee\u0097\u00a8\u0006\"\u000538544\u0012\u0011\b=\u0012\u0006\u0010\u00e9\u00ee\u0097\u00a8\u0006\"\u000538545\u0012\u0011\b>\u0012\u0006\u0010\u00c8\u00ef\u0097\u00a8\u0006\"\u000538546\u0012\u0011\b?\u0012\u0006\u0010\u00bd\u00f0\u0097\u00a8\u0006\"\u000538548\u0012\u0011\b@\u0012\u0006\u0010\u00fc\u00f0\u0097\u00a8\u0006\"\u000538549\u0012\u0011\bA\u0012\u0006\u0010\u00b5\u00f1\u0097\u00a8\u0006\"\u000538550\u0012\u0011\bB\u0012\u0006\u0010\u0093\u00f2\u0097\u00a8\u0006\"\u000538551\u0012\u0011\bC\u0012\u0006\u0010\u00e6\u00f2\u0097\u00a8\u0006\"\u000538552\u0012\u0011\bD\u0012\u0006\u0010\u00b4\u00f3\u0097\u00a8\u0006\"\u000549359\u0012\u0011\bE\u0012\u0006\u0010\u00e7\u00f3\u0097\u00a8\u0006\"\u000549360\u0012\u0011\bF\u0012\u0006\u0010\u00d6\u00f4\u0097\u00a8\u0006\"\u000549361\u0012\u0011\bG\u0012\u0006\u0010\u00ea\u00f4\u0097\u00a8\u0006\"\u000549362\u0012\u0011\bH\u0012\u0006\u0010\u00a1\u00f5\u0097\u00a8\u0006\"\u000549363\u0012\u0011\bI\u0012\u0006\u0010\u00d2\u00f5\u0097\u00a8\u0006\"\u000549364\u0012\u0011\bJ\u0012\u0006\u0010\u00f7\u00f5\u0097\u00a8\u0006\"\u000549365\u0012\u0011\bK\u0012\u0006\u0010\u00bc\u00f6\u0097\u00a8\u0006\"\u000538560\u0012\u0011\bL\u0012\u0006\u0010\u00e3\u00f6\u0097\u00a8\u0006\"\u000542857\u0012\u0011\bM\u0012\u0006\u0010\u0080\u00f7\u0097\u00a8\u0006\"\u000538562\u0012\u0011\bN\u0012\u0006\u0010\u00e3\u00f7\u0097\u00a8\u0006\"\u000540539\u0012\u0011\bO\u0012\u0006\u0010\u0093\u00f8\u0097\u00a8\u0006\"\u000540540\u0012\u0011\bP\u0012\u0006\u0010\u00bb\u00f8\u0097\u00a8\u0006\"\u000540541\u0012\u0011\bQ\u0012\u0006\u0010\u00bf\u00f9\u0097\u00a8\u0006\"\u000540543\u0012\u0011\bR\u0012\u0006\u0010\u00cf\u00f9\u0097\u00a8\u0006\"\u000541943\u0012\u0011\bS\u0012\u0006\u0010\u00b7\u00fa\u0097\u00a8\u0006\"\u000540544\u0012\u0014\bT\u0012\u0006\u0010\u00cb\u00fa\u0097\u00a8\u0006\"\b16705477\u0012\u0011\bU\u0012\u0006\u0010\u0080\u00fb\u0097\u00a8\u0006\"\u000540545\u0012\u0011\bV\u0012\u0006\u0010\u00bb\u00fb\u0097\u00a8\u0006\"\u000540546\u0012\u0011\bW\u0012\u0006\u0010\u00de\u00fb\u0097\u00a8\u0006\"\u000540547\u0012\u0011\bX\u0012\u0006\u0010\u0098\u00fc\u0097\u00a8\u0006\"\u000540548\u0012\u0011\bY\u0012\u0006\u0010\u0091\u00fe\u0097\u00a8\u0006\"\u000540590\u0012\u0011\bZ\u0012\u0006\u0010\u00d9\u00fe\u0097\u00a8\u0006\"\u000540591\u0012\u0011\b[\u0012\u0006\u0010\u00cc\u00ff\u0097\u00a8\u0006\"\u000540592\u0012\u0011\b\\\u0012\u0006\u0010\u0098\u0081\u0098\u00a8\u0006\"\u000541947\u001a\b\u001a\u0006FPRX97 \u0090\u00e8\u0097\u00a8\u0006\"e\n4\n\u0015ae8c2cde-a-701ff27f-2\u0012\b14:48:00\u001a\b20230916 \u0000*\u00037250\u0000\u0012\u001d\r&\"\u0013\u00c2\u0015t,\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u001c\u00c71A(\u0090\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FPRX97" + }, + { + "type": "con_recorrido", + "entity": "\n$18acfe3f-4de2-417c-9886-52c7cafc18c0\u001a\u008c\u0003\n4\n\u0015bc15b225-4-701ff27f-2\u0012\b14:24:00\u001a\b20230916 \u0000*\u00037250\u0000\u0012\u0011\bL\u0012\u0006\u0010\u00d3\u00e8\u0097\u00a8\u0006\"\u000542857\u0012\u0011\bM\u0012\u0006\u0010\u00f1\u00e8\u0097\u00a8\u0006\"\u000538562\u0012\u0011\bN\u0012\u0006\u0010\u00d4\u00e9\u0097\u00a8\u0006\"\u000540539\u0012\u0011\bO\u0012\u0006\u0010\u0083\u00ea\u0097\u00a8\u0006\"\u000540540\u0012\u0011\bP\u0012\u0006\u0010\u00a9\u00ea\u0097\u00a8\u0006\"\u000540541\u0012\u0011\bQ\u0012\u0006\u0010\u00a5\u00eb\u0097\u00a8\u0006\"\u000540543\u0012\u0011\bR\u0012\u0006\u0010\u00b3\u00eb\u0097\u00a8\u0006\"\u000541943\u0012\u0011\bS\u0012\u0006\u0010\u0090\u00ec\u0097\u00a8\u0006\"\u000540544\u0012\u0014\bT\u0012\u0006\u0010\u00a1\u00ec\u0097\u00a8\u0006\"\b16705477\u0012\u0011\bU\u0012\u0006\u0010\u00cf\u00ec\u0097\u00a8\u0006\"\u000540545\u0012\u0011\bV\u0012\u0006\u0010\u0081\u00ed\u0097\u00a8\u0006\"\u000540546\u0012\u0011\bW\u0012\u0006\u0010\u009f\u00ed\u0097\u00a8\u0006\"\u000540547\u0012\u0011\bX\u0012\u0006\u0010\u00cf\u00ed\u0097\u00a8\u0006\"\u000540548\u0012\u0011\bY\u0012\u0006\u0010\u0095\u00ef\u0097\u00a8\u0006\"\u000540590\u0012\u0011\bZ\u0012\u0006\u0010\u00cb\u00ef\u0097\u00a8\u0006\"\u000540591\u0012\u0011\b[\u0012\u0006\u0010\u00a0\u00f0\u0097\u00a8\u0006\"\u000540592\u0012\u0011\b\\\u0012\u0006\u0010\u00b2\u00f1\u0097\u00a8\u0006\"\u000541947\u001a\b\u001a\u0006HYCZ23 \u00b0\u00e8\u0097\u00a8\u0006\"e\n4\n\u0015bc15b225-4-701ff27f-2\u0012\b14:24:00\u001a\b20230916 \u0000*\u00037250\u0000\u0012\u001d\r\u00b4\u00d8\u0012\u00c2\u0015\u00d2:\u0092\u00c2\u001d\u0000\u0000XC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b0\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HYCZ23" + }, + { + "type": "con_recorrido", + "entity": "\n$336b2186-edc4-4010-a314-0b9105677e96\u001a\u0082\f\n4\n\u00150a943e8a-0-701ff27f-2\u0012\b15:12:00\u001a\b20230916 \u0000*\u00037250\u0000\u0012\u0011\b\u0010\u0012\u0006\u0010\u00ce\u00e8\u0097\u00a8\u0006\"\u000535730\u0012\u0011\b\u0011\u0012\u0006\u0010\u00f9\u00e8\u0097\u00a8\u0006\"\u000535731\u0012\u0011\b\u0012\u0012\u0006\u0010\u00b4\u00e9\u0097\u00a8\u0006\"\u000535201\u0012\u0011\b\u0013\u0012\u0006\u0010\u0090\u00ea\u0097\u00a8\u0006\"\u000535202\u0012\u0011\b\u0014\u0012\u0006\u0010\u0080\u00eb\u0097\u00a8\u0006\"\u000590001\u0012\u0011\b\u0015\u0012\u0006\u0010\u00d9\u00eb\u0097\u00a8\u0006\"\u000539599\u0012\u0011\b\u0016\u0012\u0006\u0010\u00f0\u00eb\u0097\u00a8\u0006\"\u000539600\u0012\u0011\b\u0017\u0012\u0006\u0010\u00b2\u00ec\u0097\u00a8\u0006\"\u000537496\u0012\u0011\b\u0018\u0012\u0006\u0010\u00e3\u00ec\u0097\u00a8\u0006\"\u000545064\u0012\u0011\b\u0019\u0012\u0006\u0010\u00ac\u00ed\u0097\u00a8\u0006\"\u000537506\u0012\u0011\b\u001a\u0012\u0006\u0010\u00f3\u00ed\u0097\u00a8\u0006\"\u000545069\u0012\u0011\b\u001b\u0012\u0006\u0010\u00df\u00ee\u0097\u00a8\u0006\"\u000537523\u0012\u0011\b\u001c\u0012\u0006\u0010\u008b\u00ef\u0097\u00a8\u0006\"\u000537477\u0012\u0011\b\u001d\u0012\u0006\u0010\u00d8\u00ef\u0097\u00a8\u0006\"\u000549310\u0012\u0011\b\u001e\u0012\u0006\u0010\u00fd\u00ef\u0097\u00a8\u0006\"\u000549311\u0012\u0011\b\u001f\u0012\u0006\u0010\u00b3\u00f0\u0097\u00a8\u0006\"\u000539634\u0012\u0011\b \u0012\u0006\u0010\u00c9\u00f0\u0097\u00a8\u0006\"\u000539635\u0012\u0011\b!\u0012\u0006\u0010\u00f9\u00f0\u0097\u00a8\u0006\"\u000539636\u0012\u0011\b\"\u0012\u0006\u0010\u00ad\u00f1\u0097\u00a8\u0006\"\u000549503\u0012\u0011\b#\u0012\u0006\u0010\u00a4\u00f2\u0097\u00a8\u0006\"\u000539637\u0012\u0011\b$\u0012\u0006\u0010\u00d7\u00f2\u0097\u00a8\u0006\"\u000549317\u0012\u0011\b%\u0012\u0006\u0010\u00f6\u00f2\u0097\u00a8\u0006\"\u000549318\u0012\u0011\b&\u0012\u0006\u0010\u00b9\u00f3\u0097\u00a8\u0006\"\u000549319\u0012\u0011\b'\u0012\u0006\u0010\u00f8\u00f3\u0097\u00a8\u0006\"\u000539641\u0012\u0011\b(\u0012\u0006\u0010\u00b6\u00f6\u0097\u00a8\u0006\"\u000549325\u0012\u0011\b)\u0012\u0006\u0010\u00f1\u00f6\u0097\u00a8\u0006\"\u000549326\u0012\u0011\b*\u0012\u0006\u0010\u008a\u00f7\u0097\u00a8\u0006\"\u000539648\u0012\u0011\b+\u0012\u0006\u0010\u00c0\u00f7\u0097\u00a8\u0006\"\u000539649\u0012\u0011\b,\u0012\u0006\u0010\u00e6\u00f7\u0097\u00a8\u0006\"\u000545112\u0012\u0011\b-\u0012\u0006\u0010\u009d\u00f8\u0097\u00a8\u0006\"\u000545113\u0012\u0011\b.\u0012\u0006\u0010\u00e9\u00f8\u0097\u00a8\u0006\"\u000537490\u0012\u0011\b/\u0012\u0006\u0010\u00ae\u00f9\u0097\u00a8\u0006\"\u000545115\u0012\u0011\b0\u0012\u0006\u0010\u00c8\u00f9\u0097\u00a8\u0006\"\u000545116\u0012\u0011\b1\u0012\u0006\u0010\u0097\u00fa\u0097\u00a8\u0006\"\u000545118\u0012\u0011\b2\u0012\u0006\u0010\u00eb\u00fa\u0097\u00a8\u0006\"\u000545119\u0012\u0011\b3\u0012\u0006\u0010\u009e\u00fb\u0097\u00a8\u0006\"\u000545120\u0012\u0011\b4\u0012\u0006\u0010\u00de\u00fb\u0097\u00a8\u0006\"\u000545121\u0012\u0011\b5\u0012\u0006\u0010\u008f\u00fc\u0097\u00a8\u0006\"\u000538535\u0012\u0011\b6\u0012\u0006\u0010\u00ea\u00fc\u0097\u00a8\u0006\"\u000538536\u0012\u0013\b7\u0012\u0006\u0010\u008b\u00fd\u0097\u00a8\u0006\"\u00074838437\u0012\u0011\b8\u0012\u0006\u0010\u00d5\u00fd\u0097\u00a8\u0006\"\u000545085\u0012\u0011\b9\u0012\u0006\u0010\u00b5\u00fe\u0097\u00a8\u0006\"\u000545086\u0012\u0011\b:\u0012\u0006\u0010\u00f9\u00fe\u0097\u00a8\u0006\"\u000538539\u0012\u0011\b;\u0012\u0006\u0010\u00d0\u00ff\u0097\u00a8\u0006\"\u000538540\u0012\u0011\b<\u0012\u0006\u0010\u00af\u0080\u0098\u00a8\u0006\"\u000538544\u0012\u0011\b=\u0012\u0006\u0010\u008a\u0081\u0098\u00a8\u0006\"\u000538545\u0012\u0011\b>\u0012\u0006\u0010\u0093\u0082\u0098\u00a8\u0006\"\u000538546\u0012\u0011\b?\u0012\u0006\u0010\u00c3\u0083\u0098\u00a8\u0006\"\u000538548\u0012\u0011\b@\u0012\u0006\u0010\u00a6\u0084\u0098\u00a8\u0006\"\u000538549\u0012\u0011\bA\u0012\u0006\u0010\u0082\u0085\u0098\u00a8\u0006\"\u000538550\u0012\u0011\bB\u0012\u0006\u0010\u009c\u0086\u0098\u00a8\u0006\"\u000538551\u0012\u0011\bC\u0012\u0006\u0010\u00a9\u0087\u0098\u00a8\u0006\"\u000538552\u0012\u0011\bD\u0012\u0006\u0010\u00b4\u0088\u0098\u00a8\u0006\"\u000549359\u0012\u0011\bE\u0012\u0006\u0010\u0091\u0089\u0098\u00a8\u0006\"\u000549360\u0012\u0011\bF\u0012\u0006\u0010\u00df\u008a\u0098\u00a8\u0006\"\u000549361\u0012\u0011\bG\u0012\u0006\u0010\u0086\u008b\u0098\u00a8\u0006\"\u000549362\u0012\u0011\bH\u0012\u0006\u0010\u00f0\u008b\u0098\u00a8\u0006\"\u000549363\u0012\u0011\bI\u0012\u0006\u0010\u00d1\u008c\u0098\u00a8\u0006\"\u000549364\u0012\u0011\bJ\u0012\u0006\u0010\u009d\u008d\u0098\u00a8\u0006\"\u000549365\u0012\u0011\bK\u0012\u0006\u0010\u00ac\u008e\u0098\u00a8\u0006\"\u000538560\u0012\u0011\bL\u0012\u0006\u0010\u00fd\u008e\u0098\u00a8\u0006\"\u000542857\u0012\u0011\bM\u0012\u0006\u0010\u00ba\u008f\u0098\u00a8\u0006\"\u000538562\u0012\u0011\bN\u0012\u0006\u0010\u0093\u0091\u0098\u00a8\u0006\"\u000540539\u0012\u0011\bO\u0012\u0006\u0010\u0080\u0092\u0098\u00a8\u0006\"\u000540540\u0012\u0011\bP\u0012\u0006\u0010\u00dc\u0092\u0098\u00a8\u0006\"\u000540541\u0012\u0011\bQ\u0012\u0006\u0010\u0097\u0095\u0098\u00a8\u0006\"\u000540543\u0012\u0011\bR\u0012\u0006\u0010\u00bc\u0095\u0098\u00a8\u0006\"\u000541943\u0012\u0011\bS\u0012\u0006\u0010\u00c2\u0097\u0098\u00a8\u0006\"\u000540544\u0012\u0014\bT\u0012\u0006\u0010\u00f5\u0097\u0098\u00a8\u0006\"\b16705477\u0012\u0011\bU\u0012\u0006\u0010\u00fe\u0098\u0098\u00a8\u0006\"\u000540545\u0012\u0011\bV\u0012\u0006\u0010\u009c\u009a\u0098\u00a8\u0006\"\u000540546\u0012\u0011\bW\u0012\u0006\u0010\u00fc\u009a\u0098\u00a8\u0006\"\u000540547\u0012\u0011\bX\u0012\u0006\u0010\u009c\u009c\u0098\u00a8\u0006\"\u000540548\u0012\u0011\bY\u0012\u0006\u0010\u00fc\u00a1\u0098\u00a8\u0006\"\u000540590\u0012\u0011\bZ\u0012\u0006\u0010\u00df\u00a3\u0098\u00a8\u0006\"\u000540591\u0012\u0011\b[\u0012\u0006\u0010\u00d8\u00a6\u0098\u00a8\u0006\"\u000540592\u0012\u0011\b\\\u0012\u0006\u0010\u00a6\u00ac\u0098\u00a8\u0006\"\u000541947\u001a\b\u001a\u0006HYCZ76 \u00bc\u00e8\u0097\u00a8\u0006\"e\n4\n\u00150a943e8a-0-701ff27f-2\u0012\b15:12:00\u001a\b20230916 \u0000*\u00037250\u0000\u0012\u001d\r\u00f5F\u0013\u00c2\u0015-\t\u0092\u00c2\u001d\u0000\u0000\u0093C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00bc\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HYCZ76" + }, + { + "type": "con_recorrido", + "entity": "\n$ebb4af2c-af4f-4214-b56c-d0dc610a7d39\u001a\u00a5\u0001\n4\n\u0015caf08a3a-f-701ff27f-2\u0012\b14:12:00\u001a\b20230916 \u0000*\u00037250\u0000\u0012\u0011\bX\u0012\u0006\u0010\u00bb\u00e8\u0097\u00a8\u0006\"\u000540548\u0012\u0011\bY\u0012\u0006\u0010\u008f\u00ea\u0097\u00a8\u0006\"\u000540590\u0012\u0011\bZ\u0012\u0006\u0010\u00c9\u00ea\u0097\u00a8\u0006\"\u000540591\u0012\u0011\b[\u0012\u0006\u0010\u00a1\u00eb\u0097\u00a8\u0006\"\u000540592\u0012\u0011\b\\\u0012\u0006\u0010\u00b7\u00ec\u0097\u00a8\u0006\"\u000541947\u001a\b\u001a\u0006HYYX76 \u008a\u00e8\u0097\u00a8\u0006\"e\n4\n\u0015caf08a3a-f-701ff27f-2\u0012\b14:12:00\u001a\b20230916 \u0000*\u00037250\u0000\u0012\u001d\r\u00be\u00d9\u0012\u00c2\u0015PE\u0092\u00c2\u001d\u0000\u0000\u008fC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u001c\u00c7\u00b1?(\u008a\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HYYX76" + }, + { + "type": "con_recorrido", + "entity": "\n$b1e4e112-5a57-4bc8-9b2b-828b8ff7e8d9\u001a\u0083\u0005\n4\n\u0015ce54ea2c-2-701ff27f-2\u0012\b14:36:00\u001a\b20230916 \u0000*\u00037250\u0000\u0012\u0011\b?\u0012\u0006\u0010\u00fa\u00e8\u0097\u00a8\u0006\"\u000538548\u0012\u0011\b@\u0012\u0006\u0010\u00bf\u00e9\u0097\u00a8\u0006\"\u000538549\u0012\u0011\bA\u0012\u0006\u0010\u00fc\u00e9\u0097\u00a8\u0006\"\u000538550\u0012\u0011\bB\u0012\u0006\u0010\u00df\u00ea\u0097\u00a8\u0006\"\u000538551\u0012\u0011\bC\u0012\u0006\u0010\u00b5\u00eb\u0097\u00a8\u0006\"\u000538552\u0012\u0011\bD\u0012\u0006\u0010\u0085\u00ec\u0097\u00a8\u0006\"\u000549359\u0012\u0011\bE\u0012\u0006\u0010\u00b9\u00ec\u0097\u00a8\u0006\"\u000549360\u0012\u0011\bF\u0012\u0006\u0010\u00a6\u00ed\u0097\u00a8\u0006\"\u000549361\u0012\u0011\bG\u0012\u0006\u0010\u00ba\u00ed\u0097\u00a8\u0006\"\u000549362\u0012\u0011\bH\u0012\u0006\u0010\u00ef\u00ed\u0097\u00a8\u0006\"\u000549363\u0012\u0011\bI\u0012\u0006\u0010\u009e\u00ee\u0097\u00a8\u0006\"\u000549364\u0012\u0011\bJ\u0012\u0006\u0010\u00c2\u00ee\u0097\u00a8\u0006\"\u000549365\u0012\u0011\bK\u0012\u0006\u0010\u0083\u00ef\u0097\u00a8\u0006\"\u000538560\u0012\u0011\bL\u0012\u0006\u0010\u00a7\u00ef\u0097\u00a8\u0006\"\u000542857\u0012\u0011\bM\u0012\u0006\u0010\u00c2\u00ef\u0097\u00a8\u0006\"\u000538562\u0012\u0011\bN\u0012\u0006\u0010\u009d\u00f0\u0097\u00a8\u0006\"\u000540539\u0012\u0011\bO\u0012\u0006\u0010\u00c9\u00f0\u0097\u00a8\u0006\"\u000540540\u0012\u0011\bP\u0012\u0006\u0010\u00ed\u00f0\u0097\u00a8\u0006\"\u000540541\u0012\u0011\bQ\u0012\u0006\u0010\u00e2\u00f1\u0097\u00a8\u0006\"\u000540543\u0012\u0011\bR\u0012\u0006\u0010\u00f0\u00f1\u0097\u00a8\u0006\"\u000541943\u0012\u0011\bS\u0012\u0006\u0010\u00ca\u00f2\u0097\u00a8\u0006\"\u000540544\u0012\u0014\bT\u0012\u0006\u0010\u00dc\u00f2\u0097\u00a8\u0006\"\b16705477\u0012\u0011\bU\u0012\u0006\u0010\u0089\u00f3\u0097\u00a8\u0006\"\u000540545\u0012\u0011\bV\u0012\u0006\u0010\u00bb\u00f3\u0097\u00a8\u0006\"\u000540546\u0012\u0011\bW\u0012\u0006\u0010\u00d8\u00f3\u0097\u00a8\u0006\"\u000540547\u0012\u0011\bX\u0012\u0006\u0010\u0089\u00f4\u0097\u00a8\u0006\"\u000540548\u0012\u0011\bY\u0012\u0006\u0010\u00d4\u00f5\u0097\u00a8\u0006\"\u000540590\u0012\u0011\bZ\u0012\u0006\u0010\u008e\u00f6\u0097\u00a8\u0006\"\u000540591\u0012\u0011\b[\u0012\u0006\u0010\u00e8\u00f6\u0097\u00a8\u0006\"\u000540592\u0012\u0011\b\\\u0012\u0006\u0010\u0086\u00f8\u0097\u00a8\u0006\"\u000541947\u001a\b\u001a\u0006RTZT30 \u00b0\u00e8\u0097\u00a8\u0006\"e\n4\n\u0015ce54ea2c-2-701ff27f-2\u0012\b14:36:00\u001a\b20230916 \u0000*\u00037250\u0000\u0012\u001d\rY\u00f7\u0012\u00c2\u0015h2\u0092\u00c2\u001d\u0000\u0000\u00a7C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b0\u00e8\u0097\u00a8\u0006B\b\u001a\u0006RTZT30" + }, + { + "type": "con_recorrido", + "entity": "\n$7cb12a63-c4c1-47ea-9562-bfc8efb01d07\u001a\u00e3\u0002\n4\n\u00153d9d21b5-6-701ff27f-2\u0012\b14:36:00\u001a\b20230916 \u0000*\u00037260\u0001\u0012\u0011\bP\u0012\u0006\u0010\u00d0\u00e8\u0097\u00a8\u0006\"\u000540904\u0012\u0011\bQ\u0012\u0006\u0010\u0088\u00e9\u0097\u00a8\u0006\"\u000535814\u0012\u0011\bR\u0012\u0006\u0010\u00d3\u00e9\u0097\u00a8\u0006\"\u000535815\u0012\u0011\bS\u0012\u0006\u0010\u00f2\u00e9\u0097\u00a8\u0006\"\u000535816\u0012\u0011\bT\u0012\u0006\u0010\u00f7\u00e9\u0097\u00a8\u0006\"\u000535817\u0012\u0011\bU\u0012\u0006\u0010\u00a3\u00ea\u0097\u00a8\u0006\"\u000535818\u0012\u0011\bV\u0012\u0006\u0010\u00c9\u00ea\u0097\u00a8\u0006\"\u000535819\u0012\u0011\bW\u0012\u0006\u0010\u008b\u00ec\u0097\u00a8\u0006\"\u000535822\u0012\u0011\bX\u0012\u0006\u0010\u00bd\u00ec\u0097\u00a8\u0006\"\u000535823\u0012\u0011\bY\u0012\u0006\u0010\u00f4\u00ec\u0097\u00a8\u0006\"\u000535723\u0012\u0011\bZ\u0012\u0006\u0010\u009a\u00ed\u0097\u00a8\u0006\"\u000535722\u0012\u0011\b[\u0012\u0006\u0010\u00a3\u00ee\u0097\u00a8\u0006\"\u000535827\u0012\u0011\b\\\u0012\u0006\u0010\u00bb\u00ee\u0097\u00a8\u0006\"\u000535828\u0012\u0011\b]\u0012\u0006\u0010\u00ce\u00ee\u0097\u00a8\u0006\"\u000535716\u0012\u0011\b^\u0012\u0006\u0010\u00f7\u00ee\u0097\u00a8\u0006\"\u000535715\u001a\b\u001a\u0006DHDT12 \u00ba\u00e8\u0097\u00a8\u0006\"e\n4\n\u00153d9d21b5-6-701ff27f-2\u0012\b14:36:00\u001a\b20230916 \u0000*\u00037260\u0001\u0012\u001d\r\u0082D\u0013\u00c2\u0015\u00d0\u0010\u0092\u00c2\u001d\u0000\u0000\u0018B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ba\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DHDT12" + }, + { + "type": "sin_recorrido", + "entity": "\n$64c1c484-cb39-4c3f-9c29-d09685751b5b\"e\n4\n\u0015fa471084-a-701ff27f-2\u0012\b14:24:00\u001a\b20230916 \u0000*\u00037260\u0001\u0012\u001d\r\u00fb]\u0013\u00c2\u0015~\u0004\u0092\u00c2\u001d\u0000\u0000JC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u000eA(\u00ba\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FHZB98" + }, + { + "type": "con_recorrido", + "entity": "\n$c1a4dc4d-ea5a-4be4-a50a-db8fa70d1bc9\u001a\u00c4\u000b\n4\n\u0015b7b79609-3-701ff27f-2\u0012\b15:24:00\u001a\b20230916 \u0000*\u00037260\u0001\u0012\u0011\b\u0015\u0012\u0006\u0010\u00bb\u00e8\u0097\u00a8\u0006\"\u000542857\u0012\u0011\b\u0016\u0012\u0006\u0010\u00dc\u00e8\u0097\u00a8\u0006\"\u000538697\u0012\u0011\b\u0017\u0012\u0006\u0010\u008b\u00e9\u0097\u00a8\u0006\"\u000538646\u0012\u0011\b\u0018\u0012\u0006\u0010\u00b0\u00e9\u0097\u00a8\u0006\"\u000538632\u0012\u0011\b\u0019\u0012\u0006\u0010\u0089\u00ea\u0097\u00a8\u0006\"\u000538767\u0012\u0011\b\u001a\u0012\u0006\u0010\u00c7\u00ea\u0097\u00a8\u0006\"\u000538768\u0012\u0011\b\u001b\u0012\u0006\u0010\u00fb\u00ea\u0097\u00a8\u0006\"\u000538769\u0012\u0011\b\u001c\u0012\u0006\u0010\u009c\u00eb\u0097\u00a8\u0006\"\u000549357\u0012\u0011\b\u001d\u0012\u0006\u0010\u00cd\u00eb\u0097\u00a8\u0006\"\u000538771\u0012\u0011\b\u001e\u0012\u0006\u0010\u00f9\u00eb\u0097\u00a8\u0006\"\u000538668\u0012\u0011\b\u001f\u0012\u0006\u0010\u00d4\u00ec\u0097\u00a8\u0006\"\u000538661\u0012\u0011\b \u0012\u0006\u0010\u00a8\u00ed\u0097\u00a8\u0006\"\u000538657\u0012\u0011\b!\u0012\u0006\u0010\u00e1\u00ed\u0097\u00a8\u0006\"\u000538743\u0012\u0011\b\"\u0012\u0006\u0010\u00a2\u00ee\u0097\u00a8\u0006\"\u000538652\u0012\u0011\b#\u0012\u0006\u0010\u00e5\u00ee\u0097\u00a8\u0006\"\u000538721\u0012\u0011\b$\u0012\u0006\u0010\u009f\u00ef\u0097\u00a8\u0006\"\u000538659\u0012\u0011\b%\u0012\u0006\u0010\u00ed\u00ef\u0097\u00a8\u0006\"\u000538674\u0012\u0011\b&\u0012\u0006\u0010\u00af\u00f0\u0097\u00a8\u0006\"\u000538649\u0012\u0011\b'\u0012\u0006\u0010\u00f4\u00f0\u0097\u00a8\u0006\"\u000538718\u0012\u0011\b(\u0012\u0006\u0010\u00b4\u00f1\u0097\u00a8\u0006\"\u000538735\u0012\u0011\b)\u0012\u0006\u0010\u00ec\u00f1\u0097\u00a8\u0006\"\u000542270\u0012\u0011\b*\u0012\u0006\u0010\u0098\u00f2\u0097\u00a8\u0006\"\u000542271\u0012\u0011\b+\u0012\u0006\u0010\u00de\u00f3\u0097\u00a8\u0006\"\u000538688\u0012\u0011\b,\u0012\u0006\u0010\u0096\u00f4\u0097\u00a8\u0006\"\u000538673\u0012\u0011\b-\u0012\u0006\u0010\u00df\u00f4\u0097\u00a8\u0006\"\u000539785\u0012\u0011\b.\u0012\u0006\u0010\u0089\u00f5\u0097\u00a8\u0006\"\u000538664\u0012\u0011\b/\u0012\u0006\u0010\u00bf\u00f5\u0097\u00a8\u0006\"\u000538702\u0012\u0011\b0\u0012\u0006\u0010\u00ec\u00f5\u0097\u00a8\u0006\"\u000539787\u0012\u0011\b1\u0012\u0006\u0010\u0096\u00f6\u0097\u00a8\u0006\"\u000538501\u0012\u0011\b2\u0012\u0006\u0010\u00d1\u00f6\u0097\u00a8\u0006\"\u000538692\u0012\u0011\b3\u0012\u0006\u0010\u0099\u00f7\u0097\u00a8\u0006\"\u000538714\u0012\u0011\b4\u0012\u0006\u0010\u00cd\u00f7\u0097\u00a8\u0006\"\u000539791\u0012\u0011\b5\u0012\u0006\u0010\u00f2\u00f7\u0097\u00a8\u0006\"\u000538506\u0012\u0011\b6\u0012\u0006\u0010\u00a7\u00f8\u0097\u00a8\u0006\"\u000538635\u0012\u0011\b7\u0012\u0006\u0010\u00ca\u00f8\u0097\u00a8\u0006\"\u000538509\u0012\u0011\b8\u0012\u0006\u0010\u00f0\u00f8\u0097\u00a8\u0006\"\u000538642\u0012\u0011\b9\u0012\u0006\u0010\u00aa\u00f9\u0097\u00a8\u0006\"\u000539795\u0012\u0011\b:\u0012\u0006\u0010\u00c7\u00f9\u0097\u00a8\u0006\"\u000538502\u0012\u0011\b;\u0012\u0006\u0010\u0090\u00fa\u0097\u00a8\u0006\"\u000538503\u0012\u0011\b<\u0012\u0006\u0010\u00b7\u00fc\u0097\u00a8\u0006\"\u000535693\u0012\u0011\b=\u0012\u0006\u0010\u00fa\u00fc\u0097\u00a8\u0006\"\u000535694\u0012\u0011\b>\u0012\u0006\u0010\u00a3\u00fd\u0097\u00a8\u0006\"\u000535695\u0012\u0011\b?\u0012\u0006\u0010\u00e7\u00fd\u0097\u00a8\u0006\"\u000535696\u0012\u0011\b@\u0012\u0006\u0010\u00be\u00ff\u0097\u00a8\u0006\"\u000535697\u0012\u0011\bA\u0012\u0006\u0010\u00c0\u0080\u0098\u00a8\u0006\"\u00052-Jan\u0012\u0011\bB\u0012\u0006\u0010\u00e9\u0080\u0098\u00a8\u0006\"\u000542460\u0012\u0011\bC\u0012\u0006\u0010\u009e\u0081\u0098\u00a8\u0006\"\u000535690\u0012\u0011\bD\u0012\u0006\u0010\u00a7\u0082\u0098\u00a8\u0006\"\u000535700\u0012\u0011\bE\u0012\u0006\u0010\u00ba\u0083\u0098\u00a8\u0006\"\u000535703\u0012\u0011\bF\u0012\u0006\u0010\u00d1\u0083\u0098\u00a8\u0006\"\u000535704\u0012\u0011\bG\u0012\u0006\u0010\u00ed\u0083\u0098\u00a8\u0006\"\u000535705\u0012\u0011\bH\u0012\u0006\u0010\u008f\u0084\u0098\u00a8\u0006\"\u000535706\u0012\u0011\bI\u0012\u0006\u0010\u00d8\u0084\u0098\u00a8\u0006\"\u000535707\u0012\u0011\bJ\u0012\u0006\u0010\u008c\u0085\u0098\u00a8\u0006\"\u000535708\u0012\u0011\bK\u0012\u0006\u0010\u00a5\u0085\u0098\u00a8\u0006\"\u000535709\u0012\u0011\bL\u0012\u0006\u0010\u00c6\u0086\u0098\u00a8\u0006\"\u000537522\u0012\u0011\bM\u0012\u0006\u0010\u0081\u0087\u0098\u00a8\u0006\"\u000539599\u0012\u0011\bN\u0012\u0006\u0010\u00c6\u0087\u0098\u00a8\u0006\"\u000550034\u0012\u0011\bO\u0012\u0006\u0010\u008e\u0088\u0098\u00a8\u0006\"\u000540903\u0012\u0011\bP\u0012\u0006\u0010\u00c6\u0088\u0098\u00a8\u0006\"\u000540904\u0012\u0011\bQ\u0012\u0006\u0010\u00a4\u0089\u0098\u00a8\u0006\"\u000535814\u0012\u0011\bR\u0012\u0006\u0010\u00aa\u008a\u0098\u00a8\u0006\"\u000535815\u0012\u0011\bS\u0012\u0006\u0010\u00e3\u008a\u0098\u00a8\u0006\"\u000535816\u0012\u0011\bT\u0012\u0006\u0010\u00ec\u008a\u0098\u00a8\u0006\"\u000535817\u0012\u0011\bU\u0012\u0006\u0010\u00bf\u008b\u0098\u00a8\u0006\"\u000535818\u0012\u0011\bV\u0012\u0006\u0010\u0089\u008c\u0098\u00a8\u0006\"\u000535819\u0012\u0011\bW\u0012\u0006\u0010\u009e\u008f\u0098\u00a8\u0006\"\u000535822\u0012\u0011\bX\u0012\u0006\u0010\u008f\u0090\u0098\u00a8\u0006\"\u000535823\u0012\u0011\bY\u0012\u0006\u0010\u0091\u0091\u0098\u00a8\u0006\"\u000535723\u0012\u0011\bZ\u0012\u0006\u0010\u00ef\u0091\u0098\u00a8\u0006\"\u000535722\u0012\u0011\b[\u0012\u0006\u0010\u00d3\u0094\u0098\u00a8\u0006\"\u000535827\u0012\u0011\b\\\u0012\u0006\u0010\u0094\u0095\u0098\u00a8\u0006\"\u000535828\u0012\u0011\b]\u0012\u0006\u0010\u00ca\u0095\u0098\u00a8\u0006\"\u000535716\u0012\u0011\b^\u0012\u0006\u0010\u00be\u0096\u0098\u00a8\u0006\"\u000535715\u001a\b\u001a\u0006HDCC29 \u00b2\u00e8\u0097\u00a8\u0006\"e\n4\n\u0015b7b79609-3-701ff27f-2\u0012\b15:24:00\u001a\b20230916 \u0000*\u00037260\u0001\u0012\u001d\r\u00eb\u00da\u0012\u00c2\u0015V;\u0092\u00c2\u001d\u0000\u0000 B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u008e>(\u00b2\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HDCC29" + }, + { + "type": "con_recorrido", + "entity": "\n$c932a649-c599-415b-9675-f7fbdf2c8364\u001a\u00cc\u0005\n4\n\u00152217740b-6-701ff27f-2\u0012\b14:48:00\u001a\b20230916 \u0000*\u00037260\u0001\u0012\u0011\b=\u0012\u0006\u0010\u00df\u00e8\u0097\u00a8\u0006\"\u000535694\u0012\u0011\b>\u0012\u0006\u0010\u0082\u00e9\u0097\u00a8\u0006\"\u000535695\u0012\u0011\b?\u0012\u0006\u0010\u00bc\u00e9\u0097\u00a8\u0006\"\u000535696\u0012\u0011\b@\u0012\u0006\u0010\u00ea\u00ea\u0097\u00a8\u0006\"\u000535697\u0012\u0011\bA\u0012\u0006\u0010\u00cd\u00eb\u0097\u00a8\u0006\"\u00052-Jan\u0012\u0011\bB\u0012\u0006\u0010\u00eb\u00eb\u0097\u00a8\u0006\"\u000542460\u0012\u0011\bC\u0012\u0006\u0010\u0092\u00ec\u0097\u00a8\u0006\"\u000535690\u0012\u0011\bD\u0012\u0006\u0010\u00f2\u00ec\u0097\u00a8\u0006\"\u000535700\u0012\u0011\bE\u0012\u0006\u0010\u00d5\u00ed\u0097\u00a8\u0006\"\u000535703\u0012\u0011\bF\u0012\u0006\u0010\u00e4\u00ed\u0097\u00a8\u0006\"\u000535704\u0012\u0011\bG\u0012\u0006\u0010\u00f6\u00ed\u0097\u00a8\u0006\"\u000535705\u0012\u0011\bH\u0012\u0006\u0010\u008c\u00ee\u0097\u00a8\u0006\"\u000535706\u0012\u0011\bI\u0012\u0006\u0010\u00ba\u00ee\u0097\u00a8\u0006\"\u000535707\u0012\u0011\bJ\u0012\u0006\u0010\u00da\u00ee\u0097\u00a8\u0006\"\u000535708\u0012\u0011\bK\u0012\u0006\u0010\u00e9\u00ee\u0097\u00a8\u0006\"\u000535709\u0012\u0011\bL\u0012\u0006\u0010\u00ca\u00ef\u0097\u00a8\u0006\"\u000537522\u0012\u0011\bM\u0012\u0006\u0010\u00ec\u00ef\u0097\u00a8\u0006\"\u000539599\u0012\u0011\bN\u0012\u0006\u0010\u0093\u00f0\u0097\u00a8\u0006\"\u000550034\u0012\u0011\bO\u0012\u0006\u0010\u00bb\u00f0\u0097\u00a8\u0006\"\u000540903\u0012\u0011\bP\u0012\u0006\u0010\u00da\u00f0\u0097\u00a8\u0006\"\u000540904\u0012\u0011\bQ\u0012\u0006\u0010\u008c\u00f1\u0097\u00a8\u0006\"\u000535814\u0012\u0011\bR\u0012\u0006\u0010\u00d2\u00f1\u0097\u00a8\u0006\"\u000535815\u0012\u0011\bS\u0012\u0006\u0010\u00ef\u00f1\u0097\u00a8\u0006\"\u000535816\u0012\u0011\bT\u0012\u0006\u0010\u00f4\u00f1\u0097\u00a8\u0006\"\u000535817\u0012\u0011\bU\u0012\u0006\u0010\u009d\u00f2\u0097\u00a8\u0006\"\u000535818\u0012\u0011\bV\u0012\u0006\u0010\u00c1\u00f2\u0097\u00a8\u0006\"\u000535819\u0012\u0011\bW\u0012\u0006\u0010\u00fd\u00f3\u0097\u00a8\u0006\"\u000535822\u0012\u0011\bX\u0012\u0006\u0010\u00af\u00f4\u0097\u00a8\u0006\"\u000535823\u0012\u0011\bY\u0012\u0006\u0010\u00e7\u00f4\u0097\u00a8\u0006\"\u000535723\u0012\u0011\bZ\u0012\u0006\u0010\u008e\u00f5\u0097\u00a8\u0006\"\u000535722\u0012\u0011\b[\u0012\u0006\u0010\u009c\u00f6\u0097\u00a8\u0006\"\u000535827\u0012\u0011\b\\\u0012\u0006\u0010\u00b4\u00f6\u0097\u00a8\u0006\"\u000535828\u0012\u0011\b]\u0012\u0006\u0010\u00c9\u00f6\u0097\u00a8\u0006\"\u000535716\u0012\u0011\b^\u0012\u0006\u0010\u00f4\u00f6\u0097\u00a8\u0006\"\u000535715\u001a\b\u001a\u0006JWXT10 \u00aa\u00e8\u0097\u00a8\u0006\"e\n4\n\u00152217740b-6-701ff27f-2\u0012\b14:48:00\u001a\b20230916 \u0000*\u00037260\u0001\u0012\u001d\r\u0081>\u0013\u00c2\u0015f%\u0092\u00c2\u001d\u0000\u0000\u00f0B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-r\u001c\u0097@(\u00aa\u00e8\u0097\u00a8\u0006B\b\u001a\u0006JWXT10" + }, + { + "type": "con_recorrido", + "entity": "\n$afb6044e-b2d2-41c7-90b5-d4ac117757a0\u001a\u00ba\t\n4\n\u00157edee734-3-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00037260\u0001\u0012\u0011\b#\u0012\u0006\u0010\u008f\u00e8\u0097\u00a8\u0006\"\u000538721\u0012\u0011\b$\u0012\u0006\u0010\u00ce\u00e8\u0097\u00a8\u0006\"\u000538659\u0012\u0011\b%\u0012\u0006\u0010\u00a4\u00e9\u0097\u00a8\u0006\"\u000538674\u0012\u0011\b&\u0012\u0006\u0010\u00ea\u00e9\u0097\u00a8\u0006\"\u000538649\u0012\u0011\b'\u0012\u0006\u0010\u00b4\u00ea\u0097\u00a8\u0006\"\u000538718\u0012\u0011\b(\u0012\u0006\u0010\u00f6\u00ea\u0097\u00a8\u0006\"\u000538735\u0012\u0011\b)\u0012\u0006\u0010\u00b0\u00eb\u0097\u00a8\u0006\"\u000542270\u0012\u0011\b*\u0012\u0006\u0010\u00de\u00eb\u0097\u00a8\u0006\"\u000542271\u0012\u0011\b+\u0012\u0006\u0010\u00a6\u00ed\u0097\u00a8\u0006\"\u000538688\u0012\u0011\b,\u0012\u0006\u0010\u00dd\u00ed\u0097\u00a8\u0006\"\u000538673\u0012\u0011\b-\u0012\u0006\u0010\u00a5\u00ee\u0097\u00a8\u0006\"\u000539785\u0012\u0011\b.\u0012\u0006\u0010\u00cd\u00ee\u0097\u00a8\u0006\"\u000538664\u0012\u0011\b/\u0012\u0006\u0010\u0081\u00ef\u0097\u00a8\u0006\"\u000538702\u0012\u0011\b0\u0012\u0006\u0010\u00ac\u00ef\u0097\u00a8\u0006\"\u000539787\u0012\u0011\b1\u0012\u0006\u0010\u00d5\u00ef\u0097\u00a8\u0006\"\u000538501\u0012\u0011\b2\u0012\u0006\u0010\u008c\u00f0\u0097\u00a8\u0006\"\u000538692\u0012\u0011\b3\u0012\u0006\u0010\u00cf\u00f0\u0097\u00a8\u0006\"\u000538714\u0012\u0011\b4\u0012\u0006\u0010\u00ff\u00f0\u0097\u00a8\u0006\"\u000539791\u0012\u0011\b5\u0012\u0006\u0010\u00a1\u00f1\u0097\u00a8\u0006\"\u000538506\u0012\u0011\b6\u0012\u0006\u0010\u00d1\u00f1\u0097\u00a8\u0006\"\u000538635\u0012\u0011\b7\u0012\u0006\u0010\u00f1\u00f1\u0097\u00a8\u0006\"\u000538509\u0012\u0011\b8\u0012\u0006\u0010\u0094\u00f2\u0097\u00a8\u0006\"\u000538642\u0012\u0011\b9\u0012\u0006\u0010\u00c7\u00f2\u0097\u00a8\u0006\"\u000539795\u0012\u0011\b:\u0012\u0006\u0010\u00e1\u00f2\u0097\u00a8\u0006\"\u000538502\u0012\u0011\b;\u0012\u0006\u0010\u00a2\u00f3\u0097\u00a8\u0006\"\u000538503\u0012\u0011\b<\u0012\u0006\u0010\u00a1\u00f5\u0097\u00a8\u0006\"\u000535693\u0012\u0011\b=\u0012\u0006\u0010\u00da\u00f5\u0097\u00a8\u0006\"\u000535694\u0012\u0011\b>\u0012\u0006\u0010\u00fc\u00f5\u0097\u00a8\u0006\"\u000535695\u0012\u0011\b?\u0012\u0006\u0010\u00b5\u00f6\u0097\u00a8\u0006\"\u000535696\u0012\u0011\b@\u0012\u0006\u0010\u00e6\u00f7\u0097\u00a8\u0006\"\u000535697\u0012\u0011\bA\u0012\u0006\u0010\u00cf\u00f8\u0097\u00a8\u0006\"\u00052-Jan\u0012\u0011\bB\u0012\u0006\u0010\u00f0\u00f8\u0097\u00a8\u0006\"\u000542460\u0012\u0011\bC\u0012\u0006\u0010\u009a\u00f9\u0097\u00a8\u0006\"\u000535690\u0012\u0011\bD\u0012\u0006\u0010\u0086\u00fa\u0097\u00a8\u0006\"\u000535700\u0012\u0011\bE\u0012\u0006\u0010\u00f8\u00fa\u0097\u00a8\u0006\"\u000535703\u0012\u0011\bF\u0012\u0006\u0010\u008a\u00fb\u0097\u00a8\u0006\"\u000535704\u0012\u0011\bG\u0012\u0006\u0010\u009f\u00fb\u0097\u00a8\u0006\"\u000535705\u0012\u0011\bH\u0012\u0006\u0010\u00b9\u00fb\u0097\u00a8\u0006\"\u000535706\u0012\u0011\bI\u0012\u0006\u0010\u00f1\u00fb\u0097\u00a8\u0006\"\u000535707\u0012\u0011\bJ\u0012\u0006\u0010\u0098\u00fc\u0097\u00a8\u0006\"\u000535708\u0012\u0011\bK\u0012\u0006\u0010\u00aa\u00fc\u0097\u00a8\u0006\"\u000535709\u0012\u0011\bL\u0012\u0006\u0010\u00a3\u00fd\u0097\u00a8\u0006\"\u000537522\u0012\u0011\bM\u0012\u0006\u0010\u00cf\u00fd\u0097\u00a8\u0006\"\u000539599\u0012\u0011\bN\u0012\u0006\u0010\u0082\u00fe\u0097\u00a8\u0006\"\u000550034\u0012\u0011\bO\u0012\u0006\u0010\u00b6\u00fe\u0097\u00a8\u0006\"\u000540903\u0012\u0011\bP\u0012\u0006\u0010\u00df\u00fe\u0097\u00a8\u0006\"\u000540904\u0012\u0011\bQ\u0012\u0006\u0010\u00a3\u00ff\u0097\u00a8\u0006\"\u000535814\u0012\u0011\bR\u0012\u0006\u0010\u0082\u0080\u0098\u00a8\u0006\"\u000535815\u0012\u0011\bS\u0012\u0006\u0010\u00ab\u0080\u0098\u00a8\u0006\"\u000535816\u0012\u0011\bT\u0012\u0006\u0010\u00b1\u0080\u0098\u00a8\u0006\"\u000535817\u0012\u0011\bU\u0012\u0006\u0010\u00eb\u0080\u0098\u00a8\u0006\"\u000535818\u0012\u0011\bV\u0012\u0006\u0010\u009f\u0081\u0098\u00a8\u0006\"\u000535819\u0012\u0011\bW\u0012\u0006\u0010\u00b4\u0083\u0098\u00a8\u0006\"\u000535822\u0012\u0011\bX\u0012\u0006\u0010\u0081\u0084\u0098\u00a8\u0006\"\u000535823\u0012\u0011\bY\u0012\u0006\u0010\u00d7\u0084\u0098\u00a8\u0006\"\u000535723\u0012\u0011\bZ\u0012\u0006\u0010\u0095\u0085\u0098\u00a8\u0006\"\u000535722\u0012\u0011\b[\u0012\u0006\u0010\u00fc\u0086\u0098\u00a8\u0006\"\u000535827\u0012\u0011\b\\\u0012\u0006\u0010\u00a5\u0087\u0098\u00a8\u0006\"\u000535828\u0012\u0011\b]\u0012\u0006\u0010\u00c7\u0087\u0098\u00a8\u0006\"\u000535716\u0012\u0011\b^\u0012\u0006\u0010\u0091\u0088\u0098\u00a8\u0006\"\u000535715\u001a\b\u001a\u0006JXJG49 \u008e\u00e8\u0097\u00a8\u0006\"e\n4\n\u00157edee734-3-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00037260\u0001\u0012\u001d\r\u0083\u00f7\u0012\u00c2\u0015i2\u0092\u00c2\u001d\u0000\u0000\u001cC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u00f0@(\u008e\u00e8\u0097\u00a8\u0006B\b\u001a\u0006JXJG49" + }, + { + "type": "con_recorrido", + "entity": "\n$5064b884-e2bf-45c9-b7c9-3864b57572a5\u001a\u00ce\r\n4\n\u0015853dbd29-c-701ff27f-2\u0012\b15:36:00\u001a\b20230916 \u0000*\u00037260\u0001\u0012\u0011\b\u0007\u0012\u0006\u0010\u00aa\u00e8\u0097\u00a8\u0006\"\u000540348\u0012\u0011\b\b\u0012\u0006\u0010\u00e0\u00e8\u0097\u00a8\u0006\"\u000540349\u0012\u0011\b\t\u0012\u0006\u0010\u00fc\u00e8\u0097\u00a8\u0006\"\u000540350\u0012\u0011\b\n\u0012\u0006\u0010\u00bb\u00e9\u0097\u00a8\u0006\"\u000540351\u0012\u0011\b\u000b\u0012\u0006\u0010\u0099\u00ea\u0097\u00a8\u0006\"\u000540352\u0012\u0011\b\f\u0012\u0006\u0010\u00f1\u00ea\u0097\u00a8\u0006\"\u000541970\u0012\u0011\b\r\u0012\u0006\u0010\u00fb\u00ea\u0097\u00a8\u0006\"\u000540542\u0012\u0011\b\u000e\u0012\u0006\u0010\u0089\u00eb\u0097\u00a8\u0006\"\u000541971\u0012\u0011\b\u000f\u0012\u0006\u0010\u009f\u00eb\u0097\u00a8\u0006\"\u000540541\u0012\u0011\b\u0010\u0012\u0006\u0010\u00ae\u00eb\u0097\u00a8\u0006\"\u000541972\u0012\u0011\b\u0011\u0012\u0006\u0010\u00c5\u00eb\u0097\u00a8\u0006\"\u000540540\u0012\u0011\b\u0012\u0012\u0006\u0010\u00f7\u00eb\u0097\u00a8\u0006\"\u000540539\u0012\u0011\b\u0013\u0012\u0006\u0010\u00b5\u00ec\u0097\u00a8\u0006\"\u000542855\u0012\u0011\b\u0014\u0012\u0006\u0010\u00db\u00ec\u0097\u00a8\u0006\"\u000541975\u0012\u0011\b\u0015\u0012\u0006\u0010\u00f0\u00ec\u0097\u00a8\u0006\"\u000542857\u0012\u0011\b\u0016\u0012\u0006\u0010\u008e\u00ed\u0097\u00a8\u0006\"\u000538697\u0012\u0011\b\u0017\u0012\u0006\u0010\u00b9\u00ed\u0097\u00a8\u0006\"\u000538646\u0012\u0011\b\u0018\u0012\u0006\u0010\u00dc\u00ed\u0097\u00a8\u0006\"\u000538632\u0012\u0011\b\u0019\u0012\u0006\u0010\u00af\u00ee\u0097\u00a8\u0006\"\u000538767\u0012\u0011\b\u001a\u0012\u0006\u0010\u00e9\u00ee\u0097\u00a8\u0006\"\u000538768\u0012\u0011\b\u001b\u0012\u0006\u0010\u009b\u00ef\u0097\u00a8\u0006\"\u000538769\u0012\u0011\b\u001c\u0012\u0006\u0010\u00bb\u00ef\u0097\u00a8\u0006\"\u000549357\u0012\u0011\b\u001d\u0012\u0006\u0010\u00e9\u00ef\u0097\u00a8\u0006\"\u000538771\u0012\u0011\b\u001e\u0012\u0006\u0010\u0094\u00f0\u0097\u00a8\u0006\"\u000538668\u0012\u0011\b\u001f\u0012\u0006\u0010\u00ed\u00f0\u0097\u00a8\u0006\"\u000538661\u0012\u0011\b \u0012\u0006\u0010\u00c0\u00f1\u0097\u00a8\u0006\"\u000538657\u0012\u0011\b!\u0012\u0006\u0010\u00f8\u00f1\u0097\u00a8\u0006\"\u000538743\u0012\u0011\b\"\u0012\u0006\u0010\u00b9\u00f2\u0097\u00a8\u0006\"\u000538652\u0012\u0011\b#\u0012\u0006\u0010\u00fd\u00f2\u0097\u00a8\u0006\"\u000538721\u0012\u0011\b$\u0012\u0006\u0010\u00b7\u00f3\u0097\u00a8\u0006\"\u000538659\u0012\u0011\b%\u0012\u0006\u0010\u0087\u00f4\u0097\u00a8\u0006\"\u000538674\u0012\u0011\b&\u0012\u0006\u0010\u00cb\u00f4\u0097\u00a8\u0006\"\u000538649\u0012\u0011\b'\u0012\u0006\u0010\u0093\u00f5\u0097\u00a8\u0006\"\u000538718\u0012\u0011\b(\u0012\u0006\u0010\u00d5\u00f5\u0097\u00a8\u0006\"\u000538735\u0012\u0011\b)\u0012\u0006\u0010\u0090\u00f6\u0097\u00a8\u0006\"\u000542270\u0012\u0011\b*\u0012\u0006\u0010\u00bf\u00f6\u0097\u00a8\u0006\"\u000542271\u0012\u0011\b+\u0012\u0006\u0010\u0093\u00f8\u0097\u00a8\u0006\"\u000538688\u0012\u0011\b,\u0012\u0006\u0010\u00d0\u00f8\u0097\u00a8\u0006\"\u000538673\u0012\u0011\b-\u0012\u0006\u0010\u00a0\u00f9\u0097\u00a8\u0006\"\u000539785\u0012\u0011\b.\u0012\u0006\u0010\u00ce\u00f9\u0097\u00a8\u0006\"\u000538664\u0012\u0011\b/\u0012\u0006\u0010\u008a\u00fa\u0097\u00a8\u0006\"\u000538702\u0012\u0011\b0\u0012\u0006\u0010\u00bc\u00fa\u0097\u00a8\u0006\"\u000539787\u0012\u0011\b1\u0012\u0006\u0010\u00ec\u00fa\u0097\u00a8\u0006\"\u000538501\u0012\u0011\b2\u0012\u0006\u0010\u00ae\u00fb\u0097\u00a8\u0006\"\u000538692\u0012\u0011\b3\u0012\u0006\u0010\u00ff\u00fb\u0097\u00a8\u0006\"\u000538714\u0012\u0011\b4\u0012\u0006\u0010\u00bb\u00fc\u0097\u00a8\u0006\"\u000539791\u0012\u0011\b5\u0012\u0006\u0010\u00e5\u00fc\u0097\u00a8\u0006\"\u000538506\u0012\u0011\b6\u0012\u0006\u0010\u00a1\u00fd\u0097\u00a8\u0006\"\u000538635\u0012\u0011\b7\u0012\u0006\u0010\u00ca\u00fd\u0097\u00a8\u0006\"\u000538509\u0012\u0011\b8\u0012\u0006\u0010\u00f6\u00fd\u0097\u00a8\u0006\"\u000538642\u0012\u0011\b9\u0012\u0006\u0010\u00b8\u00fe\u0097\u00a8\u0006\"\u000539795\u0012\u0011\b:\u0012\u0006\u0010\u00db\u00fe\u0097\u00a8\u0006\"\u000538502\u0012\u0011\b;\u0012\u0006\u0010\u00b1\u00ff\u0097\u00a8\u0006\"\u000538503\u0012\u0011\b<\u0012\u0006\u0010\u0090\u0082\u0098\u00a8\u0006\"\u000535693\u0012\u0011\b=\u0012\u0006\u0010\u00e1\u0082\u0098\u00a8\u0006\"\u000535694\u0012\u0011\b>\u0012\u0006\u0010\u0093\u0083\u0098\u00a8\u0006\"\u000535695\u0012\u0011\b?\u0012\u0006\u0010\u00e6\u0083\u0098\u00a8\u0006\"\u000535696\u0012\u0011\b@\u0012\u0006\u0010\u00f0\u0085\u0098\u00a8\u0006\"\u000535697\u0012\u0011\bA\u0012\u0006\u0010\u0094\u0087\u0098\u00a8\u0006\"\u00052-Jan\u0012\u0011\bB\u0012\u0006\u0010\u00c8\u0087\u0098\u00a8\u0006\"\u000542460\u0012\u0011\bC\u0012\u0006\u0010\u008c\u0088\u0098\u00a8\u0006\"\u000535690\u0012\u0011\bD\u0012\u0006\u0010\u00bc\u0089\u0098\u00a8\u0006\"\u000535700\u0012\u0011\bE\u0012\u0006\u0010\u00fa\u008a\u0098\u00a8\u0006\"\u000535703\u0012\u0011\bF\u0012\u0006\u0010\u0098\u008b\u0098\u00a8\u0006\"\u000535704\u0012\u0011\bG\u0012\u0006\u0010\u00bd\u008b\u0098\u00a8\u0006\"\u000535705\u0012\u0011\bH\u0012\u0006\u0010\u00ea\u008b\u0098\u00a8\u0006\"\u000535706\u0012\u0011\bI\u0012\u0006\u0010\u00ca\u008c\u0098\u00a8\u0006\"\u000535707\u0012\u0011\bJ\u0012\u0006\u0010\u008f\u008d\u0098\u00a8\u0006\"\u000535708\u0012\u0011\bK\u0012\u0006\u0010\u00af\u008d\u0098\u00a8\u0006\"\u000535709\u0012\u0011\bL\u0012\u0006\u0010\u0088\u008f\u0098\u00a8\u0006\"\u000537522\u0012\u0011\bM\u0012\u0006\u0010\u00d7\u008f\u0098\u00a8\u0006\"\u000539599\u0012\u0011\bN\u0012\u0006\u0010\u00b5\u0090\u0098\u00a8\u0006\"\u000550034\u0012\u0011\bO\u0012\u0006\u0010\u0097\u0091\u0098\u00a8\u0006\"\u000540903\u0012\u0011\bP\u0012\u0006\u0010\u00e4\u0091\u0098\u00a8\u0006\"\u000540904\u0012\u0011\bQ\u0012\u0006\u0010\u00e6\u0092\u0098\u00a8\u0006\"\u000535814\u0012\u0011\bR\u0012\u0006\u0010\u009f\u0094\u0098\u00a8\u0006\"\u000535815\u0012\u0011\bS\u0012\u0006\u0010\u00f0\u0094\u0098\u00a8\u0006\"\u000535816\u0012\u0011\bT\u0012\u0006\u0010\u00fd\u0094\u0098\u00a8\u0006\"\u000535817\u0012\u0011\bU\u0012\u0006\u0010\u00f1\u0095\u0098\u00a8\u0006\"\u000535818\u0012\u0011\bV\u0012\u0006\u0010\u00da\u0096\u0098\u00a8\u0006\"\u000535819\u0012\u0011\bW\u0012\u0006\u0010\u00a3\u009b\u0098\u00a8\u0006\"\u000535822\u0012\u0011\bX\u0012\u0006\u0010\u00cb\u009c\u0098\u00a8\u0006\"\u000535823\u0012\u0011\bY\u0012\u0006\u0010\u008d\u009e\u0098\u00a8\u0006\"\u000535723\u0012\u0011\bZ\u0012\u0006\u0010\u009a\u009f\u0098\u00a8\u0006\"\u000535722\u0012\u0011\b[\u0012\u0006\u0010\u00bb\u00a3\u0098\u00a8\u0006\"\u000535827\u0012\u0011\b\\\u0012\u0006\u0010\u009e\u00a4\u0098\u00a8\u0006\"\u000535828\u0012\u0011\b]\u0012\u0006\u0010\u00f3\u00a4\u0098\u00a8\u0006\"\u000535716\u0012\u0011\b^\u0012\u0006\u0010\u00aa\u00a6\u0098\u00a8\u0006\"\u000535715\u001a\b\u001a\u0006RWJF49 \u0094\u00e8\u0097\u00a8\u0006\"e\n4\n\u0015853dbd29-c-701ff27f-2\u0012\b15:36:00\u001a\b20230916 \u0000*\u00037260\u0001\u0012\u001d\rw\u00d9\u0012\u00c2\u0015\u00eaE\u0092\u00c2\u001d\u0000\u0000\u00d8B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008e\u00e3\u00a8@(\u0094\u00e8\u0097\u00a8\u0006B\b\u001a\u0006RWJF49" + }, + { + "type": "con_recorrido", + "entity": "\n$519cc717-383c-44d6-8c39-b25e39ff7503\u001a\u00dc\u0005\n/\n\u001025028-701ff27f-2\u0012\b14:42:00\u001a\b20230916 \u0000*\u00037270\u0000\u0012\u0013\b8\u0012\u0006\u0010\u00b6\u00e8\u0097\u00a8\u0006\"\u00074838437\u0012\u0011\b9\u0012\u0006\u0010\u00f0\u00e8\u0097\u00a8\u0006\"\u000545085\u0012\u0011\b:\u0012\u0006\u0010\u00c1\u00e9\u0097\u00a8\u0006\"\u000545086\u0012\u0011\b;\u0012\u0006\u0010\u00f6\u00e9\u0097\u00a8\u0006\"\u000538539\u0012\u0011\b<\u0012\u0006\u0010\u00b9\u00ea\u0097\u00a8\u0006\"\u000538540\u0012\u0011\b=\u0012\u0006\u0010\u0089\u00eb\u0097\u00a8\u0006\"\u000538544\u0012\u0011\b>\u0012\u0006\u0010\u00ce\u00eb\u0097\u00a8\u0006\"\u000538545\u0012\u0011\b?\u0012\u0006\u0010\u00a7\u00ec\u0097\u00a8\u0006\"\u000538546\u0012\u0011\b@\u0012\u0006\u0010\u00a0\u00ed\u0097\u00a8\u0006\"\u000538548\u0012\u0011\bA\u0012\u0006\u0010\u00e1\u00ed\u0097\u00a8\u0006\"\u000538549\u0012\u0011\bB\u0012\u0006\u0010\u00f4\u00ee\u0097\u00a8\u0006\"\u000538551\u0012\u0011\bC\u0012\u0006\u0010\u00c6\u00ef\u0097\u00a8\u0006\"\u000538552\u0012\u0011\bD\u0012\u0006\u0010\u0096\u00f0\u0097\u00a8\u0006\"\u000549359\u0012\u0011\bE\u0012\u0006\u0010\u00c6\u00f0\u0097\u00a8\u0006\"\u000549360\u0012\u0011\bF\u0012\u0006\u0010\u00b1\u00f1\u0097\u00a8\u0006\"\u000549361\u0012\u0011\bG\u0012\u0006\u0010\u00cc\u00f1\u0097\u00a8\u0006\"\u000549362\u0012\u0011\bH\u0012\u0006\u0010\u00f9\u00f1\u0097\u00a8\u0006\"\u000549363\u0012\u0011\bI\u0012\u0006\u0010\u00a9\u00f2\u0097\u00a8\u0006\"\u000549364\u0012\u0011\bJ\u0012\u0006\u0010\u00cc\u00f2\u0097\u00a8\u0006\"\u000549365\u0012\u0011\bK\u0012\u0006\u0010\u008f\u00f3\u0097\u00a8\u0006\"\u000538560\u0012\u0011\bL\u0012\u0006\u0010\u00b5\u00f3\u0097\u00a8\u0006\"\u000542857\u0012\u0011\bM\u0012\u0006\u0010\u00d4\u00f3\u0097\u00a8\u0006\"\u000538562\u0012\u0011\bN\u0012\u0006\u0010\u00ae\u00f4\u0097\u00a8\u0006\"\u000540539\u0012\u0011\bO\u0012\u0006\u0010\u00db\u00f4\u0097\u00a8\u0006\"\u000540540\u0012\u0011\bP\u0012\u0006\u0010\u0086\u00f5\u0097\u00a8\u0006\"\u000540541\u0012\u0011\bQ\u0012\u0006\u0010\u0080\u00f6\u0097\u00a8\u0006\"\u000540543\u0012\u0011\bR\u0012\u0006\u0010\u0089\u00f6\u0097\u00a8\u0006\"\u000541943\u0012\u0011\bS\u0012\u0006\u0010\u00eb\u00f6\u0097\u00a8\u0006\"\u000540544\u0012\u0011\bT\u0012\u0006\u0010\u009f\u00f8\u0097\u00a8\u0006\"\u000540548\u0012\u0011\bU\u0012\u0006\u0010\u00c0\u00f8\u0097\u00a8\u0006\"\u000540443\u0012\u0011\bV\u0012\u0006\u0010\u00e4\u00f8\u0097\u00a8\u0006\"\u000540550\u0012\u0011\bW\u0012\u0006\u0010\u0089\u00f9\u0097\u00a8\u0006\"\u000540551\u0012\u0011\bX\u0012\u0006\u0010\u009c\u00f9\u0097\u00a8\u0006\"\u000540441\u0012\u0011\bY\u0012\u0006\u0010\u00fd\u00f9\u0097\u00a8\u0006\"\u000540552\u0012\u0011\bZ\u0012\u0006\u0010\u00b0\u00fa\u0097\u00a8\u0006\"\u000540553\u001a\b\u001a\u0006HYVS15 \u0092\u00e8\u0097\u00a8\u0006\"`\n/\n\u001025028-701ff27f-2\u0012\b14:42:00\u001a\b20230916 \u0000*\u00037270\u0000\u0012\u001d\r\u00bc\u000f\u0013\u00c2\u0015\u0018,\u0092\u00c2\u001d\u0000\u0000\u00a7C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00c7q\u0090A(\u0092\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HYVS15" + }, + { + "type": "con_recorrido", + "entity": "\n$96177e05-a548-4d52-8afc-71b5e81d72ef\u001a\u00e2\n\n/\n\u001025031-701ff27f-2\u0012\b15:12:00\u001a\b20230916 \u0000*\u00037270\u0000\u0012\u0011\b\u0016\u0012\u0006\u0010\u0084\u00e9\u0097\u00a8\u0006\"\u000539599\u0012\u0011\b\u0017\u0012\u0006\u0010\u009c\u00e9\u0097\u00a8\u0006\"\u000539600\u0012\u0011\b\u0018\u0012\u0006\u0010\u00e2\u00e9\u0097\u00a8\u0006\"\u000537496\u0012\u0011\b\u0019\u0012\u0006\u0010\u0095\u00ea\u0097\u00a8\u0006\"\u000545064\u0012\u0011\b\u001a\u0012\u0006\u0010\u00e1\u00ea\u0097\u00a8\u0006\"\u000537506\u0012\u0011\b\u001b\u0012\u0006\u0010\u00ad\u00eb\u0097\u00a8\u0006\"\u000545069\u0012\u0011\b\u001c\u0012\u0006\u0010\u009f\u00ec\u0097\u00a8\u0006\"\u000537523\u0012\u0011\b\u001d\u0012\u0006\u0010\u00c8\u00ec\u0097\u00a8\u0006\"\u000537477\u0012\u0011\b\u001e\u0012\u0006\u0010\u009e\u00ed\u0097\u00a8\u0006\"\u000549310\u0012\u0011\b\u001f\u0012\u0006\u0010\u00bd\u00ed\u0097\u00a8\u0006\"\u000549311\u0012\u0011\b \u0012\u0006\u0010\u00f4\u00ed\u0097\u00a8\u0006\"\u000539634\u0012\u0011\b!\u0012\u0006\u0010\u008c\u00ee\u0097\u00a8\u0006\"\u000539635\u0012\u0011\b\"\u0012\u0006\u0010\u00ba\u00ee\u0097\u00a8\u0006\"\u000539636\u0012\u0011\b#\u0012\u0006\u0010\u00e9\u00ef\u0097\u00a8\u0006\"\u000539637\u0012\u0011\b$\u0012\u0006\u0010\u0099\u00f0\u0097\u00a8\u0006\"\u000549317\u0012\u0011\b%\u0012\u0006\u0010\u00b8\u00f0\u0097\u00a8\u0006\"\u000549318\u0012\u0011\b&\u0012\u0006\u0010\u00f8\u00f0\u0097\u00a8\u0006\"\u000549319\u0012\u0011\b'\u0012\u0006\u0010\u00b6\u00f1\u0097\u00a8\u0006\"\u000539641\u0012\u0011\b(\u0012\u0006\u0010\u00d8\u00f1\u0097\u00a8\u0006\"\u000539642\u0012\u0011\b)\u0012\u0006\u0010\u00eb\u00f3\u0097\u00a8\u0006\"\u000549325\u0012\u0011\b*\u0012\u0006\u0010\u00a9\u00f4\u0097\u00a8\u0006\"\u000549326\u0012\u0011\b+\u0012\u0006\u0010\u00c3\u00f4\u0097\u00a8\u0006\"\u000539648\u0012\u0011\b,\u0012\u0006\u0010\u00f3\u00f4\u0097\u00a8\u0006\"\u000539649\u0012\u0011\b-\u0012\u0006\u0010\u009b\u00f5\u0097\u00a8\u0006\"\u000545112\u0012\u0011\b.\u0012\u0006\u0010\u00c7\u00f5\u0097\u00a8\u0006\"\u000545113\u0012\u0011\b/\u0012\u0006\u0010\u0099\u00f6\u0097\u00a8\u0006\"\u000537490\u0012\u0011\b0\u0012\u0006\u0010\u00d0\u00f6\u0097\u00a8\u0006\"\u000545115\u0012\u0011\b1\u0012\u0006\u0010\u00e9\u00f6\u0097\u00a8\u0006\"\u000545116\u0012\u0011\b2\u0012\u0006\u0010\u00b3\u00f7\u0097\u00a8\u0006\"\u000545118\u0012\u0011\b3\u0012\u0006\u0010\u0082\u00f8\u0097\u00a8\u0006\"\u000545119\u0012\u0011\b4\u0012\u0006\u0010\u00b1\u00f8\u0097\u00a8\u0006\"\u000545120\u0012\u0011\b5\u0012\u0006\u0010\u00ec\u00f8\u0097\u00a8\u0006\"\u000545121\u0012\u0011\b6\u0012\u0006\u0010\u009a\u00f9\u0097\u00a8\u0006\"\u000538535\u0012\u0011\b7\u0012\u0006\u0010\u00ee\u00f9\u0097\u00a8\u0006\"\u000538536\u0012\u0013\b8\u0012\u0006\u0010\u0096\u00fa\u0097\u00a8\u0006\"\u00074838437\u0012\u0011\b9\u0012\u0006\u0010\u00d4\u00fa\u0097\u00a8\u0006\"\u000545085\u0012\u0011\b:\u0012\u0006\u0010\u00ac\u00fb\u0097\u00a8\u0006\"\u000545086\u0012\u0011\b;\u0012\u0006\u0010\u00e8\u00fb\u0097\u00a8\u0006\"\u000538539\u0012\u0011\b<\u0012\u0006\u0010\u00b5\u00fc\u0097\u00a8\u0006\"\u000538540\u0012\u0011\b=\u0012\u0006\u0010\u0093\u00fd\u0097\u00a8\u0006\"\u000538544\u0012\u0011\b>\u0012\u0006\u0010\u00e7\u00fd\u0097\u00a8\u0006\"\u000538545\u0012\u0011\b?\u0012\u0006\u0010\u00d7\u00fe\u0097\u00a8\u0006\"\u000538546\u0012\u0011\b@\u0012\u0006\u0010\u00f8\u00ff\u0097\u00a8\u0006\"\u000538548\u0012\u0011\bA\u0012\u0006\u0010\u00d1\u0080\u0098\u00a8\u0006\"\u000538549\u0012\u0011\bB\u0012\u0006\u0010\u00a3\u0082\u0098\u00a8\u0006\"\u000538551\u0012\u0011\bC\u0012\u0006\u0010\u009f\u0083\u0098\u00a8\u0006\"\u000538552\u0012\u0011\bD\u0012\u0006\u0010\u009b\u0084\u0098\u00a8\u0006\"\u000549359\u0012\u0011\bE\u0012\u0006\u0010\u00e7\u0084\u0098\u00a8\u0006\"\u000549360\u0012\u0011\bF\u0012\u0006\u0010\u0099\u0086\u0098\u00a8\u0006\"\u000549361\u0012\u0011\bG\u0012\u0006\u0010\u00c6\u0086\u0098\u00a8\u0006\"\u000549362\u0012\u0011\bH\u0012\u0006\u0010\u0095\u0087\u0098\u00a8\u0006\"\u000549363\u0012\u0011\bI\u0012\u0006\u0010\u00e8\u0087\u0098\u00a8\u0006\"\u000549364\u0012\u0011\bJ\u0012\u0006\u0010\u00a7\u0088\u0098\u00a8\u0006\"\u000549365\u0012\u0011\bK\u0012\u0006\u0010\u00a2\u0089\u0098\u00a8\u0006\"\u000538560\u0012\u0011\bL\u0012\u0006\u0010\u00e8\u0089\u0098\u00a8\u0006\"\u000542857\u0012\u0011\bM\u0012\u0006\u0010\u00a2\u008a\u0098\u00a8\u0006\"\u000538562\u0012\u0011\bN\u0012\u0006\u0010\u00d2\u008b\u0098\u00a8\u0006\"\u000540539\u0012\u0011\bO\u0012\u0006\u0010\u00ac\u008c\u0098\u00a8\u0006\"\u000540540\u0012\u0011\bP\u0012\u0006\u0010\u0083\u008d\u0098\u00a8\u0006\"\u000540541\u0012\u0011\bQ\u0012\u0006\u0010\u0085\u008f\u0098\u00a8\u0006\"\u000540543\u0012\u0011\bR\u0012\u0006\u0010\u0097\u008f\u0098\u00a8\u0006\"\u000541943\u0012\u0011\bS\u0012\u0006\u0010\u00f2\u0090\u0098\u00a8\u0006\"\u000540544\u0012\u0011\bT\u0012\u0006\u0010\u009a\u0094\u0098\u00a8\u0006\"\u000540548\u0012\u0011\bU\u0012\u0006\u0010\u00eb\u0094\u0098\u00a8\u0006\"\u000540443\u0012\u0011\bV\u0012\u0006\u0010\u00c4\u0095\u0098\u00a8\u0006\"\u000540550\u0012\u0011\bW\u0012\u0006\u0010\u00a1\u0096\u0098\u00a8\u0006\"\u000540551\u0012\u0011\bX\u0012\u0006\u0010\u00d4\u0096\u0098\u00a8\u0006\"\u000540441\u0012\u0011\bY\u0012\u0006\u0010\u00d3\u0098\u0098\u00a8\u0006\"\u000540552\u0012\u0011\bZ\u0012\u0006\u0010\u00db\u0099\u0098\u00a8\u0006\"\u000540553\u001a\b\u001a\u0006JSBB31 \u00b6\u00e8\u0097\u00a8\u0006\"`\n/\n\u001025031-701ff27f-2\u0012\b15:12:00\u001a\b20230916 \u0000*\u00037270\u0000\u0012\u001d\r\u0002E\u0013\u00c2\u0015\u00bf\u0011\u0092\u00c2\u001d\u0000\u0000lC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b6\u00e8\u0097\u00a8\u0006B\b\u001a\u0006JSBB31" + }, + { + "type": "con_recorrido", + "entity": "\n$129c397c-44a4-4d4e-a6de-9a0b8ff4cd9b\u001a\u00f0\t\n/\n\u001025030-701ff27f-2\u0012\b15:02:00\u001a\b20230916 \u0000*\u00037270\u0000\u0012\u0011\b\u001c\u0012\u0006\u0010\u009d\u00e9\u0097\u00a8\u0006\"\u000537523\u0012\u0011\b\u001d\u0012\u0006\u0010\u00c8\u00e9\u0097\u00a8\u0006\"\u000537477\u0012\u0011\b\u001e\u0012\u0006\u0010\u00a2\u00ea\u0097\u00a8\u0006\"\u000549310\u0012\u0011\b\u001f\u0012\u0006\u0010\u00c3\u00ea\u0097\u00a8\u0006\"\u000549311\u0012\u0011\b \u0012\u0006\u0010\u00fc\u00ea\u0097\u00a8\u0006\"\u000539634\u0012\u0011\b!\u0012\u0006\u0010\u0096\u00eb\u0097\u00a8\u0006\"\u000539635\u0012\u0011\b\"\u0012\u0006\u0010\u00c4\u00eb\u0097\u00a8\u0006\"\u000539636\u0012\u0011\b#\u0012\u0006\u0010\u00f8\u00ec\u0097\u00a8\u0006\"\u000539637\u0012\u0011\b$\u0012\u0006\u0010\u00aa\u00ed\u0097\u00a8\u0006\"\u000549317\u0012\u0011\b%\u0012\u0006\u0010\u00c9\u00ed\u0097\u00a8\u0006\"\u000549318\u0012\u0011\b&\u0012\u0006\u0010\u0089\u00ee\u0097\u00a8\u0006\"\u000549319\u0012\u0011\b'\u0012\u0006\u0010\u00c8\u00ee\u0097\u00a8\u0006\"\u000539641\u0012\u0011\b(\u0012\u0006\u0010\u00ea\u00ee\u0097\u00a8\u0006\"\u000539642\u0012\u0011\b)\u0012\u0006\u0010\u00fa\u00f0\u0097\u00a8\u0006\"\u000549325\u0012\u0011\b*\u0012\u0006\u0010\u00b7\u00f1\u0097\u00a8\u0006\"\u000549326\u0012\u0011\b+\u0012\u0006\u0010\u00d0\u00f1\u0097\u00a8\u0006\"\u000539648\u0012\u0011\b,\u0012\u0006\u0010\u00ff\u00f1\u0097\u00a8\u0006\"\u000539649\u0012\u0011\b-\u0012\u0006\u0010\u00a5\u00f2\u0097\u00a8\u0006\"\u000545112\u0012\u0011\b.\u0012\u0006\u0010\u00d0\u00f2\u0097\u00a8\u0006\"\u000545113\u0012\u0011\b/\u0012\u0006\u0010\u009f\u00f3\u0097\u00a8\u0006\"\u000537490\u0012\u0011\b0\u0012\u0006\u0010\u00d4\u00f3\u0097\u00a8\u0006\"\u000545115\u0012\u0011\b1\u0012\u0006\u0010\u00ec\u00f3\u0097\u00a8\u0006\"\u000545116\u0012\u0011\b2\u0012\u0006\u0010\u00b2\u00f4\u0097\u00a8\u0006\"\u000545118\u0012\u0011\b3\u0012\u0006\u0010\u00fd\u00f4\u0097\u00a8\u0006\"\u000545119\u0012\u0011\b4\u0012\u0006\u0010\u00aa\u00f5\u0097\u00a8\u0006\"\u000545120\u0012\u0011\b5\u0012\u0006\u0010\u00e1\u00f5\u0097\u00a8\u0006\"\u000545121\u0012\u0011\b6\u0012\u0006\u0010\u008c\u00f6\u0097\u00a8\u0006\"\u000538535\u0012\u0011\b7\u0012\u0006\u0010\u00da\u00f6\u0097\u00a8\u0006\"\u000538536\u0012\u0013\b8\u0012\u0006\u0010\u0080\u00f7\u0097\u00a8\u0006\"\u00074838437\u0012\u0011\b9\u0012\u0006\u0010\u00b9\u00f7\u0097\u00a8\u0006\"\u000545085\u0012\u0011\b:\u0012\u0006\u0010\u008b\u00f8\u0097\u00a8\u0006\"\u000545086\u0012\u0011\b;\u0012\u0006\u0010\u00c1\u00f8\u0097\u00a8\u0006\"\u000538539\u0012\u0011\b<\u0012\u0006\u0010\u0088\u00f9\u0097\u00a8\u0006\"\u000538540\u0012\u0011\b=\u0012\u0006\u0010\u00dd\u00f9\u0097\u00a8\u0006\"\u000538544\u0012\u0011\b>\u0012\u0006\u0010\u00aa\u00fa\u0097\u00a8\u0006\"\u000538545\u0012\u0011\b?\u0012\u0006\u0010\u008f\u00fb\u0097\u00a8\u0006\"\u000538546\u0012\u0011\b@\u0012\u0006\u0010\u009f\u00fc\u0097\u00a8\u0006\"\u000538548\u0012\u0011\bA\u0012\u0006\u0010\u00ee\u00fc\u0097\u00a8\u0006\"\u000538549\u0012\u0011\bB\u0012\u0006\u0010\u00a7\u00fe\u0097\u00a8\u0006\"\u000538551\u0012\u0011\bC\u0012\u0006\u0010\u0093\u00ff\u0097\u00a8\u0006\"\u000538552\u0012\u0011\bD\u0012\u0006\u0010\u00ff\u00ff\u0097\u00a8\u0006\"\u000549359\u0012\u0011\bE\u0012\u0006\u0010\u00c1\u0080\u0098\u00a8\u0006\"\u000549360\u0012\u0011\bF\u0012\u0006\u0010\u00da\u0081\u0098\u00a8\u0006\"\u000549361\u0012\u0011\bG\u0012\u0006\u0010\u0081\u0082\u0098\u00a8\u0006\"\u000549362\u0012\u0011\bH\u0012\u0006\u0010\u00c4\u0082\u0098\u00a8\u0006\"\u000549363\u0012\u0011\bI\u0012\u0006\u0010\u008a\u0083\u0098\u00a8\u0006\"\u000549364\u0012\u0011\bJ\u0012\u0006\u0010\u00c1\u0083\u0098\u00a8\u0006\"\u000549365\u0012\u0011\bK\u0012\u0006\u0010\u00a8\u0084\u0098\u00a8\u0006\"\u000538560\u0012\u0011\bL\u0012\u0006\u0010\u00e3\u0084\u0098\u00a8\u0006\"\u000542857\u0012\u0011\bM\u0012\u0006\u0010\u0094\u0085\u0098\u00a8\u0006\"\u000538562\u0012\u0011\bN\u0012\u0006\u0010\u00a6\u0086\u0098\u00a8\u0006\"\u000540539\u0012\u0011\bO\u0012\u0006\u0010\u00f1\u0086\u0098\u00a8\u0006\"\u000540540\u0012\u0011\bP\u0012\u0006\u0010\u00b9\u0087\u0098\u00a8\u0006\"\u000540541\u0012\u0011\bQ\u0012\u0006\u0010\u008d\u0089\u0098\u00a8\u0006\"\u000540543\u0012\u0011\bR\u0012\u0006\u0010\u009c\u0089\u0098\u00a8\u0006\"\u000541943\u0012\u0011\bS\u0012\u0006\u0010\u00ce\u008a\u0098\u00a8\u0006\"\u000540544\u0012\u0011\bT\u0012\u0006\u0010\u00a2\u008d\u0098\u00a8\u0006\"\u000540548\u0012\u0011\bU\u0012\u0006\u0010\u00e2\u008d\u0098\u00a8\u0006\"\u000540443\u0012\u0011\bV\u0012\u0006\u0010\u00a9\u008e\u0098\u00a8\u0006\"\u000540550\u0012\u0011\bW\u0012\u0006\u0010\u00f2\u008e\u0098\u00a8\u0006\"\u000540551\u0012\u0011\bX\u0012\u0006\u0010\u009a\u008f\u0098\u00a8\u0006\"\u000540441\u0012\u0011\bY\u0012\u0006\u0010\u00e2\u0090\u0098\u00a8\u0006\"\u000540552\u0012\u0011\bZ\u0012\u0006\u0010\u00cc\u0091\u0098\u00a8\u0006\"\u000540553\u001a\b\u001a\u0006KDXL64 \u00ba\u00e8\u0097\u00a8\u0006\"`\n/\n\u001025030-701ff27f-2\u0012\b15:02:00\u001a\b20230916 \u0000*\u00037270\u0000\u0012\u001d\r\u00ddN\u0013\u00c2\u0015\u00ef\u0018\u0092\u00c2\u001d\u0000\u0000pC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008e\u00e3x@(\u00ba\u00e8\u0097\u00a8\u0006B\b\u001a\u0006KDXL64" + }, + { + "type": "con_recorrido", + "entity": "\n$46f93ace-ed66-4c7e-b1cb-2c7a40c30c09\u001a\u00de\r\n/\n\u001025033-701ff27f-2\u0012\b15:32:00\u001a\b20230916 \u0000*\u00037270\u0000\u0012\u0011\b\u0002\u0012\u0006\u0010\u0081\u00e9\u0097\u00a8\u0006\"\u000540808\u0012\u0011\b\u0003\u0012\u0006\u0010\u0090\u00e9\u0097\u00a8\u0006\"\u000535715\u0012\u0011\b\u0004\u0012\u0006\u0010\u00bc\u00e9\u0097\u00a8\u0006\"\u000535716\u0012\u0011\b\u0005\u0012\u0006\u0010\u00cc\u00e9\u0097\u00a8\u0006\"\u000535717\u0012\u0011\b\u0006\u0012\u0006\u0010\u00f8\u00e9\u0097\u00a8\u0006\"\u000535718\u0012\u0011\b\u0007\u0012\u0006\u0010\u00a0\u00ea\u0097\u00a8\u0006\"\u000535719\u0012\u0011\b\b\u0012\u0006\u0010\u00ca\u00ea\u0097\u00a8\u0006\"\u000535720\u0012\u0011\b\t\u0012\u0006\u0010\u00e9\u00ea\u0097\u00a8\u0006\"\u000535721\u0012\u0011\b\n\u0012\u0006\u0010\u00f8\u00ea\u0097\u00a8\u0006\"\u000535722\u0012\u0011\b\u000b\u0012\u0006\u0010\u00a8\u00eb\u0097\u00a8\u0006\"\u000535723\u0012\u0011\b\f\u0012\u0006\u0010\u00d7\u00eb\u0097\u00a8\u0006\"\u000535724\u0012\u0011\b\r\u0012\u0006\u0010\u009a\u00ec\u0097\u00a8\u0006\"\u000535726\u0012\u0011\b\u000e\u0012\u0006\u0010\u00e1\u00ec\u0097\u00a8\u0006\"\u000535727\u0012\u0011\b\u000f\u0012\u0006\u0010\u00af\u00ed\u0097\u00a8\u0006\"\u000535820\u0012\u0011\b\u0010\u0012\u0006\u0010\u00cd\u00ed\u0097\u00a8\u0006\"\u000535729\u0012\u0011\b\u0011\u0012\u0006\u0010\u00eb\u00ed\u0097\u00a8\u0006\"\u000535730\u0012\u0011\b\u0012\u0012\u0006\u0010\u008a\u00ee\u0097\u00a8\u0006\"\u000535731\u0012\u0011\b\u0013\u0012\u0006\u0010\u00c9\u00ee\u0097\u00a8\u0006\"\u000535201\u0012\u0011\b\u0014\u0012\u0006\u0010\u0097\u00ef\u0097\u00a8\u0006\"\u000535202\u0012\u0011\b\u0015\u0012\u0006\u0010\u0081\u00f0\u0097\u00a8\u0006\"\u000590001\u0012\u0011\b\u0016\u0012\u0006\u0010\u00d6\u00f0\u0097\u00a8\u0006\"\u000539599\u0012\u0011\b\u0017\u0012\u0006\u0010\u00ec\u00f0\u0097\u00a8\u0006\"\u000539600\u0012\u0011\b\u0018\u0012\u0006\u0010\u00ad\u00f1\u0097\u00a8\u0006\"\u000537496\u0012\u0011\b\u0019\u0012\u0006\u0010\u00dd\u00f1\u0097\u00a8\u0006\"\u000545064\u0012\u0011\b\u001a\u0012\u0006\u0010\u00a4\u00f2\u0097\u00a8\u0006\"\u000537506\u0012\u0011\b\u001b\u0012\u0006\u0010\u00ed\u00f2\u0097\u00a8\u0006\"\u000545069\u0012\u0011\b\u001c\u0012\u0006\u0010\u00de\u00f3\u0097\u00a8\u0006\"\u000537523\u0012\u0011\b\u001d\u0012\u0006\u0010\u0086\u00f4\u0097\u00a8\u0006\"\u000537477\u0012\u0011\b\u001e\u0012\u0006\u0010\u00dd\u00f4\u0097\u00a8\u0006\"\u000549310\u0012\u0011\b\u001f\u0012\u0006\u0010\u00fc\u00f4\u0097\u00a8\u0006\"\u000549311\u0012\u0011\b \u0012\u0006\u0010\u00b5\u00f5\u0097\u00a8\u0006\"\u000539634\u0012\u0011\b!\u0012\u0006\u0010\u00ce\u00f5\u0097\u00a8\u0006\"\u000539635\u0012\u0011\b\"\u0012\u0006\u0010\u00fd\u00f5\u0097\u00a8\u0006\"\u000539636\u0012\u0011\b#\u0012\u0006\u0010\u00b8\u00f7\u0097\u00a8\u0006\"\u000539637\u0012\u0011\b$\u0012\u0006\u0010\u00ed\u00f7\u0097\u00a8\u0006\"\u000549317\u0012\u0011\b%\u0012\u0006\u0010\u008e\u00f8\u0097\u00a8\u0006\"\u000549318\u0012\u0011\b&\u0012\u0006\u0010\u00d5\u00f8\u0097\u00a8\u0006\"\u000549319\u0012\u0011\b'\u0012\u0006\u0010\u009a\u00f9\u0097\u00a8\u0006\"\u000539641\u0012\u0011\b(\u0012\u0006\u0010\u00c1\u00f9\u0097\u00a8\u0006\"\u000539642\u0012\u0011\b)\u0012\u0006\u0010\u0080\u00fc\u0097\u00a8\u0006\"\u000549325\u0012\u0011\b*\u0012\u0006\u0010\u00cb\u00fc\u0097\u00a8\u0006\"\u000549326\u0012\u0011\b+\u0012\u0006\u0010\u00ea\u00fc\u0097\u00a8\u0006\"\u000539648\u0012\u0011\b,\u0012\u0006\u0010\u00a4\u00fd\u0097\u00a8\u0006\"\u000539649\u0012\u0011\b-\u0012\u0006\u0010\u00d5\u00fd\u0097\u00a8\u0006\"\u000545112\u0012\u0011\b.\u0012\u0006\u0010\u008c\u00fe\u0097\u00a8\u0006\"\u000545113\u0012\u0011\b/\u0012\u0006\u0010\u00f1\u00fe\u0097\u00a8\u0006\"\u000537490\u0012\u0011\b0\u0012\u0006\u0010\u00b7\u00ff\u0097\u00a8\u0006\"\u000545115\u0012\u0011\b1\u0012\u0006\u0010\u00d8\u00ff\u0097\u00a8\u0006\"\u000545116\u0012\u0011\b2\u0012\u0006\u0010\u00b6\u0080\u0098\u00a8\u0006\"\u000545118\u0012\u0011\b3\u0012\u0006\u0010\u009c\u0081\u0098\u00a8\u0006\"\u000545119\u0012\u0011\b4\u0012\u0006\u0010\u00db\u0081\u0098\u00a8\u0006\"\u000545120\u0012\u0011\b5\u0012\u0006\u0010\u00a9\u0082\u0098\u00a8\u0006\"\u000545121\u0012\u0011\b6\u0012\u0006\u0010\u00e6\u0082\u0098\u00a8\u0006\"\u000538535\u0012\u0011\b7\u0012\u0006\u0010\u00d7\u0083\u0098\u00a8\u0006\"\u000538536\u0012\u0013\b8\u0012\u0006\u0010\u008e\u0084\u0098\u00a8\u0006\"\u00074838437\u0012\u0011\b9\u0012\u0006\u0010\u00e2\u0084\u0098\u00a8\u0006\"\u000545085\u0012\u0011\b:\u0012\u0006\u0010\u00de\u0085\u0098\u00a8\u0006\"\u000545086\u0012\u0011\b;\u0012\u0006\u0010\u00b1\u0086\u0098\u00a8\u0006\"\u000538539\u0012\u0011\b<\u0012\u0006\u0010\u009f\u0087\u0098\u00a8\u0006\"\u000538540\u0012\u0011\b=\u0012\u0006\u0010\u00a7\u0088\u0098\u00a8\u0006\"\u000538544\u0012\u0011\b>\u0012\u0006\u0010\u00a3\u0089\u0098\u00a8\u0006\"\u000538545\u0012\u0011\b?\u0012\u0006\u0010\u00c9\u008a\u0098\u00a8\u0006\"\u000538546\u0012\u0011\b@\u0012\u0006\u0010\u00bc\u008c\u0098\u00a8\u0006\"\u000538548\u0012\u0011\bA\u0012\u0006\u0010\u00c6\u008d\u0098\u00a8\u0006\"\u000538549\u0012\u0011\bB\u0012\u0006\u0010\u0093\u0090\u0098\u00a8\u0006\"\u000538551\u0012\u0011\bC\u0012\u0006\u0010\u00db\u0091\u0098\u00a8\u0006\"\u000538552\u0012\u0011\bD\u0012\u0006\u0010\u00a8\u0093\u0098\u00a8\u0006\"\u000549359\u0012\u0011\bE\u0012\u0006\u0010\u00a8\u0094\u0098\u00a8\u0006\"\u000549360\u0012\u0011\bF\u0012\u0006\u0010\u00d7\u0096\u0098\u00a8\u0006\"\u000549361\u0012\u0011\bG\u0012\u0006\u0010\u00a5\u0097\u0098\u00a8\u0006\"\u000549362\u0012\u0011\bH\u0012\u0006\u0010\u00af\u0098\u0098\u00a8\u0006\"\u000549363\u0012\u0011\bI\u0012\u0006\u0010\u00c2\u0099\u0098\u00a8\u0006\"\u000549364\u0012\u0011\bJ\u0012\u0006\u0010\u00b5\u009a\u0098\u00a8\u0006\"\u000549365\u0012\u0011\bK\u0012\u0006\u0010\u0093\u009c\u0098\u00a8\u0006\"\u000538560\u0012\u0011\bL\u0012\u0006\u0010\u0095\u009d\u0098\u00a8\u0006\"\u000542857\u0012\u0011\bM\u0012\u0006\u0010\u0081\u009e\u0098\u00a8\u0006\"\u000538562\u0012\u0011\bN\u0012\u0006\u0010\u00ce\u00a0\u0098\u00a8\u0006\"\u000540539\u0012\u0011\bO\u0012\u0006\u0010\u00fc\u00a1\u0098\u00a8\u0006\"\u000540540\u0012\u0011\bP\u0012\u0006\u0010\u00a7\u00a3\u0098\u00a8\u0006\"\u000540541\u0012\u0011\bQ\u0012\u0006\u0010\u00ac\u00a7\u0098\u00a8\u0006\"\u000540543\u0012\u0011\bR\u0012\u0006\u0010\u00d3\u00a7\u0098\u00a8\u0006\"\u000541943\u0012\u0011\bS\u0012\u0006\u0010\u009d\u00ab\u0098\u00a8\u0006\"\u000540544\u0012\u0011\bT\u0012\u0006\u0010\u00bf\u00b2\u0098\u00a8\u0006\"\u000540548\u0012\u0011\bU\u0012\u0006\u0010\u00f8\u00b3\u0098\u00a8\u0006\"\u000540443\u0012\u0011\bV\u0012\u0006\u0010\u00c7\u00b5\u0098\u00a8\u0006\"\u000540550\u0012\u0011\bW\u0012\u0006\u0010\u00a2\u00b7\u0098\u00a8\u0006\"\u000540551\u0012\u0011\bX\u0012\u0006\u0010\u0099\u00b8\u0098\u00a8\u0006\"\u000540441\u0012\u0011\bY\u0012\u0006\u0010\u0087\u00bd\u0098\u00a8\u0006\"\u000540552\u0012\u0011\bZ\u0012\u0006\u0010\u00de\u00bf\u0098\u00a8\u0006\"\u000540553\u001a\b\u001a\u0006KFTK39 \u00b0\u00e8\u0097\u00a8\u0006\"`\n/\n\u001025033-701ff27f-2\u0012\b15:32:00\u001a\b20230916 \u0000*\u00037270\u0000\u0012\u001d\rQ[\u0013\u00c2\u0015=\u0003\u0092\u00c2\u001d\u0000\u0000\u00f0A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UU\u0085@(\u00b0\u00e8\u0097\u00a8\u0006B\b\u001a\u0006KFTK39" + }, + { + "type": "con_recorrido", + "entity": "\n$397be882-c455-4ccd-b92b-14a08984439c\u001a\u00f9\u0007\n/\n\u001025029-701ff27f-2\u0012\b14:52:00\u001a\b20230916 \u0000*\u00037270\u0000\u0012\u0011\b)\u0012\u0006\u0010\u0087\u00e9\u0097\u00a8\u0006\"\u000549325\u0012\u0011\b*\u0012\u0006\u0010\u00c9\u00e9\u0097\u00a8\u0006\"\u000549326\u0012\u0011\b+\u0012\u0006\u0010\u00e5\u00e9\u0097\u00a8\u0006\"\u000539648\u0012\u0011\b,\u0012\u0006\u0010\u0096\u00ea\u0097\u00a8\u0006\"\u000539649\u0012\u0011\b-\u0012\u0006\u0010\u00bf\u00ea\u0097\u00a8\u0006\"\u000545112\u0012\u0011\b.\u0012\u0006\u0010\u00ec\u00ea\u0097\u00a8\u0006\"\u000545113\u0012\u0011\b/\u0012\u0006\u0010\u00bd\u00eb\u0097\u00a8\u0006\"\u000537490\u0012\u0011\b0\u0012\u0006\u0010\u00f3\u00eb\u0097\u00a8\u0006\"\u000545115\u0012\u0011\b1\u0012\u0006\u0010\u008b\u00ec\u0097\u00a8\u0006\"\u000545116\u0012\u0011\b2\u0012\u0006\u0010\u00d2\u00ec\u0097\u00a8\u0006\"\u000545118\u0012\u0011\b3\u0012\u0006\u0010\u009c\u00ed\u0097\u00a8\u0006\"\u000545119\u0012\u0011\b4\u0012\u0006\u0010\u00c8\u00ed\u0097\u00a8\u0006\"\u000545120\u0012\u0011\b5\u0012\u0006\u0010\u00fd\u00ed\u0097\u00a8\u0006\"\u000545121\u0012\u0011\b6\u0012\u0006\u0010\u00a6\u00ee\u0097\u00a8\u0006\"\u000538535\u0012\u0011\b7\u0012\u0006\u0010\u00f1\u00ee\u0097\u00a8\u0006\"\u000538536\u0012\u0013\b8\u0012\u0006\u0010\u0094\u00ef\u0097\u00a8\u0006\"\u00074838437\u0012\u0011\b9\u0012\u0006\u0010\u00c8\u00ef\u0097\u00a8\u0006\"\u000545085\u0012\u0011\b:\u0012\u0006\u0010\u0094\u00f0\u0097\u00a8\u0006\"\u000545086\u0012\u0011\b;\u0012\u0006\u0010\u00c5\u00f0\u0097\u00a8\u0006\"\u000538539\u0012\u0011\b<\u0012\u0006\u0010\u0084\u00f1\u0097\u00a8\u0006\"\u000538540\u0012\u0011\b=\u0012\u0006\u0010\u00d0\u00f1\u0097\u00a8\u0006\"\u000538544\u0012\u0011\b>\u0012\u0006\u0010\u0093\u00f2\u0097\u00a8\u0006\"\u000538545\u0012\u0011\b?\u0012\u0006\u0010\u00ea\u00f2\u0097\u00a8\u0006\"\u000538546\u0012\u0011\b@\u0012\u0006\u0010\u00e4\u00f3\u0097\u00a8\u0006\"\u000538548\u0012\u0011\bA\u0012\u0006\u0010\u00a5\u00f4\u0097\u00a8\u0006\"\u000538549\u0012\u0011\bB\u0012\u0006\u0010\u00bd\u00f5\u0097\u00a8\u0006\"\u000538551\u0012\u0011\bC\u0012\u0006\u0010\u0093\u00f6\u0097\u00a8\u0006\"\u000538552\u0012\u0011\bD\u0012\u0006\u0010\u00e8\u00f6\u0097\u00a8\u0006\"\u000549359\u0012\u0011\bE\u0012\u0006\u0010\u009b\u00f7\u0097\u00a8\u0006\"\u000549360\u0012\u0011\bF\u0012\u0006\u0010\u0090\u00f8\u0097\u00a8\u0006\"\u000549361\u0012\u0011\bG\u0012\u0006\u0010\u00ad\u00f8\u0097\u00a8\u0006\"\u000549362\u0012\u0011\bH\u0012\u0006\u0010\u00df\u00f8\u0097\u00a8\u0006\"\u000549363\u0012\u0011\bI\u0012\u0006\u0010\u0094\u00f9\u0097\u00a8\u0006\"\u000549364\u0012\u0011\bJ\u0012\u0006\u0010\u00bc\u00f9\u0097\u00a8\u0006\"\u000549365\u0012\u0011\bK\u0012\u0006\u0010\u0087\u00fa\u0097\u00a8\u0006\"\u000538560\u0012\u0011\bL\u0012\u0006\u0010\u00b2\u00fa\u0097\u00a8\u0006\"\u000542857\u0012\u0011\bM\u0012\u0006\u0010\u00d5\u00fa\u0097\u00a8\u0006\"\u000538562\u0012\u0011\bN\u0012\u0006\u0010\u00bd\u00fb\u0097\u00a8\u0006\"\u000540539\u0012\u0011\bO\u0012\u0006\u0010\u00f2\u00fb\u0097\u00a8\u0006\"\u000540540\u0012\u0011\bP\u0012\u0006\u0010\u00a4\u00fc\u0097\u00a8\u0006\"\u000540541\u0012\u0011\bQ\u0012\u0006\u0010\u00b5\u00fd\u0097\u00a8\u0006\"\u000540543\u0012\u0011\bR\u0012\u0006\u0010\u00c0\u00fd\u0097\u00a8\u0006\"\u000541943\u0012\u0011\bS\u0012\u0006\u0010\u00b7\u00fe\u0097\u00a8\u0006\"\u000540544\u0012\u0011\bT\u0012\u0006\u0010\u0095\u0080\u0098\u00a8\u0006\"\u000540548\u0012\u0011\bU\u0012\u0006\u0010\u00be\u0080\u0098\u00a8\u0006\"\u000540443\u0012\u0011\bV\u0012\u0006\u0010\u00eb\u0080\u0098\u00a8\u0006\"\u000540550\u0012\u0011\bW\u0012\u0006\u0010\u0099\u0081\u0098\u00a8\u0006\"\u000540551\u0012\u0011\bX\u0012\u0006\u0010\u00b2\u0081\u0098\u00a8\u0006\"\u000540441\u0012\u0011\bY\u0012\u0006\u0010\u00ae\u0082\u0098\u00a8\u0006\"\u000540552\u0012\u0011\bZ\u0012\u0006\u0010\u00ef\u0082\u0098\u00a8\u0006\"\u000540553\u001a\b\u001a\u0006KVJC80 \u00b0\u00e8\u0097\u00a8\u0006\"`\n/\n\u001025029-701ff27f-2\u0012\b14:52:00\u001a\b20230916 \u0000*\u00037270\u0000\u0012\u001d\rh4\u0013\u00c2\u0015\u00f7*\u0092\u00c2\u001d\u0000\u0000\u00a2C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-r\u001c?A(\u00b0\u00e8\u0097\u00a8\u0006B\b\u001a\u0006KVJC80" + }, + { + "type": "con_recorrido", + "entity": "\n$03d165cc-729f-4d8b-88b2-e74fff7cc56a\u001a\u00de\u0002\n/\n\u001025026-701ff27f-2\u0012\b14:22:00\u001a\b20230916 \u0000*\u00037270\u0000\u0012\u0011\bL\u0012\u0006\u0010\u00d9\u00e8\u0097\u00a8\u0006\"\u000542857\u0012\u0011\bM\u0012\u0006\u0010\u00fa\u00e8\u0097\u00a8\u0006\"\u000538562\u0012\u0011\bN\u0012\u0006\u0010\u00da\u00e9\u0097\u00a8\u0006\"\u000540539\u0012\u0011\bO\u0012\u0006\u0010\u0089\u00ea\u0097\u00a8\u0006\"\u000540540\u0012\u0011\bP\u0012\u0006\u0010\u00b5\u00ea\u0097\u00a8\u0006\"\u000540541\u0012\u0011\bQ\u0012\u0006\u0010\u00af\u00eb\u0097\u00a8\u0006\"\u000540543\u0012\u0011\bR\u0012\u0006\u0010\u00b7\u00eb\u0097\u00a8\u0006\"\u000541943\u0012\u0011\bS\u0012\u0006\u0010\u0097\u00ec\u0097\u00a8\u0006\"\u000540544\u0012\u0011\bT\u0012\u0006\u0010\u00c0\u00ed\u0097\u00a8\u0006\"\u000540548\u0012\u0011\bU\u0012\u0006\u0010\u00de\u00ed\u0097\u00a8\u0006\"\u000540443\u0012\u0011\bV\u0012\u0006\u0010\u00fe\u00ed\u0097\u00a8\u0006\"\u000540550\u0012\u0011\bW\u0012\u0006\u0010\u009f\u00ee\u0097\u00a8\u0006\"\u000540551\u0012\u0011\bX\u0012\u0006\u0010\u00b0\u00ee\u0097\u00a8\u0006\"\u000540441\u0012\u0011\bY\u0012\u0006\u0010\u0086\u00ef\u0097\u00a8\u0006\"\u000540552\u0012\u0011\bZ\u0012\u0006\u0010\u00b1\u00ef\u0097\u00a8\u0006\"\u000540553\u001a\b\u001a\u0006RXVH92 \u00bc\u00e8\u0097\u00a8\u0006\"`\n/\n\u001025026-701ff27f-2\u0012\b14:22:00\u001a\b20230916 \u0000*\u00037270\u0000\u0012\u001d\r\u0002\u00d9\u0012\u00c2\u0015\u00f7:\u0092\u00c2\u001d\u0000\u0000LC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UUU?(\u00bc\u00e8\u0097\u00a8\u0006B\b\u001a\u0006RXVH92" + }, + { + "type": "con_recorrido", + "entity": "\n$76d72354-5195-4066-8348-b86fdea0a2c4\u001a\u00e5\u000b\n/\n\u001025137-701ff27f-2\u0012\b15:37:00\u001a\b20230916 \u0000*\u00037280\u0001\u0012\u0011\b\u0015\u0012\u0006\u0010\u009f\u00e8\u0097\u00a8\u0006\"\u000538697\u0012\u0011\b\u0016\u0012\u0006\u0010\u00d4\u00e8\u0097\u00a8\u0006\"\u000538646\u0012\u0011\b\u0017\u0012\u0006\u0010\u00f4\u00e8\u0097\u00a8\u0006\"\u000538632\u0012\u0011\b\u0018\u0012\u0006\u0010\u00cd\u00e9\u0097\u00a8\u0006\"\u000538767\u0012\u0011\b\u0019\u0012\u0006\u0010\u0091\u00ea\u0097\u00a8\u0006\"\u000538768\u0012\u0011\b\u001a\u0012\u0006\u0010\u00c0\u00ea\u0097\u00a8\u0006\"\u000538769\u0012\u0011\b\u001b\u0012\u0006\u0010\u00e6\u00ea\u0097\u00a8\u0006\"\u000549357\u0012\u0011\b\u001c\u0012\u0006\u0010\u0091\u00eb\u0097\u00a8\u0006\"\u000538771\u0012\u0011\b\u001d\u0012\u0006\u0010\u00be\u00eb\u0097\u00a8\u0006\"\u000538668\u0012\u0011\b\u001e\u0012\u0006\u0010\u009f\u00ec\u0097\u00a8\u0006\"\u000538661\u0012\u0011\b\u001f\u0012\u0006\u0010\u00f2\u00ec\u0097\u00a8\u0006\"\u000538657\u0012\u0011\b \u0012\u0006\u0010\u00ae\u00ed\u0097\u00a8\u0006\"\u000538743\u0012\u0011\b!\u0012\u0006\u0010\u00ef\u00ed\u0097\u00a8\u0006\"\u000538652\u0012\u0011\b\"\u0012\u0006\u0010\u00ad\u00ee\u0097\u00a8\u0006\"\u000538721\u0012\u0011\b#\u0012\u0006\u0010\u00e4\u00ee\u0097\u00a8\u0006\"\u000538659\u0012\u0011\b$\u0012\u0006\u0010\u00b5\u00ef\u0097\u00a8\u0006\"\u000538674\u0012\u0011\b%\u0012\u0006\u0010\u00fd\u00ef\u0097\u00a8\u0006\"\u000538649\u0012\u0011\b&\u0012\u0006\u0010\u00ba\u00f0\u0097\u00a8\u0006\"\u000538718\u0012\u0011\b'\u0012\u0006\u0010\u00fa\u00f0\u0097\u00a8\u0006\"\u000538735\u0012\u0011\b(\u0012\u0006\u0010\u00b5\u00f1\u0097\u00a8\u0006\"\u000542270\u0012\u0011\b)\u0012\u0006\u0010\u00e4\u00f1\u0097\u00a8\u0006\"\u000542271\u0012\u0011\b*\u0012\u0006\u0010\u00a3\u00f3\u0097\u00a8\u0006\"\u000538688\u0012\u0011\b+\u0012\u0006\u0010\u00da\u00f3\u0097\u00a8\u0006\"\u000538673\u0012\u0011\b,\u0012\u0006\u0010\u00a6\u00f4\u0097\u00a8\u0006\"\u000539785\u0012\u0011\b-\u0012\u0006\u0010\u00cd\u00f4\u0097\u00a8\u0006\"\u000538664\u0012\u0011\b.\u0012\u0006\u0010\u0083\u00f5\u0097\u00a8\u0006\"\u000538702\u0012\u0011\b/\u0012\u0006\u0010\u00b0\u00f5\u0097\u00a8\u0006\"\u000539787\u0012\u0011\b0\u0012\u0006\u0010\u00da\u00f5\u0097\u00a8\u0006\"\u000538501\u0012\u0011\b1\u0012\u0006\u0010\u00a0\u00f6\u0097\u00a8\u0006\"\u000538692\u0012\u0011\b2\u0012\u0006\u0010\u00e7\u00f6\u0097\u00a8\u0006\"\u000538714\u0012\u0011\b3\u0012\u0006\u0010\u0099\u00f7\u0097\u00a8\u0006\"\u000539791\u0012\u0011\b4\u0012\u0006\u0010\u00b6\u00f7\u0097\u00a8\u0006\"\u000538506\u0012\u0011\b5\u0012\u0006\u0010\u00eb\u00f7\u0097\u00a8\u0006\"\u000538635\u0012\u0011\b6\u0012\u0006\u0010\u008e\u00f8\u0097\u00a8\u0006\"\u000538509\u0012\u0011\b7\u0012\u0006\u0010\u00bd\u00f8\u0097\u00a8\u0006\"\u000538642\u0012\u0011\b8\u0012\u0006\u0010\u00ed\u00f8\u0097\u00a8\u0006\"\u000539795\u0012\u0011\b9\u0012\u0006\u0010\u008f\u00f9\u0097\u00a8\u0006\"\u000538502\u0012\u0011\b:\u0012\u0006\u0010\u00d3\u00f9\u0097\u00a8\u0006\"\u000538503\u0012\u0011\b;\u0012\u0006\u0010\u0086\u00fb\u0097\u00a8\u0006\"\u000535691\u0012\u0011\b<\u0012\u0006\u0010\u00f6\u00fb\u0097\u00a8\u0006\"\u000535693\u0012\u0011\b=\u0012\u0006\u0010\u00bb\u00fc\u0097\u00a8\u0006\"\u000535694\u0012\u0011\b>\u0012\u0006\u0010\u00ec\u00fc\u0097\u00a8\u0006\"\u000535695\u0012\u0011\b?\u0012\u0006\u0010\u00a6\u00fd\u0097\u00a8\u0006\"\u000535696\u0012\u0011\b@\u0012\u0006\u0010\u00ff\u00fe\u0097\u00a8\u0006\"\u000535697\u0012\u0011\bA\u0012\u0006\u0010\u00fe\u00ff\u0097\u00a8\u0006\"\u00052-Jan\u0012\u0011\bB\u0012\u0006\u0010\u00a6\u0080\u0098\u00a8\u0006\"\u000542460\u0012\u0011\bC\u0012\u0006\u0010\u00e0\u0080\u0098\u00a8\u0006\"\u000535690\u0012\u0011\bD\u0012\u0006\u0010\u00ea\u0081\u0098\u00a8\u0006\"\u000535700\u0012\u0011\bE\u0012\u0006\u0010\u00f3\u0082\u0098\u00a8\u0006\"\u000535703\u0012\u0011\bF\u0012\u0006\u0010\u008a\u0083\u0098\u00a8\u0006\"\u000535704\u0012\u0011\bG\u0012\u0006\u0010\u00ab\u0083\u0098\u00a8\u0006\"\u000535705\u0012\u0011\bH\u0012\u0006\u0010\u00c8\u0083\u0098\u00a8\u0006\"\u000535706\u0012\u0011\bI\u0012\u0006\u0010\u009c\u0084\u0098\u00a8\u0006\"\u000535707\u0012\u0011\bJ\u0012\u0006\u0010\u00c3\u0084\u0098\u00a8\u0006\"\u000535708\u0012\u0011\bK\u0012\u0006\u0010\u00e0\u0084\u0098\u00a8\u0006\"\u000535709\u0012\u0011\bL\u0012\u0006\u0010\u00fb\u0085\u0098\u00a8\u0006\"\u000537522\u0012\u0011\bM\u0012\u0006\u0010\u00b6\u0086\u0098\u00a8\u0006\"\u000539599\u0012\u0011\bN\u0012\u0006\u0010\u00fa\u0086\u0098\u00a8\u0006\"\u000550034\u0012\u0011\bO\u0012\u0006\u0010\u00c2\u0087\u0098\u00a8\u0006\"\u000540903\u0012\u0011\bP\u0012\u0006\u0010\u00f9\u0087\u0098\u00a8\u0006\"\u000540904\u0012\u0011\bQ\u0012\u0006\u0010\u00d6\u0088\u0098\u00a8\u0006\"\u000535814\u0012\u0011\bR\u0012\u0006\u0010\u00e1\u0089\u0098\u00a8\u0006\"\u000535815\u0012\u0011\bS\u0012\u0006\u0010\u0093\u008a\u0098\u00a8\u0006\"\u000535816\u0012\u0011\bT\u0012\u0006\u0010\u00aa\u008a\u0098\u00a8\u0006\"\u000535817\u0012\u0011\bU\u0012\u0006\u0010\u00ed\u008a\u0098\u00a8\u0006\"\u000535818\u0012\u0011\bV\u0012\u0006\u0010\u00b9\u008b\u0098\u00a8\u0006\"\u000535819\u0012\u0011\bW\u0012\u0006\u0010\u00c7\u008e\u0098\u00a8\u0006\"\u000535822\u0012\u0011\bX\u0012\u0006\u0010\u00f2\u008f\u0098\u00a8\u0006\"\u000538833\u0012\u0011\bY\u0012\u0006\u0010\u00c4\u0096\u0098\u00a8\u0006\"\u000538814\u0012\u0011\bZ\u0012\u0006\u0010\u00d8\u0097\u0098\u00a8\u0006\"\u000538815\u0012\u0011\b[\u0012\u0006\u0010\u00fd\u0097\u0098\u00a8\u0006\"\u000538816\u0012\u0011\b\\\u0012\u0006\u0010\u0097\u009a\u0098\u00a8\u0006\"\u000540565\u0012\u0011\b]\u0012\u0006\u0010\u00d2\u009b\u0098\u00a8\u0006\"\u000540566\u0012\u0011\b^\u0012\u0006\u0010\u0093\u009c\u0098\u00a8\u0006\"\u000540567\u0012\u0011\b_\u0012\u0006\u0010\u00b8\u00b7\u0098\u00a8\u0006\"\u000550010\u0012\u0011\b`\u0012\u0006\u0010\u00a7\u00b8\u0098\u00a8\u0006\"\u000550011\u001a\b\u001a\u0006CTDG25 \u008e\u00e8\u0097\u00a8\u0006\"`\n/\n\u001025137-701ff27f-2\u0012\b15:37:00\u001a\b20230916 \u0000*\u00037280\u0001\u0012\u001d\r\u00f3\u00d9\u0012\u00c2\u0015\u0013;\u0092\u00c2\u001d\u0000\u0000\u0080@!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-9\u008eC@(\u008e\u00e8\u0097\u00a8\u0006B\b\u001a\u0006CTDG25" + }, + { + "type": "con_recorrido", + "entity": "\n$3bc74813-4d5e-4d7a-b4a5-cc4c7f733dba\u001a\u009d\b\n/\n\u001025135-701ff27f-2\u0012\b15:13:00\u001a\b20230916 \u0000*\u00037280\u0001\u0012\u0011\b-\u0012\u0006\u0010\u00a5\u00e8\u0097\u00a8\u0006\"\u000538664\u0012\u0011\b.\u0012\u0006\u0010\u00de\u00e8\u0097\u00a8\u0006\"\u000538702\u0012\u0011\b/\u0012\u0006\u0010\u008d\u00e9\u0097\u00a8\u0006\"\u000539787\u0012\u0011\b0\u0012\u0006\u0010\u00b8\u00e9\u0097\u00a8\u0006\"\u000538501\u0012\u0011\b1\u0012\u0006\u0010\u00ff\u00e9\u0097\u00a8\u0006\"\u000538692\u0012\u0011\b2\u0012\u0006\u0010\u00c6\u00ea\u0097\u00a8\u0006\"\u000538714\u0012\u0011\b3\u0012\u0006\u0010\u00f6\u00ea\u0097\u00a8\u0006\"\u000539791\u0012\u0011\b4\u0012\u0006\u0010\u0092\u00eb\u0097\u00a8\u0006\"\u000538506\u0012\u0011\b5\u0012\u0006\u0010\u00c4\u00eb\u0097\u00a8\u0006\"\u000538635\u0012\u0011\b6\u0012\u0006\u0010\u00e5\u00eb\u0097\u00a8\u0006\"\u000538509\u0012\u0011\b7\u0012\u0006\u0010\u0091\u00ec\u0097\u00a8\u0006\"\u000538642\u0012\u0011\b8\u0012\u0006\u0010\u00bc\u00ec\u0097\u00a8\u0006\"\u000539795\u0012\u0011\b9\u0012\u0006\u0010\u00db\u00ec\u0097\u00a8\u0006\"\u000538502\u0012\u0011\b:\u0012\u0006\u0010\u0098\u00ed\u0097\u00a8\u0006\"\u000538503\u0012\u0011\b;\u0012\u0006\u0010\u00b2\u00ee\u0097\u00a8\u0006\"\u000535691\u0012\u0011\b<\u0012\u0006\u0010\u008f\u00ef\u0097\u00a8\u0006\"\u000535693\u0012\u0011\b=\u0012\u0006\u0010\u00c7\u00ef\u0097\u00a8\u0006\"\u000535694\u0012\u0011\b>\u0012\u0006\u0010\u00ee\u00ef\u0097\u00a8\u0006\"\u000535695\u0012\u0011\b?\u0012\u0006\u0010\u009c\u00f0\u0097\u00a8\u0006\"\u000535696\u0012\u0011\b@\u0012\u0006\u0010\u00c2\u00f1\u0097\u00a8\u0006\"\u000535697\u0012\u0011\bA\u0012\u0006\u0010\u00a0\u00f2\u0097\u00a8\u0006\"\u00052-Jan\u0012\u0011\bB\u0012\u0006\u0010\u00bd\u00f2\u0097\u00a8\u0006\"\u000542460\u0012\u0011\bC\u0012\u0006\u0010\u00e7\u00f2\u0097\u00a8\u0006\"\u000535690\u0012\u0011\bD\u0012\u0006\u0010\u00c7\u00f3\u0097\u00a8\u0006\"\u000535700\u0012\u0011\bE\u0012\u0006\u0010\u00a5\u00f4\u0097\u00a8\u0006\"\u000535703\u0012\u0011\bF\u0012\u0006\u0010\u00b4\u00f4\u0097\u00a8\u0006\"\u000535704\u0012\u0011\bG\u0012\u0006\u0010\u00ca\u00f4\u0097\u00a8\u0006\"\u000535705\u0012\u0011\bH\u0012\u0006\u0010\u00de\u00f4\u0097\u00a8\u0006\"\u000535706\u0012\u0011\bI\u0012\u0006\u0010\u0095\u00f5\u0097\u00a8\u0006\"\u000535707\u0012\u0011\bJ\u0012\u0006\u0010\u00af\u00f5\u0097\u00a8\u0006\"\u000535708\u0012\u0011\bK\u0012\u0006\u0010\u00c1\u00f5\u0097\u00a8\u0006\"\u000535709\u0012\u0011\bL\u0012\u0006\u0010\u00a4\u00f6\u0097\u00a8\u0006\"\u000537522\u0012\u0011\bM\u0012\u0006\u0010\u00c8\u00f6\u0097\u00a8\u0006\"\u000539599\u0012\u0011\bN\u0012\u0006\u0010\u00f2\u00f6\u0097\u00a8\u0006\"\u000550034\u0012\u0011\bO\u0012\u0006\u0010\u009e\u00f7\u0097\u00a8\u0006\"\u000540903\u0012\u0011\bP\u0012\u0006\u0010\u00bf\u00f7\u0097\u00a8\u0006\"\u000540904\u0012\u0011\bQ\u0012\u0006\u0010\u00f6\u00f7\u0097\u00a8\u0006\"\u000535814\u0012\u0011\bR\u0012\u0006\u0010\u00c7\u00f8\u0097\u00a8\u0006\"\u000535815\u0012\u0011\bS\u0012\u0006\u0010\u00e4\u00f8\u0097\u00a8\u0006\"\u000535816\u0012\u0011\bT\u0012\u0006\u0010\u00f1\u00f8\u0097\u00a8\u0006\"\u000535817\u0012\u0011\bU\u0012\u0006\u0010\u0097\u00f9\u0097\u00a8\u0006\"\u000535818\u0012\u0011\bV\u0012\u0006\u0010\u00c2\u00f9\u0097\u00a8\u0006\"\u000535819\u0012\u0011\bW\u0012\u0006\u0010\u0099\u00fb\u0097\u00a8\u0006\"\u000535822\u0012\u0011\bX\u0012\u0006\u0010\u00f1\u00fb\u0097\u00a8\u0006\"\u000538833\u0012\u0011\bY\u0012\u0006\u0010\u008d\u00ff\u0097\u00a8\u0006\"\u000538814\u0012\u0011\bZ\u0012\u0006\u0010\u00cf\u00ff\u0097\u00a8\u0006\"\u000538815\u0012\u0011\b[\u0012\u0006\u0010\u00e0\u00ff\u0097\u00a8\u0006\"\u000538816\u0012\u0011\b\\\u0012\u0006\u0010\u00dc\u0080\u0098\u00a8\u0006\"\u000540565\u0012\u0011\b]\u0012\u0006\u0010\u00ac\u0081\u0098\u00a8\u0006\"\u000540566\u0012\u0011\b^\u0012\u0006\u0010\u00c7\u0081\u0098\u00a8\u0006\"\u000540567\u0012\u0011\b_\u0012\u0006\u0010\u008c\u008b\u0098\u00a8\u0006\"\u000550010\u0012\u0011\b`\u0012\u0006\u0010\u00ac\u008b\u0098\u00a8\u0006\"\u000550011\u001a\b\u001a\u0006CYDL42 \u0096\u00e8\u0097\u00a8\u0006\"`\n/\n\u001025135-701ff27f-2\u0012\b15:13:00\u001a\b20230916 \u0000*\u00037280\u0001\u0012\u001d\rk\u0019\u0013\u00c2\u0015\u00e5,\u0092\u00c2\u001d\u0000\u00004C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0096\u00e8\u0097\u00a8\u0006B\b\u001a\u0006CYDL42" + }, + { + "type": "con_recorrido", + "entity": "\n$6a0d0cad-5fd3-440c-b37f-262ec92986df\u001a\u00e1\u000e\n/\n\u001025138-701ff27f-2\u0012\b15:49:00\u001a\b20230916 \u0000*\u00037280\u0001\u0012\u0011\b\u0001\u0012\u0006\u0010\u00be\u00e8\u0097\u00a8\u0006\"\u000540439\u0012\u0011\b\u0002\u0012\u0006\u0010\u00f1\u00e8\u0097\u00a8\u0006\"\u000540440\u0012\u0011\b\u0003\u0012\u0006\u0010\u00d7\u00e9\u0097\u00a8\u0006\"\u000540441\u0012\u0011\b\u0004\u0012\u0006\u0010\u00b2\u00ea\u0097\u00a8\u0006\"\u000540443\u0012\u0011\b\u0005\u0012\u0006\u0010\u00ce\u00ea\u0097\u00a8\u0006\"\u000540548\u0012\u0011\b\u0006\u0012\u0006\u0010\u00ff\u00ea\u0097\u00a8\u0006\"\u000540348\u0012\u0011\b\u0007\u0012\u0006\u0010\u00b2\u00eb\u0097\u00a8\u0006\"\u000540349\u0012\u0011\b\b\u0012\u0006\u0010\u00d4\u00eb\u0097\u00a8\u0006\"\u000540350\u0012\u0011\b\t\u0012\u0006\u0010\u0090\u00ec\u0097\u00a8\u0006\"\u000540351\u0012\u0011\b\n\u0012\u0006\u0010\u00e7\u00ec\u0097\u00a8\u0006\"\u000540352\u0012\u0011\b\u000b\u0012\u0006\u0010\u00b8\u00ed\u0097\u00a8\u0006\"\u000541970\u0012\u0011\b\f\u0012\u0006\u0010\u00c0\u00ed\u0097\u00a8\u0006\"\u000540542\u0012\u0011\b\r\u0012\u0006\u0010\u00d1\u00ed\u0097\u00a8\u0006\"\u000541971\u0012\u0011\b\u000e\u0012\u0006\u0010\u00ec\u00ed\u0097\u00a8\u0006\"\u000540541\u0012\u0011\b\u000f\u0012\u0006\u0010\u00f9\u00ed\u0097\u00a8\u0006\"\u000541972\u0012\u0011\b\u0010\u0012\u0006\u0010\u008a\u00ee\u0097\u00a8\u0006\"\u000540540\u0012\u0011\b\u0011\u0012\u0006\u0010\u00b9\u00ee\u0097\u00a8\u0006\"\u000540539\u0012\u0011\b\u0012\u0012\u0006\u0010\u00f6\u00ee\u0097\u00a8\u0006\"\u000542855\u0012\u0011\b\u0013\u0012\u0006\u0010\u009c\u00ef\u0097\u00a8\u0006\"\u000541975\u0012\u0011\b\u0014\u0012\u0006\u0010\u00b0\u00ef\u0097\u00a8\u0006\"\u000542857\u0012\u0011\b\u0015\u0012\u0006\u0010\u00ce\u00ef\u0097\u00a8\u0006\"\u000538697\u0012\u0011\b\u0016\u0012\u0006\u0010\u00fd\u00ef\u0097\u00a8\u0006\"\u000538646\u0012\u0011\b\u0017\u0012\u0006\u0010\u009a\u00f0\u0097\u00a8\u0006\"\u000538632\u0012\u0011\b\u0018\u0012\u0006\u0010\u00ed\u00f0\u0097\u00a8\u0006\"\u000538767\u0012\u0011\b\u0019\u0012\u0006\u0010\u00ad\u00f1\u0097\u00a8\u0006\"\u000538768\u0012\u0011\b\u001a\u0012\u0006\u0010\u00d9\u00f1\u0097\u00a8\u0006\"\u000538769\u0012\u0011\b\u001b\u0012\u0006\u0010\u00fe\u00f1\u0097\u00a8\u0006\"\u000549357\u0012\u0011\b\u001c\u0012\u0006\u0010\u00a8\u00f2\u0097\u00a8\u0006\"\u000538771\u0012\u0011\b\u001d\u0012\u0006\u0010\u00d3\u00f2\u0097\u00a8\u0006\"\u000538668\u0012\u0011\b\u001e\u0012\u0006\u0010\u00b3\u00f3\u0097\u00a8\u0006\"\u000538661\u0012\u0011\b\u001f\u0012\u0006\u0010\u0086\u00f4\u0097\u00a8\u0006\"\u000538657\u0012\u0011\b \u0012\u0006\u0010\u00c3\u00f4\u0097\u00a8\u0006\"\u000538743\u0012\u0011\b!\u0012\u0006\u0010\u0085\u00f5\u0097\u00a8\u0006\"\u000538652\u0012\u0011\b\"\u0012\u0006\u0010\u00c6\u00f5\u0097\u00a8\u0006\"\u000538721\u0012\u0011\b#\u0012\u0006\u0010\u0080\u00f6\u0097\u00a8\u0006\"\u000538659\u0012\u0011\b$\u0012\u0006\u0010\u00d6\u00f6\u0097\u00a8\u0006\"\u000538674\u0012\u0011\b%\u0012\u0006\u0010\u00a3\u00f7\u0097\u00a8\u0006\"\u000538649\u0012\u0011\b&\u0012\u0006\u0010\u00e6\u00f7\u0097\u00a8\u0006\"\u000538718\u0012\u0011\b'\u0012\u0006\u0010\u00ad\u00f8\u0097\u00a8\u0006\"\u000538735\u0012\u0011\b(\u0012\u0006\u0010\u00ee\u00f8\u0097\u00a8\u0006\"\u000542270\u0012\u0011\b)\u0012\u0006\u0010\u00a2\u00f9\u0097\u00a8\u0006\"\u000542271\u0012\u0011\b*\u0012\u0006\u0010\u00fd\u00fa\u0097\u00a8\u0006\"\u000538688\u0012\u0011\b+\u0012\u0006\u0010\u00be\u00fb\u0097\u00a8\u0006\"\u000538673\u0012\u0011\b,\u0012\u0006\u0010\u0099\u00fc\u0097\u00a8\u0006\"\u000539785\u0012\u0011\b-\u0012\u0006\u0010\u00c7\u00fc\u0097\u00a8\u0006\"\u000538664\u0012\u0011\b.\u0012\u0006\u0010\u0088\u00fd\u0097\u00a8\u0006\"\u000538702\u0012\u0011\b/\u0012\u0006\u0010\u00be\u00fd\u0097\u00a8\u0006\"\u000539787\u0012\u0011\b0\u0012\u0006\u0010\u00f2\u00fd\u0097\u00a8\u0006\"\u000538501\u0012\u0011\b1\u0012\u0006\u0010\u00c8\u00fe\u0097\u00a8\u0006\"\u000538692\u0012\u0011\b2\u0012\u0006\u0010\u00a2\u00ff\u0097\u00a8\u0006\"\u000538714\u0012\u0011\b3\u0012\u0006\u0010\u00e0\u00ff\u0097\u00a8\u0006\"\u000539791\u0012\u0011\b4\u0012\u0006\u0010\u0085\u0080\u0098\u00a8\u0006\"\u000538506\u0012\u0011\b5\u0012\u0006\u0010\u00c8\u0080\u0098\u00a8\u0006\"\u000538635\u0012\u0011\b6\u0012\u0006\u0010\u00f6\u0080\u0098\u00a8\u0006\"\u000538509\u0012\u0011\b7\u0012\u0006\u0010\u00b3\u0081\u0098\u00a8\u0006\"\u000538642\u0012\u0011\b8\u0012\u0006\u0010\u00f1\u0081\u0098\u00a8\u0006\"\u000539795\u0012\u0011\b9\u0012\u0006\u0010\u009d\u0082\u0098\u00a8\u0006\"\u000538502\u0012\u0011\b:\u0012\u0006\u0010\u00f8\u0082\u0098\u00a8\u0006\"\u000538503\u0012\u0011\b;\u0012\u0006\u0010\u00e8\u0084\u0098\u00a8\u0006\"\u000535691\u0012\u0011\b<\u0012\u0006\u0010\u0082\u0086\u0098\u00a8\u0006\"\u000535693\u0012\u0011\b=\u0012\u0006\u0010\u00e3\u0086\u0098\u00a8\u0006\"\u000535694\u0012\u0011\b>\u0012\u0006\u0010\u00a7\u0087\u0098\u00a8\u0006\"\u000535695\u0012\u0011\b?\u0012\u0006\u0010\u00fa\u0087\u0098\u00a8\u0006\"\u000535696\u0012\u0011\b@\u0012\u0006\u0010\u00b4\u008a\u0098\u00a8\u0006\"\u000535697\u0012\u0011\bA\u0012\u0006\u0010\u00f1\u008b\u0098\u00a8\u0006\"\u00052-Jan\u0012\u0011\bB\u0012\u0006\u0010\u00ac\u008c\u0098\u00a8\u0006\"\u000542460\u0012\u0011\bC\u0012\u0006\u0010\u0085\u008d\u0098\u00a8\u0006\"\u000535690\u0012\u0011\bD\u0012\u0006\u0010\u00d7\u008e\u0098\u00a8\u0006\"\u000535700\u0012\u0011\bE\u0012\u0006\u0010\u00ae\u0090\u0098\u00a8\u0006\"\u000535703\u0012\u0011\bF\u0012\u0006\u0010\u00d1\u0090\u0098\u00a8\u0006\"\u000535704\u0012\u0011\bG\u0012\u0006\u0010\u0085\u0091\u0098\u00a8\u0006\"\u000535705\u0012\u0011\bH\u0012\u0006\u0010\u00b3\u0091\u0098\u00a8\u0006\"\u000535706\u0012\u0011\bI\u0012\u0006\u0010\u00bb\u0092\u0098\u00a8\u0006\"\u000535707\u0012\u0011\bJ\u0012\u0006\u0010\u00fa\u0092\u0098\u00a8\u0006\"\u000535708\u0012\u0011\bK\u0012\u0006\u0010\u00a9\u0093\u0098\u00a8\u0006\"\u000535709\u0012\u0011\bL\u0012\u0006\u0010\u00a8\u0095\u0098\u00a8\u0006\"\u000537522\u0012\u0011\bM\u0012\u0006\u0010\u008b\u0096\u0098\u00a8\u0006\"\u000539599\u0012\u0011\bN\u0012\u0006\u0010\u00fe\u0096\u0098\u00a8\u0006\"\u000550034\u0012\u0011\bO\u0012\u0006\u0010\u00f6\u0097\u0098\u00a8\u0006\"\u000540903\u0012\u0011\bP\u0012\u0006\u0010\u00d6\u0098\u0098\u00a8\u0006\"\u000540904\u0012\u0011\bQ\u0012\u0006\u0010\u00f7\u0099\u0098\u00a8\u0006\"\u000535814\u0012\u0011\bR\u0012\u0006\u0010\u00eb\u009b\u0098\u00a8\u0006\"\u000535815\u0012\u0011\bS\u0012\u0006\u0010\u00c4\u009c\u0098\u00a8\u0006\"\u000535816\u0012\u0011\bT\u0012\u0006\u0010\u00ee\u009c\u0098\u00a8\u0006\"\u000535817\u0012\u0011\bU\u0012\u0006\u0010\u00e6\u009d\u0098\u00a8\u0006\"\u000535818\u0012\u0011\bV\u0012\u0006\u0010\u00f1\u009e\u0098\u00a8\u0006\"\u000535819\u0012\u0011\bW\u0012\u0006\u0010\u00dd\u00a4\u0098\u00a8\u0006\"\u000535822\u0012\u0011\bX\u0012\u0006\u0010\u00ac\u00a7\u0098\u00a8\u0006\"\u000538833\u0012\u0011\bY\u0012\u0006\u0010\u00ab\u00b5\u0098\u00a8\u0006\"\u000538814\u0012\u0011\bZ\u0012\u0006\u0010\u00f8\u00b7\u0098\u00a8\u0006\"\u000538815\u0012\u0011\b[\u0012\u0006\u0010\u00ce\u00b8\u0098\u00a8\u0006\"\u000538816\u0012\u0011\b\\\u0012\u0006\u0010\u00e3\u00bd\u0098\u00a8\u0006\"\u000540565\u0012\u0011\b]\u0012\u0006\u0010\u00a9\u00c1\u0098\u00a8\u0006\"\u000540566\u0012\u0011\b^\u0012\u0006\u0010\u00cc\u00c2\u0098\u00a8\u0006\"\u000540567\u0012\u0011\b_\u0012\u0006\u0010\u00dd\u009e\u0099\u00a8\u0006\"\u000550010\u0012\u0011\b`\u0012\u0006\u0010\u00da\u00a2\u0099\u00a8\u0006\"\u000550011\u001a\b\u001a\u0006DPZZ49 \u009a\u00e8\u0097\u00a8\u0006\"`\n/\n\u001025138-701ff27f-2\u0012\b15:49:00\u001a\b20230916 \u0000*\u00037280\u0001\u0012\u001d\rM\u00e1\u0012\u00c2\u0015[K\u0092\u00c2\u001d\u0000\u0000\u0090A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u001c\u00c7\u00b1?(\u009a\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DPZZ49" + }, + { + "type": "con_recorrido", + "entity": "\n$7ce564d4-a958-48e4-b19e-3de170c7d47c\u001a\u00f1\u0002\n/\n\u001025132-701ff27f-2\u0012\b14:37:00\u001a\b20230916 \u0000*\u00037280\u0001\u0012\u0011\bQ\u0012\u0006\u0010\u00d6\u00e8\u0097\u00a8\u0006\"\u000535814\u0012\u0011\bR\u0012\u0006\u0010\u00a6\u00e9\u0097\u00a8\u0006\"\u000535815\u0012\u0011\bS\u0012\u0006\u0010\u00c1\u00e9\u0097\u00a8\u0006\"\u000535816\u0012\u0011\bT\u0012\u0006\u0010\u00ce\u00e9\u0097\u00a8\u0006\"\u000535817\u0012\u0011\bU\u0012\u0006\u0010\u00f2\u00e9\u0097\u00a8\u0006\"\u000535818\u0012\u0011\bV\u0012\u0006\u0010\u009a\u00ea\u0097\u00a8\u0006\"\u000535819\u0012\u0011\bW\u0012\u0006\u0010\u00db\u00eb\u0097\u00a8\u0006\"\u000535822\u0012\u0011\bX\u0012\u0006\u0010\u00a7\u00ec\u0097\u00a8\u0006\"\u000538833\u0012\u0011\bY\u0012\u0006\u0010\u00ed\u00ee\u0097\u00a8\u0006\"\u000538814\u0012\u0011\bZ\u0012\u0006\u0010\u009e\u00ef\u0097\u00a8\u0006\"\u000538815\u0012\u0011\b[\u0012\u0006\u0010\u00aa\u00ef\u0097\u00a8\u0006\"\u000538816\u0012\u0011\b\\\u0012\u0006\u0010\u0083\u00f0\u0097\u00a8\u0006\"\u000540565\u0012\u0011\b]\u0012\u0006\u0010\u00bb\u00f0\u0097\u00a8\u0006\"\u000540566\u0012\u0011\b^\u0012\u0006\u0010\u00ce\u00f0\u0097\u00a8\u0006\"\u000540567\u0012\u0011\b_\u0012\u0006\u0010\u00a8\u00f6\u0097\u00a8\u0006\"\u000550010\u0012\u0011\b`\u0012\u0006\u0010\u00b8\u00f6\u0097\u00a8\u0006\"\u000550011\u001a\b\u001a\u0006DRTL47 \u00a6\u00e8\u0097\u00a8\u0006\"`\n/\n\u001025132-701ff27f-2\u0012\b14:37:00\u001a\b20230916 \u0000*\u00037280\u0001\u0012\u001d\r\u00b8C\u0013\u00c2\u00153\u0010\u0092\u00c2\u001d\u0000\u0000pB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u001c\u00c7\u00b1?(\u00a6\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DRTL47" + }, + { + "type": "con_recorrido", + "entity": "\n$4844bb59-0b7c-4b4e-b230-22f6edac4a15\u001a\u00ac\u000b\n/\n\u001025136-701ff27f-2\u0012\b15:25:00\u001a\b20230916 \u0000*\u00037280\u0001\u0012\u0011\b\u0018\u0012\u0006\u0010\u00c2\u00e8\u0097\u00a8\u0006\"\u000538767\u0012\u0011\b\u0019\u0012\u0006\u0010\u0088\u00e9\u0097\u00a8\u0006\"\u000538768\u0012\u0011\b\u001a\u0012\u0006\u0010\u00b7\u00e9\u0097\u00a8\u0006\"\u000538769\u0012\u0011\b\u001b\u0012\u0006\u0010\u00df\u00e9\u0097\u00a8\u0006\"\u000549357\u0012\u0011\b\u001c\u0012\u0006\u0010\u008b\u00ea\u0097\u00a8\u0006\"\u000538771\u0012\u0011\b\u001d\u0012\u0006\u0010\u00b8\u00ea\u0097\u00a8\u0006\"\u000538668\u0012\u0011\b\u001e\u0012\u0006\u0010\u009b\u00eb\u0097\u00a8\u0006\"\u000538661\u0012\u0011\b\u001f\u0012\u0006\u0010\u00ef\u00eb\u0097\u00a8\u0006\"\u000538657\u0012\u0011\b \u0012\u0006\u0010\u00ac\u00ec\u0097\u00a8\u0006\"\u000538743\u0012\u0011\b!\u0012\u0006\u0010\u00ed\u00ec\u0097\u00a8\u0006\"\u000538652\u0012\u0011\b\"\u0012\u0006\u0010\u00ac\u00ed\u0097\u00a8\u0006\"\u000538721\u0012\u0011\b#\u0012\u0006\u0010\u00e4\u00ed\u0097\u00a8\u0006\"\u000538659\u0012\u0011\b$\u0012\u0006\u0010\u00b5\u00ee\u0097\u00a8\u0006\"\u000538674\u0012\u0011\b%\u0012\u0006\u0010\u00fd\u00ee\u0097\u00a8\u0006\"\u000538649\u0012\u0011\b&\u0012\u0006\u0010\u00ba\u00ef\u0097\u00a8\u0006\"\u000538718\u0012\u0011\b'\u0012\u0006\u0010\u00fb\u00ef\u0097\u00a8\u0006\"\u000538735\u0012\u0011\b(\u0012\u0006\u0010\u00b5\u00f0\u0097\u00a8\u0006\"\u000542270\u0012\u0011\b)\u0012\u0006\u0010\u00e4\u00f0\u0097\u00a8\u0006\"\u000542271\u0012\u0011\b*\u0012\u0006\u0010\u00a1\u00f2\u0097\u00a8\u0006\"\u000538688\u0012\u0011\b+\u0012\u0006\u0010\u00d8\u00f2\u0097\u00a8\u0006\"\u000538673\u0012\u0011\b,\u0012\u0006\u0010\u00a4\u00f3\u0097\u00a8\u0006\"\u000539785\u0012\u0011\b-\u0012\u0006\u0010\u00ca\u00f3\u0097\u00a8\u0006\"\u000538664\u0012\u0011\b.\u0012\u0006\u0010\u00ff\u00f3\u0097\u00a8\u0006\"\u000538702\u0012\u0011\b/\u0012\u0006\u0010\u00ab\u00f4\u0097\u00a8\u0006\"\u000539787\u0012\u0011\b0\u0012\u0006\u0010\u00d5\u00f4\u0097\u00a8\u0006\"\u000538501\u0012\u0011\b1\u0012\u0006\u0010\u0099\u00f5\u0097\u00a8\u0006\"\u000538692\u0012\u0011\b2\u0012\u0006\u0010\u00df\u00f5\u0097\u00a8\u0006\"\u000538714\u0012\u0011\b3\u0012\u0006\u0010\u0090\u00f6\u0097\u00a8\u0006\"\u000539791\u0012\u0011\b4\u0012\u0006\u0010\u00ad\u00f6\u0097\u00a8\u0006\"\u000538506\u0012\u0011\b5\u0012\u0006\u0010\u00e0\u00f6\u0097\u00a8\u0006\"\u000538635\u0012\u0011\b6\u0012\u0006\u0010\u0082\u00f7\u0097\u00a8\u0006\"\u000538509\u0012\u0011\b7\u0012\u0006\u0010\u00b0\u00f7\u0097\u00a8\u0006\"\u000538642\u0012\u0011\b8\u0012\u0006\u0010\u00df\u00f7\u0097\u00a8\u0006\"\u000539795\u0012\u0011\b9\u0012\u0006\u0010\u00ff\u00f7\u0097\u00a8\u0006\"\u000538502\u0012\u0011\b:\u0012\u0006\u0010\u00c2\u00f8\u0097\u00a8\u0006\"\u000538503\u0012\u0011\b;\u0012\u0006\u0010\u00ef\u00f9\u0097\u00a8\u0006\"\u000535691\u0012\u0011\b<\u0012\u0006\u0010\u00dc\u00fa\u0097\u00a8\u0006\"\u000535693\u0012\u0011\b=\u0012\u0006\u0010\u009e\u00fb\u0097\u00a8\u0006\"\u000535694\u0012\u0011\b>\u0012\u0006\u0010\u00cd\u00fb\u0097\u00a8\u0006\"\u000535695\u0012\u0011\b?\u0012\u0006\u0010\u0085\u00fc\u0097\u00a8\u0006\"\u000535696\u0012\u0011\b@\u0012\u0006\u0010\u00d6\u00fd\u0097\u00a8\u0006\"\u000535697\u0012\u0011\bA\u0012\u0006\u0010\u00d0\u00fe\u0097\u00a8\u0006\"\u00052-Jan\u0012\u0011\bB\u0012\u0006\u0010\u00f6\u00fe\u0097\u00a8\u0006\"\u000542460\u0012\u0011\bC\u0012\u0006\u0010\u00ae\u00ff\u0097\u00a8\u0006\"\u000535690\u0012\u0011\bD\u0012\u0006\u0010\u00b0\u0080\u0098\u00a8\u0006\"\u000535700\u0012\u0011\bE\u0012\u0006\u0010\u00b3\u0081\u0098\u00a8\u0006\"\u000535703\u0012\u0011\bF\u0012\u0006\u0010\u00c9\u0081\u0098\u00a8\u0006\"\u000535704\u0012\u0011\bG\u0012\u0006\u0010\u00e8\u0081\u0098\u00a8\u0006\"\u000535705\u0012\u0011\bH\u0012\u0006\u0010\u0083\u0082\u0098\u00a8\u0006\"\u000535706\u0012\u0011\bI\u0012\u0006\u0010\u00d3\u0082\u0098\u00a8\u0006\"\u000535707\u0012\u0011\bJ\u0012\u0006\u0010\u00f8\u0082\u0098\u00a8\u0006\"\u000535708\u0012\u0011\bK\u0012\u0006\u0010\u0093\u0083\u0098\u00a8\u0006\"\u000535709\u0012\u0011\bL\u0012\u0006\u0010\u00a6\u0084\u0098\u00a8\u0006\"\u000537522\u0012\u0011\bM\u0012\u0006\u0010\u00de\u0084\u0098\u00a8\u0006\"\u000539599\u0012\u0011\bN\u0012\u0006\u0010\u009e\u0085\u0098\u00a8\u0006\"\u000550034\u0012\u0011\bO\u0012\u0006\u0010\u00e1\u0085\u0098\u00a8\u0006\"\u000540903\u0012\u0011\bP\u0012\u0006\u0010\u0095\u0086\u0098\u00a8\u0006\"\u000540904\u0012\u0011\bQ\u0012\u0006\u0010\u00ec\u0086\u0098\u00a8\u0006\"\u000535814\u0012\u0011\bR\u0012\u0006\u0010\u00ee\u0087\u0098\u00a8\u0006\"\u000535815\u0012\u0011\bS\u0012\u0006\u0010\u009d\u0088\u0098\u00a8\u0006\"\u000535816\u0012\u0011\bT\u0012\u0006\u0010\u00b3\u0088\u0098\u00a8\u0006\"\u000535817\u0012\u0011\bU\u0012\u0006\u0010\u00f1\u0088\u0098\u00a8\u0006\"\u000535818\u0012\u0011\bV\u0012\u0006\u0010\u00b8\u0089\u0098\u00a8\u0006\"\u000535819\u0012\u0011\bW\u0012\u0006\u0010\u00aa\u008c\u0098\u00a8\u0006\"\u000535822\u0012\u0011\bX\u0012\u0006\u0010\u00c8\u008d\u0098\u00a8\u0006\"\u000538833\u0012\u0011\bY\u0012\u0006\u0010\u00d6\u0093\u0098\u00a8\u0006\"\u000538814\u0012\u0011\bZ\u0012\u0006\u0010\u00dd\u0094\u0098\u00a8\u0006\"\u000538815\u0012\u0011\b[\u0012\u0006\u0010\u00ff\u0094\u0098\u00a8\u0006\"\u000538816\u0012\u0011\b\\\u0012\u0006\u0010\u00ff\u0096\u0098\u00a8\u0006\"\u000540565\u0012\u0011\b]\u0012\u0006\u0010\u00a8\u0098\u0098\u00a8\u0006\"\u000540566\u0012\u0011\b^\u0012\u0006\u0010\u00e4\u0098\u0098\u00a8\u0006\"\u000540567\u0012\u0011\b_\u0012\u0006\u0010\u00f0\u00b0\u0098\u00a8\u0006\"\u000550010\u0012\u0011\b`\u0012\u0006\u0010\u00cf\u00b1\u0098\u00a8\u0006\"\u000550011\u001a\b\u001a\u0006HGRP70 \u0092\u00e8\u0097\u00a8\u0006\"`\n/\n\u001025136-701ff27f-2\u0012\b15:25:00\u001a\b20230916 \u0000*\u00037280\u0001\u0012\u001d\r\u00b0\u00dc\u0012\u00c2\u0015h8\u0092\u00c2\u001d\u0000\u0000\u001eC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e486A(\u0092\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HGRP70" + }, + { + "type": "con_recorrido", + "entity": "\n$99ba1a54-54f9-42b0-96fc-e093ae8356de\u001a\u00af\u0004\n/\n\u001025133-701ff27f-2\u0012\b14:49:00\u001a\b20230916 \u0000*\u00037280\u0001\u0012\u0011\bG\u0012\u0006\u0010\u00b1\u00e8\u0097\u00a8\u0006\"\u000535705\u0012\u0011\bH\u0012\u0006\u0010\u00c5\u00e8\u0097\u00a8\u0006\"\u000535706\u0012\u0011\bI\u0012\u0006\u0010\u0080\u00e9\u0097\u00a8\u0006\"\u000535707\u0012\u0011\bJ\u0012\u0006\u0010\u009a\u00e9\u0097\u00a8\u0006\"\u000535708\u0012\u0011\bK\u0012\u0006\u0010\u00ad\u00e9\u0097\u00a8\u0006\"\u000535709\u0012\u0011\bL\u0012\u0006\u0010\u0091\u00ea\u0097\u00a8\u0006\"\u000537522\u0012\u0011\bM\u0012\u0006\u0010\u00b6\u00ea\u0097\u00a8\u0006\"\u000539599\u0012\u0011\bN\u0012\u0006\u0010\u00df\u00ea\u0097\u00a8\u0006\"\u000550034\u0012\u0011\bO\u0012\u0006\u0010\u0089\u00eb\u0097\u00a8\u0006\"\u000540903\u0012\u0011\bP\u0012\u0006\u0010\u00a9\u00eb\u0097\u00a8\u0006\"\u000540904\u0012\u0011\bQ\u0012\u0006\u0010\u00de\u00eb\u0097\u00a8\u0006\"\u000535814\u0012\u0011\bR\u0012\u0006\u0010\u00a9\u00ec\u0097\u00a8\u0006\"\u000535815\u0012\u0011\bS\u0012\u0006\u0010\u00c3\u00ec\u0097\u00a8\u0006\"\u000535816\u0012\u0011\bT\u0012\u0006\u0010\u00cf\u00ec\u0097\u00a8\u0006\"\u000535817\u0012\u0011\bU\u0012\u0006\u0010\u00f1\u00ec\u0097\u00a8\u0006\"\u000535818\u0012\u0011\bV\u0012\u0006\u0010\u0097\u00ed\u0097\u00a8\u0006\"\u000535819\u0012\u0011\bW\u0012\u0006\u0010\u00d1\u00ee\u0097\u00a8\u0006\"\u000535822\u0012\u0011\bX\u0012\u0006\u0010\u009b\u00ef\u0097\u00a8\u0006\"\u000538833\u0012\u0011\bY\u0012\u0006\u0010\u00dd\u00f1\u0097\u00a8\u0006\"\u000538814\u0012\u0011\bZ\u0012\u0006\u0010\u008e\u00f2\u0097\u00a8\u0006\"\u000538815\u0012\u0011\b[\u0012\u0006\u0010\u009b\u00f2\u0097\u00a8\u0006\"\u000538816\u0012\u0011\b\\\u0012\u0006\u0010\u00f4\u00f2\u0097\u00a8\u0006\"\u000540565\u0012\u0011\b]\u0012\u0006\u0010\u00ad\u00f3\u0097\u00a8\u0006\"\u000540566\u0012\u0011\b^\u0012\u0006\u0010\u00c0\u00f3\u0097\u00a8\u0006\"\u000540567\u0012\u0011\b_\u0012\u0006\u0010\u00bc\u00f9\u0097\u00a8\u0006\"\u000550010\u0012\u0011\b`\u0012\u0006\u0010\u00ce\u00f9\u0097\u00a8\u0006\"\u000550011\u001a\b\u001a\u0006HHKP77 \u009c\u00e8\u0097\u00a8\u0006\"`\n/\n\u001025133-701ff27f-2\u0012\b14:49:00\u001a\b20230916 \u0000*\u00037280\u0001\u0012\u001d\rvK\u0013\u00c2\u0015\u0089\u0019\u0092\u00c2\u001d\u0000\u0000hB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-9\u008eC@(\u009c\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HHKP77" + }, + { + "type": "con_recorrido", + "entity": "\n$e3def9ae-236e-4f51-8766-4e9eb7e0d38b\u001a\u00a0\u0001\n/\n\u001025131-701ff27f-2\u0012\b14:25:00\u001a\b20230916 \u0000*\u00037280\u0001\u0012\u0011\b\\\u0012\u0006\u0010\u00b1\u00e8\u0097\u00a8\u0006\"\u000540565\u0012\u0011\b]\u0012\u0006\u0010\u00ef\u00e8\u0097\u00a8\u0006\"\u000540566\u0012\u0011\b^\u0012\u0006\u0010\u0083\u00e9\u0097\u00a8\u0006\"\u000540567\u0012\u0011\b_\u0012\u0006\u0010\u00e8\u00ee\u0097\u00a8\u0006\"\u000550010\u0012\u0011\b`\u0012\u0006\u0010\u00f8\u00ee\u0097\u00a8\u0006\"\u000550011\u001a\b\u001a\u0006HYYX44 \u00b0\u00e8\u0097\u00a8\u0006\"`\n/\n\u001025131-701ff27f-2\u0012\b14:25:00\u001a\b20230916 \u0000*\u00037280\u0001\u0012\u001d\r\u0097H\u0013\u00c2\u0015S\u00fb\u0091\u00c2\u001d\u0000\u0000`B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u001c\u00c7\u00b1@(\u00b0\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HYYX44" + }, + { + "type": "con_recorrido", + "entity": "\n$64aded04-25d9-44b9-a720-b3cb929e3c94\u001a\u00ed\u0005\n/\n\u001025134-701ff27f-2\u0012\b15:01:00\u001a\b20230916 \u0000*\u00037280\u0001\u0012\u0011\b=\u0012\u0006\u0010\u00e3\u00e8\u0097\u00a8\u0006\"\u000535694\u0012\u0011\b>\u0012\u0006\u0010\u008d\u00e9\u0097\u00a8\u0006\"\u000535695\u0012\u0011\b?\u0012\u0006\u0010\u00bf\u00e9\u0097\u00a8\u0006\"\u000535696\u0012\u0011\b@\u0012\u0006\u0010\u00f0\u00ea\u0097\u00a8\u0006\"\u000535697\u0012\u0011\bA\u0012\u0006\u0010\u00d2\u00eb\u0097\u00a8\u0006\"\u00052-Jan\u0012\u0011\bB\u0012\u0006\u0010\u00ef\u00eb\u0097\u00a8\u0006\"\u000542460\u0012\u0011\bC\u0012\u0006\u0010\u009a\u00ec\u0097\u00a8\u0006\"\u000535690\u0012\u0011\bD\u0012\u0006\u0010\u00fb\u00ec\u0097\u00a8\u0006\"\u000535700\u0012\u0011\bE\u0012\u0006\u0010\u00d8\u00ed\u0097\u00a8\u0006\"\u000535703\u0012\u0011\bF\u0012\u0006\u0010\u00e7\u00ed\u0097\u00a8\u0006\"\u000535704\u0012\u0011\bG\u0012\u0006\u0010\u00fc\u00ed\u0097\u00a8\u0006\"\u000535705\u0012\u0011\bH\u0012\u0006\u0010\u008f\u00ee\u0097\u00a8\u0006\"\u000535706\u0012\u0011\bI\u0012\u0006\u0010\u00c5\u00ee\u0097\u00a8\u0006\"\u000535707\u0012\u0011\bJ\u0012\u0006\u0010\u00dd\u00ee\u0097\u00a8\u0006\"\u000535708\u0012\u0011\bK\u0012\u0006\u0010\u00ef\u00ee\u0097\u00a8\u0006\"\u000535709\u0012\u0011\bL\u0012\u0006\u0010\u00cd\u00ef\u0097\u00a8\u0006\"\u000537522\u0012\u0011\bM\u0012\u0006\u0010\u00ef\u00ef\u0097\u00a8\u0006\"\u000539599\u0012\u0011\bN\u0012\u0006\u0010\u0096\u00f0\u0097\u00a8\u0006\"\u000550034\u0012\u0011\bO\u0012\u0006\u0010\u00be\u00f0\u0097\u00a8\u0006\"\u000540903\u0012\u0011\bP\u0012\u0006\u0010\u00dd\u00f0\u0097\u00a8\u0006\"\u000540904\u0012\u0011\bQ\u0012\u0006\u0010\u008f\u00f1\u0097\u00a8\u0006\"\u000535814\u0012\u0011\bR\u0012\u0006\u0010\u00d9\u00f1\u0097\u00a8\u0006\"\u000535815\u0012\u0011\bS\u0012\u0006\u0010\u00f2\u00f1\u0097\u00a8\u0006\"\u000535816\u0012\u0011\bT\u0012\u0006\u0010\u00fe\u00f1\u0097\u00a8\u0006\"\u000535817\u0012\u0011\bU\u0012\u0006\u0010\u00a0\u00f2\u0097\u00a8\u0006\"\u000535818\u0012\u0011\bV\u0012\u0006\u0010\u00c6\u00f2\u0097\u00a8\u0006\"\u000535819\u0012\u0011\bW\u0012\u0006\u0010\u0081\u00f4\u0097\u00a8\u0006\"\u000535822\u0012\u0011\bX\u0012\u0006\u0010\u00cc\u00f4\u0097\u00a8\u0006\"\u000538833\u0012\u0011\bY\u0012\u0006\u0010\u009f\u00f7\u0097\u00a8\u0006\"\u000538814\u0012\u0011\bZ\u0012\u0006\u0010\u00d4\u00f7\u0097\u00a8\u0006\"\u000538815\u0012\u0011\b[\u0012\u0006\u0010\u00e1\u00f7\u0097\u00a8\u0006\"\u000538816\u0012\u0011\b\\\u0012\u0006\u0010\u00c3\u00f8\u0097\u00a8\u0006\"\u000540565\u0012\u0011\b]\u0012\u0006\u0010\u0081\u00f9\u0097\u00a8\u0006\"\u000540566\u0012\u0011\b^\u0012\u0006\u0010\u0096\u00f9\u0097\u00a8\u0006\"\u000540567\u0012\u0011\b_\u0012\u0006\u0010\u008b\u0080\u0098\u00a8\u0006\"\u000550010\u0012\u0011\b`\u0012\u0006\u0010\u00a1\u0080\u0098\u00a8\u0006\"\u000550011\u001a\b\u001a\u0006XW9773 \u00b2\u00e8\u0097\u00a8\u0006\"`\n/\n\u001025134-701ff27f-2\u0012\b15:01:00\u001a\b20230916 \u0000*\u00037280\u0001\u0012\u001d\r\u0099>\u0013\u00c2\u0015N%\u0092\u00c2\u001d\u0000\u0000\u00f0B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UU\u0005A(\u00b2\u00e8\u0097\u00a8\u0006B\b\u001a\u0006XW9773" + }, + { + "type": "con_recorrido", + "entity": "\n$c9292222-58a6-4d79-b66b-f1e96856610f\u001a\u0085\t\n/\n\u001025711-701ff27f-2\u0012\b14:31:00\u001a\b20230916 \u0000*\u00037300\u0000\u0012\u0011\bG\u0012\u0006\u0010\u00c2\u00e8\u0097\u00a8\u0006\"\u000542318\u0012\u0013\bH\u0012\u0006\u0010\u0093\u00e9\u0097\u00a8\u0006\"\u00078606396\u0012\u0011\bI\u0012\u0006\u0010\u00e3\u00e9\u0097\u00a8\u0006\"\u000538514\u0012\u0011\bJ\u0012\u0006\u0010\u008e\u00ea\u0097\u00a8\u0006\"\u000538516\u0012\u0011\bK\u0012\u0006\u0010\u00ca\u00ea\u0097\u00a8\u0006\"\u000538518\u0012\u0011\bL\u0012\u0006\u0010\u00b0\u00eb\u0097\u00a8\u0006\"\u000538520\u0012\u0011\bM\u0012\u0006\u0010\u00dd\u00eb\u0097\u00a8\u0006\"\u000538521\u0012\u0011\bN\u0012\u0006\u0010\u008a\u00ec\u0097\u00a8\u0006\"\u000538522\u0012\u0011\bO\u0012\u0006\u0010\u00bc\u00ec\u0097\u00a8\u0006\"\u000538523\u0012\u0011\bP\u0012\u0006\u0010\u00f0\u00ec\u0097\u00a8\u0006\"\u000538524\u0012\u0011\bQ\u0012\u0006\u0010\u00a1\u00ed\u0097\u00a8\u0006\"\u000538525\u0012\u0011\bR\u0012\u0006\u0010\u00d4\u00ed\u0097\u00a8\u0006\"\u000538526\u0012\u0011\bS\u0012\u0006\u0010\u0083\u00ee\u0097\u00a8\u0006\"\u000538527\u0012\u0011\bT\u0012\u0006\u0010\u00d9\u00ee\u0097\u00a8\u0006\"\u000538528\u0012\u0011\bU\u0012\u0006\u0010\u00c8\u00ef\u0097\u00a8\u0006\"\u000538529\u0012\u0011\bV\u0012\u0006\u0010\u008f\u00f1\u0097\u00a8\u0006\"\u000538530\u0012\u0014\bW\u0012\u0006\u0010\u00a1\u00f1\u0097\u00a8\u0006\"\b16005209\u0012\u0011\bX\u0012\u0006\u0010\u0088\u00f3\u0097\u00a8\u0006\"\u000538531\u0012\u0013\bY\u0012\u0006\u0010\u00be\u00f3\u0097\u00a8\u0006\"\u00078921285\u0012\u0011\bZ\u0012\u0006\u0010\u00ac\u00f4\u0097\u00a8\u0006\"\u000538532\u0012\u0011\b[\u0012\u0006\u0010\u00d8\u00f4\u0097\u00a8\u0006\"\u000538533\u0012\u0011\b\\\u0012\u0006\u0010\u0097\u00f5\u0097\u00a8\u0006\"\u000538534\u0012\u0011\b]\u0012\u0006\u0010\u00c8\u00f5\u0097\u00a8\u0006\"\u000538535\u0012\u0011\b^\u0012\u0006\u0010\u008a\u00f6\u0097\u00a8\u0006\"\u000538536\u0012\u0013\b_\u0012\u0006\u0010\u00af\u00f6\u0097\u00a8\u0006\"\u00074838437\u0012\u0011\b`\u0012\u0006\u0010\u00e7\u00f6\u0097\u00a8\u0006\"\u000545085\u0012\u0011\ba\u0012\u0006\u0010\u00bb\u00f7\u0097\u00a8\u0006\"\u000545086\u0012\u0011\bb\u0012\u0006\u0010\u00f1\u00f7\u0097\u00a8\u0006\"\u000538539\u0012\u0011\bc\u0012\u0006\u0010\u00b7\u00f8\u0097\u00a8\u0006\"\u000538540\u0012\u0011\bd\u0012\u0006\u0010\u008b\u00f9\u0097\u00a8\u0006\"\u000538544\u0012\u0011\be\u0012\u0006\u0010\u00d7\u00f9\u0097\u00a8\u0006\"\u000538545\u0012\u0011\bf\u0012\u0006\u0010\u00ba\u00fa\u0097\u00a8\u0006\"\u000538546\u0012\u0011\bg\u0012\u0006\u0010\u00c5\u00fb\u0097\u00a8\u0006\"\u000538548\u0012\u0011\bh\u0012\u0006\u0010\u0095\u00fc\u0097\u00a8\u0006\"\u000538549\u0012\u0011\bi\u0012\u0006\u0010\u00d8\u00fc\u0097\u00a8\u0006\"\u000538550\u0012\u0011\bj\u0012\u0006\u0010\u00b6\u00fe\u0097\u00a8\u0006\"\u000538552\u0012\u0011\bk\u0012\u0006\u0010\u00a0\u00ff\u0097\u00a8\u0006\"\u000549359\u0012\u0011\bl\u0012\u0006\u0010\u00e1\u00ff\u0097\u00a8\u0006\"\u000549360\u0012\u0011\bm\u0012\u0006\u0010\u00f6\u0080\u0098\u00a8\u0006\"\u000549361\u0012\u0011\bn\u0012\u0006\u0010\u009c\u0081\u0098\u00a8\u0006\"\u000549362\u0012\u0011\bo\u0012\u0006\u0010\u00dd\u0081\u0098\u00a8\u0006\"\u000549363\u0012\u0011\bp\u0012\u0006\u0010\u00a2\u0082\u0098\u00a8\u0006\"\u000549364\u0012\u0011\bq\u0012\u0006\u0010\u00d7\u0082\u0098\u00a8\u0006\"\u000549365\u0012\u0011\br\u0012\u0006\u0010\u00bc\u0083\u0098\u00a8\u0006\"\u000538560\u0012\u0011\bs\u0012\u0006\u0010\u00f6\u0083\u0098\u00a8\u0006\"\u000542857\u0012\u0011\bt\u0012\u0006\u0010\u00a5\u0084\u0098\u00a8\u0006\"\u000538562\u0012\u0011\bu\u0012\u0006\u0010\u00da\u0084\u0098\u00a8\u0006\"\u000538563\u0012\u0011\bv\u0012\u0006\u0010\u0098\u0085\u0098\u00a8\u0006\"\u000542854\u0012\u0011\bw\u0012\u0006\u0010\u00b6\u0086\u0098\u00a8\u0006\"\u000538565\u0012\u0011\bx\u0012\u0006\u0010\u0086\u0087\u0098\u00a8\u0006\"\u000540932\u0012\u0011\by\u0012\u0006\u0010\u00cf\u0087\u0098\u00a8\u0006\"\u000538566\u0012\u0011\bz\u0012\u0006\u0010\u0086\u0088\u0098\u00a8\u0006\"\u000538567\u0012\u0011\b{\u0012\u0006\u0010\u00d8\u0088\u0098\u00a8\u0006\"\u000538568\u0012\u0011\b|\u0012\u0006\u0010\u008c\u0089\u0098\u00a8\u0006\"\u000538569\u0012\u0011\b}\u0012\u0006\u0010\u00d9\u0089\u0098\u00a8\u0006\"\u000538570\u0012\u0011\b~\u0012\u0006\u0010\u00c1\u008a\u0098\u00a8\u0006\"\u000538571\u0012\u0011\b\u007f\u0012\u0006\u0010\u00a7\u008b\u0098\u00a8\u0006\"\u000538572\u001a\b\u001a\u0006DDDZ67 \u00ac\u00e8\u0097\u00a8\u0006\"`\n/\n\u001025711-701ff27f-2\u0012\b14:31:00\u001a\b20230916 \u0000*\u00037300\u0000\u0012\u001d\r\u0082Q\u0013\u00c2\u0015\u0082\u001a\u0092\u00c2\u001d\u0000\u0000dB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-9\u008e\u00c3@(\u00ac\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DDDZ67" + }, + { + "type": "con_recorrido", + "entity": "\n$080c3df7-3ab7-4851-a7e8-c098ca923f8d\u001a\u00d2\r\n/\n\u001025714-701ff27f-2\u0012\b15:16:00\u001a\b20230916 \u0000*\u00037300\u0000\u0012\u0011\b\u000e\u0012\u0006\u0010\u00cf\u00e8\u0097\u00a8\u0006\"\u000549256\u0012\u0011\b\u000f\u0012\u0006\u0010\u00eb\u00e9\u0097\u00a8\u0006\"\u000549214\u0012\u0011\b\u0010\u0012\u0006\u0010\u009d\u00ea\u0097\u00a8\u0006\"\u000549218\u0012\u0011\b\u0011\u0012\u0006\u0010\u00b5\u00ea\u0097\u00a8\u0006\"\u000549257\u0012\u0011\b\u0012\u0012\u0006\u0010\u00b0\u00eb\u0097\u00a8\u0006\"\u000549258\u0012\u0011\b\u0013\u0012\u0006\u0010\u00e9\u00eb\u0097\u00a8\u0006\"\u000549259\u0012\u0011\b\u0014\u0012\u0006\u0010\u00f1\u00eb\u0097\u00a8\u0006\"\u000549260\u0012\u0011\b\u0015\u0012\u0006\u0010\u0099\u00ed\u0097\u00a8\u0006\"\u000549261\u0012\u0011\b\u0016\u0012\u0006\u0010\u00b8\u00ed\u0097\u00a8\u0006\"\u000549262\u0012\u0011\b\u0017\u0012\u0006\u0010\u00cd\u00ed\u0097\u00a8\u0006\"\u000549263\u0012\u0011\b\u0018\u0012\u0006\u0010\u00c2\u00f3\u0097\u00a8\u0006\"\u000534549\u0012\u0011\b\u0019\u0012\u0006\u0010\u0098\u00f6\u0097\u00a8\u0006\"\u000549264\u0012\u0011\b\u001a\u0012\u0006\u0010\u009a\u00f6\u0097\u00a8\u0006\"\u000549265\u0012\u0011\b\u001b\u0012\u0006\u0010\u00c9\u00f7\u0097\u00a8\u0006\"\u000542274\u0012\u0011\b\u001c\u0012\u0006\u0010\u009b\u00f8\u0097\u00a8\u0006\"\u000542275\u0012\u0011\b\u001d\u0012\u0006\u0010\u00c7\u00f8\u0097\u00a8\u0006\"\u000542276\u0012\u0011\b\u001e\u0012\u0006\u0010\u00a1\u00f9\u0097\u00a8\u0006\"\u000542277\u0012\u0011\b\u001f\u0012\u0006\u0010\u00fb\u00f9\u0097\u00a8\u0006\"\u000542278\u0012\u0011\b \u0012\u0006\u0010\u00a9\u00fa\u0097\u00a8\u0006\"\u000542279\u0012\u0011\b!\u0012\u0006\u0010\u0086\u00fb\u0097\u00a8\u0006\"\u000542280\u0012\u0011\b\"\u0012\u0006\u0010\u00b7\u00fb\u0097\u00a8\u0006\"\u000542281\u0012\u0011\b#\u0012\u0006\u0010\u008f\u00fc\u0097\u00a8\u0006\"\u000542282\u0012\u0011\b$\u0012\u0006\u0010\u00d1\u00fc\u0097\u00a8\u0006\"\u000542283\u0012\u0011\b%\u0012\u0006\u0010\u00a0\u00fd\u0097\u00a8\u0006\"\u000549279\u0012\u0011\b&\u0012\u0006\u0010\u0081\u00fe\u0097\u00a8\u0006\"\u000542285\u0012\u0011\b'\u0012\u0006\u0010\u00f1\u00fe\u0097\u00a8\u0006\"\u000542286\u0012\u0011\b(\u0012\u0006\u0010\u0086\u00ff\u0097\u00a8\u0006\"\u000542287\u0012\u0011\b)\u0012\u0006\u0010\u00d0\u00ff\u0097\u00a8\u0006\"\u000542288\u0012\u0011\b*\u0012\u0006\u0010\u00fe\u00ff\u0097\u00a8\u0006\"\u000542289\u0012\u0011\b+\u0012\u0006\u0010\u00e8\u0080\u0098\u00a8\u0006\"\u000542290\u0012\u0011\b,\u0012\u0006\u0010\u00b4\u0081\u0098\u00a8\u0006\"\u000542291\u0012\u0011\b-\u0012\u0006\u0010\u00af\u0082\u0098\u00a8\u0006\"\u000542292\u0012\u0011\b.\u0012\u0006\u0010\u0096\u0083\u0098\u00a8\u0006\"\u000542293\u0012\u0011\b/\u0012\u0006\u0010\u00a7\u0085\u0098\u00a8\u0006\"\u000542294\u0012\u0011\b0\u0012\u0006\u0010\u00fb\u0086\u0098\u00a8\u0006\"\u000542295\u0012\u0011\b1\u0012\u0006\u0010\u00c1\u0088\u0098\u00a8\u0006\"\u000542296\u0012\u0011\b2\u0012\u0006\u0010\u00a8\u008a\u0098\u00a8\u0006\"\u000542297\u0012\u0011\b3\u0012\u0006\u0010\u00e3\u008b\u0098\u00a8\u0006\"\u000542298\u0012\u0011\b4\u0012\u0006\u0010\u00e5\u008c\u0098\u00a8\u0006\"\u000542299\u0012\u0011\b5\u0012\u0006\u0010\u00bd\u008d\u0098\u00a8\u0006\"\u000549295\u0012\u0011\b6\u0012\u0006\u0010\u00bc\u008f\u0098\u00a8\u0006\"\u000549296\u0012\u0011\b7\u0012\u0006\u0010\u008e\u0091\u0098\u00a8\u0006\"\u000549297\u0012\u0011\b8\u0012\u0006\u0010\u00e3\u0091\u0098\u00a8\u0006\"\u000549298\u0012\u0011\b9\u0012\u0006\u0010\u008f\u0093\u0098\u00a8\u0006\"\u000549299\u0012\u0011\b:\u0012\u0006\u0010\u00fd\u0093\u0098\u00a8\u0006\"\u000549300\u0012\u0011\b;\u0012\u0006\u0010\u00dd\u0095\u0098\u00a8\u0006\"\u000549301\u0012\u0011\b<\u0012\u0006\u0010\u009d\u0097\u0098\u00a8\u0006\"\u000549302\u0012\u0011\b=\u0012\u0006\u0010\u00a1\u0098\u0098\u00a8\u0006\"\u000549303\u0012\u0011\b>\u0012\u0006\u0010\u00be\u0099\u0098\u00a8\u0006\"\u000549304\u0012\u0011\b?\u0012\u0006\u0010\u0096\u009a\u0098\u00a8\u0006\"\u000549305\u0012\u0011\b@\u0012\u0006\u0010\u00cd\u009b\u0098\u00a8\u0006\"\u000549306\u0012\u0011\bA\u0012\u0006\u0010\u00d2\u009c\u0098\u00a8\u0006\"\u000549307\u0012\u0011\bB\u0012\u0006\u0010\u00a5\u009d\u0098\u00a8\u0006\"\u000549308\u0012\u0011\bC\u0012\u0006\u0010\u00fa\u009d\u0098\u00a8\u0006\"\u000549309\u0012\u0011\bD\u0012\u0006\u0010\u00de\u009e\u0098\u00a8\u0006\"\u000542315\u0012\u0011\bE\u0012\u0006\u0010\u00b2\u009f\u0098\u00a8\u0006\"\u000542316\u0012\u0011\bF\u0012\u0006\u0010\u00f1\u00a0\u0098\u00a8\u0006\"\u000542317\u0012\u0011\bG\u0012\u0006\u0010\u009d\u00a2\u0098\u00a8\u0006\"\u000542318\u0012\u0013\bH\u0012\u0006\u0010\u00d5\u00a4\u0098\u00a8\u0006\"\u00078606396\u0012\u0011\bI\u0012\u0006\u0010\u00a5\u00a7\u0098\u00a8\u0006\"\u000538514\u0012\u0011\bJ\u0012\u0006\u0010\u00e5\u00a8\u0098\u00a8\u0006\"\u000538516\u0012\u0011\bK\u0012\u0006\u0010\u00fe\u00aa\u0098\u00a8\u0006\"\u000538518\u0012\u0011\bL\u0012\u0006\u0010\u008f\u00af\u0098\u00a8\u0006\"\u000538520\u0012\u0011\bM\u0012\u0006\u0010\u0088\u00b1\u0098\u00a8\u0006\"\u000538521\u0012\u0011\bN\u0012\u0006\u0010\u0096\u00b3\u0098\u00a8\u0006\"\u000538522\u0012\u0011\bO\u0012\u0006\u0010\u00cd\u00b5\u0098\u00a8\u0006\"\u000538523\u0012\u0011\bP\u0012\u0006\u0010\u00a8\u00b8\u0098\u00a8\u0006\"\u000538524\u0012\u0011\bQ\u0012\u0006\u0010\u00fe\u00ba\u0098\u00a8\u0006\"\u000538525\u0012\u0011\bR\u0012\u0006\u0010\u0080\u00be\u0098\u00a8\u0006\"\u000538526\u0012\u0011\bS\u0012\u0006\u0010\u00fc\u00c0\u0098\u00a8\u0006\"\u000538527\u0012\u0011\bT\u0012\u0006\u0010\u00f0\u00c6\u0098\u00a8\u0006\"\u000538528\u0012\u0011\bU\u0012\u0006\u0010\u00d7\u00cf\u0098\u00a8\u0006\"\u000538529\u0012\u0011\bV\u0012\u0006\u0010\u00e1\u00e3\u0098\u00a8\u0006\"\u000538530\u0012\u0014\bW\u0012\u0006\u0010\u00f1\u00e5\u0098\u00a8\u0006\"\b16005209\u0012\u0011\bX\u0012\u0006\u0010\u009a\u0089\u0099\u00a8\u0006\"\u000538531\u0012\u0013\bY\u0012\u0006\u0010\u0097\u0094\u0099\u00a8\u0006\"\u00078921285\u0012\u0011\bZ\u0012\u0006\u0010\u00bb\u00af\u0099\u00a8\u0006\"\u000538532\u0012\u0011\b[\u0012\u0006\u0010\u00df\u00bc\u0099\u00a8\u0006\"\u000538533\u0012\u0011\b\\\u0012\u0006\u0010\u00e4\u00d2\u0099\u00a8\u0006\"\u000538534\u0012\u0011\b]\u0012\u0006\u0010\u00f9\u00e6\u0099\u00a8\u0006\"\u000538535\u0012\u0011\b^\u0012\u0006\u0010\u008c\u0088\u009a\u00a8\u0006\"\u000538536\u0012\u0013\b_\u0012\u0006\u0010\u00a1\u009e\u009a\u00a8\u0006\"\u00074838437\u0012\u0011\b`\u0012\u0006\u0010\u00c9\u00c6\u009a\u00a8\u0006\"\u000545085\u0012\u0011\ba\u0012\u0006\u0010\u00bb\u0099\u009b\u00a8\u0006\"\u000545086\u0012\u0011\bb\u0012\u0006\u0010\u00f3\u00e5\u009b\u00a8\u0006\"\u000538539\u0012\u0011\bc\u0012\u0006\u0010\u00f7\u00f8\u009c\u00a8\u0006\"\u000538540\u0012\u0011\bd\u0012\u0006\u0010\u00dd\u00ce\u009f\u00a8\u0006\"\u000538544\u0012\u0011\be\u0012\u0006\u0010\u00d3\u008e\u00a6\u00a8\u0006\"\u000538545\u001a\b\u001a\u0006DPZZ52 \u00af\u00e8\u0097\u00a8\u0006\"`\n/\n\u001025714-701ff27f-2\u0012\b15:16:00\u001a\b20230916 \u0000*\u00037300\u0000\u0012\u001d\r\u00e1\u00e5\u0013\u00c2\u0015\u001c\u00df\u0091\u00c2\u001d\u0000\u0000\u0086C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008e\u00e3\u00f8@(\u00af\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DPZZ52" + }, + { + "type": "con_recorrido", + "entity": "\n$c78b1aca-62ed-4c05-830d-43fe35397b65\u001a\u00a0\u0001\n/\n\u001025707-701ff27f-2\u0012\b13:31:00\u001a\b20230916 \u0000*\u00037300\u0000\u0012\u0011\b{\u0012\u0006\u0010\u00df\u00e8\u0097\u00a8\u0006\"\u000538568\u0012\u0011\b|\u0012\u0006\u0010\u00fd\u00e8\u0097\u00a8\u0006\"\u000538569\u0012\u0011\b}\u0012\u0006\u0010\u00a9\u00e9\u0097\u00a8\u0006\"\u000538570\u0012\u0011\b~\u0012\u0006\u0010\u00e4\u00e9\u0097\u00a8\u0006\"\u000538571\u0012\u0011\b\u007f\u0012\u0006\u0010\u009a\u00ea\u0097\u00a8\u0006\"\u000538572\u001a\b\u001a\u0006GDBP49 \u00b4\u00e8\u0097\u00a8\u0006\"`\n/\n\u001025707-701ff27f-2\u0012\b13:31:00\u001a\b20230916 \u0000*\u00037300\u0000\u0012\u001d\r\u009b\u00e5\u0012\u00c2\u0015e=\u0092\u00c2\u001d\u0000\u0000\u0000B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b4\u00e8\u0097\u00a8\u0006B\b\u001a\u0006GDBP49" + }, + { + "type": "con_recorrido", + "entity": "\n$ea2ab4d5-d766-4915-8730-59900b063a49\u001a\u00b1\u000e\n/\n\u001025713-701ff27f-2\u0012\b15:01:00\u001a\b20230916 \u0000*\u00037300\u0000\u0012\u0011\b#\u0012\u0006\u0010\u0082\u00e9\u0097\u00a8\u0006\"\u000542282\u0012\u0011\b$\u0012\u0006\u0010\u00bd\u00e9\u0097\u00a8\u0006\"\u000542283\u0012\u0011\b%\u0012\u0006\u0010\u0082\u00ea\u0097\u00a8\u0006\"\u000549279\u0012\u0011\b&\u0012\u0006\u0010\u00d3\u00ea\u0097\u00a8\u0006\"\u000542285\u0012\u0011\b'\u0012\u0006\u0010\u00ad\u00eb\u0097\u00a8\u0006\"\u000542286\u0012\u0011\b(\u0012\u0006\u0010\u00bd\u00eb\u0097\u00a8\u0006\"\u000542287\u0012\u0011\b)\u0012\u0006\u0010\u00f6\u00eb\u0097\u00a8\u0006\"\u000542288\u0012\u0011\b*\u0012\u0006\u0010\u0099\u00ec\u0097\u00a8\u0006\"\u000542289\u0012\u0011\b+\u0012\u0006\u0010\u00e7\u00ec\u0097\u00a8\u0006\"\u000542290\u0012\u0011\b,\u0012\u0006\u0010\u009e\u00ed\u0097\u00a8\u0006\"\u000542291\u0012\u0011\b-\u0012\u0006\u0010\u00f3\u00ed\u0097\u00a8\u0006\"\u000542292\u0012\u0011\b.\u0012\u0006\u0010\u00b7\u00ee\u0097\u00a8\u0006\"\u000542293\u0012\u0011\b/\u0012\u0006\u0010\u00e5\u00ef\u0097\u00a8\u0006\"\u000542294\u0012\u0011\b0\u0012\u0006\u0010\u00e1\u00f0\u0097\u00a8\u0006\"\u000542295\u0012\u0011\b1\u0012\u0006\u0010\u00d0\u00f1\u0097\u00a8\u0006\"\u000542296\u0012\u0011\b2\u0012\u0006\u0010\u00ca\u00f2\u0097\u00a8\u0006\"\u000542297\u0012\u0011\b3\u0012\u0006\u0010\u00a9\u00f3\u0097\u00a8\u0006\"\u000542298\u0012\u0011\b4\u0012\u0006\u0010\u00e8\u00f3\u0097\u00a8\u0006\"\u000542299\u0012\u0011\b5\u0012\u0006\u0010\u0092\u00f4\u0097\u00a8\u0006\"\u000549295\u0012\u0011\b6\u0012\u0006\u0010\u0086\u00f5\u0097\u00a8\u0006\"\u000549296\u0012\u0011\b7\u0012\u0006\u0010\u00e2\u00f5\u0097\u00a8\u0006\"\u000549297\u0012\u0011\b8\u0012\u0006\u0010\u0085\u00f6\u0097\u00a8\u0006\"\u000549298\u0012\u0011\b9\u0012\u0006\u0010\u00cc\u00f6\u0097\u00a8\u0006\"\u000549299\u0012\u0011\b:\u0012\u0006\u0010\u00f9\u00f6\u0097\u00a8\u0006\"\u000549300\u0012\u0011\b;\u0012\u0006\u0010\u00d0\u00f7\u0097\u00a8\u0006\"\u000549301\u0012\u0011\b<\u0012\u0006\u0010\u0097\u00f8\u0097\u00a8\u0006\"\u000549302\u0012\u0011\b=\u0012\u0006\u0010\u00c7\u00f8\u0097\u00a8\u0006\"\u000549303\u0012\u0011\b>\u0012\u0006\u0010\u00ff\u00f8\u0097\u00a8\u0006\"\u000549304\u0012\u0011\b?\u0012\u0006\u0010\u009e\u00f9\u0097\u00a8\u0006\"\u000549305\u0012\u0011\b@\u0012\u0006\u0010\u00db\u00f9\u0097\u00a8\u0006\"\u000549306\u0012\u0011\bA\u0012\u0006\u0010\u0088\u00fa\u0097\u00a8\u0006\"\u000549307\u0012\u0011\bB\u0012\u0006\u0010\u00a2\u00fa\u0097\u00a8\u0006\"\u000549308\u0012\u0011\bC\u0012\u0006\u0010\u00be\u00fa\u0097\u00a8\u0006\"\u000549309\u0012\u0011\bD\u0012\u0006\u0010\u00dd\u00fa\u0097\u00a8\u0006\"\u000542315\u0012\u0011\bE\u0012\u0006\u0010\u00f8\u00fa\u0097\u00a8\u0006\"\u000542316\u0012\u0011\bF\u0012\u0006\u0010\u00b2\u00fb\u0097\u00a8\u0006\"\u000542317\u0012\u0011\bG\u0012\u0006\u0010\u00e5\u00fb\u0097\u00a8\u0006\"\u000542318\u0012\u0013\bH\u0012\u0006\u0010\u00be\u00fc\u0097\u00a8\u0006\"\u00078606396\u0012\u0011\bI\u0012\u0006\u0010\u009a\u00fd\u0097\u00a8\u0006\"\u000538514\u0012\u0011\bJ\u0012\u0006\u0010\u00cd\u00fd\u0097\u00a8\u0006\"\u000538516\u0012\u0011\bK\u0012\u0006\u0010\u0094\u00fe\u0097\u00a8\u0006\"\u000538518\u0012\u0011\bL\u0012\u0006\u0010\u0094\u00ff\u0097\u00a8\u0006\"\u000538520\u0012\u0011\bM\u0012\u0006\u0010\u00ce\u00ff\u0097\u00a8\u0006\"\u000538521\u0012\u0011\bN\u0012\u0006\u0010\u008a\u0080\u0098\u00a8\u0006\"\u000538522\u0012\u0011\bO\u0012\u0006\u0010\u00cd\u0080\u0098\u00a8\u0006\"\u000538523\u0012\u0011\bP\u0012\u0006\u0010\u0095\u0081\u0098\u00a8\u0006\"\u000538524\u0012\u0011\bQ\u0012\u0006\u0010\u00d9\u0081\u0098\u00a8\u0006\"\u000538525\u0012\u0011\bR\u0012\u0006\u0010\u00a3\u0082\u0098\u00a8\u0006\"\u000538526\u0012\u0011\bS\u0012\u0006\u0010\u00e8\u0082\u0098\u00a8\u0006\"\u000538527\u0012\u0011\bT\u0012\u0006\u0010\u00ea\u0083\u0098\u00a8\u0006\"\u000538528\u0012\u0011\bU\u0012\u0006\u0010\u009b\u0085\u0098\u00a8\u0006\"\u000538529\u0012\u0011\bV\u0012\u0006\u0010\u00ee\u0087\u0098\u00a8\u0006\"\u000538530\u0012\u0014\bW\u0012\u0006\u0010\u008e\u0088\u0098\u00a8\u0006\"\b16005209\u0012\u0011\bX\u0012\u0006\u0010\u00c3\u008b\u0098\u00a8\u0006\"\u000538531\u0012\u0013\bY\u0012\u0006\u0010\u00b0\u008c\u0098\u00a8\u0006\"\u00078921285\u0012\u0011\bZ\u0012\u0006\u0010\u0097\u008e\u0098\u00a8\u0006\"\u000538532\u0012\u0011\b[\u0012\u0006\u0010\u00f8\u008e\u0098\u00a8\u0006\"\u000538533\u0012\u0011\b\\\u0012\u0006\u0010\u0084\u0090\u0098\u00a8\u0006\"\u000538534\u0012\u0011\b]\u0012\u0006\u0010\u00f4\u0090\u0098\u00a8\u0006\"\u000538535\u0012\u0011\b^\u0012\u0006\u0010\u0090\u0092\u0098\u00a8\u0006\"\u000538536\u0012\u0013\b_\u0012\u0006\u0010\u00e9\u0092\u0098\u00a8\u0006\"\u00074838437\u0012\u0011\b`\u0012\u0006\u0010\u00f3\u0093\u0098\u00a8\u0006\"\u000545085\u0012\u0011\ba\u0012\u0006\u0010\u00c7\u0095\u0098\u00a8\u0006\"\u000545086\u0012\u0011\bb\u0012\u0006\u0010\u00d6\u0096\u0098\u00a8\u0006\"\u000538539\u0012\u0011\bc\u0012\u0006\u0010\u0092\u0098\u0098\u00a8\u0006\"\u000538540\u0012\u0011\bd\u0012\u0006\u0010\u0080\u009a\u0098\u00a8\u0006\"\u000538544\u0012\u0011\be\u0012\u0006\u0010\u00dc\u009b\u0098\u00a8\u0006\"\u000538545\u0012\u0011\bf\u0012\u0006\u0010\u008a\u009e\u0098\u00a8\u0006\"\u000538546\u0012\u0011\bg\u0012\u0006\u0010\u00c8\u00a1\u0098\u00a8\u0006\"\u000538548\u0012\u0011\bh\u0012\u0006\u0010\u00db\u00a3\u0098\u00a8\u0006\"\u000538549\u0012\u0011\bi\u0012\u0006\u0010\u00c5\u00a5\u0098\u00a8\u0006\"\u000538550\u0012\u0011\bj\u0012\u0006\u0010\u0092\u00ac\u0098\u00a8\u0006\"\u000538552\u0012\u0011\bk\u0012\u0006\u0010\u00c7\u00af\u0098\u00a8\u0006\"\u000549359\u0012\u0011\bl\u0012\u0006\u0010\u00e0\u00b1\u0098\u00a8\u0006\"\u000549360\u0012\u0011\bm\u0012\u0006\u0010\u008f\u00b7\u0098\u00a8\u0006\"\u000549361\u0012\u0011\bn\u0012\u0006\u0010\u00c4\u00b8\u0098\u00a8\u0006\"\u000549362\u0012\u0011\bo\u0012\u0006\u0010\u008a\u00bb\u0098\u00a8\u0006\"\u000549363\u0012\u0011\bp\u0012\u0006\u0010\u00ee\u00bd\u0098\u00a8\u0006\"\u000549364\u0012\u0011\bq\u0012\u0006\u0010\u0089\u00c0\u0098\u00a8\u0006\"\u000549365\u0012\u0011\br\u0012\u0006\u0010\u00bf\u00c4\u0098\u00a8\u0006\"\u000538560\u0012\u0011\bs\u0012\u0006\u0010\u0091\u00c7\u0098\u00a8\u0006\"\u000542857\u0012\u0011\bt\u0012\u0006\u0010\u00b0\u00c9\u0098\u00a8\u0006\"\u000538562\u0012\u0011\bu\u0012\u0006\u0010\u00fc\u00cb\u0098\u00a8\u0006\"\u000538563\u0012\u0011\bv\u0012\u0006\u0010\u008b\u00cf\u0098\u00a8\u0006\"\u000542854\u0012\u0011\bw\u0012\u0006\u0010\u00d8\u00d7\u0098\u00a8\u0006\"\u000538565\u0012\u0011\bx\u0012\u0006\u0010\u00b5\u00dc\u0098\u00a8\u0006\"\u000540932\u0012\u0011\by\u0012\u0006\u0010\u00f1\u00e0\u0098\u00a8\u0006\"\u000538566\u0012\u0011\bz\u0012\u0006\u0010\u00bc\u00e4\u0098\u00a8\u0006\"\u000538567\u0012\u0011\b{\u0012\u0006\u0010\u0088\u00ea\u0098\u00a8\u0006\"\u000538568\u0012\u0011\b|\u0012\u0006\u0010\u00dc\u00ed\u0098\u00a8\u0006\"\u000538569\u0012\u0011\b}\u0012\u0006\u0010\u00be\u00f3\u0098\u00a8\u0006\"\u000538570\u0012\u0011\b~\u0012\u0006\u0010\u00f4\u00fb\u0098\u00a8\u0006\"\u000538571\u0012\u0011\b\u007f\u0012\u0006\u0010\u00de\u0084\u0099\u00a8\u0006\"\u000538572\u001a\b\u001a\u0006GYGP39 \u00ca\u00e8\u0097\u00a8\u0006\"`\n/\n\u001025713-701ff27f-2\u0012\b15:01:00\u001a\b20230916 \u0000*\u00037300\u0000\u0012\u001d\r\u00e9\u00b8\u0013\u00c2\u0015\u00d0\u000b\u0092\u00c2\u001d\u0000\u0080\u00aaC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000 A(\u00ca\u00e8\u0097\u00a8\u0006B\b\u001a\u0006GYGP39" + }, + { + "type": "con_recorrido", + "entity": "\n$74bf276a-7b41-42dd-acea-78c11ed204c8\u001ag\n/\n\u001025709-701ff27f-2\u0012\b14:01:00\u001a\b20230916 \u0000*\u00037300\u0000\u0012\u0011\b~\u0012\u0006\u0010\u00b9\u00e8\u0097\u00a8\u0006\"\u000538571\u0012\u0011\b\u007f\u0012\u0006\u0010\u00f1\u00e8\u0097\u00a8\u0006\"\u000538572\u001a\b\u001a\u0006KXVG62 \u00ac\u00e8\u0097\u00a8\u0006\"`\n/\n\u001025709-701ff27f-2\u0012\b14:01:00\u001a\b20230916 \u0000*\u00037300\u0000\u0012\u001d\r\u00f1\u00e3\u0012\u00c2\u0015\u0012A\u0092\u00c2\u001d\u0000\u0000gC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UU-A(\u00ac\u00e8\u0097\u00a8\u0006B\b\u001a\u0006KXVG62" + }, + { + "type": "con_recorrido", + "entity": "\n$e1e9cf41-6efc-4e8e-8416-a5f5819f2c2c\u001a\u00aa\u0006\n/\n\u001025710-701ff27f-2\u0012\b14:16:00\u001a\b20230916 \u0000*\u00037300\u0000\u0012\u0013\bY\u0012\u0006\u0010\u0096\u00e8\u0097\u00a8\u0006\"\u00078921285\u0012\u0011\bZ\u0012\u0006\u0010\u008d\u00e9\u0097\u00a8\u0006\"\u000538532\u0012\u0011\b[\u0012\u0006\u0010\u00bb\u00e9\u0097\u00a8\u0006\"\u000538533\u0012\u0011\b\\\u0012\u0006\u0010\u00fc\u00e9\u0097\u00a8\u0006\"\u000538534\u0012\u0011\b]\u0012\u0006\u0010\u00ae\u00ea\u0097\u00a8\u0006\"\u000538535\u0012\u0011\b^\u0012\u0006\u0010\u00f0\u00ea\u0097\u00a8\u0006\"\u000538536\u0012\u0013\b_\u0012\u0006\u0010\u0094\u00eb\u0097\u00a8\u0006\"\u00074838437\u0012\u0011\b`\u0012\u0006\u0010\u00cb\u00eb\u0097\u00a8\u0006\"\u000545085\u0012\u0011\ba\u0012\u0006\u0010\u009b\u00ec\u0097\u00a8\u0006\"\u000545086\u0012\u0011\bb\u0012\u0006\u0010\u00ce\u00ec\u0097\u00a8\u0006\"\u000538539\u0012\u0011\bc\u0012\u0006\u0010\u008e\u00ed\u0097\u00a8\u0006\"\u000538540\u0012\u0011\bd\u0012\u0006\u0010\u00db\u00ed\u0097\u00a8\u0006\"\u000538544\u0012\u0011\be\u0012\u0006\u0010\u009e\u00ee\u0097\u00a8\u0006\"\u000538545\u0012\u0011\bf\u0012\u0006\u0010\u00f4\u00ee\u0097\u00a8\u0006\"\u000538546\u0012\u0011\bg\u0012\u0006\u0010\u00e9\u00ef\u0097\u00a8\u0006\"\u000538548\u0012\u0011\bh\u0012\u0006\u0010\u00ac\u00f0\u0097\u00a8\u0006\"\u000538549\u0012\u0011\bi\u0012\u0006\u0010\u00e2\u00f0\u0097\u00a8\u0006\"\u000538550\u0012\u0011\bj\u0012\u0006\u0010\u0091\u00f2\u0097\u00a8\u0006\"\u000538552\u0012\u0011\bk\u0012\u0006\u0010\u00e2\u00f2\u0097\u00a8\u0006\"\u000549359\u0012\u0011\bl\u0012\u0006\u0010\u0092\u00f3\u0097\u00a8\u0006\"\u000549360\u0012\u0011\bm\u0012\u0006\u0010\u0080\u00f4\u0097\u00a8\u0006\"\u000549361\u0012\u0011\bn\u0012\u0006\u0010\u009b\u00f4\u0097\u00a8\u0006\"\u000549362\u0012\u0011\bo\u0012\u0006\u0010\u00ca\u00f4\u0097\u00a8\u0006\"\u000549363\u0012\u0011\bp\u0012\u0006\u0010\u00fa\u00f4\u0097\u00a8\u0006\"\u000549364\u0012\u0011\bq\u0012\u0006\u0010\u009f\u00f5\u0097\u00a8\u0006\"\u000549365\u0012\u0011\br\u0012\u0006\u0010\u00e4\u00f5\u0097\u00a8\u0006\"\u000538560\u0012\u0011\bs\u0012\u0006\u0010\u008c\u00f6\u0097\u00a8\u0006\"\u000542857\u0012\u0011\bt\u0012\u0006\u0010\u00ab\u00f6\u0097\u00a8\u0006\"\u000538562\u0012\u0011\bu\u0012\u0006\u0010\u00cf\u00f6\u0097\u00a8\u0006\"\u000538563\u0012\u0011\bv\u0012\u0006\u0010\u00f7\u00f6\u0097\u00a8\u0006\"\u000542854\u0012\u0011\bw\u0012\u0006\u0010\u00de\u00f7\u0097\u00a8\u0006\"\u000538565\u0012\u0011\bx\u0012\u0006\u0010\u0091\u00f8\u0097\u00a8\u0006\"\u000540932\u0012\u0011\by\u0012\u0006\u0010\u00bf\u00f8\u0097\u00a8\u0006\"\u000538566\u0012\u0011\bz\u0012\u0006\u0010\u00e1\u00f8\u0097\u00a8\u0006\"\u000538567\u0012\u0011\b{\u0012\u0006\u0010\u0094\u00f9\u0097\u00a8\u0006\"\u000538568\u0012\u0011\b|\u0012\u0006\u0010\u00b3\u00f9\u0097\u00a8\u0006\"\u000538569\u0012\u0011\b}\u0012\u0006\u0010\u00e2\u00f9\u0097\u00a8\u0006\"\u000538570\u0012\u0011\b~\u0012\u0006\u0010\u00a0\u00fa\u0097\u00a8\u0006\"\u000538571\u0012\u0011\b\u007f\u0012\u0006\u0010\u00dc\u00fa\u0097\u00a8\u0006\"\u000538572\u001a\b\u001a\u0006RFDS28 \u0092\u00e8\u0097\u00a8\u0006\"`\n/\n\u001025710-701ff27f-2\u0012\b14:16:00\u001a\b20230916 \u0000*\u00037300\u0000\u0012\u001d\r\u0007\u001e\u0013\u00c2\u0015\u00c2'\u0092\u00c2\u001d\u0000\u0000\u00adC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UU\u0085@(\u0092\u00e8\u0097\u00a8\u0006B\b\u001a\u0006RFDS28" + }, + { + "type": "con_recorrido", + "entity": "\n$00e5aa91-99e9-4633-8816-c14bc0724c7d\u001a\u00b7\t\n/\n\u001025749-701ff27f-2\u0012\b05:00:00\u001a\b20230916 \u0000*\u00037310\u0001\u0012\u0011\bF\u0012\u0006\u0010\u00bc\u00e9\u0097\u00a8\u0006\"\u000542209\u0012\u0011\bG\u0012\u0006\u0010\u00b7\u00ea\u0097\u00a8\u0006\"\u000542210\u0012\u0011\bH\u0012\u0006\u0010\u00f5\u00eb\u0097\u00a8\u0006\"\u000542215\u0012\u0011\bI\u0012\u0006\u0010\u0094\u00ec\u0097\u00a8\u0006\"\u000542216\u0012\u0011\bJ\u0012\u0006\u0010\u00bd\u00ec\u0097\u00a8\u0006\"\u000542217\u0012\u0011\bK\u0012\u0006\u0010\u0088\u00ed\u0097\u00a8\u0006\"\u000542218\u0012\u0011\bL\u0012\u0006\u0010\u00b3\u00ed\u0097\u00a8\u0006\"\u000542219\u0012\u0011\bM\u0012\u0006\u0010\u0095\u00ee\u0097\u00a8\u0006\"\u000542220\u0012\u0011\bN\u0012\u0006\u0010\u00c0\u00ee\u0097\u00a8\u0006\"\u000542221\u0012\u0011\bO\u0012\u0006\u0010\u0081\u00ef\u0097\u00a8\u0006\"\u000542222\u0012\u0011\bP\u0012\u0006\u0010\u00c4\u00ef\u0097\u00a8\u0006\"\u000542223\u0012\u0011\bQ\u0012\u0006\u0010\u00df\u00ef\u0097\u00a8\u0006\"\u000542224\u0012\u0011\bR\u0012\u0006\u0010\u00a6\u00f0\u0097\u00a8\u0006\"\u000542225\u0012\u0011\bS\u0012\u0006\u0010\u00e4\u00f0\u0097\u00a8\u0006\"\u000542226\u0012\u0011\bT\u0012\u0006\u0010\u009b\u00f1\u0097\u00a8\u0006\"\u000542227\u0012\u0011\bU\u0012\u0006\u0010\u00e3\u00f1\u0097\u00a8\u0006\"\u000542228\u0012\u0011\bV\u0012\u0006\u0010\u008e\u00f2\u0097\u00a8\u0006\"\u000542229\u0012\u0011\bW\u0012\u0006\u0010\u00e0\u00f2\u0097\u00a8\u0006\"\u000542230\u0012\u0011\bX\u0012\u0006\u0010\u008a\u00f3\u0097\u00a8\u0006\"\u000542231\u0012\u0011\bY\u0012\u0006\u0010\u00d8\u00f3\u0097\u00a8\u0006\"\u000542232\u0012\u0011\bZ\u0012\u0006\u0010\u00aa\u00f4\u0097\u00a8\u0006\"\u000542233\u0012\u0011\b[\u0012\u0006\u0010\u00d4\u00f4\u0097\u00a8\u0006\"\u000542234\u0012\u0011\b\\\u0012\u0006\u0010\u009f\u00f5\u0097\u00a8\u0006\"\u000542235\u0012\u0011\b]\u0012\u0006\u0010\u00b4\u00f5\u0097\u00a8\u0006\"\u000542211\u0012\u0011\b^\u0012\u0006\u0010\u00f0\u00f5\u0097\u00a8\u0006\"\u000549203\u0012\u0011\b_\u0012\u0006\u0010\u00aa\u00f6\u0097\u00a8\u0006\"\u000549204\u0012\u0011\b`\u0012\u0006\u0010\u00bc\u00f6\u0097\u00a8\u0006\"\u000542503\u0012\u0011\ba\u0012\u0006\u0010\u00c4\u00f6\u0097\u00a8\u0006\"\u000534564\u0012\u0011\bb\u0012\u0006\u0010\u00a6\u00f9\u0097\u00a8\u0006\"\u000534789\u0012\u0011\bc\u0012\u0006\u0010\u00c3\u00f9\u0097\u00a8\u0006\"\u000549163\u0012\u0011\bd\u0012\u0006\u0010\u00cb\u0080\u0098\u00a8\u0006\"\u000549208\u0012\u0011\be\u0012\u0006\u0010\u00ed\u0080\u0098\u00a8\u0006\"\u000549209\u0012\u0011\bf\u0012\u0006\u0010\u0082\u0081\u0098\u00a8\u0006\"\u000549210\u0012\u0011\bg\u0012\u0006\u0010\u008c\u0083\u0098\u00a8\u0006\"\u000549211\u0012\u0011\bh\u0012\u0006\u0010\u00af\u0083\u0098\u00a8\u0006\"\u000549212\u0012\u0011\bi\u0012\u0006\u0010\u0082\u0084\u0098\u00a8\u0006\"\u000549213\u0012\u0011\bj\u0012\u0006\u0010\u009e\u0086\u0098\u00a8\u0006\"\u000549206\u0012\u0011\bk\u0012\u0006\u0010\u008d\u0087\u0098\u00a8\u0006\"\u000549215\u0012\u0011\bl\u0012\u0006\u0010\u00f4\u0087\u0098\u00a8\u0006\"\u000538041\u0012\u0011\bm\u0012\u0006\u0010\u00ac\u0088\u0098\u00a8\u0006\"\u000538042\u0012\u0011\bn\u0012\u0006\u0010\u00e8\u0088\u0098\u00a8\u0006\"\u000538043\u0012\u0011\bo\u0012\u0006\u0010\u00be\u0089\u0098\u00a8\u0006\"\u000538044\u0012\u0011\bp\u0012\u0006\u0010\u0087\u008a\u0098\u00a8\u0006\"\u000538045\u0012\u0011\bq\u0012\u0006\u0010\u0086\u008b\u0098\u00a8\u0006\"\u000549247\u0012\u0011\br\u0012\u0006\u0010\u00ad\u008b\u0098\u00a8\u0006\"\u000549222\u0012\u0011\bs\u0012\u0006\u0010\u00bd\u008b\u0098\u00a8\u0006\"\u000549223\u0012\u0011\bt\u0012\u0006\u0010\u00df\u008b\u0098\u00a8\u0006\"\u000538049\u0012\u0011\bu\u0012\u0006\u0010\u00f8\u008b\u0098\u00a8\u0006\"\u000549224\u0012\u0011\bv\u0012\u0006\u0010\u00a1\u008c\u0098\u00a8\u0006\"\u000549225\u0012\u0011\bw\u0012\u0006\u0010\u00d1\u008c\u0098\u00a8\u0006\"\u000549226\u0012\u0011\bx\u0012\u0006\u0010\u0086\u008d\u0098\u00a8\u0006\"\u000549227\u0012\u0011\by\u0012\u0006\u0010\u00c4\u008d\u0098\u00a8\u0006\"\u000549229\u0012\u0011\bz\u0012\u0006\u0010\u00e5\u008d\u0098\u00a8\u0006\"\u000549228\u0012\u0011\b{\u0012\u0006\u0010\u00af\u008e\u0098\u00a8\u0006\"\u000549230\u0012\u0011\b|\u0012\u0006\u0010\u008c\u008f\u0098\u00a8\u0006\"\u000549235\u0012\u0011\b}\u0012\u0006\u0010\u009a\u0092\u0098\u00a8\u0006\"\u000549233\u0012\u0011\b~\u0012\u0006\u0010\u00cc\u0097\u0098\u00a8\u0006\"\u000540343\u0012\u0011\b\u007f\u0012\u0006\u0010\u0086\u0099\u0098\u00a8\u0006\"\u000549251\u0012\u0012\b\u0080\u0001\u0012\u0006\u0010\u00b9\u0099\u0098\u00a8\u0006\"\u000549242\u0012\u0012\b\u0081\u0001\u0012\u0006\u0010\u00c9\u009a\u0098\u00a8\u0006\"\u000538054\u001a\b\u001a\u0006RTPX58 \u00ce\u00e8\u0097\u00a8\u0006\"`\n/\n\u001025749-701ff27f-2\u0012\b05:00:00\u001a\b20230916 \u0000*\u00037310\u0001\u0012\u001d\rn\u0085\u0013\u00c2\u0015x\u0013\u0092\u00c2\u001d\u0000\u0000/C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u008e>(\u00ce\u00e8\u0097\u00a8\u0006B\b\u001a\u0006RTPX58" + }, + { + "type": "con_recorrido", + "entity": "\n$efc9eb12-dce1-4523-b7d0-51b00c084673\u001a\u0081\f\n/\n\u001025853-701ff27f-2\u0012\b14:46:00\u001a\b20230916 \u0000*\u00037320\u0000\u0012\u0011\b3\u0012\u0006\u0010\u00a6\u00e9\u0097\u00a8\u0006\"\u000542298\u0012\u0011\b4\u0012\u0006\u0010\u00e9\u00e9\u0097\u00a8\u0006\"\u000542299\u0012\u0011\b5\u0012\u0006\u0010\u0095\u00ea\u0097\u00a8\u0006\"\u000549295\u0012\u0011\b6\u0012\u0006\u0010\u0091\u00eb\u0097\u00a8\u0006\"\u000549296\u0012\u0011\b7\u0012\u0006\u0010\u00e9\u00eb\u0097\u00a8\u0006\"\u000549297\u0012\u0011\b8\u0012\u0006\u0010\u008d\u00ec\u0097\u00a8\u0006\"\u000549298\u0012\u0011\b9\u0012\u0006\u0010\u00d2\u00ec\u0097\u00a8\u0006\"\u000549299\u0012\u0011\b:\u0012\u0006\u0010\u00fc\u00ec\u0097\u00a8\u0006\"\u000549300\u0012\u0011\b;\u0012\u0006\u0010\u00ca\u00ed\u0097\u00a8\u0006\"\u000549301\u0012\u0011\b<\u0012\u0006\u0010\u0091\u00ee\u0097\u00a8\u0006\"\u000549302\u0012\u0011\b=\u0012\u0006\u0010\u00bd\u00ee\u0097\u00a8\u0006\"\u000549303\u0012\u0011\b>\u0012\u0006\u0010\u00f0\u00ee\u0097\u00a8\u0006\"\u000549304\u0012\u0011\b?\u0012\u0006\u0010\u00c2\u00ef\u0097\u00a8\u0006\"\u000549306\u0012\u0011\b@\u0012\u0006\u0010\u00e9\u00ef\u0097\u00a8\u0006\"\u000549307\u0012\u0011\bA\u0012\u0006\u0010\u0080\u00f0\u0097\u00a8\u0006\"\u000549308\u0012\u0011\bB\u0012\u0006\u0010\u0098\u00f0\u0097\u00a8\u0006\"\u000549309\u0012\u0011\bC\u0012\u0006\u0010\u00b3\u00f0\u0097\u00a8\u0006\"\u000542315\u0012\u0011\bD\u0012\u0006\u0010\u00c9\u00f0\u0097\u00a8\u0006\"\u000542316\u0012\u0011\bE\u0012\u0006\u0010\u00fb\u00f0\u0097\u00a8\u0006\"\u000542317\u0012\u0011\bF\u0012\u0006\u0010\u00ad\u00f1\u0097\u00a8\u0006\"\u000542318\u0012\u0013\bG\u0012\u0006\u0010\u00f3\u00f1\u0097\u00a8\u0006\"\u00078606396\u0012\u0011\bH\u0012\u0006\u0010\u00ba\u00f2\u0097\u00a8\u0006\"\u000538514\u0012\u0011\bI\u0012\u0006\u0010\u00e0\u00f2\u0097\u00a8\u0006\"\u000538516\u0012\u0011\bJ\u0012\u0006\u0010\u009a\u00f3\u0097\u00a8\u0006\"\u000538518\u0012\u0011\bK\u0012\u0006\u0010\u00fd\u00f3\u0097\u00a8\u0006\"\u000538520\u0012\u0011\bL\u0012\u0006\u0010\u00a5\u00f4\u0097\u00a8\u0006\"\u000538521\u0012\u0011\bM\u0012\u0006\u0010\u00d6\u00f4\u0097\u00a8\u0006\"\u000538522\u0012\u0011\bN\u0012\u0006\u0010\u0088\u00f5\u0097\u00a8\u0006\"\u000538523\u0012\u0011\bO\u0012\u0006\u0010\u00bd\u00f5\u0097\u00a8\u0006\"\u000538524\u0012\u0011\bP\u0012\u0006\u0010\u00ef\u00f5\u0097\u00a8\u0006\"\u000538525\u0012\u0011\bQ\u0012\u0006\u0010\u00a4\u00f6\u0097\u00a8\u0006\"\u000538526\u0012\u0011\bR\u0012\u0006\u0010\u00d6\u00f6\u0097\u00a8\u0006\"\u000538527\u0012\u0011\bS\u0012\u0006\u0010\u00b0\u00f7\u0097\u00a8\u0006\"\u000538528\u0012\u0011\bT\u0012\u0006\u0010\u00af\u00f8\u0097\u00a8\u0006\"\u000538529\u0012\u0011\bU\u0012\u0006\u0010\u008f\u00fa\u0097\u00a8\u0006\"\u000538530\u0012\u0014\bV\u0012\u0006\u0010\u009d\u00fa\u0097\u00a8\u0006\"\b16005209\u0012\u0011\bW\u0012\u0006\u0010\u00ad\u00fc\u0097\u00a8\u0006\"\u000538531\u0012\u0013\bX\u0012\u0006\u0010\u00ee\u00fc\u0097\u00a8\u0006\"\u00078921285\u0012\u0011\bY\u0012\u0006\u0010\u00f6\u00fd\u0097\u00a8\u0006\"\u000538532\u0012\u0011\bZ\u0012\u0006\u0010\u00b8\u00fe\u0097\u00a8\u0006\"\u000538533\u0012\u0011\b[\u0012\u0006\u0010\u00fd\u00fe\u0097\u00a8\u0006\"\u000538534\u0012\u0011\b\\\u0012\u0006\u0010\u00bc\u00ff\u0097\u00a8\u0006\"\u000538535\u0012\u0011\b]\u0012\u0006\u0010\u0091\u0080\u0098\u00a8\u0006\"\u000538536\u0012\u0013\b^\u0012\u0006\u0010\u00c2\u0080\u0098\u00a8\u0006\"\u00074838437\u0012\u0011\b_\u0012\u0006\u0010\u008b\u0081\u0098\u00a8\u0006\"\u000545085\u0012\u0011\b`\u0012\u0006\u0010\u00f8\u0081\u0098\u00a8\u0006\"\u000545086\u0012\u0011\ba\u0012\u0006\u0010\u00c1\u0082\u0098\u00a8\u0006\"\u000538539\u0012\u0011\bb\u0012\u0006\u0010\u00a0\u0083\u0098\u00a8\u0006\"\u000538540\u0012\u0011\bc\u0012\u0006\u0010\u0096\u0084\u0098\u00a8\u0006\"\u000538544\u0012\u0011\bd\u0012\u0006\u0010\u0080\u0085\u0098\u00a8\u0006\"\u000538545\u0012\u0011\be\u0012\u0006\u0010\u008e\u0086\u0098\u00a8\u0006\"\u000538546\u0012\u0011\bf\u0012\u0006\u0010\u00f8\u0086\u0098\u00a8\u0006\"\u000538547\u0012\u0011\bg\u0012\u0006\u0010\u00dc\u0087\u0098\u00a8\u0006\"\u000538548\u0012\u0011\bh\u0012\u0006\u0010\u00d0\u0088\u0098\u00a8\u0006\"\u000538549\u0012\u0011\bi\u0012\u0006\u0010\u00b3\u0089\u0098\u00a8\u0006\"\u000538550\u0012\u0011\bj\u0012\u0006\u0010\u00e6\u008a\u0098\u00a8\u0006\"\u000538551\u0012\u0011\bk\u0012\u0006\u0010\u008c\u008c\u0098\u00a8\u0006\"\u000538552\u0012\u0011\bl\u0012\u0006\u0010\u00b4\u008d\u0098\u00a8\u0006\"\u000549359\u0012\u0011\bm\u0012\u0006\u0010\u009c\u008e\u0098\u00a8\u0006\"\u000549360\u0012\u0011\bn\u0012\u0006\u0010\u0092\u0090\u0098\u00a8\u0006\"\u000549361\u0012\u0011\bo\u0012\u0006\u0010\u00d1\u0090\u0098\u00a8\u0006\"\u000549362\u0012\u0011\bp\u0012\u0006\u0010\u00bf\u0091\u0098\u00a8\u0006\"\u000549363\u0012\u0011\bq\u0012\u0006\u0010\u00b5\u0092\u0098\u00a8\u0006\"\u000549364\u0012\u0011\br\u0012\u0006\u0010\u008f\u0093\u0098\u00a8\u0006\"\u000549365\u0012\u0011\bs\u0012\u0006\u0010\u00c0\u0094\u0098\u00a8\u0006\"\u000538560\u0012\u0011\bt\u0012\u0006\u0010\u00a6\u0095\u0098\u00a8\u0006\"\u000542857\u0012\u0011\bu\u0012\u0006\u0010\u00fa\u0095\u0098\u00a8\u0006\"\u000538562\u0012\u0011\bv\u0012\u0006\u0010\u00da\u0096\u0098\u00a8\u0006\"\u000538563\u0012\u0011\bw\u0012\u0006\u0010\u00e4\u0097\u0098\u00a8\u0006\"\u000542854\u0012\u0011\bx\u0012\u0006\u0010\u00ee\u0099\u0098\u00a8\u0006\"\u000538565\u0012\u0011\by\u0012\u0006\u0010\u008f\u009b\u0098\u00a8\u0006\"\u000540932\u0012\u0011\bz\u0012\u0006\u0010\u00fb\u009c\u0098\u00a8\u0006\"\u000538567\u0012\u0011\b{\u0012\u0006\u0010\u009c\u009e\u0098\u00a8\u0006\"\u000538568\u0012\u0011\b|\u0012\u0006\u0010\u0081\u009f\u0098\u00a8\u0006\"\u000538569\u0012\u0011\b}\u0012\u0006\u0010\u009b\u00a0\u0098\u00a8\u0006\"\u000538570\u0012\u0011\b~\u0012\u0006\u0010\u00e7\u00a1\u0098\u00a8\u0006\"\u000538571\u0012\u0011\b\u007f\u0012\u0006\u0010\u00c1\u00a3\u0098\u00a8\u0006\"\u000538572\u001a\b\u001a\u0006DDKB35 \u00cb\u00e8\u0097\u00a8\u0006\"`\n/\n\u001025853-701ff27f-2\u0012\b14:46:00\u001a\b20230916 \u0000*\u00037320\u0000\u0012\u001d\r\u00fe~\u0013\u00c2\u0015\u00e9\u0014\u0092\u00c2\u001d\u0000\u0000\u00a7C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-r\u001c\u00abA(\u00cb\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DDKB35" + }, + { + "type": "con_recorrido", + "entity": "\n$bddd4675-e59c-4640-b50a-dd37071ebbb8\u001a\u00e5\r\n/\n\u001025855-701ff27f-2\u0012\b15:16:00\u001a\b20230916 \u0000*\u00037320\u0000\u0012\u0011\b\u0015\u0012\u0006\u0010\u009e\u00e8\u0097\u00a8\u0006\"\u000549263\u0012\u0011\b\u0016\u0012\u0006\u0010\u00ad\u00ee\u0097\u00a8\u0006\"\u000534549\u0012\u0011\b\u0017\u0012\u0006\u0010\u00f7\u00f0\u0097\u00a8\u0006\"\u000549264\u0012\u0011\b\u0018\u0012\u0006\u0010\u00fd\u00f0\u0097\u00a8\u0006\"\u000549265\u0012\u0011\b\u0019\u0012\u0006\u0010\u00a0\u00f1\u0097\u00a8\u0006\"\u000549266\u0012\u0011\b\u001a\u0012\u0006\u0010\u00d5\u00f1\u0097\u00a8\u0006\"\u000549267\u0012\u0011\b\u001b\u0012\u0006\u0010\u009d\u00f2\u0097\u00a8\u0006\"\u000542274\u0012\u0011\b\u001c\u0012\u0006\u0010\u00e9\u00f2\u0097\u00a8\u0006\"\u000542275\u0012\u0011\b\u001d\u0012\u0006\u0010\u0091\u00f3\u0097\u00a8\u0006\"\u000542276\u0012\u0011\b\u001e\u0012\u0006\u0010\u00e3\u00f3\u0097\u00a8\u0006\"\u000542277\u0012\u0011\b\u001f\u0012\u0006\u0010\u00b4\u00f4\u0097\u00a8\u0006\"\u000542278\u0012\u0011\b \u0012\u0006\u0010\u00dd\u00f4\u0097\u00a8\u0006\"\u000542279\u0012\u0011\b!\u0012\u0006\u0010\u00b0\u00f5\u0097\u00a8\u0006\"\u000542280\u0012\u0011\b\"\u0012\u0006\u0010\u00db\u00f5\u0097\u00a8\u0006\"\u000542281\u0012\u0011\b#\u0012\u0006\u0010\u00a8\u00f6\u0097\u00a8\u0006\"\u000542282\u0012\u0011\b$\u0012\u0006\u0010\u00e2\u00f6\u0097\u00a8\u0006\"\u000542283\u0012\u0011\b%\u0012\u0006\u0010\u00a6\u00f7\u0097\u00a8\u0006\"\u000549279\u0012\u0011\b&\u0012\u0006\u0010\u00f9\u00f7\u0097\u00a8\u0006\"\u000542285\u0012\u0011\b'\u0012\u0006\u0010\u00d7\u00f8\u0097\u00a8\u0006\"\u000542286\u0012\u0011\b(\u0012\u0006\u0010\u00ea\u00f8\u0097\u00a8\u0006\"\u000542287\u0012\u0011\b)\u0012\u0006\u0010\u00a7\u00f9\u0097\u00a8\u0006\"\u000542288\u0012\u0011\b*\u0012\u0006\u0010\u00ce\u00f9\u0097\u00a8\u0006\"\u000542289\u0012\u0011\b+\u0012\u0006\u0010\u00ab\u00fa\u0097\u00a8\u0006\"\u000542290\u0012\u0011\b,\u0012\u0006\u0010\u00da\u00fa\u0097\u00a8\u0006\"\u000542291\u0012\u0011\b-\u0012\u0006\u0010\u00c8\u00fb\u0097\u00a8\u0006\"\u000542292\u0012\u0011\b.\u0012\u0006\u0010\u009b\u00fc\u0097\u00a8\u0006\"\u000542293\u0012\u0011\b/\u0012\u0006\u0010\u00f5\u00fd\u0097\u00a8\u0006\"\u000542294\u0012\u0011\b0\u0012\u0006\u0010\u009a\u00ff\u0097\u00a8\u0006\"\u000542295\u0012\u0011\b1\u0012\u0006\u0010\u00b2\u0080\u0098\u00a8\u0006\"\u000542296\u0012\u0011\b2\u0012\u0006\u0010\u00e1\u0081\u0098\u00a8\u0006\"\u000542297\u0012\u0011\b3\u0012\u0006\u0010\u00ed\u0082\u0098\u00a8\u0006\"\u000542298\u0012\u0011\b4\u0012\u0006\u0010\u00cc\u0083\u0098\u00a8\u0006\"\u000542299\u0012\u0011\b5\u0012\u0006\u0010\u008d\u0084\u0098\u00a8\u0006\"\u000549295\u0012\u0011\b6\u0012\u0006\u0010\u00cb\u0085\u0098\u00a8\u0006\"\u000549296\u0012\u0011\b7\u0012\u0006\u0010\u00dc\u0086\u0098\u00a8\u0006\"\u000549297\u0012\u0011\b8\u0012\u0006\u0010\u0097\u0087\u0098\u00a8\u0006\"\u000549298\u0012\u0011\b9\u0012\u0006\u0010\u0090\u0088\u0098\u00a8\u0006\"\u000549299\u0012\u0011\b:\u0012\u0006\u0010\u00dc\u0088\u0098\u00a8\u0006\"\u000549300\u0012\u0011\b;\u0012\u0006\u0010\u00ee\u0089\u0098\u00a8\u0006\"\u000549301\u0012\u0011\b<\u0012\u0006\u0010\u00f9\u008a\u0098\u00a8\u0006\"\u000549302\u0012\u0011\b=\u0012\u0006\u0010\u00d2\u008b\u0098\u00a8\u0006\"\u000549303\u0012\u0011\b>\u0012\u0006\u0010\u00ba\u008c\u0098\u00a8\u0006\"\u000549304\u0012\u0011\b?\u0012\u0006\u0010\u00ec\u008d\u0098\u00a8\u0006\"\u000549306\u0012\u0011\b@\u0012\u0006\u0010\u00c3\u008e\u0098\u00a8\u0006\"\u000549307\u0012\u0011\bA\u0012\u0006\u0010\u00f8\u008e\u0098\u00a8\u0006\"\u000549308\u0012\u0011\bB\u0012\u0006\u0010\u00af\u008f\u0098\u00a8\u0006\"\u000549309\u0012\u0011\bC\u0012\u0006\u0010\u00ef\u008f\u0098\u00a8\u0006\"\u000542315\u0012\u0011\bD\u0012\u0006\u0010\u00a5\u0090\u0098\u00a8\u0006\"\u000542316\u0012\u0011\bE\u0012\u0006\u0010\u009e\u0091\u0098\u00a8\u0006\"\u000542317\u0012\u0011\bF\u0012\u0006\u0010\u009d\u0092\u0098\u00a8\u0006\"\u000542318\u0012\u0013\bG\u0012\u0006\u0010\u00d4\u0093\u0098\u00a8\u0006\"\u00078606396\u0012\u0011\bH\u0012\u0006\u0010\u0095\u0095\u0098\u00a8\u0006\"\u000538514\u0012\u0011\bI\u0012\u0006\u0010\u0080\u0096\u0098\u00a8\u0006\"\u000538516\u0012\u0011\bJ\u0012\u0006\u0010\u00a9\u0097\u0098\u00a8\u0006\"\u000538518\u0012\u0011\bK\u0012\u0006\u0010\u00da\u0099\u0098\u00a8\u0006\"\u000538520\u0012\u0011\bL\u0012\u0006\u0010\u00db\u009a\u0098\u00a8\u0006\"\u000538521\u0012\u0011\bM\u0012\u0006\u0010\u00fd\u009b\u0098\u00a8\u0006\"\u000538522\u0012\u0011\bN\u0012\u0006\u0010\u00a9\u009d\u0098\u00a8\u0006\"\u000538523\u0012\u0011\bO\u0012\u0006\u0010\u00e4\u009e\u0098\u00a8\u0006\"\u000538524\u0012\u0011\bP\u0012\u0006\u0010\u0099\u00a0\u0098\u00a8\u0006\"\u000538525\u0012\u0011\bQ\u0012\u0006\u0010\u00e3\u00a1\u0098\u00a8\u0006\"\u000538526\u0012\u0011\bR\u0012\u0006\u0010\u00a5\u00a3\u0098\u00a8\u0006\"\u000538527\u0012\u0011\bS\u0012\u0006\u0010\u009b\u00a6\u0098\u00a8\u0006\"\u000538528\u0012\u0011\bT\u0012\u0006\u0010\u00d0\u00aa\u0098\u00a8\u0006\"\u000538529\u0012\u0011\bU\u0012\u0006\u0010\u00bd\u00b3\u0098\u00a8\u0006\"\u000538530\u0012\u0014\bV\u0012\u0006\u0010\u008d\u00b4\u0098\u00a8\u0006\"\b16005209\u0012\u0011\bW\u0012\u0006\u0010\u00a2\u00c1\u0098\u00a8\u0006\"\u000538531\u0012\u0013\bX\u0012\u0006\u0010\u00f3\u00c4\u0098\u00a8\u0006\"\u00078921285\u0012\u0011\bY\u0012\u0006\u0010\u0091\u00cd\u0098\u00a8\u0006\"\u000538532\u0012\u0011\bZ\u0012\u0006\u0010\u00c7\u00d1\u0098\u00a8\u0006\"\u000538533\u0012\u0011\b[\u0012\u0006\u0010\u00b6\u00d6\u0098\u00a8\u0006\"\u000538534\u0012\u0011\b\\\u0012\u0006\u0010\u008f\u00db\u0098\u00a8\u0006\"\u000538535\u0012\u0011\b]\u0012\u0006\u0010\u0087\u00e2\u0098\u00a8\u0006\"\u000538536\u0012\u0013\b^\u0012\u0006\u0010\u009d\u00e6\u0098\u00a8\u0006\"\u00074838437\u0012\u0011\b_\u0012\u0006\u0010\u0082\u00ed\u0098\u00a8\u0006\"\u000545085\u0012\u0011\b`\u0012\u0006\u0010\u0095\u00f8\u0098\u00a8\u0006\"\u000545086\u0012\u0011\ba\u0012\u0006\u0010\u00b0\u0080\u0099\u00a8\u0006\"\u000538539\u0012\u0011\bb\u0012\u0006\u0010\u00a5\u008c\u0099\u00a8\u0006\"\u000538540\u0012\u0011\bc\u0012\u0006\u0010\u0088\u009d\u0099\u00a8\u0006\"\u000538544\u0012\u0011\bd\u0012\u0006\u0010\u00de\u00ae\u0099\u00a8\u0006\"\u000538545\u0012\u0011\be\u0012\u0006\u0010\u0084\u00cb\u0099\u00a8\u0006\"\u000538546\u0012\u0011\bf\u0012\u0006\u0010\u00ed\u00e4\u0099\u00a8\u0006\"\u000538547\u0012\u0011\bg\u0012\u0006\u0010\u008b\u0082\u009a\u00a8\u0006\"\u000538548\u0012\u0011\bh\u0012\u0006\u0010\u00e0\u00ab\u009a\u00a8\u0006\"\u000538549\u0012\u0011\bi\u0012\u0006\u0010\u009c\u00d9\u009a\u00a8\u0006\"\u000538550\u0012\u0011\bj\u0012\u0006\u0010\u00cc\u00cd\u009b\u00a8\u0006\"\u000538551\u0012\u0011\bk\u0012\u0006\u0010\u0087\u0087\u009d\u00a8\u0006\"\u000538552\u0012\u0011\bl\u0012\u0006\u0010\u00b9\u008c\u00a0\u00a8\u0006\"\u000549359\u0012\u0011\bm\u0012\u0006\u0010\u00ad\u00be\u00a4\u00a8\u0006\"\u000549360\u001a\b\u001a\u0006FPZB41 \u0096\u00e8\u0097\u00a8\u0006\"`\n/\n\u001025855-701ff27f-2\u0012\b15:16:00\u001a\b20230916 \u0000*\u00037320\u0000\u0012\u001d\ri\u00db\u0013\u00c2\u0015\u0006\u00e9\u0091\u00c2\u001d\u0000\u0000\u0084C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u001c\u00c7\tA(\u0096\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FPZB41" + }, + { + "type": "sin_recorrido", + "entity": "\n$97a6e275-05ad-431c-b45e-4b80689fd6e7\"`\n/\n\u001025849-701ff27f-2\u0012\b13:46:00\u001a\b20230916 \u0000*\u00037320\u0000\u0012\u001d\r\u00a0\u00e5\u0012\u00c2\u0015\u00f9B\u0092\u00c2\u001d\u0000\u0000\u00fcB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UU\u0005A(\u008d\u00e8\u0097\u00a8\u0006B\b\u001a\u0006GGJC36" + }, + { + "type": "con_recorrido", + "entity": "\n$76cc0109-4f88-4f20-91cf-94ad56951ff4\u001a\u00f9\u0006\n/\n\u001025852-701ff27f-2\u0012\b14:31:00\u001a\b20230916 \u0000*\u00037320\u0000\u0012\u0011\bU\u0012\u0006\u0010\u0088\u00ea\u0097\u00a8\u0006\"\u000538530\u0012\u0014\bV\u0012\u0006\u0010\u0095\u00ea\u0097\u00a8\u0006\"\b16005209\u0012\u0011\bW\u0012\u0006\u0010\u0086\u00ec\u0097\u00a8\u0006\"\u000538531\u0012\u0013\bX\u0012\u0006\u0010\u00bd\u00ec\u0097\u00a8\u0006\"\u00078921285\u0012\u0011\bY\u0012\u0006\u0010\u00ab\u00ed\u0097\u00a8\u0006\"\u000538532\u0012\u0011\bZ\u0012\u0006\u0010\u00e0\u00ed\u0097\u00a8\u0006\"\u000538533\u0012\u0011\b[\u0012\u0006\u0010\u0095\u00ee\u0097\u00a8\u0006\"\u000538534\u0012\u0011\b\\\u0012\u0006\u0010\u00c4\u00ee\u0097\u00a8\u0006\"\u000538535\u0012\u0011\b]\u0012\u0006\u0010\u0083\u00ef\u0097\u00a8\u0006\"\u000538536\u0012\u0013\b^\u0012\u0006\u0010\u00a6\u00ef\u0097\u00a8\u0006\"\u00074838437\u0012\u0011\b_\u0012\u0006\u0010\u00db\u00ef\u0097\u00a8\u0006\"\u000545085\u0012\u0011\b`\u0012\u0006\u0010\u00a7\u00f0\u0097\u00a8\u0006\"\u000545086\u0012\u0011\ba\u0012\u0006\u0010\u00d8\u00f0\u0097\u00a8\u0006\"\u000538539\u0012\u0011\bb\u0012\u0006\u0010\u0098\u00f1\u0097\u00a8\u0006\"\u000538540\u0012\u0011\bc\u0012\u0006\u0010\u00e4\u00f1\u0097\u00a8\u0006\"\u000538544\u0012\u0011\bd\u0012\u0006\u0010\u00a7\u00f2\u0097\u00a8\u0006\"\u000538545\u0012\u0011\be\u0012\u0006\u0010\u00fd\u00f2\u0097\u00a8\u0006\"\u000538546\u0012\u0011\bf\u0012\u0006\u0010\u00bc\u00f3\u0097\u00a8\u0006\"\u000538547\u0012\u0011\bg\u0012\u0006\u0010\u00f7\u00f3\u0097\u00a8\u0006\"\u000538548\u0012\u0011\bh\u0012\u0006\u0010\u00b8\u00f4\u0097\u00a8\u0006\"\u000538549\u0012\u0011\bi\u0012\u0006\u0010\u00f0\u00f4\u0097\u00a8\u0006\"\u000538550\u0012\u0011\bj\u0012\u0006\u0010\u00d0\u00f5\u0097\u00a8\u0006\"\u000538551\u0012\u0011\bk\u0012\u0006\u0010\u00a6\u00f6\u0097\u00a8\u0006\"\u000538552\u0012\u0011\bl\u0012\u0006\u0010\u00fa\u00f6\u0097\u00a8\u0006\"\u000549359\u0012\u0011\bm\u0012\u0006\u0010\u00ae\u00f7\u0097\u00a8\u0006\"\u000549360\u0012\u0011\bn\u0012\u0006\u0010\u00a2\u00f8\u0097\u00a8\u0006\"\u000549361\u0012\u0011\bo\u0012\u0006\u0010\u00bf\u00f8\u0097\u00a8\u0006\"\u000549362\u0012\u0011\bp\u0012\u0006\u0010\u00f2\u00f8\u0097\u00a8\u0006\"\u000549363\u0012\u0011\bq\u0012\u0006\u0010\u00a6\u00f9\u0097\u00a8\u0006\"\u000549364\u0012\u0011\br\u0012\u0006\u0010\u00ce\u00f9\u0097\u00a8\u0006\"\u000549365\u0012\u0011\bs\u0012\u0006\u0010\u0099\u00fa\u0097\u00a8\u0006\"\u000538560\u0012\u0011\bt\u0012\u0006\u0010\u00c4\u00fa\u0097\u00a8\u0006\"\u000542857\u0012\u0011\bu\u0012\u0006\u0010\u00e7\u00fa\u0097\u00a8\u0006\"\u000538562\u0012\u0011\bv\u0012\u0006\u0010\u008e\u00fb\u0097\u00a8\u0006\"\u000538563\u0012\u0011\bw\u0012\u0006\u0010\u00c5\u00fb\u0097\u00a8\u0006\"\u000542854\u0012\u0011\bx\u0012\u0006\u0010\u00ac\u00fc\u0097\u00a8\u0006\"\u000538565\u0012\u0011\by\u0012\u0006\u0010\u00e9\u00fc\u0097\u00a8\u0006\"\u000540932\u0012\u0011\bz\u0012\u0006\u0010\u00bf\u00fd\u0097\u00a8\u0006\"\u000538567\u0012\u0011\b{\u0012\u0006\u0010\u00f8\u00fd\u0097\u00a8\u0006\"\u000538568\u0012\u0011\b|\u0012\u0006\u0010\u009b\u00fe\u0097\u00a8\u0006\"\u000538569\u0012\u0011\b}\u0012\u0006\u0010\u00d0\u00fe\u0097\u00a8\u0006\"\u000538570\u0012\u0011\b~\u0012\u0006\u0010\u0094\u00ff\u0097\u00a8\u0006\"\u000538571\u0012\u0011\b\u007f\u0012\u0006\u0010\u00db\u00ff\u0097\u00a8\u0006\"\u000538572\u001a\b\u001a\u0006GSZY28 \u00ce\u00e8\u0097\u00a8\u0006\"`\n/\n\u001025852-701ff27f-2\u0012\b14:31:00\u001a\b20230916 \u0000*\u00037320\u0000\u0012\u001d\r\u001e0\u0013\u00c2\u0015= \u0092\u00c2\u001d\u0000\u0080\u0095C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u00a0A(\u00ce\u00e8\u0097\u00a8\u0006B\b\u001a\u0006GSZY28" + }, + { + "type": "con_recorrido", + "entity": "\n$3fabe906-2f83-40b6-8e3c-7ad603de86ad\u001a\u00af\u0004\n/\n\u001025851-701ff27f-2\u0012\b14:16:00\u001a\b20230916 \u0000*\u00037320\u0000\u0012\u0011\bf\u0012\u0006\u0010\u00d0\u00e8\u0097\u00a8\u0006\"\u000538547\u0012\u0011\bg\u0012\u0006\u0010\u008f\u00e9\u0097\u00a8\u0006\"\u000538548\u0012\u0011\bh\u0012\u0006\u0010\u00d4\u00e9\u0097\u00a8\u0006\"\u000538549\u0012\u0011\bi\u0012\u0006\u0010\u008e\u00ea\u0097\u00a8\u0006\"\u000538550\u0012\u0011\bj\u0012\u0006\u0010\u00f0\u00ea\u0097\u00a8\u0006\"\u000538551\u0012\u0011\bk\u0012\u0006\u0010\u00c6\u00eb\u0097\u00a8\u0006\"\u000538552\u0012\u0011\bl\u0012\u0006\u0010\u0098\u00ec\u0097\u00a8\u0006\"\u000549359\u0012\u0011\bm\u0012\u0006\u0010\u00c9\u00ec\u0097\u00a8\u0006\"\u000549360\u0012\u0011\bn\u0012\u0006\u0010\u00b6\u00ed\u0097\u00a8\u0006\"\u000549361\u0012\u0011\bo\u0012\u0006\u0010\u00d1\u00ed\u0097\u00a8\u0006\"\u000549362\u0012\u0011\bp\u0012\u0006\u0010\u00ff\u00ed\u0097\u00a8\u0006\"\u000549363\u0012\u0011\bq\u0012\u0006\u0010\u00ae\u00ee\u0097\u00a8\u0006\"\u000549364\u0012\u0011\br\u0012\u0006\u0010\u00d1\u00ee\u0097\u00a8\u0006\"\u000549365\u0012\u0011\bs\u0012\u0006\u0010\u0094\u00ef\u0097\u00a8\u0006\"\u000538560\u0012\u0011\bt\u0012\u0006\u0010\u00b9\u00ef\u0097\u00a8\u0006\"\u000542857\u0012\u0011\bu\u0012\u0006\u0010\u00d7\u00ef\u0097\u00a8\u0006\"\u000538562\u0012\u0011\bv\u0012\u0006\u0010\u00f8\u00ef\u0097\u00a8\u0006\"\u000538563\u0012\u0011\bw\u0012\u0006\u0010\u00a7\u00f0\u0097\u00a8\u0006\"\u000542854\u0012\u0011\bx\u0012\u0006\u0010\u00fc\u00f0\u0097\u00a8\u0006\"\u000538565\u0012\u0011\by\u0012\u0006\u0010\u00ae\u00f1\u0097\u00a8\u0006\"\u000540932\u0012\u0011\bz\u0012\u0006\u0010\u00f3\u00f1\u0097\u00a8\u0006\"\u000538567\u0012\u0011\b{\u0012\u0006\u0010\u00a0\u00f2\u0097\u00a8\u0006\"\u000538568\u0012\u0011\b|\u0012\u0006\u0010\u00bc\u00f2\u0097\u00a8\u0006\"\u000538569\u0012\u0011\b}\u0012\u0006\u0010\u00e5\u00f2\u0097\u00a8\u0006\"\u000538570\u0012\u0011\b~\u0012\u0006\u0010\u0099\u00f3\u0097\u00a8\u0006\"\u000538571\u0012\u0011\b\u007f\u0012\u0006\u0010\u00cf\u00f3\u0097\u00a8\u0006\"\u000538572\u001a\b\u001a\u0006JGJV64 \u00ab\u00e8\u0097\u00a8\u0006\"`\n/\n\u001025851-701ff27f-2\u0012\b14:16:00\u001a\b20230916 \u0000*\u00037320\u0000\u0012\u001d\rF\u00f8\u0012\u00c2\u0015(2\u0092\u00c2\u001d\u0000\u0000\u00a8C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u001c\u00c71A(\u00ab\u00e8\u0097\u00a8\u0006B\b\u001a\u0006JGJV64" + }, + { + "type": "con_recorrido", + "entity": "\n$33c73830-3671-4437-b3e9-6952a02f11ae\u001a\u00b1\u000e\n/\n\u001025856-701ff27f-2\u0012\b15:31:00\u001a\b20230916 \u0000*\u00037320\u0000\u0012\u0011\b\u0003\u0012\u0006\u0010\u009c\u00e8\u0097\u00a8\u0006\"\u000538094\u0012\u0011\b\u0004\u0012\u0006\u0010\u00cc\u00e8\u0097\u00a8\u0006\"\u000549252\u0012\u0011\b\u0005\u0012\u0006\u0010\u00b8\u00e9\u0097\u00a8\u0006\"\u000538096\u0012\u0011\b\u0006\u0012\u0006\u0010\u009b\u00ea\u0097\u00a8\u0006\"\u000549248\u0012\u0011\b\u0007\u0012\u0006\u0010\u00c4\u00ea\u0097\u00a8\u0006\"\u000549254\u0012\u0011\b\b\u0012\u0006\u0010\u00e5\u00ea\u0097\u00a8\u0006\"\u000549255\u0012\u0011\b\t\u0012\u0006\u0010\u009e\u00eb\u0097\u00a8\u0006\"\u000549256\u0012\u0011\b\n\u0012\u0006\u0010\u00a8\u00ec\u0097\u00a8\u0006\"\u000549216\u0012\u0011\b\u000b\u0012\u0006\u0010\u00cf\u00ec\u0097\u00a8\u0006\"\u000549217\u0012\u0011\b\f\u0012\u0006\u0010\u00e6\u00ec\u0097\u00a8\u0006\"\u000549214\u0012\u0011\b\r\u0012\u0006\u0010\u0085\u00ed\u0097\u00a8\u0006\"\u000549249\u0012\u0011\b\u000e\u0012\u0006\u0010\u0096\u00ed\u0097\u00a8\u0006\"\u000549218\u0012\u0011\b\u000f\u0012\u0006\u0010\u00ad\u00ed\u0097\u00a8\u0006\"\u000549257\u0012\u0011\b\u0010\u0012\u0006\u0010\u00a3\u00ee\u0097\u00a8\u0006\"\u000549258\u0012\u0011\b\u0011\u0012\u0006\u0010\u00db\u00ee\u0097\u00a8\u0006\"\u000549259\u0012\u0011\b\u0012\u0012\u0006\u0010\u00e3\u00ee\u0097\u00a8\u0006\"\u000549260\u0012\u0011\b\u0013\u0012\u0006\u0010\u0087\u00f0\u0097\u00a8\u0006\"\u000549261\u0012\u0011\b\u0014\u0012\u0006\u0010\u00a9\u00f0\u0097\u00a8\u0006\"\u000549262\u0012\u0011\b\u0015\u0012\u0006\u0010\u00be\u00f0\u0097\u00a8\u0006\"\u000549263\u0012\u0011\b\u0016\u0012\u0006\u0010\u00bd\u00f6\u0097\u00a8\u0006\"\u000534549\u0012\u0011\b\u0017\u0012\u0006\u0010\u00a7\u00f9\u0097\u00a8\u0006\"\u000549264\u0012\u0011\b\u0018\u0012\u0006\u0010\u00ae\u00f9\u0097\u00a8\u0006\"\u000549265\u0012\u0011\b\u0019\u0012\u0006\u0010\u00d6\u00f9\u0097\u00a8\u0006\"\u000549266\u0012\u0011\b\u001a\u0012\u0006\u0010\u0093\u00fa\u0097\u00a8\u0006\"\u000549267\u0012\u0011\b\u001b\u0012\u0006\u0010\u00e7\u00fa\u0097\u00a8\u0006\"\u000542274\u0012\u0011\b\u001c\u0012\u0006\u0010\u00c0\u00fb\u0097\u00a8\u0006\"\u000542275\u0012\u0011\b\u001d\u0012\u0006\u0010\u00f0\u00fb\u0097\u00a8\u0006\"\u000542276\u0012\u0011\b\u001e\u0012\u0006\u0010\u00d3\u00fc\u0097\u00a8\u0006\"\u000542277\u0012\u0011\b\u001f\u0012\u0006\u0010\u00b6\u00fd\u0097\u00a8\u0006\"\u000542278\u0012\u0011\b \u0012\u0006\u0010\u00e9\u00fd\u0097\u00a8\u0006\"\u000542279\u0012\u0011\b!\u0012\u0006\u0010\u00d1\u00fe\u0097\u00a8\u0006\"\u000542280\u0012\u0011\b\"\u0012\u0006\u0010\u0088\u00ff\u0097\u00a8\u0006\"\u000542281\u0012\u0011\b#\u0012\u0006\u0010\u00ea\u00ff\u0097\u00a8\u0006\"\u000542282\u0012\u0011\b$\u0012\u0006\u0010\u00b5\u0080\u0098\u00a8\u0006\"\u000542283\u0012\u0011\b%\u0012\u0006\u0010\u008f\u0081\u0098\u00a8\u0006\"\u000549279\u0012\u0011\b&\u0012\u0006\u0010\u00fe\u0081\u0098\u00a8\u0006\"\u000542285\u0012\u0011\b'\u0012\u0006\u0010\u00fe\u0082\u0098\u00a8\u0006\"\u000542286\u0012\u0011\b(\u0012\u0006\u0010\u0096\u0083\u0098\u00a8\u0006\"\u000542287\u0012\u0011\b)\u0012\u0006\u0010\u00eb\u0083\u0098\u00a8\u0006\"\u000542288\u0012\u0011\b*\u0012\u0006\u0010\u00a2\u0084\u0098\u00a8\u0006\"\u000542289\u0012\u0011\b+\u0012\u0006\u0010\u00a3\u0085\u0098\u00a8\u0006\"\u000542290\u0012\u0011\b,\u0012\u0006\u0010\u00e6\u0085\u0098\u00a8\u0006\"\u000542291\u0012\u0011\b-\u0012\u0006\u0010\u0085\u0087\u0098\u00a8\u0006\"\u000542292\u0012\u0011\b.\u0012\u0006\u0010\u00ff\u0087\u0098\u00a8\u0006\"\u000542293\u0012\u0011\b/\u0012\u0006\u0010\u00c6\u008a\u0098\u00a8\u0006\"\u000542294\u0012\u0011\b0\u0012\u0006\u0010\u00c6\u008c\u0098\u00a8\u0006\"\u000542295\u0012\u0011\b1\u0012\u0006\u0010\u00b8\u008e\u0098\u00a8\u0006\"\u000542296\u0012\u0011\b2\u0012\u0006\u0010\u00d6\u0090\u0098\u00a8\u0006\"\u000542297\u0012\u0011\b3\u0012\u0006\u0010\u00c0\u0092\u0098\u00a8\u0006\"\u000542298\u0012\u0011\b4\u0012\u0006\u0010\u00e3\u0093\u0098\u00a8\u0006\"\u000542299\u0012\u0011\b5\u0012\u0006\u0010\u00d3\u0094\u0098\u00a8\u0006\"\u000549295\u0012\u0011\b6\u0012\u0006\u0010\u00a4\u0097\u0098\u00a8\u0006\"\u000549296\u0012\u0011\b7\u0012\u0006\u0010\u00aa\u0099\u0098\u00a8\u0006\"\u000549297\u0012\u0011\b8\u0012\u0006\u0010\u0097\u009a\u0098\u00a8\u0006\"\u000549298\u0012\u0011\b9\u0012\u0006\u0010\u00f9\u009b\u0098\u00a8\u0006\"\u000549299\u0012\u0011\b:\u0012\u0006\u0010\u008b\u009d\u0098\u00a8\u0006\"\u000549300\u0012\u0011\b;\u0012\u0006\u0010\u00a4\u009f\u0098\u00a8\u0006\"\u000549301\u0012\u0011\b<\u0012\u0006\u0010\u00b7\u00a1\u0098\u00a8\u0006\"\u000549302\u0012\u0011\b=\u0012\u0006\u0010\u00ea\u00a2\u0098\u00a8\u0006\"\u000549303\u0012\u0011\b>\u0012\u0006\u0010\u00c0\u00a4\u0098\u00a8\u0006\"\u000549304\u0012\u0011\b?\u0012\u0006\u0010\u00b5\u00a7\u0098\u00a8\u0006\"\u000549306\u0012\u0011\b@\u0012\u0006\u0010\u00f0\u00a8\u0098\u00a8\u0006\"\u000549307\u0012\u0011\bA\u0012\u0006\u0010\u00e4\u00a9\u0098\u00a8\u0006\"\u000549308\u0012\u0011\bB\u0012\u0006\u0010\u00db\u00aa\u0098\u00a8\u0006\"\u000549309\u0012\u0011\bC\u0012\u0006\u0010\u00e8\u00ab\u0098\u00a8\u0006\"\u000542315\u0012\u0011\bD\u0012\u0006\u0010\u00e0\u00ac\u0098\u00a8\u0006\"\u000542316\u0012\u0011\bE\u0012\u0006\u0010\u00f2\u00ae\u0098\u00a8\u0006\"\u000542317\u0012\u0011\bF\u0012\u0006\u0010\u0098\u00b1\u0098\u00a8\u0006\"\u000542318\u0012\u0013\bG\u0012\u0006\u0010\u00cb\u00b4\u0098\u00a8\u0006\"\u00078606396\u0012\u0011\bH\u0012\u0006\u0010\u00a4\u00b8\u0098\u00a8\u0006\"\u000538514\u0012\u0011\bI\u0012\u0006\u0010\u00b0\u00ba\u0098\u00a8\u0006\"\u000538516\u0012\u0011\bJ\u0012\u0006\u0010\u00e6\u00bd\u0098\u00a8\u0006\"\u000538518\u0012\u0011\bK\u0012\u0006\u0010\u0099\u00c4\u0098\u00a8\u0006\"\u000538520\u0012\u0011\bL\u0012\u0006\u0010\u0081\u00c7\u0098\u00a8\u0006\"\u000538521\u0012\u0011\bM\u0012\u0006\u0010\u00d3\u00ca\u0098\u00a8\u0006\"\u000538522\u0012\u0011\bN\u0012\u0006\u0010\u00ce\u00ce\u0098\u00a8\u0006\"\u000538523\u0012\u0011\bO\u0012\u0006\u0010\u008b\u00d3\u0098\u00a8\u0006\"\u000538524\u0012\u0011\bP\u0012\u0006\u0010\u00cc\u00d7\u0098\u00a8\u0006\"\u000538525\u0012\u0011\bQ\u0012\u0006\u0010\u00e3\u00dc\u0098\u00a8\u0006\"\u000538526\u0012\u0011\bR\u0012\u0006\u0010\u00fd\u00e1\u0098\u00a8\u0006\"\u000538527\u0012\u0011\bS\u0012\u0006\u0010\u00c9\u00ec\u0098\u00a8\u0006\"\u000538528\u0012\u0011\bT\u0012\u0006\u0010\u00a3\u00fe\u0098\u00a8\u0006\"\u000538529\u0012\u0011\bU\u0012\u0006\u0010\u00ac\u00a9\u0099\u00a8\u0006\"\u000538530\u0012\u0014\bV\u0012\u0006\u0010\u00ee\u00ac\u0099\u00a8\u0006\"\b16005209\u0012\u0011\bW\u0012\u0006\u0010\u008a\u008c\u009a\u00a8\u0006\"\u000538531\u0012\u0013\bX\u0012\u0006\u0010\u00a2\u00b0\u009a\u00a8\u0006\"\u00078921285\u0012\u0011\bY\u0012\u0006\u0010\u008a\u009d\u009b\u00a8\u0006\"\u000538532\u0012\u0011\bZ\u0012\u0006\u0010\u00da\u00ee\u009b\u00a8\u0006\"\u000538533\u0012\u0011\b[\u0012\u0006\u0010\u00bf\u00e7\u009c\u00a8\u0006\"\u000538534\u0012\u0011\b\\\u0012\u0006\u0010\u00d0\u008d\u009e\u00a8\u0006\"\u000538535\u0012\u0011\b]\u0012\u0006\u0010\u0097\u00bc\u00a1\u00a8\u0006\"\u000538536\u0012\u0013\b^\u0012\u0006\u0010\u00bd\u00be\u00a5\u00a8\u0006\"\u00074838437\u0012\u0011\b_\u0012\u0006\u0010\u00a7\u0082\u00bc\u00a8\u0006\"\u000545085\u001a\b\u001a\u0006JZGR12 \u009c\u00e8\u0097\u00a8\u0006\"`\n/\n\u001025856-701ff27f-2\u0012\b15:31:00\u001a\b20230916 \u0000*\u00037320\u0000\u0012\u001d\r\u0084\u00df\u0013\u00c2\u0015/\u00db\u0091\u00c2\u001d\u0000\u0000\u00a8C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009c\u00e8\u0097\u00a8\u0006B\b\u001a\u0006JZGR12" + }, + { + "type": "con_recorrido", + "entity": "\n$396c0def-1442-42f0-9041-b74d18c19897\u001a\u00a8\r\n/\n\u001025790-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00037330\u0001\u0012\u0011\b\u001e\u0012\u0006\u0010\u00fb\u00e8\u0097\u00a8\u0006\"\u000538735\u0012\u0011\b\u001f\u0012\u0006\u0010\u00ac\u00e9\u0097\u00a8\u0006\"\u000542270\u0012\u0011\b \u0012\u0006\u0010\u00e4\u00e9\u0097\u00a8\u0006\"\u000542271\u0012\u0013\b!\u0012\u0006\u0010\u00a7\u00ea\u0097\u00a8\u0006\"\u00074838438\u0012\u0011\b\"\u0012\u0006\u0010\u00bf\u00eb\u0097\u00a8\u0006\"\u000544896\u0012\u0011\b#\u0012\u0006\u0010\u00ef\u00eb\u0097\u00a8\u0006\"\u000544897\u0012\u0011\b$\u0012\u0006\u0010\u00b9\u00ec\u0097\u00a8\u0006\"\u000544898\u0012\u0014\b%\u0012\u0006\u0010\u00d3\u00ef\u0097\u00a8\u0006\"\b16005188\u0012\u0011\b&\u0012\u0006\u0010\u00c1\u00f1\u0097\u00a8\u0006\"\u000540995\u0012\u0011\b'\u0012\u0006\u0010\u008f\u00f2\u0097\u00a8\u0006\"\u000540996\u0012\u0011\b(\u0012\u0006\u0010\u00f6\u00f2\u0097\u00a8\u0006\"\u000540997\u0012\u0011\b)\u0012\u0006\u0010\u00b0\u00f3\u0097\u00a8\u0006\"\u000539614\u0012\u0011\b*\u0012\u0006\u0010\u00df\u00f3\u0097\u00a8\u0006\"\u000539615\u0012\u0011\b+\u0012\u0006\u0010\u0090\u00f4\u0097\u00a8\u0006\"\u000539616\u0012\u0011\b,\u0012\u0006\u0010\u00c6\u00f4\u0097\u00a8\u0006\"\u000539617\u0012\u0011\b-\u0012\u0006\u0010\u00ff\u00f4\u0097\u00a8\u0006\"\u000539618\u0012\u0011\b.\u0012\u0006\u0010\u00ad\u00f5\u0097\u00a8\u0006\"\u000539619\u0012\u0011\b/\u0012\u0006\u0010\u00d4\u00f5\u0097\u00a8\u0006\"\u000539620\u0012\u0011\b0\u0012\u0006\u0010\u009b\u00f6\u0097\u00a8\u0006\"\u000539621\u0012\u0011\b1\u0012\u0006\u0010\u00cd\u00f6\u0097\u00a8\u0006\"\u000538281\u0012\u0011\b2\u0012\u0006\u0010\u0086\u00f7\u0097\u00a8\u0006\"\u000537506\u0012\u0011\b3\u0012\u0006\u0010\u00b0\u00f7\u0097\u00a8\u0006\"\u000545068\u0012\u0011\b4\u0012\u0006\u0010\u00b4\u00f8\u0097\u00a8\u0006\"\u000537480\u0012\u0011\b5\u0012\u0006\u0010\u00f6\u00f8\u0097\u00a8\u0006\"\u000537477\u0012\u0011\b6\u0012\u0006\u0010\u00c0\u00f9\u0097\u00a8\u0006\"\u000540848\u0012\u0011\b7\u0012\u0006\u0010\u009d\u00fa\u0097\u00a8\u0006\"\u00052-Apr\u0012\u0011\b8\u0012\u0006\u0010\u00dd\u00fa\u0097\u00a8\u0006\"\u000539728\u0012\u0011\b9\u0012\u0006\u0010\u00cf\u00fb\u0097\u00a8\u0006\"\u000539729\u0012\u0011\b:\u0012\u0006\u0010\u00eb\u00fb\u0097\u00a8\u0006\"\u000539730\u0012\u0011\b;\u0012\u0006\u0010\u00ea\u00fc\u0097\u00a8\u0006\"\u000542200\u0012\u0011\b<\u0012\u0006\u0010\u009d\u00fd\u0097\u00a8\u0006\"\u000542203\u0012\u0011\b=\u0012\u0006\u0010\u00ea\u00fd\u0097\u00a8\u0006\"\u000542204\u0012\u0011\b>\u0012\u0006\u0010\u008a\u00fe\u0097\u00a8\u0006\"\u000542205\u0012\u0011\b?\u0012\u0006\u0010\u00e3\u00fe\u0097\u00a8\u0006\"\u000542201\u0012\u0011\b@\u0012\u0006\u0010\u00a3\u0081\u0098\u00a8\u0006\"\u000542206\u0012\u0011\bA\u0012\u0006\u0010\u00fa\u0081\u0098\u00a8\u0006\"\u000542207\u0012\u0011\bB\u0012\u0006\u0010\u00da\u0082\u0098\u00a8\u0006\"\u000542208\u0012\u0011\bC\u0012\u0006\u0010\u0090\u0084\u0098\u00a8\u0006\"\u000542564\u0012\u0011\bD\u0012\u0006\u0010\u00b0\u0085\u0098\u00a8\u0006\"\u000542214\u0012\u0011\bE\u0012\u0006\u0010\u00da\u0086\u0098\u00a8\u0006\"\u000542209\u0012\u0011\bF\u0012\u0006\u0010\u00a3\u0088\u0098\u00a8\u0006\"\u000542210\u0012\u0011\bG\u0012\u0006\u0010\u00fa\u008a\u0098\u00a8\u0006\"\u000542215\u0012\u0011\bH\u0012\u0006\u0010\u00b6\u008b\u0098\u00a8\u0006\"\u000542216\u0012\u0011\bI\u0012\u0006\u0010\u0087\u008c\u0098\u00a8\u0006\"\u000542217\u0012\u0011\bJ\u0012\u0006\u0010\u00a0\u008d\u0098\u00a8\u0006\"\u000542218\u0012\u0011\bK\u0012\u0006\u0010\u00e9\u008d\u0098\u00a8\u0006\"\u000542219\u0012\u0011\bL\u0012\u0006\u0010\u00d5\u008f\u0098\u00a8\u0006\"\u000542220\u0012\u0011\bM\u0012\u0006\u0010\u00b1\u0090\u0098\u00a8\u0006\"\u000542221\u0012\u0011\bN\u0012\u0006\u0010\u00c5\u0091\u0098\u00a8\u0006\"\u000542222\u0012\u0011\bO\u0012\u0006\u0010\u00f4\u0092\u0098\u00a8\u0006\"\u000542223\u0012\u0011\bP\u0012\u0006\u0010\u00bb\u0093\u0098\u00a8\u0006\"\u000542224\u0012\u0011\bQ\u0012\u0006\u0010\u0086\u0095\u0098\u00a8\u0006\"\u000542225\u0012\u0011\bR\u0012\u0006\u0010\u00b6\u0096\u0098\u00a8\u0006\"\u000542226\u0012\u0011\bS\u0012\u0006\u0010\u00d6\u0097\u0098\u00a8\u0006\"\u000542227\u0012\u0011\bT\u0012\u0006\u0010\u00b6\u0099\u0098\u00a8\u0006\"\u000542228\u0012\u0011\bU\u0012\u0006\u0010\u00be\u009a\u0098\u00a8\u0006\"\u000542229\u0012\u0011\bV\u0012\u0006\u0010\u00d1\u009c\u0098\u00a8\u0006\"\u000542230\u0012\u0011\bW\u0012\u0006\u0010\u00e3\u009d\u0098\u00a8\u0006\"\u000542231\u0012\u0011\bX\u0012\u0006\u0010\u0084\u00a0\u0098\u00a8\u0006\"\u000542232\u0012\u0011\bY\u0012\u0006\u0010\u00c1\u00a2\u0098\u00a8\u0006\"\u000542233\u0012\u0011\bZ\u0012\u0006\u0010\u00eb\u00a3\u0098\u00a8\u0006\"\u000542234\u0012\u0011\b[\u0012\u0006\u0010\u00ac\u00a6\u0098\u00a8\u0006\"\u000542235\u0012\u0011\b\\\u0012\u0006\u0010\u0089\u00a7\u0098\u00a8\u0006\"\u000542211\u0012\u0011\b]\u0012\u0006\u0010\u009a\u00a9\u0098\u00a8\u0006\"\u000549203\u0012\u0011\b^\u0012\u0006\u0010\u00b0\u00ab\u0098\u00a8\u0006\"\u000549204\u0012\u0011\b_\u0012\u0006\u0010\u0088\u00ac\u0098\u00a8\u0006\"\u000542503\u0012\u0011\b`\u0012\u0006\u0010\u00ae\u00ac\u0098\u00a8\u0006\"\u000534564\u0012\u0011\ba\u0012\u0006\u0010\u00bb\u00bc\u0098\u00a8\u0006\"\u000534789\u0012\u0011\bb\u0012\u0006\u0010\u0080\u00be\u0098\u00a8\u0006\"\u000549163\u0012\u0011\bc\u0012\u0006\u0010\u00c4\u008f\u0099\u00a8\u0006\"\u000549208\u0012\u0011\bd\u0012\u0006\u0010\u00c2\u0093\u0099\u00a8\u0006\"\u000549209\u0012\u0011\be\u0012\u0006\u0010\u00df\u0097\u0099\u00a8\u0006\"\u000549210\u0012\u0011\bf\u0012\u0006\u0010\u00e9\u00cc\u0099\u00a8\u0006\"\u000549211\u0012\u0011\bg\u0012\u0006\u0010\u00c5\u00d7\u0099\u00a8\u0006\"\u000549212\u0012\u0011\bh\u0012\u0006\u0010\u00f5\u00ef\u0099\u00a8\u0006\"\u000549213\u0012\u0011\bi\u0012\u0006\u0010\u00b9\u00ed\u009a\u00a8\u0006\"\u000549206\u0012\u0011\bj\u0012\u0006\u0010\u00bd\u00af\u009b\u00a8\u0006\"\u000549216\u0012\u0011\bk\u0012\u0006\u0010\u008d\u00c8\u009b\u00a8\u0006\"\u000549217\u0012\u0011\bl\u0012\u0006\u0010\u00f1\u00fa\u009b\u00a8\u0006\"\u000549214\u0012\u0011\bm\u0012\u0006\u0010\u00fb\u00bb\u009c\u00a8\u0006\"\u000549249\u0012\u0011\bn\u0012\u0006\u0010\u00a2\u00e9\u009c\u00a8\u0006\"\u000549218\u0012\u0011\bo\u0012\u0006\u0010\u00aa\u00a6\u009d\u00a8\u0006\"\u000549219\u0012\u0011\bp\u0012\u0006\u0010\u008d\u00a8\u00a0\u00a8\u0006\"\u000538041\u0012\u0011\bq\u0012\u0006\u0010\u00f3\u00d5\u00a2\u00a8\u0006\"\u000538042\u0012\u0011\br\u0012\u0006\u0010\u00c1\u00cb\u00a7\u00a8\u0006\"\u000538043\u0012\u0011\bs\u0012\u0006\u0010\u00c3\u00cf\u00c2\u00a8\u0006\"\u000538044\u001a\b\u001a\u0006DZFC48 \u00ce\u00e8\u0097\u00a8\u0006\"`\n/\n\u001025790-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00037330\u0001\u0012\u001d\r\u0005\u0005\u0013\u00c2\u0015;/\u0092\u00c2\u001d\u0000\u0000-C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-9\u008e\u0087A(\u00ce\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DZFC48" + }, + { + "type": "con_recorrido", + "entity": "\n$8e8cd704-b102-41ad-b19b-1e8a9a25bd6b\u001a\u0085\u0007\n/\n\u001025788-701ff27f-2\u0012\b14:30:00\u001a\b20230916 \u0000*\u00037330\u0001\u0012\u0011\bR\u0012\u0006\u0010\u0084\u00e9\u0097\u00a8\u0006\"\u000542226\u0012\u0011\bS\u0012\u0006\u0010\u00bf\u00e9\u0097\u00a8\u0006\"\u000542227\u0012\u0011\bT\u0012\u0006\u0010\u008e\u00ea\u0097\u00a8\u0006\"\u000542228\u0012\u0011\bU\u0012\u0006\u0010\u00bb\u00ea\u0097\u00a8\u0006\"\u000542229\u0012\u0011\bV\u0012\u0006\u0010\u0091\u00eb\u0097\u00a8\u0006\"\u000542230\u0012\u0011\bW\u0012\u0006\u0010\u00bc\u00eb\u0097\u00a8\u0006\"\u000542231\u0012\u0011\bX\u0012\u0006\u0010\u008d\u00ec\u0097\u00a8\u0006\"\u000542232\u0012\u0011\bY\u0012\u0006\u0010\u00df\u00ec\u0097\u00a8\u0006\"\u000542233\u0012\u0011\bZ\u0012\u0006\u0010\u0089\u00ed\u0097\u00a8\u0006\"\u000542234\u0012\u0011\b[\u0012\u0006\u0010\u00d3\u00ed\u0097\u00a8\u0006\"\u000542235\u0012\u0011\b\\\u0012\u0006\u0010\u00e8\u00ed\u0097\u00a8\u0006\"\u000542211\u0012\u0011\b]\u0012\u0006\u0010\u00a1\u00ee\u0097\u00a8\u0006\"\u000549203\u0012\u0011\b^\u0012\u0006\u0010\u00d9\u00ee\u0097\u00a8\u0006\"\u000549204\u0012\u0011\b_\u0012\u0006\u0010\u00ea\u00ee\u0097\u00a8\u0006\"\u000542503\u0012\u0011\b`\u0012\u0006\u0010\u00f1\u00ee\u0097\u00a8\u0006\"\u000534564\u0012\u0011\ba\u0012\u0006\u0010\u00b7\u00f1\u0097\u00a8\u0006\"\u000534789\u0012\u0011\bb\u0012\u0006\u0010\u00d0\u00f1\u0097\u00a8\u0006\"\u000549163\u0012\u0011\bc\u0012\u0006\u0010\u00ba\u00f7\u0097\u00a8\u0006\"\u000549208\u0012\u0011\bd\u0012\u0006\u0010\u00cf\u00f7\u0097\u00a8\u0006\"\u000549209\u0012\u0011\be\u0012\u0006\u0010\u00e3\u00f7\u0097\u00a8\u0006\"\u000549210\u0012\u0011\bf\u0012\u0006\u0010\u00ab\u00f9\u0097\u00a8\u0006\"\u000549211\u0012\u0011\bg\u0012\u0006\u0010\u00ca\u00f9\u0097\u00a8\u0006\"\u000549212\u0012\u0011\bh\u0012\u0006\u0010\u0087\u00fa\u0097\u00a8\u0006\"\u000549213\u0012\u0011\bi\u0012\u0006\u0010\u00d1\u00fb\u0097\u00a8\u0006\"\u000549206\u0012\u0011\bj\u0012\u0006\u0010\u0091\u00fc\u0097\u00a8\u0006\"\u000549216\u0012\u0011\bk\u0012\u0006\u0010\u00a5\u00fc\u0097\u00a8\u0006\"\u000549217\u0012\u0011\bl\u0012\u0006\u0010\u00c8\u00fc\u0097\u00a8\u0006\"\u000549214\u0012\u0011\bm\u0012\u0006\u0010\u00ec\u00fc\u0097\u00a8\u0006\"\u000549249\u0012\u0011\bn\u0012\u0006\u0010\u0082\u00fd\u0097\u00a8\u0006\"\u000549218\u0012\u0011\bo\u0012\u0006\u0010\u009a\u00fd\u0097\u00a8\u0006\"\u000549219\u0012\u0011\bp\u0012\u0006\u0010\u00f7\u00fd\u0097\u00a8\u0006\"\u000538041\u0012\u0011\bq\u0012\u0006\u0010\u009d\u00fe\u0097\u00a8\u0006\"\u000538042\u0012\u0011\br\u0012\u0006\u0010\u00c8\u00fe\u0097\u00a8\u0006\"\u000538043\u0012\u0011\bs\u0012\u0006\u0010\u0085\u00ff\u0097\u00a8\u0006\"\u000538044\u0012\u0011\bt\u0012\u0006\u0010\u00b7\u00ff\u0097\u00a8\u0006\"\u000538045\u0012\u0011\bu\u0012\u0006\u0010\u0090\u0080\u0098\u00a8\u0006\"\u000549247\u0012\u0011\bv\u0012\u0006\u0010\u00ab\u0080\u0098\u00a8\u0006\"\u000549222\u0012\u0011\bw\u0012\u0006\u0010\u00b6\u0080\u0098\u00a8\u0006\"\u000549223\u0012\u0011\bx\u0012\u0006\u0010\u00cd\u0080\u0098\u00a8\u0006\"\u000538049\u0012\u0011\by\u0012\u0006\u0010\u00de\u0080\u0098\u00a8\u0006\"\u000549224\u0012\u0011\bz\u0012\u0006\u0010\u00db\u0081\u0098\u00a8\u0006\"\u000549239\u0012\u0011\b{\u0012\u0006\u0010\u00ef\u0081\u0098\u00a8\u0006\"\u000549240\u0012\u0011\b|\u0012\u0006\u0010\u00fb\u0081\u0098\u00a8\u0006\"\u000549241\u0012\u0011\b}\u0012\u0006\u0010\u00fc\u0082\u0098\u00a8\u0006\"\u000538054\u001a\b\u001a\u0006FBLL32 \u00ca\u00e8\u0097\u00a8\u0006\"`\n/\n\u001025788-701ff27f-2\u0012\b14:30:00\u001a\b20230916 \u0000*\u00037330\u0001\u0012\u001d\r\u00ca\u00b1\u0013\u00c2\u0015_\r\u0092\u00c2\u001d\u0000\u0000 C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008e\u00e3x@(\u00ca\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FBLL32" + }, + { + "type": "con_recorrido", + "entity": "\n$d15e823e-c6e0-48e6-aacb-e38739ec0ebc\u001a\u00b8\u0002\n/\n\u001025786-701ff27f-2\u0012\b14:00:00\u001a\b20230916 \u0000*\u00037330\u0001\u0012\u0011\bq\u0012\u0006\u0010\u00da\u00e8\u0097\u00a8\u0006\"\u000538042\u0012\u0011\br\u0012\u0006\u0010\u00fe\u00e8\u0097\u00a8\u0006\"\u000538043\u0012\u0011\bs\u0012\u0006\u0010\u00b1\u00e9\u0097\u00a8\u0006\"\u000538044\u0012\u0011\bt\u0012\u0006\u0010\u00da\u00e9\u0097\u00a8\u0006\"\u000538045\u0012\u0011\bu\u0012\u0006\u0010\u00a0\u00ea\u0097\u00a8\u0006\"\u000549247\u0012\u0011\bv\u0012\u0006\u0010\u00b5\u00ea\u0097\u00a8\u0006\"\u000549222\u0012\u0011\bw\u0012\u0006\u0010\u00bd\u00ea\u0097\u00a8\u0006\"\u000549223\u0012\u0011\bx\u0012\u0006\u0010\u00cf\u00ea\u0097\u00a8\u0006\"\u000538049\u0012\u0011\by\u0012\u0006\u0010\u00dc\u00ea\u0097\u00a8\u0006\"\u000549224\u0012\u0011\bz\u0012\u0006\u0010\u00b8\u00eb\u0097\u00a8\u0006\"\u000549239\u0012\u0011\b{\u0012\u0006\u0010\u00c7\u00eb\u0097\u00a8\u0006\"\u000549240\u0012\u0011\b|\u0012\u0006\u0010\u00cf\u00eb\u0097\u00a8\u0006\"\u000549241\u0012\u0011\b}\u0012\u0006\u0010\u00aa\u00ec\u0097\u00a8\u0006\"\u000538054\u001a\b\u001a\u0006FLVX57 \u00cc\u00e8\u0097\u00a8\u0006\"`\n/\n\u001025786-701ff27f-2\u0012\b14:00:00\u001a\b20230916 \u0000*\u00037330\u0001\u0012\u001d\r#\u00ea\u0013\u00c2\u0015\u00ac\u00df\u0091\u00c2\u001d\u0000\u0000\u008eB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u001c\u00c71A(\u00cc\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FLVX57" + }, + { + "type": "con_recorrido", + "entity": "\n$26682cb1-d625-41ca-b1b4-cd55b0625f5c\u001a\u00c0\u000e\n/\n\u001025792-701ff27f-2\u0012\b15:30:00\u001a\b20230916 \u0000*\u00037330\u0001\u0012\u0011\b\u0005\u0012\u0006\u0010\u009b\u00e7\u0097\u00a8\u0006\"\u000540947\u0012\u0011\b\u0006\u0012\u0006\u0010\u00f1\u00e7\u0097\u00a8\u0006\"\u000540932\u0012\u0011\b\u0007\u0012\u0006\u0010\u00a2\u00e8\u0097\u00a8\u0006\"\u000542853\u0012\u0011\b\b\u0012\u0006\u0010\u00fe\u00e8\u0097\u00a8\u0006\"\u000542854\u0012\u0011\b\t\u0012\u0006\u0010\u00b8\u00e9\u0097\u00a8\u0006\"\u000542855\u0012\u0011\b\n\u0012\u0006\u0010\u00dd\u00e9\u0097\u00a8\u0006\"\u000541975\u0012\u0011\b\u000b\u0012\u0006\u0010\u00f4\u00e9\u0097\u00a8\u0006\"\u000542857\u0012\u0011\b\f\u0012\u0006\u0010\u0092\u00ea\u0097\u00a8\u0006\"\u000538697\u0012\u0011\b\r\u0012\u0006\u0010\u00c3\u00ea\u0097\u00a8\u0006\"\u000538646\u0012\u0011\b\u000e\u0012\u0006\u0010\u00e1\u00ea\u0097\u00a8\u0006\"\u000538632\u0012\u0011\b\u000f\u0012\u0006\u0010\u00b6\u00eb\u0097\u00a8\u0006\"\u000538767\u0012\u0011\b\u0010\u0012\u0006\u0010\u00f8\u00eb\u0097\u00a8\u0006\"\u000538768\u0012\u0011\b\u0011\u0012\u0006\u0010\u00a4\u00ec\u0097\u00a8\u0006\"\u000538769\u0012\u0011\b\u0012\u0012\u0006\u0010\u00cc\u00ec\u0097\u00a8\u0006\"\u000549357\u0012\u0011\b\u0013\u0012\u0006\u0010\u00f3\u00ec\u0097\u00a8\u0006\"\u000538771\u0012\u0011\b\u0014\u0012\u0006\u0010\u009e\u00ed\u0097\u00a8\u0006\"\u000538668\u0012\u0011\b\u0015\u0012\u0006\u0010\u00fa\u00ed\u0097\u00a8\u0006\"\u000538661\u0012\u0011\b\u0016\u0012\u0006\u0010\u00c6\u00ee\u0097\u00a8\u0006\"\u000538657\u0012\u0011\b\u0017\u0012\u0006\u0010\u0084\u00ef\u0097\u00a8\u0006\"\u000538743\u0012\u0011\b\u0018\u0012\u0006\u0010\u00c2\u00ef\u0097\u00a8\u0006\"\u000538652\u0012\u0011\b\u0019\u0012\u0006\u0010\u0088\u00f0\u0097\u00a8\u0006\"\u000538721\u0012\u0011\b\u001a\u0012\u0006\u0010\u00ba\u00f0\u0097\u00a8\u0006\"\u000538659\u0012\u0011\b\u001b\u0012\u0006\u0010\u0092\u00f1\u0097\u00a8\u0006\"\u000538674\u0012\u0011\b\u001c\u0012\u0006\u0010\u00db\u00f1\u0097\u00a8\u0006\"\u000538649\u0012\u0011\b\u001d\u0012\u0006\u0010\u0099\u00f2\u0097\u00a8\u0006\"\u000538718\u0012\u0011\b\u001e\u0012\u0006\u0010\u00e1\u00f2\u0097\u00a8\u0006\"\u000538735\u0012\u0011\b\u001f\u0012\u0006\u0010\u008f\u00f3\u0097\u00a8\u0006\"\u000542270\u0012\u0011\b \u0012\u0006\u0010\u00c5\u00f3\u0097\u00a8\u0006\"\u000542271\u0012\u0013\b!\u0012\u0006\u0010\u0085\u00f4\u0097\u00a8\u0006\"\u00074838438\u0012\u0011\b\"\u0012\u0006\u0010\u009c\u00f5\u0097\u00a8\u0006\"\u000544896\u0012\u0011\b#\u0012\u0006\u0010\u00ce\u00f5\u0097\u00a8\u0006\"\u000544897\u0012\u0011\b$\u0012\u0006\u0010\u009a\u00f6\u0097\u00a8\u0006\"\u000544898\u0012\u0014\b%\u0012\u0006\u0010\u00e3\u00f9\u0097\u00a8\u0006\"\b16005188\u0012\u0011\b&\u0012\u0006\u0010\u0085\u00fc\u0097\u00a8\u0006\"\u000540995\u0012\u0011\b'\u0012\u0006\u0010\u00e8\u00fc\u0097\u00a8\u0006\"\u000540996\u0012\u0011\b(\u0012\u0006\u0010\u00ef\u00fd\u0097\u00a8\u0006\"\u000540997\u0012\u0011\b)\u0012\u0006\u0010\u00bc\u00fe\u0097\u00a8\u0006\"\u000539614\u0012\u0011\b*\u0012\u0006\u0010\u00fb\u00fe\u0097\u00a8\u0006\"\u000539615\u0012\u0011\b+\u0012\u0006\u0010\u00bd\u00ff\u0097\u00a8\u0006\"\u000539616\u0012\u0011\b,\u0012\u0006\u0010\u0088\u0080\u0098\u00a8\u0006\"\u000539617\u0012\u0011\b-\u0012\u0006\u0010\u00da\u0080\u0098\u00a8\u0006\"\u000539618\u0012\u0011\b.\u0012\u0006\u0010\u009b\u0081\u0098\u00a8\u0006\"\u000539619\u0012\u0011\b/\u0012\u0006\u0010\u00d3\u0081\u0098\u00a8\u0006\"\u000539620\u0012\u0011\b0\u0012\u0006\u0010\u00ba\u0082\u0098\u00a8\u0006\"\u000539621\u0012\u0011\b1\u0012\u0006\u0010\u0084\u0083\u0098\u00a8\u0006\"\u000538281\u0012\u0011\b2\u0012\u0006\u0010\u00da\u0083\u0098\u00a8\u0006\"\u000537506\u0012\u0011\b3\u0012\u0006\u0010\u009a\u0084\u0098\u00a8\u0006\"\u000545068\u0012\u0011\b4\u0012\u0006\u0010\u00e8\u0085\u0098\u00a8\u0006\"\u000537480\u0012\u0011\b5\u0012\u0006\u0010\u00d2\u0086\u0098\u00a8\u0006\"\u000537477\u0012\u0011\b6\u0012\u0006\u0010\u00ca\u0087\u0098\u00a8\u0006\"\u000540848\u0012\u0011\b7\u0012\u0006\u0010\u00e4\u0088\u0098\u00a8\u0006\"\u00052-Apr\u0012\u0011\b8\u0012\u0006\u0010\u00d1\u0089\u0098\u00a8\u0006\"\u000539728\u0012\u0011\b9\u0012\u0006\u0010\u0095\u008b\u0098\u00a8\u0006\"\u000539729\u0012\u0011\b:\u0012\u0006\u0010\u00c7\u008b\u0098\u00a8\u0006\"\u000539730\u0012\u0011\b;\u0012\u0006\u0010\u00aa\u008d\u0098\u00a8\u0006\"\u000542200\u0012\u0011\b<\u0012\u0006\u0010\u0087\u008e\u0098\u00a8\u0006\"\u000542203\u0012\u0011\b=\u0012\u0006\u0010\u0097\u008f\u0098\u00a8\u0006\"\u000542204\u0012\u0011\b>\u0012\u0006\u0010\u00d4\u008f\u0098\u00a8\u0006\"\u000542205\u0012\u0011\b?\u0012\u0006\u0010\u00fe\u0090\u0098\u00a8\u0006\"\u000542201\u0012\u0011\b@\u0012\u0006\u0010\u0082\u0096\u0098\u00a8\u0006\"\u000542206\u0012\u0011\bA\u0012\u0006\u0010\u00ba\u0097\u0098\u00a8\u0006\"\u000542207\u0012\u0011\bB\u0012\u0006\u0010\u008a\u0099\u0098\u00a8\u0006\"\u000542208\u0012\u0011\bC\u0012\u0006\u0010\u00a0\u009c\u0098\u00a8\u0006\"\u000542564\u0012\u0011\bD\u0012\u0006\u0010\u0097\u009f\u0098\u00a8\u0006\"\u000542214\u0012\u0011\bE\u0012\u0006\u0010\u00b4\u00a2\u0098\u00a8\u0006\"\u000542209\u0012\u0011\bF\u0012\u0006\u0010\u00b4\u00a6\u0098\u00a8\u0006\"\u000542210\u0012\u0011\bG\u0012\u0006\u0010\u00dc\u00ad\u0098\u00a8\u0006\"\u000542215\u0012\u0011\bH\u0012\u0006\u0010\u0087\u00af\u0098\u00a8\u0006\"\u000542216\u0012\u0011\bI\u0012\u0006\u0010\u00f5\u00b0\u0098\u00a8\u0006\"\u000542217\u0012\u0011\bJ\u0012\u0006\u0010\u00c2\u00b4\u0098\u00a8\u0006\"\u000542218\u0012\u0011\bK\u0012\u0006\u0010\u00a7\u00b6\u0098\u00a8\u0006\"\u000542219\u0012\u0011\bL\u0012\u0006\u0010\u00a6\u00bc\u0098\u00a8\u0006\"\u000542220\u0012\u0011\bM\u0012\u0006\u0010\u00de\u00be\u0098\u00a8\u0006\"\u000542221\u0012\u0011\bN\u0012\u0006\u0010\u00e5\u00c2\u0098\u00a8\u0006\"\u000542222\u0012\u0011\bO\u0012\u0006\u0010\u00e8\u00c7\u0098\u00a8\u0006\"\u000542223\u0012\u0011\bP\u0012\u0006\u0010\u00f8\u00c9\u0098\u00a8\u0006\"\u000542224\u0012\u0011\bQ\u0012\u0006\u0010\u009f\u00d0\u0098\u00a8\u0006\"\u000542225\u0012\u0011\bR\u0012\u0006\u0010\u0081\u00d6\u0098\u00a8\u0006\"\u000542226\u0012\u0011\bS\u0012\u0006\u0010\u00c8\u00db\u0098\u00a8\u0006\"\u000542227\u0012\u0011\bT\u0012\u0006\u0010\u00e9\u00e3\u0098\u00a8\u0006\"\u000542228\u0012\u0011\bU\u0012\u0006\u0010\u008c\u00e9\u0098\u00a8\u0006\"\u000542229\u0012\u0011\bV\u0012\u0006\u0010\u00cf\u00f4\u0098\u00a8\u0006\"\u000542230\u0012\u0011\bW\u0012\u0006\u0010\u009b\u00fb\u0098\u00a8\u0006\"\u000542231\u0012\u0011\bX\u0012\u0006\u0010\u00a3\u0089\u0099\u00a8\u0006\"\u000542232\u0012\u0011\bY\u0012\u0006\u0010\u00d0\u009a\u0099\u00a8\u0006\"\u000542233\u0012\u0011\bZ\u0012\u0006\u0010\u00ea\u00a4\u0099\u00a8\u0006\"\u000542234\u0012\u0011\b[\u0012\u0006\u0010\u00a8\u00ba\u0099\u00a8\u0006\"\u000542235\u0012\u0011\b\\\u0012\u0006\u0010\u008d\u00c1\u0099\u00a8\u0006\"\u000542211\u0012\u0011\b]\u0012\u0006\u0010\u00ea\u00d6\u0099\u00a8\u0006\"\u000549203\u0012\u0011\b^\u0012\u0006\u0010\u0090\u00f0\u0099\u00a8\u0006\"\u000549204\u0012\u0011\b_\u0012\u0006\u0010\u00ee\u00f8\u0099\u00a8\u0006\"\u000542503\u0012\u0011\b`\u0012\u0006\u0010\u00eb\u00fc\u0099\u00a8\u0006\"\u000534564\u0012\u0011\ba\u0012\u0006\u0010\u0097\u00dd\u009d\u00a8\u0006\"\u000534789\u0012\u0011\bb\u0012\u0006\u0010\u0095\u00d1\u009e\u00a8\u0006\"\u000549163\u001a\b\u001a\u0006LCXP28 \u009a\u00e7\u0097\u00a8\u0006\"`\n/\n\u001025792-701ff27f-2\u0012\b15:30:00\u001a\b20230916 \u0000*\u00037330\u0001\u0012\u001d\r\u00cc\u00e5\u0012\u00c2\u0015\u00e7<\u0092\u00c2\u001d\u0000\u0000\u00f8B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ba\u00e8\u0097\u00a8\u0006B\b\u001a\u0006LCXP28" + }, + { + "type": "con_recorrido", + "entity": "\n$aa638911-f340-476d-b69c-dfd606fe62b3\u001a\u00bf\u000b\n/\n\u001025789-701ff27f-2\u0012\b14:45:00\u001a\b20230916 \u0000*\u00037330\u0001\u0012\u0011\b4\u0012\u0006\u0010\u009c\u00e9\u0097\u00a8\u0006\"\u000537480\u0012\u0011\b5\u0012\u0006\u0010\u00dc\u00e9\u0097\u00a8\u0006\"\u000537477\u0012\u0011\b6\u0012\u0006\u0010\u00a3\u00ea\u0097\u00a8\u0006\"\u000540848\u0012\u0011\b7\u0012\u0006\u0010\u00f9\u00ea\u0097\u00a8\u0006\"\u00052-Apr\u0012\u0011\b8\u0012\u0006\u0010\u00b3\u00eb\u0097\u00a8\u0006\"\u000539728\u0012\u0011\b9\u0012\u0006\u0010\u0096\u00ec\u0097\u00a8\u0006\"\u000539729\u0012\u0011\b:\u0012\u0006\u0010\u00af\u00ec\u0097\u00a8\u0006\"\u000539730\u0012\u0011\b;\u0012\u0006\u0010\u0098\u00ed\u0097\u00a8\u0006\"\u000542200\u0012\u0011\b<\u0012\u0006\u0010\u00c2\u00ed\u0097\u00a8\u0006\"\u000542203\u0012\u0011\b=\u0012\u0006\u0010\u0080\u00ee\u0097\u00a8\u0006\"\u000542204\u0012\u0011\b>\u0012\u0006\u0010\u0099\u00ee\u0097\u00a8\u0006\"\u000542205\u0012\u0011\b?\u0012\u0006\u0010\u00de\u00ee\u0097\u00a8\u0006\"\u000542201\u0012\u0011\b@\u0012\u0006\u0010\u00c9\u00f0\u0097\u00a8\u0006\"\u000542206\u0012\u0011\bA\u0012\u0006\u0010\u0085\u00f1\u0097\u00a8\u0006\"\u000542207\u0012\u0011\bB\u0012\u0006\u0010\u00c6\u00f1\u0097\u00a8\u0006\"\u000542208\u0012\u0011\bC\u0012\u0006\u0010\u00be\u00f2\u0097\u00a8\u0006\"\u000542564\u0012\u0011\bD\u0012\u0006\u0010\u00a3\u00f3\u0097\u00a8\u0006\"\u000542214\u0012\u0011\bE\u0012\u0006\u0010\u008b\u00f4\u0097\u00a8\u0006\"\u000542209\u0012\u0011\bF\u0012\u0006\u0010\u0080\u00f5\u0097\u00a8\u0006\"\u000542210\u0012\u0011\bG\u0012\u0006\u0010\u00bf\u00f6\u0097\u00a8\u0006\"\u000542215\u0012\u0011\bH\u0012\u0006\u0010\u00df\u00f6\u0097\u00a8\u0006\"\u000542216\u0012\u0011\bI\u0012\u0006\u0010\u0089\u00f7\u0097\u00a8\u0006\"\u000542217\u0012\u0011\bJ\u0012\u0006\u0010\u00d8\u00f7\u0097\u00a8\u0006\"\u000542218\u0012\u0011\bK\u0012\u0006\u0010\u00fd\u00f7\u0097\u00a8\u0006\"\u000542219\u0012\u0011\bL\u0012\u0006\u0010\u00f1\u00f8\u0097\u00a8\u0006\"\u000542220\u0012\u0011\bM\u0012\u0006\u0010\u009d\u00f9\u0097\u00a8\u0006\"\u000542221\u0012\u0011\bN\u0012\u0006\u0010\u00e2\u00f9\u0097\u00a8\u0006\"\u000542222\u0012\u0011\bO\u0012\u0006\u0010\u00b2\u00fa\u0097\u00a8\u0006\"\u000542223\u0012\u0011\bP\u0012\u0006\u0010\u00d2\u00fa\u0097\u00a8\u0006\"\u000542224\u0012\u0011\bQ\u0012\u0006\u0010\u00ab\u00fb\u0097\u00a8\u0006\"\u000542225\u0012\u0011\bR\u0012\u0006\u0010\u00f6\u00fb\u0097\u00a8\u0006\"\u000542226\u0012\u0011\bS\u0012\u0006\u0010\u00b9\u00fc\u0097\u00a8\u0006\"\u000542227\u0012\u0011\bT\u0012\u0006\u0010\u0093\u00fd\u0097\u00a8\u0006\"\u000542228\u0012\u0011\bU\u0012\u0006\u0010\u00c9\u00fd\u0097\u00a8\u0006\"\u000542229\u0012\u0011\bV\u0012\u0006\u0010\u00b2\u00fe\u0097\u00a8\u0006\"\u000542230\u0012\u0011\bW\u0012\u0006\u0010\u00e9\u00fe\u0097\u00a8\u0006\"\u000542231\u0012\u0011\bX\u0012\u0006\u0010\u00d1\u00ff\u0097\u00a8\u0006\"\u000542232\u0012\u0011\bY\u0012\u0006\u0010\u00bf\u0080\u0098\u00a8\u0006\"\u000542233\u0012\u0011\bZ\u0012\u0006\u0010\u00f9\u0080\u0098\u00a8\u0006\"\u000542234\u0012\u0011\b[\u0012\u0006\u0010\u00e2\u0081\u0098\u00a8\u0006\"\u000542235\u0012\u0011\b\\\u0012\u0006\u0010\u0080\u0082\u0098\u00a8\u0006\"\u000542211\u0012\u0011\b]\u0012\u0006\u0010\u00d5\u0082\u0098\u00a8\u0006\"\u000549203\u0012\u0011\b^\u0012\u0006\u0010\u00a9\u0083\u0098\u00a8\u0006\"\u000549204\u0012\u0011\b_\u0012\u0006\u0010\u00c3\u0083\u0098\u00a8\u0006\"\u000542503\u0012\u0011\b`\u0012\u0006\u0010\u00ce\u0083\u0098\u00a8\u0006\"\u000534564\u0012\u0011\ba\u0012\u0006\u0010\u00ee\u0087\u0098\u00a8\u0006\"\u000534789\u0012\u0011\bb\u0012\u0006\u0010\u009c\u0088\u0098\u00a8\u0006\"\u000549163\u0012\u0011\bc\u0012\u0006\u0010\u00ee\u0094\u0098\u00a8\u0006\"\u000549208\u0012\u0011\bd\u0012\u0006\u0010\u00a2\u0095\u0098\u00a8\u0006\"\u000549209\u0012\u0011\be\u0012\u0006\u0010\u00d8\u0095\u0098\u00a8\u0006\"\u000549210\u0012\u0011\bf\u0012\u0006\u0010\u00fd\u0099\u0098\u00a8\u0006\"\u000549211\u0012\u0011\bg\u0012\u0006\u0010\u00d6\u009a\u0098\u00a8\u0006\"\u000549212\u0012\u0011\bh\u0012\u0006\u0010\u008b\u009c\u0098\u00a8\u0006\"\u000549213\u0012\u0011\bi\u0012\u0006\u0010\u008a\u00a1\u0098\u00a8\u0006\"\u000549206\u0012\u0011\bj\u0012\u0006\u0010\u00e3\u00a2\u0098\u00a8\u0006\"\u000549216\u0012\u0011\bk\u0012\u0006\u0010\u00a7\u00a3\u0098\u00a8\u0006\"\u000549217\u0012\u0011\bl\u0012\u0006\u0010\u00a2\u00a4\u0098\u00a8\u0006\"\u000549214\u0012\u0011\bm\u0012\u0006\u0010\u00a4\u00a5\u0098\u00a8\u0006\"\u000549249\u0012\u0011\bn\u0012\u0006\u0010\u00f1\u00a5\u0098\u00a8\u0006\"\u000549218\u0012\u0011\bo\u0012\u0006\u0010\u00cb\u00a6\u0098\u00a8\u0006\"\u000549219\u0012\u0011\bp\u0012\u0006\u0010\u00aa\u00a9\u0098\u00a8\u0006\"\u000538041\u0012\u0011\bq\u0012\u0006\u0010\u00bd\u00aa\u0098\u00a8\u0006\"\u000538042\u0012\u0011\br\u0012\u0006\u0010\u00e7\u00ab\u0098\u00a8\u0006\"\u000538043\u0012\u0011\bs\u0012\u0006\u0010\u00df\u00ad\u0098\u00a8\u0006\"\u000538044\u0012\u0011\bt\u0012\u0006\u0010\u00b5\u00af\u0098\u00a8\u0006\"\u000538045\u0012\u0011\bu\u0012\u0006\u0010\u00b7\u00b2\u0098\u00a8\u0006\"\u000549247\u0012\u0011\bv\u0012\u0006\u0010\u00b1\u00b3\u0098\u00a8\u0006\"\u000549222\u0012\u0011\bw\u0012\u0006\u0010\u00e3\u00b3\u0098\u00a8\u0006\"\u000549223\u0012\u0011\bx\u0012\u0006\u0010\u00cf\u00b4\u0098\u00a8\u0006\"\u000538049\u0012\u0011\by\u0012\u0006\u0010\u009d\u00b5\u0098\u00a8\u0006\"\u000549224\u0012\u0011\bz\u0012\u0006\u0010\u00fa\u00b9\u0098\u00a8\u0006\"\u000549239\u0012\u0011\b{\u0012\u0006\u0010\u00de\u00ba\u0098\u00a8\u0006\"\u000549240\u0012\u0011\b|\u0012\u0006\u0010\u009b\u00bb\u0098\u00a8\u0006\"\u000549241\u0012\u0011\b}\u0012\u0006\u0010\u00c9\u00c0\u0098\u00a8\u0006\"\u000538054\u001a\b\u001a\u0006LJKK82 \u00ac\u00e8\u0097\u00a8\u0006\"`\n/\n\u001025789-701ff27f-2\u0012\b14:45:00\u001a\b20230916 \u0000*\u00037330\u0001\u0012\u001d\r1N\u0013\u00c2\u0015\u00fe\u0017\u0092\u00c2\u001d\u0000\u0000nC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u001c\u00c7\tA(\u00ac\u00e8\u0097\u00a8\u0006B\b\u001a\u0006LJKK82" + }, + { + "type": "con_recorrido", + "entity": "\n$de85a6f6-fe0d-42bb-879a-cbf51135dac5\u001a\u00dd\b\n/\n\u001025953-701ff27f-2\u0012\b15:30:00\u001a\b20230916 \u0000*\u00037340\u0000\u0012\u0011\b8\u0012\u0006\u0010\u00e1\u00e8\u0097\u00a8\u0006\"\u000538514\u0012\u0011\b9\u0012\u0006\u0010\u008a\u00e9\u0097\u00a8\u0006\"\u000538516\u0012\u0011\b:\u0012\u0006\u0010\u00c9\u00e9\u0097\u00a8\u0006\"\u000538518\u0012\u0011\b;\u0012\u0006\u0010\u00b0\u00ea\u0097\u00a8\u0006\"\u000538520\u0012\u0011\b<\u0012\u0006\u0010\u00db\u00ea\u0097\u00a8\u0006\"\u000538521\u0012\u0011\b=\u0012\u0006\u0010\u008e\u00eb\u0097\u00a8\u0006\"\u000538522\u0012\u0011\b>\u0012\u0006\u0010\u00c0\u00eb\u0097\u00a8\u0006\"\u000538523\u0012\u0011\b?\u0012\u0006\u0010\u00f5\u00eb\u0097\u00a8\u0006\"\u000538524\u0012\u0011\b@\u0012\u0006\u0010\u00a7\u00ec\u0097\u00a8\u0006\"\u000538525\u0012\u0011\bA\u0012\u0006\u0010\u00da\u00ec\u0097\u00a8\u0006\"\u000538526\u0012\u0011\bB\u0012\u0006\u0010\u008a\u00ed\u0097\u00a8\u0006\"\u000538527\u0012\u0011\bC\u0012\u0006\u0010\u00e0\u00ed\u0097\u00a8\u0006\"\u000538528\u0012\u0011\bD\u0012\u0006\u0010\u00d1\u00ee\u0097\u00a8\u0006\"\u000538529\u0012\u0011\bE\u0012\u0006\u0010\u009e\u00f0\u0097\u00a8\u0006\"\u000538530\u0012\u0014\bF\u0012\u0006\u0010\u00aa\u00f0\u0097\u00a8\u0006\"\b16005209\u0012\u0011\bG\u0012\u0006\u0010\u0090\u00f2\u0097\u00a8\u0006\"\u000538531\u0012\u0013\bH\u0012\u0006\u0010\u00bd\u00f2\u0097\u00a8\u0006\"\u00078921285\u0012\u0011\bI\u0012\u0006\u0010\u00b3\u00f3\u0097\u00a8\u0006\"\u000538532\u0012\u0011\bJ\u0012\u0006\u0010\u00e7\u00f3\u0097\u00a8\u0006\"\u000538533\u0012\u0011\bK\u0012\u0006\u0010\u009d\u00f4\u0097\u00a8\u0006\"\u000538534\u0012\u0011\bL\u0012\u0006\u0010\u00cd\u00f4\u0097\u00a8\u0006\"\u000538535\u0012\u0011\bM\u0012\u0006\u0010\u008e\u00f5\u0097\u00a8\u0006\"\u000538536\u0012\u0013\bN\u0012\u0006\u0010\u00b2\u00f5\u0097\u00a8\u0006\"\u00074838437\u0012\u0011\bO\u0012\u0006\u0010\u00e8\u00f5\u0097\u00a8\u0006\"\u000545085\u0012\u0011\bP\u0012\u0006\u0010\u00b8\u00f6\u0097\u00a8\u0006\"\u000545086\u0012\u0011\bQ\u0012\u0006\u0010\u00f0\u00f6\u0097\u00a8\u0006\"\u000538539\u0012\u0011\bR\u0012\u0006\u0010\u00b3\u00f7\u0097\u00a8\u0006\"\u000538540\u0012\u0011\bS\u0012\u0006\u0010\u0085\u00f8\u0097\u00a8\u0006\"\u000538544\u0012\u0011\bT\u0012\u0006\u0010\u00ce\u00f8\u0097\u00a8\u0006\"\u000538545\u0012\u0011\bU\u0012\u0006\u0010\u00ae\u00f9\u0097\u00a8\u0006\"\u000538546\u0012\u0011\bV\u0012\u0006\u0010\u00b4\u00fa\u0097\u00a8\u0006\"\u000538548\u0012\u0011\bW\u0012\u0006\u0010\u0082\u00fb\u0097\u00a8\u0006\"\u000538549\u0012\u0011\bX\u0012\u0006\u0010\u00c1\u00fb\u0097\u00a8\u0006\"\u000538550\u0012\u0011\bY\u0012\u0006\u0010\u00b1\u00fc\u0097\u00a8\u0006\"\u000538551\u0012\u0011\bZ\u0012\u0006\u0010\u0097\u00fd\u0097\u00a8\u0006\"\u000538552\u0012\u0011\b[\u0012\u0006\u0010\u00f9\u00fd\u0097\u00a8\u0006\"\u000549359\u0012\u0011\b\\\u0012\u0006\u0010\u00b9\u00fe\u0097\u00a8\u0006\"\u000549360\u0012\u0011\b]\u0012\u0006\u0010\u00c8\u00ff\u0097\u00a8\u0006\"\u000549361\u0012\u0011\b^\u0012\u0006\u0010\u00eb\u00ff\u0097\u00a8\u0006\"\u000549362\u0012\u0011\b_\u0012\u0006\u0010\u00aa\u0080\u0098\u00a8\u0006\"\u000549363\u0012\u0011\b`\u0012\u0006\u0010\u00eb\u0080\u0098\u00a8\u0006\"\u000549364\u0012\u0011\ba\u0012\u0006\u0010\u009d\u0081\u0098\u00a8\u0006\"\u000549365\u0012\u0011\bb\u0012\u0006\u0010\u00fc\u0081\u0098\u00a8\u0006\"\u000538560\u0012\u0011\bc\u0012\u0006\u0010\u00b2\u0082\u0098\u00a8\u0006\"\u000542857\u0012\u0011\bd\u0012\u0006\u0010\u00df\u0082\u0098\u00a8\u0006\"\u000538562\u0012\u0011\be\u0012\u0006\u0010\u0091\u0083\u0098\u00a8\u0006\"\u000538563\u0012\u0011\bf\u0012\u0006\u0010\u00d9\u0083\u0098\u00a8\u0006\"\u000542854\u0012\u0011\bg\u0012\u0006\u0010\u00df\u0084\u0098\u00a8\u0006\"\u000538565\u0012\u0011\bh\u0012\u0006\u0010\u00ab\u0085\u0098\u00a8\u0006\"\u000540932\u0012\u0011\bi\u0012\u0006\u0010\u00a2\u0086\u0098\u00a8\u0006\"\u000538567\u0012\u0011\bj\u0012\u0006\u0010\u00ef\u0086\u0098\u00a8\u0006\"\u000538568\u0012\u0011\bk\u0012\u0006\u0010\u009e\u0087\u0098\u00a8\u0006\"\u000538569\u0012\u0011\bl\u0012\u0006\u0010\u00e6\u0087\u0098\u00a8\u0006\"\u000538570\u0012\u0011\bm\u0012\u0006\u0010\u00c7\u0088\u0098\u00a8\u0006\"\u000538571\u0012\u0011\bn\u0012\u0006\u0010\u00a5\u0089\u0098\u00a8\u0006\"\u000538572\u001a\b\u001a\u0006DHTY90 \u00c9\u00e8\u0097\u00a8\u0006\"`\n/\n\u001025953-701ff27f-2\u0012\b15:30:00\u001a\b20230916 \u0000*\u00037340\u0000\u0012\u001d\rIN\u0013\u00c2\u0015\u0091\u0016\u0092\u00c2\u001d\u0000\u0000|B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008e\u00e3\u0000A(\u00c9\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DHTY90" + }, + { + "type": "con_recorrido", + "entity": "\n$89202739-2cdb-44ed-9256-da8227f112d4\u001a\u00fd\u000e\n/\n\u001025955-701ff27f-2\u0012\b15:50:00\u001a\b20230916 \u0000*\u00037340\u0000\u0012\u0011\b\u000e\u0012\u0006\u0010\u0094\u00e9\u0097\u00a8\u0006\"\u000540606\u0012\u0011\b\u000f\u0012\u0006\u0010\u00ba\u00e9\u0097\u00a8\u0006\"\u000540607\u0012\u0011\b\u0010\u0012\u0006\u0010\u00fa\u00e9\u0097\u00a8\u0006\"\u000540609\u0012\u0011\b\u0011\u0012\u0006\u0010\u00b5\u00ea\u0097\u00a8\u0006\"\u000540610\u0012\u0011\b\u0012\u0012\u0006\u0010\u00ee\u00ea\u0097\u00a8\u0006\"\u000540611\u0012\u0011\b\u0013\u0012\u0006\u0010\u00a0\u00eb\u0097\u00a8\u0006\"\u000540612\u0012\u0011\b\u0014\u0012\u0006\u0010\u00e1\u00eb\u0097\u00a8\u0006\"\u000540620\u0012\u0011\b\u0015\u0012\u0006\u0010\u00a8\u00ec\u0097\u00a8\u0006\"\u000549281\u0012\u0011\b\u0016\u0012\u0006\u0010\u00e9\u00ec\u0097\u00a8\u0006\"\u000549282\u0012\u0011\b\u0017\u0012\u0006\u0010\u0094\u00ed\u0097\u00a8\u0006\"\u000549283\u0012\u0011\b\u0018\u0012\u0006\u0010\u00cc\u00ed\u0097\u00a8\u0006\"\u000549284\u0012\u0011\b\u0019\u0012\u0006\u0010\u008e\u00ee\u0097\u00a8\u0006\"\u000549285\u0012\u0011\b\u001a\u0012\u0006\u0010\u00d0\u00ee\u0097\u00a8\u0006\"\u000549286\u0012\u0011\b\u001b\u0012\u0006\u0010\u00fa\u00ee\u0097\u00a8\u0006\"\u000549287\u0012\u0011\b\u001c\u0012\u0006\u0010\u00a7\u00ef\u0097\u00a8\u0006\"\u000549288\u0012\u0011\b\u001d\u0012\u0006\u0010\u00d8\u00ef\u0097\u00a8\u0006\"\u000549289\u0012\u0011\b\u001e\u0012\u0006\u0010\u00da\u00f0\u0097\u00a8\u0006\"\u000542294\u0012\u0011\b\u001f\u0012\u0006\u0010\u00d9\u00f1\u0097\u00a8\u0006\"\u000542295\u0012\u0011\b \u0012\u0006\u0010\u00c9\u00f2\u0097\u00a8\u0006\"\u000542296\u0012\u0011\b!\u0012\u0006\u0010\u00c4\u00f3\u0097\u00a8\u0006\"\u000542297\u0012\u0011\b\"\u0012\u0006\u0010\u00a3\u00f4\u0097\u00a8\u0006\"\u000542298\u0012\u0011\b#\u0012\u0006\u0010\u00e3\u00f4\u0097\u00a8\u0006\"\u000542299\u0012\u0011\b$\u0012\u0006\u0010\u008d\u00f5\u0097\u00a8\u0006\"\u000549295\u0012\u0011\b%\u0012\u0006\u0010\u0087\u00f6\u0097\u00a8\u0006\"\u000549296\u0012\u0011\b&\u0012\u0006\u0010\u00e0\u00f6\u0097\u00a8\u0006\"\u000549297\u0012\u0011\b'\u0012\u0006\u0010\u0084\u00f7\u0097\u00a8\u0006\"\u000549298\u0012\u0011\b(\u0012\u0006\u0010\u00cd\u00f7\u0097\u00a8\u0006\"\u000549299\u0012\u0011\b)\u0012\u0006\u0010\u00fa\u00f7\u0097\u00a8\u0006\"\u000549300\u0012\u0011\b*\u0012\u0006\u0010\u00d3\u00f8\u0097\u00a8\u0006\"\u000549301\u0012\u0011\b+\u0012\u0006\u0010\u009c\u00f9\u0097\u00a8\u0006\"\u000549302\u0012\u0011\b,\u0012\u0006\u0010\u00cd\u00f9\u0097\u00a8\u0006\"\u000549303\u0012\u0011\b-\u0012\u0006\u0010\u0086\u00fa\u0097\u00a8\u0006\"\u000549304\u0012\u0011\b.\u0012\u0006\u0010\u00a6\u00fa\u0097\u00a8\u0006\"\u000549305\u0012\u0011\b/\u0012\u0006\u0010\u00e5\u00fa\u0097\u00a8\u0006\"\u000549306\u0012\u0011\b0\u0012\u0006\u0010\u0093\u00fb\u0097\u00a8\u0006\"\u000549307\u0012\u0011\b1\u0012\u0006\u0010\u00ae\u00fb\u0097\u00a8\u0006\"\u000549308\u0012\u0011\b2\u0012\u0006\u0010\u00ca\u00fb\u0097\u00a8\u0006\"\u000549309\u0012\u0011\b3\u0012\u0006\u0010\u00eb\u00fb\u0097\u00a8\u0006\"\u000542315\u0012\u0011\b4\u0012\u0006\u0010\u0086\u00fc\u0097\u00a8\u0006\"\u000542316\u0012\u0011\b5\u0012\u0006\u0010\u00c2\u00fc\u0097\u00a8\u0006\"\u000542317\u0012\u0011\b6\u0012\u0006\u0010\u0080\u00fd\u0097\u00a8\u0006\"\u000542318\u0012\u0013\b7\u0012\u0006\u0010\u00d8\u00fd\u0097\u00a8\u0006\"\u00078606396\u0012\u0011\b8\u0012\u0006\u0010\u00b2\u00fe\u0097\u00a8\u0006\"\u000538514\u0012\u0011\b9\u0012\u0006\u0010\u00e3\u00fe\u0097\u00a8\u0006\"\u000538516\u0012\u0011\b:\u0012\u0006\u0010\u00b0\u00ff\u0097\u00a8\u0006\"\u000538518\u0012\u0011\b;\u0012\u0006\u0010\u00b3\u0080\u0098\u00a8\u0006\"\u000538520\u0012\u0011\b<\u0012\u0006\u0010\u00eb\u0080\u0098\u00a8\u0006\"\u000538521\u0012\u0011\b=\u0012\u0006\u0010\u00af\u0081\u0098\u00a8\u0006\"\u000538522\u0012\u0011\b>\u0012\u0006\u0010\u00f5\u0081\u0098\u00a8\u0006\"\u000538523\u0012\u0011\b?\u0012\u0006\u0010\u00c0\u0082\u0098\u00a8\u0006\"\u000538524\u0012\u0011\b@\u0012\u0006\u0010\u0087\u0083\u0098\u00a8\u0006\"\u000538525\u0012\u0011\bA\u0012\u0006\u0010\u00d4\u0083\u0098\u00a8\u0006\"\u000538526\u0012\u0011\bB\u0012\u0006\u0010\u009d\u0084\u0098\u00a8\u0006\"\u000538527\u0012\u0011\bC\u0012\u0006\u0010\u00a5\u0085\u0098\u00a8\u0006\"\u000538528\u0012\u0011\bD\u0012\u0006\u0010\u00e0\u0086\u0098\u00a8\u0006\"\u000538529\u0012\u0011\bE\u0012\u0006\u0010\u00d1\u0089\u0098\u00a8\u0006\"\u000538530\u0012\u0014\bF\u0012\u0006\u0010\u00e9\u0089\u0098\u00a8\u0006\"\b16005209\u0012\u0011\bG\u0012\u0006\u0010\u00b9\u008d\u0098\u00a8\u0006\"\u000538531\u0012\u0013\bH\u0012\u0006\u0010\u009c\u008e\u0098\u00a8\u0006\"\u00078921285\u0012\u0011\bI\u0012\u0006\u0010\u00a8\u0090\u0098\u00a8\u0006\"\u000538532\u0012\u0011\bJ\u0012\u0006\u0010\u00a3\u0091\u0098\u00a8\u0006\"\u000538533\u0012\u0011\bK\u0012\u0006\u0010\u00a6\u0092\u0098\u00a8\u0006\"\u000538534\u0012\u0011\bL\u0012\u0006\u0010\u009f\u0093\u0098\u00a8\u0006\"\u000538535\u0012\u0011\bM\u0012\u0006\u0010\u00c7\u0094\u0098\u00a8\u0006\"\u000538536\u0012\u0013\bN\u0012\u0006\u0010\u00a7\u0095\u0098\u00a8\u0006\"\u00074838437\u0012\u0011\bO\u0012\u0006\u0010\u00b8\u0096\u0098\u00a8\u0006\"\u000545085\u0012\u0011\bP\u0012\u0006\u0010\u009b\u0098\u0098\u00a8\u0006\"\u000545086\u0012\u0011\bQ\u0012\u0006\u0010\u00be\u0099\u0098\u00a8\u0006\"\u000538539\u0012\u0011\bR\u0012\u0006\u0010\u0089\u009b\u0098\u00a8\u0006\"\u000538540\u0012\u0011\bS\u0012\u0006\u0010\u008d\u009d\u0098\u00a8\u0006\"\u000538544\u0012\u0011\bT\u0012\u0006\u0010\u00ff\u009e\u0098\u00a8\u0006\"\u000538545\u0012\u0011\bU\u0012\u0006\u0010\u00cb\u00a1\u0098\u00a8\u0006\"\u000538546\u0012\u0011\bV\u0012\u0006\u0010\u00b8\u00a5\u0098\u00a8\u0006\"\u000538548\u0012\u0011\bW\u0012\u0006\u0010\u00e9\u00a7\u0098\u00a8\u0006\"\u000538549\u0012\u0011\bX\u0012\u0006\u0010\u00ee\u00a9\u0098\u00a8\u0006\"\u000538550\u0012\u0011\bY\u0012\u0006\u0010\u00d2\u00ad\u0098\u00a8\u0006\"\u000538551\u0012\u0011\bZ\u0012\u0006\u0010\u00a5\u00b1\u0098\u00a8\u0006\"\u000538552\u0012\u0011\b[\u0012\u0006\u0010\u0085\u00b5\u0098\u00a8\u0006\"\u000549359\u0012\u0011\b\\\u0012\u0006\u0010\u00d4\u00b7\u0098\u00a8\u0006\"\u000549360\u0012\u0011\b]\u0012\u0006\u0010\u00e7\u00bd\u0098\u00a8\u0006\"\u000549361\u0012\u0011\b^\u0012\u0006\u0010\u00b8\u00bf\u0098\u00a8\u0006\"\u000549362\u0012\u0011\b_\u0012\u0006\u0010\u00b2\u00c2\u0098\u00a8\u0006\"\u000549363\u0012\u0011\b`\u0012\u0006\u0010\u00d0\u00c5\u0098\u00a8\u0006\"\u000549364\u0012\u0011\ba\u0012\u0006\u0010\u0099\u00c8\u0098\u00a8\u0006\"\u000549365\u0012\u0011\bb\u0012\u0006\u0010\u00b1\u00cd\u0098\u00a8\u0006\"\u000538560\u0012\u0011\bc\u0012\u0006\u0010\u00c1\u00d0\u0098\u00a8\u0006\"\u000542857\u0012\u0011\bd\u0012\u0006\u0010\u0096\u00d3\u0098\u00a8\u0006\"\u000538562\u0012\u0011\be\u0012\u0006\u0010\u00a1\u00d6\u0098\u00a8\u0006\"\u000538563\u0012\u0011\bf\u0012\u0006\u0010\u00f5\u00da\u0098\u00a8\u0006\"\u000542854\u0012\u0011\bg\u0012\u0006\u0010\u00b2\u00e4\u0098\u00a8\u0006\"\u000538565\u0012\u0011\bh\u0012\u0006\u0010\u0096\u00ea\u0098\u00a8\u0006\"\u000540932\u0012\u0011\bi\u0012\u0006\u0010\u0091\u00f4\u0098\u00a8\u0006\"\u000538567\u0012\u0011\bj\u0012\u0006\u0010\u0093\u00fb\u0098\u00a8\u0006\"\u000538568\u0012\u0011\bk\u0012\u0006\u0010\u00e2\u00ff\u0098\u00a8\u0006\"\u000538569\u0012\u0011\bl\u0012\u0006\u0010\u008e\u0087\u0099\u00a8\u0006\"\u000538570\u0012\u0011\bm\u0012\u0006\u0010\u00fb\u0091\u0099\u00a8\u0006\"\u000538571\u0012\u0011\bn\u0012\u0006\u0010\u00c4\u009d\u0099\u00a8\u0006\"\u000538572\u001a\b\u001a\u0006DPGK86 \u00cc\u00e8\u0097\u00a8\u0006\"`\n/\n\u001025955-701ff27f-2\u0012\b15:50:00\u001a\b20230916 \u0000*\u00037340\u0000\u0012\u001d\r\u009e\u00bb\u0013\u00c2\u0015\u001d\u0007\u0092\u00c2\u001d\u0000\u0000\u00a1C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-r\u001cg@(\u00cc\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DPGK86" + }, + { + "type": "con_recorrido", + "entity": "\n$830def33-4849-46cd-a0b6-408c1ccd755c\u001a\u00b8\u0002\n/\n\u001025950-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00037340\u0000\u0012\u0011\bb\u0012\u0006\u0010\u008e\u00e9\u0097\u00a8\u0006\"\u000538560\u0012\u0011\bc\u0012\u0006\u0010\u00b7\u00e9\u0097\u00a8\u0006\"\u000542857\u0012\u0011\bd\u0012\u0006\u0010\u00d7\u00e9\u0097\u00a8\u0006\"\u000538562\u0012\u0011\be\u0012\u0006\u0010\u00fb\u00e9\u0097\u00a8\u0006\"\u000538563\u0012\u0011\bf\u0012\u0006\u0010\u00ad\u00ea\u0097\u00a8\u0006\"\u000542854\u0012\u0011\bg\u0012\u0006\u0010\u0088\u00eb\u0097\u00a8\u0006\"\u000538565\u0012\u0011\bh\u0012\u0006\u0010\u00b8\u00eb\u0097\u00a8\u0006\"\u000540932\u0012\u0011\bi\u0012\u0006\u0010\u0083\u00ec\u0097\u00a8\u0006\"\u000538567\u0012\u0011\bj\u0012\u0006\u0010\u00b1\u00ec\u0097\u00a8\u0006\"\u000538568\u0012\u0011\bk\u0012\u0006\u0010\u00cd\u00ec\u0097\u00a8\u0006\"\u000538569\u0012\u0011\bl\u0012\u0006\u0010\u00f7\u00ec\u0097\u00a8\u0006\"\u000538570\u0012\u0011\bm\u0012\u0006\u0010\u00ae\u00ed\u0097\u00a8\u0006\"\u000538571\u0012\u0011\bn\u0012\u0006\u0010\u00e2\u00ed\u0097\u00a8\u0006\"\u000538572\u001a\b\u001a\u0006GGJJ59 \u00cd\u00e8\u0097\u00a8\u0006\"`\n/\n\u001025950-701ff27f-2\u0012\b15:00:00\u001a\b20230916 \u0000*\u00037340\u0000\u0012\u001d\rd\u00d9\u0012\u00c2\u0015(:\u0092\u00c2\u001d\u0000\u0080\u009dC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u000e?(\u00cd\u00e8\u0097\u00a8\u0006B\b\u001a\u0006GGJJ59" + }, + { + "type": "con_recorrido", + "entity": "\n$44fed9f4-5b18-45e1-a292-6e2a9eb9f639\u001a\u00c2\u0004\n/\n\u001025952-701ff27f-2\u0012\b15:20:00\u001a\b20230916 \u0000*\u00037340\u0000\u0012\u0011\bT\u0012\u0006\u0010\u00e4\u00e8\u0097\u00a8\u0006\"\u000538545\u0012\u0011\bU\u0012\u0006\u0010\u00c1\u00e9\u0097\u00a8\u0006\"\u000538546\u0012\u0011\bV\u0012\u0006\u0010\u00be\u00ea\u0097\u00a8\u0006\"\u000538548\u0012\u0011\bW\u0012\u0006\u0010\u0084\u00eb\u0097\u00a8\u0006\"\u000538549\u0012\u0011\bX\u0012\u0006\u0010\u00bd\u00eb\u0097\u00a8\u0006\"\u000538550\u0012\u0011\bY\u0012\u0006\u0010\u009d\u00ec\u0097\u00a8\u0006\"\u000538551\u0012\u0011\bZ\u0012\u0006\u0010\u00f1\u00ec\u0097\u00a8\u0006\"\u000538552\u0012\u0011\b[\u0012\u0006\u0010\u00bf\u00ed\u0097\u00a8\u0006\"\u000549359\u0012\u0011\b\\\u0012\u0006\u0010\u00f2\u00ed\u0097\u00a8\u0006\"\u000549360\u0012\u0011\b]\u0012\u0006\u0010\u00de\u00ee\u0097\u00a8\u0006\"\u000549361\u0012\u0011\b^\u0012\u0006\u0010\u00f8\u00ee\u0097\u00a8\u0006\"\u000549362\u0012\u0011\b_\u0012\u0006\u0010\u00a6\u00ef\u0097\u00a8\u0006\"\u000549363\u0012\u0011\b`\u0012\u0006\u0010\u00d5\u00ef\u0097\u00a8\u0006\"\u000549364\u0012\u0011\ba\u0012\u0006\u0010\u00f8\u00ef\u0097\u00a8\u0006\"\u000549365\u0012\u0011\bb\u0012\u0006\u0010\u00ba\u00f0\u0097\u00a8\u0006\"\u000538560\u0012\u0011\bc\u0012\u0006\u0010\u00df\u00f0\u0097\u00a8\u0006\"\u000542857\u0012\u0011\bd\u0012\u0006\u0010\u00fd\u00f0\u0097\u00a8\u0006\"\u000538562\u0012\u0011\be\u0012\u0006\u0010\u009e\u00f1\u0097\u00a8\u0006\"\u000538563\u0012\u0011\bf\u0012\u0006\u0010\u00cd\u00f1\u0097\u00a8\u0006\"\u000542854\u0012\u0011\bg\u0012\u0006\u0010\u00a3\u00f2\u0097\u00a8\u0006\"\u000538565\u0012\u0011\bh\u0012\u0006\u0010\u00d2\u00f2\u0097\u00a8\u0006\"\u000540932\u0012\u0011\bi\u0012\u0006\u0010\u009b\u00f3\u0097\u00a8\u0006\"\u000538567\u0012\u0011\bj\u0012\u0006\u0010\u00c8\u00f3\u0097\u00a8\u0006\"\u000538568\u0012\u0011\bk\u0012\u0006\u0010\u00e4\u00f3\u0097\u00a8\u0006\"\u000538569\u0012\u0011\bl\u0012\u0006\u0010\u008e\u00f4\u0097\u00a8\u0006\"\u000538570\u0012\u0011\bm\u0012\u0006\u0010\u00c5\u00f4\u0097\u00a8\u0006\"\u000538571\u0012\u0011\bn\u0012\u0006\u0010\u00fa\u00f4\u0097\u00a8\u0006\"\u000538572\u001a\b\u001a\u0006GSRZ32 \u00ad\u00e8\u0097\u00a8\u0006\"`\n/\n\u001025952-701ff27f-2\u0012\b15:20:00\u001a\b20230916 \u0000*\u00037340\u0000\u0012\u001d\rJ\u00ff\u0012\u00c2\u0015\u00fd/\u0092\u00c2\u001d\u0000\u0000\u00abC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-9\u008ekA(\u00ad\u00e8\u0097\u00a8\u0006B\b\u001a\u0006GSRZ32" + }, + { + "type": "con_recorrido", + "entity": "\n$7338c480-acc0-491d-a9b6-1d3ca961c2dd\u001ag\n/\n\u001025949-701ff27f-2\u0012\b14:50:00\u001a\b20230916 \u0000*\u00037340\u0000\u0012\u0011\bm\u0012\u0006\u0010\u00e7\u00e8\u0097\u00a8\u0006\"\u000538571\u0012\u0011\bn\u0012\u0006\u0010\u009f\u00e9\u0097\u00a8\u0006\"\u000538572\u001a\b\u001a\u0006GYGL94 \u00cc\u00e8\u0097\u00a8\u0006\"`\n/\n\u001025949-701ff27f-2\u0012\b14:50:00\u001a\b20230916 \u0000*\u00037340\u0000\u0012\u001d\r\u0096\u00e3\u0012\u00c2\u0015\u00c7@\u0092\u00c2\u001d\u0000\u0000gC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48^A(\u00cc\u00e8\u0097\u00a8\u0006B\b\u001a\u0006GYGL94" + }, + { + "type": "con_recorrido", + "entity": "\n$2d7d9ae4-c9c9-48c4-b7e9-0118f0f060f0\u001a\u00ce\u0010\n/\n\u001025956-701ff27f-2\u0012\b16:00:00\u001a\b20230916 \u0000*\u00037340\u0000\u0012\u0011\b\u0003\u0012\u0006\u0010\u00d7\u00e8\u0097\u00a8\u0006\"\u000540584\u0012\u0011\b\u0004\u0012\u0006\u0010\u00ff\u00e8\u0097\u00a8\u0006\"\u000540594\u0012\u0011\b\u0005\u0012\u0006\u0010\u0094\u00ea\u0097\u00a8\u0006\"\u000540593\u0012\u0011\b\u0006\u0012\u0006\u0010\u00cc\u00ea\u0097\u00a8\u0006\"\u000540597\u0012\u0011\b\u0007\u0012\u0006\u0010\u00ea\u00ea\u0097\u00a8\u0006\"\u000540598\u0012\u0011\b\b\u0012\u0006\u0010\u0093\u00eb\u0097\u00a8\u0006\"\u000540599\u0012\u0011\b\t\u0012\u0006\u0010\u00ba\u00eb\u0097\u00a8\u0006\"\u000530963\u0012\u0011\b\n\u0012\u0006\u0010\u00c8\u00eb\u0097\u00a8\u0006\"\u000540601\u0012\u0011\b\u000b\u0012\u0006\u0010\u00d7\u00eb\u0097\u00a8\u0006\"\u000540602\u0012\u0011\b\f\u0012\u0006\u0010\u0085\u00ec\u0097\u00a8\u0006\"\u000540603\u0012\u0011\b\r\u0012\u0006\u0010\u00ad\u00ec\u0097\u00a8\u0006\"\u000540604\u0012\u0011\b\u000e\u0012\u0006\u0010\u00f3\u00ec\u0097\u00a8\u0006\"\u000540606\u0012\u0011\b\u000f\u0012\u0006\u0010\u0096\u00ed\u0097\u00a8\u0006\"\u000540607\u0012\u0011\b\u0010\u0012\u0006\u0010\u00d2\u00ed\u0097\u00a8\u0006\"\u000540609\u0012\u0011\b\u0011\u0012\u0006\u0010\u008a\u00ee\u0097\u00a8\u0006\"\u000540610\u0012\u0011\b\u0012\u0012\u0006\u0010\u00c0\u00ee\u0097\u00a8\u0006\"\u000540611\u0012\u0011\b\u0013\u0012\u0006\u0010\u00f0\u00ee\u0097\u00a8\u0006\"\u000540612\u0012\u0011\b\u0014\u0012\u0006\u0010\u00ae\u00ef\u0097\u00a8\u0006\"\u000540620\u0012\u0011\b\u0015\u0012\u0006\u0010\u00f4\u00ef\u0097\u00a8\u0006\"\u000549281\u0012\u0011\b\u0016\u0012\u0006\u0010\u00b3\u00f0\u0097\u00a8\u0006\"\u000549282\u0012\u0011\b\u0017\u0012\u0006\u0010\u00dd\u00f0\u0097\u00a8\u0006\"\u000549283\u0012\u0011\b\u0018\u0012\u0006\u0010\u0094\u00f1\u0097\u00a8\u0006\"\u000549284\u0012\u0011\b\u0019\u0012\u0006\u0010\u00d5\u00f1\u0097\u00a8\u0006\"\u000549285\u0012\u0011\b\u001a\u0012\u0006\u0010\u0097\u00f2\u0097\u00a8\u0006\"\u000549286\u0012\u0011\b\u001b\u0012\u0006\u0010\u00c1\u00f2\u0097\u00a8\u0006\"\u000549287\u0012\u0011\b\u001c\u0012\u0006\u0010\u00ee\u00f2\u0097\u00a8\u0006\"\u000549288\u0012\u0011\b\u001d\u0012\u0006\u0010\u00a0\u00f3\u0097\u00a8\u0006\"\u000549289\u0012\u0011\b\u001e\u0012\u0006\u0010\u00a4\u00f4\u0097\u00a8\u0006\"\u000542294\u0012\u0011\b\u001f\u0012\u0006\u0010\u00a7\u00f5\u0097\u00a8\u0006\"\u000542295\u0012\u0011\b \u0012\u0006\u0010\u009b\u00f6\u0097\u00a8\u0006\"\u000542296\u0012\u0011\b!\u0012\u0006\u0010\u009d\u00f7\u0097\u00a8\u0006\"\u000542297\u0012\u0011\b\"\u0012\u0006\u0010\u0082\u00f8\u0097\u00a8\u0006\"\u000542298\u0012\u0011\b#\u0012\u0006\u0010\u00c6\u00f8\u0097\u00a8\u0006\"\u000542299\u0012\u0011\b$\u0012\u0006\u0010\u00f4\u00f8\u0097\u00a8\u0006\"\u000549295\u0012\u0011\b%\u0012\u0006\u0010\u00f8\u00f9\u0097\u00a8\u0006\"\u000549296\u0012\u0011\b&\u0012\u0006\u0010\u00da\u00fa\u0097\u00a8\u0006\"\u000549297\u0012\u0011\b'\u0012\u0006\u0010\u0081\u00fb\u0097\u00a8\u0006\"\u000549298\u0012\u0011\b(\u0012\u0006\u0010\u00d1\u00fb\u0097\u00a8\u0006\"\u000549299\u0012\u0011\b)\u0012\u0006\u0010\u0083\u00fc\u0097\u00a8\u0006\"\u000549300\u0012\u0011\b*\u0012\u0006\u0010\u00e6\u00fc\u0097\u00a8\u0006\"\u000549301\u0012\u0011\b+\u0012\u0006\u0010\u00b9\u00fd\u0097\u00a8\u0006\"\u000549302\u0012\u0011\b,\u0012\u0006\u0010\u00f0\u00fd\u0097\u00a8\u0006\"\u000549303\u0012\u0011\b-\u0012\u0006\u0010\u00b1\u00fe\u0097\u00a8\u0006\"\u000549304\u0012\u0011\b.\u0012\u0006\u0010\u00d4\u00fe\u0097\u00a8\u0006\"\u000549305\u0012\u0011\b/\u0012\u0006\u0010\u009d\u00ff\u0097\u00a8\u0006\"\u000549306\u0012\u0011\b0\u0012\u0006\u0010\u00d1\u00ff\u0097\u00a8\u0006\"\u000549307\u0012\u0011\b1\u0012\u0006\u0010\u00f1\u00ff\u0097\u00a8\u0006\"\u000549308\u0012\u0011\b2\u0012\u0006\u0010\u0091\u0080\u0098\u00a8\u0006\"\u000549309\u0012\u0011\b3\u0012\u0006\u0010\u00b6\u0080\u0098\u00a8\u0006\"\u000542315\u0012\u0011\b4\u0012\u0006\u0010\u00d6\u0080\u0098\u00a8\u0006\"\u000542316\u0012\u0011\b5\u0012\u0006\u0010\u009c\u0081\u0098\u00a8\u0006\"\u000542317\u0012\u0011\b6\u0012\u0006\u0010\u00e4\u0081\u0098\u00a8\u0006\"\u000542318\u0012\u0013\b7\u0012\u0006\u0010\u00cb\u0082\u0098\u00a8\u0006\"\u00078606396\u0012\u0011\b8\u0012\u0006\u0010\u00b5\u0083\u0098\u00a8\u0006\"\u000538514\u0012\u0011\b9\u0012\u0006\u0010\u00ef\u0083\u0098\u00a8\u0006\"\u000538516\u0012\u0011\b:\u0012\u0006\u0010\u00ca\u0084\u0098\u00a8\u0006\"\u000538518\u0012\u0011\b;\u0012\u0006\u0010\u00e8\u0085\u0098\u00a8\u0006\"\u000538520\u0012\u0011\b<\u0012\u0006\u0010\u00ab\u0086\u0098\u00a8\u0006\"\u000538521\u0012\u0011\b=\u0012\u0006\u0010\u00fd\u0086\u0098\u00a8\u0006\"\u000538522\u0012\u0011\b>\u0012\u0006\u0010\u00d2\u0087\u0098\u00a8\u0006\"\u000538523\u0012\u0011\b?\u0012\u0006\u0010\u00ae\u0088\u0098\u00a8\u0006\"\u000538524\u0012\u0011\b@\u0012\u0006\u0010\u0086\u0089\u0098\u00a8\u0006\"\u000538525\u0012\u0011\bA\u0012\u0006\u0010\u00e5\u0089\u0098\u00a8\u0006\"\u000538526\u0012\u0011\bB\u0012\u0006\u0010\u00bf\u008a\u0098\u00a8\u0006\"\u000538527\u0012\u0011\bC\u0012\u0006\u0010\u00e9\u008b\u0098\u00a8\u0006\"\u000538528\u0012\u0011\bD\u0012\u0006\u0010\u00d5\u008d\u0098\u00a8\u0006\"\u000538529\u0012\u0011\bE\u0012\u0006\u0010\u00af\u0091\u0098\u00a8\u0006\"\u000538530\u0012\u0014\bF\u0012\u0006\u0010\u00ce\u0091\u0098\u00a8\u0006\"\b16005209\u0012\u0011\bG\u0012\u0006\u0010\u00b4\u0096\u0098\u00a8\u0006\"\u000538531\u0012\u0013\bH\u0012\u0006\u0010\u00b8\u0097\u0098\u00a8\u0006\"\u00078921285\u0012\u0011\bI\u0012\u0006\u0010\u00a4\u009a\u0098\u00a8\u0006\"\u000538532\u0012\u0011\bJ\u0012\u0006\u0010\u00ce\u009b\u0098\u00a8\u0006\"\u000538533\u0012\u0011\bK\u0012\u0006\u0010\u0084\u009d\u0098\u00a8\u0006\"\u000538534\u0012\u0011\bL\u0012\u0006\u0010\u00ac\u009e\u0098\u00a8\u0006\"\u000538535\u0012\u0011\bM\u0012\u0006\u0010\u0099\u00a0\u0098\u00a8\u0006\"\u000538536\u0012\u0013\bN\u0012\u0006\u0010\u00a2\u00a1\u0098\u00a8\u0006\"\u00074838437\u0012\u0011\bO\u0012\u0006\u0010\u00f2\u00a2\u0098\u00a8\u0006\"\u000545085\u0012\u0011\bP\u0012\u0006\u0010\u00ba\u00a5\u0098\u00a8\u0006\"\u000545086\u0012\u0011\bQ\u0012\u0006\u0010\u00a9\u00a7\u0098\u00a8\u0006\"\u000538539\u0012\u0011\bR\u0012\u0006\u0010\u00d6\u00a9\u0098\u00a8\u0006\"\u000538540\u0012\u0011\bS\u0012\u0006\u0010\u00dd\u00ac\u0098\u00a8\u0006\"\u000538544\u0012\u0011\bT\u0012\u0006\u0010\u00ce\u00af\u0098\u00a8\u0006\"\u000538545\u0012\u0011\bU\u0012\u0006\u0010\u00d3\u00b3\u0098\u00a8\u0006\"\u000538546\u0012\u0011\bV\u0012\u0006\u0010\u00e6\u00b9\u0098\u00a8\u0006\"\u000538548\u0012\u0011\bW\u0012\u0006\u0010\u00d9\u00bd\u0098\u00a8\u0006\"\u000538549\u0012\u0011\bX\u0012\u0006\u0010\u008d\u00c1\u0098\u00a8\u0006\"\u000538550\u0012\u0011\bY\u0012\u0006\u0010\u00c5\u00c7\u0098\u00a8\u0006\"\u000538551\u0012\u0011\bZ\u0012\u0006\u0010\u00fd\u00cd\u0098\u00a8\u0006\"\u000538552\u0012\u0011\b[\u0012\u0006\u0010\u00e4\u00d4\u0098\u00a8\u0006\"\u000549359\u0012\u0011\b\\\u0012\u0006\u0010\u00d5\u00d9\u0098\u00a8\u0006\"\u000549360\u0012\u0011\b]\u0012\u0006\u0010\u00cb\u00e5\u0098\u00a8\u0006\"\u000549361\u0012\u0011\b^\u0012\u0006\u0010\u00ef\u00e8\u0098\u00a8\u0006\"\u000549362\u0012\u0011\b_\u0012\u0006\u0010\u00f3\u00ee\u0098\u00a8\u0006\"\u000549363\u0012\u0011\b`\u0012\u0006\u0010\u00db\u00f5\u0098\u00a8\u0006\"\u000549364\u0012\u0011\ba\u0012\u0006\u0010\u00a4\u00fb\u0098\u00a8\u0006\"\u000549365\u0012\u0011\bb\u0012\u0006\u0010\u00f4\u0086\u0099\u00a8\u0006\"\u000538560\u0012\u0011\bc\u0012\u0006\u0010\u0098\u008e\u0099\u00a8\u0006\"\u000542857\u0012\u0011\bd\u0012\u0006\u0010\u00c8\u0094\u0099\u00a8\u0006\"\u000538562\u0012\u0011\be\u0012\u0006\u0010\u0097\u009c\u0099\u00a8\u0006\"\u000538563\u0012\u0011\bf\u0012\u0006\u0010\u008e\u00a8\u0099\u00a8\u0006\"\u000542854\u0012\u0011\bg\u0012\u0006\u0010\u009d\u00c2\u0099\u00a8\u0006\"\u000538565\u0012\u0011\bh\u0012\u0006\u0010\u00bc\u00d3\u0099\u00a8\u0006\"\u000540932\u0012\u0011\bi\u0012\u0006\u0010\u00f7\u00f3\u0099\u00a8\u0006\"\u000538567\u0012\u0011\bj\u0012\u0006\u0010\u008f\u008d\u009a\u00a8\u0006\"\u000538568\u0012\u0011\bk\u0012\u0006\u0010\u00f3\u009e\u009a\u00a8\u0006\"\u000538569\u0012\u0011\bl\u0012\u0006\u0010\u00b0\u00bd\u009a\u00a8\u0006\"\u000538570\u0012\u0011\bm\u0012\u0006\u0010\u0097\u00f0\u009a\u00a8\u0006\"\u000538571\u0012\u0011\bn\u0012\u0006\u0010\u00c8\u00af\u009b\u00a8\u0006\"\u000538572\u001a\b\u001a\u0006HDBZ49 \u00c3\u00e8\u0097\u00a8\u0006\"`\n/\n\u001025956-701ff27f-2\u0012\b16:00:00\u001a\b20230916 \u0000*\u00037340\u0000\u0012\u001d\r\u007f\u00ce\u0013\u00c2\u0015\u00a0\u0005\u0092\u00c2\u001d\u0000\u0000\u0000B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u001c\u00c71@(\u00c3\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HDBZ49" + }, + { + "type": "con_recorrido", + "entity": "\n$829fb8ed-0e4d-4407-baf6-4e633c5458da\u001a\u00ba\f\n/\n\u001025954-701ff27f-2\u0012\b15:40:00\u001a\b20230916 \u0000*\u00037340\u0000\u0012\u0011\b\u001f\u0012\u0006\u0010\u00c9\u00e8\u0097\u00a8\u0006\"\u000542295\u0012\u0011\b \u0012\u0006\u0010\u00c1\u00e9\u0097\u00a8\u0006\"\u000542296\u0012\u0011\b!\u0012\u0006\u0010\u00c4\u00ea\u0097\u00a8\u0006\"\u000542297\u0012\u0011\b\"\u0012\u0006\u0010\u00a6\u00eb\u0097\u00a8\u0006\"\u000542298\u0012\u0011\b#\u0012\u0006\u0010\u00e6\u00eb\u0097\u00a8\u0006\"\u000542299\u0012\u0011\b$\u0012\u0006\u0010\u0090\u00ec\u0097\u00a8\u0006\"\u000549295\u0012\u0011\b%\u0012\u0006\u0010\u0088\u00ed\u0097\u00a8\u0006\"\u000549296\u0012\u0011\b&\u0012\u0006\u0010\u00de\u00ed\u0097\u00a8\u0006\"\u000549297\u0012\u0011\b'\u0012\u0006\u0010\u0080\u00ee\u0097\u00a8\u0006\"\u000549298\u0012\u0011\b(\u0012\u0006\u0010\u00c4\u00ee\u0097\u00a8\u0006\"\u000549299\u0012\u0011\b)\u0012\u0006\u0010\u00ed\u00ee\u0097\u00a8\u0006\"\u000549300\u0012\u0011\b*\u0012\u0006\u0010\u00be\u00ef\u0097\u00a8\u0006\"\u000549301\u0012\u0011\b+\u0012\u0006\u0010\u0080\u00f0\u0097\u00a8\u0006\"\u000549302\u0012\u0011\b,\u0012\u0006\u0010\u00ac\u00f0\u0097\u00a8\u0006\"\u000549303\u0012\u0011\b-\u0012\u0006\u0010\u00de\u00f0\u0097\u00a8\u0006\"\u000549304\u0012\u0011\b.\u0012\u0006\u0010\u00f9\u00f0\u0097\u00a8\u0006\"\u000549305\u0012\u0011\b/\u0012\u0006\u0010\u00b0\u00f1\u0097\u00a8\u0006\"\u000549306\u0012\u0011\b0\u0012\u0006\u0010\u00d7\u00f1\u0097\u00a8\u0006\"\u000549307\u0012\u0011\b1\u0012\u0006\u0010\u00ee\u00f1\u0097\u00a8\u0006\"\u000549308\u0012\u0011\b2\u0012\u0006\u0010\u0086\u00f2\u0097\u00a8\u0006\"\u000549309\u0012\u0011\b3\u0012\u0006\u0010\u00a1\u00f2\u0097\u00a8\u0006\"\u000542315\u0012\u0011\b4\u0012\u0006\u0010\u00b8\u00f2\u0097\u00a8\u0006\"\u000542316\u0012\u0011\b5\u0012\u0006\u0010\u00ea\u00f2\u0097\u00a8\u0006\"\u000542317\u0012\u0011\b6\u0012\u0006\u0010\u009d\u00f3\u0097\u00a8\u0006\"\u000542318\u0012\u0013\b7\u0012\u0006\u0010\u00e4\u00f3\u0097\u00a8\u0006\"\u00078606396\u0012\u0011\b8\u0012\u0006\u0010\u00ac\u00f4\u0097\u00a8\u0006\"\u000538514\u0012\u0011\b9\u0012\u0006\u0010\u00d2\u00f4\u0097\u00a8\u0006\"\u000538516\u0012\u0011\b:\u0012\u0006\u0010\u008e\u00f5\u0097\u00a8\u0006\"\u000538518\u0012\u0011\b;\u0012\u0006\u0010\u00f3\u00f5\u0097\u00a8\u0006\"\u000538520\u0012\u0011\b<\u0012\u0006\u0010\u009e\u00f6\u0097\u00a8\u0006\"\u000538521\u0012\u0011\b=\u0012\u0006\u0010\u00d1\u00f6\u0097\u00a8\u0006\"\u000538522\u0012\u0011\b>\u0012\u0006\u0010\u0085\u00f7\u0097\u00a8\u0006\"\u000538523\u0012\u0011\b?\u0012\u0006\u0010\u00bc\u00f7\u0097\u00a8\u0006\"\u000538524\u0012\u0011\b@\u0012\u0006\u0010\u00ef\u00f7\u0097\u00a8\u0006\"\u000538525\u0012\u0011\bA\u0012\u0006\u0010\u00a7\u00f8\u0097\u00a8\u0006\"\u000538526\u0012\u0011\bB\u0012\u0006\u0010\u00db\u00f8\u0097\u00a8\u0006\"\u000538527\u0012\u0011\bC\u0012\u0006\u0010\u00ba\u00f9\u0097\u00a8\u0006\"\u000538528\u0012\u0011\bD\u0012\u0006\u0010\u00bb\u00fa\u0097\u00a8\u0006\"\u000538529\u0012\u0011\bE\u0012\u0006\u0010\u00af\u00fc\u0097\u00a8\u0006\"\u000538530\u0012\u0014\bF\u0012\u0006\u0010\u00bf\u00fc\u0097\u00a8\u0006\"\b16005209\u0012\u0011\bG\u0012\u0006\u0010\u00e4\u00fe\u0097\u00a8\u0006\"\u000538531\u0012\u0013\bH\u0012\u0006\u0010\u00a0\u00ff\u0097\u00a8\u0006\"\u00078921285\u0012\u0011\bI\u0012\u0006\u0010\u00c0\u0080\u0098\u00a8\u0006\"\u000538532\u0012\u0011\bJ\u0012\u0006\u0010\u0088\u0081\u0098\u00a8\u0006\"\u000538533\u0012\u0011\bK\u0012\u0006\u0010\u00d4\u0081\u0098\u00a8\u0006\"\u000538534\u0012\u0011\bL\u0012\u0006\u0010\u0099\u0082\u0098\u00a8\u0006\"\u000538535\u0012\u0011\bM\u0012\u0006\u0010\u00f7\u0082\u0098\u00a8\u0006\"\u000538536\u0012\u0013\bN\u0012\u0006\u0010\u00ad\u0083\u0098\u00a8\u0006\"\u00074838437\u0012\u0011\bO\u0012\u0006\u0010\u00fc\u0083\u0098\u00a8\u0006\"\u000545085\u0012\u0011\bP\u0012\u0006\u0010\u00f6\u0084\u0098\u00a8\u0006\"\u000545086\u0012\u0011\bQ\u0012\u0006\u0010\u00cc\u0085\u0098\u00a8\u0006\"\u000538539\u0012\u0011\bR\u0012\u0006\u0010\u00b6\u0086\u0098\u00a8\u0006\"\u000538540\u0012\u0011\bS\u0012\u0006\u0010\u00ba\u0087\u0098\u00a8\u0006\"\u000538544\u0012\u0011\bT\u0012\u0006\u0010\u00b2\u0088\u0098\u00a8\u0006\"\u000538545\u0012\u0011\bU\u0012\u0006\u0010\u00d3\u0089\u0098\u00a8\u0006\"\u000538546\u0012\u0011\bV\u0012\u0006\u0010\u00ba\u008b\u0098\u00a8\u0006\"\u000538548\u0012\u0011\bW\u0012\u0006\u0010\u00c4\u008c\u0098\u00a8\u0006\"\u000538549\u0012\u0011\bX\u0012\u0006\u0010\u00b8\u008d\u0098\u00a8\u0006\"\u000538550\u0012\u0011\bY\u0012\u0006\u0010\u0087\u008f\u0098\u00a8\u0006\"\u000538551\u0012\u0011\bZ\u0012\u0006\u0010\u00c8\u0090\u0098\u00a8\u0006\"\u000538552\u0012\u0011\b[\u0012\u0006\u0010\u0087\u0092\u0098\u00a8\u0006\"\u000549359\u0012\u0011\b\\\u0012\u0006\u0010\u0089\u0093\u0098\u00a8\u0006\"\u000549360\u0012\u0011\b]\u0012\u0006\u0010\u00ac\u0095\u0098\u00a8\u0006\"\u000549361\u0012\u0011\b^\u0012\u0006\u0010\u00f7\u0095\u0098\u00a8\u0006\"\u000549362\u0012\u0011\b_\u0012\u0006\u0010\u00fb\u0096\u0098\u00a8\u0006\"\u000549363\u0012\u0011\b`\u0012\u0006\u0010\u0089\u0098\u0098\u00a8\u0006\"\u000549364\u0012\u0011\ba\u0012\u0006\u0010\u00f6\u0098\u0098\u00a8\u0006\"\u000549365\u0012\u0011\bb\u0012\u0006\u0010\u00cb\u009a\u0098\u00a8\u0006\"\u000538560\u0012\u0011\bc\u0012\u0006\u0010\u00c7\u009b\u0098\u00a8\u0006\"\u000542857\u0012\u0011\bd\u0012\u0006\u0010\u00ae\u009c\u0098\u00a8\u0006\"\u000538562\u0012\u0011\be\u0012\u0006\u0010\u00a3\u009d\u0098\u00a8\u0006\"\u000538563\u0012\u0011\bf\u0012\u0006\u0010\u00ce\u009e\u0098\u00a8\u0006\"\u000542854\u0012\u0011\bg\u0012\u0006\u0010\u0096\u00a1\u0098\u00a8\u0006\"\u000538565\u0012\u0011\bh\u0012\u0006\u0010\u00d3\u00a2\u0098\u00a8\u0006\"\u000540932\u0012\u0011\bi\u0012\u0006\u0010\u0086\u00a5\u0098\u00a8\u0006\"\u000538567\u0012\u0011\bj\u0012\u0006\u0010\u00d2\u00a6\u0098\u00a8\u0006\"\u000538568\u0012\u0011\bk\u0012\u0006\u0010\u00d2\u00a7\u0098\u00a8\u0006\"\u000538569\u0012\u0011\bl\u0012\u0006\u0010\u0096\u00a9\u0098\u00a8\u0006\"\u000538570\u0012\u0011\bm\u0012\u0006\u0010\u00a7\u00ab\u0098\u00a8\u0006\"\u000538571\u0012\u0011\bn\u0012\u0006\u0010\u00b5\u00ad\u0098\u00a8\u0006\"\u000538572\u001a\b\u001a\u0006HJXW52 \u00ac\u00e8\u0097\u00a8\u0006\"`\n/\n\u001025954-701ff27f-2\u0012\b15:40:00\u001a\b20230916 \u0000*\u00037340\u0000\u0012\u001d\rk\u008b\u0013\u00c2\u0015 \u0013\u0092\u00c2\u001d\u0000\u0080\u00abC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008e\u00e3\u00a8A(\u00ac\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HJXW52" + }, + { + "type": "sin_recorrido", + "entity": "\n$94ca2494-3e84-48d4-9bf9-1f218ffc6b18\"`\n/\n\u001025948-701ff27f-2\u0012\b14:40:00\u001a\b20230916 \u0000*\u00037340\u0000\u0012\u001d\r\u0083\u00e5\u0012\u00c2\u00151C\u0092\u00c2\u001d\u0000\u0000\u0094B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c1\u00e6\u0097\u00a8\u0006B\b\u001a\u0006HJXW59" + }, + { + "type": "con_recorrido", + "entity": "\n$8907e924-141d-47fa-a840-d4fd719470b5\u001a\u00af\u0004\n/\n\u001025951-701ff27f-2\u0012\b15:10:00\u001a\b20230916 \u0000*\u00037340\u0000\u0012\u0011\bU\u0012\u0006\u0010\u0090\u00e9\u0097\u00a8\u0006\"\u000538546\u0012\u0011\bV\u0012\u0006\u0010\u008f\u00ea\u0097\u00a8\u0006\"\u000538548\u0012\u0011\bW\u0012\u0006\u0010\u00d6\u00ea\u0097\u00a8\u0006\"\u000538549\u0012\u0011\bX\u0012\u0006\u0010\u008f\u00eb\u0097\u00a8\u0006\"\u000538550\u0012\u0011\bY\u0012\u0006\u0010\u00f0\u00eb\u0097\u00a8\u0006\"\u000538551\u0012\u0011\bZ\u0012\u0006\u0010\u00c4\u00ec\u0097\u00a8\u0006\"\u000538552\u0012\u0011\b[\u0012\u0006\u0010\u0093\u00ed\u0097\u00a8\u0006\"\u000549359\u0012\u0011\b\\\u0012\u0006\u0010\u00c7\u00ed\u0097\u00a8\u0006\"\u000549360\u0012\u0011\b]\u0012\u0006\u0010\u00b3\u00ee\u0097\u00a8\u0006\"\u000549361\u0012\u0011\b^\u0012\u0006\u0010\u00ce\u00ee\u0097\u00a8\u0006\"\u000549362\u0012\u0011\b_\u0012\u0006\u0010\u00fb\u00ee\u0097\u00a8\u0006\"\u000549363\u0012\u0011\b`\u0012\u0006\u0010\u00aa\u00ef\u0097\u00a8\u0006\"\u000549364\u0012\u0011\ba\u0012\u0006\u0010\u00ce\u00ef\u0097\u00a8\u0006\"\u000549365\u0012\u0011\bb\u0012\u0006\u0010\u0090\u00f0\u0097\u00a8\u0006\"\u000538560\u0012\u0011\bc\u0012\u0006\u0010\u00b5\u00f0\u0097\u00a8\u0006\"\u000542857\u0012\u0011\bd\u0012\u0006\u0010\u00d3\u00f0\u0097\u00a8\u0006\"\u000538562\u0012\u0011\be\u0012\u0006\u0010\u00f4\u00f0\u0097\u00a8\u0006\"\u000538563\u0012\u0011\bf\u0012\u0006\u0010\u00a3\u00f1\u0097\u00a8\u0006\"\u000542854\u0012\u0011\bg\u0012\u0006\u0010\u00f9\u00f1\u0097\u00a8\u0006\"\u000538565\u0012\u0011\bh\u0012\u0006\u0010\u00a7\u00f2\u0097\u00a8\u0006\"\u000540932\u0012\u0011\bi\u0012\u0006\u0010\u00ef\u00f2\u0097\u00a8\u0006\"\u000538567\u0012\u0011\bj\u0012\u0006\u0010\u009d\u00f3\u0097\u00a8\u0006\"\u000538568\u0012\u0011\bk\u0012\u0006\u0010\u00b9\u00f3\u0097\u00a8\u0006\"\u000538569\u0012\u0011\bl\u0012\u0006\u0010\u00e2\u00f3\u0097\u00a8\u0006\"\u000538570\u0012\u0011\bm\u0012\u0006\u0010\u0099\u00f4\u0097\u00a8\u0006\"\u000538571\u0012\u0011\bn\u0012\u0006\u0010\u00cd\u00f4\u0097\u00a8\u0006\"\u000538572\u001a\b\u001a\u0006HWCW48 \u00cc\u00e8\u0097\u00a8\u0006\"`\n/\n\u001025951-701ff27f-2\u0012\b15:10:00\u001a\b20230916 \u0000*\u00037340\u0000\u0012\u001d\r\u0007\u00fc\u0012\u00c2\u0015\u00d00\u0092\u00c2\u001d\u0000\u0080\u00a1C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008e\u00e3\u0080A(\u00cc\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HWCW48" + }, + { + "type": "con_recorrido", + "entity": "\n$d91b04ea-a0fd-41d7-9225-057aff2d90e1\u001a\u0098\u0007\n/\n\u001026064-701ff27f-2\u0012\b15:01:00\u001a\b20230916 \u0000*\u00037350\u0001\u0012\u0011\b1\u0012\u0006\u0010\u00f5\u00e8\u0097\u00a8\u0006\"\u000539621\u0012\u0011\b2\u0012\u0006\u0010\u00a8\u00e9\u0097\u00a8\u0006\"\u000538281\u0012\u0011\b3\u0012\u0006\u0010\u00e2\u00e9\u0097\u00a8\u0006\"\u000537506\u0012\u0011\b4\u0012\u0006\u0010\u008c\u00ea\u0097\u00a8\u0006\"\u000545068\u0012\u0011\b5\u0012\u0006\u0010\u008d\u00eb\u0097\u00a8\u0006\"\u000537480\u0012\u0011\b6\u0012\u0006\u0010\u00cc\u00eb\u0097\u00a8\u0006\"\u000537477\u0012\u0011\b7\u0012\u0006\u0010\u0090\u00ec\u0097\u00a8\u0006\"\u000540848\u0012\u0011\b8\u0012\u0006\u0010\u00e4\u00ec\u0097\u00a8\u0006\"\u00052-Apr\u0012\u0011\b9\u0012\u0006\u0010\u00a0\u00ed\u0097\u00a8\u0006\"\u000539728\u0012\u0011\b:\u0012\u0006\u0010\u00fd\u00ed\u0097\u00a8\u0006\"\u000539729\u0012\u0011\b;\u0012\u0006\u0010\u0095\u00ee\u0097\u00a8\u0006\"\u000539730\u0012\u0011\b<\u0012\u0006\u0010\u00f9\u00ee\u0097\u00a8\u0006\"\u000542200\u0012\u0011\b=\u0012\u0006\u0010\u00a5\u00ef\u0097\u00a8\u0006\"\u000542203\u0012\u0011\b>\u0012\u0006\u0010\u00da\u00ef\u0097\u00a8\u0006\"\u000542204\u0012\u0011\b?\u0012\u0006\u0010\u0083\u00f0\u0097\u00a8\u0006\"\u000542205\u0012\u0011\b@\u0012\u0006\u0010\u00be\u00f0\u0097\u00a8\u0006\"\u000542201\u0012\u0011\bA\u0012\u0006\u0010\u00b3\u00f2\u0097\u00a8\u0006\"\u000542206\u0012\u0011\bB\u0012\u0006\u0010\u00e9\u00f2\u0097\u00a8\u0006\"\u000542207\u0012\u0011\bC\u0012\u0006\u0010\u00a3\u00f3\u0097\u00a8\u0006\"\u000542208\u0012\u0011\bD\u0012\u0006\u0010\u009f\u00f4\u0097\u00a8\u0006\"\u000542564\u0012\u0011\bE\u0012\u0006\u0010\u0084\u00f5\u0097\u00a8\u0006\"\u000542214\u0012\u0011\bF\u0012\u0006\u0010\u00f5\u00f5\u0097\u00a8\u0006\"\u000542209\u0012\u0011\bG\u0012\u0006\u0010\u00ee\u00f6\u0097\u00a8\u0006\"\u000542210\u0012\u0011\bH\u0012\u0006\u0010\u00a8\u00f8\u0097\u00a8\u0006\"\u000540951\u0012\u0011\bI\u0012\u0006\u0010\u00ea\u00f8\u0097\u00a8\u0006\"\u000540952\u0012\u0011\bJ\u0012\u0006\u0010\u00aa\u00f9\u0097\u00a8\u0006\"\u000540953\u0012\u0011\bK\u0012\u0006\u0010\u00db\u00f9\u0097\u00a8\u0006\"\u000540954\u0012\u0011\bL\u0012\u0006\u0010\u00aa\u00fa\u0097\u00a8\u0006\"\u000540955\u0012\u0011\bM\u0012\u0006\u0010\u00d5\u00fa\u0097\u00a8\u0006\"\u000540956\u0012\u0011\bN\u0012\u0006\u0010\u0094\u00fb\u0097\u00a8\u0006\"\u000540957\u0012\u0011\bO\u0012\u0006\u0010\u00d7\u00fb\u0097\u00a8\u0006\"\u000540958\u0012\u0011\bP\u0012\u0006\u0010\u00f3\u00fb\u0097\u00a8\u0006\"\u000540959\u0012\u0011\bQ\u0012\u0006\u0010\u0097\u00fd\u0097\u00a8\u0006\"\u000540960\u0012\u0011\bR\u0012\u0006\u0010\u0094\u00fe\u0097\u00a8\u0006\"\u000530962\u0012\u0011\bS\u0012\u0006\u0010\u00db\u00fe\u0097\u00a8\u0006\"\u000540961\u0012\u0011\bT\u0012\u0006\u0010\u00a1\u00ff\u0097\u00a8\u0006\"\u000540608\u0012\u0011\bU\u0012\u0006\u0010\u00b0\u0080\u0098\u00a8\u0006\"\u000540605\u0012\u0011\bV\u0012\u0006\u0010\u00d4\u0082\u0098\u00a8\u0006\"\u000540597\u0012\u0011\bW\u0012\u0006\u0010\u00b7\u0083\u0098\u00a8\u0006\"\u000540593\u0012\u0011\bX\u0012\u0006\u0010\u00a0\u0084\u0098\u00a8\u0006\"\u000540962\u0012\u0011\bY\u0012\u0006\u0010\u00af\u0084\u0098\u00a8\u0006\"\u000540588\u0012\u0011\bZ\u0012\u0006\u0010\u008b\u0085\u0098\u00a8\u0006\"\u000540594\u0012\u0011\b\\\u0012\u0006\u0010\u00b6\u0085\u0098\u00a8\u0006\"\u000540585\u0012\u0011\b]\u0012\u0006\u0010\u00c7\u0085\u0098\u00a8\u0006\"\u000540584\u0012\u0011\b^\u0012\u0006\u0010\u0083\u0087\u0098\u00a8\u0006\"\u000540587\u001a\b\u001a\u0006DVYS80 \u00cc\u00e8\u0097\u00a8\u0006\"`\n/\n\u001026064-701ff27f-2\u0012\b15:01:00\u001a\b20230916 \u0000*\u00037350\u0001\u0012\u001d\r\u00bcG\u0013\u00c2\u0015\u00ae\u0016\u0092\u00c2\u001d\u0000\u0000\u001aC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000 A(\u00cc\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DVYS80" + }, + { + "type": "con_recorrido", + "entity": "\n$85705a2e-2455-4970-9523-d9306ed5efa0\u001a\u00e3\u0003\n/\n\u001026062-701ff27f-2\u0012\b14:41:00\u001a\b20230916 \u0000*\u00037350\u0001\u0012\u0011\bH\u0012\u0006\u0010\u0084\u00ea\u0097\u00a8\u0006\"\u000540951\u0012\u0011\bI\u0012\u0006\u0010\u00c4\u00ea\u0097\u00a8\u0006\"\u000540952\u0012\u0011\bJ\u0012\u0006\u0010\u0080\u00eb\u0097\u00a8\u0006\"\u000540953\u0012\u0011\bK\u0012\u0006\u0010\u00ad\u00eb\u0097\u00a8\u0006\"\u000540954\u0012\u0011\bL\u0012\u0006\u0010\u00f6\u00eb\u0097\u00a8\u0006\"\u000540955\u0012\u0011\bM\u0012\u0006\u0010\u009c\u00ec\u0097\u00a8\u0006\"\u000540956\u0012\u0011\bN\u0012\u0006\u0010\u00d3\u00ec\u0097\u00a8\u0006\"\u000540957\u0012\u0011\bO\u0012\u0006\u0010\u008d\u00ed\u0097\u00a8\u0006\"\u000540958\u0012\u0011\bP\u0012\u0006\u0010\u00a5\u00ed\u0097\u00a8\u0006\"\u000540959\u0012\u0011\bQ\u0012\u0006\u0010\u00ab\u00ee\u0097\u00a8\u0006\"\u000540960\u0012\u0011\bR\u0012\u0006\u0010\u008f\u00ef\u0097\u00a8\u0006\"\u000530962\u0012\u0011\bS\u0012\u0006\u0010\u00c6\u00ef\u0097\u00a8\u0006\"\u000540961\u0012\u0011\bT\u0012\u0006\u0010\u00fb\u00ef\u0097\u00a8\u0006\"\u000540608\u0012\u0011\bU\u0012\u0006\u0010\u00e4\u00f0\u0097\u00a8\u0006\"\u000540605\u0012\u0011\bV\u0012\u0006\u0010\u00b0\u00f2\u0097\u00a8\u0006\"\u000540597\u0012\u0011\bW\u0012\u0006\u0010\u00f2\u00f2\u0097\u00a8\u0006\"\u000540593\u0012\u0011\bX\u0012\u0006\u0010\u00b6\u00f3\u0097\u00a8\u0006\"\u000540962\u0012\u0011\bY\u0012\u0006\u0010\u00c0\u00f3\u0097\u00a8\u0006\"\u000540588\u0012\u0011\bZ\u0012\u0006\u0010\u00fa\u00f3\u0097\u00a8\u0006\"\u000540594\u0012\u0011\b\\\u0012\u0006\u0010\u0095\u00f4\u0097\u00a8\u0006\"\u000540585\u0012\u0011\b]\u0012\u0006\u0010\u00a0\u00f4\u0097\u00a8\u0006\"\u000540584\u0012\u0011\b^\u0012\u0006\u0010\u0093\u00f5\u0097\u00a8\u0006\"\u000540587\u001a\b\u001a\u0006DXSH17 \u00cf\u00e8\u0097\u00a8\u0006\"`\n/\n\u001026062-701ff27f-2\u0012\b14:41:00\u001a\b20230916 \u0000*\u00037350\u0001\u0012\u001d\r\u00e6\u008f\u0013\u00c2\u0015g\u0012\u0092\u00c2\u001d\u0000\u00000C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00ab\u00aa\u00a6A(\u00cf\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DXSH17" + }, + { + "type": "con_recorrido", + "entity": "\n$e051bdb8-9b85-4162-b92b-c8518ef62bb8\u001a\u0092\t\n/\n\u001026065-701ff27f-2\u0012\b15:11:00\u001a\b20230916 \u0000*\u00037350\u0001\u0012\u0011\b$\u0012\u0006\u0010\u00d2\u00e8\u0097\u00a8\u0006\"\u000544898\u0012\u0011\b%\u0012\u0006\u0010\u0087\u00ea\u0097\u00a8\u0006\"\u000540993\u0012\u0014\b&\u0012\u0006\u0010\u0084\u00ec\u0097\u00a8\u0006\"\b16005188\u0012\u0011\b'\u0012\u0006\u0010\u00f6\u00ed\u0097\u00a8\u0006\"\u000540995\u0012\u0011\b(\u0012\u0006\u0010\u00c5\u00ee\u0097\u00a8\u0006\"\u000540996\u0012\u0011\b)\u0012\u0006\u0010\u0091\u00ef\u0097\u00a8\u0006\"\u000540997\u0012\u0011\b*\u0012\u0006\u0010\u00ca\u00ef\u0097\u00a8\u0006\"\u000539614\u0012\u0011\b+\u0012\u0006\u0010\u00f8\u00ef\u0097\u00a8\u0006\"\u000539615\u0012\u0011\b,\u0012\u0006\u0010\u00af\u00f0\u0097\u00a8\u0006\"\u000539616\u0012\u0011\b-\u0012\u0006\u0010\u00dd\u00f0\u0097\u00a8\u0006\"\u000539617\u0012\u0011\b.\u0012\u0006\u0010\u0095\u00f1\u0097\u00a8\u0006\"\u000539618\u0012\u0011\b/\u0012\u0006\u0010\u00c0\u00f1\u0097\u00a8\u0006\"\u000539619\u0012\u0011\b0\u0012\u0006\u0010\u00e8\u00f1\u0097\u00a8\u0006\"\u000539620\u0012\u0011\b1\u0012\u0006\u0010\u00aa\u00f2\u0097\u00a8\u0006\"\u000539621\u0012\u0011\b2\u0012\u0006\u0010\u00d9\u00f2\u0097\u00a8\u0006\"\u000538281\u0012\u0011\b3\u0012\u0006\u0010\u0090\u00f3\u0097\u00a8\u0006\"\u000537506\u0012\u0011\b4\u0012\u0006\u0010\u00b7\u00f3\u0097\u00a8\u0006\"\u000545068\u0012\u0011\b5\u0012\u0006\u0010\u00b3\u00f4\u0097\u00a8\u0006\"\u000537480\u0012\u0011\b6\u0012\u0006\u0010\u00f1\u00f4\u0097\u00a8\u0006\"\u000537477\u0012\u0011\b7\u0012\u0006\u0010\u00b5\u00f5\u0097\u00a8\u0006\"\u000540848\u0012\u0011\b8\u0012\u0006\u0010\u008a\u00f6\u0097\u00a8\u0006\"\u00052-Apr\u0012\u0011\b9\u0012\u0006\u0010\u00c8\u00f6\u0097\u00a8\u0006\"\u000539728\u0012\u0011\b:\u0012\u0006\u0010\u00aa\u00f7\u0097\u00a8\u0006\"\u000539729\u0012\u0011\b;\u0012\u0006\u0010\u00c3\u00f7\u0097\u00a8\u0006\"\u000539730\u0012\u0011\b<\u0012\u0006\u0010\u00b0\u00f8\u0097\u00a8\u0006\"\u000542200\u0012\u0011\b=\u0012\u0006\u0010\u00e1\u00f8\u0097\u00a8\u0006\"\u000542203\u0012\u0011\b>\u0012\u0006\u0010\u009c\u00f9\u0097\u00a8\u0006\"\u000542204\u0012\u0011\b?\u0012\u0006\u0010\u00ca\u00f9\u0097\u00a8\u0006\"\u000542205\u0012\u0011\b@\u0012\u0006\u0010\u008d\u00fa\u0097\u00a8\u0006\"\u000542201\u0012\u0011\bA\u0012\u0006\u0010\u00ae\u00fc\u0097\u00a8\u0006\"\u000542206\u0012\u0011\bB\u0012\u0006\u0010\u00f0\u00fc\u0097\u00a8\u0006\"\u000542207\u0012\u0011\bC\u0012\u0006\u0010\u00b8\u00fd\u0097\u00a8\u0006\"\u000542208\u0012\u0011\bD\u0012\u0006\u0010\u00d5\u00fe\u0097\u00a8\u0006\"\u000542564\u0012\u0011\bE\u0012\u0006\u0010\u00d7\u00ff\u0097\u00a8\u0006\"\u000542214\u0012\u0011\bF\u0012\u0006\u0010\u00ed\u0080\u0098\u00a8\u0006\"\u000542209\u0012\u0011\bG\u0012\u0006\u0010\u0091\u0082\u0098\u00a8\u0006\"\u000542210\u0012\u0011\bH\u0012\u0006\u0010\u0095\u0084\u0098\u00a8\u0006\"\u000540951\u0012\u0011\bI\u0012\u0006\u0010\u00f5\u0084\u0098\u00a8\u0006\"\u000540952\u0012\u0011\bJ\u0012\u0006\u0010\u00d2\u0085\u0098\u00a8\u0006\"\u000540953\u0012\u0011\bK\u0012\u0006\u0010\u009a\u0086\u0098\u00a8\u0006\"\u000540954\u0012\u0011\bL\u0012\u0006\u0010\u0091\u0087\u0098\u00a8\u0006\"\u000540955\u0012\u0011\bM\u0012\u0006\u0010\u00d2\u0087\u0098\u00a8\u0006\"\u000540956\u0012\u0011\bN\u0012\u0006\u0010\u00b2\u0088\u0098\u00a8\u0006\"\u000540957\u0012\u0011\bO\u0012\u0006\u0010\u009a\u0089\u0098\u00a8\u0006\"\u000540958\u0012\u0011\bP\u0012\u0006\u0010\u00c6\u0089\u0098\u00a8\u0006\"\u000540959\u0012\u0011\bQ\u0012\u0006\u0010\u00ca\u008b\u0098\u00a8\u0006\"\u000540960\u0012\u0011\bR\u0012\u0006\u0010\u0098\u008d\u0098\u00a8\u0006\"\u000530962\u0012\u0011\bS\u0012\u0006\u0010\u008f\u008e\u0098\u00a8\u0006\"\u000540961\u0012\u0011\bT\u0012\u0006\u0010\u0086\u008f\u0098\u00a8\u0006\"\u000540608\u0012\u0011\bU\u0012\u0006\u0010\u00fe\u0090\u0098\u00a8\u0006\"\u000540605\u0012\u0011\bV\u0012\u0006\u0010\u008e\u0095\u0098\u00a8\u0006\"\u000540597\u0012\u0011\bW\u0012\u0006\u0010\u00c6\u0096\u0098\u00a8\u0006\"\u000540593\u0012\u0011\bX\u0012\u0006\u0010\u008f\u0098\u0098\u00a8\u0006\"\u000540962\u0012\u0011\bY\u0012\u0006\u0010\u00ac\u0098\u0098\u00a8\u0006\"\u000540588\u0012\u0011\bZ\u0012\u0006\u0010\u00e0\u0099\u0098\u00a8\u0006\"\u000540594\u0012\u0011\b\\\u0012\u0006\u0010\u00b6\u009a\u0098\u00a8\u0006\"\u000540585\u0012\u0011\b]\u0012\u0006\u0010\u00d8\u009a\u0098\u00a8\u0006\"\u000540584\u0012\u0011\b^\u0012\u0006\u0010\u00d7\u009d\u0098\u00a8\u0006\"\u000540587\u001a\b\u001a\u0006FFRL22 \u00cb\u00e8\u0097\u00a8\u0006\"`\n/\n\u001026065-701ff27f-2\u0012\b15:11:00\u001a\b20230916 \u0000*\u00037350\u0001\u0012\u001d\r\u00e3\u0018\u0013\u00c2\u0015f)\u0092\u00c2\u001d\u0000\u0000\u0019C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48^A(\u00cb\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FFRL22" + }, + { + "type": "con_recorrido", + "entity": "\n$4bc3cfe9-e79f-431d-95ae-1a510d006a39\u001a\u0080\u0006\n/\n\u001026063-701ff27f-2\u0012\b14:51:00\u001a\b20230916 \u0000*\u00037350\u0001\u0012\u0011\b9\u0012\u0006\u0010\u00e9\u00e8\u0097\u00a8\u0006\"\u000539728\u0012\u0011\b:\u0012\u0006\u0010\u00cc\u00e9\u0097\u00a8\u0006\"\u000539729\u0012\u0011\b;\u0012\u0006\u0010\u00e6\u00e9\u0097\u00a8\u0006\"\u000539730\u0012\u0011\b<\u0012\u0006\u0010\u00d0\u00ea\u0097\u00a8\u0006\"\u000542200\u0012\u0011\b=\u0012\u0006\u0010\u00fe\u00ea\u0097\u00a8\u0006\"\u000542203\u0012\u0011\b>\u0012\u0006\u0010\u00b5\u00eb\u0097\u00a8\u0006\"\u000542204\u0012\u0011\b?\u0012\u0006\u0010\u00df\u00eb\u0097\u00a8\u0006\"\u000542205\u0012\u0011\b@\u0012\u0006\u0010\u009c\u00ec\u0097\u00a8\u0006\"\u000542201\u0012\u0011\bA\u0012\u0006\u0010\u0095\u00ee\u0097\u00a8\u0006\"\u000542206\u0012\u0011\bB\u0012\u0006\u0010\u00cb\u00ee\u0097\u00a8\u0006\"\u000542207\u0012\u0011\bC\u0012\u0006\u0010\u0085\u00ef\u0097\u00a8\u0006\"\u000542208\u0012\u0011\bD\u0012\u0006\u0010\u00ff\u00ef\u0097\u00a8\u0006\"\u000542564\u0012\u0011\bE\u0012\u0006\u0010\u00e1\u00f0\u0097\u00a8\u0006\"\u000542214\u0012\u0011\bF\u0012\u0006\u0010\u00cd\u00f1\u0097\u00a8\u0006\"\u000542209\u0012\u0011\bG\u0012\u0006\u0010\u00c0\u00f2\u0097\u00a8\u0006\"\u000542210\u0012\u0011\bH\u0012\u0006\u0010\u00ef\u00f3\u0097\u00a8\u0006\"\u000540951\u0012\u0011\bI\u0012\u0006\u0010\u00ac\u00f4\u0097\u00a8\u0006\"\u000540952\u0012\u0011\bJ\u0012\u0006\u0010\u00e7\u00f4\u0097\u00a8\u0006\"\u000540953\u0012\u0011\bK\u0012\u0006\u0010\u0094\u00f5\u0097\u00a8\u0006\"\u000540954\u0012\u0011\bL\u0012\u0006\u0010\u00dd\u00f5\u0097\u00a8\u0006\"\u000540955\u0012\u0011\bM\u0012\u0006\u0010\u0083\u00f6\u0097\u00a8\u0006\"\u000540956\u0012\u0011\bN\u0012\u0006\u0010\u00bc\u00f6\u0097\u00a8\u0006\"\u000540957\u0012\u0011\bO\u0012\u0006\u0010\u00f8\u00f6\u0097\u00a8\u0006\"\u000540958\u0012\u0011\bP\u0012\u0006\u0010\u0092\u00f7\u0097\u00a8\u0006\"\u000540959\u0012\u0011\bQ\u0012\u0006\u0010\u00a3\u00f8\u0097\u00a8\u0006\"\u000540960\u0012\u0011\bR\u0012\u0006\u0010\u0091\u00f9\u0097\u00a8\u0006\"\u000530962\u0012\u0011\bS\u0012\u0006\u0010\u00cf\u00f9\u0097\u00a8\u0006\"\u000540961\u0012\u0011\bT\u0012\u0006\u0010\u008c\u00fa\u0097\u00a8\u0006\"\u000540608\u0012\u0011\bU\u0012\u0006\u0010\u0087\u00fb\u0097\u00a8\u0006\"\u000540605\u0012\u0011\bV\u0012\u0006\u0010\u00ff\u00fc\u0097\u00a8\u0006\"\u000540597\u0012\u0011\bW\u0012\u0006\u0010\u00d1\u00fd\u0097\u00a8\u0006\"\u000540593\u0012\u0011\bX\u0012\u0006\u0010\u00a9\u00fe\u0097\u00a8\u0006\"\u000540962\u0012\u0011\bY\u0012\u0006\u0010\u00b5\u00fe\u0097\u00a8\u0006\"\u000540588\u0012\u0011\bZ\u0012\u0006\u0010\u0081\u00ff\u0097\u00a8\u0006\"\u000540594\u0012\u0011\b\\\u0012\u0006\u0010\u00a5\u00ff\u0097\u00a8\u0006\"\u000540585\u0012\u0011\b]\u0012\u0006\u0010\u00b2\u00ff\u0097\u00a8\u0006\"\u000540584\u0012\u0011\b^\u0012\u0006\u0010\u00cc\u0080\u0098\u00a8\u0006\"\u000540587\u001a\b\u001a\u0006GGPS79 \u00ab\u00e8\u0097\u00a8\u0006\"`\n/\n\u001026063-701ff27f-2\u0012\b14:51:00\u001a\b20230916 \u0000*\u00037350\u0001\u0012\u001d\r0V\u0013\u00c2\u0015\\\u001d\u0092\u00c2\u001d\u0000\u0000\u0019C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u008e>(\u00ab\u00e8\u0097\u00a8\u0006B\b\u001a\u0006GGPS79" + }, + { + "type": "con_recorrido", + "entity": "\n$792651fb-fa8b-4514-b7c2-f73244f6030f\u001a\u00e1\r\n/\n\u001026067-701ff27f-2\u0012\b15:31:00\u001a\b20230916 \u0000*\u00037350\u0001\u0012\u0011\b\u0006\u0012\u0006\u0010\u00ce\u00e8\u0097\u00a8\u0006\"\u000540932\u0012\u0011\b\u0007\u0012\u0006\u0010\u0080\u00e9\u0097\u00a8\u0006\"\u000542853\u0012\u0011\b\b\u0012\u0006\u0010\u00e5\u00e9\u0097\u00a8\u0006\"\u000542854\u0012\u0011\b\t\u0012\u0006\u0010\u0097\u00ea\u0097\u00a8\u0006\"\u000542855\u0012\u0011\b\n\u0012\u0006\u0010\u00bd\u00ea\u0097\u00a8\u0006\"\u000541975\u0012\u0011\b\u000b\u0012\u0006\u0010\u00d4\u00ea\u0097\u00a8\u0006\"\u000542857\u0012\u0011\b\f\u0012\u0006\u0010\u00f2\u00ea\u0097\u00a8\u0006\"\u000538697\u0012\u0011\b\r\u0012\u0006\u0010\u00a4\u00eb\u0097\u00a8\u0006\"\u000538646\u0012\u0011\b\u000e\u0012\u0006\u0010\u00c2\u00eb\u0097\u00a8\u0006\"\u000538632\u0012\u0011\b\u000f\u0012\u0006\u0010\u0097\u00ec\u0097\u00a8\u0006\"\u000538767\u0012\u0011\b\u0010\u0012\u0006\u0010\u00d6\u00ec\u0097\u00a8\u0006\"\u000538768\u0012\u0011\b\u0011\u0012\u0006\u0010\u0086\u00ed\u0097\u00a8\u0006\"\u000538769\u0012\u0011\b\u0012\u0012\u0006\u0010\u00ae\u00ed\u0097\u00a8\u0006\"\u000549357\u0012\u0011\b\u0013\u0012\u0006\u0010\u00d5\u00ed\u0097\u00a8\u0006\"\u000538771\u0012\u0011\b\u0014\u0012\u0006\u0010\u0080\u00ee\u0097\u00a8\u0006\"\u000538668\u0012\u0011\b\u0015\u0012\u0006\u0010\u00df\u00ee\u0097\u00a8\u0006\"\u000538661\u0012\u0011\b\u0016\u0012\u0006\u0010\u00a9\u00ef\u0097\u00a8\u0006\"\u000538657\u0012\u0011\b\u0017\u0012\u0006\u0010\u00ec\u00ef\u0097\u00a8\u0006\"\u000538743\u0012\u0011\b\u0018\u0012\u0006\u0010\u00ac\u00f0\u0097\u00a8\u0006\"\u000538652\u0012\u0011\b\u0019\u0012\u0006\u0010\u00ea\u00f0\u0097\u00a8\u0006\"\u000538721\u0012\u0011\b\u001a\u0012\u0006\u0010\u00a1\u00f1\u0097\u00a8\u0006\"\u000538659\u0012\u0011\b\u001b\u0012\u0006\u0010\u00f2\u00f1\u0097\u00a8\u0006\"\u000538674\u0012\u0011\b\u001c\u0012\u0006\u0010\u00b1\u00f2\u0097\u00a8\u0006\"\u000538649\u0012\u0011\b\u001d\u0012\u0006\u0010\u0080\u00f3\u0097\u00a8\u0006\"\u000538718\u0012\u0011\b\u001e\u0012\u0006\u0010\u00b9\u00f3\u0097\u00a8\u0006\"\u000538735\u0012\u0011\b\u001f\u0012\u0006\u0010\u00ef\u00f3\u0097\u00a8\u0006\"\u000542270\u0012\u0011\b \u0012\u0006\u0010\u00a5\u00f4\u0097\u00a8\u0006\"\u000542271\u0012\u0013\b!\u0012\u0006\u0010\u00e5\u00f4\u0097\u00a8\u0006\"\u00074838438\u0012\u0011\b\"\u0012\u0006\u0010\u00fa\u00f5\u0097\u00a8\u0006\"\u000544896\u0012\u0011\b#\u0012\u0006\u0010\u00ac\u00f6\u0097\u00a8\u0006\"\u000544897\u0012\u0011\b$\u0012\u0006\u0010\u00f7\u00f6\u0097\u00a8\u0006\"\u000544898\u0012\u0011\b%\u0012\u0006\u0010\u00ac\u00f8\u0097\u00a8\u0006\"\u000540993\u0012\u0014\b&\u0012\u0006\u0010\u00bc\u00fa\u0097\u00a8\u0006\"\b16005188\u0012\u0011\b'\u0012\u0006\u0010\u00da\u00fc\u0097\u00a8\u0006\"\u000540995\u0012\u0011\b(\u0012\u0006\u0010\u00bc\u00fd\u0097\u00a8\u0006\"\u000540996\u0012\u0011\b)\u0012\u0006\u0010\u009d\u00fe\u0097\u00a8\u0006\"\u000540997\u0012\u0011\b*\u0012\u0006\u0010\u00e7\u00fe\u0097\u00a8\u0006\"\u000539614\u0012\u0011\b+\u0012\u0006\u0010\u00a5\u00ff\u0097\u00a8\u0006\"\u000539615\u0012\u0011\b,\u0012\u0006\u0010\u00ef\u00ff\u0097\u00a8\u0006\"\u000539616\u0012\u0011\b-\u0012\u0006\u0010\u00af\u0080\u0098\u00a8\u0006\"\u000539617\u0012\u0011\b.\u0012\u0006\u0010\u00fe\u0080\u0098\u00a8\u0006\"\u000539618\u0012\u0011\b/\u0012\u0006\u0010\u00bc\u0081\u0098\u00a8\u0006\"\u000539619\u0012\u0011\b0\u0012\u0006\u0010\u00f6\u0081\u0098\u00a8\u0006\"\u000539620\u0012\u0011\b1\u0012\u0006\u0010\u00d8\u0082\u0098\u00a8\u0006\"\u000539621\u0012\u0011\b2\u0012\u0006\u0010\u009f\u0083\u0098\u00a8\u0006\"\u000538281\u0012\u0011\b3\u0012\u0006\u0010\u00f3\u0083\u0098\u00a8\u0006\"\u000537506\u0012\u0011\b4\u0012\u0006\u0010\u00b1\u0084\u0098\u00a8\u0006\"\u000545068\u0012\u0011\b5\u0012\u0006\u0010\u00f8\u0085\u0098\u00a8\u0006\"\u000537480\u0012\u0011\b6\u0012\u0006\u0010\u00de\u0086\u0098\u00a8\u0006\"\u000537477\u0012\u0011\b7\u0012\u0006\u0010\u00d2\u0087\u0098\u00a8\u0006\"\u000540848\u0012\u0011\b8\u0012\u0006\u0010\u00e6\u0088\u0098\u00a8\u0006\"\u00052-Apr\u0012\u0011\b9\u0012\u0006\u0010\u00d5\u0089\u0098\u00a8\u0006\"\u000539728\u0012\u0011\b:\u0012\u0006\u0010\u0088\u008b\u0098\u00a8\u0006\"\u000539729\u0012\u0011\b;\u0012\u0006\u0010\u00b8\u008b\u0098\u00a8\u0006\"\u000539730\u0012\u0011\b<\u0012\u0006\u0010\u0089\u008d\u0098\u00a8\u0006\"\u000542200\u0012\u0011\b=\u0012\u0006\u0010\u00e8\u008d\u0098\u00a8\u0006\"\u000542203\u0012\u0011\b>\u0012\u0006\u0010\u00df\u008e\u0098\u00a8\u0006\"\u000542204\u0012\u0011\b?\u0012\u0006\u0010\u00bc\u008f\u0098\u00a8\u0006\"\u000542205\u0012\u0011\b@\u0012\u0006\u0010\u00c8\u0090\u0098\u00a8\u0006\"\u000542201\u0012\u0011\bA\u0012\u0006\u0010\u00c8\u0095\u0098\u00a8\u0006\"\u000542206\u0012\u0011\bB\u0012\u0006\u0010\u00e2\u0096\u0098\u00a8\u0006\"\u000542207\u0012\u0011\bC\u0012\u0006\u0010\u0090\u0098\u0098\u00a8\u0006\"\u000542208\u0012\u0011\bD\u0012\u0006\u0010\u0098\u009b\u0098\u00a8\u0006\"\u000542564\u0012\u0011\bE\u0012\u0006\u0010\u00ef\u009d\u0098\u00a8\u0006\"\u000542214\u0012\u0011\bF\u0012\u0006\u0010\u008b\u00a1\u0098\u00a8\u0006\"\u000542209\u0012\u0011\bG\u0012\u0006\u0010\u00e9\u00a4\u0098\u00a8\u0006\"\u000542210\u0012\u0011\bH\u0012\u0006\u0010\u009d\u00ab\u0098\u00a8\u0006\"\u000540951\u0012\u0011\bI\u0012\u0006\u0010\u00de\u00ad\u0098\u00a8\u0006\"\u000540952\u0012\u0011\bJ\u0012\u0006\u0010\u00a2\u00b0\u0098\u00a8\u0006\"\u000540953\u0012\u0011\bK\u0012\u0006\u0010\u00a3\u00b2\u0098\u00a8\u0006\"\u000540954\u0012\u0011\bL\u0012\u0006\u0010\u00de\u00b5\u0098\u00a8\u0006\"\u000540955\u0012\u0011\bM\u0012\u0006\u0010\u00d7\u00b7\u0098\u00a8\u0006\"\u000540956\u0012\u0011\bN\u0012\u0006\u0010\u00d8\u00ba\u0098\u00a8\u0006\"\u000540957\u0012\u0011\bO\u0012\u0006\u0010\u0084\u00be\u0098\u00a8\u0006\"\u000540958\u0012\u0011\bP\u0012\u0006\u0010\u00c1\u00bf\u0098\u00a8\u0006\"\u000540959\u0012\u0011\bQ\u0012\u0006\u0010\u00de\u00c8\u0098\u00a8\u0006\"\u000540960\u0012\u0011\bR\u0012\u0006\u0010\u00e5\u00d0\u0098\u00a8\u0006\"\u000530962\u0012\u0011\bS\u0012\u0006\u0010\u00e4\u00d5\u0098\u00a8\u0006\"\u000540961\u0012\u0011\bT\u0012\u0006\u0010\u0087\u00db\u0098\u00a8\u0006\"\u000540608\u0012\u0011\bU\u0012\u0006\u0010\u0083\u00e7\u0098\u00a8\u0006\"\u000540605\u0012\u0011\bV\u0012\u0006\u0010\u008c\u0086\u0099\u00a8\u0006\"\u000540597\u0012\u0011\bW\u0012\u0006\u0010\u00a0\u0093\u0099\u00a8\u0006\"\u000540593\u0012\u0011\bX\u0012\u0006\u0010\u00a7\u00a3\u0099\u00a8\u0006\"\u000540962\u0012\u0011\bY\u0012\u0006\u0010\u00e1\u00a5\u0099\u00a8\u0006\"\u000540588\u0012\u0011\bZ\u0012\u0006\u0010\u009d\u00b6\u0099\u00a8\u0006\"\u000540594\u0012\u0011\b[\u0012\u0006\u0010\u009e\u00b6\u0099\u00a8\u0006\"\u000540586\u0012\u0011\b\\\u0012\u0006\u0010\u00eb\u00be\u0099\u00a8\u0006\"\u000540585\u0012\u0011\b]\u0012\u0006\u0010\u00ad\u00c2\u0099\u00a8\u0006\"\u000540584\u0012\u0011\b^\u0012\u0006\u0010\u00ee\u00f0\u0099\u00a8\u0006\"\u000540587\u001a\b\u001a\u0006GLCY28 \u00ab\u00e8\u0097\u00a8\u0006\"`\n/\n\u001026067-701ff27f-2\u0012\b15:31:00\u001a\b20230916 \u0000*\u00037350\u0001\u0012\u001d\rL\u00e6\u0012\u00c2\u0015B<\u0092\u00c2\u001d\u0000\u0000\u0098B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008e\u00e3\u00f8?(\u00ab\u00e8\u0097\u00a8\u0006B\b\u001a\u0006GLCY28" + }, + { + "type": "con_recorrido", + "entity": "\n$d42c6bd0-fc9b-4f3f-ab98-0de126ac7a45\u001a\u00c9\f\n/\n\u001026066-701ff27f-2\u0012\b15:21:00\u001a\b20230916 \u0000*\u00037350\u0001\u0012\u0011\b\u000e\u0012\u0006\u0010\u00ce\u00e8\u0097\u00a8\u0006\"\u000538632\u0012\u0011\b\u000f\u0012\u0006\u0010\u00a8\u00e9\u0097\u00a8\u0006\"\u000538767\u0012\u0011\b\u0010\u0012\u0006\u0010\u00ea\u00e9\u0097\u00a8\u0006\"\u000538768\u0012\u0011\b\u0011\u0012\u0006\u0010\u009c\u00ea\u0097\u00a8\u0006\"\u000538769\u0012\u0011\b\u0012\u0012\u0006\u0010\u00c6\u00ea\u0097\u00a8\u0006\"\u000549357\u0012\u0011\b\u0013\u0012\u0006\u0010\u00ef\u00ea\u0097\u00a8\u0006\"\u000538771\u0012\u0011\b\u0014\u0012\u0006\u0010\u009c\u00eb\u0097\u00a8\u0006\"\u000538668\u0012\u0011\b\u0015\u0012\u0006\u0010\u00fe\u00eb\u0097\u00a8\u0006\"\u000538661\u0012\u0011\b\u0016\u0012\u0006\u0010\u00ca\u00ec\u0097\u00a8\u0006\"\u000538657\u0012\u0011\b\u0017\u0012\u0006\u0010\u008e\u00ed\u0097\u00a8\u0006\"\u000538743\u0012\u0011\b\u0018\u0012\u0006\u0010\u00cf\u00ed\u0097\u00a8\u0006\"\u000538652\u0012\u0011\b\u0019\u0012\u0006\u0010\u008d\u00ee\u0097\u00a8\u0006\"\u000538721\u0012\u0011\b\u001a\u0012\u0006\u0010\u00c5\u00ee\u0097\u00a8\u0006\"\u000538659\u0012\u0011\b\u001b\u0012\u0006\u0010\u0096\u00ef\u0097\u00a8\u0006\"\u000538674\u0012\u0011\b\u001c\u0012\u0006\u0010\u00d5\u00ef\u0097\u00a8\u0006\"\u000538649\u0012\u0011\b\u001d\u0012\u0006\u0010\u00a2\u00f0\u0097\u00a8\u0006\"\u000538718\u0012\u0011\b\u001e\u0012\u0006\u0010\u00db\u00f0\u0097\u00a8\u0006\"\u000538735\u0012\u0011\b\u001f\u0012\u0006\u0010\u0090\u00f1\u0097\u00a8\u0006\"\u000542270\u0012\u0011\b \u0012\u0006\u0010\u00c4\u00f1\u0097\u00a8\u0006\"\u000542271\u0012\u0013\b!\u0012\u0006\u0010\u0082\u00f2\u0097\u00a8\u0006\"\u00074838438\u0012\u0011\b\"\u0012\u0006\u0010\u0093\u00f3\u0097\u00a8\u0006\"\u000544896\u0012\u0011\b#\u0012\u0006\u0010\u00c3\u00f3\u0097\u00a8\u0006\"\u000544897\u0012\u0011\b$\u0012\u0006\u0010\u008a\u00f4\u0097\u00a8\u0006\"\u000544898\u0012\u0011\b%\u0012\u0006\u0010\u00b6\u00f5\u0097\u00a8\u0006\"\u000540993\u0012\u0014\b&\u0012\u0006\u0010\u00b5\u00f7\u0097\u00a8\u0006\"\b16005188\u0012\u0011\b'\u0012\u0006\u0010\u00bc\u00f9\u0097\u00a8\u0006\"\u000540995\u0012\u0011\b(\u0012\u0006\u0010\u0096\u00fa\u0097\u00a8\u0006\"\u000540996\u0012\u0011\b)\u0012\u0006\u0010\u00ee\u00fa\u0097\u00a8\u0006\"\u000540997\u0012\u0011\b*\u0012\u0006\u0010\u00b1\u00fb\u0097\u00a8\u0006\"\u000539614\u0012\u0011\b+\u0012\u0006\u0010\u00e9\u00fb\u0097\u00a8\u0006\"\u000539615\u0012\u0011\b,\u0012\u0006\u0010\u00ab\u00fc\u0097\u00a8\u0006\"\u000539616\u0012\u0011\b-\u0012\u0006\u0010\u00e4\u00fc\u0097\u00a8\u0006\"\u000539617\u0012\u0011\b.\u0012\u0006\u0010\u00aa\u00fd\u0097\u00a8\u0006\"\u000539618\u0012\u0011\b/\u0012\u0006\u0010\u00e1\u00fd\u0097\u00a8\u0006\"\u000539619\u0012\u0011\b0\u0012\u0006\u0010\u0094\u00fe\u0097\u00a8\u0006\"\u000539620\u0012\u0011\b1\u0012\u0006\u0010\u00eb\u00fe\u0097\u00a8\u0006\"\u000539621\u0012\u0011\b2\u0012\u0006\u0010\u00aa\u00ff\u0097\u00a8\u0006\"\u000538281\u0012\u0011\b3\u0012\u0006\u0010\u00f2\u00ff\u0097\u00a8\u0006\"\u000537506\u0012\u0011\b4\u0012\u0006\u0010\u00a9\u0080\u0098\u00a8\u0006\"\u000545068\u0012\u0011\b5\u0012\u0006\u0010\u00d5\u0081\u0098\u00a8\u0006\"\u000537480\u0012\u0011\b6\u0012\u0006\u0010\u00ad\u0082\u0098\u00a8\u0006\"\u000537477\u0012\u0011\b7\u0012\u0006\u0010\u0090\u0083\u0098\u00a8\u0006\"\u000540848\u0012\u0011\b8\u0012\u0006\u0010\u008f\u0084\u0098\u00a8\u0006\"\u00052-Apr\u0012\u0011\b9\u0012\u0006\u0010\u00ed\u0084\u0098\u00a8\u0006\"\u000539728\u0012\u0011\b:\u0012\u0006\u0010\u0084\u0086\u0098\u00a8\u0006\"\u000539729\u0012\u0011\b;\u0012\u0006\u0010\u00ac\u0086\u0098\u00a8\u0006\"\u000539730\u0012\u0011\b<\u0012\u0006\u0010\u00db\u0087\u0098\u00a8\u0006\"\u000542200\u0012\u0011\b=\u0012\u0006\u0010\u00aa\u0088\u0098\u00a8\u0006\"\u000542203\u0012\u0011\b>\u0012\u0006\u0010\u008c\u0089\u0098\u00a8\u0006\"\u000542204\u0012\u0011\b?\u0012\u0006\u0010\u00d9\u0089\u0098\u00a8\u0006\"\u000542205\u0012\u0011\b@\u0012\u0006\u0010\u00cb\u008a\u0098\u00a8\u0006\"\u000542201\u0012\u0011\bA\u0012\u0006\u0010\u00d0\u008e\u0098\u00a8\u0006\"\u000542206\u0012\u0011\bB\u0012\u0006\u0010\u00ca\u008f\u0098\u00a8\u0006\"\u000542207\u0012\u0011\bC\u0012\u0006\u0010\u00d4\u0090\u0098\u00a8\u0006\"\u000542208\u0012\u0011\bD\u0012\u0006\u0010\u0087\u0093\u0098\u00a8\u0006\"\u000542564\u0012\u0011\bE\u0012\u0006\u0010\u0090\u0095\u0098\u00a8\u0006\"\u000542214\u0012\u0011\bF\u0012\u0006\u0010\u00cb\u0097\u0098\u00a8\u0006\"\u000542209\u0012\u0011\bG\u0012\u0006\u0010\u00b2\u009a\u0098\u00a8\u0006\"\u000542210\u0012\u0011\bH\u0012\u0006\u0010\u008d\u009f\u0098\u00a8\u0006\"\u000540951\u0012\u0011\bI\u0012\u0006\u0010\u00f5\u00a0\u0098\u00a8\u0006\"\u000540952\u0012\u0011\bJ\u0012\u0006\u0010\u00dd\u00a2\u0098\u00a8\u0006\"\u000540953\u0012\u0011\bK\u0012\u0006\u0010\u0093\u00a4\u0098\u00a8\u0006\"\u000540954\u0012\u0011\bL\u0012\u0006\u0010\u00c9\u00a6\u0098\u00a8\u0006\"\u000540955\u0012\u0011\bM\u0012\u0006\u0010\u00f5\u00a7\u0098\u00a8\u0006\"\u000540956\u0012\u0011\bN\u0012\u0006\u0010\u00fd\u00a9\u0098\u00a8\u0006\"\u000540957\u0012\u0011\bO\u0012\u0006\u0010\u009e\u00ac\u0098\u00a8\u0006\"\u000540958\u0012\u0011\bP\u0012\u0006\u0010\u009d\u00ad\u0098\u00a8\u0006\"\u000540959\u0012\u0011\bQ\u0012\u0006\u0010\u00a4\u00b3\u0098\u00a8\u0006\"\u000540960\u0012\u0011\bR\u0012\u0006\u0010\u00b3\u00b8\u0098\u00a8\u0006\"\u000530962\u0012\u0011\bS\u0012\u0006\u0010\u00bf\u00bb\u0098\u00a8\u0006\"\u000540961\u0012\u0011\bT\u0012\u0006\u0010\u00d9\u00be\u0098\u00a8\u0006\"\u000540608\u0012\u0011\bU\u0012\u0006\u0010\u00de\u00c5\u0098\u00a8\u0006\"\u000540605\u0012\u0011\bV\u0012\u0006\u0010\u00d6\u00d6\u0098\u00a8\u0006\"\u000540597\u0012\u0011\bW\u0012\u0006\u0010\u00a8\u00dd\u0098\u00a8\u0006\"\u000540593\u0012\u0011\bX\u0012\u0006\u0010\u0083\u00e5\u0098\u00a8\u0006\"\u000540962\u0012\u0011\bY\u0012\u0006\u0010\u0095\u00e6\u0098\u00a8\u0006\"\u000540588\u0012\u0011\bZ\u0012\u0006\u0010\u00ce\u00ed\u0098\u00a8\u0006\"\u000540594\u0012\u0011\b[\u0012\u0006\u0010\u00cf\u00ed\u0098\u00a8\u0006\"\u000540586\u0012\u0011\b\\\u0012\u0006\u0010\u00ad\u00f1\u0098\u00a8\u0006\"\u000540585\u0012\u0011\b]\u0012\u0006\u0010\u00ed\u00f2\u0098\u00a8\u0006\"\u000540584\u0012\u0011\b^\u0012\u0006\u0010\u009f\u0085\u0099\u00a8\u0006\"\u000540587\u001a\b\u001a\u0006GWSG58 \u00b0\u00e8\u0097\u00a8\u0006\"`\n/\n\u001026066-701ff27f-2\u0012\b15:21:00\u001a\b20230916 \u0000*\u00037350\u0001\u0012\u001d\r\u00a1\u00da\u0012\u00c2\u0015\u00ec9\u0092\u00c2\u001d\u0000\u0000\u0007C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u008e?(\u00b0\u00e8\u0097\u00a8\u0006B\b\u001a\u0006GWSG58" + }, + { + "type": "con_recorrido", + "entity": "\n$382197bf-3c91-4856-855e-cd7977896cab\u001a\u009a\u0006\n/\n\u001021062-701ff27f-2\u0012\b14:21:00\u001a\b20230916 \u0000*\u00037360\u0001\u0012\u0011\bV\u0012\u0006\u0010\u00aa\u00e9\u0097\u00a8\u0006\"\u00057-Jul\u0012\u0011\bW\u0012\u0006\u0010\u0080\u00eb\u0097\u00a8\u0006\"\u00057-Feb\u0012\u0011\bX\u0012\u0006\u0010\u00c5\u00eb\u0097\u00a8\u0006\"\u00058-Jan\u0012\u0011\bY\u0012\u0006\u0010\u00e4\u00eb\u0097\u00a8\u0006\"\u00059-Jan\u0012\u0012\bZ\u0012\u0006\u0010\u008c\u00ec\u0097\u00a8\u0006\"\u000610-Apr\u0012\u0012\b[\u0012\u0006\u0010\u00c6\u00ec\u0097\u00a8\u0006\"\u000610-Jan\u0012\u0011\b\\\u0012\u0006\u0010\u00ef\u00ec\u0097\u00a8\u0006\"\u000544863\u0012\u0012\b]\u0012\u0006\u0010\u008e\u00ed\u0097\u00a8\u0006\"\u000610-Mar\u0012\u0012\b^\u0012\u0006\u0010\u00c4\u00ed\u0097\u00a8\u0006\"\u000611-Jan\u0012\u0011\b_\u0012\u0006\u0010\u00ef\u00ed\u0097\u00a8\u0006\"\u000544866\u0012\u0011\b`\u0012\u0006\u0010\u009c\u00ee\u0097\u00a8\u0006\"\u000544867\u0012\u0011\ba\u0012\u0006\u0010\u00bc\u00ee\u0097\u00a8\u0006\"\u000544868\u0012\u0011\bb\u0012\u0006\u0010\u00cf\u00ee\u0097\u00a8\u0006\"\u000544869\u0012\u0011\bc\u0012\u0006\u0010\u00f2\u00ee\u0097\u00a8\u0006\"\u000544870\u0012\u0011\bd\u0012\u0006\u0010\u008f\u00ef\u0097\u00a8\u0006\"\u000544871\u0012\u0011\be\u0012\u0006\u0010\u00b5\u00ef\u0097\u00a8\u0006\"\u000544872\u0012\u0011\bf\u0012\u0006\u0010\u00f0\u00ef\u0097\u00a8\u0006\"\u000550020\u0012\u0011\bg\u0012\u0006\u0010\u00c1\u00f0\u0097\u00a8\u0006\"\u000514-11\u0012\u0011\bh\u0012\u0006\u0010\u00e6\u00f0\u0097\u00a8\u0006\"\u000591162\u0012\u0011\bi\u0012\u0006\u0010\u00b4\u00f1\u0097\u00a8\u0006\"\u000550023\u0012\u0012\bj\u0012\u0006\u0010\u0095\u00f2\u0097\u00a8\u0006\"\u000614-Jul\u0012\u0012\bk\u0012\u0006\u0010\u00b6\u00f2\u0097\u00a8\u0006\"\u000614-Apr\u0012\u0011\bl\u0012\u0006\u0010\u00e4\u00f2\u0097\u00a8\u0006\"\u000537474\u0012\u0011\bm\u0012\u0006\u0010\u008d\u00f3\u0097\u00a8\u0006\"\u000544879\u0012\u0011\bn\u0012\u0006\u0010\u00aa\u00f3\u0097\u00a8\u0006\"\u000544880\u0012\u0011\bo\u0012\u0006\u0010\u00c9\u00f3\u0097\u00a8\u0006\"\u000544881\u0012\u0011\bp\u0012\u0006\u0010\u00da\u00f3\u0097\u00a8\u0006\"\u000550028\u0012\u0011\bq\u0012\u0006\u0010\u0096\u00f4\u0097\u00a8\u0006\"\u000538151\u0012\u0011\br\u0012\u0006\u0010\u00a8\u00f5\u0097\u00a8\u0006\"\u000515-13\u0012\u0011\bs\u0012\u0006\u0010\u00df\u00f5\u0097\u00a8\u0006\"\u000538194\u0012\u0011\bt\u0012\u0006\u0010\u00f8\u00f5\u0097\u00a8\u0006\"\u000550029\u0012\u0011\bv\u0012\u0006\u0010\u0085\u00f6\u0097\u00a8\u0006\"\u000550014\u0012\u0011\bw\u0012\u0006\u0010\u0093\u00f6\u0097\u00a8\u0006\"\u000538204\u0012\u0011\bx\u0012\u0006\u0010\u00b9\u00f6\u0097\u00a8\u0006\"\u000550013\u0012\u0011\by\u0012\u0006\u0010\u00e1\u00f6\u0097\u00a8\u0006\"\u000538127\u0012\u0011\bz\u0012\u0006\u0010\u0088\u00f7\u0097\u00a8\u0006\"\u000550015\u0012\u0011\b{\u0012\u0006\u0010\u00d8\u00f8\u0097\u00a8\u0006\"\u000538149\u0012\u0012\b|\u0012\u0006\u0010\u009a\u00f9\u0097\u00a8\u0006\"\u000614-Feb\u001a\b\u001a\u0006BVRP53 \u00b1\u00e8\u0097\u00a8\u0006\"`\n/\n\u001021062-701ff27f-2\u0012\b14:21:00\u001a\b20230916 \u0000*\u00037360\u0001\u0012\u001d\r\u00b1\u0006\u0013\u00c2\u0015B\u0001\u0092\u00c2\u001d\u0000\u0000\u0012\u0006\u0010\u00f3\u0086\u0098\u00a8\u0006\"\u000545069\u0012\u0011\b?\u0012\u0006\u0010\u00b7\u0088\u0098\u00a8\u0006\"\u000537523\u0012\u0011\b@\u0012\u0006\u0010\u0080\u0089\u0098\u00a8\u0006\"\u000537477\u0012\u0011\bA\u0012\u0006\u0010\u00a3\u008a\u0098\u00a8\u0006\"\u000549310\u0012\u0011\bB\u0012\u0006\u0010\u00e0\u008a\u0098\u00a8\u0006\"\u000549311\u0012\u0011\bC\u0012\u0006\u0010\u00ce\u008b\u0098\u00a8\u0006\"\u000539634\u0012\u0011\bD\u0012\u0006\u0010\u0081\u008c\u0098\u00a8\u0006\"\u000539635\u0012\u0011\bE\u0012\u0006\u0010\u00df\u008c\u0098\u00a8\u0006\"\u000539636\u0012\u0011\bF\u0012\u0006\u0010\u00d0\u008d\u0098\u00a8\u0006\"\u000549503\u0012\u0011\bG\u0012\u0006\u0010\u00e9\u008f\u0098\u00a8\u0006\"\u000539637\u0012\u0011\bH\u0012\u0006\u0010\u00dd\u0090\u0098\u00a8\u0006\"\u000549317\u0012\u0011\bI\u0012\u0006\u0010\u00a9\u0091\u0098\u00a8\u0006\"\u000549318\u0012\u0011\bJ\u0012\u0006\u0010\u00cb\u0092\u0098\u00a8\u0006\"\u000549319\u0012\u0011\bK\u0012\u0006\u0010\u00ef\u0093\u0098\u00a8\u0006\"\u000539641\u0012\u0011\bL\u0012\u0006\u0010\u00cd\u0094\u0098\u00a8\u0006\"\u000539642\u0012\u0011\bM\u0012\u0006\u0010\u0082\u009a\u0098\u00a8\u0006\"\u000549324\u0012\u0011\bN\u0012\u0006\u0010\u008a\u009b\u0098\u00a8\u0006\"\u000549325\u0012\u0011\bO\u0012\u0006\u0010\u00dc\u009c\u0098\u00a8\u0006\"\u000549326\u0012\u0011\bP\u0012\u0006\u0010\u00b7\u009d\u0098\u00a8\u0006\"\u000539648\u0012\u0011\bQ\u0012\u0006\u0010\u00e1\u009e\u0098\u00a8\u0006\"\u000539649\u0012\u0011\bR\u0012\u0006\u0010\u00f3\u009f\u0098\u00a8\u0006\"\u000545112\u0012\u0011\bS\u0012\u0006\u0010\u009b\u00a1\u0098\u00a8\u0006\"\u000545113\u0012\u0011\bT\u0012\u0006\u0010\u00dd\u00a3\u0098\u00a8\u0006\"\u000537490\u0012\u0011\bU\u0012\u0006\u0010\u00c3\u00a5\u0098\u00a8\u0006\"\u000545115\u0012\u0011\bV\u0012\u0006\u0010\u00af\u00a6\u0098\u00a8\u0006\"\u000545116\u0012\u0011\bW\u0012\u0006\u0010\u00f4\u00a8\u0098\u00a8\u0006\"\u000545118\u0012\u0011\bX\u0012\u0006\u0010\u00e5\u00ab\u0098\u00a8\u0006\"\u000545119\u0012\u0011\bY\u0012\u0006\u0010\u00ce\u00ad\u0098\u00a8\u0006\"\u000545120\u0012\u0011\bZ\u0012\u0006\u0010\u00fc\u00af\u0098\u00a8\u0006\"\u000545121\u0012\u0011\b[\u0012\u0006\u0010\u00ed\u00b1\u0098\u00a8\u0006\"\u000538535\u0012\u0011\b\\\u0012\u0006\u0010\u00c3\u00b5\u0098\u00a8\u0006\"\u000538536\u0012\u0013\b]\u0012\u0006\u0010\u00f8\u00b6\u0098\u00a8\u0006\"\u00074838437\u0012\u0011\b^\u0012\u0006\u0010\u00a8\u00ba\u0098\u00a8\u0006\"\u000545085\u0012\u0011\b_\u0012\u0006\u0010\u00f6\u00be\u0098\u00a8\u0006\"\u000545086\u0012\u0011\b`\u0012\u0006\u0010\u0093\u00c2\u0098\u00a8\u0006\"\u000538539\u0012\u0011\ba\u0012\u0006\u0010\u00cc\u00c6\u0098\u00a8\u0006\"\u000538540\u0012\u0011\bb\u0012\u0006\u0010\u00b8\u00cc\u0098\u00a8\u0006\"\u000538544\u0012\u0011\bc\u0012\u0006\u0010\u0093\u00d2\u0098\u00a8\u0006\"\u000538545\u0012\u0011\bd\u0012\u0006\u0010\u00f1\u00e7\u0098\u00a8\u0006\"\u000538548\u0012\u0011\be\u0012\u0006\u0010\u00be\u00f0\u0098\u00a8\u0006\"\u000538549\u0012\u0011\bf\u0012\u0006\u0010\u00cc\u00f8\u0098\u00a8\u0006\"\u000538550\u0012\u0011\bg\u0012\u0006\u0010\u00ed\u0088\u0099\u00a8\u0006\"\u000538551\u0012\u0011\bh\u0012\u0006\u0010\u00b4\u009a\u0099\u00a8\u0006\"\u000538552\u0012\u0011\bi\u0012\u0006\u0010\u00d4\u00ae\u0099\u00a8\u0006\"\u000549359\u0012\u0011\bj\u0012\u0006\u0010\u009a\u00be\u0099\u00a8\u0006\"\u000549360\u0012\u0011\bk\u0012\u0006\u0010\u00d0\u00e9\u0099\u00a8\u0006\"\u000549361\u0012\u0011\bl\u0012\u0006\u0010\u00d3\u00f4\u0099\u00a8\u0006\"\u000549362\u0012\u0011\bm\u0012\u0006\u0010\u0082\u0090\u009a\u00a8\u0006\"\u000549363\u0012\u0011\bn\u0012\u0006\u0010\u00ad\u00b0\u009a\u00a8\u0006\"\u000549364\u0012\u0011\bo\u0012\u0006\u0010\u00d3\u00cd\u009a\u00a8\u0006\"\u000549365\u0012\u0011\bp\u0012\u0006\u0010\u00f3\u0094\u009b\u00a8\u0006\"\u000538560\u0012\u0011\bq\u0012\u0006\u0010\u00af\u00ca\u009b\u00a8\u0006\"\u000542857\u0012\u0011\br\u0012\u0006\u0010\u00a1\u0080\u009c\u00a8\u0006\"\u000538562\u0012\u0011\bs\u0012\u0006\u0010\u00cf\u00cb\u009c\u00a8\u0006\"\u000538563\u0012\u0011\bt\u0012\u0006\u0010\u00e6\u00bf\u009d\u00a8\u0006\"\u000542854\u0012\u0011\bu\u0012\u0006\u0010\u00dd\u00c8\u00a2\u00a8\u0006\"\u000538565\u0012\u0011\bv\u0012\u0006\u0010\u00eb\u00ea\u00aa\u00a8\u0006\"\u000540932\u001a\b\u001a\u0006CDTF40 \u0094\u00e8\u0097\u00a8\u0006\"`\n/\n\u001021132-701ff27f-2\u0012\b15:17:00\u001a\b20230916 \u0000*\u00037360\u0000\u0012\u001d\r!\u00d8\u0012\u00c2\u0015\u00aa\u00f2\u0091\u00c2\u001d\u0000\u0000rC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UUU@(\u0094\u00e8\u0097\u00a8\u0006B\b\u001a\u0006CDTF40" + }, + { + "type": "con_recorrido", + "entity": "\n$9aef2024-9eb1-4374-bbba-ca344b76d6ef\u001a\u0095\u0010\n/\n\u001021064-701ff27f-2\u0012\b15:01:00\u001a\b20230916 \u0000*\u00037360\u0001\u0012\u0011\b\u0013\u0012\u0006\u0010\u00c1\u00e8\u0097\u00a8\u0006\"\u000538646\u0012\u0011\b\u0014\u0012\u0006\u0010\u00e9\u00e8\u0097\u00a8\u0006\"\u000538632\u0012\u0011\b\u0015\u0012\u0006\u0010\u00ba\u00e9\u0097\u00a8\u0006\"\u000538767\u0012\u0011\b\u0016\u0012\u0006\u0010\u0082\u00ea\u0097\u00a8\u0006\"\u000538768\u0012\u0011\b\u0017\u0012\u0006\u0010\u00ad\u00ea\u0097\u00a8\u0006\"\u000538769\u0012\u0011\b\u0018\u0012\u0006\u0010\u00d7\u00ea\u0097\u00a8\u0006\"\u000549357\u0012\u0011\b\u0019\u0012\u0006\u0010\u00fd\u00ea\u0097\u00a8\u0006\"\u000538771\u0012\u0011\b\u001a\u0012\u0006\u0010\u00ac\u00eb\u0097\u00a8\u0006\"\u000538668\u0012\u0011\b\u001b\u0012\u0006\u0010\u008e\u00ec\u0097\u00a8\u0006\"\u000538661\u0012\u0011\b\u001c\u0012\u0006\u0010\u00e0\u00ec\u0097\u00a8\u0006\"\u000538657\u0012\u0011\b\u001d\u0012\u0006\u0010\u009d\u00ed\u0097\u00a8\u0006\"\u000538743\u0012\u0011\b\u001e\u0012\u0006\u0010\u00de\u00ed\u0097\u00a8\u0006\"\u000538652\u0012\u0011\b\u001f\u0012\u0006\u0010\u009c\u00ee\u0097\u00a8\u0006\"\u000538721\u0012\u0011\b \u0012\u0006\u0010\u00d3\u00ee\u0097\u00a8\u0006\"\u000538659\u0012\u0011\b!\u0012\u0006\u0010\u00ab\u00ef\u0097\u00a8\u0006\"\u000538674\u0012\u0011\b\"\u0012\u0006\u0010\u00ec\u00ef\u0097\u00a8\u0006\"\u000538649\u0012\u0011\b#\u0012\u0006\u0010\u00f0\u00f0\u0097\u00a8\u0006\"\u000538735\u0012\u0011\b$\u0012\u0006\u0010\u00a5\u00f1\u0097\u00a8\u0006\"\u000542270\u0012\u0011\b%\u0012\u0006\u0010\u00d1\u00f1\u0097\u00a8\u0006\"\u000542271\u0012\u0011\b&\u0012\u0006\u0010\u008e\u00f3\u0097\u00a8\u0006\"\u000538688\u0012\u0011\b'\u0012\u0006\u0010\u00c6\u00f3\u0097\u00a8\u0006\"\u000538673\u0012\u0011\b(\u0012\u0006\u0010\u0091\u00f4\u0097\u00a8\u0006\"\u000539785\u0012\u0011\b)\u0012\u0006\u0010\u00b8\u00f4\u0097\u00a8\u0006\"\u000538664\u0012\u0011\b*\u0012\u0006\u0010\u00ee\u00f4\u0097\u00a8\u0006\"\u000538702\u0012\u0011\b+\u0012\u0006\u0010\u009a\u00f5\u0097\u00a8\u0006\"\u000539787\u0012\u0011\b,\u0012\u0006\u0010\u00c5\u00f5\u0097\u00a8\u0006\"\u000538501\u0012\u0011\b-\u0012\u0006\u0010\u0089\u00f6\u0097\u00a8\u0006\"\u000538692\u0012\u0011\b.\u0012\u0006\u0010\u00cd\u00f6\u0097\u00a8\u0006\"\u000538714\u0012\u0011\b/\u0012\u0006\u0010\u0081\u00f7\u0097\u00a8\u0006\"\u000539791\u0012\u0011\b0\u0012\u0006\u0010\u009e\u00f7\u0097\u00a8\u0006\"\u000538506\u0012\u0011\b1\u0012\u0006\u0010\u00d2\u00f7\u0097\u00a8\u0006\"\u000538635\u0012\u0011\b2\u0012\u0006\u0010\u00f8\u00f7\u0097\u00a8\u0006\"\u000538509\u0012\u0011\b3\u0012\u0006\u0010\u00a4\u00f8\u0097\u00a8\u0006\"\u000538642\u0012\u0011\b4\u0012\u0006\u0010\u00d4\u00f8\u0097\u00a8\u0006\"\u000539795\u0012\u0011\b5\u0012\u0006\u0010\u00f0\u00f8\u0097\u00a8\u0006\"\u000538502\u0012\u0011\b6\u0012\u0006\u0010\u00ba\u00f9\u0097\u00a8\u0006\"\u000538503\u0012\u0011\b7\u0012\u0006\u0010\u0099\u00fb\u0097\u00a8\u0006\"\u000535692\u0012\u0011\b8\u0012\u0006\u0010\u00e2\u00fb\u0097\u00a8\u0006\"\u000535693\u0012\u0011\b9\u0012\u0006\u0010\u00a6\u00fc\u0097\u00a8\u0006\"\u000535694\u0012\u0011\b:\u0012\u0006\u0010\u00c5\u00fc\u0097\u00a8\u0006\"\u000535695\u0012\u0011\b;\u0012\u0006\u0010\u008c\u00fd\u0097\u00a8\u0006\"\u000535696\u0012\u0011\b<\u0012\u0006\u0010\u00d9\u00fe\u0097\u00a8\u0006\"\u000535697\u0012\u0011\b=\u0012\u0006\u0010\u00f8\u00ff\u0097\u00a8\u0006\"\u000539778\u0012\u0011\b>\u0012\u0006\u0010\u0085\u0081\u0098\u00a8\u0006\"\u000535797\u0012\u0011\b?\u0012\u0006\u0010\u00c7\u0081\u0098\u00a8\u0006\"\u000535798\u0012\u0011\b@\u0012\u0006\u0010\u00f8\u0081\u0098\u00a8\u0006\"\u000535799\u0012\u0011\bA\u0012\u0006\u0010\u00d9\u0082\u0098\u00a8\u0006\"\u000535800\u0012\u0011\bB\u0012\u0006\u0010\u00a2\u0083\u0098\u00a8\u0006\"\u000535801\u0012\u0011\bC\u0012\u0006\u0010\u00c9\u0083\u0098\u00a8\u0006\"\u000535802\u0012\u0011\bD\u0012\u0006\u0010\u0092\u0084\u0098\u00a8\u0006\"\u000535803\u0012\u0011\bE\u0012\u0006\u0010\u00e9\u0084\u0098\u00a8\u0006\"\u000538507\u0012\u0011\bF\u0012\u0006\u0010\u00ba\u0085\u0098\u00a8\u0006\"\u000534473\u0012\u0011\bG\u0012\u0006\u0010\u0082\u0086\u0098\u00a8\u0006\"\u000538500\u0012\u0011\bH\u0012\u0006\u0010\u00c0\u0086\u0098\u00a8\u0006\"\u000535808\u0012\u0011\bI\u0012\u0006\u0010\u00b0\u0087\u0098\u00a8\u0006\"\u000535710\u0012\u0011\bJ\u0012\u0006\u0010\u00fe\u0087\u0098\u00a8\u0006\"\u000550036\u0012\u0011\bK\u0012\u0006\u0010\u00a8\u008b\u0098\u00a8\u0006\"\u000550037\u0012\u0011\bL\u0012\u0006\u0010\u00cf\u008d\u0098\u00a8\u0006\"\u000550038\u0012\u0011\bM\u0012\u0006\u0010\u00f6\u008e\u0098\u00a8\u0006\"\u000550039\u0012\u0011\bN\u0012\u0006\u0010\u00ed\u008f\u0098\u00a8\u0006\"\u000550040\u0012\u0011\bO\u0012\u0006\u0010\u00cc\u0091\u0098\u00a8\u0006\"\u000550041\u0012\u0012\bP\u0012\u0006\u0010\u00b7\u0094\u0098\u00a8\u0006\"\u0006Jun-15\u0012\u0012\bQ\u0012\u0006\u0010\u00b2\u0096\u0098\u00a8\u0006\"\u0006Jun-13\u0012\u0011\bR\u0012\u0006\u0010\u0080\u009b\u0098\u00a8\u0006\"\u00056-Oct\u0012\u0011\bS\u0012\u0006\u0010\u00c1\u009c\u0098\u00a8\u0006\"\u00056-Aug\u0012\u0011\bT\u0012\u0006\u0010\u00f8\u00a0\u0098\u00a8\u0006\"\u00056-Jun\u0012\u0011\bU\u0012\u0006\u0010\u00d6\u00a4\u0098\u00a8\u0006\"\u00056-Feb\u0012\u0011\bV\u0012\u0006\u0010\u00b3\u00a9\u0098\u00a8\u0006\"\u00057-Jul\u0012\u0011\bW\u0012\u0006\u0010\u0089\u00b2\u0098\u00a8\u0006\"\u00057-Feb\u0012\u0011\bX\u0012\u0006\u0010\u00a6\u00b5\u0098\u00a8\u0006\"\u00058-Jan\u0012\u0011\bY\u0012\u0006\u0010\u00f3\u00b6\u0098\u00a8\u0006\"\u00059-Jan\u0012\u0012\bZ\u0012\u0006\u0010\u00ff\u00b8\u0098\u00a8\u0006\"\u000610-Apr\u0012\u0012\b[\u0012\u0006\u0010\u009c\u00bc\u0098\u00a8\u0006\"\u000610-Jan\u0012\u0011\b\\\u0012\u0006\u0010\u00d8\u00be\u0098\u00a8\u0006\"\u000544863\u0012\u0012\b]\u0012\u0006\u0010\u00d2\u00c0\u0098\u00a8\u0006\"\u000610-Mar\u0012\u0012\b^\u0012\u0006\u0010\u009a\u00c4\u0098\u00a8\u0006\"\u000611-Jan\u0012\u0011\b_\u0012\u0006\u0010\u00a2\u00c7\u0098\u00a8\u0006\"\u000544866\u0012\u0011\b`\u0012\u0006\u0010\u00d4\u00ca\u0098\u00a8\u0006\"\u000544867\u0012\u0011\ba\u0012\u0006\u0010\u009a\u00cd\u0098\u00a8\u0006\"\u000544868\u0012\u0011\bb\u0012\u0006\u0010\u00e6\u00ce\u0098\u00a8\u0006\"\u000544869\u0012\u0011\bc\u0012\u0006\u0010\u00f0\u00d1\u0098\u00a8\u0006\"\u000544870\u0012\u0011\bd\u0012\u0006\u0010\u00c2\u00d4\u0098\u00a8\u0006\"\u000544871\u0012\u0011\be\u0012\u0006\u0010\u008e\u00d8\u0098\u00a8\u0006\"\u000544872\u0012\u0011\bf\u0012\u0006\u0010\u00a3\u00de\u0098\u00a8\u0006\"\u000550020\u0012\u0011\bg\u0012\u0006\u0010\u00e3\u00e7\u0098\u00a8\u0006\"\u000514-11\u0012\u0011\bh\u0012\u0006\u0010\u00d5\u00ec\u0098\u00a8\u0006\"\u000591162\u0012\u0011\bi\u0012\u0006\u0010\u0089\u00f8\u0098\u00a8\u0006\"\u000550023\u0012\u0012\bj\u0012\u0006\u0010\u00ec\u0088\u0099\u00a8\u0006\"\u000614-Jul\u0012\u0012\bk\u0012\u0006\u0010\u00cb\u008f\u0099\u00a8\u0006\"\u000614-Apr\u0012\u0011\bl\u0012\u0006\u0010\u00c9\u0099\u0099\u00a8\u0006\"\u000537474\u0012\u0011\bm\u0012\u0006\u0010\u00c6\u00a3\u0099\u00a8\u0006\"\u000544879\u0012\u0011\bn\u0012\u0006\u0010\u00aa\u00ab\u0099\u00a8\u0006\"\u000544880\u0012\u0011\bo\u0012\u0006\u0010\u00a5\u00b4\u0099\u00a8\u0006\"\u000544881\u0012\u0011\bp\u0012\u0006\u0010\u009c\u00b9\u0099\u00a8\u0006\"\u000550028\u0012\u0011\bq\u0012\u0006\u0010\u0083\u00ce\u0099\u00a8\u0006\"\u000538151\u0012\u0011\br\u0012\u0006\u0010\u00c1\u0093\u009a\u00a8\u0006\"\u000515-13\u0012\u0011\bs\u0012\u0006\u0010\u00c1\u00b9\u009a\u00a8\u0006\"\u000538194\u0012\u0011\bt\u0012\u0006\u0010\u0097\u00ce\u009a\u00a8\u0006\"\u000550029\u0012\u0011\bv\u0012\u0006\u0010\u008e\u00d9\u009a\u00a8\u0006\"\u000550014\u0012\u0011\bw\u0012\u0006\u0010\u00bd\u00e6\u009a\u00a8\u0006\"\u000538204\u0012\u0011\bx\u0012\u0006\u0010\u00c1\u008f\u009b\u00a8\u0006\"\u000550013\u0012\u0011\by\u0012\u0006\u0010\u00a2\u00c4\u009b\u00a8\u0006\"\u000538127\u0012\u0011\bz\u0012\u0006\u0010\u00d2\u0084\u009c\u00a8\u0006\"\u000550015\u0012\u0011\b{\u0012\u0006\u0010\u0097\u0094\u00a6\u00a8\u0006\"\u000538149\u0012\u0012\b|\u0012\u0006\u0010\u00d9\u00d3\u00cf\u00a8\u0006\"\u000614-Feb\u001a\b\u001a\u0006CDTF83 \u009c\u00e8\u0097\u00a8\u0006\"`\n/\n\u001021064-701ff27f-2\u0012\b15:01:00\u001a\b20230916 \u0000*\u00037360\u0001\u0012\u001d\r\u0085\u00d9\u0012\u00c2\u0015\u00ba:\u0092\u00c2\u001d\u0000\u0000\bC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u000e?(\u009c\u00e8\u0097\u00a8\u0006B\b\u001a\u0006CDTF83" + }, + { + "type": "con_recorrido", + "entity": "\n$ace21c3f-fa61-451a-ae52-b23ed0242f81\u001a\u00ed\r\n/\n\u001021130-701ff27f-2\u0012\b14:47:00\u001a\b20230916 \u0000*\u00037360\u0000\u0012\u0012\b/\u0012\u0006\u0010\u00b7\u00e8\u0097\u00a8\u0006\"\u0006Jun-14\u0012\u0012\b0\u0012\u0006\u0010\u00d5\u00e9\u0097\u00a8\u0006\"\u0006Jun-17\u0012\u0012\b1\u0012\u0006\u0010\u00a7\u00ea\u0097\u00a8\u0006\"\u0006Jun-19\u0012\u0012\b2\u0012\u0006\u0010\u00e4\u00ea\u0097\u00a8\u0006\"\u0006Jun-20\u0012\u0012\b3\u0012\u0006\u0010\u00a3\u00eb\u0097\u00a8\u0006\"\u0006Jun-22\u0012\u0012\b4\u0012\u0006\u0010\u00e4\u00eb\u0097\u00a8\u0006\"\u0006Jun-24\u0012\u0012\b5\u0012\u0006\u0010\u00bc\u00ec\u0097\u00a8\u0006\"\u0006Jun-25\u0012\u0011\b6\u0012\u0006\u0010\u00d6\u00ee\u0097\u00a8\u0006\"\u000590003\u0012\u0011\b7\u0012\u0006\u0010\u0083\u00ef\u0097\u00a8\u0006\"\u000590007\u0012\u0011\b8\u0012\u0006\u0010\u00b4\u00ef\u0097\u00a8\u0006\"\u000590008\u0012\u0011\b9\u0012\u0006\u0010\u009f\u00f0\u0097\u00a8\u0006\"\u000539599\u0012\u0011\b:\u0012\u0006\u0010\u00b5\u00f0\u0097\u00a8\u0006\"\u000539600\u0012\u0011\b;\u0012\u0006\u0010\u00f6\u00f0\u0097\u00a8\u0006\"\u000537496\u0012\u0011\b<\u0012\u0006\u0010\u00a6\u00f1\u0097\u00a8\u0006\"\u000545064\u0012\u0011\b=\u0012\u0006\u0010\u00ed\u00f1\u0097\u00a8\u0006\"\u000537506\u0012\u0011\b>\u0012\u0006\u0010\u00b6\u00f2\u0097\u00a8\u0006\"\u000545069\u0012\u0011\b?\u0012\u0006\u0010\u00a5\u00f3\u0097\u00a8\u0006\"\u000537523\u0012\u0011\b@\u0012\u0006\u0010\u00cd\u00f3\u0097\u00a8\u0006\"\u000537477\u0012\u0011\bA\u0012\u0006\u0010\u00a3\u00f4\u0097\u00a8\u0006\"\u000549310\u0012\u0011\bB\u0012\u0006\u0010\u00c3\u00f4\u0097\u00a8\u0006\"\u000549311\u0012\u0011\bC\u0012\u0006\u0010\u00fb\u00f4\u0097\u00a8\u0006\"\u000539634\u0012\u0011\bD\u0012\u0006\u0010\u0095\u00f5\u0097\u00a8\u0006\"\u000539635\u0012\u0011\bE\u0012\u0006\u0010\u00c4\u00f5\u0097\u00a8\u0006\"\u000539636\u0012\u0011\bF\u0012\u0006\u0010\u00fa\u00f5\u0097\u00a8\u0006\"\u000549503\u0012\u0011\bG\u0012\u0006\u0010\u00fe\u00f6\u0097\u00a8\u0006\"\u000539637\u0012\u0011\bH\u0012\u0006\u0010\u00b2\u00f7\u0097\u00a8\u0006\"\u000549317\u0012\u0011\bI\u0012\u0006\u0010\u00d3\u00f7\u0097\u00a8\u0006\"\u000549318\u0012\u0011\bJ\u0012\u0006\u0010\u009a\u00f8\u0097\u00a8\u0006\"\u000549319\u0012\u0011\bK\u0012\u0006\u0010\u00de\u00f8\u0097\u00a8\u0006\"\u000539641\u0012\u0011\bL\u0012\u0006\u0010\u0085\u00f9\u0097\u00a8\u0006\"\u000539642\u0012\u0011\bM\u0012\u0006\u0010\u0091\u00fb\u0097\u00a8\u0006\"\u000549324\u0012\u0011\bN\u0012\u0006\u0010\u00c2\u00fb\u0097\u00a8\u0006\"\u000549325\u0012\u0011\bO\u0012\u0006\u0010\u008c\u00fc\u0097\u00a8\u0006\"\u000549326\u0012\u0011\bP\u0012\u0006\u0010\u00ac\u00fc\u0097\u00a8\u0006\"\u000539648\u0012\u0011\bQ\u0012\u0006\u0010\u00e5\u00fc\u0097\u00a8\u0006\"\u000539649\u0012\u0011\bR\u0012\u0006\u0010\u0096\u00fd\u0097\u00a8\u0006\"\u000545112\u0012\u0011\bS\u0012\u0006\u0010\u00cc\u00fd\u0097\u00a8\u0006\"\u000545113\u0012\u0011\bT\u0012\u0006\u0010\u00b1\u00fe\u0097\u00a8\u0006\"\u000537490\u0012\u0011\bU\u0012\u0006\u0010\u00f6\u00fe\u0097\u00a8\u0006\"\u000545115\u0012\u0011\bV\u0012\u0006\u0010\u0096\u00ff\u0097\u00a8\u0006\"\u000545116\u0012\u0011\bW\u0012\u0006\u0010\u00f3\u00ff\u0097\u00a8\u0006\"\u000545118\u0012\u0011\bX\u0012\u0006\u0010\u00d9\u0080\u0098\u00a8\u0006\"\u000545119\u0012\u0011\bY\u0012\u0006\u0010\u0097\u0081\u0098\u00a8\u0006\"\u000545120\u0012\u0011\bZ\u0012\u0006\u0010\u00e4\u0081\u0098\u00a8\u0006\"\u000545121\u0012\u0011\b[\u0012\u0006\u0010\u00a0\u0082\u0098\u00a8\u0006\"\u000538535\u0012\u0011\b\\\u0012\u0006\u0010\u0090\u0083\u0098\u00a8\u0006\"\u000538536\u0012\u0013\b]\u0012\u0006\u0010\u00ba\u0083\u0098\u00a8\u0006\"\u00074838437\u0012\u0011\b^\u0012\u0006\u0010\u009a\u0084\u0098\u00a8\u0006\"\u000545085\u0012\u0011\b_\u0012\u0006\u0010\u0097\u0085\u0098\u00a8\u0006\"\u000545086\u0012\u0011\b`\u0012\u0006\u0010\u00ea\u0085\u0098\u00a8\u0006\"\u000538539\u0012\u0011\ba\u0012\u0006\u0010\u00d6\u0086\u0098\u00a8\u0006\"\u000538540\u0012\u0011\bb\u0012\u0006\u0010\u00dd\u0087\u0098\u00a8\u0006\"\u000538544\u0012\u0011\bc\u0012\u0006\u0010\u00d7\u0088\u0098\u00a8\u0006\"\u000538545\u0012\u0011\bd\u0012\u0006\u0010\u00e8\u008b\u0098\u00a8\u0006\"\u000538548\u0012\u0011\be\u0012\u0006\u0010\u00ef\u008c\u0098\u00a8\u0006\"\u000538549\u0012\u0011\bf\u0012\u0006\u0010\u00e5\u008d\u0098\u00a8\u0006\"\u000538550\u0012\u0011\bg\u0012\u0006\u0010\u00b8\u008f\u0098\u00a8\u0006\"\u000538551\u0012\u0011\bh\u0012\u0006\u0010\u00fd\u0090\u0098\u00a8\u0006\"\u000538552\u0012\u0011\bi\u0012\u0006\u0010\u00c1\u0092\u0098\u00a8\u0006\"\u000549359\u0012\u0011\bj\u0012\u0006\u0010\u00c4\u0093\u0098\u00a8\u0006\"\u000549360\u0012\u0011\bk\u0012\u0006\u0010\u00f2\u0095\u0098\u00a8\u0006\"\u000549361\u0012\u0011\bl\u0012\u0006\u0010\u00b3\u0096\u0098\u00a8\u0006\"\u000549362\u0012\u0011\bm\u0012\u0006\u0010\u00c2\u0097\u0098\u00a8\u0006\"\u000549363\u0012\u0011\bn\u0012\u0006\u0010\u00d3\u0098\u0098\u00a8\u0006\"\u000549364\u0012\u0011\bo\u0012\u0006\u0010\u00c3\u0099\u0098\u00a8\u0006\"\u000549365\u0012\u0011\bp\u0012\u0006\u0010\u009d\u009b\u0098\u00a8\u0006\"\u000538560\u0012\u0011\bq\u0012\u0006\u0010\u009c\u009c\u0098\u00a8\u0006\"\u000542857\u0012\u0011\br\u0012\u0006\u0010\u0086\u009d\u0098\u00a8\u0006\"\u000538562\u0012\u0011\bs\u0012\u0006\u0010\u00fe\u009d\u0098\u00a8\u0006\"\u000538563\u0012\u0011\bt\u0012\u0006\u0010\u008b\u009f\u0098\u00a8\u0006\"\u000542854\u0012\u0011\bu\u0012\u0006\u0010\u00ff\u00a1\u0098\u00a8\u0006\"\u000538565\u0012\u0011\bv\u0012\u0006\u0010\u00c1\u00a3\u0098\u00a8\u0006\"\u000540932\u0012\u0011\bw\u0012\u0006\u0010\u00fa\u00a5\u0098\u00a8\u0006\"\u000538567\u0012\u0011\bx\u0012\u0006\u0010\u00cf\u00a7\u0098\u00a8\u0006\"\u000538568\u0012\u0011\by\u0012\u0006\u0010\u00d3\u00a8\u0098\u00a8\u0006\"\u000538569\u0012\u0011\bz\u0012\u0006\u0010\u009d\u00aa\u0098\u00a8\u0006\"\u000538570\u0012\u0011\b{\u0012\u0006\u0010\u00b7\u00ac\u0098\u00a8\u0006\"\u000538571\u0012\u0011\b|\u0012\u0006\u0010\u00ce\u00ae\u0098\u00a8\u0006\"\u000538572\u0012\u0011\b}\u0012\u0006\u0010\u00b8\u00b6\u0098\u00a8\u0006\"\u000538393\u0012\u0011\b~\u0012\u0006\u0010\u008f\u00b9\u0098\u00a8\u0006\"\u000538394\u0012\u0011\b\u007f\u0012\u0006\u0010\u00c9\u00bb\u0098\u00a8\u0006\"\u000538395\u0012\u0012\b\u0080\u0001\u0012\u0006\u0010\u00c7\u00bd\u0098\u00a8\u0006\"\u000538396\u0012\u0012\b\u0081\u0001\u0012\u0006\u0010\u009d\u00c1\u0098\u00a8\u0006\"\u000538397\u0012\u0012\b\u0082\u0001\u0012\u0006\u0010\u00df\u00c2\u0098\u00a8\u0006\"\u000538398\u0012\u0012\b\u0083\u0001\u0012\u0006\u0010\u00b8\u00c4\u0098\u00a8\u0006\"\u000538399\u0012\u0012\b\u0084\u0001\u0012\u0006\u0010\u00f7\u00c8\u0098\u00a8\u0006\"\u000538400\u0012\u0012\b\u0085\u0001\u0012\u0006\u0010\u00c2\u00cc\u0098\u00a8\u0006\"\u000538401\u0012\u0012\b\u0086\u0001\u0012\u0006\u0010\u0091\u00d0\u0098\u00a8\u0006\"\u000538402\u0012\u0012\b\u0087\u0001\u0012\u0006\u0010\u008d\u00d7\u0098\u00a8\u0006\"\u000538433\u001a\b\u001a\u0006CXLY26 \u0092\u00e8\u0097\u00a8\u0006\"`\n/\n\u001021130-701ff27f-2\u0012\b14:47:00\u001a\b20230916 \u0000*\u00037360\u0000\u0012\u001d\r\u00bc\u001e\u0013\u00c2\u0015-\n\u0092\u00c2\u001d\u0000\u0000NC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u008eA(\u0092\u00e8\u0097\u00a8\u0006B\b\u001a\u0006CXLY26" + }, + { + "type": "con_recorrido", + "entity": "\n$9cd347c3-b7a1-4d21-bea6-4611d7e839d9\u001a\u00fe\u0003\n/\n\u001021126-701ff27f-2\u0012\b13:47:00\u001a\b20230916 \u0000*\u00037360\u0000\u0012\u0011\bq\u0012\u0006\u0010\u00ef\u00e7\u0097\u00a8\u0006\"\u000542857\u0012\u0011\br\u0012\u0006\u0010\u0090\u00e8\u0097\u00a8\u0006\"\u000538562\u0012\u0011\bs\u0012\u0006\u0010\u00b5\u00e8\u0097\u00a8\u0006\"\u000538563\u0012\u0011\bt\u0012\u0006\u0010\u00de\u00e8\u0097\u00a8\u0006\"\u000542854\u0012\u0011\bu\u0012\u0006\u0010\u00c4\u00e9\u0097\u00a8\u0006\"\u000538565\u0012\u0011\bv\u0012\u0006\u0010\u00f5\u00e9\u0097\u00a8\u0006\"\u000540932\u0012\u0011\bw\u0012\u0006\u0010\u00c0\u00ea\u0097\u00a8\u0006\"\u000538567\u0012\u0011\bx\u0012\u0006\u0010\u00ef\u00ea\u0097\u00a8\u0006\"\u000538568\u0012\u0011\by\u0012\u0006\u0010\u008c\u00eb\u0097\u00a8\u0006\"\u000538569\u0012\u0011\bz\u0012\u0006\u0010\u00b6\u00eb\u0097\u00a8\u0006\"\u000538570\u0012\u0011\b{\u0012\u0006\u0010\u00ee\u00eb\u0097\u00a8\u0006\"\u000538571\u0012\u0011\b|\u0012\u0006\u0010\u00a1\u00ec\u0097\u00a8\u0006\"\u000538572\u0012\u0011\b}\u0012\u0006\u0010\u00c6\u00ed\u0097\u00a8\u0006\"\u000538393\u0012\u0011\b~\u0012\u0006\u0010\u00f8\u00ed\u0097\u00a8\u0006\"\u000538394\u0012\u0011\b\u007f\u0012\u0006\u0010\u00a3\u00ee\u0097\u00a8\u0006\"\u000538395\u0012\u0012\b\u0080\u0001\u0012\u0006\u0010\u00c4\u00ee\u0097\u00a8\u0006\"\u000538396\u0012\u0012\b\u0081\u0001\u0012\u0006\u0010\u00fe\u00ee\u0097\u00a8\u0006\"\u000538397\u0012\u0012\b\u0082\u0001\u0012\u0006\u0010\u0094\u00ef\u0097\u00a8\u0006\"\u000538398\u0012\u0012\b\u0083\u0001\u0012\u0006\u0010\u00ad\u00ef\u0097\u00a8\u0006\"\u000538399\u0012\u0012\b\u0084\u0001\u0012\u0006\u0010\u00ea\u00ef\u0097\u00a8\u0006\"\u000538400\u0012\u0012\b\u0085\u0001\u0012\u0006\u0010\u0098\u00f0\u0097\u00a8\u0006\"\u000538401\u0012\u0012\b\u0086\u0001\u0012\u0006\u0010\u00c3\u00f0\u0097\u00a8\u0006\"\u000538402\u0012\u0012\b\u0087\u0001\u0012\u0006\u0010\u008e\u00f1\u0097\u00a8\u0006\"\u000538433\u001a\b\u001a\u0006DRFJ16 \u00e8\u00e7\u0097\u00a8\u0006\"`\n/\n\u001021126-701ff27f-2\u0012\b13:47:00\u001a\b20230916 \u0000*\u00037360\u0000\u0012\u001d\r\u00ea\u00d9\u0012\u00c2\u0015#;\u0092\u00c2\u001d\u0000\u00009C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u001c\u00c7\u00b1@(\u00e8\u00e7\u0097\u00a8\u0006B\b\u001a\u0006DRFJ16" + }, + { + "type": "con_recorrido", + "entity": "\n$f003275a-7e73-4967-aafd-d45d4626d1b1\u001a\u00b3\u000f\n/\n\u001021065-701ff27f-2\u0012\b15:21:00\u001a\b20230916 \u0000*\u00037360\u0001\u0012\u0011\b\u0003\u0012\u0006\u0010\u00b9\u00e8\u0097\u00a8\u0006\"\u000538508\u0012\u0011\b\u0004\u0012\u0006\u0010\u00fb\u00e8\u0097\u00a8\u0006\"\u000538511\u0012\u0011\b\u0005\u0012\u0006\u0010\u00a9\u00e9\u0097\u00a8\u0006\"\u000538482\u0012\u0011\b\u0006\u0012\u0006\u0010\u00bf\u00e9\u0097\u00a8\u0006\"\u000538440\u0012\u0011\b\u0007\u0012\u0006\u0010\u00db\u00e9\u0097\u00a8\u0006\"\u000538446\u0012\u0011\b\b\u0012\u0006\u0010\u009e\u00ea\u0097\u00a8\u0006\"\u000538491\u0012\u0011\b\t\u0012\u0006\u0010\u00ee\u00ea\u0097\u00a8\u0006\"\u000538498\u0012\u0011\b\n\u0012\u0006\u0010\u0096\u00eb\u0097\u00a8\u0006\"\u000538495\u0012\u0011\b\u000b\u0012\u0006\u0010\u00c6\u00ec\u0097\u00a8\u0006\"\u000537446\u0012\u0011\b\f\u0012\u0006\u0010\u0086\u00ed\u0097\u00a8\u0006\"\u000537447\u0012\u0011\b\r\u0012\u0006\u0010\u00a2\u00ed\u0097\u00a8\u0006\"\u000540929\u0012\u0011\b\u000e\u0012\u0006\u0010\u00e0\u00ed\u0097\u00a8\u0006\"\u000540946\u0012\u0011\b\u000f\u0012\u0006\u0010\u0097\u00ee\u0097\u00a8\u0006\"\u000540947\u0012\u0011\b\u0010\u0012\u0006\u0010\u009f\u00f0\u0097\u00a8\u0006\"\u000542855\u0012\u0011\b\u0011\u0012\u0006\u0010\u00b7\u00f0\u0097\u00a8\u0006\"\u000541975\u0012\u0011\b\u0012\u0012\u0006\u0010\u00ee\u00f0\u0097\u00a8\u0006\"\u000538697\u0012\u0011\b\u0013\u0012\u0006\u0010\u009f\u00f1\u0097\u00a8\u0006\"\u000538646\u0012\u0011\b\u0014\u0012\u0006\u0010\u00c3\u00f1\u0097\u00a8\u0006\"\u000538632\u0012\u0011\b\u0015\u0012\u0006\u0010\u008e\u00f2\u0097\u00a8\u0006\"\u000538767\u0012\u0011\b\u0016\u0012\u0006\u0010\u00d2\u00f2\u0097\u00a8\u0006\"\u000538768\u0012\u0011\b\u0017\u0012\u0006\u0010\u00fb\u00f2\u0097\u00a8\u0006\"\u000538769\u0012\u0011\b\u0018\u0012\u0006\u0010\u00a3\u00f3\u0097\u00a8\u0006\"\u000549357\u0012\u0011\b\u0019\u0012\u0006\u0010\u00c8\u00f3\u0097\u00a8\u0006\"\u000538771\u0012\u0011\b\u001a\u0012\u0006\u0010\u00f6\u00f3\u0097\u00a8\u0006\"\u000538668\u0012\u0011\b\u001b\u0012\u0006\u0010\u00d8\u00f4\u0097\u00a8\u0006\"\u000538661\u0012\u0011\b\u001c\u0012\u0006\u0010\u00ac\u00f5\u0097\u00a8\u0006\"\u000538657\u0012\u0011\b\u001d\u0012\u0006\u0010\u00ea\u00f5\u0097\u00a8\u0006\"\u000538743\u0012\u0011\b\u001e\u0012\u0006\u0010\u00ae\u00f6\u0097\u00a8\u0006\"\u000538652\u0012\u0011\b\u001f\u0012\u0006\u0010\u00f1\u00f6\u0097\u00a8\u0006\"\u000538721\u0012\u0011\b \u0012\u0006\u0010\u00ac\u00f7\u0097\u00a8\u0006\"\u000538659\u0012\u0011\b!\u0012\u0006\u0010\u008c\u00f8\u0097\u00a8\u0006\"\u000538674\u0012\u0011\b\"\u0012\u0006\u0010\u00d5\u00f8\u0097\u00a8\u0006\"\u000538649\u0012\u0011\b#\u0012\u0006\u0010\u00ea\u00f9\u0097\u00a8\u0006\"\u000538735\u0012\u0011\b$\u0012\u0006\u0010\u00a8\u00fa\u0097\u00a8\u0006\"\u000542270\u0012\u0011\b%\u0012\u0006\u0010\u00dc\u00fa\u0097\u00a8\u0006\"\u000542271\u0012\u0011\b&\u0012\u0006\u0010\u00bf\u00fc\u0097\u00a8\u0006\"\u000538688\u0012\u0011\b'\u0012\u0006\u0010\u0083\u00fd\u0097\u00a8\u0006\"\u000538673\u0012\u0011\b(\u0012\u0006\u0010\u00e2\u00fd\u0097\u00a8\u0006\"\u000539785\u0012\u0011\b)\u0012\u0006\u0010\u0093\u00fe\u0097\u00a8\u0006\"\u000538664\u0012\u0011\b*\u0012\u0006\u0010\u00d7\u00fe\u0097\u00a8\u0006\"\u000538702\u0012\u0011\b+\u0012\u0006\u0010\u0091\u00ff\u0097\u00a8\u0006\"\u000539787\u0012\u0011\b,\u0012\u0006\u0010\u00c8\u00ff\u0097\u00a8\u0006\"\u000538501\u0012\u0011\b-\u0012\u0006\u0010\u00a1\u0080\u0098\u00a8\u0006\"\u000538692\u0012\u0011\b.\u0012\u0006\u0010\u00fc\u0080\u0098\u00a8\u0006\"\u000538714\u0012\u0011\b/\u0012\u0006\u0010\u00c3\u0081\u0098\u00a8\u0006\"\u000539791\u0012\u0011\b0\u0012\u0006\u0010\u00ea\u0081\u0098\u00a8\u0006\"\u000538506\u0012\u0011\b1\u0012\u0006\u0010\u00b1\u0082\u0098\u00a8\u0006\"\u000538635\u0012\u0011\b2\u0012\u0006\u0010\u00e5\u0082\u0098\u00a8\u0006\"\u000538509\u0012\u0011\b3\u0012\u0006\u0010\u00a3\u0083\u0098\u00a8\u0006\"\u000538642\u0012\u0011\b4\u0012\u0006\u0010\u00e6\u0083\u0098\u00a8\u0006\"\u000539795\u0012\u0011\b5\u0012\u0006\u0010\u008e\u0084\u0098\u00a8\u0006\"\u000538502\u0012\u0011\b6\u0012\u0006\u0010\u00f7\u0084\u0098\u00a8\u0006\"\u000538503\u0012\u0011\b7\u0012\u0006\u0010\u00bf\u0087\u0098\u00a8\u0006\"\u000535692\u0012\u0011\b8\u0012\u0006\u0010\u00ae\u0088\u0098\u00a8\u0006\"\u000535693\u0012\u0011\b9\u0012\u0006\u0010\u0097\u0089\u0098\u00a8\u0006\"\u000535694\u0012\u0011\b:\u0012\u0006\u0010\u00c6\u0089\u0098\u00a8\u0006\"\u000535695\u0012\u0011\b;\u0012\u0006\u0010\u00b5\u008a\u0098\u00a8\u0006\"\u000535696\u0012\u0011\b<\u0012\u0006\u0010\u00fd\u008c\u0098\u00a8\u0006\"\u000535697\u0012\u0011\b=\u0012\u0006\u0010\u0083\u008f\u0098\u00a8\u0006\"\u000539778\u0012\u0011\b>\u0012\u0006\u0010\u00f3\u0090\u0098\u00a8\u0006\"\u000535797\u0012\u0011\b?\u0012\u0006\u0010\u00e5\u0091\u0098\u00a8\u0006\"\u000535798\u0012\u0011\b@\u0012\u0006\u0010\u00ba\u0092\u0098\u00a8\u0006\"\u000535799\u0012\u0011\bA\u0012\u0006\u0010\u00e7\u0093\u0098\u00a8\u0006\"\u000535800\u0012\u0011\bB\u0012\u0006\u0010\u00ea\u0094\u0098\u00a8\u0006\"\u000535801\u0012\u0011\bC\u0012\u0006\u0010\u00b1\u0095\u0098\u00a8\u0006\"\u000535802\u0012\u0011\bD\u0012\u0006\u0010\u00b7\u0096\u0098\u00a8\u0006\"\u000535803\u0012\u0011\bE\u0012\u0006\u0010\u00d8\u0097\u0098\u00a8\u0006\"\u000538507\u0012\u0011\bF\u0012\u0006\u0010\u00f2\u0098\u0098\u00a8\u0006\"\u000534473\u0012\u0011\bG\u0012\u0006\u0010\u00fb\u0099\u0098\u00a8\u0006\"\u000538500\u0012\u0011\bH\u0012\u0006\u0010\u00f4\u009a\u0098\u00a8\u0006\"\u000535808\u0012\u0011\bI\u0012\u0006\u0010\u00d0\u009c\u0098\u00a8\u0006\"\u000535710\u0012\u0011\bJ\u0012\u0006\u0010\u00ec\u009d\u0098\u00a8\u0006\"\u000550036\u0012\u0011\bK\u0012\u0006\u0010\u00e8\u00a4\u0098\u00a8\u0006\"\u000550037\u0012\u0011\bL\u0012\u0006\u0010\u00fc\u00a9\u0098\u00a8\u0006\"\u000550038\u0012\u0011\bM\u0012\u0006\u0010\u0081\u00ad\u0098\u00a8\u0006\"\u000550039\u0012\u0011\bN\u0012\u0006\u0010\u00a0\u00af\u0098\u00a8\u0006\"\u000550040\u0012\u0011\bO\u0012\u0006\u0010\u00c7\u00b3\u0098\u00a8\u0006\"\u000550041\u0012\u0012\bP\u0012\u0006\u0010\u00fe\u00ba\u0098\u00a8\u0006\"\u0006Jun-15\u0012\u0012\bQ\u0012\u0006\u0010\u00b8\u00c0\u0098\u00a8\u0006\"\u0006Jun-13\u0012\u0011\bR\u0012\u0006\u0010\u00b4\u00ce\u0098\u00a8\u0006\"\u00056-Oct\u0012\u0011\bS\u0012\u0006\u0010\u00ac\u00d3\u0098\u00a8\u0006\"\u00056-Aug\u0012\u0011\bT\u0012\u0006\u0010\u0095\u00e3\u0098\u00a8\u0006\"\u00056-Jun\u0012\u0011\bU\u0012\u0006\u0010\u0098\u00f2\u0098\u00a8\u0006\"\u00056-Feb\u0012\u0011\bV\u0012\u0006\u0010\u00eb\u0087\u0099\u00a8\u0006\"\u00057-Jul\u0012\u0011\bW\u0012\u0006\u0010\u00f2\u00b9\u0099\u00a8\u0006\"\u00057-Feb\u0012\u0011\bX\u0012\u0006\u0010\u008d\u00d1\u0099\u00a8\u0006\"\u00058-Jan\u0012\u0011\bY\u0012\u0006\u0010\u00e1\u00dd\u0099\u00a8\u0006\"\u00059-Jan\u0012\u0012\bZ\u0012\u0006\u0010\u00da\u00ef\u0099\u00a8\u0006\"\u000610-Apr\u0012\u0012\b[\u0012\u0006\u0010\u00f2\u008e\u009a\u00a8\u0006\"\u000610-Jan\u0012\u0011\b\\\u0012\u0006\u0010\u00a1\u00aa\u009a\u00a8\u0006\"\u000544863\u0012\u0012\b]\u0012\u0006\u0010\u00ad\u00c2\u009a\u00a8\u0006\"\u000610-Mar\u0012\u0012\b^\u0012\u0006\u0010\u00cb\u00f5\u009a\u00a8\u0006\"\u000611-Jan\u0012\u0011\b_\u0012\u0006\u0010\u008c\u00ab\u009b\u00a8\u0006\"\u000544866\u0012\u0011\b`\u0012\u0006\u0010\u00b3\u00f4\u009b\u00a8\u0006\"\u000544867\u0012\u0011\ba\u0012\u0006\u0010\u00c3\u00b8\u009c\u00a8\u0006\"\u000544868\u0012\u0011\bb\u0012\u0006\u0010\u00e5\u00ea\u009c\u00a8\u0006\"\u000544869\u0012\u0011\bc\u0012\u0006\u0010\u00a4\u00e2\u009d\u00a8\u0006\"\u000544870\u0012\u0011\bd\u0012\u0006\u0010\u009a\u00ea\u009e\u00a8\u0006\"\u000544871\u0012\u0011\be\u0012\u0006\u0010\u00ba\u00f5\u00a0\u00a8\u0006\"\u000544872\u0012\u0011\bf\u0012\u0006\u0010\u00ff\u00fe\u00a8\u00a8\u0006\"\u000550020\u001a\b\u001a\u0006WT1876 \u008c\u00e8\u0097\u00a8\u0006\"`\n/\n\u001021065-701ff27f-2\u0012\b15:21:00\u001a\b20230916 \u0000*\u00037360\u0001\u0012\u001d\r'\u00e4\u0012\u00c2\u0015\u00dbH\u0092\u00c2\u001d\u0000\u0000%C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u008e?(\u00ca\u00e8\u0097\u00a8\u0006B\b\u001a\u0006WT1876" + }, + { + "type": "con_recorrido", + "entity": "\n$09d10caa-eb5b-49db-8c8b-a9ab470272d8\u001a\u009b\u0010\n/\n\u001021198-701ff27f-2\u0012\b15:21:00\u001a\b20230916 \u0000*\u00037370\u0001\u0012\u0011\b\t\u0012\u0006\u0010\u00e8\u00e8\u0097\u00a8\u0006\"\u000538495\u0012\u0011\b\n\u0012\u0006\u0010\u0082\u00ea\u0097\u00a8\u0006\"\u000540928\u0012\u0011\b\u000b\u0012\u0006\u0010\u00ae\u00ea\u0097\u00a8\u0006\"\u000537446\u0012\u0011\b\f\u0012\u0006\u0010\u00fa\u00ea\u0097\u00a8\u0006\"\u000537447\u0012\u0011\b\r\u0012\u0006\u0010\u0090\u00eb\u0097\u00a8\u0006\"\u000540929\u0012\u0011\b\u000e\u0012\u0006\u0010\u00d0\u00eb\u0097\u00a8\u0006\"\u000540946\u0012\u0011\b\u000f\u0012\u0006\u0010\u0088\u00ec\u0097\u00a8\u0006\"\u000540947\u0012\u0011\b\u0010\u0012\u0006\u0010\u00b2\u00ec\u0097\u00a8\u0006\"\u000542245\u0012\u0011\b\u0011\u0012\u0006\u0010\u00dc\u00ec\u0097\u00a8\u0006\"\u000542246\u0012\u0011\b\u0012\u0012\u0006\u0010\u0091\u00ed\u0097\u00a8\u0006\"\u000538779\u0012\u0011\b\u0013\u0012\u0006\u0010\u00bf\u00ed\u0097\u00a8\u0006\"\u000542247\u0012\u0011\b\u0014\u0012\u0006\u0010\u00ec\u00ed\u0097\u00a8\u0006\"\u000542248\u0012\u0011\b\u0015\u0012\u0006\u0010\u008a\u00ee\u0097\u00a8\u0006\"\u000538782\u0012\u0011\b\u0016\u0012\u0006\u0010\u00f7\u00ee\u0097\u00a8\u0006\"\u000542249\u0012\u0011\b\u0017\u0012\u0006\u0010\u0098\u00f0\u0097\u00a8\u0006\"\u000542250\u0012\u0011\b\u0018\u0012\u0006\u0010\u00e4\u00f0\u0097\u00a8\u0006\"\u000538630\u0012\u0011\b\u0019\u0012\u0006\u0010\u00a2\u00f1\u0097\u00a8\u0006\"\u000542252\u0012\u0011\b\u001a\u0012\u0006\u0010\u00c0\u00f1\u0097\u00a8\u0006\"\u000542253\u0012\u0011\b\u001b\u0012\u0006\u0010\u00e6\u00f1\u0097\u00a8\u0006\"\u000542254\u0012\u0011\b\u001c\u0012\u0006\u0010\u008f\u00f2\u0097\u00a8\u0006\"\u000542255\u0012\u0011\b\u001d\u0012\u0006\u0010\u00ab\u00f2\u0097\u00a8\u0006\"\u000542256\u0012\u0011\b\u001e\u0012\u0006\u0010\u00be\u00f2\u0097\u00a8\u0006\"\u000542257\u0012\u0011\b\u001f\u0012\u0006\u0010\u00d4\u00f2\u0097\u00a8\u0006\"\u000542258\u0012\u0011\b \u0012\u0006\u0010\u00ee\u00f2\u0097\u00a8\u0006\"\u000542259\u0012\u0011\b!\u0012\u0006\u0010\u009e\u00f3\u0097\u00a8\u0006\"\u000542260\u0012\u0011\b\"\u0012\u0006\u0010\u00c3\u00f3\u0097\u00a8\u0006\"\u000542261\u0012\u0011\b#\u0012\u0006\u0010\u0090\u00f4\u0097\u00a8\u0006\"\u000538659\u0012\u0011\b$\u0012\u0006\u0010\u00e3\u00f4\u0097\u00a8\u0006\"\u000538674\u0012\u0011\b%\u0012\u0006\u0010\u00a9\u00f5\u0097\u00a8\u0006\"\u000538649\u0012\u0011\b&\u0012\u0006\u0010\u00b8\u00f6\u0097\u00a8\u0006\"\u000538735\u0012\u0011\b'\u0012\u0006\u0010\u00f0\u00f6\u0097\u00a8\u0006\"\u000542270\u0012\u0011\b(\u0012\u0006\u0010\u009f\u00f7\u0097\u00a8\u0006\"\u000542271\u0012\u0011\b)\u0012\u0006\u0010\u00f4\u00f8\u0097\u00a8\u0006\"\u000538688\u0012\u0011\b*\u0012\u0006\u0010\u00a9\u00f9\u0097\u00a8\u0006\"\u000538673\u0012\u0011\b+\u0012\u0006\u0010\u00fd\u00f9\u0097\u00a8\u0006\"\u000539785\u0012\u0011\b,\u0012\u0006\u0010\u00a8\u00fa\u0097\u00a8\u0006\"\u000538664\u0012\u0011\b-\u0012\u0006\u0010\u00e5\u00fa\u0097\u00a8\u0006\"\u000538702\u0012\u0011\b.\u0012\u0006\u0010\u0097\u00fb\u0097\u00a8\u0006\"\u000539787\u0012\u0011\b/\u0012\u0006\u0010\u00c7\u00fb\u0097\u00a8\u0006\"\u000538501\u0012\u0011\b0\u0012\u0006\u0010\u008a\u00fc\u0097\u00a8\u0006\"\u000538692\u0012\u0011\b1\u0012\u0006\u0010\u00dc\u00fc\u0097\u00a8\u0006\"\u000538714\u0012\u0011\b2\u0012\u0006\u0010\u0098\u00fd\u0097\u00a8\u0006\"\u000539791\u0012\u0011\b3\u0012\u0006\u0010\u00c2\u00fd\u0097\u00a8\u0006\"\u000538506\u0012\u0011\b4\u0012\u0006\u0010\u00a7\u00fe\u0097\u00a8\u0006\"\u000549326\u0012\u0011\b5\u0012\u0006\u0010\u009e\u00ff\u0097\u00a8\u0006\"\u000549324\u0012\u0011\b6\u0012\u0006\u0010\u00d1\u00ff\u0097\u00a8\u0006\"\u000549323\u0012\u0011\b7\u0012\u0006\u0010\u008a\u0080\u0098\u00a8\u0006\"\u000538503\u0012\u0011\b8\u0012\u0006\u0010\u00e9\u0081\u0098\u00a8\u0006\"\u000535691\u0012\u0011\b9\u0012\u0006\u0010\u00f7\u0082\u0098\u00a8\u0006\"\u000535693\u0012\u0011\b:\u0012\u0006\u0010\u00c8\u0083\u0098\u00a8\u0006\"\u000535694\u0012\u0011\b;\u0012\u0006\u0010\u0084\u0084\u0098\u00a8\u0006\"\u000535695\u0012\u0011\b<\u0012\u0006\u0010\u00cc\u0084\u0098\u00a8\u0006\"\u000535696\u0012\u0011\b=\u0012\u0006\u0010\u00db\u0086\u0098\u00a8\u0006\"\u000535697\u0012\u0011\b>\u0012\u0006\u0010\u00ac\u0088\u0098\u00a8\u0006\"\u000539778\u0012\u0011\b?\u0012\u0006\u0010\u00ea\u0089\u0098\u00a8\u0006\"\u000535797\u0012\u0011\b@\u0012\u0006\u0010\u00b7\u008a\u0098\u00a8\u0006\"\u000535798\u0012\u0011\bA\u0012\u0006\u0010\u0080\u008b\u0098\u00a8\u0006\"\u000535799\u0012\u0011\bB\u0012\u0006\u0010\u0088\u008c\u0098\u00a8\u0006\"\u000535800\u0012\u0011\bC\u0012\u0006\u0010\u00ec\u008c\u0098\u00a8\u0006\"\u000535801\u0012\u0011\bD\u0012\u0006\u0010\u00a1\u008d\u0098\u00a8\u0006\"\u000535802\u0012\u0011\bE\u0012\u0006\u0010\u0086\u008e\u0098\u00a8\u0006\"\u000535803\u0012\u0011\bF\u0012\u0006\u0010\u00fe\u008e\u0098\u00a8\u0006\"\u000538507\u0012\u0011\bG\u0012\u0006\u0010\u00ef\u008f\u0098\u00a8\u0006\"\u000534473\u0012\u0011\bH\u0012\u0006\u0010\u00d4\u0090\u0098\u00a8\u0006\"\u000538500\u0012\u0011\bI\u0012\u0006\u0010\u00c1\u0091\u0098\u00a8\u0006\"\u000535808\u0012\u0011\bJ\u0012\u0006\u0010\u00ce\u0092\u0098\u00a8\u0006\"\u000535710\u0012\u0011\bK\u0012\u0006\u0010\u00bf\u0093\u0098\u00a8\u0006\"\u000550036\u0012\u0011\bL\u0012\u0006\u0010\u00b8\u0098\u0098\u00a8\u0006\"\u000550037\u0012\u0011\bM\u0012\u0006\u0010\u00fc\u009b\u0098\u00a8\u0006\"\u000550038\u0012\u0011\bN\u0012\u0006\u0010\u0080\u009e\u0098\u00a8\u0006\"\u000550039\u0012\u0011\bO\u0012\u0006\u0010\u00d2\u009f\u0098\u00a8\u0006\"\u000550040\u0012\u0011\bP\u0012\u0006\u0010\u0093\u00a2\u0098\u00a8\u0006\"\u000550041\u0012\u0012\bQ\u0012\u0006\u0010\u00ec\u00a6\u0098\u00a8\u0006\"\u0006Jun-15\u0012\u0012\bR\u0012\u0006\u0010\u00ab\u00aa\u0098\u00a8\u0006\"\u0006Jun-13\u0012\u0011\bS\u0012\u0006\u0010\u00c4\u00b2\u0098\u00a8\u0006\"\u00056-Oct\u0012\u0011\bT\u0012\u0006\u0010\u0085\u00b5\u0098\u00a8\u0006\"\u00056-Aug\u0012\u0011\bU\u0012\u0006\u0010\u00a4\u00bd\u0098\u00a8\u0006\"\u00056-Jun\u0012\u0011\bV\u0012\u0006\u0010\u00d5\u00c5\u0098\u00a8\u0006\"\u00056-Feb\u0012\u0014\bW\u0012\u0006\u0010\u009f\u00cf\u0098\u00a8\u0006\"\b10940386\u0012\u0014\bX\u0012\u0006\u0010\u00a1\u00d3\u0098\u00a8\u0006\"\b10940383\u0012\u0014\bY\u0012\u0006\u0010\u00db\u00d6\u0098\u00a8\u0006\"\b10940382\u0012\u0014\bZ\u0012\u0006\u0010\u00d2\u00da\u0098\u00a8\u0006\"\b10940381\u0012\u0014\b[\u0012\u0006\u0010\u0094\u00e1\u0098\u00a8\u0006\"\b10940374\u0012\u0014\b\\\u0012\u0006\u0010\u00cb\u00e9\u0098\u00a8\u0006\"\b10940370\u0012\u0014\b]\u0012\u0006\u0010\u00ea\u00ec\u0098\u00a8\u0006\"\b10940367\u0012\u0014\b^\u0012\u0006\u0010\u00d1\u00f0\u0098\u00a8\u0006\"\b10940368\u0012\u0014\b_\u0012\u0006\u0010\u00ee\u00fb\u0098\u00a8\u0006\"\b10940388\u0012\u0012\b`\u0012\u0006\u0010\u00d3\u009b\u0099\u00a8\u0006\"\u000610-Apr\u0012\u0012\ba\u0012\u0006\u0010\u00ef\u00ab\u0099\u00a8\u0006\"\u000610-Jan\u0012\u0011\bb\u0012\u0006\u0010\u00f3\u00b7\u0099\u00a8\u0006\"\u000544863\u0012\u0012\bc\u0012\u0006\u0010\u00f8\u00c1\u0099\u00a8\u0006\"\u000610-Mar\u0012\u0012\bd\u0012\u0006\u0010\u00f6\u00d5\u0099\u00a8\u0006\"\u000611-Jan\u0012\u0011\be\u0012\u0006\u0010\u00f1\u00eb\u0099\u00a8\u0006\"\u000544866\u0012\u0011\bf\u0012\u0006\u0010\u00aa\u00ff\u0099\u00a8\u0006\"\u000544867\u0012\u0011\bg\u0012\u0006\u0010\u0095\u008e\u009a\u00a8\u0006\"\u000544868\u0012\u0011\bh\u0012\u0006\u0010\u00f8\u009e\u009a\u00a8\u0006\"\u000544869\u0012\u0011\bi\u0012\u0006\u0010\u00ee\u00b5\u009a\u00a8\u0006\"\u000544870\u0012\u0011\bj\u0012\u0006\u0010\u00b2\u00d1\u009a\u00a8\u0006\"\u000544871\u0012\u0011\bk\u0012\u0006\u0010\u00b0\u00f8\u009a\u00a8\u0006\"\u000544872\u0012\u0011\bl\u0012\u0006\u0010\u00ec\u00ca\u009b\u00a8\u0006\"\u000550020\u0012\u0011\bm\u0012\u0006\u0010\u0084\u0084\u009d\u00a8\u0006\"\u000514-11\u0012\u0011\bn\u0012\u0006\u0010\u00f0\u008e\u009e\u00a8\u0006\"\u000591162\u0012\u0011\bo\u0012\u0006\u0010\u00a0\u00ec\u00a2\u00a8\u0006\"\u000550023\u0012\u0012\bp\u0012\u0006\u0010\u00d6\u00bd\u00a0\u00a9\u0006\"\u000614-Jul\u001a\b\u001a\u0006BGBL13 \u00c9\u00e8\u0097\u00a8\u0006\"`\n/\n\u001021198-701ff27f-2\u0012\b15:21:00\u001a\b20230916 \u0000*\u00037370\u0001\u0012\u001d\r\u008a\u00e4\u0012\u00c2\u0015\u008aE\u0092\u00c2\u001d\u0000\u0000cC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UU\u0005A(\u00c9\u00e8\u0097\u00a8\u0006B\b\u001a\u0006BGBL13" + }, + { + "type": "con_recorrido", + "entity": "\n$5a12e27a-fd61-4f8d-839b-0c1bde1a3fa5\u001a\u00c5\u0010\n/\n\u001021255-701ff27f-2\u0012\b15:20:00\u001a\b20230916 \u0000*\u00037370\u0000\u0012\u0011\b\u001d\u0012\u0006\u0010\u00c9\u00e8\u0097\u00a8\u0006\"\u000537567\u0012\u0012\b\u001e\u0012\u0006\u0010\u00e2\u00e8\u0097\u00a8\u0006\"\u000613-Jan\u0012\u0012\b\u001f\u0012\u0006\u0010\u0098\u00e9\u0097\u00a8\u0006\"\u000613-Feb\u0012\u0012\b \u0012\u0006\u0010\u00b3\u00e9\u0097\u00a8\u0006\"\u000628-Jan\u0012\u0010\b!\u0012\u0006\u0010\u00e4\u00e9\u0097\u00a8\u0006\"\u000412-3\u0012\u0012\b\"\u0012\u0006\u0010\u00b3\u00ea\u0097\u00a8\u0006\"\u000612-Jan\u0012\u0012\b#\u0012\u0006\u0010\u00df\u00ea\u0097\u00a8\u0006\"\u000612-Feb\u0012\u0014\b$\u0012\u0006\u0010\u00b9\u00eb\u0097\u00a8\u0006\"\b10940364\u0012\u0014\b%\u0012\u0006\u0010\u0081\u00ec\u0097\u00a8\u0006\"\b10940365\u0012\u0014\b&\u0012\u0006\u0010\u00a9\u00ec\u0097\u00a8\u0006\"\b10940366\u0012\u0014\b'\u0012\u0006\u0010\u00c6\u00ec\u0097\u00a8\u0006\"\b10940369\u0012\u0014\b(\u0012\u0006\u0010\u00f5\u00ec\u0097\u00a8\u0006\"\b10940372\u0012\u0014\b)\u0012\u0006\u0010\u00b1\u00ed\u0097\u00a8\u0006\"\b10940380\u0012\u0011\b*\u0012\u0006\u0010\u00b4\u00ef\u0097\u00a8\u0006\"\u00056-Jan\u0012\u0011\b+\u0012\u0006\u0010\u00f7\u00ef\u0097\u00a8\u0006\"\u00056-Mar\u0012\u0011\b,\u0012\u0006\u0010\u00d9\u00f0\u0097\u00a8\u0006\"\u00056-May\u0012\u0011\b-\u0012\u0006\u0010\u00f0\u00f1\u0097\u00a8\u0006\"\u00056-Jul\u0012\u0011\b.\u0012\u0006\u0010\u00af\u00f2\u0097\u00a8\u0006\"\u00056-Sep\u0012\u0011\b/\u0012\u0006\u0010\u008a\u00f3\u0097\u00a8\u0006\"\u00056-Nov\u0012\u0011\b0\u0012\u0006\u0010\u00ef\u00f3\u0097\u00a8\u0006\"\u00056-Dec\u0012\u0012\b1\u0012\u0006\u0010\u00c9\u00f4\u0097\u00a8\u0006\"\u0006Jun-14\u0012\u0012\b2\u0012\u0006\u0010\u00e1\u00f5\u0097\u00a8\u0006\"\u0006Jun-17\u0012\u0012\b3\u0012\u0006\u0010\u00b3\u00f6\u0097\u00a8\u0006\"\u0006Jun-19\u0012\u0012\b4\u0012\u0006\u0010\u00f1\u00f6\u0097\u00a8\u0006\"\u0006Jun-20\u0012\u0012\b5\u0012\u0006\u0010\u00b1\u00f7\u0097\u00a8\u0006\"\u0006Jun-22\u0012\u0012\b6\u0012\u0006\u0010\u00f6\u00f7\u0097\u00a8\u0006\"\u0006Jun-24\u0012\u0012\b7\u0012\u0006\u0010\u00d5\u00f8\u0097\u00a8\u0006\"\u0006Jun-25\u0012\u0011\b8\u0012\u0006\u0010\u0096\u00fb\u0097\u00a8\u0006\"\u000590003\u0012\u0011\b9\u0012\u0006\u0010\u00cc\u00fb\u0097\u00a8\u0006\"\u000590007\u0012\u0011\b:\u0012\u0006\u0010\u0088\u00fc\u0097\u00a8\u0006\"\u000590008\u0012\u0011\b;\u0012\u0006\u0010\u008d\u00fd\u0097\u00a8\u0006\"\u000539599\u0012\u0011\b<\u0012\u0006\u0010\u00a9\u00fd\u0097\u00a8\u0006\"\u000539600\u0012\u0011\b=\u0012\u0006\u0010\u00fc\u00fd\u0097\u00a8\u0006\"\u000537496\u0012\u0011\b>\u0012\u0006\u0010\u00ba\u00fe\u0097\u00a8\u0006\"\u000545064\u0012\u0011\b?\u0012\u0006\u0010\u0099\u00ff\u0097\u00a8\u0006\"\u000537506\u0012\u0011\b@\u0012\u0006\u0010\u00fc\u00ff\u0097\u00a8\u0006\"\u000545069\u0012\u0011\bA\u0012\u0006\u0010\u0095\u0081\u0098\u00a8\u0006\"\u000537523\u0012\u0011\bB\u0012\u0006\u0010\u00ce\u0081\u0098\u00a8\u0006\"\u000537477\u0012\u0011\bC\u0012\u0006\u0010\u00cb\u0082\u0098\u00a8\u0006\"\u000549310\u0012\u0011\bD\u0012\u0006\u0010\u00fa\u0082\u0098\u00a8\u0006\"\u000549311\u0012\u0011\bE\u0012\u0006\u0010\u00cb\u0083\u0098\u00a8\u0006\"\u000539634\u0012\u0011\bF\u0012\u0006\u0010\u00f4\u0083\u0098\u00a8\u0006\"\u000539635\u0012\u0011\bG\u0012\u0006\u0010\u00bb\u0084\u0098\u00a8\u0006\"\u000539636\u0012\u0011\bH\u0012\u0006\u0010\u008f\u0085\u0098\u00a8\u0006\"\u000549503\u0012\u0011\bI\u0012\u0006\u0010\u00df\u0086\u0098\u00a8\u0006\"\u000539637\u0012\u0011\bJ\u0012\u0006\u0010\u00b4\u0087\u0098\u00a8\u0006\"\u000549317\u0012\u0011\bK\u0012\u0006\u0010\u00eb\u0087\u0098\u00a8\u0006\"\u000549318\u0012\u0011\bL\u0012\u0006\u0010\u00e0\u0088\u0098\u00a8\u0006\"\u000549319\u0012\u0011\bM\u0012\u0006\u0010\u00d5\u0089\u0098\u00a8\u0006\"\u000539641\u0012\u0011\bN\u0012\u0006\u0010\u00fe\u008d\u0098\u00a8\u0006\"\u000549324\u0012\u0011\bO\u0012\u0006\u0010\u00d3\u008e\u0098\u00a8\u0006\"\u000549325\u0012\u0011\bP\u0012\u0006\u0010\u00d4\u008f\u0098\u00a8\u0006\"\u000549326\u0012\u0011\bQ\u0012\u0006\u0010\u0089\u0090\u0098\u00a8\u0006\"\u000539648\u0012\u0011\bR\u0012\u0006\u0010\u0084\u0091\u0098\u00a8\u0006\"\u000539649\u0012\u0011\bS\u0012\u0006\u0010\u00da\u0091\u0098\u00a8\u0006\"\u000545112\u0012\u0011\bT\u0012\u0006\u0010\u00da\u0092\u0098\u00a8\u0006\"\u000545113\u0012\u0011\bU\u0012\u0006\u0010\u0091\u0094\u0098\u00a8\u0006\"\u000537490\u0012\u0011\bV\u0012\u0006\u0010\u00ba\u0095\u0098\u00a8\u0006\"\u000545115\u0012\u0011\bW\u0012\u0006\u0010\u00fe\u0095\u0098\u00a8\u0006\"\u000545116\u0012\u0011\bX\u0012\u0006\u0010\u00c9\u0097\u0098\u00a8\u0006\"\u000545118\u0012\u0011\bY\u0012\u0006\u0010\u00aa\u0099\u0098\u00a8\u0006\"\u000545119\u0012\u0011\bZ\u0012\u0006\u0010\u00b6\u009a\u0098\u00a8\u0006\"\u000545120\u0012\u0011\b[\u0012\u0006\u0010\u00e9\u009b\u0098\u00a8\u0006\"\u000545121\u0012\u0011\b\\\u0012\u0006\u0010\u00f7\u009c\u0098\u00a8\u0006\"\u000538535\u0012\u0011\b]\u0012\u0006\u0010\u0086\u009f\u0098\u00a8\u0006\"\u000538536\u0012\u0013\b^\u0012\u0006\u0010\u008b\u00a0\u0098\u00a8\u0006\"\u00074838437\u0012\u0011\b_\u0012\u0006\u0010\u00dd\u00a1\u0098\u00a8\u0006\"\u000545085\u0012\u0011\b`\u0012\u0006\u0010\u00a0\u00a4\u0098\u00a8\u0006\"\u000545086\u0012\u0011\ba\u0012\u0006\u0010\u0097\u00a6\u0098\u00a8\u0006\"\u000538539\u0012\u0011\bb\u0012\u0006\u0010\u009a\u00a8\u0098\u00a8\u0006\"\u000538540\u0012\u0011\bc\u0012\u0006\u0010\u0095\u00ab\u0098\u00a8\u0006\"\u000538544\u0012\u0011\bd\u0012\u0006\u0010\u00cd\u00ad\u0098\u00a8\u0006\"\u000538545\u0012\u0011\be\u0012\u0006\u0010\u00f5\u00b4\u0098\u00a8\u0006\"\u000545095\u0012\u0011\bf\u0012\u0006\u0010\u0080\u00b7\u0098\u00a8\u0006\"\u000545096\u0012\u0011\bg\u0012\u0006\u0010\u00de\u00ba\u0098\u00a8\u0006\"\u000545098\u0012\u0011\bh\u0012\u0006\u0010\u00bf\u00bc\u0098\u00a8\u0006\"\u000545099\u0012\u0011\bi\u0012\u0006\u0010\u00d8\u00bd\u0098\u00a8\u0006\"\u000545100\u0012\u0011\bj\u0012\u0006\u0010\u00a5\u00bf\u0098\u00a8\u0006\"\u000545101\u0012\u0011\bk\u0012\u0006\u0010\u00ca\u00c1\u0098\u00a8\u0006\"\u000545102\u0012\u0011\bl\u0012\u0006\u0010\u00a3\u00c3\u0098\u00a8\u0006\"\u000545103\u0012\u0011\bm\u0012\u0006\u0010\u00f4\u00c4\u0098\u00a8\u0006\"\u000545104\u0012\u0011\bn\u0012\u0006\u0010\u00da\u00c6\u0098\u00a8\u0006\"\u000545122\u0012\u0011\bo\u0012\u0006\u0010\u00ce\u00ca\u0098\u00a8\u0006\"\u000538630\u0012\u0011\bp\u0012\u0006\u0010\u008a\u00df\u0098\u00a8\u0006\"\u000549349\u0012\u0011\bq\u0012\u0006\u0010\u00ae\u00ed\u0098\u00a8\u0006\"\u000549350\u0012\u0011\br\u0012\u0006\u0010\u00f2\u00f3\u0098\u00a8\u0006\"\u000549351\u0012\u0011\bs\u0012\u0006\u0010\u00fa\u00f8\u0098\u00a8\u0006\"\u000549352\u0012\u0011\bt\u0012\u0006\u0010\u009c\u00ff\u0098\u00a8\u0006\"\u000549353\u0012\u0011\bu\u0012\u0006\u0010\u00c8\u0086\u0099\u00a8\u0006\"\u000549354\u0012\u0011\bv\u0012\u0006\u0010\u00a3\u0091\u0099\u00a8\u0006\"\u000538566\u0012\u0011\bw\u0012\u0006\u0010\u00bc\u0097\u0099\u00a8\u0006\"\u000538567\u0012\u0011\bx\u0012\u0006\u0010\u00ad\u00a2\u0099\u00a8\u0006\"\u000538568\u0012\u0011\by\u0012\u0006\u0010\u00d4\u00a9\u0099\u00a8\u0006\"\u000538569\u0012\u0011\bz\u0012\u0006\u0010\u00c0\u00b5\u0099\u00a8\u0006\"\u000538570\u0012\u0011\b{\u0012\u0006\u0010\u00c6\u00c7\u0099\u00a8\u0006\"\u000538571\u0012\u0011\b|\u0012\u0006\u0010\u00c4\u00db\u0099\u00a8\u0006\"\u000538572\u0012\u0011\b}\u0012\u0006\u0010\u00e2\u00ba\u009a\u00a8\u0006\"\u000538393\u0012\u0011\b~\u0012\u0006\u0010\u00d4\u00e5\u009a\u00a8\u0006\"\u000538394\u0012\u0011\b\u007f\u0012\u0006\u0010\u00d5\u009a\u009b\u00a8\u0006\"\u000538395\u0012\u0012\b\u0080\u0001\u0012\u0006\u0010\u0087\u00cb\u009b\u00a8\u0006\"\u000538396\u0012\u0012\b\u0081\u0001\u0012\u0006\u0010\u009f\u00bf\u009c\u00a8\u0006\"\u000538397\u0012\u0012\b\u0082\u0001\u0012\u0006\u0010\u0087\u00fd\u009c\u00a8\u0006\"\u000538398\u0012\u0012\b\u0083\u0001\u0012\u0006\u0010\u00d1\u00d0\u009d\u00a8\u0006\"\u000538399\u0012\u0012\b\u0084\u0001\u0012\u0006\u0010\u00ff\u00a3\u00a0\u00a8\u0006\"\u000538400\u0012\u0012\b\u0085\u0001\u0012\u0006\u0010\u00b0\u00c8\u00a4\u00a8\u0006\"\u000538401\u0012\u0012\b\u0086\u0001\u0012\u0006\u0010\u00bd\u0094\u00b0\u00a8\u0006\"\u000538402\u001a\b\u001a\u0006CFWC16 \u009c\u00e8\u0097\u00a8\u0006\"`\n/\n\u001021255-701ff27f-2\u0012\b15:20:00\u001a\b20230916 \u0000*\u00037370\u0000\u0012\u001d\r/\u00ed\u0012\u00c2\u0015\\\u00fa\u0091\u00c2\u001d\u0000\u0000tC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u000eA(\u009c\u00e8\u0097\u00a8\u0006B\b\u001a\u0006CFWC16" + }, + { + "type": "con_recorrido", + "entity": "\n$6c1f2d20-073a-4190-bd59-6a14489a1b2c\u001a\u0082\f\n/\n\u001021253-701ff27f-2\u0012\b14:40:00\u001a\b20230916 \u0000*\u00037370\u0000\u0012\u0011\b;\u0012\u0006\u0010\u00eb\u00e8\u0097\u00a8\u0006\"\u000539599\u0012\u0011\b<\u0012\u0006\u0010\u0083\u00e9\u0097\u00a8\u0006\"\u000539600\u0012\u0011\b=\u0012\u0006\u0010\u00c9\u00e9\u0097\u00a8\u0006\"\u000537496\u0012\u0011\b>\u0012\u0006\u0010\u00fc\u00e9\u0097\u00a8\u0006\"\u000545064\u0012\u0011\b?\u0012\u0006\u0010\u00c7\u00ea\u0097\u00a8\u0006\"\u000537506\u0012\u0011\b@\u0012\u0006\u0010\u0093\u00eb\u0097\u00a8\u0006\"\u000545069\u0012\u0011\bA\u0012\u0006\u0010\u0084\u00ec\u0097\u00a8\u0006\"\u000537523\u0012\u0011\bB\u0012\u0006\u0010\u00ac\u00ec\u0097\u00a8\u0006\"\u000537477\u0012\u0011\bC\u0012\u0006\u0010\u0082\u00ed\u0097\u00a8\u0006\"\u000549310\u0012\u0011\bD\u0012\u0006\u0010\u00a1\u00ed\u0097\u00a8\u0006\"\u000549311\u0012\u0011\bE\u0012\u0006\u0010\u00d6\u00ed\u0097\u00a8\u0006\"\u000539634\u0012\u0011\bF\u0012\u0006\u0010\u00f1\u00ed\u0097\u00a8\u0006\"\u000539635\u0012\u0011\bG\u0012\u0006\u0010\u009e\u00ee\u0097\u00a8\u0006\"\u000539636\u0012\u0011\bH\u0012\u0006\u0010\u00d2\u00ee\u0097\u00a8\u0006\"\u000549503\u0012\u0011\bI\u0012\u0006\u0010\u00cd\u00ef\u0097\u00a8\u0006\"\u000539637\u0012\u0011\bJ\u0012\u0006\u0010\u00fd\u00ef\u0097\u00a8\u0006\"\u000549317\u0012\u0011\bK\u0012\u0006\u0010\u009c\u00f0\u0097\u00a8\u0006\"\u000549318\u0012\u0011\bL\u0012\u0006\u0010\u00dc\u00f0\u0097\u00a8\u0006\"\u000549319\u0012\u0011\bM\u0012\u0006\u0010\u009a\u00f1\u0097\u00a8\u0006\"\u000539641\u0012\u0011\bN\u0012\u0006\u0010\u00a8\u00f3\u0097\u00a8\u0006\"\u000549324\u0012\u0011\bO\u0012\u0006\u0010\u00ce\u00f3\u0097\u00a8\u0006\"\u000549325\u0012\u0011\bP\u0012\u0006\u0010\u0087\u00f4\u0097\u00a8\u0006\"\u000549326\u0012\u0011\bQ\u0012\u0006\u0010\u009e\u00f4\u0097\u00a8\u0006\"\u000539648\u0012\u0011\bR\u0012\u0006\u0010\u00d2\u00f4\u0097\u00a8\u0006\"\u000539649\u0012\u0011\bS\u0012\u0006\u0010\u00f7\u00f4\u0097\u00a8\u0006\"\u000545112\u0012\u0011\bT\u0012\u0006\u0010\u00ab\u00f5\u0097\u00a8\u0006\"\u000545113\u0012\u0011\bU\u0012\u0006\u0010\u00f3\u00f5\u0097\u00a8\u0006\"\u000537490\u0012\u0011\bV\u0012\u0006\u0010\u00b4\u00f6\u0097\u00a8\u0006\"\u000545115\u0012\u0011\bW\u0012\u0006\u0010\u00cd\u00f6\u0097\u00a8\u0006\"\u000545116\u0012\u0011\bX\u0012\u0006\u0010\u0097\u00f7\u0097\u00a8\u0006\"\u000545118\u0012\u0011\bY\u0012\u0006\u0010\u00e6\u00f7\u0097\u00a8\u0006\"\u000545119\u0012\u0011\bZ\u0012\u0006\u0010\u0096\u00f8\u0097\u00a8\u0006\"\u000545120\u0012\u0011\b[\u0012\u0006\u0010\u00d1\u00f8\u0097\u00a8\u0006\"\u000545121\u0012\u0011\b\\\u0012\u0006\u0010\u00fe\u00f8\u0097\u00a8\u0006\"\u000538535\u0012\u0011\b]\u0012\u0006\u0010\u00d3\u00f9\u0097\u00a8\u0006\"\u000538536\u0012\u0013\b^\u0012\u0006\u0010\u00fb\u00f9\u0097\u00a8\u0006\"\u00074838437\u0012\u0011\b_\u0012\u0006\u0010\u00b8\u00fa\u0097\u00a8\u0006\"\u000545085\u0012\u0011\b`\u0012\u0006\u0010\u0093\u00fb\u0097\u00a8\u0006\"\u000545086\u0012\u0011\ba\u0012\u0006\u0010\u00d6\u00fb\u0097\u00a8\u0006\"\u000538539\u0012\u0011\bb\u0012\u0006\u0010\u0099\u00fc\u0097\u00a8\u0006\"\u000538540\u0012\u0011\bc\u0012\u0006\u0010\u00f8\u00fc\u0097\u00a8\u0006\"\u000538544\u0012\u0011\bd\u0012\u0006\u0010\u00c2\u00fd\u0097\u00a8\u0006\"\u000538545\u0012\u0011\be\u0012\u0006\u0010\u008f\u00ff\u0097\u00a8\u0006\"\u000545095\u0012\u0011\bf\u0012\u0006\u0010\u00c6\u00ff\u0097\u00a8\u0006\"\u000545096\u0012\u0011\bg\u0012\u0006\u0010\u00a3\u0080\u0098\u00a8\u0006\"\u000545098\u0012\u0011\bh\u0012\u0006\u0010\u00cd\u0080\u0098\u00a8\u0006\"\u000545099\u0012\u0011\bi\u0012\u0006\u0010\u00e9\u0080\u0098\u00a8\u0006\"\u000545100\u0012\u0011\bj\u0012\u0006\u0010\u008e\u0081\u0098\u00a8\u0006\"\u000545101\u0012\u0011\bk\u0012\u0006\u0010\u00c1\u0081\u0098\u00a8\u0006\"\u000545102\u0012\u0011\bl\u0012\u0006\u0010\u00e5\u0081\u0098\u00a8\u0006\"\u000545103\u0012\u0011\bm\u0012\u0006\u0010\u0088\u0082\u0098\u00a8\u0006\"\u000545104\u0012\u0011\bn\u0012\u0006\u0010\u00ad\u0082\u0098\u00a8\u0006\"\u000545122\u0012\u0011\bo\u0012\u0006\u0010\u00fb\u0082\u0098\u00a8\u0006\"\u000538630\u0012\u0011\bp\u0012\u0006\u0010\u00db\u0085\u0098\u00a8\u0006\"\u000549349\u0012\u0011\bq\u0012\u0006\u0010\u00a4\u0087\u0098\u00a8\u0006\"\u000549350\u0012\u0011\br\u0012\u0006\u0010\u00f7\u0087\u0098\u00a8\u0006\"\u000549351\u0012\u0011\bs\u0012\u0006\u0010\u00b3\u0088\u0098\u00a8\u0006\"\u000549352\u0012\u0011\bt\u0012\u0006\u0010\u00f9\u0088\u0098\u00a8\u0006\"\u000549353\u0012\u0011\bu\u0012\u0006\u0010\u00c7\u0089\u0098\u00a8\u0006\"\u000549354\u0012\u0011\bv\u0012\u0006\u0010\u00af\u008a\u0098\u00a8\u0006\"\u000538566\u0012\u0011\bw\u0012\u0006\u0010\u00e6\u008a\u0098\u00a8\u0006\"\u000538567\u0012\u0011\bx\u0012\u0006\u0010\u00c2\u008b\u0098\u00a8\u0006\"\u000538568\u0012\u0011\by\u0012\u0006\u0010\u00fb\u008b\u0098\u00a8\u0006\"\u000538569\u0012\u0011\bz\u0012\u0006\u0010\u00d0\u008c\u0098\u00a8\u0006\"\u000538570\u0012\u0011\b{\u0012\u0006\u0010\u00c5\u008d\u0098\u00a8\u0006\"\u000538571\u0012\u0011\b|\u0012\u0006\u0010\u00b7\u008e\u0098\u00a8\u0006\"\u000538572\u0012\u0011\b}\u0012\u0006\u0010\u00b8\u0091\u0098\u00a8\u0006\"\u000538393\u0012\u0011\b~\u0012\u0006\u0010\u00af\u0092\u0098\u00a8\u0006\"\u000538394\u0012\u0011\b\u007f\u0012\u0006\u0010\u00a7\u0093\u0098\u00a8\u0006\"\u000538395\u0012\u0012\b\u0080\u0001\u0012\u0006\u0010\u00ff\u0093\u0098\u00a8\u0006\"\u000538396\u0012\u0012\b\u0081\u0001\u0012\u0006\u0010\u009f\u0095\u0098\u00a8\u0006\"\u000538397\u0012\u0012\b\u0082\u0001\u0012\u0006\u0010\u00e0\u0095\u0098\u00a8\u0006\"\u000538398\u0012\u0012\b\u0083\u0001\u0012\u0006\u0010\u00a7\u0096\u0098\u00a8\u0006\"\u000538399\u0012\u0012\b\u0084\u0001\u0012\u0006\u0010\u00de\u0097\u0098\u00a8\u0006\"\u000538400\u0012\u0012\b\u0085\u0001\u0012\u0006\u0010\u00eb\u0098\u0098\u00a8\u0006\"\u000538401\u0012\u0012\b\u0086\u0001\u0012\u0006\u0010\u00f5\u0099\u0098\u00a8\u0006\"\u000538402\u0012\u0012\b\u0087\u0001\u0012\u0006\u0010\u00f2\u009b\u0098\u00a8\u0006\"\u000538433\u001a\b\u001a\u0006CTDG26 \u0090\u00e8\u0097\u00a8\u0006\"`\n/\n\u001021253-701ff27f-2\u0012\b14:40:00\u001a\b20230916 \u0000*\u00037370\u0000\u0012\u001d\r\u00beC\u0013\u00c2\u0015`\u0013\u0092\u00c2\u001d\u0000\u0000kC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00ab\u00aa\u0012A(\u0090\u00e8\u0097\u00a8\u0006B\b\u001a\u0006CTDG26" + }, + { + "type": "con_recorrido", + "entity": "\n$6f40a23a-cc78-4f23-b342-2d947adcaa4d\u001a\u00a3\u0004\n/\n\u001021193-701ff27f-2\u0012\b13:41:00\u001a\b20230916 \u0000*\u00037370\u0001\u0012\u0011\bk\u0012\u0006\u0010\u00d5\u00e8\u0097\u00a8\u0006\"\u000544872\u0012\u0011\bl\u0012\u0006\u0010\u0098\u00e9\u0097\u00a8\u0006\"\u000550020\u0012\u0011\bm\u0012\u0006\u0010\u00f1\u00e9\u0097\u00a8\u0006\"\u000514-11\u0012\u0011\bn\u0012\u0006\u0010\u0099\u00ea\u0097\u00a8\u0006\"\u000591162\u0012\u0011\bo\u0012\u0006\u0010\u00eb\u00ea\u0097\u00a8\u0006\"\u000550023\u0012\u0012\bp\u0012\u0006\u0010\u00cf\u00eb\u0097\u00a8\u0006\"\u000614-Jul\u0012\u0012\bq\u0012\u0006\u0010\u00f5\u00eb\u0097\u00a8\u0006\"\u000614-Apr\u0012\u0011\br\u0012\u0006\u0010\u00a3\u00ec\u0097\u00a8\u0006\"\u000537474\u0012\u0011\bs\u0012\u0006\u0010\u00d3\u00ec\u0097\u00a8\u0006\"\u000544879\u0012\u0011\bt\u0012\u0006\u0010\u00e9\u00ec\u0097\u00a8\u0006\"\u000544880\u0012\u0011\bu\u0012\u0006\u0010\u0088\u00ed\u0097\u00a8\u0006\"\u000544881\u0012\u0011\bv\u0012\u0006\u0010\u009f\u00ed\u0097\u00a8\u0006\"\u000544874\u0012\u0011\bw\u0012\u0006\u0010\u00d6\u00ed\u0097\u00a8\u0006\"\u000538151\u0012\u0011\bx\u0012\u0006\u0010\u00e2\u00ee\u0097\u00a8\u0006\"\u000515-13\u0012\u0011\by\u0012\u0006\u0010\u0097\u00ef\u0097\u00a8\u0006\"\u000538194\u0012\u0011\bz\u0012\u0006\u0010\u00ae\u00ef\u0097\u00a8\u0006\"\u000538124\u0012\u0011\b{\u0012\u0006\u0010\u00bb\u00ef\u0097\u00a8\u0006\"\u000550014\u0012\u0011\b|\u0012\u0006\u0010\u00c8\u00ef\u0097\u00a8\u0006\"\u000538204\u0012\u0011\b}\u0012\u0006\u0010\u00f1\u00ef\u0097\u00a8\u0006\"\u000550013\u0012\u0011\b~\u0012\u0006\u0010\u0093\u00f0\u0097\u00a8\u0006\"\u000538127\u0012\u0011\b\u007f\u0012\u0006\u0010\u00a2\u00f0\u0097\u00a8\u0006\"\u000550029\u0012\u0012\b\u0080\u0001\u0012\u0006\u0010\u00b8\u00f0\u0097\u00a8\u0006\"\u000550015\u0012\u0012\b\u0081\u0001\u0012\u0006\u0010\u00f5\u00f1\u0097\u00a8\u0006\"\u000538149\u0012\u0013\b\u0082\u0001\u0012\u0006\u0010\u00b6\u00f2\u0097\u00a8\u0006\"\u000614-Feb\u0012\u0012\b\u0083\u0001\u0012\u0006\u0010\u00c7\u00f2\u0097\u00a8\u0006\"\u000550028\u001a\b\u001a\u0006DGLT68 \u00ac\u00e8\u0097\u00a8\u0006\"`\n/\n\u001021193-701ff27f-2\u0012\b13:41:00\u001a\b20230916 \u0000*\u00037370\u0001\u0012\u001d\r\u00c9\u00e8\u0012\u00c2\u0015D\u00f9\u0091\u00c2\u001d\u0000\u0000\u00c0@!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00c7q\u00cc@(\u00ac\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DGLT68" + }, + { + "type": "con_recorrido", + "entity": "\n$9d34577b-08b0-4b32-ab9c-7a64ac2505a7\u001a\u00e3\u000e\n/\n\u001021196-701ff27f-2\u0012\b14:41:00\u001a\b20230916 \u0000*\u00037370\u0001\u0012\u0011\b&\u0012\u0006\u0010\u0093\u00e9\u0097\u00a8\u0006\"\u000538735\u0012\u0011\b'\u0012\u0006\u0010\u00cc\u00e9\u0097\u00a8\u0006\"\u000542270\u0012\u0011\b(\u0012\u0006\u0010\u00fc\u00e9\u0097\u00a8\u0006\"\u000542271\u0012\u0011\b)\u0012\u0006\u0010\u00c9\u00eb\u0097\u00a8\u0006\"\u000538688\u0012\u0011\b*\u0012\u0006\u0010\u00fb\u00eb\u0097\u00a8\u0006\"\u000538673\u0012\u0011\b+\u0012\u0006\u0010\u00c7\u00ec\u0097\u00a8\u0006\"\u000539785\u0012\u0011\b,\u0012\u0006\u0010\u00ee\u00ec\u0097\u00a8\u0006\"\u000538664\u0012\u0011\b-\u0012\u0006\u0010\u00a3\u00ed\u0097\u00a8\u0006\"\u000538702\u0012\u0011\b.\u0012\u0006\u0010\u00ce\u00ed\u0097\u00a8\u0006\"\u000539787\u0012\u0011\b/\u0012\u0006\u0010\u00f7\u00ed\u0097\u00a8\u0006\"\u000538501\u0012\u0011\b0\u0012\u0006\u0010\u00af\u00ee\u0097\u00a8\u0006\"\u000538692\u0012\u0011\b1\u0012\u0006\u0010\u00f3\u00ee\u0097\u00a8\u0006\"\u000538714\u0012\u0011\b2\u0012\u0006\u0010\u00a3\u00ef\u0097\u00a8\u0006\"\u000539791\u0012\u0011\b3\u0012\u0006\u0010\u00c5\u00ef\u0097\u00a8\u0006\"\u000538506\u0012\u0011\b4\u0012\u0006\u0010\u0093\u00f0\u0097\u00a8\u0006\"\u000549326\u0012\u0011\b5\u0012\u0006\u0010\u00ee\u00f0\u0097\u00a8\u0006\"\u000549324\u0012\u0011\b6\u0012\u0006\u0010\u0094\u00f1\u0097\u00a8\u0006\"\u000549323\u0012\u0011\b7\u0012\u0006\u0010\u00be\u00f1\u0097\u00a8\u0006\"\u000538503\u0012\u0011\b8\u0012\u0006\u0010\u00dd\u00f2\u0097\u00a8\u0006\"\u000535691\u0012\u0011\b9\u0012\u0006\u0010\u00be\u00f3\u0097\u00a8\u0006\"\u000535693\u0012\u0011\b:\u0012\u0006\u0010\u00f4\u00f3\u0097\u00a8\u0006\"\u000535694\u0012\u0011\b;\u0012\u0006\u0010\u009c\u00f4\u0097\u00a8\u0006\"\u000535695\u0012\u0011\b<\u0012\u0006\u0010\u00cb\u00f4\u0097\u00a8\u0006\"\u000535696\u0012\u0011\b=\u0012\u0006\u0010\u00f5\u00f5\u0097\u00a8\u0006\"\u000535697\u0012\u0011\b>\u0012\u0006\u0010\u00f2\u00f6\u0097\u00a8\u0006\"\u000539778\u0012\u0011\b?\u0012\u0006\u0010\u00df\u00f7\u0097\u00a8\u0006\"\u000535797\u0012\u0011\b@\u0012\u0006\u0010\u008b\u00f8\u0097\u00a8\u0006\"\u000535798\u0012\u0011\bA\u0012\u0006\u0010\u00b3\u00f8\u0097\u00a8\u0006\"\u000535799\u0012\u0011\bB\u0012\u0006\u0010\u00fe\u00f8\u0097\u00a8\u0006\"\u000535800\u0012\u0011\bC\u0012\u0006\u0010\u00b4\u00f9\u0097\u00a8\u0006\"\u000535801\u0012\u0011\bD\u0012\u0006\u0010\u00d0\u00f9\u0097\u00a8\u0006\"\u000535802\u0012\u0011\bE\u0012\u0006\u0010\u0085\u00fa\u0097\u00a8\u0006\"\u000535803\u0012\u0011\bF\u0012\u0006\u0010\u00c3\u00fa\u0097\u00a8\u0006\"\u000538507\u0012\u0011\bG\u0012\u0006\u0010\u00fc\u00fa\u0097\u00a8\u0006\"\u000534473\u0012\u0011\bH\u0012\u0006\u0010\u00ae\u00fb\u0097\u00a8\u0006\"\u000538500\u0012\u0011\bI\u0012\u0006\u0010\u00e3\u00fb\u0097\u00a8\u0006\"\u000535808\u0012\u0011\bJ\u0012\u0006\u0010\u00a7\u00fc\u0097\u00a8\u0006\"\u000535710\u0012\u0011\bK\u0012\u0006\u0010\u00dc\u00fc\u0097\u00a8\u0006\"\u000550036\u0012\u0011\bL\u0012\u0006\u0010\u00f8\u00fe\u0097\u00a8\u0006\"\u000550037\u0012\u0011\bM\u0012\u0006\u0010\u00b5\u0080\u0098\u00a8\u0006\"\u000550038\u0012\u0011\bN\u0012\u0006\u0010\u009d\u0081\u0098\u00a8\u0006\"\u000550039\u0012\u0011\bO\u0012\u0006\u0010\u00ee\u0081\u0098\u00a8\u0006\"\u000550040\u0012\u0011\bP\u0012\u0006\u0010\u00e7\u0082\u0098\u00a8\u0006\"\u000550041\u0012\u0012\bQ\u0012\u0006\u0010\u00bd\u0084\u0098\u00a8\u0006\"\u0006Jun-15\u0012\u0012\bR\u0012\u0006\u0010\u00d3\u0085\u0098\u00a8\u0006\"\u0006Jun-13\u0012\u0011\bS\u0012\u0006\u0010\u0099\u0088\u0098\u00a8\u0006\"\u00056-Oct\u0012\u0011\bT\u0012\u0006\u0010\u00f7\u0088\u0098\u00a8\u0006\"\u00056-Aug\u0012\u0011\bU\u0012\u0006\u0010\u0095\u008b\u0098\u00a8\u0006\"\u00056-Jun\u0012\u0011\bV\u0012\u0006\u0010\u009e\u008d\u0098\u00a8\u0006\"\u00056-Feb\u0012\u0014\bW\u0012\u0006\u0010\u00af\u008f\u0098\u00a8\u0006\"\b10940386\u0012\u0014\bX\u0012\u0006\u0010\u009a\u0090\u0098\u00a8\u0006\"\b10940383\u0012\u0014\bY\u0012\u0006\u0010\u00f2\u0090\u0098\u00a8\u0006\"\b10940382\u0012\u0014\bZ\u0012\u0006\u0010\u00d3\u0091\u0098\u00a8\u0006\"\b10940381\u0012\u0014\b[\u0012\u0006\u0010\u00ec\u0092\u0098\u00a8\u0006\"\b10940374\u0012\u0014\b\\\u0012\u0006\u0010\u00a3\u0094\u0098\u00a8\u0006\"\b10940370\u0012\u0014\b]\u0012\u0006\u0010\u00e7\u0094\u0098\u00a8\u0006\"\b10940367\u0012\u0014\b^\u0012\u0006\u0010\u00b3\u0095\u0098\u00a8\u0006\"\b10940368\u0012\u0014\b_\u0012\u0006\u0010\u0085\u0097\u0098\u00a8\u0006\"\b10940388\u0012\u0012\b`\u0012\u0006\u0010\u00fb\u009a\u0098\u00a8\u0006\"\u000610-Apr\u0012\u0012\ba\u0012\u0006\u0010\u00d1\u009c\u0098\u00a8\u0006\"\u000610-Jan\u0012\u0011\bb\u0012\u0006\u0010\u00e0\u009d\u0098\u00a8\u0006\"\u000544863\u0012\u0012\bc\u0012\u0006\u0010\u00cf\u009e\u0098\u00a8\u0006\"\u000610-Mar\u0012\u0012\bd\u0012\u0006\u0010\u0098\u00a0\u0098\u00a8\u0006\"\u000611-Jan\u0012\u0011\be\u0012\u0006\u0010\u00db\u00a1\u0098\u00a8\u0006\"\u000544866\u0012\u0011\bf\u0012\u0006\u0010\u00f4\u00a2\u0098\u00a8\u0006\"\u000544867\u0012\u0011\bg\u0012\u0006\u0010\u00df\u00a3\u0098\u00a8\u0006\"\u000544868\u0012\u0011\bh\u0012\u0006\u0010\u00ce\u00a4\u0098\u00a8\u0006\"\u000544869\u0012\u0011\bi\u0012\u0006\u0010\u00d8\u00a5\u0098\u00a8\u0006\"\u000544870\u0012\u0011\bj\u0012\u0006\u0010\u00eb\u00a6\u0098\u00a8\u0006\"\u000544871\u0012\u0011\bk\u0012\u0006\u0010\u009f\u00a8\u0098\u00a8\u0006\"\u000544872\u0012\u0011\bl\u0012\u0006\u0010\u00cc\u00aa\u0098\u00a8\u0006\"\u000550020\u0012\u0011\bm\u0012\u0006\u0010\u0082\u00ae\u0098\u00a8\u0006\"\u000514-11\u0012\u0011\bn\u0012\u0006\u0010\u00d4\u00af\u0098\u00a8\u0006\"\u000591162\u0012\u0011\bo\u0012\u0006\u0010\u00a4\u00b3\u0098\u00a8\u0006\"\u000550023\u0012\u0012\bp\u0012\u0006\u0010\u009c\u00b8\u0098\u00a8\u0006\"\u000614-Jul\u0012\u0012\bq\u0012\u0006\u0010\u009b\u00ba\u0098\u00a8\u0006\"\u000614-Apr\u0012\u0011\br\u0012\u0006\u0010\u00ea\u00bc\u0098\u00a8\u0006\"\u000537474\u0012\u0011\bs\u0012\u0006\u0010\u00d9\u00bf\u0098\u00a8\u0006\"\u000544879\u0012\u0011\bt\u0012\u0006\u0010\u008b\u00c1\u0098\u00a8\u0006\"\u000544880\u0012\u0011\bu\u0012\u0006\u0010\u0090\u00c3\u0098\u00a8\u0006\"\u000544881\u0012\u0011\bv\u0012\u0006\u0010\u00d7\u00c4\u0098\u00a8\u0006\"\u000544874\u0012\u0011\bw\u0012\u0006\u0010\u00ce\u00c8\u0098\u00a8\u0006\"\u000538151\u0012\u0011\bx\u0012\u0006\u0010\u009b\u00d4\u0098\u00a8\u0006\"\u000515-13\u0012\u0011\by\u0012\u0006\u0010\u00aa\u00d9\u0098\u00a8\u0006\"\u000538194\u0012\u0011\bz\u0012\u0006\u0010\u00db\u00db\u0098\u00a8\u0006\"\u000538124\u0012\u0011\b{\u0012\u0006\u0010\u0087\u00dd\u0098\u00a8\u0006\"\u000550014\u0012\u0011\b|\u0012\u0006\u0010\u00c1\u00de\u0098\u00a8\u0006\"\u000538204\u0012\u0011\b}\u0012\u0006\u0010\u0089\u00e3\u0098\u00a8\u0006\"\u000550013\u0012\u0011\b~\u0012\u0006\u0010\u009a\u00e7\u0098\u00a8\u0006\"\u000538127\u0012\u0011\b\u007f\u0012\u0006\u0010\u008c\u00e9\u0098\u00a8\u0006\"\u000550029\u0012\u0012\b\u0080\u0001\u0012\u0006\u0010\u00f5\u00eb\u0098\u00a8\u0006\"\u000550015\u0012\u0012\b\u0081\u0001\u0012\u0006\u0010\u00b8\u008a\u0099\u00a8\u0006\"\u000538149\u0012\u0013\b\u0082\u0001\u0012\u0006\u0010\u0093\u0098\u0099\u00a8\u0006\"\u000614-Feb\u0012\u0012\b\u0083\u0001\u0012\u0006\u0010\u008b\u009c\u0099\u00a8\u0006\"\u000550028\u001a\b\u001a\u0006FYBB73 \u00ca\u00e8\u0097\u00a8\u0006\"`\n/\n\u001021196-701ff27f-2\u0012\b14:41:00\u001a\b20230916 \u0000*\u00037370\u0001\u0012\u001d\r\u00c8\u0003\u0013\u00c2\u0015B/\u0092\u00c2\u001d\u0000\u00002C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00c7q\u00cc@(\u00ca\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FYBB73" + }, + { + "type": "con_recorrido", + "entity": "\n$787773c6-f684-4c61-ab34-3aa91ce01722\u001a\u0083\n\n/\n\u001021195-701ff27f-2\u0012\b14:21:00\u001a\b20230916 \u0000*\u00037370\u0001\u0012\u0011\bF\u0012\u0006\u0010\u00e9\u00e8\u0097\u00a8\u0006\"\u000538507\u0012\u0011\bG\u0012\u0006\u0010\u009f\u00e9\u0097\u00a8\u0006\"\u000534473\u0012\u0011\bH\u0012\u0006\u0010\u00cd\u00e9\u0097\u00a8\u0006\"\u000538500\u0012\u0011\bI\u0012\u0006\u0010\u00fd\u00e9\u0097\u00a8\u0006\"\u000535808\u0012\u0011\bJ\u0012\u0006\u0010\u00b9\u00ea\u0097\u00a8\u0006\"\u000535710\u0012\u0011\bK\u0012\u0006\u0010\u00e6\u00ea\u0097\u00a8\u0006\"\u000550036\u0012\u0011\bL\u0012\u0006\u0010\u00cd\u00ec\u0097\u00a8\u0006\"\u000550037\u0012\u0011\bM\u0012\u0006\u0010\u00db\u00ed\u0097\u00a8\u0006\"\u000550038\u0012\u0011\bN\u0012\u0006\u0010\u00a6\u00ee\u0097\u00a8\u0006\"\u000550039\u0012\u0011\bO\u0012\u0006\u0010\u00df\u00ee\u0097\u00a8\u0006\"\u000550040\u0012\u0011\bP\u0012\u0006\u0010\u00b1\u00ef\u0097\u00a8\u0006\"\u000550041\u0012\u0012\bQ\u0012\u0006\u0010\u00bb\u00f0\u0097\u00a8\u0006\"\u0006Jun-15\u0012\u0012\bR\u0012\u0006\u0010\u0098\u00f1\u0097\u00a8\u0006\"\u0006Jun-13\u0012\u0011\bS\u0012\u0006\u0010\u00d6\u00f2\u0097\u00a8\u0006\"\u00056-Oct\u0012\u0011\bT\u0012\u0006\u0010\u0089\u00f3\u0097\u00a8\u0006\"\u00056-Aug\u0012\u0011\bU\u0012\u0006\u0010\u00a1\u00f4\u0097\u00a8\u0006\"\u00056-Jun\u0012\u0011\bV\u0012\u0006\u0010\u00a5\u00f5\u0097\u00a8\u0006\"\u00056-Feb\u0012\u0014\bW\u0012\u0006\u0010\u00a6\u00f6\u0097\u00a8\u0006\"\b10940386\u0012\u0014\bX\u0012\u0006\u0010\u00d7\u00f6\u0097\u00a8\u0006\"\b10940383\u0012\u0014\bY\u0012\u0006\u0010\u00fe\u00f6\u0097\u00a8\u0006\"\b10940382\u0012\u0014\bZ\u0012\u0006\u0010\u00a9\u00f7\u0097\u00a8\u0006\"\b10940381\u0012\u0014\b[\u0012\u0006\u0010\u00ea\u00f7\u0097\u00a8\u0006\"\b10940374\u0012\u0014\b\\\u0012\u0006\u0010\u00b7\u00f8\u0097\u00a8\u0006\"\b10940370\u0012\u0014\b]\u0012\u0006\u0010\u00d2\u00f8\u0097\u00a8\u0006\"\b10940367\u0012\u0014\b^\u0012\u0006\u0010\u00f1\u00f8\u0097\u00a8\u0006\"\b10940368\u0012\u0014\b_\u0012\u0006\u0010\u00c4\u00f9\u0097\u00a8\u0006\"\b10940388\u0012\u0012\b`\u0012\u0006\u0010\u00fe\u00fa\u0097\u00a8\u0006\"\u000610-Apr\u0012\u0012\ba\u0012\u0006\u0010\u00c8\u00fb\u0097\u00a8\u0006\"\u000610-Jan\u0012\u0011\bb\u0012\u0006\u0010\u00f9\u00fb\u0097\u00a8\u0006\"\u000544863\u0012\u0012\bc\u0012\u0006\u0010\u009e\u00fc\u0097\u00a8\u0006\"\u000610-Mar\u0012\u0012\bd\u0012\u0006\u0010\u00e0\u00fc\u0097\u00a8\u0006\"\u000611-Jan\u0012\u0011\be\u0012\u0006\u0010\u009e\u00fd\u0097\u00a8\u0006\"\u000544866\u0012\u0011\bf\u0012\u0006\u0010\u00cd\u00fd\u0097\u00a8\u0006\"\u000544867\u0012\u0011\bg\u0012\u0006\u0010\u00ee\u00fd\u0097\u00a8\u0006\"\u000544868\u0012\u0011\bh\u0012\u0006\u0010\u008f\u00fe\u0097\u00a8\u0006\"\u000544869\u0012\u0011\bi\u0012\u0006\u0010\u00b8\u00fe\u0097\u00a8\u0006\"\u000544870\u0012\u0011\bj\u0012\u0006\u0010\u00e2\u00fe\u0097\u00a8\u0006\"\u000544871\u0012\u0011\bk\u0012\u0006\u0010\u0095\u00ff\u0097\u00a8\u0006\"\u000544872\u0012\u0011\bl\u0012\u0006\u0010\u00e8\u00ff\u0097\u00a8\u0006\"\u000550020\u0012\u0011\bm\u0012\u0006\u0010\u00db\u0080\u0098\u00a8\u0006\"\u000514-11\u0012\u0011\bn\u0012\u0006\u0010\u0090\u0081\u0098\u00a8\u0006\"\u000591162\u0012\u0011\bo\u0012\u0006\u0010\u0080\u0082\u0098\u00a8\u0006\"\u000550023\u0012\u0012\bp\u0012\u0006\u0010\u0090\u0083\u0098\u00a8\u0006\"\u000614-Jul\u0012\u0012\bq\u0012\u0006\u0010\u00c7\u0083\u0098\u00a8\u0006\"\u000614-Apr\u0012\u0011\br\u0012\u0006\u0010\u008d\u0084\u0098\u00a8\u0006\"\u000537474\u0012\u0011\bs\u0012\u0006\u0010\u00d7\u0084\u0098\u00a8\u0006\"\u000544879\u0012\u0011\bt\u0012\u0006\u0010\u00fa\u0084\u0098\u00a8\u0006\"\u000544880\u0012\u0011\bu\u0012\u0006\u0010\u00ac\u0085\u0098\u00a8\u0006\"\u000544881\u0012\u0011\bv\u0012\u0006\u0010\u00d2\u0085\u0098\u00a8\u0006\"\u000544874\u0012\u0011\bw\u0012\u0006\u0010\u00ad\u0086\u0098\u00a8\u0006\"\u000538151\u0012\u0011\bx\u0012\u0006\u0010\u00a2\u0088\u0098\u00a8\u0006\"\u000515-13\u0012\u0011\by\u0012\u0006\u0010\u0083\u0089\u0098\u00a8\u0006\"\u000538194\u0012\u0011\bz\u0012\u0006\u0010\u00af\u0089\u0098\u00a8\u0006\"\u000538124\u0012\u0011\b{\u0012\u0006\u0010\u00c7\u0089\u0098\u00a8\u0006\"\u000550014\u0012\u0011\b|\u0012\u0006\u0010\u00e1\u0089\u0098\u00a8\u0006\"\u000538204\u0012\u0011\b}\u0012\u0006\u0010\u00af\u008a\u0098\u00a8\u0006\"\u000550013\u0012\u0011\b~\u0012\u0006\u0010\u00f3\u008a\u0098\u00a8\u0006\"\u000538127\u0012\u0011\b\u007f\u0012\u0006\u0010\u0091\u008b\u0098\u00a8\u0006\"\u000550029\u0012\u0012\b\u0080\u0001\u0012\u0006\u0010\u00bc\u008b\u0098\u00a8\u0006\"\u000550015\u0012\u0012\b\u0081\u0001\u0012\u0006\u0010\u00d1\u008e\u0098\u00a8\u0006\"\u000538149\u0012\u0013\b\u0082\u0001\u0012\u0006\u0010\u00e6\u008f\u0098\u00a8\u0006\"\u000614-Feb\u0012\u0012\b\u0083\u0001\u0012\u0006\u0010\u008e\u0090\u0098\u00a8\u0006\"\u000550028\u001a\b\u001a\u0006YE2808 \u00b4\u00e8\u0097\u00a8\u0006\"`\n/\n\u001021195-701ff27f-2\u0012\b14:21:00\u001a\b20230916 \u0000*\u00037370\u0001\u0012\u001d\rzG\u0013\u00c2\u0015-\u0016\u0092\u00c2\u001d\u0000\u0000xB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b4\u00e8\u0097\u00a8\u0006B\b\u001a\u0006YE2808" + }, + { + "type": "sin_recorrido", + "entity": "\n$babef592-7fab-4fe8-b46c-ff6966a36337\"/\u0012\u001d\r\u00dd\u0088\u0013\u00c2\u0015QE\u0092\u00c2\u001d\u0000\u0000\u008aC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b4\u00e8\u0096\u00a8\u0006B\b\u001a\u0006XN9621" + }, + { + "type": "sin_recorrido", + "entity": "\n$8bcd713e-a5d9-492b-8540-8e007abfb272\"/\u0012\u001d\r\u001e.\u0013\u00c2\u0015\u00db6\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u008c\u00b8\u00be\u00a7\u0006B\b\u001a\u0006WE5957" + }, + { + "type": "sin_recorrido", + "entity": "\n$bf3c2053-73c5-4eda-ba2b-2705d5365ba4\"/\u0012\u001d\r\u00bb\u00d0\u0013\u00c2\u0015_\u000b\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c4\u0094\u0094\u00a3\u0006B\b\u001a\u0006HGRP52" + }, + { + "type": "sin_recorrido", + "entity": "\n$218c2428-53c4-4f39-83b2-5b17bbcd7630\"/\u0012\u001d\r\u00dfi\u0013\u00c2\u0015J4\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f3\u00e1\u00fd\u00a4\u0006B\b\u001a\u0006ZB9417" + }, + { + "type": "sin_recorrido", + "entity": "\n$80c38e17-5868-45cb-aeed-71b264f34af6\"/\u0012\u001d\r=L\u0013\u00c2\u0015\u00b9B\u0092\u00c2\u001d\u0000\u0000\u00a0C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00e4\u00f7\u008e\u00a3\u0006B\b\u001a\u0006FXRL64" + }, + { + "type": "sin_recorrido", + "entity": "\n$c31caed9-2f9c-4d2d-ad93-c14dcaf632f3\"/\u0012\u001d\r\u00bb\u00c3\u0013\u00c2\u0015\u00f0\r\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0084\u00b9\u00d9\u00a3\u0006B\b\u001a\u0006BKSH49" + }, + { + "type": "sin_recorrido", + "entity": "\n$cc744b19-08ad-4f6a-b31b-fd631d137e5f\"/\u0012\u001d\r\u00a0\u00d0\u0013\u00c2\u0015T\u000b\u0092\u00c2\u001d\u0000\u0000HB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b2\u00e9\u0088\u00a8\u0006B\b\u001a\u0006BSRF27" + }, + { + "type": "sin_recorrido", + "entity": "\n$27e00cca-b83b-4f33-8231-2a433d7afe57\"/\u0012\u001d\rQ\u0011\u0013\u00c2\u0015\u00f89\u0092\u00c2\u001d\u0000\u0000\u00d0B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0094\u00d4\u00c8\u00a7\u0006B\b\u001a\u0006YU2038" + }, + { + "type": "sin_recorrido", + "entity": "\n$88503255-747e-4eb8-a49f-dc6632fb3919\"/\u0012\u001d\r$.\u0013\u00c2\u0015\u00bf6\u0092\u00c2\u001d\u0000\u0000\u0088C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0088\u00f3\u00fe\u00a3\u0006B\b\u001a\u0006WE5918" + }, + { + "type": "sin_recorrido", + "entity": "\n$830deda2-11db-4949-8d23-1e758946eba4\"/\u0012\u001d\r\u0085\u00f1\u0012\u00c2\u0015\u00a04\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00aa\u00b9\u00d8\u00a3\u0006B\b\u001a\u0006HJPL35" + }, + { + "type": "sin_recorrido", + "entity": "\n$d0a2bebc-ecf2-4af7-90e9-0a8b0a5b9551\"/\u0012\u001d\re\u001d\u0013\u00c2\u0015\u00c37\u0092\u00c2\u001d\u0000\u0000\u0082C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00fc\u00a0\u0094\u00a8\u0006B\b\u001a\u0006JSBB23" + }, + { + "type": "sin_recorrido", + "entity": "\n$e0b67022-8378-40d7-9900-22995afe9a8b\"/\u0012\u001d\r]\u00f1\u0012\u00c2\u0015v4\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u008c\u0086\u00da\u009f\u0006B\b\u001a\u0006GZGH37" + }, + { + "type": "sin_recorrido", + "entity": "\n$9641c90c-4bbd-4869-8a2b-d3ff178a87ba\"/\u0012\u001d\r\u00fa\u00d7\u0012\u00c2\u0015\u00a8\u00f2\u0091\u00c2\u001d\u0000\u0000\u00a4B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ae\u00b6\u00bc\u00a5\u0006B\b\u001a\u0006WA9269" + }, + { + "type": "sin_recorrido", + "entity": "\n$d3d5a544-4718-4ccd-92f7-6d258a2bc260\"/\u0012\u001d\r\u00eb^\u0013\u00c2\u0015\u00c2\u0004\u0092\u00c2\u001d\u0000\u0000\u00b0C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00e0\u00ae\u00d5\u00a2\u0006B\b\u001a\u0006YJ2035" + }, + { + "type": "sin_recorrido", + "entity": "\n$0946cc3c-2e4b-4bdf-a763-a978277ed8e2\"/\u0012\u001d\r\u00cc\u00e4\u0012\u00c2\u0015\u00fdA\u0092\u00c2\u001d\u0000\u0000IC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00fe\u00bf\u00fb\u00a7\u0006B\b\u001a\u0006BDWB37" + }, + { + "type": "sin_recorrido", + "entity": "\n$736c7bdf-7639-4f46-91b1-751457c125fa\"/\u0012\u001d\rG\u0002\u0013\u00c2\u0015\u00a1?\u0092\u00c2\u001d\u0000\u0000bC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0018B(\u00fd\u00ec\u0089\u00a6\u0006B\b\u001a\u0006FDCB31" + }, + { + "type": "sin_recorrido", + "entity": "\n$9c5c9098-a605-466b-bc1e-44791e579b9a\"/\u0012\u001d\r\u009c\u00d4\u0013\u00c2\u0015F\u0005\u0092\u00c2\u001d\u0000\u0000\u009fC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009a\u00af\u0089\u00a8\u0006B\b\u001a\u0006DYSZ71" + }, + { + "type": "sin_recorrido", + "entity": "\n$baab916a-3381-4b6f-89ca-12b2f097b366\"/\u0012\u001d\r=\u001d\u0013\u00c2\u0015\u00c32\u0092\u00c2\u001d\u0000\u0000\u0000@!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00fa\u00a2\u0094\u00a8\u0006B\b\u001a\u0006CRVH47" + }, + { + "type": "sin_recorrido", + "entity": "\n$3a10d216-8237-426c-8bfd-c5021d4c6b30\"/\u0012\u001d\r\u00c2\u0013\u0013\u00c2\u0015;:\u0092\u00c2\u001d\u0000\u0000 A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0084\u00a0\u00db\u00a5\u0006B\b\u001a\u0006YA5668" + }, + { + "type": "sin_recorrido", + "entity": "\n$91849378-3a42-4da5-a0b3-7f74ee9421a9\"/\u0012\u001d\r\u00a3\u00c3\u0013\u00c2\u0015\u0005\u000e\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0082\u00c7\u00fd\u00a7\u0006B\b\u001a\u0006ZY4200" + }, + { + "type": "sin_recorrido", + "entity": "\n$292c39df-e0f6-42e7-9933-1fd7418849b8\"/\u0012\u001d\r\u00b0\u00de\u0012\u00c2\u0015\u00c9?\u0092\u00c2\u001d\u0000\u0000`B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00d9\u0098\u00fe\u00a7\u0006B\b\u001a\u0006BTZY53" + }, + { + "type": "sin_recorrido", + "entity": "\n$f83084af-f915-43ec-a48b-e3d809bbe9c8\"/\u0012\u001d\r\u001a\u0011\u0013\u00c2\u0015\u000f:\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0080\u00fb\u0095\u00a8\u0006B\b\u001a\u0006FPZY99" + }, + { + "type": "sin_recorrido", + "entity": "\n$3d33455d-114a-4fb7-b58e-89326424ee7e\"/\u0012\u001d\r\u0087^\u0013\u00c2\u0015\u00fa\u0004\u0092\u00c2\u001d\u0000\u0000\bB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0082\u00c4\u00fc\u00a7\u0006B\b\u001a\u0006LDZT10" + }, + { + "type": "sin_recorrido", + "entity": "\n$9b4425b3-04db-40b4-ac04-9967c95f174e\"/\u0012\u001d\r@.\u0013\u00c2\u0015\u00a36\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0082\u0098\u00df\u00a7\u0006B\b\u001a\u0006WE5919" + }, + { + "type": "sin_recorrido", + "entity": "\n$0dfbd5c2-7ad7-4dd1-b784-351f3d333ab2\"/\u0012\u001d\r\u00d8Q\u0013\u00c2\u0015A7\u0092\u00c2\u001d\u0000\u0000rC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0086\u00c1\u00ee\u00a7\u0006B\b\u001a\u0006HWHK89" + }, + { + "type": "sin_recorrido", + "entity": "\n$05ff798d-f2e4-47f1-8d03-9cb201177466\"/\u0012\u001d\r\u0083\u001e\u0013\u00c2\u0015l+\u0092\u00c2\u001d\u0000\u0000\u00d0B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0094\u0092\u0094\u00a8\u0006B\b\u001a\u0006HZGX71" + }, + { + "type": "sin_recorrido", + "entity": "\n$03fb3cc5-bf26-4244-9e75-64e2155e0d27\"/\u0012\u001d\r\u00ab\u00dc\u0012\u00c2\u0015\u00d1\u00f4\u0091\u00c2\u001d\u0000\u0000CC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00eb\u008b\u00f2\u00a7\u0006B\b\u001a\u0006HYYX25" + }, + { + "type": "sin_recorrido", + "entity": "\n$daf013d5-8c81-4dc7-af77-c1d40b9f392c\"/\u0012\u001d\r\u0004\u00b5\u0013\u00c2\u0015|\u000e\u0092\u00c2\u001d\u0000\u0000\u00a0C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00d0\u00e5\u0093\u00a8\u0006B\b\u001a\u0006XU7351" + }, + { + "type": "sin_recorrido", + "entity": "\n$792ec025-4ad4-46de-a48e-edb860ba0499\"/\u0012\u001d\r\u0016\u0013\u0013\u00c2\u0015`:\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u008f\u00b3\u00d9\u00a7\u0006B\b\u001a\u0006KRXK39" + }, + { + "type": "sin_recorrido", + "entity": "\n$452a305f-fd9b-4f7f-942a-b9df2826c6c1\"/\u0012\u001d\r\u0004-\u0013\u00c2\u0015H\u0017\u0092\u00c2\u001d\u0000\u0000=C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-9\u008e\u00c3@(\u00d3\u00f8\u0081\u00a8\u0006B\b\u001a\u0006YR4145" + }, + { + "type": "sin_recorrido", + "entity": "\n$5069bf16-e951-4026-a04f-c950f0c9d32d\"/\u0012\u001d\r>\u00db\u0012\u00c2\u0015\u00a1\u00f4\u0091\u00c2\u001d\u0000\u0000BC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u008e\u00cc\u0082\u00a8\u0006B\b\u001a\u0006PW1335" + }, + { + "type": "sin_recorrido", + "entity": "\n$ce2aa4c5-db11-43e9-8576-c480495c9d0b\"/\u0012\u001d\r\u00043\u0013\u00c2\u0015\u00e6\u0019\u0092\u00c2\u001d\u0000\u0000&C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00cc\u0092\u009a\u00a7\u0006B\b\u001a\u0006FXJS20" + }, + { + "type": "sin_recorrido", + "entity": "\n$83f64a00-e343-4389-8ee3-37cf67c170f1\"/\u0012\u001d\r\u007f\u00c3\u0013\u00c2\u0015\u00ed\r\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c8\u00e9\u0086\u00a8\u0006B\b\u001a\u0006DRVV44" + }, + { + "type": "sin_recorrido", + "entity": "\n$be2547f6-6f76-4b90-964d-0b8bd2f519e6\"/\u0012\u001d\rS:\u0013\u00c2\u0015X\u001a\u0092\u00c2\u001d\u0000\u0000dC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00d2\u00e1\u0088\u00a8\u0006B\b\u001a\u0006FXFW85" + }, + { + "type": "sin_recorrido", + "entity": "\n$f21aa6ce-954c-4066-bff4-cf72539aeb64\"/\u0012\u001d\rX\u0011\u0013\u00c2\u0015\u00bf9\u0092\u00c2\u001d\u0000\u0000\u0080@!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00aa\u00c4\u00c7\u00a7\u0006B\b\u001a\u0006YV1949" + }, + { + "type": "sin_recorrido", + "entity": "\n$d3653a6a-afe4-4773-9679-6e99cdb2c341\"/\u0012\u001d\r\u00eb\u00cb\u0013\u00c2\u0015\u00ec\u0005\u0092\u00c2\u001d\u0000\u0000\u00e0@!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00e7\u0089\u0094\u00a8\u0006B\b\u001a\u0006DWHH91" + }, + { + "type": "sin_recorrido", + "entity": "\n$19c166bd-64d5-462e-8e26-2d0ca3aa3825\"/\u0012\u001d\r\u000bL\u0013\u00c2\u0015\u0092B\u0092\u00c2\u001d\u0000\u0000FC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a1\u00e0\u0097\u00a8\u0006B\b\u001a\u0006DTYV58" + }, + { + "type": "sin_recorrido", + "entity": "\n$6d823810-9e77-4c52-ba69-d84df0d05e75\"/\u0012\u001d\rb.\u0013\u00c2\u0015\u00d46\u0092\u00c2\u001d\u0000\u0000\u00c8B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u000e@(\u00c6\u00ce\u00da\u00a2\u0006B\b\u001a\u0006FFTL53" + }, + { + "type": "sin_recorrido", + "entity": "\n$62d0b114-b00e-4f30-9a13-2cb2dd0073b2\"/\u0012\u001d\rL[\u0013\u00c2\u0015R2\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b5\u00da\u00e5\u00a1\u0006B\b\u001a\u0006XS8721" + }, + { + "type": "sin_recorrido", + "entity": "\n$df89fb26-b9bf-47ec-9c83-d0df8ac0eaba\"0\u0012\u001d\rL[\u0013\u00c2\u0015R2\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ca\u00db\u00e5\u00a1\u0006B\t\u001a\u0007RVRL 27" + }, + { + "type": "sin_recorrido", + "entity": "\n$6f31455f-1436-4615-b0b2-3b756b358507\"/\u0012\u001d\rD(\u0013\u00c2\u0015\u00ce9\u0092\u00c2\u001d\u0000\u0000\u0090A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00da\u00b5\u00b8\u00a1\u0006B\b\u001a\u0006FFFFFF" + }, + { + "type": "sin_recorrido", + "entity": "\n$30744488-28b2-40da-9904-54e95ec7be51\"/\u0012\u001d\r\u00c3\u00c3\u0013\u00c2\u0015\u00dc\r\u0092\u00c2\u001d\u0000\u0000\u00a9C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0088\u00f1\u00f5\u00a6\u0006B\b\u001a\u0006XZ9788" + }, + { + "type": "sin_recorrido", + "entity": "\n$482cf3a4-c2de-4596-9067-7870825c2e28\"/\u0012\u001d\r\u00d2\u00d4\u0013\u00c2\u0015S\u0005\u0092\u00c2\u001d\u0000\u0000\u00baB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0091\u0083\u00df\u00a7\u0006B\b\u001a\u0006DWWB26" + }, + { + "type": "sin_recorrido", + "entity": "\n$8cabae95-bddd-4a78-b2ee-e0d7242fa333\"/\u0012\u001d\r\u001c\u00f7\u0012\u00c2\u0015\u00ce3\u0092\u00c2\u001d\u0000\u0000\u00a2C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00fc\u00ec\u0086\u00a8\u0006B\b\u001a\u0006YU8561" + }, + { + "type": "sin_recorrido", + "entity": "\n$94fc4699-16cb-4232-9163-5c9bfd4c4547\"/\u0012\u001d\r\u00bf\u001d\u0013\u00c2\u0015\u00f72\u0092\u00c2\u001d\u0000\u0000\u0099C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c4\u0083\u00b2\u00a5\u0006B\b\u001a\u0006DYCS25" + }, + { + "type": "sin_recorrido", + "entity": "\n$b7af1998-5f9e-4c98-a3e3-77288a229b6e\"/\u0012\u001d\r?\u00d5\u0013\u00c2\u0015\u00b3\u0005\u0092\u00c2\u001d\u0000\u0000\u001aC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ce\u00f2\u0093\u00a8\u0006B\b\u001a\u0006LHWX56" + }, + { + "type": "sin_recorrido", + "entity": "\n$b69f5415-8063-4463-a2fd-b9c27d1534b4\"/\u0012\u001d\r;.\u0013\u00c2\u0015\u00ba6\u0092\u00c2\u001d\u0000\u0000\u0090C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000 @(\u00c6\u009c\u0097\u00a8\u0006B\b\u001a\u0006DWHP41" + }, + { + "type": "sin_recorrido", + "entity": "\n$0d9ff9b5-1826-4dbe-9571-e83d4aec4cc9\"/\u0012\u001d\r\u00bd\u00cb\u0013\u00c2\u0015\u00ff\u00dc\u0091\u00c2\u001d\u0000\u0000eC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c8\u00ad\u00a6\u00a6\u0006B\b\u001a\u0006CPZZ79" + }, + { + "type": "sin_recorrido", + "entity": "\n$c00b1b71-7438-40bc-ac2e-1fa16022ca31\"/\u0012\u001d\r2-\u0013\u00c2\u0015\u008f\u0017\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b4\u0097\u0082\u00a8\u0006B\b\u001a\u0006YV2344" + }, + { + "type": "sin_recorrido", + "entity": "\n$854e9434-c282-45b5-b466-d33de6ee8515\"/\u0012\u001d\rvT\u0013\u00c2\u0015\u00f0\u0001\u0092\u00c2\u001d\u0000\u00002C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ee\u00fe\u00b2\u00a4\u0006B\b\u001a\u0006WV1924" + }, + { + "type": "sin_recorrido", + "entity": "\n$e3e354dd-ae2b-4759-aeb7-0ca436124b80\"/\u0012\u001d\r\u0090i\u0013\u00c2\u0015\u00d2\u0019\u0092\u00c2\u001d\u0000\u0000\"C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000`B(\u00e8\u0094\u00d0\u00a1\u0006B\b\u001a\u0006ZT3922" + }, + { + "type": "sin_recorrido", + "entity": "\n$f4ff8244-e794-4ed1-bdd4-dabe734da0cb\"/\u0012\u001d\rq@\u0013\u00c2\u0015\u0095\u001a\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0086\u00a4\u0083\u00a8\u0006B\b\u001a\u0006RW9671" + }, + { + "type": "sin_recorrido", + "entity": "\n$6235f0ef-32cf-41bb-8bc9-4e632aa095eb\"/\u0012\u001d\r$\\\u0013\u00c2\u0015\u00da\u001c\u0092\u00c2\u001d\u0000\u0000\u009cB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0080\u00ad\u00e9\u00a2\u0006B\b\u001a\u0006YX2769" + }, + { + "type": "sin_recorrido", + "entity": "\n$9d93050d-0e3f-4ac6-bc96-e103cd8316a0\"/\u0012\u001d\r\r\\\u0013\u00c2\u0015\u00c8\u001c\u0092\u00c2\u001d\u0000\u0000VC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00e8\u00ac\u0089\u00a7\u0006B\b\u001a\u0006WZ6629" + }, + { + "type": "sin_recorrido", + "entity": "\n$4b8c125d-ff53-4622-87a4-811c48ac9869\"/\u0012\u001d\rS.\u0013\u00c2\u0015\u00e56\u0092\u00c2\u001d\u0000\u0000\u0098B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0090\u0092\u0096\u00a8\u0006B\b\u001a\u0006DRXZ77" + }, + { + "type": "sin_recorrido", + "entity": "\n$328b2321-7460-487e-a696-0814dcaef51d\"/\u0012\u001d\r\u00e6\u00cb\u0013\u00c2\u0015\u00e4\u0005\u0092\u00c2\u001d\u0000\u0000\u00c0@!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a7\u00e7\u0097\u00a8\u0006B\b\u001a\u0006GYGK16" + }, + { + "type": "sin_recorrido", + "entity": "\n$766a4cd6-f056-4ff0-9230-f01f34e8ab43\"/\u0012\u001d\r\u0095O\u0013\u00c2\u0015\u009a\u0019\u0092\u00c2\u001d\u0000\u0000tC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000@A(\u00bb\u00f6\u00a6\u00a2\u0006B\b\u001a\u0006XU7350" + }, + { + "type": "sin_recorrido", + "entity": "\n$d0eff6da-fce0-498f-8c50-f1be0cb1d23e\"/\u0012\u001d\rD\u0011\u0013\u00c2\u0015\u0018:\u0092\u00c2\u001d\u0000\u0000XC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f8\u00c2\u00f3\u00a7\u0006B\b\u001a\u0006YV2206" + }, + { + "type": "sin_recorrido", + "entity": "\n$7c6ec234-0f1a-419a-8733-07b91ef635c4\"/\u0012\u001d\r\u009b]\u0013\u00c2\u0015(\u0093\u00ca\u0086\u00a8\u0006B\b\u001a\u0006YU8303" + }, + { + "type": "sin_recorrido", + "entity": "\n$5d50a1c1-d755-406f-a29a-b691f6cd640b\"/\u0012\u001d\r*\u001d\u0013\u00c2\u0015\u00c62\u0092\u00c2\u001d\u0000\u00000C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00cf\u0099\u00d6\u00a4\u0006B\b\u001a\u0006CXLF11" + }, + { + "type": "sin_recorrido", + "entity": "\n$7d33df46-97c8-4a33-a37a-5fd92785db3d\"/\u0012\u001d\r1f\u0013\u00c2\u0015\u00f6H\u0092\u00c2\u001d\u0000\u0000\u00a9C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0088\u00de\u0083\u00a8\u0006B\b\u001a\u0006DZFG54" + }, + { + "type": "sin_recorrido", + "entity": "\n$d807e8b4-c57c-49d0-b996-3af5fc9840b2\"/\u0012\u001d\rY=\u0013\u00c2\u0015\u00b9\u0011\u0092\u00c2\u001d\u0000\u0000\u0010B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008e\u00e3(A(\u00af\u00e8\u0097\u00a8\u0006B\b\u001a\u0006YU3543" + }, + { + "type": "sin_recorrido", + "entity": "\n$6870e621-c66b-433d-984c-885f38432bed\"/\u0012\u001d\r`:\u0013\u00c2\u0015\r\u000f\u0092\u00c2\u001d\u0000\u0000\u008cC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a4\u00e8\u00f1\u00a7\u0006B\b\u001a\u0006JPWD29" + }, + { + "type": "sin_recorrido", + "entity": "\n$1d7c18f5-efb6-451e-9f74-0a468e7b1fa8\"/\u0012\u001d\r\u00d1P\u0013\u00c2\u0015\u00cbK\u0092\u00c2\u001d\u0000\u0080\u00b2C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0096\u00e8\u0097\u00a8\u0006B\b\u001a\u0006YR3358" + }, + { + "type": "sin_recorrido", + "entity": "\n$1ff75269-d65b-490a-884f-d7f99554b67c\"/\u0012\u001d\r\u009c\u00d4\u0013\u00c2\u0015.\u0005\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a9\u00c7\u00d6\u00a5\u0006B\b\u001a\u0006YP2184" + }, + { + "type": "sin_recorrido", + "entity": "\n$3453c5b9-4e39-435c-8f1a-c0edf6877207\"/\u0012\u001d\r\u00fb\u00c3\u0013\u00c2\u0015o\t\u0092\u00c2\u001d\u0000\u0000 C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u001c\u00c71A(\u00b2\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HBSR21" + }, + { + "type": "sin_recorrido", + "entity": "\n$91da8c19-aba5-4c51-8ab9-4b34e33c03c7\"/\u0012\u001d\r\u00a5(\u0013\u00c2\u0015|(\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009a\u00c2\u0096\u00a8\u0006B\b\u001a\u0006KTFG51" + }, + { + "type": "sin_recorrido", + "entity": "\n$a38f2a67-a54b-4fd7-ab72-d50346ddef7a\"/\u0012\u001d\r\u0083:\u0013\u00c2\u0015g\u001a\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009e\u00b7\u00b0\u00a6\u0006B\b\u001a\u0006YU8176" + }, + { + "type": "sin_recorrido", + "entity": "\n$ccbc9053-686b-4ebe-aeb2-0fb9809c7881\"/\u0012\u001d\r\u00db)\u0013\u00c2\u0015\u00c36\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a5\u00fc\u00f3\u00a7\u0006B\b\u001a\u0006JTZW19" + }, + { + "type": "sin_recorrido", + "entity": "\n$2f8946f1-2b94-467b-b762-9865a4ca6234\"/\u0012\u001d\r\u00cc\u00da\u0012\u00c2\u0015\u007f\u00f4\u0091\u00c2\u001d\u0000\u0000\u00b2C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UU\u00d5?(\u00c6\u00cb\u0096\u00a8\u0006B\b\u001a\u0006FBKZ10" + }, + { + "type": "sin_recorrido", + "entity": "\n$7d7d4777-9316-4c2e-984d-645afb547d6f\"/\u0012\u001d\r\u00ee8\u0013\u00c2\u0015\u009a\u0013\u0092\u00c2\u001d\u0000\u0000\u00a1C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b6\u00e7\u0097\u00a8\u0006B\b\u001a\u0006DBHL19" + }, + { + "type": "sin_recorrido", + "entity": "\n$d07325ce-dbb9-4e8e-aab7-35d6ae846f93\"/\u0012\u001d\rb\u0011\u0013\u00c2\u0015\u00c79\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0088\u00a8\u0094\u00a8\u0006B\b\u001a\u0006DWHD12" + }, + { + "type": "sin_recorrido", + "entity": "\n$681a7090-cc4d-478e-873d-9cf9cd9ef6ae\"/\u0012\u001d\r1\u0013\u0013\u00c2\u0015j:\u0092\u00c2\u001d\u0000\u0000\u00ccB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u008e>(\u00a0\u00c7\u0097\u00a8\u0006B\b\u001a\u0006PW1344" + }, + { + "type": "sin_recorrido", + "entity": "\n$53427dff-1a7e-44df-ae9e-e64e1f5a647a\"/\u0012\u001d\r\u00e8\u0013\u0013\u00c2\u0015V:\u0092\u00c2\u001d\u0000\u0000\u008fC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UUU?(\u00b2\u00b0\u0096\u00a8\u0006B\b\u001a\u0006LRJD60" + }, + { + "type": "sin_recorrido", + "entity": "\n$0a051435-3510-4efa-98e4-e5864ad5a76b\"/\u0012\u001d\r\rL\u0013\u00c2\u0015\u0098B\u0092\u00c2\u001d\u0000\u0000MC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b8\u00e3\u0097\u00a8\u0006B\b\u001a\u0006FXVS87" + }, + { + "type": "sin_recorrido", + "entity": "\n$ac7cdfd8-3b14-476e-9a9c-9fa017ae1753\"/\u0012\u001d\r\u00ec\u0018\u0013\u00c2\u0015\u00f7\u000b\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0081\u00a5\u00ff\u00a7\u0006B\b\u001a\u0006XW8849" + }, + { + "type": "sin_recorrido", + "entity": "\n$557d7e72-a4bf-409b-bfa9-ecc31401178a\"/\u0012\u001d\r\u00d2\u00e4\u0013\u00c2\u0015n\u00da\u0091\u00c2\u001d\u0000\u0000\u00b8A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a7\u00dc\u0093\u00a8\u0006B\b\u001a\u0006LLGV63" + }, + { + "type": "sin_recorrido", + "entity": "\n$37fe9390-ff33-4b51-8fca-ccaf900bcbf6\"/\u0012\u001d\rN\u00da\u0013\u00c2\u0015\u00c6\u00dd\u0091\u00c2\u001d\u0000\u0000\u00c0A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u00c8A(\u00f7\u00a1\u00f6\u00a2\u0006B\b\u001a\u0006HYPH74" + }, + { + "type": "sin_recorrido", + "entity": "\n$bff016c0-bcd1-4fa4-9fc0-b82f0113f2fb\"/\u0012\u001d\r\u00a8^\u0013\u00c2\u0015I\u0005\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u008a\u009e\u00af\u00a6\u0006B\b\u001a\u0006FYBC98" + }, + { + "type": "sin_recorrido", + "entity": "\n$8665f192-a605-4bce-a2be-66a0d1cef8d7\"/\u0012\u001d\r'\u00f1\u0012\u00c2\u0015h4\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a3\u00a8\u00b0\u00a6\u0006B\b\u001a\u0006HJPL66" + }, + { + "type": "sin_recorrido", + "entity": "\n$4bd3f246-4db0-4cab-8f88-4a86610a6d6b\"/\u0012\u001d\r`\u00db\u0012\u00c2\u0015\u00ae\u00f4\u0091\u00c2\u001d\u0000\u0000mC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00d9\u00c1\u00fd\u00a7\u0006B\b\u001a\u0006FRVC70" + }, + { + "type": "sin_recorrido", + "entity": "\n$1a91030b-e0ee-46e3-a5b5-d0dc99aa3f4c\"/\u0012\u001d\r\u008e\r\u0013\u00c2\u0015\u00b92\u0092\u00c2\u001d\u0000\u0000\u0094C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c1\u00d7\u00f8\u00a7\u0006B\b\u001a\u0006FYBD35" + }, + { + "type": "sin_recorrido", + "entity": "\n$8e17f051-cb79-47bb-bca7-cc1db39037cd\"/\u0012\u001d\r_\u0084\u0013\u00c2\u0015\u0086\u0013\u0092\u00c2\u001d\u0000\u00000C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0094\u00b6\u00db\u00a6\u0006B\b\u001a\u0006YP7094" + }, + { + "type": "sin_recorrido", + "entity": "\n$4d37e74e-9094-4673-9f62-df4e36399e1b\"/\u0012\u001d\rr\u0002\u0013\u00c2\u0015\u00b8/\u0092\u00c2\u001d\u0000\u0000\u000eC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c7\u00d5\u00b9\u00a7\u0006B\b\u001a\u0006GYLT64" + }, + { + "type": "sin_recorrido", + "entity": "\n$5ae981f1-b531-4dbc-83c7-89cc7b7e7904\"/\u0012\u001d\r4?\u0013\u00c2\u0015\u00e7\u00f4\u0091\u00c2\u001d\u0000\u0000@F!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00e2\u00ef\u00f4\u00a6\u0006B\b\u001a\u0006FXJS60" + }, + { + "type": "sin_recorrido", + "entity": "\n$58b75b3b-b3f4-4e1b-9ab5-6b8def14ec35\"/\u0012\u001d\r\u0088R\u0013\u00c2\u00158?\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b8\u00e6\u0097\u00a8\u0006B\b\u001a\u0006YH2181" + }, + { + "type": "sin_recorrido", + "entity": "\n$a6578e13-f890-46ba-ab64-42847a6154eb\"/\u0012\u001d\r\u0093T\u0013\u00c2\u0015\t\u0002\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b0\u00d2\u0089\u00a4\u0006B\b\u001a\u0006HRXJ96" + }, + { + "type": "sin_recorrido", + "entity": "\n$f914466f-5840-4208-80a4-dca1691ba688\"/\u0012\u001d\r(\u001e\u0013\u00c2\u0015\u00a42\u0092\u00c2\u001d\u0000\u0000FC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009a\u00ab\u0097\u00a8\u0006B\b\u001a\u0006DBLS55" + }, + { + "type": "sin_recorrido", + "entity": "\n$29b2bf3d-eed9-411e-bb48-8b3fb7ac5f46\"/\u0012\u001d\r\u0083\u00c4\u0013\u00c2\u0015F\u000b\u0092\u00c2\u001d\u0000\u0000tC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u000eA(\u00b6\u00ab\u008c\u00a8\u0006B\b\u001a\u0006YX1806" + }, + { + "type": "sin_recorrido", + "entity": "\n$fbfd2c6a-427b-4999-abe8-d341ac82984f\"/\u0012\u001d\r\u009cN\u0013\u00c2\u0015\u00dcL\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00fd\u00df\u0097\u00a8\u0006B\b\u001a\u0006FLHK55" + }, + { + "type": "sin_recorrido", + "entity": "\n$b3407bdb-dc86-44be-bc3f-f73230f02bc4\"/\u0012\u001d\r\nc\u0013\u00c2\u0015\u00bbI\u0092\u00c2\u001d\u0000\u0000\u00c4B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009b\u00a0\u0091\u00a8\u0006B\b\u001a\u0006BBZZ94" + }, + { + "type": "sin_recorrido", + "entity": "\n$1bf93978-a7b3-4baa-a23d-6718462eec26\"/\u0012\u001d\r\u00060\u0013\u00c2\u0015\u009f6\u0092\u00c2\u001d\u0000\u0000\u0084B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f3\u0086\u0094\u00a8\u0006B\b\u001a\u0006GCJW93" + }, + { + "type": "sin_recorrido", + "entity": "\n$4b30fca9-8b8e-42b3-8da0-6c84a0b8369b\"/\u0012\u001d\r\u0015\u008e\u0013\u00c2\u0015&D\u0092\u00c2\u001d\u0000\u0000\u00e0@!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00e5\u00e7\u0097\u00a8\u0006B\b\u001a\u0006YG5846" + }, + { + "type": "sin_recorrido", + "entity": "\n$26ef2a39-1880-4a03-a354-7ed0ce6cc84c\"/\u0012\u001d\r\u00d2\u00f4\u0012\u00c2\u0015\u00cb6\u0092\u00c2\u001d\u0000\u0000nC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00d4\u00cb\u0089\u00a8\u0006B\b\u001a\u0006RW8962" + }, + { + "type": "sin_recorrido", + "entity": "\n$89ff023c-a066-4d43-a36e-44f011ab2ff8\"/\u0012\u001d\r\u00b2Q\u0013\u00c2\u0015\u009d\u001e\u0092\u00c2\u001d\u0000\u0000\u00e8B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u008c\u00e8\u0097\u00a8\u0006B\b\u001a\u0006STJZ94" + }, + { + "type": "sin_recorrido", + "entity": "\n$b21d7447-df2d-48f4-bfc9-11318406357d\"/\u0012\u001d\r\u00ba\u00d0\u0013\u00c2\u0015o\u000b\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ba\u00ca\u00cf\u00a2\u0006B\b\u001a\u0006XG3134" + }, + { + "type": "sin_recorrido", + "entity": "\n$af630b48-aa4a-4343-9d89-f5aaa41bb6be\"/\u0012\u001d\r*\u00d8\u0012\u00c2\u0015\u00dd\u00f2\u0091\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00fa\u00b7\u00ec\u00a4\u0006B\b\u001a\u0006ZV8812" + }, + { + "type": "sin_recorrido", + "entity": "\n$43394c2c-73b6-4cfd-bb2e-0f20cca5480e\"/\u0012\u001d\r0\u00cc\u0013\u00c2\u0015\u0012\u00dd\u0091\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b6\u00aa\u0097\u00a8\u0006B\b\u001a\u0006YC9522" + }, + { + "type": "sin_recorrido", + "entity": "\n$f031fc7a-6aaf-49da-8f76-74186eb74fd7\"/\u0012\u001d\r\u00f1\u001a\u0013\u00c2\u0015)-\u0092\u00c2\u001d\u0000\u0000\u0087C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0096\u00b3\u0096\u00a8\u0006B\b\u001a\u0006JHJF79" + }, + { + "type": "sin_recorrido", + "entity": "\n$d4bb0807-c408-438f-8682-c1a0842b82df\"/\u0012\u001d\r[\u00d5\u0013\u00c2\u0015\u00bc\u0005\u0092\u00c2\u001d\u0000\u0000\u00e0B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00fc\u00dd\u0097\u00a8\u0006B\b\u001a\u0006DPZZ47" + }, + { + "type": "sin_recorrido", + "entity": "\n$dafc21a4-70a9-425b-a52f-5dbc5bcabd8b\"/\u0012\u001d\r\u00b2-\u0013\u00c2\u0015w\u0017\u0092\u00c2\u001d\u0000\u0000PA!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0091\u00ce\u0097\u00a8\u0006B\b\u001a\u0006FYBU85" + }, + { + "type": "sin_recorrido", + "entity": "\n$69fcd988-c3fb-4611-8652-5e5ea45af6ab\"/\u0012\u001d\rf\u0011\u0013\u00c2\u0015\u00ee9\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0084\u00c0\u008d\u00a7\u0006B\b\u001a\u0006YD2159" + }, + { + "type": "sin_recorrido", + "entity": "\n$42478694-5202-421e-8b3a-8be68608b11e\"/\u0012\u001d\r\u00943\u0013\u00c2\u0015t\u0019\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c9\u008f\u0083\u00a8\u0006B\b\u001a\u0006CVUK99" + }, + { + "type": "sin_recorrido", + "entity": "\n$f22e0b8e-708a-474b-83b7-b23a22a4b648\"/\u0012\u001d\r<\u001d\u0013\u00c2\u0015\u00c92\u0092\u00c2\u001d\u0000\u0000_C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00de\u00c4\u0096\u00a8\u0006B\b\u001a\u0006CDTJ50" + }, + { + "type": "sin_recorrido", + "entity": "\n$df8e5179-77b4-4065-b75b-db5f0c00b7bc\"/\u0012\u001d\r\u00dc\u00d4\u0013\u00c2\u0015O\u0005\u0092\u00c2\u001d\u0000\u0000\u0099C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009c\u00dd\u0093\u00a8\u0006B\b\u001a\u0006FWGD54" + }, + { + "type": "sin_recorrido", + "entity": "\n$ab03cb26-cc75-4ea9-8091-99d5652cbcdc\"/\u0012\u001d\rLL\u0013\u00c2\u0015\u00daB\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f0\u0083\u00ee\u00a7\u0006B\b\u001a\u0006CVTG84" + }, + { + "type": "sin_recorrido", + "entity": "\n$91649449-728c-4644-8938-88e356340178\"/\u0012\u001d\r\b\u00dc\u0012\u00c2\u0015\u00c5\u00f4\u0091\u00c2\u001d\u0000\u00000C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0099\u009e\u00c9\u00a6\u0006B\b\u001a\u0006FGPH72" + }, + { + "type": "sin_recorrido", + "entity": "\n$c937e95d-c4e1-4b34-b731-a84e61f74706\"/\u0012\u001d\rZ\u00b7\u0013\u00c2\u0015\u001d\f\u0092\u00c2\u001d\u0000\u0000\u00a6C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0094\u00e0\u0081\u00a2\u0006B\b\u001a\u0006WY2954" + }, + { + "type": "sin_recorrido", + "entity": "\n$1aeccc67-c8c8-45ba-8bfd-797d498385e8\"/\u0012\u001d\rs\u00d5\u0013\u00c2\u0015\u00b2\u0005\u0092\u00c2\u001d\u0000\u0080\u0098C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009d\u00e3\u0093\u00a8\u0006B\b\u001a\u0006CVTG93" + }, + { + "type": "sin_recorrido", + "entity": "\n$f7c78a48-b180-42a5-8f1b-c5eb756d2250\"/\u0012\u001d\rM\u00d5\u0013\u00c2\u0015\u0096\u0005\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ca\u00dc\u00c2\u00a7\u0006B\b\u001a\u0006BPDX96" + }, + { + "type": "sin_recorrido", + "entity": "\n$a3e9f473-534b-42d7-93c2-a194e360c174\"/\u0012\u001d\rl\u0013\u0013\u00c2\u0015 :\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009a\u00f2\u008c\u00a8\u0006B\b\u001a\u0006WE9097" + }, + { + "type": "sin_recorrido", + "entity": "\n$48f6e583-e7b7-4a1e-8a7b-197fdc6ade7c\"/\u0012\u001d\r\u00bf\u00ee\u0012\u00c2\u0015\u00e1;\u0092\u00c2\u001d\u0000\u0000\bC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ea\u00ae\u0082\u00a8\u0006B\b\u001a\u0006BGCF44" + }, + { + "type": "sin_recorrido", + "entity": "\n$33775b8d-c929-49f8-9e4b-a36613cb2a6d\"/\u0012\u001d\r\u00f3\u0013\u0013\u00c2\u0015Z:\u0092\u00c2\u001d\u0000\u0000zC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b2\u00c4\u0086\u00a8\u0006B\b\u001a\u0006YE2425" + }, + { + "type": "sin_recorrido", + "entity": "\n$2c7740bc-2d12-46fc-8613-4c52e07fc1d7\"/\u0012\u001d\r\u00e1\u00c3\u0013\u00c2\u0015\u00e5\r\u0092\u00c2\u001d\u0000\u0000(C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00cc\u00e6\u0097\u00a8\u0006B\b\u001a\u0006ZJ6881" + }, + { + "type": "sin_recorrido", + "entity": "\n$904b1359-aeb4-443b-9951-f7bc55f71beb\"/\u0012\u001d\r\u0089(\u0013\u00c2\u0015z(\u0092\u00c2\u001d\u0000\u0000\u0090A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0098\u00c4\u0093\u00a8\u0006B\b\u001a\u0006FBWF90" + }, + { + "type": "sin_recorrido", + "entity": "\n$007c9caa-2bce-4038-bd75-b5e35a099ed3\"0\u0012\u001d\r\u00ea\u00d4\u0013\u00c2\u0015s\u0005\u0092\u00c2\u001d\u0000\u0000uC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0081\u00b1\u0093\u00a8\u0006B\t\u001a\u0007HLXH 62" + }, + { + "type": "sin_recorrido", + "entity": "\n$ab27809a-95ac-4e69-acb5-71873c7b77a6\"/\u0012\u001d\r\u00d0\u00dd\u0012\u00c2\u0015F\u00f5\u0091\u00c2\u001d\u0000\u0000\u0018B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008e\u00e3\u00a8@(\u00e2\u00f5\u00fc\u00a7\u0006B\b\u001a\u0006DBHL17" + }, + { + "type": "sin_recorrido", + "entity": "\n$62f3faae-4db6-4be1-932a-6b2cbc070499\"/\u0012\u001d\rL\u0006\u0013\u00c2\u0015\u00ec/\u0092\u00c2\u001d\u0000\u0000@B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009d\u00e2\u0093\u00a8\u0006B\b\u001a\u0006BWYH56" + }, + { + "type": "sin_recorrido", + "entity": "\n$b00cdf94-18f1-4682-8351-1e9bc2e2d980\"/\u0012\u001d\r\u00c3\u00c4\u0013\u00c2\u0015\u00a6\u0007\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b2\u00d2\u0097\u00a8\u0006B\b\u001a\u0006XY6995" + }, + { + "type": "sin_recorrido", + "entity": "\n$2558628a-65b6-4704-99a0-3b07f20d3732\"/\u0012\u001d\rt\u001a\u0013\u00c2\u0015\u00f9:\u0092\u00c2\u001d\u0000\u0000\u008fC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0080?(\u0088\u0099\u00bc\u00a5\u0006B\b\u001a\u0006BTST46" + }, + { + "type": "sin_recorrido", + "entity": "\n$e1ffa5d0-302a-4c5d-9d4b-e985c0048e0e\"/\u0012\u001d\r?+\u0013\u00c2\u0015\u00ff-\u0092\u00c2\u001d\u0000\u0000RC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b8\u00ae\u008d\u00a8\u0006B\b\u001a\u0006FXRL49" + }, + { + "type": "sin_recorrido", + "entity": "\n$1e5e22f1-cf37-4be8-86b7-b50028d414bd\"/\u0012\u001d\r\u00ee\u00df\u0012\u00c2\u0015\u0007>\u0092\u00c2\u001d\u0000\u0000\u0084B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ae\u00cd\u0093\u00a8\u0006B\b\u001a\u0006FDHJ42" + }, + { + "type": "sin_recorrido", + "entity": "\n$242531b4-a7eb-4b62-a470-3a07b431c930\"/\u0012\u001d\r\u00f3\\\u0013\u00c2\u0015\u00d3\u0003\u0092\u00c2\u001d\u0000\u0000@B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u000eA(\u00ae\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DDDW23" + }, + { + "type": "sin_recorrido", + "entity": "\n$23fe2d4e-226c-41e6-8e3f-133fabc6e485\"/\u0012\u001d\r\u00c8\u0012\u0013\u00c2\u0015\u00a4:\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009c\u009c\u00a9\u00a7\u0006B\b\u001a\u0006FXRZ38" + }, + { + "type": "sin_recorrido", + "entity": "\n$0c1c1409-f7ff-4a03-8952-eae2d97cd784\"/\u0012\u001d\ra8\u0013\u00c2\u0015\u00d9\u0013\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ce\u00f8\u009e\u00a6\u0006B\b\u001a\u0006ZT3361" + }, + { + "type": "sin_recorrido", + "entity": "\n$7bd2817f-171a-40c6-81fd-20c72080537c\"/\u0012\u001d\r\u00a2-\u0013\u00c2\u0015\u009e\u0017\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00cc\u009f\u0097\u00a8\u0006B\b\u001a\u0006FYBD32" + }, + { + "type": "sin_recorrido", + "entity": "\n$fc5652b2-3428-4fc8-8e1e-3c061a495203\"/\u0012\u001d\rE0\u0013\u00c2\u0015\u00925\u0092\u00c2\u001d\u0000\u0000>C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ea\u008f\u0084\u00a8\u0006B\b\u001a\u0006FYBC87" + }, + { + "type": "sin_recorrido", + "entity": "\n$9dc385d5-d930-4d91-90a5-60b062f123e8\"/\u0012\u001d\rY-\u0013\u00c2\u0015\u0086\u0017\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c0\u00e6\u00d8\u00a6\u0006B\b\u001a\u0006XS5122" + }, + { + "type": "sin_recorrido", + "entity": "\n$bdea0b00-56c4-4a83-9cb7-8617479205dd\"/\u0012\u001d\r c\u0013\u00c2\u0015\u00b2I\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00fb\u00ce\u00b4\u00a7\u0006B\b\u001a\u0006DZKC37" + }, + { + "type": "sin_recorrido", + "entity": "\n$15c01b6d-5881-4751-8608-ceeac54896a5\"/\u0012\u001d\r%\u0013\u0013\u00c2\u0015\u0002:\u0092\u00c2\u001d\u0000\u0000\u00a4B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00d8\u00fb\u0083\u00a8\u0006B\b\u001a\u0006RWSZ69" + }, + { + "type": "sin_recorrido", + "entity": "\n$337fa4b2-a2fa-4cab-973d-67ed2879b71d\"/\u0012\u001d\r\u00d3\u00c3\u0013\u00c2\u0015\u00e7\r\u0092\u00c2\u001d\u0000\u0000\u001cC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ee\u00e6\u0097\u00a8\u0006B\b\u001a\u0006LBKD62" + }, + { + "type": "sin_recorrido", + "entity": "\n$b7730879-0742-4a61-8af5-a17ec4c14bf1\"/\u0012\u001d\rW-\u0013\u00c2\u0015z\u0017\u0092\u00c2\u001d\u0000\u0000\u0090C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c4\u009d\u0096\u00a5\u0006B\b\u001a\u0006YS3883" + }, + { + "type": "sin_recorrido", + "entity": "\n$8b1e5ddb-fb4c-4f74-84c8-08e367e96f96\"/\u0012\u001d\r\u00d3P\u0013\u00c2\u0015\u00afK\u0092\u00c2\u001d\u0000\u0000\u0098B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c6\u00e7\u0097\u00a8\u0006B\b\u001a\u0006JBTS23" + }, + { + "type": "sin_recorrido", + "entity": "\n$5e46906c-ba29-431a-8146-5b2dde4dbafb\"/\u0012\u001d\rK\u001d\u0013\u00c2\u0015\u00c12\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00d6\u008e\u0096\u00a8\u0006B\b\u001a\u0006WK9936" + }, + { + "type": "sin_recorrido", + "entity": "\n$63487cf8-1347-4125-a5a0-433de5bf71aa\"/\u0012\u001d\r\u0006\u00d5\u0013\u00c2\u0015O\u0005\u0092\u00c2\u001d\u0000\u0000%C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0096\u00da\u0093\u00a8\u0006B\b\u001a\u0006ZT4009" + }, + { + "type": "sin_recorrido", + "entity": "\n$eef8ef58-558b-469d-a1ac-bb0b170d8cfc\"/\u0012\u001d\r'\u00db\u0012\u00c2\u0015\u0098\u00f4\u0091\u00c2\u001d\u0000\u0000yC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00e5\u00b1\u0097\u00a8\u0006B\b\u001a\u0006DJBB52" + }, + { + "type": "sin_recorrido", + "entity": "\n$7866c3cc-41f4-4da9-b9b1-464d18372a12\"/\u0012\u001d\r\u00b0(\u0013\u00c2\u0015z(\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ee\u00c7\u0096\u00a8\u0006B\b\u001a\u0006DZTJ18" + }, + { + "type": "sin_recorrido", + "entity": "\n$9eea7ea5-5472-4946-adb8-5c8f8b05d2c6\"/\u0012\u001d\r\u00d5(\u0013\u00c2\u0015M(\u0092\u00c2\u001d\u0000\u0000\u00b0B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b4\u00a9\u00e1\u00a1\u0006B\b\u001a\u0006WF1391" + }, + { + "type": "sin_recorrido", + "entity": "\n$879ef85d-0f6d-4bb0-855a-4946f8fdd702\"/\u0012\u001d\r\u0000\u001c\u0013\u00c2\u0015\u00ae9\u0092\u00c2\u001d\u0000\u0000\u00acC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ea\u00b2\u0097\u00a8\u0006B\b\u001a\u0006DKFS35" + }, + { + "type": "sin_recorrido", + "entity": "\n$730a6208-e4e8-4127-8551-eda2cecf3dd9\"/\u0012\u001d\r3\u001d\u0013\u00c2\u0015\u00ba2\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a0\u00f5\u00d8\u00a7\u0006B\b\u001a\u0006ZV6259" + }, + { + "type": "sin_recorrido", + "entity": "\n$918bac75-118b-4670-8faa-296c2a1ca548\"/\u0012\u001d\rMS\u0013\u00c2\u0015\u00f6\u0002\u0092\u00c2\u001d\u0000\u0000*C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a4\u00c7\u00c2\u00a7\u0006B\b\u001a\u0006HYCZ26" + }, + { + "type": "sin_recorrido", + "entity": "\n$83dfc87f-c46a-43ae-b6a8-94fb3c1d353e\"/\u0012\u001d\rB\u0013\u0013\u00c2\u0015\r:\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c0\u00a6\u0097\u00a8\u0006B\b\u001a\u0006FXRR70" + }, + { + "type": "sin_recorrido", + "entity": "\n$5b836f27-cfd8-4b41-8969-7853ff94c769\"/\u0012\u001d\r\u008fT\u0013\u00c2\u0015\u00c9\u0001\u0092\u00c2\u001d\u0000\u0000,B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0089\u00a4\u0097\u00a8\u0006B\b\u001a\u0006WF1309" + }, + { + "type": "sin_recorrido", + "entity": "\n$a99aa49b-8ac2-4ebc-9bf6-af8c627b1740\"/\u0012\u001d\r\u001f\u00e5\u0013\u00c2\u0015\u0084\u00da\u0091\u00c2\u001d\u0000\u0000\u00d4B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00d5\u00e5\u0097\u00a8\u0006B\b\u001a\u0006GZGD14" + }, + { + "type": "sin_recorrido", + "entity": "\n$3549abae-a8b2-4a9d-8498-683c6dec0379\"/\u0012\u001d\r\u00ba\u00fe\u0012\u00c2\u0015\u0091.\u0092\u00c2\u001d\u0000\u0000\u0090A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u001c\u00c7\u00b1?(\u00c2\u00ce\u0096\u00a8\u0006B\b\u001a\u0006HDLW63" + }, + { + "type": "sin_recorrido", + "entity": "\n$167fd7d9-59b2-4702-b4c9-2cbec65888ec\"/\u0012\u001d\r\u001e\u0005\u0013\u00c2\u0015T-\u0092\u00c2\u001d\u0000\u0000\bC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ae\u00e4\u00c9\u00a7\u0006B\b\u001a\u0006FYGP85" + }, + { + "type": "sin_recorrido", + "entity": "\n$45a75417-fd48-491d-9a86-6137e604fcb2\"/\u0012\u001d\r\u0096R\u0013\u00c2\u0015\u0013\u00c2\u0015\u0014\u0018\u0092\u00c2\u001d\u0000\u0080\u00adC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00e5\u0085\u00fd\u00a7\u0006B\b\u001a\u0006JGVX43" + }, + { + "type": "sin_recorrido", + "entity": "\n$f233316c-17d9-454c-b089-af6849eac3c3\"/\u0012\u001d\r9\u00e0\u0012\u00c2\u0015\u00e4=\u0092\u00c2\u001d\u0000\u0000tC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u008e\u00ce\u0093\u00a8\u0006B\b\u001a\u0006ZT3329" + }, + { + "type": "sin_recorrido", + "entity": "\n$2d23f3ee-bfae-46a5-b117-2891090ae9b3\"/\u0012\u001d\rn-\u0013\u00c2\u0015\u009c\u0017\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00de\u00b4\u0096\u00a8\u0006B\b\u001a\u0006DPDH66" + }, + { + "type": "sin_recorrido", + "entity": "\n$7a07deeb-b036-458d-b908-564f0b23cbec\"/\u0012\u001d\r\\.\u0013\u00c2\u0015\u00e26\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b4\u00b1\u00a9\u00a6\u0006B\b\u001a\u0006FFTL51" + }, + { + "type": "sin_recorrido", + "entity": "\n$6b5e482f-ec13-4c95-b1a1-876d0736643e\"/\u0012\u001d\rv\u00c4\u0013\u00c2\u0015\u00bc\u0007\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ba\u00e4\u00a0\u00a1\u0006B\b\u001a\u0006VV6157" + }, + { + "type": "sin_recorrido", + "entity": "\n$daf9cb19-d3be-4c2f-a063-08657c863aa4\"/\u0012\u001d\r|\u0011\u0013\u00c2\u0015\u00e99\u0092\u00c2\u001d\u0000\u0000BC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00d6\u00d5\u0096\u00a8\u0006B\b\u001a\u0006BBVC71" + }, + { + "type": "sin_recorrido", + "entity": "\n$34d26f5d-ce44-43cf-9300-a28b76fad299\"/\u0012\u001d\r\u00fa\u00da\u0012\u00c2\u0015\u008f\u00f4\u0091\u00c2\u001d\u0000\u0000\u00acC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u008e\u00bf\u0097\u00a8\u0006B\b\u001a\u0006DXSH14" + }, + { + "type": "sin_recorrido", + "entity": "\n$e7039c46-52f4-4eb1-819b-0cc663a8dea7\"/\u0012\u001d\r\u001f\u00d5\u0013\u00c2\u0015|\u0005\u0092\u00c2\u001d\u0000\u0000\u0014C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0094\u00ec\u00d4\u00a2\u0006B\b\u001a\u0006BVPW59" + }, + { + "type": "sin_recorrido", + "entity": "\n$a0d034c4-41a2-4f39-9218-8526419d159b\"/\u0012\u001d\rX_\u0013\u00c2\u0015x\u0005\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0092\u008e\u0087\u00a8\u0006B\b\u001a\u0006FXRZ28" + }, + { + "type": "sin_recorrido", + "entity": "\n$98498bd7-5a73-41d2-8468-f2e98ab425ad\"/\u0012\u001d\rr\u0011\u0013\u00c2\u0015\u00c39\u0092\u00c2\u001d\u0000\u0000\u00a0C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a1\u00dd\u00ec\u00a7\u0006B\b\u001a\u0006DWGZ59" + }, + { + "type": "sin_recorrido", + "entity": "\n$1df7d795-627b-43e3-bd5b-595b6f4d0fe2\"/\u0012\u001d\r\u001a\u00d5\u0013\u00c2\u0015q\u0005\u0092\u00c2\u001d\u0000\u0000%C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u008c\u009d\u0097\u00a8\u0006B\b\u001a\u0006BHVF83" + }, + { + "type": "sin_recorrido", + "entity": "\n$9aaec4e1-2c90-4cfb-8dce-f1c60a9fec41\"/\u0012\u001d\r\r\u00f2\u0012\u00c2\u00153\u00fa\u0091\u00c2\u001d\u0000\u0000\u0088B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u00de@(\u0098\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FFTL50" + }, + { + "type": "sin_recorrido", + "entity": "\n$494032a6-e9cb-49d6-9715-4c0977970228\"/\u0012\u001d\r\u00f5\u00e4\u0012\u00c2\u0015aH\u0092\u00c2\u001d\u0000\u0000\u0080A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u000eA(\u00b0\u00e8\u0097\u00a8\u0006B\b\u001a\u0006ZV6539" + }, + { + "type": "sin_recorrido", + "entity": "\n$d23b9e33-bde2-427d-9bec-a5bd7ef88fb2\"/\u0012\u001d\rRL\u0013\u00c2\u0015\u0087\u001a\u0092\u00c2\u001d\u0000\u0000xB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-r\u001c\u0097@(\u00c0\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FPZY98" + }, + { + "type": "sin_recorrido", + "entity": "\n$c34e7a19-0061-4887-8bed-6b7dc303bca7\"/\u0012\u001d\r<\u001e\u0013\u00c2\u0015\u00a02\u0092\u00c2\u001d\u0000\u0000\u001eC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00e0\u00d1\u008e\u00a3\u0006B\b\u001a\u0006DZYS89" + }, + { + "type": "sin_recorrido", + "entity": "\n$16a8c29f-3898-4063-95d8-cc7dd7b6b583\"/\u0012\u001d\r\u0093-\u0013\u00c2\u0015n\"\u0092\u00c2\u001d\u0000\u0000\u00c0A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000 A(\u009e\u00e2\u0099\u00a7\u0006B\b\u001a\u0006HHKP75" + }, + { + "type": "sin_recorrido", + "entity": "\n$8bc3e16e-4d80-43c5-9669-10a2c1371488\"/\u0012\u001d\r\u0015\u001e\u0013\u00c2\u0015\u00a92\u0092\u00c2\u001d\u0000\u0000 C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f2\u00dd\u0090\u00a8\u0006B\b\u001a\u0006FXRR75" + }, + { + "type": "sin_recorrido", + "entity": "\n$975cd5ac-6c1c-448e-b43a-b08913146f3a\"/\u0012\u001d\r\u00a6/\u0013\u00c2\u0015\u00173\u0092\u00c2\u001d\u0000\u0000\u0096C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ba\u00ca\u0096\u00a8\u0006B\b\u001a\u0006ZJ6621" + }, + { + "type": "sin_recorrido", + "entity": "\n$439e18d9-529a-43b3-9f7f-0070b37c010a\"/\u0012\u001d\r\u0002\u00e0\u0012\u00c2\u0015\u0000>\u0092\u00c2\u001d\u0000\u0000\u0090B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u008a\u00d8\u0097\u00a8\u0006B\b\u001a\u0006ZR7259" + }, + { + "type": "sin_recorrido", + "entity": "\n$5090a07f-df83-4627-b6e3-57cc7be56d1b\"/\u0012\u001d\r\u00bb\u00c3\u0013\u00c2\u0015\u00e4\r\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00e6\u00c1\u00c5\u00a5\u0006B\b\u001a\u0006XZ1167" + }, + { + "type": "sin_recorrido", + "entity": "\n$f8cb9b40-ce86-4faf-9eb6-5a10515105d9\"/\u0012\u001d\r\u00bb-\u0013\u00c2\u0015\u00ab\u0017\u0092\u00c2\u001d\u0000\u0000\u000eC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f2\u00a7\u0097\u00a8\u0006B\b\u001a\u0006JLZV94" + }, + { + "type": "sin_recorrido", + "entity": "\n$cdb00712-4165-4a21-a660-98c9b187743b\"/\u0012\u001d\r\u008a-\u0013\u00c2\u0015y\u0017\u0092\u00c2\u001d\u0000\u0000\u00a2C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b6\u00e6\u0097\u00a8\u0006B\b\u001a\u0006RWDP81" + }, + { + "type": "sin_recorrido", + "entity": "\n$bd9228b0-84f6-4f8d-b3bf-c22b379b1f07\"/\u0012\u001d\r\u0001^\u0013\u00c2\u0015'B\u0092\u00c2\u001d\u0000\u0000\u00c8A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u00de@(\u00ee\u0092\u00c4\u00a2\u0006B\b\u001a\u0006DWVX28" + }, + { + "type": "sin_recorrido", + "entity": "\n$8843d295-43e5-4f41-a459-4a8532ee0069\"/\u0012\u001d\rr4\u0013\u00c2\u0015<\r\u0092\u00c2\u001d\u0000\u00002C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-r\u001c\u0083A(\u008e\u00e8\u0097\u00a8\u0006B\b\u001a\u0006BKSD38" + }, + { + "type": "sin_recorrido", + "entity": "\n$3ac9c1b1-4a7c-4627-8cd4-a5bc7347f8c7\"/\u0012\u001d\rN7\u0013\u00c2\u0015{\r\u0092\u00c2\u001d\u0000\u0000\u001cC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ca\u00cf\u0093\u00a8\u0006B\b\u001a\u0006DZTL12" + }, + { + "type": "sin_recorrido", + "entity": "\n$edc0edd5-dc84-49c2-960f-6b58219fbc5d\"/\u0012\u001d\r\u00ff\u00da\u0012\u00c2\u0015\u008e\u00f4\u0091\u00c2\u001d\u0000\u0000\u00aaB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u008f\u00e5\u0097\u00a8\u0006B\b\u001a\u0006HYHR39" + }, + { + "type": "sin_recorrido", + "entity": "\n$c5b875dc-f97f-4ac8-85b7-8b5c066c0ff4\"/\u0012\u001d\rG'\u0013\u00c2\u0015e5\u0092\u00c2\u001d\u0000\u0000\u00acB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008e\u00e3\u00a8@(\u00b0\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HDLR87" + }, + { + "type": "sin_recorrido", + "entity": "\n$b77f77ef-9e85-4815-aebc-5d2784109471\"/\u0012\u001d\rs\u0011\u0013\u00c2\u0015\u00ba9\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00cc\u00e8\u00ec\u00a7\u0006B\b\u001a\u0006FXJS62" + }, + { + "type": "sin_recorrido", + "entity": "\n$30c20370-4833-40ac-b24e-4d298174eb3e\"/\u0012\u001d\r\u00c5\u00d6\u0012\u00c2\u0015\u00fdG\u0092\u00c2\u001d\u0000\u0000\nC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c6\u00e6\u0097\u00a8\u0006B\b\u001a\u0006DPZY99" + }, + { + "type": "sin_recorrido", + "entity": "\n$fd22c398-3fbc-4f2c-8b70-e3ee87f76751\"/\u0012\u001d\rX_\u0013\u00c2\u0015\u00f8\u0004\u0092\u00c2\u001d\u0000\u00002C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ba\u00e6\u0097\u00a8\u0006B\b\u001a\u0006FHJD81" + }, + { + "type": "sin_recorrido", + "entity": "\n$58317737-d700-4b1c-9e8a-3b831c0b532b\"/\u0012\u001d\r\u0017\u001e\u0013\u00c2\u0015\u00f52\u0092\u00c2\u001d\u0000\u0000\u0091C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00dc\u00e5\u0097\u00a8\u0006B\b\u001a\u0006RPYG63" + }, + { + "type": "sin_recorrido", + "entity": "\n$c82e1914-46dc-4ab1-8d98-61a2031aaf75\"/\u0012\u001d\r[:\u0013\u00c2\u0015^\u001a\u0092\u00c2\u001d\u0000\u0000PB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009e\u00e6\u0097\u00a8\u0006B\b\u001a\u0006RVBV19" + }, + { + "type": "sin_recorrido", + "entity": "\n$bb26dad4-8515-4e1c-8ea3-ee223495e6ca\"/\u0012\u001d\r\u00daP\u0013\u00c2\u0015\u00d5K\u0092\u00c2\u001d\u0000\u0000\u009cB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00e8\u00e6\u0097\u00a8\u0006B\b\u001a\u0006RYRV73" + }, + { + "type": "sin_recorrido", + "entity": "\n$f0e0fea6-6ac0-4935-bb21-394d6ac99de8\"/\u0012\u001d\r\u00c9\u00c5\u0013\u00c2\u0015.\n\u0092\u00c2\u001d\u0000\u0000\u0080B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0098\u00be\u0097\u00a8\u0006B\b\u001a\u0006XN3257" + }, + { + "type": "sin_recorrido", + "entity": "\n$80d32062-4f0a-4ef0-81bc-6b9d9a0e3647\"/\u0012\u001d\r\u000b\u00ce\u0013\u00c2\u0015\u00cc\u0007\u0092\u00c2\u001d\u0000\u0000\u00a7C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0086\u00bf\u0096\u00a8\u0006B\b\u001a\u0006BLYJ29" + }, + { + "type": "sin_recorrido", + "entity": "\n$1dbb794a-09fe-4e34-9f75-928de3563271\"/\u0012\u001d\r\u008e(\u0013\u00c2\u0015\u0084(\u0092\u00c2\u001d\u0000\u0000\u00f8B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c8\u00cf\u0096\u00a8\u0006B\b\u001a\u0006LKCZ18" + }, + { + "type": "sin_recorrido", + "entity": "\n$32b85c2c-3899-44df-9440-bc76b74c17c1\"/\u0012\u001d\r)\u00cc\u0013\u00c2\u00152\u00dd\u0091\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u008d\u00d9\u0093\u00a8\u0006B\b\u001a\u0006SSBD61" + }, + { + "type": "sin_recorrido", + "entity": "\n$e0d6f3a1-f99f-48cc-97f1-5503faf2f607\"/\u0012\u001d\r-j\u0012\u00c2\u0015\u00fb\u00ef\u0091\u00c2\u001d\u0000\u0000\u00c0A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0092\u00e5\u0097\u00a8\u0006B\b\u001a\u0006HYHR47" + }, + { + "type": "sin_recorrido", + "entity": "\n$78177a8f-86dc-4e15-a8f8-af1d6c621e72\"/\u0012\u001d\r\r\u00db\u0012\u00c2\u0015r\u00f4\u0091\u00c2\u001d\u0000\u0000\u00e8F!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u008c\u00dc\u00bb\u00a5\u0006B\b\u001a\u0006ZY4796" + }, + { + "type": "sin_recorrido", + "entity": "\n$9bba3422-2af6-4b69-8e13-7a63cd61f3f9\"/\u0012\u001d\r\u00d6\u0013\u0013\u00c2\u0015.:\u0092\u00c2\u001d\u0000\u0000>C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009c\u00de\u008d\u00a8\u0006B\b\u001a\u0006ZR7406" + }, + { + "type": "sin_recorrido", + "entity": "\n$7d3d0763-ff39-4697-a32b-3fa9ad1afb15\"/\u0012\u001d\r\u00b4\u00d1\u0012\u00c2\u0015\u00ef\u00f1\u0091\u00c2\u001d\u0000\u0000BC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0085\u00e6\u0097\u00a8\u0006B\b\u001a\u0006JSBB51" + }, + { + "type": "sin_recorrido", + "entity": "\n$f7413153-6e73-4595-94ec-8379bd211640\"/\u0012\u001d\ru\u00f1\u0012\u00c2\u0015\u00994\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00cc\u00b1\u0093\u00a8\u0006B\b\u001a\u0006WW4900" + }, + { + "type": "sin_recorrido", + "entity": "\n$944d4f6b-f982-4787-8381-3483ab2b4499\"/\u0012\u001d\r\u008d\u00db\u0012\u00c2\u0015\u0003\u00f3\u0091\u00c2\u001d\u0000\u0000\u00d8B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ca\u00e7\u0097\u00a8\u0006B\b\u001a\u0006BFDR20" + }, + { + "type": "sin_recorrido", + "entity": "\n$c31194a5-cd9f-43e3-97bf-8aab709ee1e0\"/\u0012\u001d\r\u0002\u00d8\u0012\u00c2\u0015\u00c2\u00f2\u0091\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0080\u00ee\u00a8\u00a7\u0006B\b\u001a\u0006YW5590" + }, + { + "type": "sin_recorrido", + "entity": "\n$b921b955-29ff-4035-9361-6a0994b089cf\"/\u0012\u001d\r3\u0011\u0013\u00c2\u0015\u0015:\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b3\u00e8\u0097\u00a8\u0006B\b\u001a\u0006YU2131" + }, + { + "type": "sin_recorrido", + "entity": "\n$5679bba4-ec23-4450-99c5-e6b6520013b4\"/\u0012\u001d\r\u00f0\u001b\u0013\u00c2\u0015\u00a79\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b4\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FDHJ54" + }, + { + "type": "sin_recorrido", + "entity": "\n$e690826c-b6d5-48fa-a759-d30e054b3e45\"/\u0012\u001d\r\u00ace\u0012\u00c2\u0015N\u00e7\u0091\u00c2\u001d\u0000\u0000\bC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ee\u00e7\u0097\u00a8\u0006B\b\u001a\u0006JJJC38" + }, + { + "type": "sin_recorrido", + "entity": "\n$60772fcf-3d6a-42dd-ba4f-a95b9e9e8867\"/\u0012\u001d\r\f\u00d0\u0013\u00c2\u0015v\u000b\u0092\u00c2\u001d\u0000\u0000\u0014C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u001c\u00c71@(\u00b2\u00e8\u0097\u00a8\u0006B\b\u001a\u0006CTZT10" + }, + { + "type": "sin_recorrido", + "entity": "\n$d941d8b1-ed02-4d2b-8f8b-c31c30335193\"/\u0012\u001d\r\u0012\u00d5\u0013\u00c2\u0015\u008e\u0005\u0092\u00c2\u001d\u0000\u0000`C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00e4\u00ee\u008c\u00a8\u0006B\b\u001a\u0006FXVK52" + }, + { + "type": "sin_recorrido", + "entity": "\n$73ce7e91-e1aa-427e-84a0-22992ec7bafd\"/\u0012\u001d\r\u00df\u00e4\u0012\u00c2\u0015\rB\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ee\u00e2\u0097\u00a8\u0006B\b\u001a\u0006ZL3449" + }, + { + "type": "sin_recorrido", + "entity": "\n$b8a988fc-cec2-451a-821d-d5b078fff9de\"/\u0012\u001d\r\u00cf\u00e7\u0012\u00c2\u0015N\u00f9\u0091\u00c2\u001d\u0000\u0080\u0093C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00db\u00d4\u0097\u00a8\u0006B\b\u001a\u0006YK7908" + }, + { + "type": "sin_recorrido", + "entity": "\n$9839e13c-5b4f-4230-a496-00e1bc017384\"/\u0012\u001d\rO\u001d\u0013\u00c2\u0015\u00fb2\u0092\u00c2\u001d\u0000\u0000dC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a2\u00c7\u0096\u00a8\u0006B\b\u001a\u0006FXRR79" + }, + { + "type": "sin_recorrido", + "entity": "\n$46ef7f7a-b945-4e05-af2d-e500152ec40a\"/\u0012\u001d\r?:\u0013\u00c2\u0015D\u001a\u0092\u00c2\u001d\u0000\u0000\"C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u008c\u0098\u00d6\u00a5\u0006B\b\u001a\u0006XY7377" + }, + { + "type": "sin_recorrido", + "entity": "\n$b1945a5c-20e6-4ed3-b7d8-5dde7a594c2a\"/\u0012\u001d\r\n\u0014\u0013\u00c2\u00154:\u0092\u00c2\u001d\u0000\u0000\u0094B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ec\u00fb\u00fd\u00a7\u0006B\b\u001a\u0006BTSZ61" + }, + { + "type": "sin_recorrido", + "entity": "\n$a6632bea-4ffd-4971-8156-ed008af2b02b\"/\u0012\u001d\r\u0006\u00e0\u0012\u00c2\u0015\u00f7=\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00fc\u00c2\u0097\u00a8\u0006B\b\u001a\u0006TW2933" + }, + { + "type": "sin_recorrido", + "entity": "\n$03d7b103-a8c3-4ff1-a6b3-c38698272a4f\"/\u0012\u001d\r}\u001d\u0013\u00c2\u0015\u00a54\u0092\u00c2\u001d\u0000\u0000\u00d2B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00ab\u00aa:A(\u00eb\u00ac\u00fc\u00a7\u0006B\b\u001a\u0006WD9612" + }, + { + "type": "sin_recorrido", + "entity": "\n$4a0af0f6-6f2b-49c3-bf89-148be19dd0c5\"/\u0012\u001d\r\u00c9m\u0012\u00c2\u0015\u0001\u00f0\u0091\u00c2\u001d\u0000\u0000hC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f8\u00e7\u0097\u00a8\u0006B\b\u001a\u0006DFFL12" + }, + { + "type": "sin_recorrido", + "entity": "\n$fc8e84f0-179f-4096-aab7-cf0a92bef9c7\"/\u0012\u001d\r\u0007L\u0013\u00c2\u0015\u0096B\u0092\u00c2\u001d\u0000\u0000\u0010C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ea\u00ce\u0097\u00a8\u0006B\b\u001a\u0006JFSP65" + }, + { + "type": "sin_recorrido", + "entity": "\n$15627506-997a-486c-be42-d1a0652a31c1\"/\u0012\u001d\rh\u0013\u0013\u00c2\u0015\u00e09\u0092\u00c2\u001d\u0000\u0000\u0014C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00da\u00b3\u0093\u00a8\u0006B\b\u001a\u0006DPZY75" + }, + { + "type": "sin_recorrido", + "entity": "\n$8a396781-0a70-4c70-bce7-e3867c44e7a2\"/\u0012\u001d\rd\u001c\u0013\u00c2\u0015\u00a69\u0092\u00c2\u001d\u0000\u0000\u009eC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UU\u00d5?(\u00ec\u00ad\u0097\u00a8\u0006B\b\u001a\u0006CVTR61" + }, + { + "type": "sin_recorrido", + "entity": "\n$c05e7086-6a35-48cc-b78f-ce7fa32e1807\"/\u0012\u001d\rT\u0011\u0013\u00c2\u0015\u00eb9\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f4\u00ef\u0096\u00a8\u0006B\b\u001a\u0006BFPL36" + }, + { + "type": "sin_recorrido", + "entity": "\n$e43ddde9-515f-47e5-a99b-dcf36097758d\"/\u0012\u001d\raR\u0013\u00c2\u0015\u008a?\u0092\u00c2\u001d\u0000\u0000\u0012C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u00a0@(\u00aa\u00cc\u0097\u00a8\u0006B\b\u001a\u0006JYRR14" + }, + { + "type": "sin_recorrido", + "entity": "\n$aafa089a-ac1b-4df8-9d86-232097cdd3d0\"/\u0012\u001d\rM\u001d\u0013\u00c2\u0015\u00e42\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ec\u00c2\u00bd\u00a7\u0006B\b\u001a\u0006HZGZ95" + }, + { + "type": "sin_recorrido", + "entity": "\n$92294c23-3f31-4bfb-9ead-b4dc58bfedbd\"/\u0012\u001d\r.\u00ac\u0013\u00c2\u0015A\u000e\u0092\u00c2\u001d\u0000\u0000\u00a7C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f2\u00af\u0086\u00a8\u0006B\b\u001a\u0006YW5485" + }, + { + "type": "sin_recorrido", + "entity": "\n$49d0cf67-7ec9-4c80-a75b-8c548ca5df02\"/\u0012\u001d\rC.\u0013\u00c2\u0015\u00ac6\u0092\u00c2\u001d\u0000\u0000\u00b8B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f6\u008d\u00de\u00a7\u0006B\b\u001a\u0006DKFS38" + }, + { + "type": "sin_recorrido", + "entity": "\n$a6b22c30-f04c-429b-88f5-9942bb68e209\"/\u0012\u001d\r\u00bb\u00e4\u0012\u00c2\u0015\u00f4A\u0092\u00c2\u001d\u0000\u0080\u00a4C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ba\u00ce\u0096\u00a8\u0006B\b\u001a\u0006ZJ6730" + }, + { + "type": "sin_recorrido", + "entity": "\n$a2fce729-5819-4cc8-b399-240ddb52b112\"/\u0012\u001d\rr\u00d5\u0013\u00c2\u0015\u00cb\u0005\u0092\u00c2\u001d\u0000\u0000\u00eeB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00e3\u00bb\u0093\u00a8\u0006B\b\u001a\u0006FXRL48" + }, + { + "type": "sin_recorrido", + "entity": "\n$648c6bfd-187a-43d8-a147-43b9e7aa2fa5\"/\u0012\u001d\rX\u00db\u0012\u00c2\u0015\u00aa\u00f4\u0091\u00c2\u001d\u0000\u0000\u0089C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0097\u00f0\u0082\u00a8\u0006B\b\u001a\u0006LPDK40" + }, + { + "type": "sin_recorrido", + "entity": "\n$5a37e66e-19ce-48c5-8259-961e12edf47d\"/\u0012\u001d\r\u00c1N\u0013\u00c2\u0015\u00f1\u001e\u0092\u00c2\u001d\u0000\u0000xB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-ffFA(\u00ea\u00e7\u0097\u00a8\u0006B\b\u001a\u0006DKTB43" + }, + { + "type": "sin_recorrido", + "entity": "\n$9a3c4357-396d-4ab2-b9d5-9322d43423c3\"/\u0012\u001d\r\u00b5\u00c3\u0013\u00c2\u0015\u00f4\r\u0092\u00c2\u001d\u0000\u0000\u0012C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00e8\u00bb\u0097\u00a8\u0006B\b\u001a\u0006FPRY67" + }, + { + "type": "sin_recorrido", + "entity": "\n$9d9c9278-6cf9-4813-8227-f68e56847dd0\"/\u0012\u001d\r\u009f\u0010\u0013\u00c2\u0015\u00d0X\u0092\u00c2\u001d\u0000\u0000\u0007C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a7\u00ca\u0096\u00a8\u0006B\b\u001a\u0006FGYZ20" + }, + { + "type": "sin_recorrido", + "entity": "\n$f32c54c3-1c29-4bca-8acc-aad721965927\"/\u0012\u001d\r\u00dd8\u0013\u00c2\u0015\u00a7\u0013\u0092\u00c2\u001d\u0000\u0000\u0088C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c6\u00ab\u00ed\u00a7\u0006B\b\u001a\u0006JZLB59" + }, + { + "type": "sin_recorrido", + "entity": "\n$5e59c174-9502-45d8-b654-fbe1f19c7f99\"/\u0012\u001d\r\u00ac`\u0013\u00c2\u0015\u008bB\u0092\u00c2\u001d\u0000\u0000\u0010A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00cd\u00cc,A(\u00e8\u00e2\u009e\u00a3\u0006B\b\u001a\u0006KCDS85" + }, + { + "type": "sin_recorrido", + "entity": "\n$f34af194-4447-4fb7-ba15-9ca0a8e5cd82\"/\u0012\u001d\r\nL\u0013\u00c2\u0015\u0089B\u0092\u00c2\u001d\u0000\u0000GC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ee\u00ab\u00ec\u00a7\u0006B\b\u001a\u0006JJJD52" + }, + { + "type": "sin_recorrido", + "entity": "\n$0c85a6b6-aadb-4436-8e83-e0103a53d106\"/\u0012\u001d\r\u008eT\u0013\u00c2\u0015\u0002\u0002\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00e8\u0087\u00e7\u00a7\u0006B\b\u001a\u0006HLZX32" + }, + { + "type": "sin_recorrido", + "entity": "\n$3e67b66e-32e9-413d-a92b-f46e30cce42d\"/\u0012\u001d\r\u00efP\u0013\u00c2\u0015\u00bcK\u0092\u00c2\u001d\u0000\u0000(C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00fc\u00e6\u0097\u00a8\u0006B\b\u001a\u0006BKXH47" + }, + { + "type": "sin_recorrido", + "entity": "\n$f10df46e-80e9-4c63-a503-28ceb97074cc\"/\u0012\u001d\r\u00acP\u0013\u00c2\u0015\u0084K\u0092\u00c2\u001d\u0000\u0000\u00a4B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f8\u00e6\u0097\u00a8\u0006B\b\u001a\u0006CCHL61" + }, + { + "type": "sin_recorrido", + "entity": "\n$423260db-cb79-445f-98c9-47b447287642\"/\u0012\u001d\r\u00edP\u0013\u00c2\u0015\u00beK\u0092\u00c2\u001d\u0000\u0000*C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0082\u00f4\u00c4\u00a3\u0006B\b\u001a\u0006GWXT25" + }, + { + "type": "sin_recorrido", + "entity": "\n$297a03ab-5f96-484c-8cdd-d0b4cdab2c07\"/\u0012\u001d\r\u0082\u00d4\u0013\u00c2\u0015.\u0005\u0092\u00c2\u001d\u0000\u0000\u00a0B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0096\u00e8\u0093\u00a8\u0006B\b\u001a\u0006WW5316" + }, + { + "type": "sin_recorrido", + "entity": "\n$319207ce-b2cb-4cbb-936b-8dc327f60f7d\"/\u0012\u001d\r6\u00d5\u0013\u00c2\u0015\u0091\u0005\u0092\u00c2\u001d\u0000\u0000$B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0087\u00ee\u0093\u00a8\u0006B\b\u001a\u0006GVFL21" + }, + { + "type": "sin_recorrido", + "entity": "\n$ab077297-d396-4926-a814-b56425317f08\"/\u0012\u001d\re\u00f1\u0012\u00c2\u0015\u007f4\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b3\u00cc\u00f2\u00a4\u0006B\b\u001a\u0006HJPL47" + }, + { + "type": "sin_recorrido", + "entity": "\n$241ed3be-f163-4309-abd9-af3271c5e16c\"0\u0012\u001d\r\u00ca\u0013\u0013\u00c2\u0015^:\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c1\u00d9\u00ae\u00a4\u0006B\t\u001a\u0007WE12000" + }, + { + "type": "sin_recorrido", + "entity": "\n$4a619f9a-75f3-4499-8093-59c72cb739cc\"/\u0012\u001d\rG_\u0013\u00c2\u0015\u00fc\u0004\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b6\u009e\u00de\u00a7\u0006B\b\u001a\u0006JXLW51" + }, + { + "type": "sin_recorrido", + "entity": "\n$083a8fc9-8a6b-47d6-a2ee-dd61f51bf6d5\"/\u0012\u001d\rp-\u0013\u00c2\u0015\u0080\u0017\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00eb\u00a9\u00f9\u00a2\u0006B\b\u001a\u0006XY3622" + }, + { + "type": "sin_recorrido", + "entity": "\n$893a79ff-43f0-42fb-8bea-4593fd7dfe39\"/\u0012\u001d\r8.\u0013\u00c2\u0015\u00e46\u0092\u00c2\u001d\u0000\u0000\u009dC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00be\u00c9\u008d\u00a8\u0006B\b\u001a\u0006FDHJ43" + }, + { + "type": "sin_recorrido", + "entity": "\n$9ebe96aa-57bc-4f96-859a-af8677b7ca00\"/\u0012\u001d\r=3\u0013\u00c2\u0015j\u00eb\u0091\u00c2\u001d\u0000\u0000\u0082C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00d4\u00e6\u0097\u00a8\u0006B\b\u001a\u0006JJJC69" + }, + { + "type": "sin_recorrido", + "entity": "\n$ed4615b0-d9ce-4846-9eb9-ec0f83bd2d9d\"/\u0012\u001d\rF\u0011\u0013\u00c2\u0015\u0015:\u0092\u00c2\u001d\u0000\u0000\u00c8B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c6\u00b6\u00be\u00a7\u0006B\b\u001a\u0006UW8554" + }, + { + "type": "sin_recorrido", + "entity": "\n$6d173656-96bf-4cc7-9b95-a8e63fa6a389\"/\u0012\u001d\r\u00ca^\u0013\u00c2\u0015*\u0005\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c2\u00e5\u0097\u00a8\u0006B\b\u001a\u0006RVSK43" + }, + { + "type": "sin_recorrido", + "entity": "\n$225e5725-e86e-4ea6-a657-27a9a9fef152\"/\u0012\u001d\r\u00e4\u00e4\u0013\u00c2\u0015\u0082\u00da\u0091\u00c2\u001d\u0000\u0000\u00a5C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f6\u00ff\u0096\u00a8\u0006B\b\u001a\u0006GJLJ42" + }, + { + "type": "sin_recorrido", + "entity": "\n$836103a4-93d5-4283-8bf5-d6bea411f6f3\"/\u0012\u001d\r\u00f78\u0013\u00c2\u0015\u009e\u0013\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009c\u00e6\u0097\u00a8\u0006B\b\u001a\u0006FXZY72" + }, + { + "type": "sin_recorrido", + "entity": "\n$c9c4f84b-7ba3-4d82-ba50-6db43976cc5a\"/\u0012\u001d\rr\u00d5\u0013\u00c2\u0015\u00c4\u0005\u0092\u00c2\u001d\u0000\u0000\u0006C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00bc\u00e6\u0097\u00a8\u0006B\b\u001a\u0006HYZD26" + }, + { + "type": "sin_recorrido", + "entity": "\n$4525f7af-1bfd-45dc-a9cc-ac5df2e322fd\"/\u0012\u001d\r\u0013L\u0013\u00c2\u0015\u008aB\u0092\u00c2\u001d\u0000\u0000WC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0084\u00de\u0097\u00a8\u0006B\b\u001a\u0006RVRL27" + }, + { + "type": "sin_recorrido", + "entity": "\n$653f222c-12e8-4eec-a6ca-739170fa4904\"/\u0012\u001d\rf.\u0013\u00c2\u0015\u00c46\u0092\u00c2\u001d\u0000\u0000\u00c8B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0098\u00d6\u0092\u00a8\u0006B\b\u001a\u0006JHJF67" + }, + { + "type": "sin_recorrido", + "entity": "\n$b9ab8091-5755-4156-97f8-f9917baec463\"/\u0012\u001d\r\t\u001e\u0013\u00c2\u0015\u00ca2\u0092\u00c2\u001d\u0000\u0080\u00aaC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00cb\u00e7\u0097\u00a8\u0006B\b\u001a\u0006KVZH52" + }, + { + "type": "sin_recorrido", + "entity": "\n$83f68ee1-baeb-416a-9d05-3c6abe862a2d\"/\u0012\u001d\r7\u00c4\u0013\u00c2\u0015\u00b8\r\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0092\u00dd\u0093\u00a7\u0006B\b\u001a\u0006BDJP62" + }, + { + "type": "sin_recorrido", + "entity": "\n$c6fa9b2e-ce86-4b5b-b2dc-d8d3edf4e386\"/\u0012\u001d\r\u00ed\u0012\u0013\u00c2\u0015v:\u0092\u00c2\u001d\u0000\u0000\u0081C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ac\u00cb\u0097\u00a8\u0006B\b\u001a\u0006RTZB48" + }, + { + "type": "sin_recorrido", + "entity": "\n$6aa17a74-b741-4f92-8826-5f9a84087351\"/\u0012\u001d\rqP\u0013\u00c2\u0015\u0006\u0005\u0092\u00c2\u001d\u0000\u0000\u009eB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f8\u00e7\u0097\u00a8\u0006B\b\u001a\u0006JFSP63" + }, + { + "type": "sin_recorrido", + "entity": "\n$df175ca7-596a-4f11-9ad2-37464190da5e\"/\u0012\u001d\r\u0010\u00d5\u0013\u00c2\u0015\u0081\u0005\u0092\u00c2\u001d\u0000\u0080\u00aaC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009e\u00e5\u0097\u00a8\u0006B\b\u001a\u0006YU5091" + }, + { + "type": "sin_recorrido", + "entity": "\n$3137d8e5-ff5c-4d98-99ce-fd3c44d26915\"/\u0012\u001d\r\u00cbe\u0012\u00c2\u0015\u00ac\u00e8\u0091\u00c2\u001d\u0000\u0000\u0097C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00e8\u00e5\u0097\u00a8\u0006B\b\u001a\u0006SKPL57" + }, + { + "type": "sin_recorrido", + "entity": "\n$615ea201-8d5a-4c0c-ad63-416c24c6219c\"/\u0012\u001d\r-_\u0013\u00c2\u0015\n\u0005\u0092\u00c2\u001d\u0000\u0000\u0094C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00bc\u009a\u00af\u00a2\u0006B\b\u001a\u0006YX2285" + }, + { + "type": "sin_recorrido", + "entity": "\n$88aa5642-f479-46a2-a7ed-2a84172f90f1\"/\u0012\u001d\rSI\u0013\u00c2\u0015^\u00fc\u0091\u00c2\u001d\u0000\u0000FC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c5\u00b6\u00b8\u00a7\u0006B\b\u001a\u0006WX6016" + }, + { + "type": "sin_recorrido", + "entity": "\n$3e3e073a-d804-462d-957c-2f020d51fbba\"/\u0012\u001d\r\u0000\u00e0\u0012\u00c2\u0015\u00fe=\u0092\u00c2\u001d\u0000\u0000\u0084B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0096\u00e8\u0097\u00a8\u0006B\b\u001a\u0006RTXW96" + }, + { + "type": "sin_recorrido", + "entity": "\n$e68c8861-38e7-4892-8385-55a330cb7af8\"/\u0012\u001d\r\u0091R\u0013\u00c2\u0015M?\u0092\u00c2\u001d\u0000\u0000XC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a4\u00e7\u0097\u00a8\u0006B\b\u001a\u0006FXZX45" + }, + { + "type": "sin_recorrido", + "entity": "\n$ea61c0bb-5bc6-4f85-b744-b252b3d3a541\"/\u0012\u001d\r\u00fdP\u0013\u00c2\u0015\u00eaK\u0092\u00c2\u001d\u0000\u0000\u001eC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0088\u0088\u0094\u00a8\u0006B\b\u001a\u0006ZK7783" + }, + { + "type": "sin_recorrido", + "entity": "\n$cee33753-1519-4b0a-89e3-280d615df4c0\"/\u0012\u001d\rr\u00d0\u0013\u00c2\u0015d\u000b\u0092\u00c2\u001d\u0000\u0000\u0084B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0094\u0083\u0094\u00a8\u0006B\b\u001a\u0006XY1722" + }, + { + "type": "sin_recorrido", + "entity": "\n$d883cb04-c951-4082-b848-5c6b270e9210\"/\u0012\u001d\r\u0093N\u0013\u00c2\u0015\u00d0L\u0092\u00c2\u001d\u0000\u00004C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ce\u00bf\u0093\u00a8\u0006B\b\u001a\u0006FXRL47" + }, + { + "type": "sin_recorrido", + "entity": "\n$4b83e4a9-7cbc-40a9-9b01-8ac00e635248\"/\u0012\u001d\r)_\u0013\u00c2\u0015\u0011\u0005\u0092\u00c2\u001d\u0000\u0000\u0093C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00da\u00e4\u0097\u00a8\u0006B\b\u001a\u0006PPGD32" + }, + { + "type": "sin_recorrido", + "entity": "\n$8de7bece-7157-4e8f-9a6b-a2f4e1635996\"/\u0012\u001d\r\u009cR\u0013\u00c2\u0015\u00d0?\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00be\u0099\u0097\u00a8\u0006B\b\u001a\u0006DRTS95" + }, + { + "type": "sin_recorrido", + "entity": "\n$a3afb1d8-d021-4219-815e-e80e4b54f301\"/\u0012\u001d\r=\u00d5\u0013\u00c2\u0015\u00a1\u0005\u0092\u00c2\u001d\u0000\u0080\u0099C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008e\u00e3\u00f8?(\u00f7\u008d\u0092\u00a8\u0006B\b\u001a\u0006YN2862" + }, + { + "type": "sin_recorrido", + "entity": "\n$728d0126-c919-43d5-ae31-c07d6712bc69\"/\u0012\u001d\r\u00f5\u00d4\u0013\u00c2\u0015y\u0005\u0092\u00c2\u001d\u0000\u0080\u00a2C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00fe\u00b1\u0097\u00a8\u0006B\b\u001a\u0006ZT1069" + }, + { + "type": "sin_recorrido", + "entity": "\n$bd3e804c-4040-43dc-8a35-6e09658a854a\"/\u0012\u001d\r[\u00c4\u0013\u00c2\u0015\u00c1\u0007\u0092\u00c2\u001d\u0000\u0000\u001cC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00fc\u00e0\u0097\u00a8\u0006B\b\u001a\u0006GGJG63" + }, + { + "type": "sin_recorrido", + "entity": "\n$739a0059-0f69-4d2d-a906-92ff8e399052\"/\u0012\u001d\rY.\u0013\u00c2\u0015\u00f46\u0092\u00c2\u001d\u0000\u0000\u0084B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00da\u009c\u0097\u00a8\u0006B\b\u001a\u0006CSDS17" + }, + { + "type": "sin_recorrido", + "entity": "\n$fbb0870d-a646-45de-ab58-3805e71efca5\"/\u0012\u001d\r\u00a5(\u0013\u00c2\u0015\u008a(\u0092\u00c2\u001d\u0000\u0000\u00d4B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ee\u00c7\u0093\u00a8\u0006B\b\u001a\u0006FGHW36" + }, + { + "type": "sin_recorrido", + "entity": "\n$050be756-1f54-4357-acfc-97d885f6c97b\"/\u0012\u001d\r\u00d1P\u0013\u00c2\u0015\u009cK\u0092\u00c2\u001d\u0000\u0000=C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c0\u00e8\u0097\u00a8\u0006B\b\u001a\u0006CCHP85" + }, + { + "type": "sin_recorrido", + "entity": "\n$33ad06c7-5aed-4a2b-8e89-7fb5269ad654\"/\u0012\u001d\r\u0097R\u0013\u00c2\u0015L?\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ca\u00e6\u0097\u00a8\u0006B\b\u001a\u0006KHYD29" + }, + { + "type": "sin_recorrido", + "entity": "\n$3373bc62-cbdf-4f8f-b7eb-c10960ed71f4\"/\u0012\u001d\r\\-\u0013\u00c2\u0015\u0092\u0017\u0092\u00c2\u001d\u0000\u00002C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u008c\u00e7\u0097\u00a8\u0006B\b\u001a\u0006FHSX94" + }, + { + "type": "sin_recorrido", + "entity": "\n$a6aebcf7-22b6-4b29-9051-3bf237cd9ec9\"/\u0012\u001d\r}:\u0013\u00c2\u0015v-\u0092\u00c2\u001d\u0000\u0000fC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0092\u00e7\u0097\u00a8\u0006B\b\u001a\u0006FSYW69" + }, + { + "type": "sin_recorrido", + "entity": "\n$bd78b111-6211-4ff2-8ad8-40a72c3480de\"/\u0012\u001d\r\u00f0\u00da\u0012\u00c2\u0015\u0099\u00f4\u0091\u00c2\u001d\u0000\u0000\u00d0A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009f\u00bc\u00e7\u00a7\u0006B\b\u001a\u0006XV1998" + }, + { + "type": "sin_recorrido", + "entity": "\n$ef0938af-44c6-4167-9cde-16465d0bd604\"/\u0012\u001d\r9-\u0013\u00c2\u0015\u009a\u0017\u0092\u00c2\u001d\u0000\u0000`A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b0\u00e6\u0097\u00a8\u0006B\b\u001a\u0006JZZP54" + }, + { + "type": "sin_recorrido", + "entity": "\n$2ae7dd47-8ad4-4d89-9a43-0c4340074413\"/\u0012\u001d\r\u00e2\u0013\u0013\u00c2\u0015%:\u0092\u00c2\u001d\u0000\u0000\u00a4B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ec\u00e6\u0097\u00a8\u0006B\b\u001a\u0006RW9266" + }, + { + "type": "sin_recorrido", + "entity": "\n$b27af132-700b-48ce-aaf6-c8705335d777\"/\u0012\u001d\r)\u00d5\u0013\u00c2\u0015\u00b0\u0005\u0092\u00c2\u001d\u0000\u0000QC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008e\u00e3\u00f8?(\u00a7\u00e1\u0097\u00a8\u0006B\b\u001a\u0006WW3719" + }, + { + "type": "sin_recorrido", + "entity": "\n$7c45f425-9e57-4920-a584-8121d3f30d29\"/\u0012\u001d\r4\u001d\u0013\u00c2\u0015\u00c42\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ba\u00e4\u0097\u00a8\u0006B\b\u001a\u0006JGYB32" + }, + { + "type": "sin_recorrido", + "entity": "\n$d41a5cfb-40e7-4cb2-a3ea-627340fafd83\"/\u0012\u001d\r6\u0088\u0013\u00c2\u0015\u0014C\u0092\u00c2\u001d\u0000\u0000UC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ad\u00e6\u0097\u00a8\u0006B\b\u001a\u0006HJPL24" + }, + { + "type": "sin_recorrido", + "entity": "\n$b4be97f1-8913-4a58-a6d1-4968f1b2d7e0\"/\u0012\u001d\r\n\u00cc\u0013\u00c2\u0015\u00e3\u00dc\u0091\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00e5\u00d8\u00fe\u00a7\u0006B\b\u001a\u0006DCXX34" + }, + { + "type": "sin_recorrido", + "entity": "\n$4f9f9d2a-5ac9-4118-9297-a156cf25db2d\"/\u0012\u001d\r\u008a3\u0013\u00c2\u0015^+\u0092\u00c2\u001d\u0000\u0000\u0016C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00cd\u00ee\u00ae\u00a7\u0006B\b\u001a\u0006WC5272" + }, + { + "type": "sin_recorrido", + "entity": "\n$06f390f7-fa50-4ae4-ab8b-b577e7cdacb9\"/\u0012\u001d\rX-\u0013\u00c2\u0015\u0092\u0017\u0092\u00c2\u001d\u0000\u0000\u0081C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00d8\u00a0\u0094\u00a8\u0006B\b\u001a\u0006ZT3358" + }, + { + "type": "sin_recorrido", + "entity": "\n$63eed79b-6e3d-4dcf-9fdc-e793447723da\"/\u0012\u001d\r:\u0011\u0013\u00c2\u0015\n:\u0092\u00c2\u001d\u0000\u0000\u00e8B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00de\u00e6\u0097\u00a8\u0006B\b\u001a\u0006JKVB23" + }, + { + "type": "sin_recorrido", + "entity": "\n$7f8a9462-0270-4ff0-93b1-32ee5c68f3c0\"/\u0012\u001d\r\u00d6e\u0013\u00c2\u0015\u00ebH\u0092\u00c2\u001d\u0000\u0000\"C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a9\u00e6\u0097\u00a8\u0006B\b\u001a\u0006LHWX31" + }, + { + "type": "sin_recorrido", + "entity": "\n$a6fc8e33-49b6-49b4-9914-5b3bc6b728ae\"/\u0012\u001d\rz-\u0013\u00c2\u0015Q\u0017\u0092\u00c2\u001d\u0000\u0000FC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0098\u0097\u0094\u00a8\u0006B\b\u001a\u0006WR7272" + }, + { + "type": "sin_recorrido", + "entity": "\n$c66d85c0-d242-4046-a4f9-33291fcf7bfa\"/\u0012\u001d\r|I\u0013\u00c2\u0015s\u00fc\u0091\u00c2\u001d\u0000\u0000\u00a7C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009e\u00d2\u0093\u00a8\u0006B\b\u001a\u0006HJPY79" + }, + { + "type": "sin_recorrido", + "entity": "\n$e8e8930b-ad20-4d9c-a3dd-9e6eba511c73\"/\u0012\u001d\r|-\u0013\u00c2\u0015}\u0017\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00e8\u0080\u0097\u00a8\u0006B\b\u001a\u0006WU2419" + }, + { + "type": "sin_recorrido", + "entity": "\n$f912c1c2-a84b-49ad-82ef-9ebc79b36b8e\"/\u0012\u001d\rA\u00db\u0012\u00c2\u0015\u00a2\u00f4\u0091\u00c2\u001d\u0000\u00005\u0092\u00c2\u001d\u0000\u0000\u00a8B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0098\u00d4\u0093\u00a8\u0006B\b\u001a\u0006CSYZ74" + }, + { + "type": "sin_recorrido", + "entity": "\n$45c10aeb-ddf2-4ecd-8ba1-50a1c5f33395\"/\u0012\u001d\r\\\u0011\u0013\u00c2\u0015\u00ca9\u0092\u00c2\u001d\u0000\u0000tC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0080\u0094\u00ee\u00a7\u0006B\b\u001a\u0006YS1125" + }, + { + "type": "sin_recorrido", + "entity": "\n$2296cd92-d93a-42f5-8b98-30beab92ff30\"/\u0012\u001d\r\u00c8g\u0012\u00c2\u0015\u0016\u00ec\u0091\u00c2\u001d\u0000\u0000\u00ecB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-r\u001c\u0097@(\u00e4\u00e5\u0097\u00a8\u0006B\b\u001a\u0006JJJC67" + }, + { + "type": "sin_recorrido", + "entity": "\n$9b1e1bfe-bd87-4c59-a6ed-dc3e0524ad38\"/\u0012\u001d\r\u00dci\u0012\u00c2\u0015\u00cc\u00ef\u0091\u00c2\u001d\u0000\u0000`A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ea\u00e6\u0097\u00a8\u0006B\b\u001a\u0006CYWK15" + }, + { + "type": "sin_recorrido", + "entity": "\n$1b7854b1-3bfa-41bc-85ef-0a712016fb9f\"/\u0012\u001d\r\u00c3M\u0013\u00c2\u0015\u00fb\u0015\u0092\u00c2\u001d\u0000\u0000\u0080B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u009a\u0099qA(\u00cf\u00e7\u0097\u00a8\u0006B\b\u001a\u0006FXFW83" + }, + { + "type": "sin_recorrido", + "entity": "\n$2f1e0597-e2cf-4d18-b453-21a56ea45ff5\"/\u0012\u001d\r\u00d0\u00c3\u0013\u00c2\u0015\u00e9\r\u0092\u00c2\u001d\u0000\u0000\u00f4B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ec\u00d9\u0096\u00a8\u0006B\b\u001a\u0006ZV6191" + }, + { + "type": "sin_recorrido", + "entity": "\n$50c9a640-43ce-49e6-bfed-ec5b8ba893ef\"/\u0012\u001d\r\u00e6\u0013\u0013\u00c2\u00158:\u0092\u00c2\u001d\u0000\u0000\u0082C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b7\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DBPC39" + }, + { + "type": "sin_recorrido", + "entity": "\n$5b5870cb-62e6-43dc-b823-4b79511de6f5\"/\u0012\u001d\r\u00e0\u0013\u0013\u00c2\u0015M:\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a8\u00e8\u0097\u00a8\u0006B\b\u001a\u0006JTZY38" + }, + { + "type": "sin_recorrido", + "entity": "\n$d04e4219-7556-41a7-aac6-56f1ded81471\"/\u0012\u001d\r\u00adj\u0012\u00c2\u0015\u00dd\u00ef\u0091\u00c2\u001d\u0000\u0000\u0092C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u008e\u00cf\u0093\u00a8\u0006B\b\u001a\u0006LVLG34" + }, + { + "type": "sin_recorrido", + "entity": "\n$7808d218-3bc3-4adc-aea2-716b4aa9b4ac\"/\u0012\u001d\r\u00b0\u00da\u0012\u00c2\u0015\u0088\u00f4\u0091\u00c2\u001d\u0000\u0000\u0085C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0096\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DPZY62" + }, + { + "type": "sin_recorrido", + "entity": "\n$2e857e78-5820-4a95-9e21-40eda7f45531\"/\u0012\u001d\r\u0087\u00b6\u0013\u00c2\u0015\u00e6\n\u0092\u00c2\u001d\u0000\u0000XB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00cc\u00be\u0094\u00a8\u0006B\b\u001a\u0006YG2312" + }, + { + "type": "sin_recorrido", + "entity": "\n$5470aad7-af87-405b-91d4-7c4d2714d2b4\"/\u0012\u001d\r\u00dd^\u0013\u00c2\u0015\u00f8\u0004\u0092\u00c2\u001d\u0000\u0000\u0092C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ae\u00e8\u0097\u00a8\u0006B\b\u001a\u0006YS3101" + }, + { + "type": "sin_recorrido", + "entity": "\n$33e35ea3-c65c-4b00-9f3b-1122b820c109\"/\u0012\u001d\r\u0087R\u0013\u00c2\u0015:?\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00d2\u00d5\u0095\u00a6\u0006B\b\u001a\u0006YE2192" + }, + { + "type": "sin_recorrido", + "entity": "\n$6f2945dc-7c0c-471a-9afd-49ad5db2f2ef\"/\u0012\u001d\rd\u00dc\u0012\u00c2\u0015&\u00f4\u0091\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00be\u00f7\u00b5\u00a5\u0006B\b\u001a\u0006FHZB99" + }, + { + "type": "sin_recorrido", + "entity": "\n$a7cbc6e4-f479-44e2-9d5e-dd55d700fd1e\"/\u0012\u001d\r(\u00cc\u0013\u00c2\u0015\u0012\u00dd\u0091\u00c2\u001d\u0000\u0000\u009aC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UU\u00d5?(\u00bc\u00c3\u0093\u00a8\u0006B\b\u001a\u0006SSBD60" + }, + { + "type": "sin_recorrido", + "entity": "\n$95402368-8889-45a8-a879-42eec67c32f5\"/\u0012\u001d\r\u0000\u00c9\u0013\u00c2\u0015\u001e\u0007\u0092\u00c2\u001d\u0000\u0000\u00acC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b0\u00c6\u0093\u00a8\u0006B\b\u001a\u0006WW3307" + }, + { + "type": "sin_recorrido", + "entity": "\n$f180b007-40aa-43f4-9aca-057e7c7c35c8\"/\u0012\u001d\r\u00c6)\u0013\u00c2\u00159/\u0092\u00c2\u001d\u0000\u0000\u0090C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0084\u00e7\u0097\u00a8\u0006B\b\u001a\u0006GDBK11" + }, + { + "type": "sin_recorrido", + "entity": "\n$eeef2229-835c-4573-b01c-a05ea73c55e3\"/\u0012\u001d\r\u00e3e\u0013\u00c2\u0015\u00e3H\u0092\u00c2\u001d\u0000\u0000\u00f2B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00e0\u009f\u0097\u00a8\u0006B\b\u001a\u0006YU1955" + }, + { + "type": "sin_recorrido", + "entity": "\n$67a7edf5-e0e6-4f04-b2ac-ec7c9bf3d581\"/\u0012\u001d\r\u0002L\u0013\u00c2\u0015\u008bB\u0092\u00c2\u001d\u0000\u0000KC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f5\u00e4\u0097\u00a8\u0006B\b\u001a\u0006FXJS51" + }, + { + "type": "sin_recorrido", + "entity": "\n$801b8186-b15b-4ebe-a6d9-ea4ec4b51fc9\"/\u0012\u001d\r\u00ea8\u0013\u00c2\u0015\u00a5\u0013\u0092\u00c2\u001d\u0000\u0000fC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ae\u00b4\u0097\u00a8\u0006B\b\u001a\u0006YU8640" + }, + { + "type": "sin_recorrido", + "entity": "\n$95a4c9d5-1c57-4725-888d-0642458ca042\"/\u0012\u001d\rP-\u0013\u00c2\u0015\u0082\u0017\u0092\u00c2\u001d\u0000\u0000\u00e0B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00e0\u00c8\u0093\u00a8\u0006B\b\u001a\u0006LPSX78" + }, + { + "type": "sin_recorrido", + "entity": "\n$01ca1d22-2113-4c96-9096-492c03e3ef1d\"/\u0012\u001d\r\u0004\u00cc\u0013\u00c2\u0015\u00e4\u0005\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00d6\u0084\u0097\u00a8\u0006B\b\u001a\u0006HYCZ20" + }, + { + "type": "sin_recorrido", + "entity": "\n$1d7e9628-bc00-4d9e-8c5b-e83eebff03b0\"/\u0012\u001d\r\u0001\u00d8\u0012\u00c2\u0015\u00a4\u00f2\u0091\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00d6\u00d1\u0091\u00a8\u0006B\b\u001a\u0006ZR7137" + }, + { + "type": "sin_recorrido", + "entity": "\n$a605b913-9ae4-421b-9dc6-15ad261841a7\"/\u0012\u001d\r%\u001d\u0013\u00c2\u0015\u00bd2\u0092\u00c2\u001d\u0000\u0000tB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u000e@(\u00a3\u0098\u008e\u00a8\u0006B\b\u001a\u0006BFWV72" + }, + { + "type": "sin_recorrido", + "entity": "\n$377ac708-c347-4892-b076-eb54d6fb6a19\"/\u0012\u001d\r\u0084\u00d4\u0013\u00c2\u0015$\u0005\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00bf\u00a9\u00a7\u00a6\u0006B\b\u001a\u0006YB6655" + }, + { + "type": "sin_recorrido", + "entity": "\n$5c4c6e41-2b37-480b-a857-148ee55a95e2\"/\u0012\u001d\r\u00d9U\u0013\u00c2\u0015^L\u0092\u00c2\u001d\u0000\u0000\u00f2B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u008f\u00a1\u0089\u00a7\u0006B\b\u001a\u0006CVTG80" + }, + { + "type": "sin_recorrido", + "entity": "\n$3fdc4a70-0212-4d75-992b-659fbb0aa7dd\"/\u0012\u001d\r5\u0001\u0013\u00c2\u0015P\u0003\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b4\u00f8\u0093\u00a8\u0006B\b\u001a\u0006DCVZ45" + }, + { + "type": "sin_recorrido", + "entity": "\n$f61295ae-ec13-4a81-ac6a-2075e8c2f4d3\"/\u0012\u001d\ry:\u0013\u00c2\u0015\u0017\u000f\u0092\u00c2\u001d\u0000\u0000\u00c0B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c1\u00bb\u0093\u00a8\u0006B\b\u001a\u0006JCCK42" + }, + { + "type": "sin_recorrido", + "entity": "\n$11cdd616-583f-4a45-9a5e-693ce44c0aed\"/\u0012\u001d\r>_\u0017\u00c2\u0015\u00a7\u00d9\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ba\u00e4\u0097\u00a8\u0006B\b\u001a\u0006CJHT88" + }, + { + "type": "sin_recorrido", + "entity": "\n$877dc403-44b6-490b-befd-c3a9c3dda7be\"/\u0012\u001d\rKj\u0012\u00c2\u0015\u00f4\u00ef\u0091\u00c2\u001d\u0000\u00008C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00e6\u00ea\u0093\u00a8\u0006B\b\u001a\u0006FYDV15" + }, + { + "type": "sin_recorrido", + "entity": "\n$acf5707a-03d6-43a8-9a54-84c2a35c98ca\"/\u0012\u001d\r\u00e4b\u0013\u00c2\u0015\u00e3I\u0092\u00c2\u001d\u0000\u0000?C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00e4\u00ed\u0093\u00a8\u0006B\b\u001a\u0006YU1586" + }, + { + "type": "sin_recorrido", + "entity": "\n$44574553-7628-423e-aa87-25cf21eeb2fc\"/\u0012\u001d\rN0\u0013\u00c2\u0015s\u0013\u0092\u00c2\u001d\u0000\u0000LB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u001c\u00c7\u00b1?(\u008a\u0089\u0093\u00a8\u0006B\b\u001a\u0006BPZW59" + }, + { + "type": "sin_recorrido", + "entity": "\n$3cf0178a-a2ee-498e-9dbe-97b5e10ca4b4\"/\u0012\u001d\r;Q\u0013\u00c2\u0015a\u001f\u0092\u00c2\u001d\u0000\u0000BC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00da\u00d2\u0091\u00a8\u0006B\b\u001a\u0006YE2820" + }, + { + "type": "sin_recorrido", + "entity": "\n$63be7389-bdbd-4cee-9a02-33aff3b1b75e\"/\u0012\u001d\rfk\u0013\u00c2\u0015\u00a4I\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c0\u00d8\u0083\u00a8\u0006B\b\u001a\u0006KXWS22" + }, + { + "type": "sin_recorrido", + "entity": "\n$00dc4224-f897-46c1-8279-83a1bbcc5a8e\"/\u0012\u001d\rK\u0013\u0013\u00c2\u0015\u00f89\u0092\u00c2\u001d\u0000\u0000\u00bcB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ba\u00e8\u0097\u00a8\u0006B\b\u001a\u0006JGJV29" + }, + { + "type": "sin_recorrido", + "entity": "\n$1e70fb56-ac33-41fb-b02c-8640f78f574c\"/\u0012\u001d\r\u00f7\u001d\u0013\u00c2\u0015\u00ce2\u0092\u00c2\u001d\u0000\u0000:C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ac\u00e8\u0097\u00a8\u0006B\b\u001a\u0006JGJV35" + }, + { + "type": "sin_recorrido", + "entity": "\n$09f75ca0-58c3-4cd3-ab4c-bfba69d4264b\"/\u0012\u001d\rx\u00e4\u0013\u00c2\u0015~\u00da\u0091\u00c2\u001d\u0000\u0080\u0088C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b2\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HBRB50" + }, + { + "type": "sin_recorrido", + "entity": "\n$9f028e3e-773d-4de4-91b4-d1d733af6102\"/\u0012\u001d\r\u00c0j\u0012\u00c2\u0015\u00b8\u00ef\u0091\u00c2\u001d\u0000\u0000`B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00d6\u00a0\u0094\u00a8\u0006B\b\u001a\u0006HRXG55" + }, + { + "type": "sin_recorrido", + "entity": "\n$b7b8b95e-179e-4513-bf70-669547980a0f\"/\u0012\u001d\r\"j\u0012\u00c2\u0015\u00de\u00ef\u0091\u00c2\u001d\u0000\u0000`B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UUU?(\u00ce\u00c0\u0093\u00a8\u0006B\b\u001a\u0006FXJS39" + }, + { + "type": "sin_recorrido", + "entity": "\n$59b21f62-c803-4a73-a1cb-fdbd88063d08\"/\u0012\u001d\r\u00fa8\u0013\u00c2\u0015\u0092\u0013\u0092\u00c2\u001d\u0000\u0000\u00a8B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b0\u00e7\u0097\u00a8\u0006B\b\u001a\u0006CKRB11" + }, + { + "type": "sin_recorrido", + "entity": "\n$9e532018-f5bb-441c-a7f8-5ab761b9d218\"/\u0012\u001d\r\u00b7\u00c3\u0012\u00c2\u0015t:\u0092\u00c2\u001d\u0000\u0000\u0092C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a0\u00c4\u0089\u00a8\u0006B\b\u001a\u0006CBKD60" + }, + { + "type": "sin_recorrido", + "entity": "\n$14d686da-6791-45f0-be9c-cd7f1157f7d1\"/\u0012\u001d\r\u0094\u0010\u0013\u00c2\u0015\u00e89\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00e2\u00dd\u00cd\u00a7\u0006B\b\u001a\u0006ZY4351" + }, + { + "type": "sin_recorrido", + "entity": "\n$eb46d922-dc2b-492c-94f5-ed0349385a30\"/\u0012\u001d\r\u0012j\u0012\u00c2\u0015\u00e4\u00ef\u0091\u00c2\u001d\u0000\u0000`A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00e2\u00e6\u0097\u00a8\u0006B\b\u001a\u0006CXLC99" + }, + { + "type": "sin_recorrido", + "entity": "\n$38906fc4-c0d1-4b20-b841-6cde0dc61961\"/\u0012\u001d\r 3\u0013\u00c2\u0015\u00f8\r\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00bc\u009f\u0096\u00a8\u0006B\b\u001a\u0006LCTG92" + }, + { + "type": "sin_recorrido", + "entity": "\n$5b8913cf-37ff-4738-9840-ce90d5f4712e\"/\u0012\u001d\r\u00ebK\u0013\u00c2\u0015\u00a3B\u0092\u00c2\u001d\u0000\u0000?C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00bc\u00d8\u0093\u00a8\u0006B\b\u001a\u0006CYSD90" + }, + { + "type": "sin_recorrido", + "entity": "\n$d051226e-108f-4b16-b500-73d43f7db67f\"/\u0012\u001d\rp\u00f9\u0012\u00c2\u0015\u0019\u0001\u0092\u00c2\u001d\u0000\u0000RC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-9\u008eCA(\u0096\u00e8\u0097\u00a8\u0006B\b\u001a\u0006YB7528" + }, + { + "type": "sin_recorrido", + "entity": "\n$3c214f86-bcb3-4a5b-b3fe-a4bf6939cb1a\"/\u0012\u001d\r\u00e7F\u0013\u00c2\u0015\u00bb\u001f\u0092\u00c2\u001d\u0000\u0000\u001eC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009e\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HYYX67" + }, + { + "type": "sin_recorrido", + "entity": "\n$83a07ec1-1d44-4710-bec2-880f6a415240\"/\u0012\u001d\r\u0087\u00d9\u0012\u00c2\u0015oE\u0092\u00c2\u001d\u0000\u0000\u00b8B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000 @(\u008e\u00e8\u0097\u00a8\u0006B\b\u001a\u0006CXSS25" + }, + { + "type": "sin_recorrido", + "entity": "\n$a4cfaabd-45e0-4960-8ae7-1d345a7830e6\"/\u0012\u001d\ra\u0011\u0013\u00c2\u0015\u00b79\u0092\u00c2\u001d\u0000\u0000lC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ba\u00d8\u00e8\u00a7\u0006B\b\u001a\u0006DVYW29" + }, + { + "type": "sin_recorrido", + "entity": "\n$12b3de53-0541-4e1c-a44f-1d553b35fe6e\"/\u0012\u001d\r\u00fb\u00d4\u0013\u00c2\u0015z\u0005\u0092\u00c2\u001d\u0000\u0080\u00a7C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0085\u00e3\u0097\u00a8\u0006B\b\u001a\u0006YJ3033" + }, + { + "type": "sin_recorrido", + "entity": "\n$9dc4d098-26ad-41de-ad33-f7e1145cd64e\"/\u0012\u001d\r+\u0011\u0013\u00c2\u0015\u00f99\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0092\u00e7\u0097\u00a8\u0006B\b\u001a\u0006CGXR99" + }, + { + "type": "sin_recorrido", + "entity": "\n$f248089d-7972-45ff-96d1-42f612357606\"/\u0012\u001d\r\u00aeP\u0013\u00c2\u0015\u0080K\u0092\u00c2\u001d\u0000\u0000\u00a0B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b0\u00e8\u0097\u00a8\u0006B\b\u001a\u0006ZY4652" + }, + { + "type": "sin_recorrido", + "entity": "\n$b36ef04b-f18a-4906-ab10-13a8c268b099\"/\u0012\u001d\r\u0007\u00db\u0012\u00c2\u0015\u008c\u00f4\u0091\u00c2\u001d\u0000\u0000HC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c6\u00e8\u0097\u00a8\u0006B\b\u001a\u0006JYBH89" + }, + { + "type": "sin_recorrido", + "entity": "\n$6ad67278-4909-405c-ae43-d4c09d320517\"/\u0012\u001d\r\u00fa\u00d4\u0013\u00c2\u0015U\u0005\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c8\u00e8\u0097\u00a8\u0006B\b\u001a\u0006YV1859" + }, + { + "type": "sin_recorrido", + "entity": "\n$25488f38-5d33-4741-a80f-34506add8d53\"/\u0012\u001d\rW\u00e1\u0012\u00c2\u0015L\u00f3\u0091\u00c2\u001d\u0000\u00004B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UUUA(\u009d\u00e8\u0097\u00a8\u0006B\b\u001a\u0006ZJ6367" + }, + { + "type": "sin_recorrido", + "entity": "\n$fb92ae69-0f6a-412f-8dbf-803f5b0c5003\"/\u0012\u001d\r:\u0011\u0013\u00c2\u0015\u0011:\u0092\u00c2\u001d\u0000\u0000\u00d0B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b8\u00a6\u0093\u00a8\u0006B\b\u001a\u0006FSRS64" + }, + { + "type": "sin_recorrido", + "entity": "\n$d719d81b-8405-4bfc-8616-7c58b659a49a\"/\u0012\u001d\r\u0014E\u0013\u00c2\u0015{\u0013\u0092\u00c2\u001d\u0000\u0000rC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-33\u0097A(\u00d9\u00e7\u0097\u00a8\u0006B\b\u001a\u0006FCBR41" + }, + { + "type": "sin_recorrido", + "entity": "\n$8b1fde3d-e05e-4634-9253-d6791d5c4c58\"/\u0012\u001d\r9\u0011\u0013\u00c2\u0015!:\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ee\u00b4\u0091\u00a8\u0006B\b\u001a\u0006WG9925" + }, + { + "type": "sin_recorrido", + "entity": "\n$75a8726e-d1bc-4346-b47f-6880835e85c7\"/\u0012\u001d\r\u0088\u00c3\u0013\u00c2\u0015\u00eb\r\u0092\u00c2\u001d\u0000\u0000\u00a1C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c6\u0084\u0097\u00a8\u0006B\b\u001a\u0006RRDZ68" + }, + { + "type": "sin_recorrido", + "entity": "\n$2511168d-1f58-4e3e-a88f-16f20ea65668\"/\u0012\u001d\r_\u00c4\u0013\u00c2\u0015V\t\u0092\u00c2\u001d\u0000\u0000!C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UU-A(\u00c7\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HYCZ53" + }, + { + "type": "sin_recorrido", + "entity": "\n$0234c1bf-7d84-47c9-8992-1cc3a14a27c3\"/\u0012\u001d\r^\u00d1\u0013\u00c2\u0015\u009e\n\u0092\u00c2\u001d\u0000\u0000hC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00ab\u00aa\u0012A(\u008c\u00e8\u0097\u00a8\u0006B\b\u001a\u0006XU2925" + }, + { + "type": "sin_recorrido", + "entity": "\n$88e1f408-b55a-4c15-8bff-4bd7dcbe2ece\"/\u0012\u001d\re-\u0013\u00c2\u0015w\u0017\u0092\u00c2\u001d\u0000\u0000(\u00a0\u00b5\u0093\u00a8\u0006B\b\u001a\u0006HJYB80" + }, + { + "type": "sin_recorrido", + "entity": "\n$f34d0bba-4ef0-43a9-bf16-5efe35f1575c\"/\u0012\u001d\r\u00f4P\u0013\u00c2\u0015\nL\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b5\u00e8\u0097\u00a8\u0006B\b\u001a\u0006LJKK23" + }, + { + "type": "sin_recorrido", + "entity": "\n$f7e24071-ab53-4560-a937-ce1042b932ca\"/\u0012\u001d\r\b\u00cc\u0013\u00c2\u0015\u00ff\t\u0092\u00c2\u001d\u0000\u0000tC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00c7q\u00cc@(\u009a\u00e8\u0097\u00a8\u0006B\b\u001a\u0006RYHY66" + }, + { + "type": "sin_recorrido", + "entity": "\n$77829db0-a940-406a-972e-5602069e1361\"/\u0012\u001d\r:Z\u0013\u00c2\u0015\u00f6:\u0092\u00c2\u001d\u0000\u0000\u00acC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b8\u00f8\u00e8\u00a7\u0006B\b\u001a\u0006FYBB80" + }, + { + "type": "sin_recorrido", + "entity": "\n$36603737-738d-4610-a70f-1faba96db50d\"/\u0012\u001d\rW\u00d0\u0013\u00c2\u0015\u0080\u000b\u0092\u00c2\u001d\u0000\u0000\u0084C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u008e>(\u0094\u00e8\u0097\u00a8\u0006B\b\u001a\u0006LJKK86" + }, + { + "type": "sin_recorrido", + "entity": "\n$0364c522-ecce-40cb-ba92-77692f3170a9\"/\u0012\u001d\r4\u00db\u0012\u00c2\u0015\u00a3\u00f4\u0091\u00c2\u001d\u0000\u0080\u00abC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ea\u00be\u0093\u00a8\u0006B\b\u001a\u0006HTYJ27" + }, + { + "type": "sin_recorrido", + "entity": "\n$0e3dab73-3811-4cf4-b2cf-17cfd63108b9\"/\u0012\u001d\r\u00b3\u00c3\u0013\u00c2\u0015\u00ec\r\u0092\u00c2\u001d\u0000\u0000DC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ce\u00f5\u0092\u00a8\u0006B\b\u001a\u0006DCRD27" + }, + { + "type": "sin_recorrido", + "entity": "\n$f18c2aeb-850b-4a98-b2a0-d3cb3fea88a7\"/\u0012\u001d\r%:\u0013\u00c2\u0015C\u001a\u0092\u00c2\u001d\u0000\u0000\u00a8C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b2\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DHSP89" + }, + { + "type": "sin_recorrido", + "entity": "\n$03e06f2e-4ae5-45d1-9b31-bf3a5a226746\"/\u0012\u001d\r\u00a6\u00dc\u0012\u00c2\u0015\u00ea\u00f4\u0091\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00be\u00e8\u0097\u00a8\u0006B\b\u001a\u0006KXCT29" + }, + { + "type": "sin_recorrido", + "entity": "\n$e09d2f1a-6a10-4312-86e3-41a1b5ba012a\"/\u0012\u001d\rg\u00db\u0012\u00c2\u0015\u00af\u00f4\u0091\u00c2\u001d\u0000\u00000B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-r\u001cg@(\u0085\u00c5\u0092\u00a8\u0006B\b\u001a\u0006CZBY42" + }, + { + "type": "sin_recorrido", + "entity": "\n$15972446-57f8-4846-8dc3-99285deee61d\"/\u0012\u001d\r7\u00d8\u0012\u00c2\u0015\u00e6\u00f2\u0091\u00c2\u001d\u0000\u0000!C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00fd\u00e5\u0097\u00a8\u0006B\b\u001a\u0006BZFV64" + }, + { + "type": "sin_recorrido", + "entity": "\n$cfef994b-58bc-4052-b29f-3d8d3c8506dd\"/\u0012\u001d\r(6\u0013\u00c2\u0015\u00a1\u0016\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b4\u0091\u0090\u00a8\u0006B\b\u001a\u0006BHWD20" + }, + { + "type": "sin_recorrido", + "entity": "\n$c2d2fd12-703a-460a-a8ed-5366714af4fd\"/\u0012\u001d\r\u00c9(\u0013\u00c2\u0015v(\u0092\u00c2\u001d\u0000\u0000\u00e8B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0080\u00bc\u008d\u00a8\u0006B\b\u001a\u0006GVXX89" + }, + { + "type": "sin_recorrido", + "entity": "\n$f04ef51d-95a6-4db0-be3f-0eb5156cae1e\"/\u0012\u001d\r\u0084\u00f1\u0012\u00c2\u0015\u00944\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009e\u00bd\u0093\u00a8\u0006B\b\u001a\u0006HZRP11" + }, + { + "type": "sin_recorrido", + "entity": "\n$f3446974-df0f-4265-b038-8ca49811e9ed\"/\u0012\u001d\rWe\u0012\u00c2\u0015k\u00e7\u0091\u00c2\u001d\u0000\u0000\u0095C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0086\u00e9\u0093\u00a8\u0006B\b\u001a\u0006LVLG33" + }, + { + "type": "sin_recorrido", + "entity": "\n$012cc0fa-7040-4f0f-a5fb-aad6f8e240c3\"/\u0012\u001d\r`7\u0013\u00c2\u0015\u001c\u0017\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00e2\u0089\u0097\u00a8\u0006B\b\u001a\u0006CGCR16" + }, + { + "type": "sin_recorrido", + "entity": "\n$865c2107-5b6a-4abc-aae7-5a1edf64b4b8\"/\u0012\u001d\ruL\u0013\u00c2\u0015\u009cB\u0092\u00c2\u001d\u0000\u00000B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c2\u00a2\u0093\u00a8\u0006B\b\u001a\u0006HPRP54" + }, + { + "type": "sin_recorrido", + "entity": "\n$21229d97-f9ec-415c-a0da-ace03c809037\"/\u0012\u001d\rN_\u0013\u00c2\u0015\u00fc\u0004\u0092\u00c2\u001d\u0000\u0000\u0018B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b0\u00ea\u0096\u00a8\u0006B\b\u001a\u0006HYYX15" + }, + { + "type": "sin_recorrido", + "entity": "\n$36c641bf-4066-41de-af08-dbed5cf9ca4c\"/\u0012\u001d\r\u00c5\u00c3\u0013\u00c2\u0015\u00d5\r\u0092\u00c2\u001d\u0000\u0000\u00afC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0080\u0096\u0095\u00a8\u0006B\b\u001a\u0006FCBR88" + }, + { + "type": "sin_recorrido", + "entity": "\n$474f1f8b-7606-4b5c-987c-0fa648c21bff\"/\u0012\u001d\r%\u00db\u0012\u00c2\u0015\u0097\u00f4\u0091\u00c2\u001d\u0000\u0000PA!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00e2\u00b3\u0092\u00a8\u0006B\b\u001a\u0006FXRZ53" + }, + { + "type": "sin_recorrido", + "entity": "\n$422827b3-d577-41a9-aa77-1f242aa52209\"/\u0012\u001d\r\u00043\u0013\u00c2\u0015\u00dd\u0019\u0092\u00c2\u001d\u0000\u0000\u0010A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UU\u00d5?(\u00e0\u0095\u0093\u00a8\u0006B\b\u001a\u0006CLYS37" + }, + { + "type": "sin_recorrido", + "entity": "\n$12196ee8-0535-4e43-8254-b7674f3ff32c\"/\u0012\u001d\r&f\u0013\u00c2\u0015\u00e7H\u0092\u00c2\u001d\u0000\u0000\bB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009b\u00c4\u0092\u00a8\u0006B\b\u001a\u0006FVZD15" + }, + { + "type": "sin_recorrido", + "entity": "\n$2932f601-793c-4f1a-885b-5c06dbf2e972\"/\u0012\u001d\r\u00e0\u00bf\u0013\u00c2\u0015M\b\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u008c\u00a2\u0093\u00a8\u0006B\b\u001a\u0006FXRL46" + }, + { + "type": "sin_recorrido", + "entity": "\n$03039d96-6ae4-4448-aedf-b523161c2b84\"/\u0012\u001d\ruT\u0013\u00c2\u0015\u00fa\u0001\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b5\u00a1\u00fc\u00a7\u0006B\b\u001a\u0006CXBG41" + }, + { + "type": "sin_recorrido", + "entity": "\n$27e3a903-629e-4c6b-92c7-99bfbc5d3c40\"/\u0012\u001d\r\u00b7\u00c3\u0013\u00c2\u0015\u00ea\r\u0092\u00c2\u001d\u0000\u0000\u0000@!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b2\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HJRY28" + }, + { + "type": "sin_recorrido", + "entity": "\n$292714c7-d898-47b6-85b6-f1be33bdae23\"/\u0012\u001d\r\u0083\u0013\u0013\u00c2\u0015\u001e:\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u008c\u00f2\u0092\u00a8\u0006B\b\u001a\u0006FXRZ73" + }, + { + "type": "sin_recorrido", + "entity": "\n$d49e38cf-7fdc-45ca-8a2d-7919498d3a2b\"/\u0012\u001d\r#\u0013\u0013\u00c2\u0015\u000f:\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009c\u0098\u0096\u00a8\u0006B\b\u001a\u0006BBJZ67" + }, + { + "type": "sin_recorrido", + "entity": "\n$cb8740d8-d738-4a37-8788-24f2b02e8eea\"/\u0012\u001d\rP\u001c\u0013\u00c2\u0015\u00a19\u0092\u00c2\u001d\u0000\u0000\u00b1C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a2\u00aa\u0092\u00a8\u0006B\b\u001a\u0006ZR7462" + }, + { + "type": "sin_recorrido", + "entity": "\n$798e3db1-19a0-4bbe-8a56-7abe6ff1ef37\"/\u0012\u001d\rjH\u0013\u00c2\u00151\u0003\u0092\u00c2\u001d\u0000\u0000NC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u008e>(\u00b0\u009f\u00d9\u00a7\u0006B\b\u001a\u0006LVLG35" + }, + { + "type": "sin_recorrido", + "entity": "\n$1c9360bc-1e29-4f96-ae8c-e416f6f43608\"/\u0012\u001d\r\u008d\u00d0\u0013\u00c2\u0015h\u000b\u0092\u00c2\u001d\u0000\u0000\u0081C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ee\u00db\u0093\u00a8\u0006B\b\u001a\u0006HKCZ76" + }, + { + "type": "sin_recorrido", + "entity": "\n$238887a5-17da-4947-9ca9-67117c1ff8d3\"/\u0012\u001d\rH\u00db\u0012\u00c2\u0015\u00a2\u00f4\u0091\u00c2\u001d\u0000\u0000oC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009c\u008a\u0092\u00a8\u0006B\b\u001a\u0006LPDK12" + }, + { + "type": "sin_recorrido", + "entity": "\n$50f7a62b-819f-407e-afa8-4e8f656a0d75\"/\u0012\u001d\r=3\u0013\u00c2\u0015\u00d2\u0019\u0092\u00c2\u001d\u0000\u0000\u0094C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UU\u00d5?(\u0086\u00f6\u0092\u00a8\u0006B\b\u001a\u0006BFRP17" + }, + { + "type": "sin_recorrido", + "entity": "\n$c9c12328-1c43-47e0-92cd-d016717a89ee\"/\u0012\u001d\r\u00cc\u001f\u0013\u00c2\u0015\u00df.\u0092\u00c2\u001d\u0000\u0000yC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00cb\u00c3\u0093\u00a8\u0006B\b\u001a\u0006HSTC57" + }, + { + "type": "sin_recorrido", + "entity": "\n$fe542b7d-3979-4713-8f0d-ad6a5fb20c22\"/\u0012\u001d\r\u00d5Q\u0013\u00c2\u0015\u00c4\"\u0092\u00c2\u001d\u0000\u0000\u009fC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-ff\u00c2A(\u00fe\u00b5\u0093\u00a8\u0006B\b\u001a\u0006YU8095" + }, + { + "type": "sin_recorrido", + "entity": "\n$303d191c-2106-47c1-a5b3-40ef04e6c4ae\"/\u0012\u001d\r\u00fa\u00df\u0012\u00c2\u0015\u00ee=\u0092\u00c2\u001d\u0000\u0000\nC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b8\u00a7\u0094\u00a8\u0006B\b\u001a\u0006YV2161" + }, + { + "type": "sin_recorrido", + "entity": "\n$534eaabd-a05b-44aa-9051-357a94fd7f2a\"/\u0012\u001d\r\u0005\u0013\u0013\u00c2\u0015=:\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b8\u00cd\u008d\u00a8\u0006B\b\u001a\u0006JGJW97" + }, + { + "type": "sin_recorrido", + "entity": "\n$4efdd9c0-6413-4032-a952-3593d3adf888\"/\u0012\u001d\r\u0088\u001d\u0013\u00c2\u0015\u00f42\u0092\u00c2\u001d\u0000\u0000@A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c0\u00f9\u0093\u00a8\u0006B\b\u001a\u0006LKCK13" + }, + { + "type": "sin_recorrido", + "entity": "\n$fc48fa3c-9207-4bd2-bffa-cf8b1b18984f\"/\u0012\u001d\r\u00cbm\u0013\u00c2\u0015\u00ecG\u0092\u00c2\u001d\u0000\u0000\fC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b2\u00e7\u0097\u00a8\u0006B\b\u001a\u0006YP2189" + }, + { + "type": "sin_recorrido", + "entity": "\n$00f9c363-31f3-4a60-be53-1833fac54c6e\"/\u0012\u001d\r\u0006R\u0013\u00c2\u0015%?\u0092\u00c2\u001d\u0000\u0000\u00b2C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00cd\u0090\u0097\u00a8\u0006B\b\u001a\u0006YE2440" + }, + { + "type": "sin_recorrido", + "entity": "\n$8902e930-88ed-4ef0-b981-e2f343dc933a\"/\u0012\u001d\r{\u00d0\u0013\u00c2\u0015_\u000b\u0092\u00c2\u001d\u0000\u0000@B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009a\u00bb\u0093\u00a8\u0006B\b\u001a\u0006YT2604" + }, + { + "type": "sin_recorrido", + "entity": "\n$4ac372e2-a0b0-46ec-9f15-fdfe3fca4b2a\"/\u0012\u001d\rjC\u0013\u00c2\u0015\u00c0$\u0092\u00c2\u001d\u0000\u0000`A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00d2\u008a\u0093\u00a8\u0006B\b\u001a\u0006YV3678" + }, + { + "type": "sin_recorrido", + "entity": "\n$0e8a512c-07b3-4d2f-88ce-514a322a6a88\"/\u0012\u001d\r9.\u0013\u00c2\u0015\u00d66\u0092\u00c2\u001d\u0000\u0000\u0018C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00fc\u00df\u0092\u00a8\u0006B\b\u001a\u0006BLDT29" + }, + { + "type": "sin_recorrido", + "entity": "\n$054b9609-5a9f-4376-881d-8beb2b88750b\"/\u0012\u001d\r?\u00d5\u0013\u00c2\u0015\u00a2\u0005\u0092\u00c2\u001d\u0000\u0000%C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b0\u00a0\u0093\u00a8\u0006B\b\u001a\u0006KHSW59" + }, + { + "type": "sin_recorrido", + "entity": "\n$b5caabbe-d662-4b17-a4f7-986f4b4aedc0\"/\u0012\u001d\r\u001f.\u0013\u00c2\u0015\u00995\u0092\u00c2\u001d\u0000\u0000\u0096C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000 @(\u0088\u009f\u0093\u00a8\u0006B\b\u001a\u0006FXRL37" + }, + { + "type": "sin_recorrido", + "entity": "\n$77fc2049-2a46-429c-bde8-d3605ffc7ded\"/\u0012\u001d\r\u0006f\u0013\u00c2\u0015\u00feH\u0092\u00c2\u001d\u0000\u0000\u0094C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f6\u00e2\u0092\u00a8\u0006B\b\u001a\u0006YU1981" + }, + { + "type": "sin_recorrido", + "entity": "\n$3ce9fb26-8868-43d0-b022-9cf0c7071aaa\"/\u0012\u001d\r\u009c\u00c3\u0013\u00c2\u0015\u00ee\r\u0092\u00c2\u001d\u0000\u0000\u0080B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00aa\u00f1\u0096\u00a8\u0006B\b\u001a\u0006YA5387" + }, + { + "type": "sin_recorrido", + "entity": "\n$16acbe17-babd-499a-8c09-09d6060b1927\"/\u0012\u001d\r\u00e9P\u0013\u00c2\u0015\u0090K\u0092\u00c2\u001d\u0000\u0000\"C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c4\u00c0\u0097\u00a8\u0006B\b\u001a\u0006ZT4240" + }, + { + "type": "sin_recorrido", + "entity": "\n$01c0d732-13e3-4772-b0df-9061c4c37c99\"/\u0012\u001d\r\u00fee\u0013\u00c2\u0015\u00eaH\u0092\u00c2\u001d\u0000\u0000\u008eC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ac\u00ad\u00ed\u00a7\u0006B\b\u001a\u0006FSLC63" + }, + { + "type": "sin_recorrido", + "entity": "\n$bbf89a32-bf25-4ea2-b550-f7be2d3b780a\"/\u0012\u001d\r\u00b6j\u0012\u00c2\u0015\u00c5\u00ef\u0091\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ba\u0086\u00d2\u00a7\u0006B\b\u001a\u0006KKPV71" + }, + { + "type": "sin_recorrido", + "entity": "\n$3dc6704e-0a9c-46a7-8927-8d2515f49dbc\"/\u0012\u001d\r0\u00f4\u0012\u00c2\u0015\u00fe=\u0092\u00c2\u001d\u0000\u0000PC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a3\u00a0\u0092\u00a8\u0006B\b\u001a\u0006HYPH76" + }, + { + "type": "sin_recorrido", + "entity": "\n$28c3e801-9afb-457e-8802-3813c310f663\"/\u0012\u001d\r\u00bc\u00e3\u0012\u00c2\u0015=I\u0092\u00c2\u001d\u0000\u0000@B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00d7\u00e6\u0097\u00a8\u0006B\b\u001a\u0006CYWK96" + }, + { + "type": "sin_recorrido", + "entity": "\n$451a48ac-5de8-41ef-b228-319c9f444437\"/\u0012\u001d\rB\u00c1\u0013\u00c2\u0015Q\t\u0092\u00c2\u001d\u0000\u0000\u00a0B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00da\u0094\u0094\u00a8\u0006B\b\u001a\u0006CSYR79" + }, + { + "type": "sin_recorrido", + "entity": "\n$e0174052-4338-4e7a-b640-4dce60764d3a\"/\u0012\u001d\r\u00eaP\u0013\u00c2\u0015\u00a8K\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00fa\u00f9\u0096\u00a8\u0006B\b\u001a\u0006HYYX24" + }, + { + "type": "sin_recorrido", + "entity": "\n$2b3715f8-0921-45d4-ba73-f63b4539db90\"/\u0012\u001d\r\u008b(\u0013\u00c2\u0015\u0080(\u0092\u00c2\u001d\u0000\u0000\u0090A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00d6\u00e9\u0093\u00a8\u0006B\b\u001a\u0006BKVY89" + }, + { + "type": "sin_recorrido", + "entity": "\n$1c98ecad-abe7-4f6d-ac87-f8f83e9d2dd2\"/\u0012\u001d\r\u00ad(\u0013\u00c2\u0015n(\u0092\u00c2\u001d\u0000\u0000\u0092C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0082\u00e7\u0097\u00a8\u0006B\b\u001a\u0006FXRL29" + }, + { + "type": "sin_recorrido", + "entity": "\n$0d07b326-1ac8-4831-bc6e-f47241bfdcf7\"/\u0012\u001d\r/\u001e\u0013\u00c2\u0015\u00b42\u0092\u00c2\u001d\u0000\u0000@C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00da\u00d1\u0093\u00a8\u0006B\b\u001a\u0006FXRR81" + }, + { + "type": "sin_recorrido", + "entity": "\n$2e98cdaf-bd35-4c41-b678-d525523bc1d8\"/\u0012\u001d\r\u00dc6\u0013\u00c2\u0015\u00a5\u0016\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0096\u008e\u0093\u00a8\u0006B\b\u001a\u0006YU8293" + }, + { + "type": "sin_recorrido", + "entity": "\n$7ebc980f-7ac5-4a3a-ab36-5ce086147361\"/\u0012\u001d\r\u00f1Q\u0013\u00c2\u0015:\u001f\u0092\u00c2\u001d\u0000\u0000,B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0098\u00cf\u0097\u00a8\u0006B\b\u001a\u0006WF1304" + }, + { + "type": "sin_recorrido", + "entity": "\n$680d9b20-c172-41ee-9095-990b53c08452\"/\u0012\u001d\r\u00df8\u0013\u00c2\u0015\u00a3\u0013\u0092\u00c2\u001d\u0000\u0000lB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c6\u00e6\u0097\u00a8\u0006B\b\u001a\u0006ZV6223" + }, + { + "type": "sin_recorrido", + "entity": "\n$ed04ed1f-b6ad-4a5c-9f30-541ec1e85254\"/\u0012\u001d\r(\u00d8\u0012\u00c2\u0015\u0004\u00f3\u0091\u00c2\u001d\u0000\u0000\u0083C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00fb\u00de\u0097\u00a8\u0006B\b\u001a\u0006DRFP52" + }, + { + "type": "sin_recorrido", + "entity": "\n$0f7348bf-aa66-4700-beef-fbc79ac57a3a\"/\u0012\u001d\r\u00adR\u0013\u00c2\u0015O?\u0092\u00c2\u001d\u0000\u0000\u00a2B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ab\u00c8\u00dd\u00a7\u0006B\b\u001a\u0006CTRG85" + }, + { + "type": "sin_recorrido", + "entity": "\n$6bcfaa68-05ce-48f5-ace1-00731bbd4e6e\"/\u0012\u001d\r\u009d(\u0013\u00c2\u0015\u0091(\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0082\u00fe\u0096\u00a8\u0006B\b\u001a\u0006FXRL38" + }, + { + "type": "sin_recorrido", + "entity": "\n$4bb73092-8079-4231-93aa-b7c2b96d09a0\"/\u0012\u001d\r\u00f9\u00d4\u0013\u00c2\u0015\u008e\u0005\u0092\u00c2\u001d\u0000\u0000\u0099C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009a\u00e6\u0097\u00a8\u0006B\b\u001a\u0006ZJ6739" + }, + { + "type": "sin_recorrido", + "entity": "\n$2b21abb6-f00b-4235-95de-7a08872dba6f\"/\u0012\u001d\r5\u0013\u0013\u00c2\u0015\u001b:\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b4\u008c\u008e\u00a8\u0006B\b\u001a\u0006WE9164" + }, + { + "type": "sin_recorrido", + "entity": "\n$9535b101-5686-4c6f-a31b-a7b1f48504f5\"/\u0012\u001d\rR:\u0013\u00c2\u0015m\u001a\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f4\u0083\u0097\u00a8\u0006B\b\u001a\u0006DWVV72" + }, + { + "type": "sin_recorrido", + "entity": "\n$035172da-dba9-4623-8429-f580202d53d4\"/\u0012\u001d\r\u00f1r\u0013\u00c2\u0015\u0093H\u0092\u00c2\u001d\u0000\u0000\u00b0B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00fc\u00e7\u0092\u00a8\u0006B\b\u001a\u0006XV1767" + }, + { + "type": "sin_recorrido", + "entity": "\n$081d55e3-d6ae-47c4-bbb1-fd857e277f1b\"/\u0012\u001d\r\u0090\u00c3\u0013\u00c2\u0015\u00ee\r\u0092\u00c2\u001d\u0000\u0000\u009cC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a6\u00cd\u0092\u00a8\u0006B\b\u001a\u0006CSYZ79" + }, + { + "type": "sin_recorrido", + "entity": "\n$6a0018a7-60a6-468b-9129-2e31738e68c1\"/\u0012\u001d\r\u00b6\u001c\u0013\u00c2\u0015\u00cc2\u0092\u00c2\u001d\u0000\u0000\u00a0A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00e2\u00e0\u00c7\u00a7\u0006B\b\u001a\u0006FXRL45" + }, + { + "type": "sin_recorrido", + "entity": "\n$5d8f25fa-288d-4ad3-859a-dcf2d6a6fe81\"/\u0012\u001d\r5M\u0013\u00c2\u0015\u00aeI\u0092\u00c2\u001d\u0000\u0000\u00dcB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0087\u00e6\u0097\u00a8\u0006B\b\u001a\u0006HPVS38" + }, + { + "type": "sin_recorrido", + "entity": "\n$59aacc30-67f9-42de-9a04-234f54236a9c\"/\u0012\u001d\r\u00d5\u00e2\u0013\u00c2\u0015\u0095\u00dd\u0091\u00c2\u001d\u0000\u0000\u00a8C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u008e\u0093\u0093\u00a8\u0006B\b\u001a\u0006ZY5134" + }, + { + "type": "sin_recorrido", + "entity": "\n$d8501c44-7b69-44ec-88a1-22f1a51f5b4a\"/\u0012\u001d\rj\u00ea\u0012\u00c2\u0015\u001c<\u0092\u00c2\u001d\u0000\u0000\u0080A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e486A(\u00ce\u00e8\u0097\u00a8\u0006B\b\u001a\u0006XF4443" + }, + { + "type": "sin_recorrido", + "entity": "\n$577b71b9-daf1-45aa-89d6-d95bfcb47682\"/\u0012\u001d\rV/\u0013\u00c2\u0015/*\u0092\u00c2\u001d\u0000\u0000\u0084B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UUU@(\u008c\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HYYX95" + }, + { + "type": "sin_recorrido", + "entity": "\n$1720bf95-29ee-4186-bc23-c19b7a0323d7\"/\u0012\u001d\r*\u001d\u0013\u00c2\u0015\u00fc2\u0092\u00c2\u001d\u0000\u0000\u0088C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a6\u00df\u0094\u00a8\u0006B\b\u001a\u0006CDTJ66" + }, + { + "type": "sin_recorrido", + "entity": "\n$d227341b-b220-4e40-8d44-640837ee6ee1\"/\u0012\u001d\r\u00d9P\u0013\u00c2\u0015\u00dcK\u0092\u00c2\u001d\u0000\u0000\u0016C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0096\u00cc\u0088\u00a8\u0006B\b\u001a\u0006WR7738" + }, + { + "type": "sin_recorrido", + "entity": "\n$8c128846-d6d4-4a5a-8291-5448239477d6\"/\u0012\u001d\r\u008b#\u0013\u00c2\u0015\u00e85\u0092\u00c2\u001d\u0000\u0000]C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00ab\u00aa\u00ba@(\u00c3\u00fa\u0096\u00a8\u0006B\b\u001a\u0006RBTW74" + }, + { + "type": "sin_recorrido", + "entity": "\n$dcadc6a0-a206-4994-a245-598c92a57897\"/\u0012\u001d\r\u0082:\u0013\u00c2\u0015\u0000\u000f\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a6\u0097\u0093\u00a8\u0006B\b\u001a\u0006JPRX77" + }, + { + "type": "sin_recorrido", + "entity": "\n$e9f1c2d1-bda6-4733-9160-e000c4861b29\"/\u0012\u001d\r\u00bfp\u0013\u00c2\u0015NJ\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00bc\u0080\u0097\u00a8\u0006B\b\u001a\u0006XW2187" + }, + { + "type": "sin_recorrido", + "entity": "\n$5935e7c2-d41f-46fb-8b90-9b009198a738\"/\u0012\u001d\r\u00a0\u001f\u0013\u00c2\u0015\u009f9\u0092\u00c2\u001d\u0000\u0000\u0080@!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00fc\u00c6\u0097\u00a8\u0006B\b\u001a\u0006HHKP76" + }, + { + "type": "sin_recorrido", + "entity": "\n$eb27e864-859a-4c3c-acad-afc345ebbd0d\"/\u0012\u001d\r\u00d78\u0013\u00c2\u0015\u00be\u0013\u0092\u00c2\u001d\u0000\u0000\u00aaB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c0\u00dc\u0092\u00a8\u0006B\b\u001a\u0006FXZX44" + }, + { + "type": "sin_recorrido", + "entity": "\n$a171d374-f635-4e8b-acb0-2e4e3903b873\"/\u0012\u001d\r>\u0011\u0013\u00c2\u0015\n:\u0092\u00c2\u001d\u0000\u0000\u00a5C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u008e>(\u00b0\u0091\u0096\u00a8\u0006B\b\u001a\u0006YR1889" + }, + { + "type": "sin_recorrido", + "entity": "\n$70f484e1-7917-45ab-bd09-e967f9f319fb\"/\u0012\u001d\riM\u0013\u00c2\u0015\u0096\u001d\u0092\u00c2\u001d\u0000\u0000rC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00bf\u00ac\u00e3\u00a7\u0006B\b\u001a\u0006RBKY78" + }, + { + "type": "sin_recorrido", + "entity": "\n$18d2c88b-73c2-4414-9fa2-fdfb5462f618\"/\u0012\u001d\r\u00a40\u0013\u00c2\u0015\u0015\u001a\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0094\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HYCZ73" + }, + { + "type": "sin_recorrido", + "entity": "\n$4c43cbd3-1028-49c6-917f-e28b3a2c6126\"/\u0012\u001d\r%\u001e\u0013\u00c2\u0015\u00a52\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b4\u0085\u0097\u00a8\u0006B\b\u001a\u0006CTRY45" + }, + { + "type": "sin_recorrido", + "entity": "\n$c8c6c228-94ff-49f0-a933-a9438600b9a8\"/\u0012\u001d\r\u00f2\u0015\u0013\u00c2\u0015\u0080+\u0092\u00c2\u001d\u0000\u0000\u00b4B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b2\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FXRZ39" + }, + { + "type": "sin_recorrido", + "entity": "\n$5e91bfce-d9a1-4442-bcf4-d85cb94f2822\"/\u0012\u001d\r\u0086\u001d\u0013\u00c2\u0015\u00fa2\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b2\u00bc\u0092\u00a8\u0006B\b\u001a\u0006WK3617" + }, + { + "type": "sin_recorrido", + "entity": "\n$1f061ad3-4140-49ab-adcd-547897688326\"/\u0012\u001d\r+.\u0013\u00c2\u0015\u00d56\u0092\u00c2\u001d\u0000\u0000\u00d0B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00d0\u00e4\u0097\u00a8\u0006B\b\u001a\u0006YE3019" + }, + { + "type": "sin_recorrido", + "entity": "\n$4d831fe8-0c3c-47ea-a5ad-ca0976b67b09\"/\u0012\u001d\rmR\u0013\u00c2\u0015j?\u0092\u00c2\u001d\u0000\u0000PC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b7\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FPHW76" + }, + { + "type": "sin_recorrido", + "entity": "\n$ad0836a6-6570-4fe7-a4b2-59feced933ca\"/\u0012\u001d\r[\u0011\u0013\u00c2\u0015\u00c29\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ac\u0095\u008c\u00a8\u0006B\b\u001a\u0006FXZX33" + }, + { + "type": "sin_recorrido", + "entity": "\n$d751bb71-5818-47ef-a4bd-bf350993dddb\"/\u0012\u001d\r\u0001\u00d8\u0012\u00c2\u0015\u00bb\u00f2\u0091\u00c2\u001d\u0000\u0000\u0096B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u008e?(\u00cb\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DJGD75" + }, + { + "type": "sin_recorrido", + "entity": "\n$1e8456ac-5bcd-46b1-8337-16be5898087c\"/\u0012\u001d\r3\u00d8\u0012\u00c2\u0015\u0004\u00f3\u0091\u00c2\u001d\u0000\u0000\u009cB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00cf\u00e9\u0091\u00a8\u0006B\b\u001a\u0006ZV6537" + }, + { + "type": "sin_recorrido", + "entity": "\n$e8427425-7985-46e6-823e-ef88e70f6ce6\"/\u0012\u001d\r\u0086#\u0013\u00c2\u0015O5\u0092\u00c2\u001d\u0000\u0000\u00b6B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u008e>(\u0092\u00e6\u0097\u00a8\u0006B\b\u001a\u0006DPTC24" + }, + { + "type": "sin_recorrido", + "entity": "\n$19acc275-cd5b-4fb6-aeb0-48de464d84c3\"/\u0012\u001d\r\u00eb\u00c3\u0013\u00c2\u0015\u00d6\r\u0092\u00c2\u001d\u0000\u0000BC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ba\u00d0\u0092\u00a8\u0006B\b\u001a\u0006WK7571" + }, + { + "type": "sin_recorrido", + "entity": "\n$2db8f34e-76ce-4f34-b212-358993f50bfb\"/\u0012\u001d\r\u0099\u00fa\u0012\u00c2\u0015\\3\u0092\u00c2\u001d\u0000\u0000rC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0092\u00e8\u0097\u00a8\u0006B\b\u001a\u0006BHYR93" + }, + { + "type": "sin_recorrido", + "entity": "\n$50b5fbab-9bec-40dc-bdc9-48151ad1f866\"/\u0012\u001d\r\u00daK\u0013\u00c2\u0015\u00acB\u0092\u00c2\u001d\u0000\u0000\u00f0A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009c\u00d5\u0097\u00a8\u0006B\b\u001a\u0006HLBC96" + }, + { + "type": "sin_recorrido", + "entity": "\n$da20b1d6-f3a6-4c0c-abb8-9059459646f6\"/\u0012\u001d\r=\u0011\u0013\u00c2\u0015&:\u0092\u00c2\u001d\u0000\u0000\u008bC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0090\u00e8\u0097\u00a8\u0006B\b\u001a\u0006RKKW55" + }, + { + "type": "sin_recorrido", + "entity": "\n$bd9fcb8d-1952-4cce-a41a-e62af7fb23f4\"/\u0012\u001d\r\u0086\u00d0\u0013\u00c2\u0015r\u000b\u0092\u00c2\u001d\u0000\u0000\u0086C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0096\u0096\u0093\u00a8\u0006B\b\u001a\u0006XZ9717" + }, + { + "type": "sin_recorrido", + "entity": "\n$a7aebe38-4d13-4a67-a9e9-258969ba1527\"/\u0012\u001d\r\u00d6M\u0013\u00c2\u0015\u0089\u001d\u0092\u00c2\u001d\u0000\u0000kC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0095\u00cd\u0088\u00a8\u0006B\b\u001a\u0006YE2443" + }, + { + "type": "sin_recorrido", + "entity": "\n$5aac42e4-682d-437a-a606-9f774fa5d143\"/\u0012\u001d\r O\u0013\u00c2\u0015BG\u0092\u00c2\u001d\u0000\u0000\u00a6C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0084\u00e7\u0097\u00a8\u0006B\b\u001a\u0006LBWD97" + }, + { + "type": "sin_recorrido", + "entity": "\n$98925789-e768-4e2b-8d30-b8a1349f0c03\"/\u0012\u001d\r\u00f8\u0013\u0013\u00c2\u0015::\u0092\u00c2\u001d\u0000\u0000PC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00aa\u00e8\u0097\u00a8\u0006B\b\u001a\u0006ZY5136" + }, + { + "type": "sin_recorrido", + "entity": "\n$12d63c4e-1170-435d-bbdf-8e817543ce23\"/\u0012\u001d\r\\E\u0013\u00c2\u0015\u00a1\u0013\u0092\u00c2\u001d\u0000\u0000tB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00db\u00e7\u0097\u00a8\u0006B\b\u001a\u0006YE1783" + }, + { + "type": "sin_recorrido", + "entity": "\n$b50f5c3e-5f06-49af-9bfd-a28e233d6eca\"/\u0012\u001d\r+\u00de\u0012\u00c2\u0015\u00c6\u00f1\u0091\u00c2\u001d\u0000\u0000zC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UU\u00d5?(\u00c4\u00e3\u0097\u00a8\u0006B\b\u001a\u0006DCHP85" + }, + { + "type": "sin_recorrido", + "entity": "\n$d5240286-12f5-424a-9df7-69fcff0132f5\"/\u0012\u001d\r\u008c-\u0013\u00c2\u0015V\u0017\u0092\u00c2\u001d\u0000\u0000.C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u008a\u00e7\u0097\u00a8\u0006B\b\u001a\u0006KHXX65" + }, + { + "type": "sin_recorrido", + "entity": "\n$d2f016a2-0988-4af3-a928-bdc87cdde38b\"/\u0012\u001d\r\u0001\u00d5\u0013\u00c2\u0015`\u0005\u0092\u00c2\u001d\u0000\u0000\u00abC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UU\u00d5?(\u0089\u00e4\u0097\u00a8\u0006B\b\u001a\u0006DRFP47" + }, + { + "type": "sin_recorrido", + "entity": "\n$ac329f5d-62fa-4acc-8399-438100457fb2\"/\u0012\u001d\r\u00ff\u00d7\u0012\u00c2\u0015\u00c9\u00f2\u0091\u00c2\u001d\u0000\u0000\u0090B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ee\u00e7\u0097\u00a8\u0006B\b\u001a\u0006DBLS50" + }, + { + "type": "sin_recorrido", + "entity": "\n$181fc332-fa7f-4c0d-b2ca-600386740501\"/\u0012\u001d\r\u00e2L\u0013\u00c2\u00150D\u0092\u00c2\u001d\u0000\u0080\u009eC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0094\u00e7\u0097\u00a8\u0006B\b\u001a\u0006KHSW70" + }, + { + "type": "sin_recorrido", + "entity": "\n$ba1d487f-c65d-4502-a4ca-e4c0d25e4bb5\"/\u0012\u001d\r\u00bfA\u0013\u00c2\u0015\u00b0%\u0092\u00c2\u001d\u0000\u0000(B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ac\u00ff\u0093\u00a8\u0006B\b\u001a\u0006FYDV28" + }, + { + "type": "sin_recorrido", + "entity": "\n$57ab6cea-1252-48cc-b1f9-1dc66f02abf7\"/\u0012\u001d\rb\u00e0\u0012\u00c2\u0015\u00e8=\u0092\u00c2\u001d\u0000\u0000\u0086C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f0\u00c6\u0097\u00a8\u0006B\b\u001a\u0006XW2188" + }, + { + "type": "sin_recorrido", + "entity": "\n$01a561da-d865-4282-a458-30156814a4e5\"/\u0012\u001d\re\u00c3\u0013\u00c2\u0015\u00f3\r\u0092\u00c2\u001d\u0000\u0000@B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00de\u008e\u0093\u00a8\u0006B\b\u001a\u0006BBPB65" + }, + { + "type": "sin_recorrido", + "entity": "\n$4a931a44-85e5-4781-87b4-3b9b028aefad\"/\u0012\u001d\rNz\u0012\u00c2\u0015\u00ce\u00c0\u0091\u00c2\u001d\u0000\u0000\u0082C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-9\u008ekA(\u00d8\u00e6\u0097\u00a8\u0006B\b\u001a\u0006GWZC90" + }, + { + "type": "sin_recorrido", + "entity": "\n$14dc1b71-32cc-4ace-870c-e85637ff79e9\"/\u0012\u001d\r\u00c3-\u0013\u00c2\u0015\u007f\u0017\u0092\u00c2\u001d\u0000\u0000@@!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UU\u00d5?(\u0093\u00bb\u0096\u00a8\u0006B\b\u001a\u0006DYSZ94" + }, + { + "type": "sin_recorrido", + "entity": "\n$b114c23e-82a1-43df-933d-e8c2456e60c7\"/\u0012\u001d\r\u00b2w\u0012\u00c2\u0015\u0002\u00d7\u0091\u00c2\u001d\u0000\u0000\u008cB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UUUA(\u00ca\u00e4\u0097\u00a8\u0006B\b\u001a\u0006JXFY30" + }, + { + "type": "sin_recorrido", + "entity": "\n$fea39816-1e49-4c29-9509-bec387ff0589\"/\u0012\u001d\r\u00c9-\u0013\u00c2\u0015\u00aa\u0017\u0092\u00c2\u001d\u0000\u0080\u00a5C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UU\u00d5?(\u00e0\u00db\u0093\u00a8\u0006B\b\u001a\u0006FXRR36" + }, + { + "type": "sin_recorrido", + "entity": "\n$3f0e3c57-b4ff-4162-84a8-8fd9babc6411\"/\u0012\u001d\r\u001a\u00bf\u0013\u00c2\u0015\u0085\n\u0092\u00c2\u001d\u0000\u0000!C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u001c\u00c7YA(\u00cf\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FVDC88" + }, + { + "type": "sin_recorrido", + "entity": "\n$81f685b9-8cd4-439c-bacb-1e46ad316e6c\"/\u0012\u001d\r\u00c7F\u0013\u00c2\u0015\u00b7\u001f\u0092\u00c2\u001d\u0000\u0000\u00a1C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ca\u00e7\u0097\u00a8\u0006B\b\u001a\u0006HYHR42" + }, + { + "type": "sin_recorrido", + "entity": "\n$5b0f4ed7-adf1-4fc6-9128-09e52a42fe02\"/\u0012\u001d\r\u00c9-\u0013\u00c2\u0015\u008d\u0017\u0092\u00c2\u001d\u0000\u0000\u00b0A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UUU@(\u00d0\u00a0\u0096\u00a8\u0006B\b\u001a\u0006CXPR39" + }, + { + "type": "sin_recorrido", + "entity": "\n$c27bf4e2-0b8d-4fb0-992d-b145e37df871\"/\u0012\u001d\r1\u0011\u0013\u00c2\u00152:\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f6\u00d9\u00c4\u00a7\u0006B\b\u001a\u0006WV1925" + }, + { + "type": "sin_recorrido", + "entity": "\n$943fc7b1-7c32-4d0a-ac09-b1532aa9e8d1\"/\u0012\u001d\r\u00a1Q\u0013\u00c2\u0015\u00f8\u001e\u0092\u00c2\u001d\u0000\u0000\u00aaC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f7\u00e5\u0093\u00a8\u0006B\b\u001a\u0006ZL3558" + }, + { + "type": "sin_recorrido", + "entity": "\n$c92845f0-b353-4a25-a9e9-40c3ff04f7c7\"/\u0012\u001d\r\u00b5-\u0013\u00c2\u0015\u0093\u0017\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00eb\u00b2\u0093\u00a8\u0006B\b\u001a\u0006FPJK12" + }, + { + "type": "sin_recorrido", + "entity": "\n$b040cf9d-fb97-435a-bed6-aa146dca297f\"/\u0012\u001d\rl\u00f5\u0012\u00c2\u0015\u009c0\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f2\u00c5\u0088\u00a8\u0006B\b\u001a\u0006XC3923" + }, + { + "type": "sin_recorrido", + "entity": "\n$19727c65-818b-487d-b308-a1cafda30e0c\"/\u0012\u001d\r\u008b\u001d\u0013\u00c2\u0015\u00003\u0092\u00c2\u001d\u0000\u0000\u008dC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b8\u00e6\u0097\u00a8\u0006B\b\u001a\u0006KVZH51" + }, + { + "type": "sin_recorrido", + "entity": "\n$9a3a1e5f-0799-408d-8735-6a85ffde9dab\"/\u0012\u001d\r\u00e8\u00fe\u0012\u00c2\u0015\u00a1\u00ff\u0091\u00c2\u001d\u0000\u0000\u009eC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ea\u00aa\u0093\u00a8\u0006B\b\u001a\u0006CFTD78" + }, + { + "type": "sin_recorrido", + "entity": "\n$d54ea130-650b-448f-a171-0135a283a21f\"/\u0012\u001d\r\u0086/\u0013\u00c2\u0015\u00f4\u000f\u0092\u00c2\u001d\u0000\u0000\u00a6C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c8\u00b5\u0093\u00a8\u0006B\b\u001a\u0006YG6214" + }, + { + "type": "sin_recorrido", + "entity": "\n$b9546a50-0a88-455e-a46c-6194c9fc52de\"/\u0012\u001d\r\u0091\u00e6\u0013\u00c2\u00158\u00dd\u0091\u00c2\u001d\u0000\u0000hB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u008e\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FXRY44" + }, + { + "type": "sin_recorrido", + "entity": "\n$cda0f620-56e5-482f-9810-19073f349d85\"/\u0012\u001d\r\u008ab\u0013\u00c2\u0015\u00e22\u0092\u00c2\u001d\u0000\u0000\u0086C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-ffFA(\u00f6\u00e7\u0097\u00a8\u0006B\b\u001a\u0006HYCZ18" + }, + { + "type": "sin_recorrido", + "entity": "\n$8dcde36e-8316-40ff-9668-0ffb3ff755d0\"/\u0012\u001d\rs\u00db\u0012\u00c2\u00158G\u0092\u00c2\u001d\u0000\u0000\u0083C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b0\u00e8\u0097\u00a8\u0006B\b\u001a\u0006KPRK17" + }, + { + "type": "sin_recorrido", + "entity": "\n$805a75b2-2c43-41e4-9e85-06ec66aeec17\"/\u0012\u001d\rD\u00c3\u0013\u00c2\u0015\u0093\t\u0092\u00c2\u001d\u0000\u0000\u00aaC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00e5\u00aa\u00fc\u00a7\u0006B\b\u001a\u0006FYDV91" + }, + { + "type": "sin_recorrido", + "entity": "\n$2890aa19-07e0-4eb3-9354-3d55c5e6229e\"/\u0012\u001d\r: \u0013\u00c2\u0015^5\u0092\u00c2\u001d\u0000\u0000\u0006C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UU\u0085@(\u0098\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FBLG82" + }, + { + "type": "sin_recorrido", + "entity": "\n$23d53fbe-e2b6-43b9-861a-602d62f88953\"/\u0012\u001d\rY\u0011\u0013\u00c2\u0015\u00bc9\u0092\u00c2\u001d\u0000\u0000hB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0094\u00e8\u0097\u00a8\u0006B\b\u001a\u0006SGYW74" + }, + { + "type": "sin_recorrido", + "entity": "\n$58e78ea8-8127-4b35-a3da-d09f5a6e35a1\"/\u0012\u001d\r\u009bR\u0013\u00c2\u0015J?\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00bc\u0095\u0093\u00a8\u0006B\b\u001a\u0006ZT3768" + }, + { + "type": "sin_recorrido", + "entity": "\n$64a86e0f-a56f-4723-9e3b-0bbb29c732b7\"/\u0012\u001d\r(\u00dd\u0012\u00c2\u0015\u00baI\u0092\u00c2\u001d\u0000\u0000\u00f4B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c5\u00e8\u0097\u00a8\u0006B\b\u001a\u0006JVXY88" + }, + { + "type": "sin_recorrido", + "entity": "\n$328d7c9d-0555-450a-94c4-ef7151fddbde\"/\u0012\u001d\rJ_\u0013\u00c2\u0015\u00f5\u0004\u0092\u00c2\u001d\u0000\u0000\u00acB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a0\u00e7\u0097\u00a8\u0006B\b\u001a\u0006JSGK92" + }, + { + "type": "sin_recorrido", + "entity": "\n$cf2275d5-fe8d-4a6f-9711-f515ab110ea2\"/\u0012\u001d\r\u00f0\u00d4\u0013\u00c2\u0015p\u0005\u0092\u00c2\u001d\u0000\u0000\u00acC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b4\u00e5\u0097\u00a8\u0006B\b\u001a\u0006CTKY35" + }, + { + "type": "sin_recorrido", + "entity": "\n$b5fe92e0-dce2-431b-97e2-11cbd959f0c6\"/\u0012\u001d\r,\u00c3\u0013\u00c2\u0015\u0094\f\u0092\u00c2\u001d\u0000\u0000\"C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UU\u00d5@(\u00a8\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DRSD23" + }, + { + "type": "sin_recorrido", + "entity": "\n$20e6a69e-2d10-4781-9c67-55423626c156\"/\u0012\u001d\rj\u00da\u0012\u00c2\u0015\u0085\u00f4\u0091\u00c2\u001d\u0000\u0000MC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c6\u00e8\u0097\u00a8\u0006B\b\u001a\u0006CYRT91" + }, + { + "type": "sin_recorrido", + "entity": "\n$7ffbb23c-cfa3-4485-b36d-f10fa6981f8b\"/\u0012\u001d\r\u00f1\u00d0\u0013\u00c2\u00154\u000b\u0092\u00c2\u001d\u0000\u0000\u0016C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u000e@(\u00b4\u008a\u0097\u00a8\u0006B\b\u001a\u0006XY7393" + }, + { + "type": "sin_recorrido", + "entity": "\n$99261b3e-4b0d-40ec-8f8e-1b85b0159e78\"/\u0012\u001d\r\u00bdP\u0013\u00c2\u0015\u00a1K\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b8\u00e8\u0097\u00a8\u0006B\b\u001a\u0006MY5524" + }, + { + "type": "sin_recorrido", + "entity": "\n$f591d695-cfa7-491c-8b26-8fb29994fa2a\"/\u0012\u001d\r\u00d48\u0013\u00c2\u0015\u00b3\u0013\u0092\u00c2\u001d\u0000\u0000\u000bC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009e\u00ae\u0092\u00a8\u0006B\b\u001a\u0006HJPY82" + }, + { + "type": "sin_recorrido", + "entity": "\n$b1e17a54-f9ec-4702-93f7-c19da1783ab7\"/\u0012\u001d\r\u00dfP\u0013\u00c2\u0015\u00cdK\u0092\u00c2\u001d\u0000\u0000\u0080B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00da\u00e5\u0097\u00a8\u0006B\b\u001a\u0006GWZC86" + }, + { + "type": "sin_recorrido", + "entity": "\n$17c28f94-9a17-4d56-88bf-66a2fd34f602\"/\u0012\u001d\r\u00c3i\u0013\u00c2\u0015gL\u0092\u00c2\u001d\u0000\u0000\u00b2C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-9\u008e\u001bA(\u0098\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FXRL53" + }, + { + "type": "sin_recorrido", + "entity": "\n$0a63e1aa-0da8-495b-afed-807e9ff80580\"/\u0012\u001d\r\u0083:\u0013\u00c2\u0015\u00ff\u000e\u0092\u00c2\u001d\u0000\u0000\u00f2B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u008e?(\u00c9\u00f5\u0093\u00a8\u0006B\b\u001a\u0006JPRX94" + }, + { + "type": "sin_recorrido", + "entity": "\n$40eb583b-d89d-4a2c-878b-6512de5efbb4\"/\u0012\u001d\r\u00f51\u0013\u00c2\u0015o\u0010\u0092\u00c2\u001d\u0000\u0000\u00a5C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a4\u009b\u0093\u00a8\u0006B\b\u001a\u0006BFDL71" + }, + { + "type": "sin_recorrido", + "entity": "\n$6e0b632f-801b-47cd-aad4-3ff0daae14a8\"/\u0012\u001d\r\u008d\u00cb\u0013\u00c2\u0015\u00e7\u0005\u0092\u00c2\u001d\u0000\u0000@A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f4\u00b9\u0092\u00a8\u0006B\b\u001a\u0006KFJH91" + }, + { + "type": "sin_recorrido", + "entity": "\n$0cc39a7b-5b4a-445d-b04a-6787d58ebda7\"/\u0012\u001d\r\u00a3\u00d0\u0013\u00c2\u0015_\u000b\u0092\u00c2\u001d\u0000\u0000\u009eC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b2\u00e8\u0097\u00a8\u0006B\b\u001a\u0006YE2821" + }, + { + "type": "sin_recorrido", + "entity": "\n$b10edc15-d621-452a-9500-7c444d539597\"/\u0012\u001d\r<&\u0013\u00c2\u0015\u00919\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0092\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DFJK59" + }, + { + "type": "sin_recorrido", + "entity": "\n$e6a2b64e-95f4-4b6a-a0c0-8bae874917e0\"/\u0012\u001d\r%\u001e\u0013\u00c2\u0015\u00e82\u0092\u00c2\u001d\u0000\u0000\u008bC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b0\u00e8\u0097\u00a8\u0006B\b\u001a\u0006JXFX28" + }, + { + "type": "sin_recorrido", + "entity": "\n$b230b5f1-9445-44fa-bf5c-af1ca88a55ae\"/\u0012\u001d\r\u00a6\u001c\u0013\u00c2\u0015\u00dd,\u0092\u00c2\u001d\u0000\u0000\u0084C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ac\u00a2\u0094\u00a8\u0006B\b\u001a\u0006JGJV70" + }, + { + "type": "sin_recorrido", + "entity": "\n$c47a5fbb-4fd3-4678-aa0b-623bd4d6e5c0\"/\u0012\u001d\r\b\u00d8\u0012\u00c2\u0015\u00c2\u00f2\u0091\u00c2\u001d\u0000\u0000\u00acC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ee\u00e7\u0097\u00a8\u0006B\b\u001a\u0006BTSS99" + }, + { + "type": "sin_recorrido", + "entity": "\n$906e5ef8-8005-4a8b-82f8-fb2abd2f71ed\"/\u0012\u001d\r\b\u00d8\u0012\u00c2\u0015\u00d8\u00f2\u0091\u00c2\u001d\u0000\u0080\u0084C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u001c\u00c7\u00b1?(\u00c8\u00e7\u0097\u00a8\u0006B\b\u001a\u0006BWXZ15" + }, + { + "type": "sin_recorrido", + "entity": "\n$6361cbcb-190b-4b52-bad2-130c2c27140e\"/\u0012\u001d\r\u00c2(\u0013\u00c2\u0015~(\u0092\u00c2\u001d\u0000\u0000\u009cC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0090\u00e8\u0097\u00a8\u0006B\b\u001a\u0006KGYF43" + }, + { + "type": "sin_recorrido", + "entity": "\n$7ae74349-f991-4fa1-aeab-e8028865750f\"/\u0012\u001d\r|\u00d3\u0013\u00c2\u0015\u00fd\u0006\u0092\u00c2\u001d\u0000\u0000\u00abC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b4\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DRTS98" + }, + { + "type": "sin_recorrido", + "entity": "\n$a6b2463f-6a9c-493d-96c4-f488117a9bf1\"/\u0012\u001d\r\u00caL\u0013\u00c2\u0015\u009dA\u0092\u00c2\u001d\u0000\u0000\u0093C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-9\u008e\u001bA(\u00f5\u00ba\u0093\u00a8\u0006B\b\u001a\u0006DWKX27" + }, + { + "type": "sin_recorrido", + "entity": "\n$9373169c-3841-4c5a-a668-f7e7af3eb066\"/\u0012\u001d\rU\u001d\u0013\u00c2\u0015\u00c62\u0092\u00c2\u001d\u0000\u0000\u00b0A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UUU?(\u00b4\u00a5\u0096\u00a8\u0006B\b\u001a\u0006JLZB27" + }, + { + "type": "sin_recorrido", + "entity": "\n$52db5cff-8a39-4630-8497-122aebf11d27\"/\u0012\u001d\r\u00b4\u00c3\u0013\u00c2\u0015\u00f1\r\u0092\u00c2\u001d\u0000\u0000rC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ba\u00f3\u0092\u00a8\u0006B\b\u001a\u0006RTRF83" + }, + { + "type": "sin_recorrido", + "entity": "\n$bb9b8656-3264-42d4-94a2-2d9de73bf55f\"/\u0012\u001d\r\u00a1\u001d\u0013\u00c2\u0015\u00899\u0092\u00c2\u001d\u0000\u0000\u00acC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008e\u00e3x@(\u00ae\u00e8\u0097\u00a8\u0006B\b\u001a\u0006WD9835" + }, + { + "type": "sin_recorrido", + "entity": "\n$9befb5b2-57b8-422d-b0f3-47ef49860978\"/\u0012\u001d\r]\u00db\u0012\u00c2\u0015\u00b3\u00f4\u0091\u00c2\u001d\u0000\u0000vC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0098\u00e8\u0097\u00a8\u0006B\b\u001a\u0006JRSK24" + }, + { + "type": "sin_recorrido", + "entity": "\n$c3b4e7a2-0f23-460f-8c7a-ef16604c056b\"/\u0012\u001d\r\u0095\u00d0\u0013\u00c2\u0015f\u000b\u0092\u00c2\u001d\u0000\u0000\u0012C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a0\u00e8\u0097\u00a8\u0006B\b\u001a\u0006WF2069" + }, + { + "type": "sin_recorrido", + "entity": "\n$0b5de451-9250-4e34-b7c6-c105b934f7e7\"/\u0012\u001d\r\u00f2\u00da\u0012\u00c2\u0015\u0091\u00f4\u0091\u00c2\u001d\u0000\u0000\u0080?!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000 @(\u00d4\u00e6\u0097\u00a8\u0006B\b\u001a\u0006HVLT13" + }, + { + "type": "sin_recorrido", + "entity": "\n$1dba47d9-e1c8-4176-b419-a57738525f69\"/\u0012\u001d\r\u00c9(\u0013\u00c2\u0015u(\u0092\u00c2\u001d\u0000\u0000\u008eC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00e8\u00e5\u0097\u00a8\u0006B\b\u001a\u0006JRHH20" + }, + { + "type": "sin_recorrido", + "entity": "\n$ce2ef144-27ed-45a3-9ced-02aa44bcc5a7\"/\u0012\u001d\rST\u0013\u00c2\u0015\u00ca\u0001\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a2\u00c0\u0092\u00a8\u0006B\b\u001a\u0006WG3479" + }, + { + "type": "sin_recorrido", + "entity": "\n$31481478-6711-4909-b69d-fde78d144bc6\"/\u0012\u001d\r}V\u0013\u00c2\u0015\u00fd\u0002\u0092\u00c2\u001d\u0000\u0000\u00b0C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0096\u00e3\u0092\u00a8\u0006B\b\u001a\u0006FXJS31" + }, + { + "type": "sin_recorrido", + "entity": "\n$a68da8fc-4746-4ef9-a874-3f3cab1192f5\"/\u0012\u001d\rE\u001f\u0013\u00c2\u0015\u00be*\u0092\u00c2\u001d\u0000\u0000\u00b4B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f2\u008d\u0097\u00a8\u0006B\b\u001a\u0006DDXX31" + }, + { + "type": "sin_recorrido", + "entity": "\n$7577c2ff-dce7-43d6-b61f-1e62c5e0d7b9\"/\u0012\u001d\rU'\u0013\u00c2\u0015v3\u0092\u00c2\u001d\u0000\u0000\u0092B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0097\u00e8\u0097\u00a8\u0006B\b\u001a\u0006BGTL84" + }, + { + "type": "sin_recorrido", + "entity": "\n$b890f031-a376-483e-94a9-e129b5f4da9d\"/\u0012\u001d\r/f\u0013\u00c2\u0015\u00f4H\u0092\u00c2\u001d\u0000\u0080\u0099C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b0\u00e6\u0097\u00a8\u0006B\b\u001a\u0006WT9898" + }, + { + "type": "sin_recorrido", + "entity": "\n$9ab5cc7a-2117-49c7-9d53-9fa7bcdcebe3\"/\u0012\u001d\r\u0016\u00c4\u0013\u00c2\u0015\u00b2\r\u0092\u00c2\u001d\u0000\u0000xB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a4\u00e5\u0097\u00a8\u0006B\b\u001a\u0006DVWY63" + }, + { + "type": "sin_recorrido", + "entity": "\n$b05f3e7d-2f5e-4905-a811-e7166137119b\"/\u0012\u001d\r\u00f3-\u0013\u00c2\u0015v\u0017\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00cc\u00f2\u0093\u00a8\u0006B\b\u001a\u0006RVGP32" + }, + { + "type": "sin_recorrido", + "entity": "\n$b33cbd0b-95b2-44dc-bde6-e6b7aa7d05ec\"/\u0012\u001d\r\u0094P\u0013\u00c2\u0015\u00a7K\u0092\u00c2\u001d\u0000\u0000\u008fC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a4\u00e8\u0097\u00a8\u0006B\b\u001a\u0006BJFP86" + }, + { + "type": "sin_recorrido", + "entity": "\n$ba541b41-e534-485a-aad9-7e1fee45e582\"/\u0012\u001d\r\u00daP\u0013\u00c2\u0015\u009eK\u0092\u00c2\u001d\u0000\u00008B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a6\u00e6\u0097\u00a8\u0006B\b\u001a\u0006GSRS44" + }, + { + "type": "sin_recorrido", + "entity": "\n$70fd799c-4d76-487a-b7c5-b9fb9ba1e58c\"/\u0012\u001d\r\u00f38\u0013\u00c2\u0015\u00a7\u0013\u0092\u00c2\u001d\u0000\u0000\u0002C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008e\u00e3\u00f8?(\u0089\u00e4\u0097\u00a8\u0006B\b\u001a\u0006BBGK91" + }, + { + "type": "sin_recorrido", + "entity": "\n$d7d0f319-260e-471c-8a80-6958f734dffc\"/\u0012\u001d\r&\u0013\u0013\u00c2\u0015q:\u0092\u00c2\u001d\u0000\u0000\"C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009a\u00e8\u0097\u00a8\u0006B\b\u001a\u0006CFTK25" + }, + { + "type": "sin_recorrido", + "entity": "\n$f13dbef5-7f5d-409b-9cf6-d93c6c3a3232\"/\u0012\u001d\r\u00da8\u0013\u00c2\u0015\u00a8\u0013\u0092\u00c2\u001d\u0000\u0000lB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f1\u00e7\u0097\u00a8\u0006B\b\u001a\u0006WK3881" + }, + { + "type": "sin_recorrido", + "entity": "\n$ffc0937f-ab53-4d72-b389-8dc43f712c46\"/\u0012\u001d\r!\u0013\u0013\u00c2\u0015r:\u0092\u00c2\u001d\u0000\u0000*C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0084\u00e6\u0097\u00a8\u0006B\b\u001a\u0006BZPB50" + }, + { + "type": "sin_recorrido", + "entity": "\n$40281954-b5ac-4fd1-8eae-5049bdc4ac66\"/\u0012\u001d\r\u00a3\u00e4\u0013\u00c2\u0015i\u00da\u0091\u00c2\u001d\u0000\u0000\u0010A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f3\u00e7\u0097\u00a8\u0006B\b\u001a\u0006HBSS36" + }, + { + "type": "sin_recorrido", + "entity": "\n$0e0e695d-f9b3-41af-9085-fc0f9cb827b5\"/\u0012\u001d\r%\u00cc\u0013\u00c2\u0015\r\u00dd\u0091\u00c2\u001d\u0000\u0000\u00fcB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u008c\u00c0\u0093\u00a8\u0006B\b\u001a\u0006CYSD24" + }, + { + "type": "sin_recorrido", + "entity": "\n$0593618c-abcc-401b-abe2-ebe8af4a509c\"/\u0012\u001d\r\u00dfi\u0012\u00c2\u0015\u00ca\u00ef\u0091\u00c2\u001d\u0000\u0000\u00b8B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a4\u00e7\u0097\u00a8\u0006B\b\u001a\u0006FYBC11" + }, + { + "type": "sin_recorrido", + "entity": "\n$28ae2e2d-247d-4f01-92a3-f40b19ccb6c1\"/\u0012\u001d\rOf\u0013\u00c2\u0015_E\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00fb\u00e7\u0097\u00a8\u0006B\b\u001a\u0006BJFP66" + }, + { + "type": "sin_recorrido", + "entity": "\n$ee07032c-0973-41d5-ab5e-c39906519f20\"/\u0012\u001d\ra-\u0013\u00c2\u0015\u008b\u0017\u0092\u00c2\u001d\u0000\u0000fC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c0\u00b9\u008c\u00a8\u0006B\b\u001a\u0006HRBS81" + }, + { + "type": "sin_recorrido", + "entity": "\n$f3c4880e-6ebf-46c5-917f-b5150c253051\"/\u0012\u001d\r\u00ef\u00d4\u0013\u00c2\u00159\u0005\u0092\u00c2\u001d\u0000\u0000$B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f5\u00e7\u0097\u00a8\u0006B\b\u001a\u0006JSBB44" + }, + { + "type": "sin_recorrido", + "entity": "\n$aed12c6b-11b3-41d4-ba2f-ec8ffabce07c\"/\u0012\u001d\rc=\u0013\u00c2\u0015\u00f3\u0019\u0092\u00c2\u001d\u0000\u0000\u0018C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u001c\u00c7YA(\u00cf\u00e8\u0097\u00a8\u0006B\b\u001a\u0006CYVL58" + }, + { + "type": "sin_recorrido", + "entity": "\n$a782e11d-4479-4eb0-a443-9280bd632070\"/\u0012\u001d\r\u00cf=\u0013\u00c2\u0015f\u0010\u0092\u00c2\u001d\u0000\u0000\u00acC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a3\u00f4\u0092\u00a8\u0006B\b\u001a\u0006WW3721" + }, + { + "type": "sin_recorrido", + "entity": "\n$71c62178-d81e-4b02-9697-d4ebfa533ead\"/\u0012\u001d\r\u00fab\u0013\u00c2\u0015\u00bfI\u0092\u00c2\u001d\u0000\u0000\u00ccB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00d8\u00e2\u0097\u00a8\u0006B\b\u001a\u0006YX2282" + }, + { + "type": "sin_recorrido", + "entity": "\n$9a45d000-410d-47d1-a213-bcae8371e009\"/\u0012\u001d\rp-\u0013\u00c2\u0015\u00a6\u0017\u0092\u00c2\u001d\u0000\u0000=C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a7\u00f1\u0092\u00a8\u0006B\b\u001a\u0006BWYC26" + }, + { + "type": "sin_recorrido", + "entity": "\n$c10a43b5-fc43-4ab9-8cc4-2014ebe21a52\"/\u0012\u001d\r\u00da8\u0013\u00c2\u0015\u00a4\u0013\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a0\u00e7\u0097\u00a8\u0006B\b\u001a\u0006BGFD11" + }, + { + "type": "sin_recorrido", + "entity": "\n$b1da4325-0b4c-4e43-97f7-1b799c77ff9a\"/\u0012\u001d\rp\u00dc\u0012\u00c2\u0015\u00ca\u00f4\u0091\u00c2\u001d\u0000\u0000lC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0080\u00e5\u0082\u00a8\u0006B\b\u001a\u0006FGPH71" + }, + { + "type": "sin_recorrido", + "entity": "\n$c75cc13d-ed61-4cb0-be3b-a59fb6b2e793\"/\u0012\u001d\r\u00e1\u00cb\u0013\u00c2\u0015\u00df\u0005\u0092\u00c2\u001d\u0000\u0000@A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f4\u00a9\u0094\u00a8\u0006B\b\u001a\u0006HJXW56" + }, + { + "type": "sin_recorrido", + "entity": "\n$2db1b09c-6b24-40d9-b9c3-960eab861408\"/\u0012\u001d\r\u00b6\r\u0013\u00c2\u0015F/\u0092\u00c2\u001d\u0000\u0000\u0018C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c2\u00fd\u0093\u00a8\u0006B\b\u001a\u0006XG3191" + }, + { + "type": "sin_recorrido", + "entity": "\n$6e3227de-5291-4e65-8190-d011d26f00d6\"/\u0012\u001d\r\u00b7\u00cf\u0013\u00c2\u0015\u000b\u0007\u0092\u00c2\u001d\u0000\u0000\u00b0C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u001c\u00c71@(\u00a2\u0082\u0092\u00a8\u0006B\b\u001a\u0006ZP2769" + }, + { + "type": "sin_recorrido", + "entity": "\n$9c881459-8372-4c0e-ba86-45605dd5843d\"/\u0012\u001d\r\u00b1\\\u0013\u00c2\u0015\u008e:\u0092\u00c2\u001d\u0000\u0000\u00aeC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00d8\u00ee\u008d\u00a8\u0006B\b\u001a\u0006DHJC14" + }, + { + "type": "sin_recorrido", + "entity": "\n$a489c174-99ab-479f-ac60-c8128b69d0d2\"/\u0012\u001d\r\u0002\u00d6\u0012\u00c2\u0015fG\u0092\u00c2\u001d\u0000\u0000HC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u000e?(\u0090\u0090\u0093\u00a8\u0006B\b\u001a\u0006JCGF99" + }, + { + "type": "sin_recorrido", + "entity": "\n$fad302d1-53e4-40b4-ab18-3214f06e27d8\"/\u0012\u001d\r\u0010\u00c4\u0013\u00c2\u0015\u00dc\r\u0092\u00c2\u001d\u0000\u0000\u000eC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0082\u00e7\u0097\u00a8\u0006B\b\u001a\u0006HFLS53" + }, + { + "type": "sin_recorrido", + "entity": "\n$365f48e7-272e-4cc5-848f-440fa97c811c\"/\u0012\u001d\r\u00e3i\u0012\u00c2\u0015\u00d7\u00ef\u0091\u00c2\u001d\u0000\u0000\u00a7C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b2\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HYYX68" + }, + { + "type": "sin_recorrido", + "entity": "\n$0995a59a-c67d-4dfc-ad68-daed079164e0\"/\u0012\u001d\rvK\u0013\u00c2\u0015w#\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0092\u00ff\u0092\u00a8\u0006B\b\u001a\u0006GLCW10" + }, + { + "type": "sin_recorrido", + "entity": "\n$a2649979-f929-46b7-8c28-bae2a93d6956\"/\u0012\u001d\rc\u001d\u0013\u00c2\u0015\u00cc2\u0092\u00c2\u001d\u0000\u0000\u0018B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008e\u00e3\u00f8?(\u0080\u00ca\u0092\u00a8\u0006B\b\u001a\u0006JVTK83" + }, + { + "type": "sin_recorrido", + "entity": "\n$b55782c4-7bbb-4ff1-900d-d00882d74d9e\"/\u0012\u001d\r\u00f6P\u0013\u00c2\u0015\u00e2K\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00fa\u00ec\u0092\u00a8\u0006B\b\u001a\u0006MY2239" + }, + { + "type": "sin_recorrido", + "entity": "\n$38f117de-c91a-431a-91bc-e0b0d9b33fab\"/\u0012\u001d\r\u00ed\u0013\u0013\u00c2\u0015&:\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009e\u00f0\u0091\u00a8\u0006B\b\u001a\u0006YK7897" + }, + { + "type": "sin_recorrido", + "entity": "\n$87d2185a-5684-480d-b203-73c5b4ff83de\"/\u0012\u001d\rO_\u0013\u00c2\u0015\u00f2\u0004\u0092\u00c2\u001d\u0000\u0000HC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a8\u00af\u0097\u00a8\u0006B\b\u001a\u0006RHRY49" + }, + { + "type": "sin_recorrido", + "entity": "\n$593e2c62-acc4-4268-8aca-1491072498ae\"/\u0012\u001d\r\u00b1\u00d0\u0013\u00c2\u0015b\u000b\u0092\u00c2\u001d\u0000\u0000\u00a5C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ae\u00d2\u0092\u00a8\u0006B\b\u001a\u0006ZT3771" + }, + { + "type": "sin_recorrido", + "entity": "\n$98875317-8572-4709-830e-9de4ed958103\"/\u0012\u001d\r\"\u00cc\u0013\u00c2\u0015*\u00dd\u0091\u00c2\u001d\u0000\u0080\u0090C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00e4\u00bb\u0093\u00a8\u0006B\b\u001a\u0006JCPJ32" + }, + { + "type": "sin_recorrido", + "entity": "\n$427ad44b-7566-41e0-93fb-49e81f7beabd\"/\u0012\u001d\rM\u001d\u0013\u00c2\u0015\u00e92\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u008c\u00a2\u0092\u00a8\u0006B\b\u001a\u0006CTZW20" + }, + { + "type": "sin_recorrido", + "entity": "\n$d24d6f85-2d72-4c76-baee-81a4367ab802\"/\u0012\u001d\r\u0090%\u0013\u00c2\u0015\u00f93\u0092\u00c2\u001d\u0000\u0000\u0088C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009c\u00e8\u0097\u00a8\u0006B\b\u001a\u0006BWYJ83" + }, + { + "type": "sin_recorrido", + "entity": "\n$76c6d4ec-1edd-4655-8c39-608b93bc1d0e\"/\u0012\u001d\r\u0084\u00d4\u0013\u00c2\u0015?\u0005\u0092\u00c2\u001d\u0000\u0080\u008fC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c2\u0082\u0094\u00a8\u0006B\b\u001a\u0006RTXW61" + }, + { + "type": "sin_recorrido", + "entity": "\n$4bfd62c6-0b75-47a2-8b4e-34e9da3d14aa\"/\u0012\u001d\r\u00f9\u00d4\u0013\u00c2\u0015{\u0005\u0092\u00c2\u001d\u0000\u0000\u00a6C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u008b\u00f3\u0092\u00a8\u0006B\b\u001a\u0006BBGL85" + }, + { + "type": "sin_recorrido", + "entity": "\n$d96f4369-a6bc-4e7a-8ef0-c6d717e445e7\"/\u0012\u001d\r0\u00c4\u0013\u00c2\u0015\u00a7\u0007\u0092\u00c2\u001d\u0000\u0000DC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00cc\u00de\u0097\u00a8\u0006B\b\u001a\u0006BFRT89" + }, + { + "type": "sin_recorrido", + "entity": "\n$af09183c-3f60-4758-a88f-250d5f401aec\"/\u0012\u001d\r\u000b\u00d5\u0013\u00c2\u0015\u0097\u0005\u0092\u00c2\u001d\u0000\u0000eC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008e\u00e3\u00f8?(\u00ed\u00c5\u0092\u00a8\u0006B\b\u001a\u0006XU3135" + }, + { + "type": "sin_recorrido", + "entity": "\n$24861ad2-7f6e-4fcb-b362-db0fee1d382b\"/\u0012\u001d\r\u00eb8\u0013\u00c2\u0015\u00a3\u0013\u0092\u00c2\u001d\u0000\u0000;C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ae\u00f8\u0092\u00a8\u0006B\b\u001a\u0006YX1620" + }, + { + "type": "sin_recorrido", + "entity": "\n$05153a8a-dab7-4fa5-99b8-214808f3b277\"/\u0012\u001d\r\u00bc\u00d7\u0012\u00c2\u0015\u00e4I\u0092\u00c2\u001d\u0000\u0000\u00c0B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00aa\u00bb\u0093\u00a8\u0006B\b\u001a\u0006HYHP69" + }, + { + "type": "sin_recorrido", + "entity": "\n$0316dbbc-e71c-4a56-9dd3-35cdb73fb0af\"/\u0012\u001d\r5\u00e0\u0012\u00c2\u0015\u00eb=\u0092\u00c2\u001d\u0000\u0000\u0080C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00e8\u00e2\u0092\u00a8\u0006B\b\u001a\u0006FYDV22" + }, + { + "type": "sin_recorrido", + "entity": "\n$e22666b8-4dee-493a-935a-60be89d3f1c7\"/\u0012\u001d\r\u008ee\u0012\u00c2\u00156\u00e7\u0091\u00c2\u001d\u0000\u0000`B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f6\u00e6\u0097\u00a8\u0006B\b\u001a\u0006KKPV66" + }, + { + "type": "sin_recorrido", + "entity": "\n$10b87f47-bce6-47e0-a551-2750593d5d9d\"/\u0012\u001d\r\u00dde\u0013\u00c2\u0015\u00d0H\u0092\u00c2\u001d\u0000\u0000fC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a7\u00e8\u0097\u00a8\u0006B\b\u001a\u0006RWTK95" + }, + { + "type": "sin_recorrido", + "entity": "\n$07c18b89-0a72-41e2-905f-28f442c21369\"/\u0012\u001d\rn\u00de\u0012\u00c2\u0015\u009c<\u0092\u00c2\u001d\u0000\u0000\u008aC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b7\u00ef\u0093\u00a8\u0006B\b\u001a\u0006KHSW56" + }, + { + "type": "sin_recorrido", + "entity": "\n$13998fd4-26fc-4153-9faa-0494e773aa7f\"/\u0012\u001d\r\u0092\u00d4\u0013\u00c2\u00156\u0005\u0092\u00c2\u001d\u0000\u0080\u00a5C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ba\u00e9\u0093\u00a8\u0006B\b\u001a\u0006FZWC15" + }, + { + "type": "sin_recorrido", + "entity": "\n$52dfdc40-84d0-4477-a618-de0773ebc6fb\"/\u0012\u001d\r\u00927\u0013\u00c2\u0015\u00cd\u0017\u0092\u00c2\u001d\u0000\u0000pC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u000e@(\u00bc\u00d2\u00fe\u00a7\u0006B\b\u001a\u0006RXVT18" + }, + { + "type": "sin_recorrido", + "entity": "\n$13a00b97-42da-4af9-a987-d215377e2a4f\"/\u0012\u001d\r\u00c3\u00c3\u0013\u00c2\u0015\u00ef\r\u0092\u00c2\u001d\u0000\u0000\u0093C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c2\u00d0\u0093\u00a8\u0006B\b\u001a\u0006RTRF77" + }, + { + "type": "sin_recorrido", + "entity": "\n$9111d57c-b373-4b46-8ec9-18f982aa797d\"/\u0012\u001d\r\u00f3\u00d4\u0013\u00c2\u0015\u0085\u0005\u0092\u00c2\u001d\u0000\u0080\u00a3C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ad\u00a4\u0093\u00a8\u0006B\b\u001a\u0006GWLK25" + }, + { + "type": "sin_recorrido", + "entity": "\n$9d3cabd0-b86e-4247-ab47-7acad76e3bda\"/\u0012\u001d\r\u00eel\u0012\u00c2\u0015\u00a6\u00e7\u0091\u00c2\u001d\u0000\u0000FC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f2\u00e4\u0097\u00a8\u0006B\b\u001a\u0006RFWX26" + }, + { + "type": "sin_recorrido", + "entity": "\n$35ba13a7-17cc-49aa-9d29-ace1981bde91\"/\u0012\u001d\r\u00c2P\u0013\u00c2\u0015\u0082K\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00bd\u00e6\u0097\u00a8\u0006B\b\u001a\u0006FXRL43" + }, + { + "type": "sin_recorrido", + "entity": "\n$a1372cf6-3bef-412a-ac23-3f13b1bf8916\"/\u0012\u001d\r\u00ae\u00da\u0012\u00c2\u0015\u008a\u00f4\u0091\u00c2\u001d\u0000\u0000bC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0096\u00e6\u0097\u00a8\u0006B\b\u001a\u0006SVYW40" + }, + { + "type": "sin_recorrido", + "entity": "\n$08378a4c-94da-40c1-89c5-bcb3fdae277a\"/\u0012\u001d\r\u00ce\u001b\u0013\u00c2\u0015\u00919\u0092\u00c2\u001d\u0000\u0000\u008fC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009e\u00ac\u0097\u00a8\u0006B\b\u001a\u0006JHJF65" + }, + { + "type": "sin_recorrido", + "entity": "\n$2df0c2ee-a15e-4c2c-bfc9-8a4352acab70\"/\u0012\u001d\r\u008d\u00cb\u0013\u00c2\u0015\u0005\u0006\u0092\u00c2\u001d\u0000\u0000XC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ba\u00e3\u0093\u00a8\u0006B\b\u001a\u0006GRWL98" + }, + { + "type": "sin_recorrido", + "entity": "\n$815e2c3e-2ac5-4b9d-97ba-a579a65ab75a\"/\u0012\u001d\r\u00de\u00c3\u0013\u00c2\u0015\u00e1\r\u0092\u00c2\u001d\u0000\u0000\u00afC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00e8\u00e6\u0097\u00a8\u0006B\b\u001a\u0006FXJB65" + }, + { + "type": "sin_recorrido", + "entity": "\n$11570f05-753d-43ec-a5bf-9446b53b5fee\"/\u0012\u001d\r\u0016\u001e\u0013\u00c2\u0015\u00d92\u0092\u00c2\u001d\u0000\u0000BC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ca\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HXKJ49" + }, + { + "type": "sin_recorrido", + "entity": "\n$ca2c76a2-8cdc-4bd9-838c-c7bca1d56c33\"/\u0012\u001d\r}\u00db\u0013\u00c2\u0015\"\u00de\u0091\u00c2\u001d\u0000\u0000QC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-r\u001cg@(\u00ae\u00d4\u0093\u00a8\u0006B\b\u001a\u0006HRBS34" + }, + { + "type": "sin_recorrido", + "entity": "\n$5d197202-8dc2-4a47-838c-fbeb5eb6aea0\"/\u0012\u001d\r\u00bc\u00da\u0012\u00c2\u0015\u0081\u00f4\u0091\u00c2\u001d\u0000\u0000tB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0081\u00a9\u0097\u00a8\u0006B\b\u001a\u0006HYYX66" + }, + { + "type": "sin_recorrido", + "entity": "\n$780f5bcb-3a4d-42fe-b1cd-79440432f23c\"/\u0012\u001d\r\u00be`\u0013\u00c2\u0015\u00a2@\u0092\u00c2\u001d\u0000\u0000DC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009c\u00e8\u0097\u00a8\u0006B\b\u001a\u0006WH1336" + }, + { + "type": "sin_recorrido", + "entity": "\n$af92bec4-f5ad-4835-94a7-f5996fcb7aba\"/\u0012\u001d\r\u00b9(\u0013\u00c2\u0015{(\u0092\u00c2\u001d\u0000\u0000\u0091C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c6\u00e4\u0097\u00a8\u0006B\b\u001a\u0006FJPD97" + }, + { + "type": "sin_recorrido", + "entity": "\n$e78afb30-0855-4ae7-82ca-03fc35a635b3\"/\u0012\u001d\rV:\u0013\u00c2\u0015P\u001a\u0092\u00c2\u001d\u0000\u0000pC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0096\u00e7\u0091\u00a8\u0006B\b\u001a\u0006DSKF39" + }, + { + "type": "sin_recorrido", + "entity": "\n$4cdfaaa8-fd7e-401c-8f8a-6045fb196ed7\"/\u0012\u001d\r\u0093P\u0013\u00c2\u0015N\u0005\u0092\u00c2\u001d\u0000\u0000\u009eB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-ff>A(\u00b9\u00e7\u0097\u00a8\u0006B\b\u001a\u0006JXKG53" + }, + { + "type": "sin_recorrido", + "entity": "\n$0b79ece0-587d-4ab8-848c-923b553ad3e5\"/\u0012\u001d\r\u008eR\u0013\u00c2\u00158?\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00d9\u0083\u0093\u00a8\u0006B\b\u001a\u0006KFTV32" + }, + { + "type": "sin_recorrido", + "entity": "\n$c8a64b50-a29c-4290-89d1-7754f2351a52\"/\u0012\u001d\r\u00acY\u0013\u00c2\u0015\u00f7,\u0092\u00c2\u001d\u0000\u0000tC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-33\u0015B(\u00e8\u00d5\u0092\u00a8\u0006B\b\u001a\u0006WD9971" + }, + { + "type": "sin_recorrido", + "entity": "\n$c79fe072-f9cd-4313-a422-847a34b1a4f3\"/\u0012\u001d\r`\u00d5\u0013\u00c2\u0015\u00a6\u0005\u0092\u00c2\u001d\u0000\u0000\u0016C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009a\u0089\u0092\u00a8\u0006B\b\u001a\u0006FLRY73" + }, + { + "type": "sin_recorrido", + "entity": "\n$a5aae311-ab7b-43c0-a482-9120c4d5348c\"/\u0012\u001d\r\u0000\u00c4\u0013\u00c2\u0015\u00cd\r\u0092\u00c2\u001d\u0000\u0000\u00aaC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0086\u00b9\u0093\u00a8\u0006B\b\u001a\u0006FWJX86" + }, + { + "type": "sin_recorrido", + "entity": "\n$fedb7f5d-4597-4c9b-9d14-6f30b933cd3b\"/\u0012\u001d\r\u00f8\u00c3\u0013\u00c2\u0015\u00fc\r\u0092\u00c2\u001d\u0000\u0000.C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00d2\u009a\u0094\u00a8\u0006B\b\u001a\u0006YX2292" + }, + { + "type": "sin_recorrido", + "entity": "\n$aafdb77d-f501-4e78-8f6d-0c951be702ea\"/\u0012\u001d\r\u00f3\u00c3\u0013\u00c2\u0015\u00e3\r\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a8\u00a9\u0096\u00a8\u0006B\b\u001a\u0006WW3021" + }, + { + "type": "sin_recorrido", + "entity": "\n$76d1b1d2-f36e-4bd0-ac62-657b5bc774ef\"/\u0012\u001d\r5\u00e0\u0012\u00c2\u0015\t>\u0092\u00c2\u001d\u0000\u0000\u0098B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a6\u00c1\u0092\u00a8\u0006B\b\u001a\u0006YF1863" + }, + { + "type": "sin_recorrido", + "entity": "\n$297844ad-468a-4264-96ef-d97b42eed47c\"/\u0012\u001d\r\u00efP\u0013\u00c2\u0015\u00edK\u0092\u00c2\u001d\u0000\u0000\u0010B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u008e\u00fc\u0092\u00a8\u0006B\b\u001a\u0006FRPG39" + }, + { + "type": "sin_recorrido", + "entity": "\n$ecb61d10-209a-4d90-a9c4-034ce5945358\"/\u0012\u001d\r\u00b7\u00e4\u0012\u00c2\u0015\u00eaA\u0092\u00c2\u001d\u0000\u0000\u000fC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u008e?(\u0086\u00f7\u0092\u00a8\u0006B\b\u001a\u0006WW4028" + }, + { + "type": "sin_recorrido", + "entity": "\n$3a078b6e-d98a-4f84-8080-211e4f8fcd36\"/\u0012\u001d\r\u00ee^\u0013\u00c2\u0015\u0002\u0005\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a4\u0095\u0097\u00a8\u0006B\b\u001a\u0006BU6919" + }, + { + "type": "sin_recorrido", + "entity": "\n$b1c1865a-c235-474a-a81d-99fa02b6e84f\"/\u0012\u001d\r\u000b\u00db\u0012\u00c2\u0015\u0091\u00f4\u0091\u00c2\u001d\u0000\u0000\fC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00e6\u00cf\u0097\u00a8\u0006B\b\u001a\u0006LFVD12" + }, + { + "type": "sin_recorrido", + "entity": "\n$f333b3ed-8e0c-491c-bea2-a078db09a5f1\"/\u0012\u001d\r\u00ee\u00c4\u0013\u00c2\u0015C\u0006\u0092\u00c2\u001d\u0000\u0000|C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u008e@(\u00da\u00e5\u008d\u00a8\u0006B\b\u001a\u0006YE2812" + }, + { + "type": "sin_recorrido", + "entity": "\n$6c2c56c3-ff7b-4130-acd9-e5447ba85662\"/\u0012\u001d\r\u009cT\u0013\u00c2\u0015\u00f6\u0001\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0086\u00a4\u0092\u00a8\u0006B\b\u001a\u0006FFTL54" + }, + { + "type": "sin_recorrido", + "entity": "\n$1badd376-fb6a-4289-8bac-b530bf68c017\"/\u0012\u001d\r=\u0084\u0012\u00c2\u0015\u008b\u00e8\u0091\u00c2\u001d\u0000\u0000\u0098B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f7\u00e7\u0097\u00a8\u0006B\b\u001a\u0006RWKY42" + }, + { + "type": "sin_recorrido", + "entity": "\n$4cb4ebce-c737-4d83-b6a8-dc92dad7ec4d\"/\u0012\u001d\r\u0018O\u0013\u00c2\u0015\u0011A\u0092\u00c2\u001d\u0000\u0000\u0092C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00e6\u00fb\u0093\u00a8\u0006B\b\u001a\u0006BBFT99" + }, + { + "type": "sin_recorrido", + "entity": "\n$a0f2e47c-7e4f-41ee-9d92-3f81c4e080f5\"/\u0012\u001d\r\u0093f\u0013\u00c2\u0015\u00e4H\u0092\u00c2\u001d\u0000\u0000\u00b0A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-VU\u00d5?(\u00bf\u00e8\u0097\u00a8\u0006B\b\u001a\u0006BFHJ55" + }, + { + "type": "sin_recorrido", + "entity": "\n$f8285b7e-42a4-4b22-9964-e76ae6f17e34\"/\u0012\u001d\r\u00100\u0013\u00c2\u0015\u00d1:\u0092\u00c2\u001d\u0000\u0000\u0081C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0098\u00e8\u0097\u00a8\u0006B\b\u001a\u0006YR3387" + }, + { + "type": "sin_recorrido", + "entity": "\n$b4780ca7-1e0b-4a6e-ac47-fe0dfb01e4e9\"/\u0012\u001d\r\u00f8\u00d4\u0013\u00c2\u0015y\u0005\u0092\u00c2\u001d\u0000\u0000\u00a1C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00d2\u00ab\u0093\u00a8\u0006B\b\u001a\u0006XZ9640" + }, + { + "type": "sin_recorrido", + "entity": "\n$0e696444-2a61-4679-b8bd-f6268078474d\"/\u0012\u001d\r!\u00c5\u0013\u00c2\u0015\u00ed\u0004\u0092\u00c2\u001d\u0000\u0000\u009cB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c8\u00e7\u0097\u00a8\u0006B\b\u001a\u0006CYVP95" + }, + { + "type": "sin_recorrido", + "entity": "\n$e8278091-ea33-42bb-bfd3-05ae79fbaf21\"/\u0012\u001d\r\u00d3\u00cb\u0013\u00c2\u0015\u0002\u00dd\u0091\u00c2\u001d\u0000\u0000\bB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u008e?(\u0098\u008e\u00e7\u00a7\u0006B\b\u001a\u0006DCHR62" + }, + { + "type": "sin_recorrido", + "entity": "\n$ae5fdecb-a33e-4285-aa07-fa2803cec409\"/\u0012\u001d\r\u0005\u00d8\u0012\u00c2\u0015\u00b2\u00f2\u0091\u00c2\u001d\u0000\u0000NC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a4\u00f4\u0092\u00a8\u0006B\b\u001a\u0006DRFP55" + }, + { + "type": "sin_recorrido", + "entity": "\n$48cd2327-7718-4de0-839c-56b8e20e2540\"/\u0012\u001d\r\u00beL\u0013\u00c2\u0015\u001f@\u0092\u00c2\u001d\u0000\u0080\u008dC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00cd\u00cc\f@(\u00da\u00a8\u0093\u00a8\u0006B\b\u001a\u0006FXFW82" + }, + { + "type": "sin_recorrido", + "entity": "\n$66e0c29a-986a-4819-9662-5eda52af5f94\"/\u0012\u001d\rZ'\u0013\u00c2\u0015p3\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00fa\u00a9\u0088\u00a8\u0006B\b\u001a\u0006CXLY24" + }, + { + "type": "sin_recorrido", + "entity": "\n$37a1f091-b28b-4062-b52b-8a81c5198ce5\"/\u0012\u001d\r\u000b-\u0013\u00c2\u0015\u00a3.\u0092\u00c2\u001d\u0000\u0000!C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00de\u008c\u0092\u00a8\u0006B\b\u001a\u0006WS7665" + }, + { + "type": "sin_recorrido", + "entity": "\n$bd2da293-6467-4749-a74c-2658c2c976d9\"/\u0012\u001d\rgQ\u0013\u00c2\u0015\u00a3\u001e\u0092\u00c2\u001d\u0000\u0000\u0000C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f0\u00e6\u0097\u00a8\u0006B\b\u001a\u0006KHXV50" + }, + { + "type": "sin_recorrido", + "entity": "\n$7069d025-2415-4931-bd02-da01e23ce531\"/\u0012\u001d\r\u0013\u00dd\u0013\u00c2\u0015'\u00da\u0091\u00c2\u001d\u0000\u0000\u0012C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f0\u00e7\u0097\u00a8\u0006B\b\u001a\u0006GVYD71" + }, + { + "type": "sin_recorrido", + "entity": "\n$abf50f9c-6382-4e95-8125-e80d0232e00a\"/\u0012\u001d\r\u0004\u00c4\u0013\u00c2\u0015\u00dc\r\u0092\u00c2\u001d\u0000\u0000\u00a3C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ba\u00dc\u0097\u00a8\u0006B\b\u001a\u0006CJSD72" + }, + { + "type": "sin_recorrido", + "entity": "\n$556571ba-dbb1-48d3-b4ca-43ea5c9221ed\"/\u0012\u001d\r\u00c1+\u0013\u00c2\u0015\u00984\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b8\u00fa\u0088\u00a8\u0006B\b\u001a\u0006FDHJ52" + }, + { + "type": "sin_recorrido", + "entity": "\n$92133084-dc0e-4828-9628-c9fb6a31baed\"/\u0012\u001d\r\u00fc\u00a3\u0013\u00c2\u0015L\u000e\u0092\u00c2\u001d\u0000\u0080\u00abC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a9\u00e7\u0097\u00a8\u0006B\b\u001a\u0006HJXG47" + }, + { + "type": "sin_recorrido", + "entity": "\n$d477903a-3051-4569-a7b2-e2a5512a692f\"/\u0012\u001d\rLQ\u0013\u00c2\u0015-\u001f\u0092\u00c2\u001d\u0000\u0000\u00c6B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00fd\u00e6\u0097\u00a8\u0006B\b\u001a\u0006KHXV29" + }, + { + "type": "sin_recorrido", + "entity": "\n$53662e2f-652b-4404-8a93-79e45a057c94\"/\u0012\u001d\r\u00ebP\u0013\u00c2\u0015\u00c6K\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00e3\u00a6\u0093\u00a8\u0006B\b\u001a\u0006BYPX40" + }, + { + "type": "sin_recorrido", + "entity": "\n$7c530d85-fdaf-4598-ac10-4784ed1cbd8f\"/\u0012\u001d\r(\u00f0\u00ae\u0097\u00a8\u0006B\b\u001a\u0006CRVH45" + }, + { + "type": "sin_recorrido", + "entity": "\n$5327d30e-7237-4012-8f05-bee8e6848d12\"/\u0012\u001d\r\u0091\u00cb\u0013\u00c2\u0015\u0003\u0006\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f7\u00e4\u0097\u00a8\u0006B\b\u001a\u0006DHTZ45" + }, + { + "type": "sin_recorrido", + "entity": "\n$572be774-269f-4ef2-9c42-bdd601bb1a56\"/\u0012\u001d\r\u00f38\u0013\u00c2\u0015\u009a\u0013\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00d1\u00ab\u0092\u00a8\u0006B\b\u001a\u0006BKTP80" + }, + { + "type": "sin_recorrido", + "entity": "\n$3e2686c7-3b8a-44d2-9871-dbc800778e25\"/\u0012\u001d\rp:\u0013\u00c2\u0015\u0084\u001a\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ea\u00a0\u0092\u00a8\u0006B\b\u001a\u0006FXRL35" + }, + { + "type": "sin_recorrido", + "entity": "\n$7b3e9bc9-eba3-4b84-ab0c-a32874573c85\"/\u0012\u001d\r=y\u0012\u00c2\u0015\u00a0\u00e8\u0091\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0084\u0086\u0091\u00a8\u0006B\b\u001a\u0006WK9163" + }, + { + "type": "sin_recorrido", + "entity": "\n$68275099-2816-42f0-8f0a-cae33266b540\"/\u0012\u001d\r\u00de\u00dd\u0012\u00c2\u0015?@\u0092\u00c2\u001d\u0000\u0000\u00aeC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009e\u00b6\u0097\u00a8\u0006B\b\u001a\u0006LRJG53" + }, + { + "type": "sin_recorrido", + "entity": "\n$fcb42fab-8abe-43ac-8040-abcf3b49363c\"/\u0012\u001d\r=\u00db\u0012\u00c2\u0015\u009e\u00f4\u0091\u00c2\u001d\u0000\u0000\u0018C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c2\u00e6\u0097\u00a8\u0006B\b\u001a\u0006JSBB14" + }, + { + "type": "sin_recorrido", + "entity": "\n$89585351-cf5e-40ad-aa89-3a5659140048\"/\u0012\u001d\r\u00809\u0013\u00c2\u0015s\u001a\u0092\u00c2\u001d\u0000\u0000\u00ccB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0080\u00e1\u0091\u00a8\u0006B\b\u001a\u0006FYBD34" + }, + { + "type": "sin_recorrido", + "entity": "\n$1c5ee8c3-46af-4c3a-ae61-16a128560815\"/\u0012\u001d\r.j\u0012\u00c2\u0015\u00f3\u00ef\u0091\u00c2\u001d\u0000\u0000\u000eC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0088\u0095\u0097\u00a8\u0006B\b\u001a\u0006MZ6641" + }, + { + "type": "sin_recorrido", + "entity": "\n$3f98a721-0c0d-4c9b-a8bd-aa55e2d6f80f\"/\u0012\u001d\r\u00b2n\u0013\u00c2\u0015\u0019H\u0092\u00c2\u001d\u0000\u0000\u00f0B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u008b\u009c\u0097\u00a8\u0006B\b\u001a\u0006CVTG86" + }, + { + "type": "sin_recorrido", + "entity": "\n$59cb8498-551d-4210-91dc-09195cea0668\"/\u0012\u001d\r\u00b7\u00d4\u0013\u00c2\u0015N\u0005\u0092\u00c2\u001d\u0000\u0000|B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00df\u0083\u008e\u00a8\u0006B\b\u001a\u0006DRTS68" + }, + { + "type": "sin_recorrido", + "entity": "\n$0bfc2ead-2228-470f-9241-9a3439b03c71\"/\u0012\u001d\r\u0005\u00d5\u0013\u00c2\u0015~\u0005\u0092\u00c2\u001d\u0000\u0000QC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f8\u00ae\u0088\u00a8\u0006B\b\u001a\u0006WK6958" + }, + { + "type": "sin_recorrido", + "entity": "\n$e095183c-153d-46a6-b86f-8bf8621cdd28\"/\u0012\u001d\r7\u0011\u0013\u00c2\u0015\r:\u0092\u00c2\u001d\u0000\u0000\u0080A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0096\u0083\u008a\u00a8\u0006B\b\u001a\u0006WG9761" + }, + { + "type": "sin_recorrido", + "entity": "\n$180bafa1-8219-462a-9dce-f59589c35766\"/\u0012\u001d\r\u00c8P\u0013\u00c2\u0015\u00b9K\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00cc\u00c7\u0096\u00a8\u0006B\b\u001a\u0006FXJS18" + }, + { + "type": "sin_recorrido", + "entity": "\n$d4dd01df-eb1b-49ed-867a-bda2a062b94b\"/\u0012\u001d\rq\u00f1\u0012\u00c2\u0015\u009f4\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0094\u00b4\u0097\u00a8\u0006B\b\u001a\u0006KDXL37" + }, + { + "type": "sin_recorrido", + "entity": "\n$b5df92d1-cfc8-4fd2-9f4f-1d959f891416\"/\u0012\u001d\r\u00ecP\u0013\u00c2\u0015\u00d5K\u0092\u00c2\u001d\u0000\u0000!C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u001c\u00c7\u00b1?(\u00b4\u00b9\u0093\u00a8\u0006B\b\u001a\u0006FXRL71" + }, + { + "type": "sin_recorrido", + "entity": "\n$41986478-2dbc-45d7-9d71-10b16b2f85e6\"/\u0012\u001d\r\u009bR\u0013\u00c2\u0015K?\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00aa\u00a0\u0097\u00a8\u0006B\b\u001a\u0006HJRY66" + }, + { + "type": "sin_recorrido", + "entity": "\n$32b42c9b-1ce6-4206-8736-2fe599e3948d\"/\u0012\u001d\r-_\u0013\u00c2\u0015\u00e8\u0004\u0092\u00c2\u001d\u0000\u0000\u0016C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b8\u00a0\u0097\u00a8\u0006B\b\u001a\u0006CYSD10" + }, + { + "type": "sin_recorrido", + "entity": "\n$4945993e-a300-41a5-a672-0c4999eeeac3\"/\u0012\u001d\r\u0007\u00c4\u0013\u00c2\u0015\u00df\r\u0092\u00c2\u001d\u0000\u0000\u001aC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UUU@(\u0088\u008c\u0092\u00a8\u0006B\b\u001a\u0006CGHC78" + }, + { + "type": "sin_recorrido", + "entity": "\n$76309832-1aba-4b75-aa5a-9b236ebfc686\"/\u0012\u001d\r\b\u00d8\u0012\u00c2\u0015\u00cb\u00f2\u0091\u00c2\u001d\u0000\u0000\u008cC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u000e?(\u008e\u0091\u0093\u00a8\u0006B\b\u001a\u0006WC7740" + }, + { + "type": "sin_recorrido", + "entity": "\n$e31c723a-76be-43f4-b0ab-aa053156d0fd\"/\u0012\u001d\r7\u00cc\u0013\u00c2\u0015\u00f1\u00dc\u0091\u00c2\u001d\u0000\u0000\u009fC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0086\u00e6\u0097\u00a8\u0006B\b\u001a\u0006CYWK97" + }, + { + "type": "sin_recorrido", + "entity": "\n$1a3d3661-8424-4862-869d-4e20ec2ad19b\"/\u0012\u001d\r\u0013\u00cc\u0013\u00c2\u0015\t\u00dd\u0091\u00c2\u001d\u0000\u0000\u009eC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UUU@(\u00f0\u00b8\u0097\u00a8\u0006B\b\u001a\u0006BZRG35" + }, + { + "type": "sin_recorrido", + "entity": "\n$d273a4f7-7ece-4709-ad3b-da8a6b5a1408\"/\u0012\u001d\rD\\\u0013\u00c2\u0015\u00db\u0000\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00d1\u00ec\u0093\u00a8\u0006B\b\u001a\u0006FXZY61" + }, + { + "type": "sin_recorrido", + "entity": "\n$5f0a1c13-366d-4620-9739-405325c5eaae\"/\u0012\u001d\r\u00b8\u00fd\u0013\u00c2\u0015\u00dcW\u0092\u00c2\u001d\u0000\u0000 C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0096\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HFYB65" + }, + { + "type": "sin_recorrido", + "entity": "\n$f6d66b8c-9b9a-4974-b30a-c422cff5138c\"/\u0012\u001d\r\t\u00e3\u0012\u00c2\u0015\u00f5H\u0092\u00c2\u001d\u0000\u0000\u00b2C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ea\u00e7\u0097\u00a8\u0006B\b\u001a\u0006DHSL59" + }, + { + "type": "sin_recorrido", + "entity": "\n$083227df-45c3-493f-9768-508570466deb\"/\u0012\u001d\r\bL\u0013\u00c2\u0015\u0082B\u0092\u00c2\u001d\u0000\u0000PC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ec\u00e1\u0097\u00a8\u0006B\b\u001a\u0006FCBR42" + }, + { + "type": "sin_recorrido", + "entity": "\n$8b48e555-75b6-49a7-9b0d-800f0b54a67b\"/\u0012\u001d\r\u00e7Q\u0013\u00c2\u0015\u001e?\u0092\u00c2\u001d\u0000\u0000\u0018B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ad\u0090\u0096\u00a8\u0006B\b\u001a\u0006FVDD42" + }, + { + "type": "sin_recorrido", + "entity": "\n$0c1dc551-ccfd-48d4-a50f-34092fd1972d\"/\u0012\u001d\rL.\u0013\u00c2\u0015\u00db6\u0092\u00c2\u001d\u0000\u0000\u0018B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u000e@(\u00a4\u00dd\u00e7\u00a7\u0006B\b\u001a\u0006FXJS22" + }, + { + "type": "sin_recorrido", + "entity": "\n$2522bed6-9832-45cc-825b-22c8a40a9e36\"/\u0012\u001d\r$7\u0013\u00c2\u0015\u00c7\u0016\u0092\u00c2\u001d\u0000\u0000\u001dC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ba\u00e8\u0097\u00a8\u0006B\b\u001a\u0006YU8228" + }, + { + "type": "sin_recorrido", + "entity": "\n$9656fc5b-25d3-42c0-b755-46f12b734e27\"/\u0012\u001d\rT>\u0013\u00c2\u0015\u009c\u0019\u0092\u00c2\u001d\u0000\u0000\u00a5C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000 A(\u00ac\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FWTT74" + }, + { + "type": "sin_recorrido", + "entity": "\n$50ba7353-d7a9-4d59-9caa-8e5eb9e3f1b7\"/\u0012\u001d\r:\u0016\u0013\u00c2\u0015\u0086:\u0092\u00c2\u001d\u0000\u0000\u00adC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0092\u00e8\u0097\u00a8\u0006B\b\u001a\u0006YA5666" + }, + { + "type": "sin_recorrido", + "entity": "\n$0b5260ff-86b6-4494-a1a5-29b07f2732da\"/\u0012\u001d\r\u00c1\u00c3\u0013\u00c2\u0015\u00e7\r\u0092\u00c2\u001d\u0000\u0000\u0091C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b0\u009b\u0092\u00a8\u0006B\b\u001a\u0006DKYW13" + }, + { + "type": "sin_recorrido", + "entity": "\n$c1d63286-038c-424c-a2cb-2c4d60533c98\"/\u0012\u001d\r\u00eb-\u0013\u00c2\u0015\u00a2\u0017\u0092\u00c2\u001d\u0000\u0000wC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u008e>(\u00d1\u008f\u0082\u00a8\u0006B\b\u001a\u0006KYKJ75" + }, + { + "type": "sin_recorrido", + "entity": "\n$751b9315-f47e-420e-9a55-e2b97011f065\"/\u0012\u001d\r6\u0011\u0013\u00c2\u0015#:\u0092\u00c2\u001d\u0000\u0000\u00d0A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a4\u0096\u0092\u00a8\u0006B\b\u001a\u0006WG9613" + }, + { + "type": "sin_recorrido", + "entity": "\n$fba0c994-8927-467f-9689-6f3a25bf0e5d\"/\u0012\u001d\r\u001a^\u0013\u00c2\u0015\u00b59\u0092\u00c2\u001d\u0000\u0080\u0086C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00aa\u008a\u0093\u00a8\u0006B\b\u001a\u0006XP4106" + }, + { + "type": "sin_recorrido", + "entity": "\n$7a0c84a2-4d17-43ab-a770-b70383fa8816\"/\u0012\u001d\rs\u00de\u0012\u00c2\u0015\u008b\u00f1\u0091\u00c2\u001d\u0000\u0000\u00f6B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e486A(\u00c7\u00e8\u0097\u00a8\u0006B\b\u001a\u0006LPDK21" + }, + { + "type": "sin_recorrido", + "entity": "\n$0b75799d-fbee-40bc-a9ff-f8991ce949d5\"/\u0012\u001d\r\u0096\u00c3\u0013\u00c2\u0015\u00f0\r\u0092\u00c2\u001d\u0000\u0000pC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b2\u00e6\u0097\u00a8\u0006B\b\u001a\u0006YA5908" + }, + { + "type": "sin_recorrido", + "entity": "\n$38f93b88-564a-40d0-8451-398c27199501\"/\u0012\u001d\rbR\u0013\u00c2\u0015g?\u0092\u00c2\u001d\u0000\u0000`A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a9\u00e7\u0097\u00a8\u0006B\b\u001a\u0006JKYZ60" + }, + { + "type": "sin_recorrido", + "entity": "\n$64c5a24f-c234-416c-bf00-12e59debb144\"/\u0012\u001d\r|A\u0013\u00c2\u0015\u00d2\u0014\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ee\u0080\u0092\u00a8\u0006B\b\u001a\u0006CGFG49" + }, + { + "type": "sin_recorrido", + "entity": "\n$358abc93-856a-4941-bd93-ebe4081fd6ef\"/\u0012\u001d\r\u00f9b\u0013\u00c2\u0015\u00d3I\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0096\u00f7\u00cd\u00a7\u0006B\b\u001a\u0006JGJW90" + }, + { + "type": "sin_recorrido", + "entity": "\n$6a0cf819-1e96-464a-a62f-f2ea8c00be1a\"/\u0012\u001d\r\u001e\u0013\u0013\u00c2\u0015\u0003:\u0092\u00c2\u001d\u0000\u0000\u0094B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009c\u00e4\u0093\u00a8\u0006B\b\u001a\u0006DPZY61" + }, + { + "type": "sin_recorrido", + "entity": "\n$df3ae136-7868-433b-8c66-e41c9bb3fbe9\"/\u0012\u001d\r\u00f0\u0081\u0016\u00c2\u0015N\u00eb\u0092\u00c2\u001d\u0000\u0000\u0093C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0082\u00ce\u0097\u00a8\u0006B\b\u001a\u0006LVLG31" + }, + { + "type": "sin_recorrido", + "entity": "\n$a2ec3e6f-6042-4e55-b6f7-e17208e080ca\"/\u0012\u001d\r \u00e0\u0012\u00c2\u0015\u00f1=\u0092\u00c2\u001d\u0000\u0000XB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a8\u00dd\u0092\u00a8\u0006B\b\u001a\u0006HWHK16" + }, + { + "type": "sin_recorrido", + "entity": "\n$c91f254b-2c75-4774-8a64-db2ffd304651\"/\u0012\u001d\r\u00f5e\u0013\u00c2\u0015\u00f6H\u0092\u00c2\u001d\u0000\u0000\u00a0@!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c0\u00bf\u0093\u00a8\u0006B\b\u001a\u0006XB8589" + }, + { + "type": "sin_recorrido", + "entity": "\n$b903550d-91aa-452d-93d6-ca80ae81528e\"/\u0012\u001d\r\u0013\u00dc\u0012\u00c2\u0015\u00c1\u00f4\u0091\u00c2\u001d\u0000\u0080\u009aC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00de\u00f0\u0082\u00a8\u0006B\b\u001a\u0006CWJW16" + }, + { + "type": "sin_recorrido", + "entity": "\n$13181fd5-0643-4de5-b18c-cb40f6ca67f7\"/\u0012\u001d\rS]\u0013\u00c2\u0015\u0084:\u0092\u00c2\u001d\u0000\u0000\u00acC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00cd\u00cc,@(\u00d6\u0093\u0093\u00a8\u0006B\b\u001a\u0006KHFY70" + }, + { + "type": "sin_recorrido", + "entity": "\n$b4a46bf8-bd8e-4934-9c6f-491569b098b9\"/\u0012\u001d\r~\u0013\u0013\u00c2\u0015S:\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00cc\u00b8\u0092\u00a8\u0006B\b\u001a\u0006FYBB45" + }, + { + "type": "sin_recorrido", + "entity": "\n$f7538592-7d4c-4070-af9b-070196dfd2b8\"/\u0012\u001d\r\u00019\u0013\u00c2\u0015\u0095\u0013\u0092\u00c2\u001d\u0000\u0000\u001cC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c0\u009a\u00c8\u00a7\u0006B\b\u001a\u0006XZ9669" + }, + { + "type": "sin_recorrido", + "entity": "\n$3914e6e5-9137-4acb-9bff-ff0f0e84f127\"/\u0012\u001d\r\u00e1i\u0012\u00c2\u0015\u00de\u00ef\u0091\u00c2\u001d\u0000\u0000\u00aaC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a4\u00e5\u0097\u00a8\u0006B\b\u001a\u0006DRJZ49" + }, + { + "type": "sin_recorrido", + "entity": "\n$62ee3e74-7793-42bf-abae-bd879d9c65bf\"/\u0012\u001d\r\u00cfP\u0013\u00c2\u0015\u00daK\u0092\u00c2\u001d\u0000\u0000\u00aeC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u000e@(\u00cb\u0091\u0097\u00a8\u0006B\b\u001a\u0006BBZC61" + }, + { + "type": "sin_recorrido", + "entity": "\n$58f8e4da-ecb4-4aa3-a20d-c33dbe59e0e6\"/\u0012\u001d\r\u0082\u0013\u0013\u00c2\u0015\u0014:\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00d2\u00b1\u0096\u00a8\u0006B\b\u001a\u0006YR1542" + }, + { + "type": "sin_recorrido", + "entity": "\n$38c10acb-d823-490f-8814-9844ff3965fc\"/\u0012\u001d\r\u00de\u0012\u0013\u00c2\u00156:\u0092\u00c2\u001d\u0000\u0080\u008dC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00d5\u00f4\u0092\u00a8\u0006B\b\u001a\u0006RFSC38" + }, + { + "type": "sin_recorrido", + "entity": "\n$12d8928c-3962-4986-955f-f9568b77c829\"/\u0012\u001d\r\u0005\u0013\u0013\u00c2\u0015\u0004:\u0092\u00c2\u001d\u0000\u0000\u00d4B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f2\u00ba\u0093\u00a8\u0006B\b\u001a\u0006YR1543" + }, + { + "type": "sin_recorrido", + "entity": "\n$59ed885b-2112-4878-b461-48064fc892aa\"/\u0012\u001d\r\u009bj\u0012\u00c2\u0015\u00c9\u00ef\u0091\u00c2\u001d\u0000\u0000\u00c4B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u008c\u00d5\u0093\u00a8\u0006B\b\u001a\u0006LVLG32" + }, + { + "type": "sin_recorrido", + "entity": "\n$0c8f5e44-cc8c-40c2-b96c-7b110828fb0b\"/\u0012\u001d\r\u0086.\u0013\u00c2\u0015\u00ab6\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ce\u009d\u00ce\u00a6\u0006B\b\u001a\u0006DWHF41" + }, + { + "type": "sin_recorrido", + "entity": "\n$81829781-2a43-4d54-9325-6f6c4576db7b\"/\u0012\u001d\rE\u001d\u0013\u00c2\u0015\u00c12\u0092\u00c2\u001d\u0000\u0000\u00b0C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00d9\u00cd\u008e\u00a8\u0006B\b\u001a\u0006CRVH48" + }, + { + "type": "sin_recorrido", + "entity": "\n$36491eff-9dc1-4604-869e-e3a2a35026e7\"/\u0012\u001d\r\u00ff\u00d0\u0013\u00c2\u0015?\u000b\u0092\u00c2\u001d\u0000\u0000 B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f4\u0082\u0093\u00a8\u0006B\b\u001a\u0006BLYY25" + }, + { + "type": "sin_recorrido", + "entity": "\n$2620c76e-d3eb-49fa-b7a1-e94153a7062b\"/\u0012\u001d\r\u00dbP\u0013\u00c2\u0015\u00d9K\u0092\u00c2\u001d\u0000\u0000\u0082B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0096\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FXRZ33" + }, + { + "type": "sin_recorrido", + "entity": "\n$35435903-6c33-469f-b964-afa221b7466d\"/\u0012\u001d\r\u008eR\u0013\u00c2\u0015>?\u0092\u00c2\u001d\u0000\u0000\u0090A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0099\u00f6\u008d\u00a8\u0006B\b\u001a\u0006DDDW22" + }, + { + "type": "sin_recorrido", + "entity": "\n$36ae3c88-9fff-473a-a3a7-e3adfc37ef32\"/\u0012\u001d\r\nN\u0013\u00c2\u0015C>\u0092\u00c2\u001d\u0000\u0080\u00b2C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0083\u00a4\u0092\u00a8\u0006B\b\u001a\u0006FYDV31" + }, + { + "type": "sin_recorrido", + "entity": "\n$e17d47bc-c496-40c8-99a3-a052fd3515e9\"/\u0012\u001d\r\u00d4\u00da\u0012\u00c2\u0015\u0090\u00f4\u0091\u00c2\u001d\u0000\u0000\u00a3C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UUU?(\u00c0\u0094\u0093\u00a8\u0006B\b\u001a\u0006BLFS44" + }, + { + "type": "sin_recorrido", + "entity": "\n$fe8e1623-0c73-44c4-96c1-bb6d88015180\"/\u0012\u001d\r\u00da\u001b\u0013\u00c2\u0015\u009e9\u0092\u00c2\u001d\u0000\u0000\u0010B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b6\u00e8\u0097\u00a8\u0006B\b\u001a\u0006YG6209" + }, + { + "type": "sin_recorrido", + "entity": "\n$698a78cd-1baf-42f2-84f9-bfbceb926daf\"/\u0012\u001d\r\u00ce-\u0013\u00c2\u0015v\u0017\u0092\u00c2\u001d\u0000\u0000fC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UU\u00d5?(\u00f5\u00e1\u0080\u00a8\u0006B\b\u001a\u0006FYBF70" + }, + { + "type": "sin_recorrido", + "entity": "\n$b46020ce-2552-4765-b75e-a0e899b43919\"/\u0012\u001d\r\u00f77\u0013\u00c2\u0015\"\u001b\u0092\u00c2\u001d\u0000\u0000\u009aB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00bb\u00a8\u00fd\u00a7\u0006B\b\u001a\u0006YV3065" + }, + { + "type": "sin_recorrido", + "entity": "\n$8c6c206c-2327-4fc2-90bf-585acb297685\"/\u0012\u001d\r\u00e8K\u0013\u00c2\u0015\u00b8B\u0092\u00c2\u001d\u0000\u0080\u00b1C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c7\u00c5\u008e\u00a8\u0006B\b\u001a\u0006YJ3032" + }, + { + "type": "sin_recorrido", + "entity": "\n$f80703dd-d72f-4400-badb-03d5241a3190\"/\u0012\u001d\rU\u0013\u0013\u00c2\u0015\n:\u0092\u00c2\u001d\u0000\u0080\u0089C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00d4\u00f2\u0093\u00a8\u0006B\b\u001a\u0006WZ6732" + }, + { + "type": "sin_recorrido", + "entity": "\n$4729ca8b-f544-44da-8dd3-2dbc9cd56607\"/\u0012\u001d\r(\u00db\u0012\u00c2\u0015\u009d\u00f4\u0091\u00c2\u001d\u0000\u0000\u00aeC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a2\u00ae\u0094\u00a8\u0006B\b\u001a\u0006FPYZ68" + }, + { + "type": "sin_recorrido", + "entity": "\n$9621a391-84cd-4357-81d2-d8f340210e1a\"/\u0012\u001d\r\u00cbK\u0013\u00c2\u0015\u00b8B\u0092\u00c2\u001d\u0000\u0080\u009eC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000?(\u00ed\u00e5\u008c\u00a8\u0006B\b\u001a\u0006YE2805" + }, + { + "type": "sin_recorrido", + "entity": "\n$76327583-224b-4c7b-9044-b17dedd3b093\"/\u0012\u001d\r\u00b9j\u0012\u00c2\u0015\u00bc\u00ef\u0091\u00c2\u001d\u0000\u0000pB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009c\u00bc\u0094\u00a8\u0006B\b\u001a\u0006JRZZ95" + }, + { + "type": "sin_recorrido", + "entity": "\n$12617f8b-ef49-4156-b6e4-d228f8bad49c\"/\u0012\u001d\r\b\u0013\u0013\u00c2\u0015u:\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0093\u00af\u0096\u00a8\u0006B\b\u001a\u0006RW9264" + }, + { + "type": "sin_recorrido", + "entity": "\n$c79ed8ba-9647-4048-b548-4dc5596bca05\"/\u0012\u001d\rT\u00da\u0012\u00c2\u0015{\u00f4\u0091\u00c2\u001d\u0000\u0000\u0016C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00da\u00bc\u00fe\u00a7\u0006B\b\u001a\u0006ZY9303" + }, + { + "type": "sin_recorrido", + "entity": "\n$f29c20d0-545c-453a-a7bf-f7f4ce2f70e2\"/\u0012\u001d\rz\u00e3\u0012\u00c2\u0015\u00eaH\u0092\u00c2\u001d\u0000\u0000\"C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ee\u00f6\u0093\u00a8\u0006B\b\u001a\u0006JHJJ51" + }, + { + "type": "sin_recorrido", + "entity": "\n$998c9992-8b32-470b-b020-648b45799f06\"/\u0012\u001d\r\u0001\u00e0\u0012\u00c2\u0015\u00fe=\u0092\u00c2\u001d\u0000\u0000\u0012C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00bc\u0094\u008e\u00a8\u0006B\b\u001a\u0006ZR7483" + }, + { + "type": "sin_recorrido", + "entity": "\n$2fd5ff6e-5211-49ae-b269-b369cf632887\"/\u0012\u001d\r\u00f6-\u0013\u00c2\u0015\u007f\u0017\u0092\u00c2\u001d\u0000\u00004C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u008e?(\u00d7\u00ca\u00fd\u00a7\u0006B\b\u001a\u0006YG2262" + }, + { + "type": "sin_recorrido", + "entity": "\n$c4faa539-7e6b-4d4e-9b4d-b00306ca8ae7\"/\u0012\u001d\r\b\u00c4\u0013\u00c2\u0015\u00f5\r\u0092\u00c2\u001d\u0000\u0000\bC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009a\u00c6\u0093\u00a8\u0006B\b\u001a\u0006DZKF35" + }, + { + "type": "sin_recorrido", + "entity": "\n$3107d47f-c1da-475b-a6d4-c0c32535efb7\"/\u0012\u001d\rI\u0011\u0013\u00c2\u0015\":\u0092\u00c2\u001d\u0000\u0000\u00d4B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a6\u00b3\u0087\u00a8\u0006B\b\u001a\u0006DLYW10" + }, + { + "type": "sin_recorrido", + "entity": "\n$181fdd81-d75d-498a-97b0-4b804deac51e\"/\u0012\u001d\r3\u00e4\u0012\u00c2\u0015\u0088I\u0092\u00c2\u001d\u0000\u0000\u0018C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00ab\u00aa\u00ba@(\u00aa\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DRTS69" + }, + { + "type": "sin_recorrido", + "entity": "\n$c03c7de5-4c7b-4297-ba8e-a0b316b38df0\"/\u0012\u001d\r\u00ca\u00e3\u0012\u00c2\u0015;I\u0092\u00c2\u001d\u0000\u0000hB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0096\u00e6\u0097\u00a8\u0006B\b\u001a\u0006BJFL97" + }, + { + "type": "sin_recorrido", + "entity": "\n$85c3e80f-2f2b-4eb3-92dc-9f8e28e26e40\"/\u0012\u001d\r\u00da\u00e3\u0012\u00c2\u00159I\u0092\u00c2\u001d\u0000\u0000\u00bcB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f0\u00e6\u0097\u00a8\u0006B\b\u001a\u0006RKFC66" + }, + { + "type": "sin_recorrido", + "entity": "\n$add4d0e5-d126-4159-9b73-a122ca63adcb\"/\u0012\u001d\r\u0006\u00d8\u0012\u00c2\u0015\u00ed\u00f2\u0091\u00c2\u001d\u0000\u0000`C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00de\u00e7\u0097\u00a8\u0006B\b\u001a\u0006BZPV75" + }, + { + "type": "sin_recorrido", + "entity": "\n$1902f37d-a0b7-488c-89ab-7ce0477c264f\"/\u0012\u001d\r\u00ae1\u0013\u00c2\u0015\b\u001f\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009c\u00c6\u008b\u00a8\u0006B\b\u001a\u0006FXRZ70" + }, + { + "type": "sin_recorrido", + "entity": "\n$e8761268-846a-41d1-8877-9fa4baf77285\"/\u0012\u001d\r\u00fe\"\u0013\u00c2\u0015\u008c9\u0092\u00c2\u001d\u0000\u0000\"C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u008f\u009a\u0094\u00a8\u0006B\b\u001a\u0006XZ9729" + }, + { + "type": "sin_recorrido", + "entity": "\n$7b97afe3-dad9-45bf-ad25-0ef97fac9d84\"/\u0012\u001d\r\u00e78\u0013\u00c2\u0015\u0086\u0013\u0092\u00c2\u001d\u0000\u00002C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a0\u00ed\u00f9\u00a6\u0006B\b\u001a\u0006YJ1864" + }, + { + "type": "sin_recorrido", + "entity": "\n$703b0895-bf02-416c-8aad-5078f57b1798\"/\u0012\u001d\r\u0016\u00e4\u0012\u00c2\u0015\u00ba?\u0092\u00c2\u001d\u0000\u0000\u00eeB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008e\u00e3\u00f8?(\u00c2\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FCJS56" + }, + { + "type": "sin_recorrido", + "entity": "\n$de35a8f6-0891-4200-ac4d-326f1bc6d2c3\"/\u0012\u001d\r\u00b3-\u0013\u00c2\u0015o\u0017\u0092\u00c2\u001d\u0000\u0000>C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008e\u00e3\u00f8?(\u00c1\u008a\u0083\u00a8\u0006B\b\u001a\u0006CVJL53" + }, + { + "type": "sin_recorrido", + "entity": "\n$dfea6313-5421-4510-b19a-5e289d821994\"/\u0012\u001d\r\u008d.\u0013\u00c2\u0015\u00df\u0018\u0092\u00c2\u001d\u0000\u0000IC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0081\u00e8\u0097\u00a8\u0006B\b\u001a\u0006BHRY90" + }, + { + "type": "sin_recorrido", + "entity": "\n$2bf88050-66fd-467c-afe0-a8c2fa772467\"/\u0012\u001d\r\u00e5-\u0013\u00c2\u0015\u0098\u0017\u0092\u00c2\u001d\u0000\u0000\u0096C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009c\u00e6\u0097\u00a8\u0006B\b\u001a\u0006FYBF99" + }, + { + "type": "sin_recorrido", + "entity": "\n$f31e70fe-343b-4887-986f-9ce1e877a3c9\"/\u0012\u001d\rH\u00d1\u0012\u00c2\u0015@\u00f1\u0091\u00c2\u001d\u0000\u00000B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u00de@(\u00ae\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HSTC56" + }, + { + "type": "sin_recorrido", + "entity": "\n$a7543736-3de0-4370-9366-6c9e4d664aea\"/\u0012\u001d\r\u00cd)\u0013\u00c2\u0015\u00a2\u001b\u0092\u00c2\u001d\u0000\u0000lB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u001c\u00c7\tA(\u00cb\u00e8\u0097\u00a8\u0006B\b\u001a\u0006GDBP20" + }, + { + "type": "sin_recorrido", + "entity": "\n$c52a638a-0fd7-421a-a0b5-af087f93d801\"/\u0012\u001d\r\u001f\u00d6\u0013\u00c2\u0015\u00a9\u0005\u0092\u00c2\u001d\u0000\u0000\u0080A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00d5\u00af\u0094\u00a8\u0006B\b\u001a\u0006CZCF67" + }, + { + "type": "sin_recorrido", + "entity": "\n$97c64bd4-09f0-4524-bd6c-5385bf61ca72\"/\u0012\u001d\r\u000b\u001e\u0013\u00c2\u0015\u00a32\u0092\u00c2\u001d\u0000\u0000@C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b6\u00e8\u0097\u00a8\u0006B\b\u001a\u0006RTZZ74" + }, + { + "type": "sin_recorrido", + "entity": "\n$13c0b732-60b5-4deb-822d-7fc3a0f584e6\"/\u0012\u001d\r'\u001e\u0013\u00c2\u0015\u00b02\u0092\u00c2\u001d\u0000\u0000\u00e0B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b0\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HBSK85" + }, + { + "type": "sin_recorrido", + "entity": "\n$74ead062-eb6b-4d34-bc98-cc193e6e3c0f\"/\u0012\u001d\r\u000e<\u0013\u00c2\u0015|'\u0092\u00c2\u001d\u0000\u0000\u009eC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0094\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FWTT75" + }, + { + "type": "sin_recorrido", + "entity": "\n$f6c7df0b-714d-443e-82e7-4ee60942fccb\"/\u0012\u001d\r\u000e\u001e\u0013\u00c2\u0015\u00de2\u0092\u00c2\u001d\u0000\u0000pC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0096\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FBLC45" + }, + { + "type": "sin_recorrido", + "entity": "\n$7fac6d7a-da25-4d8f-b4f6-935d1130696c\"/\u0012\u001d\r\u00c6\u00e4\u0012\u00c2\u0015\u00fbA\u0092\u00c2\u001d\u0000\u00002C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0090\u00e8\u0097\u00a8\u0006B\b\u001a\u0006ZT1157" + }, + { + "type": "sin_recorrido", + "entity": "\n$1115fc5b-e3f1-489b-8c06-9e1a124e8e3b\"/\u0012\u001d\r\t\u001e\u0013\u00c2\u0015\u00d52\u0092\u00c2\u001d\u0000\u0000\u0091C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0098\u00e8\u0097\u00a8\u0006B\b\u001a\u0006PCLT48" + }, + { + "type": "sin_recorrido", + "entity": "\n$12cb4185-9e13-4748-bbf5-e01d552397db\"/\u0012\u001d\r\u0002\u00d5\u0013\u00c2\u0015_\u0005\u0092\u00c2\u001d\u0000\u0000\u0080A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00fd\u00c7\u0093\u00a8\u0006B\b\u001a\u0006GVFL65" + }, + { + "type": "sin_recorrido", + "entity": "\n$601e198d-2d71-4545-bd70-7ad00472d046\"/\u0012\u001d\rN\u0011\u0013\u00c2\u0015\u00dc9\u0092\u00c2\u001d\u0000\u0000\u00d8B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00da\u00e7\u0097\u00a8\u0006B\b\u001a\u0006JKTZ69" + }, + { + "type": "sin_recorrido", + "entity": "\n$9ecde173-5de2-4691-a3c6-422b982fa081\"/\u0012\u001d\r\u009b\u00f1\u0012\u00c2\u0015\u008e4\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00fd\u00de\u0097\u00a8\u0006B\b\u001a\u0006JSBB58" + }, + { + "type": "sin_recorrido", + "entity": "\n$1474f368-bbeb-43cc-ab9e-c994ce927d66\"/\u0012\u001d\r: \u0013\u00c2\u0015\u00b39\u0092\u00c2\u001d\u0000\u0000\u0094B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UU-A(\u00aa\u00e8\u0097\u00a8\u0006B\b\u001a\u0006RFSF88" + }, + { + "type": "sin_recorrido", + "entity": "\n$4c95ad46-99d3-4fbc-ab90-fb3330d71352\"/\u0012\u001d\r\u0000\u0014\u0013\u00c2\u0015]:\u0092\u00c2\u001d\u0000\u0000tC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0096\u00e5\u0097\u00a8\u0006B\b\u001a\u0006BDLT43" + }, + { + "type": "sin_recorrido", + "entity": "\n$e0cacf90-4fb8-4cd5-a81a-6ef1ff4d166a\"/\u0012\u001d\r\u00d8\u0013\u0013\u00c2\u0015\\:\u0092\u00c2\u001d\u0000\u0000@A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0092\u00e8\u0097\u00a8\u0006B\b\u001a\u0006XF4445" + }, + { + "type": "sin_recorrido", + "entity": "\n$69f5625a-aa24-4acb-ab0d-ea0c02b3e071\"/\u0012\u001d\r\u00e3,\u0013\u00c2\u0015\u00f9,\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009a\u008a\u0095\u00a8\u0006B\b\u001a\u0006YR1523" + }, + { + "type": "sin_recorrido", + "entity": "\n$4ccc4b0a-14dd-45a6-a83b-be43d8e55193\"/\u0012\u001d\r\u00ffK\u0013\u00c2\u0015\u008dB\u0092\u00c2\u001d\u0000\u0000SC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ba\u00e7\u0097\u00a8\u0006B\b\u001a\u0006JKYY10" + }, + { + "type": "sin_recorrido", + "entity": "\n$8389f15a-2e43-4524-8aff-d646492fbba7\"/\u0012\u001d\r\u00ca\u00da\u0012\u00c2\u0015m\u00f4\u0091\u00c2\u001d\u0000\u0000@C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00ab\u00aa\u0012A(\u00cc\u00e8\u0097\u00a8\u0006B\b\u001a\u0006LJKK94" + }, + { + "type": "sin_recorrido", + "entity": "\n$0b56f10d-a02e-4ed5-b1f8-4f80a188fd22\"/\u0012\u001d\r<\u00d8\u0012\u00c2\u0015\u00eb\u00f2\u0091\u00c2\u001d\u0000\u0000\u0007C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f6\u009e\u009a\u00a7\u0006B\b\u001a\u0006FXRZ49" + }, + { + "type": "sin_recorrido", + "entity": "\n$da99d0e9-e2b3-4c3c-b1d4-087d0305c3c8\"/\u0012\u001d\r\u007f\u00db\u0013\u00c2\u0015\u001a\u00d8\u0091\u00c2\u001d\u0000\u0000\u00acC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u008c\u0091\u00b4\u00a6\u0006B\b\u001a\u0006LRJF10" + }, + { + "type": "sin_recorrido", + "entity": "\n$81aa659b-fad2-4a24-a97b-c07689db1f9c\"/\u0012\u001d\rk:\u0013\u00c2\u0015o\u001a\u0092\u00c2\u001d\u0000\u0000\u000eC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a2\u0098\u0091\u00a8\u0006B\b\u001a\u0006JBXY19" + }, + { + "type": "sin_recorrido", + "entity": "\n$ffd795f1-6027-44af-9a4c-9f1383c15775\"/\u0012\u001d\ri,\u0013\u00c2\u0015\u00f4;\u0092\u00c2\u001d\u0000\u00000C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00be\u00b4\u0093\u00a8\u0006B\b\u001a\u0006BLLW65" + }, + { + "type": "sin_recorrido", + "entity": "\n$79c63404-fde1-47ae-a6e8-813c56ad5f57\"/\u0012\u001d\r1\u00cc\u0013\u00c2\u00151\u00dd\u0091\u00c2\u001d\u0000\u0000\bC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UU\u00d5?(\u00d1\u00b8\u0093\u00a8\u0006B\b\u001a\u0006CZZL73" + }, + { + "type": "sin_recorrido", + "entity": "\n$e7cf2fc3-0a65-451a-9abb-4b43e5f69fd9\"/\u0012\u001d\r\u00f8\u0013\u0013\u00c2\u0015U:\u0092\u00c2\u001d\u0000\u0000\u00a1C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a8\u009e\u008c\u00a8\u0006B\b\u001a\u0006HYYX38" + }, + { + "type": "sin_recorrido", + "entity": "\n$4547772f-e85f-4074-972b-618609033bc8\"/\u0012\u001d\r/\u00cc\u0013\u00c2\u0015%\u00dd\u0091\u00c2\u001d\u0000\u0000\u00acB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00e4\u00ed\u0093\u00a8\u0006B\b\u001a\u0006DCXX33" + }, + { + "type": "sin_recorrido", + "entity": "\n$744372a0-65b7-415b-8651-f40021ba1c78\"/\u0012\u001d\r8\u0011\u0013\u00c2\u0015':\u0092\u00c2\u001d\u0000\u0000\u00c4B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00de\u00af\u0093\u00a8\u0006B\b\u001a\u0006BVBG99" + }, + { + "type": "sin_recorrido", + "entity": "\n$38b7d0a4-5447-4c13-8b0c-64f5b2bb8e42\"/\u0012\u001d\r\u00cc\u001b\u0013\u00c2\u0015\u00b79\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u008a\u00e7\u0097\u00a8\u0006B\b\u001a\u0006CRGF19" + }, + { + "type": "sin_recorrido", + "entity": "\n$95d44f7c-a140-40b8-80ba-fbf343ded659\"/\u0012\u001d\r\u00f2\u00e4\u0013\u00c2\u0015o\u00da\u0091\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00be\u00d1\u00d8\u00a7\u0006B\b\u001a\u0006CHXX47" + }, + { + "type": "sin_recorrido", + "entity": "\n$064b1481-400f-45de-aa2e-f46bf68ece94\"/\u0012\u001d\r\u001d\u00d5\u0013\u00c2\u0015z\u0005\u0092\u00c2\u001d\u0000\u0000\u0017C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u008e?(\u00cd\u0092\u0092\u00a8\u0006B\b\u001a\u0006FCHP83" + }, + { + "type": "sin_recorrido", + "entity": "\n$52fb7ed5-4f8f-4bfe-a763-9c4c6d59853b\"/\u0012\u001d\r\u00da\u00cb\u0013\u00c2\u0015\u0004\u00dd\u0091\u00c2\u001d\u0000\u0000(B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c1\u00db\u0093\u00a8\u0006B\b\u001a\u0006FSRV92" + }, + { + "type": "sin_recorrido", + "entity": "\n$039cbcbb-54ac-4e51-9a36-e431ff791917\"/\u0012\u001d\r5\u00db\u0012\u00c2\u0015\u009e\u00f4\u0091\u00c2\u001d\u0000\u0000GC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b0\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HYHP90" + }, + { + "type": "sin_recorrido", + "entity": "\n$7b3a30e9-aa06-4827-ab66-8475ece01472\"/\u0012\u001d\r}\u0002\u0013\u00c2\u0015\u00e7/\u0092\u00c2\u001d\u0000\u0000\u0080C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00de\u00a0\u00de\u00a7\u0006B\b\u001a\u0006BJFL93" + }, + { + "type": "sin_recorrido", + "entity": "\n$859df95d-4b4d-434c-bb4b-ecd7ef35755c\"/\u0012\u001d\r\u00be-\u0013\u00c2\u0015}\u0017\u0092\u00c2\u001d\u0000\u0000@@!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00e1\u009a\u0093\u00a8\u0006B\b\u001a\u0006YA5779" + }, + { + "type": "sin_recorrido", + "entity": "\n$c6c64f30-2f54-4350-9030-3630a47a87ea\"/\u0012\u001d\r:=\u0013\u00c2\u0015\u00ae&\u0092\u00c2\u001d\u0000\u0000\u00f0B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000TB(\u00fd\u0085\u0093\u00a8\u0006B\b\u001a\u0006BLLW54" + }, + { + "type": "sin_recorrido", + "entity": "\n$4fe85acf-69b3-4244-a116-80d2ea36592b\"/\u0012\u001d\r\u00b1$\u0013\u00c2\u0015U8\u0092\u00c2\u001d\u0000\u0000\u00b3C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00dc\u00e3\u0097\u00a8\u0006B\b\u001a\u0006GLZD60" + }, + { + "type": "sin_recorrido", + "entity": "\n$78debfcb-e5b2-40f4-8a65-1d7f911ced05\"/\u0012\u001d\r\u0087\u00e8\u0012\u00c2\u00156\u00f9\u0091\u00c2\u001d\u0000\u0000\u0098A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u00f0@(\u00cc\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FRVC68" + }, + { + "type": "sin_recorrido", + "entity": "\n$c4d22d53-5028-4a8f-a43a-210df0a5c8e4\"/\u0012\u001d\r\u0080\u00fb\u0012\u00c2\u0015\u00e3+\u0092\u00c2\u001d\u0000\u0000\u00acB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f6\u00bb\u0093\u00a8\u0006B\b\u001a\u0006LTHR61" + }, + { + "type": "sin_recorrido", + "entity": "\n$c295bdee-94a4-4af2-a6f6-330b724271ac\"/\u0012\u001d\r\u0011\u001c\u0013\u00c2\u0015\u00a79\u0092\u00c2\u001d\u0000\u0000\u00acC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0080\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FXRL31" + }, + { + "type": "sin_recorrido", + "entity": "\n$054a9445-9c7f-4fdd-a95e-6504f804c68b\"/\u0012\u001d\rwR\u0013\u00c2\u0015H?\u0092\u00c2\u001d\u0000\u0000 A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u008e\u00c1\u008d\u00a8\u0006B\b\u001a\u0006DRTS90" + }, + { + "type": "sin_recorrido", + "entity": "\n$10990262-5357-4a5c-9286-1eb712cb2be1\"/\u0012\u001d\r\"\u001e\u0013\u00c2\u0015\u00af2\u0092\u00c2\u001d\u0000\u0000\u001cC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ec\u00a8\u0097\u00a8\u0006B\b\u001a\u0006FHDP28" + }, + { + "type": "sin_recorrido", + "entity": "\n$90c86390-bbd1-4683-a66e-6065d6d843d1\"/\u0012\u001d\r\u00a9-\u0013\u00c2\u0015w\u0017\u0092\u00c2\u001d\u0000\u0000\u00a2B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00e9\u0083\u00fe\u00a7\u0006B\b\u001a\u0006YE1782" + }, + { + "type": "sin_recorrido", + "entity": "\n$7b6c3969-94dc-42ae-b940-780b1328fcab\"/\u0012\u001d\r\u0089\u001d\u0013\u00c2\u0015\u00e62\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ae\u00e5\u00c2\u00a7\u0006B\b\u001a\u0006JXFY29" + }, + { + "type": "sin_recorrido", + "entity": "\n$1d85f4c3-c124-4790-bd1a-a5f13ce04106\"/\u0012\u001d\r?\u0011\u0013\u00c2\u0015\u00eb9\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ac\u00f0\u00cc\u00a7\u0006B\b\u001a\u0006YU1587" + }, + { + "type": "sin_recorrido", + "entity": "\n$e279da8a-dcef-43bf-99fb-fbddb5f5743e\"/\u0012\u001d\r\u00d9\u00df\u0012\u00c2\u0015\u00fb=\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b4\u0092\u0093\u00a8\u0006B\b\u001a\u0006ZR7384" + }, + { + "type": "sin_recorrido", + "entity": "\n$861f1d86-33b4-426b-b395-e97c21279c26\"/\u0012\u001d\r\u0013L\u0013\u00c2\u0015\u0088B\u0092\u00c2\u001d\u0000\u0000KC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c7\u00e8\u0087\u00a8\u0006B\b\u001a\u0006FTPC89" + }, + { + "type": "sin_recorrido", + "entity": "\n$cbb1752b-6a3f-4269-b317-8ae9924b7551\"/\u0012\u001d\r\u0006\u00e0\u0012\u00c2\u0015\u00ef=\u0092\u00c2\u001d\u0000\u0000^C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c0\u00ad\u0093\u00a8\u0006B\b\u001a\u0006FXRL59" + }, + { + "type": "sin_recorrido", + "entity": "\n$3691fe2b-644c-4a1b-a29d-c93386175126\"/\u0012\u001d\rz\u001d\u0013\u00c2\u0015\u00fa2\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u008c\u00a1\u0096\u00a8\u0006B\b\u001a\u0006TW8157" + }, + { + "type": "sin_recorrido", + "entity": "\n$5e76fdbf-7653-4b6c-a691-1846d8b7706e\"/\u0012\u001d\rD\u0011\u0013\u00c2\u0015\u00eb9\u0092\u00c2\u001d\u0000\u0000\u0000B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0086\u00e6\u0097\u00a8\u0006B\b\u001a\u0006WG9762" + }, + { + "type": "sin_recorrido", + "entity": "\n$4ec35611-6b2e-41c0-a965-c74413394ccc\"/\u0012\u001d\r\u0080\u00da\u0012\u00c2\u0015d\u00f4\u0091\u00c2\u001d\u0000\u0000\u0090A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f8\u00d9\u0093\u00a8\u0006B\b\u001a\u0006FLVZ61" + }, + { + "type": "sin_recorrido", + "entity": "\n$0ae3bce0-d5c3-48e9-9eef-c33935e1938d\"/\u0012\u001d\r73\u0013\u00c2\u0015\u00d5\u0019\u0092\u00c2\u001d\u0000\u0000\u008dC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0088\u00c9\u0093\u00a8\u0006B\b\u001a\u0006CDWP68" + }, + { + "type": "sin_recorrido", + "entity": "\n$199eb4a3-91d5-4be8-9e6d-f8c922ee798f\"/\u0012\u001d\r\u0095-\u0013\u00c2\u0015h\u0017\u0092\u00c2\u001d\u0000\u0000\u00afC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ee\u00a8\u0093\u00a8\u0006B\b\u001a\u0006FHDR27" + }, + { + "type": "sin_recorrido", + "entity": "\n$d4078b98-d09e-4b1f-9d8e-7bf8b7d65688\"/\u0012\u001d\r\u00d58\u0013\u00c2\u0015\u00b6\u0013\u0092\u00c2\u001d\u0000\u0000\u00e0B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000 @(\u00f2\u0091\u0097\u00a8\u0006B\b\u001a\u0006ZJ6338" + }, + { + "type": "sin_recorrido", + "entity": "\n$cabcc5f6-55b1-4ffe-8f87-c1bb9ebbac06\"/\u0012\u001d\r\u00f38\u0013\u00c2\u0015\u00a1\u0013\u0092\u00c2\u001d\u0000\u0000\u001cC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ec\u00a8\u0093\u00a8\u0006B\b\u001a\u0006ZV6534" + }, + { + "type": "sin_recorrido", + "entity": "\n$43a1c77d-02d4-49da-9b97-854f8cea310c\"/\u0012\u001d\r\u00eb8\u0013\u00c2\u0015\u009b\u0013\u0092\u00c2\u001d\u0000\u0000\u0094B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ab\u009d\u0093\u00a8\u0006B\b\u001a\u0006BKTP81" + }, + { + "type": "sin_recorrido", + "entity": "\n$04ef7780-fad7-46c8-ad17-91c4fbd2996e\"/\u0012\u001d\r\u00c0=\u0013\u00c2\u0015y\u0010\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a0\u00e6\u0097\u00a8\u0006B\b\u001a\u0006YH1687" + }, + { + "type": "sin_recorrido", + "entity": "\n$54f7968c-0a7f-4ec8-be9b-5d70deff41ee\"/\u0012\u001d\r\u00df8\u0013\u00c2\u0015\u00ba\u0013\u0092\u00c2\u001d\u0000\u0000\u00fcB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f7\u00e4\u0097\u00a8\u0006B\b\u001a\u0006DLJX56" + }, + { + "type": "sin_recorrido", + "entity": "\n$998601e8-03d1-4061-9a69-e2b23b3bff8c\"/\u0012\u001d\r\u0081:\u0013\u00c2\u0015\t\u000f\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00d8\u00d5\u0093\u00a8\u0006B\b\u001a\u0006JPWD30" + }, + { + "type": "sin_recorrido", + "entity": "\n$6356ec63-f11d-4f11-a7db-afc75ad8cfdd\"/\u0012\u001d\r+7\u0013\u00c2\u0015\u0087\r\u0092\u00c2\u001d\u0000\u0000$C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u008c\u0089\u0094\u00a8\u0006B\b\u001a\u0006JJJD44" + }, + { + "type": "sin_recorrido", + "entity": "\n$1e1d9256-c82f-45dc-bc6f-7b2406040f32\"/\u0012\u001d\r].\u0013\u00c2\u0015\u0002.\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u008a\u008a\u0097\u00a8\u0006B\b\u001a\u0006YG6361" + }, + { + "type": "sin_recorrido", + "entity": "\n$15fd77d6-ce09-4834-ad6e-3cb32f3559b9\"/\u0012\u001d\r\u008e2\u0013\u00c2\u0015\u0084\u0011\u0092\u00c2\u001d\u0000\u0000rC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a0\u0082\u0094\u00a8\u0006B\b\u001a\u0006WT7224" + }, + { + "type": "sin_recorrido", + "entity": "\n$27f481f7-530b-4ae8-9df2-63769c301973\"/\u0012\u001d\r\u0015\u001e\u0013\u00c2\u0015\u00c52\u0092\u00c2\u001d\u0000\u0080\u008dC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u008c\u00e3\u0097\u00a8\u0006B\b\u001a\u0006FXRS15" + }, + { + "type": "sin_recorrido", + "entity": "\n$f8142647-9f05-4579-bede-01f0733718b1\"/\u0012\u001d\r\u000bF\u0013\u00c2\u0015~\"\u0092\u00c2\u001d\u0000\u0000\u00b4B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0090\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FFVR31" + }, + { + "type": "sin_recorrido", + "entity": "\n$67ca6374-3eba-452b-8487-2a8050ee7ce1\"/\u0012\u001d\r\u00fb\u0013\u0013\u00c2\u0015W:\u0092\u00c2\u001d\u0000\u0000\u009dC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f4\u00f2\u008d\u00a8\u0006B\b\u001a\u0006WE9170" + }, + { + "type": "sin_recorrido", + "entity": "\n$06b06cc9-ed37-43e7-898e-8f1efe13c1f4\"/\u0012\u001d\re\u001d\u0013\u00c2\u0015\u00c62\u0092\u00c2\u001d\u0000\u0000FC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b0\u00e5\u0097\u00a8\u0006B\b\u001a\u0006JGYB33" + }, + { + "type": "sin_recorrido", + "entity": "\n$3e604404-a092-42b1-af68-b4b70d4e11aa\"/\u0012\u001d\r\u00bb-\u0013\u00c2\u0015\u00a4\u0017\u0092\u00c2\u001d\u0000\u0000\u0083C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00d4\u00e0\u0096\u00a8\u0006B\b\u001a\u0006DTCF89" + }, + { + "type": "sin_recorrido", + "entity": "\n$6570bf89-22fb-4658-b6b1-24d18312e207\"/\u0012\u001d\r\u00e5\u00c3\u0013\u00c2\u0015\u00dd\r\u0092\u00c2\u001d\u0000\u0000\u00a3C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009e\u00d3\u0089\u00a8\u0006B\b\u001a\u0006FFBT96" + }, + { + "type": "sin_recorrido", + "entity": "\n$1d47db63-17b1-4b11-ba9f-36531519824a\"/\u0012\u001d\r?_\u0013\u00c2\u0015\u00e0\u0004\u0092\u00c2\u001d\u0000\u0000\u0080C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0080\u00e7\u0097\u00a8\u0006B\b\u001a\u0006HWHK90" + }, + { + "type": "sin_recorrido", + "entity": "\n$6ece4f50-6fb2-4fe3-add2-a24f3bec9aa9\"/\u0012\u001d\r.\u00e2\u0012\u00c2\u0015\u000bI\u0092\u00c2\u001d\u0000\u0000\u00b0A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b0\u00a6\u0097\u00a8\u0006B\b\u001a\u0006DRTK88" + }, + { + "type": "sin_recorrido", + "entity": "\n$2f12a63e-ae04-4d36-a058-ae020d908e6c\"/\u0012\u001d\r4\u0013\u0013\u00c2\u0015T:\u0092\u00c2\u001d\u0000\u0000\u00abC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b6\u00e4\u0097\u00a8\u0006B\b\u001a\u0006JWXT11" + }, + { + "type": "sin_recorrido", + "entity": "\n$64fe14f0-a9bc-4c5b-8d4f-062556ae6f55\"/\u0012\u001d\rk(\u0013\u00c2\u0015V(\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a0\u00e6\u0097\u00a8\u0006B\b\u001a\u0006HSPJ76" + }, + { + "type": "sin_recorrido", + "entity": "\n$fc5fe03e-0530-4fc6-911c-2bfeb955500d\"/\u0012\u001d\r,3\u0013\u00c2\u0015\u00e3\u0019\u0092\u00c2\u001d\u0000\u0000\u008eC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00d0\u00f1\u0093\u00a8\u0006B\b\u001a\u0006BKFG52" + }, + { + "type": "sin_recorrido", + "entity": "\n$0d816fec-93fd-4296-a80a-1ae98177efbd\"/\u0012\u001d\r;\u00e5\u0013\u00c2\u0015\u009e\u00da\u0091\u00c2\u001d\u0000\u0000\u008eC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ca\u00e6\u0097\u00a8\u0006B\b\u001a\u0006CJVF87" + }, + { + "type": "sin_recorrido", + "entity": "\n$7927e664-e0b9-4cbb-9901-cafe957ca73a\"/\u0012\u001d\rc\u00dc\u0013\u00c2\u0015\u0000\u00df\u0091\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a7\u00e6\u0097\u00a8\u0006B\b\u001a\u0006DHTZ43" + }, + { + "type": "sin_recorrido", + "entity": "\n$13d435dd-d414-4f20-8f57-cb98462b0a83\"/\u0012\u001d\r[-\u0013\u00c2\u0015\u00a3\u0017\u0092\u00c2\u001d\u0000\u0000BC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u008e\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HYCZ75" + }, + { + "type": "sin_recorrido", + "entity": "\n$eb0dbe80-4493-4ffe-9a3f-d83dd3dac5b8\"/\u0012\u001d\rT\u00be\u0013\u00c2\u0015\u00c3\u0006\u0092\u00c2\u001d\u0000\u0000\u0080B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a0\u00e7\u0097\u00a8\u0006B\b\u001a\u0006FLDG65" + }, + { + "type": "sin_recorrido", + "entity": "\n$0d4b5798-029a-4d0a-b1f8-113f6f6a10b1\"/\u0012\u001d\rw\u00e4\u0013\u00c2\u0015}\u00da\u0091\u00c2\u001d\u0000\u0080\u0083C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u000e?(\u00f3\u00a7\u0093\u00a8\u0006B\b\u001a\u0006HFLR38" + }, + { + "type": "sin_recorrido", + "entity": "\n$615cf9a4-03d5-4103-8928-de26fb90eb4e\"/\u0012\u001d\r2\u00dc\u0012\u00c2\u0015\u00c0\u00f4\u0091\u00c2\u001d\u0000\u0000HC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ec\u00e5\u0097\u00a8\u0006B\b\u001a\u0006HVLT91" + }, + { + "type": "sin_recorrido", + "entity": "\n$f94caef0-3f98-4d66-ade7-a59e242b8282\"/\u0012\u001d\r=-\u0013\u00c2\u0015g\u0017\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c0\u00e8\u0097\u00a8\u0006B\b\u001a\u0006JJJD24" + }, + { + "type": "sin_recorrido", + "entity": "\n$a309f682-2a51-4b20-b7ac-d00c00995d19\"/\u0012\u001d\rI'\u0013\u00c2\u0015\u00923\u0092\u00c2\u001d\u0000\u0080\u0093C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f5\u0084\u0097\u00a8\u0006B\b\u001a\u0006CFWC94" + }, + { + "type": "sin_recorrido", + "entity": "\n$915b4d0c-4d5a-456f-9761-1378d783b24d\"/\u0012\u001d\r\u00f8\u00e4\u0013\u00c2\u0015\u0089\u00da\u0091\u00c2\u001d\u0000\u0000\u00eaB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b2\u00e4\u0097\u00a8\u0006B\b\u001a\u0006GYGJ28" + }, + { + "type": "sin_recorrido", + "entity": "\n$a3146647-98d8-4e9d-9195-4780b5e7eb2f\"/\u0012\u001d\r?_\u0013\u00c2\u0015\t\u0005\u0092\u00c2\u001d\u0000\u00006C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b2\u00e6\u0097\u00a8\u0006B\b\u001a\u0006DDFB28" + }, + { + "type": "sin_recorrido", + "entity": "\n$97576001-6ad8-4f83-b44d-2789094b4f25\"/\u0012\u001d\r\u0082\u00cb\u0013\u00c2\u0015\b\u0006\u0092\u00c2\u001d\u0000\u0000\u0000@!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u008e?(\u00e5\u008a\u0097\u00a8\u0006B\b\u001a\u0006DPGK78" + }, + { + "type": "sin_recorrido", + "entity": "\n$7869c912-62da-494a-b62c-c578207084c1\"/\u0012\u001d\rp\u00d6\u0012\u00c2\u0015xG\u0092\u00c2\u001d\u0000\u0000\u0080B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00fe\u00b3\u0093\u00a8\u0006B\b\u001a\u0006WC2556" + }, + { + "type": "sin_recorrido", + "entity": "\n$e8ee2b8b-7db6-4dea-83b7-f09fdbd0b298\"/\u0012\u001d\r\u000f_\u0013\u00c2\u0015\u00df\u0004\u0092\u00c2\u001d\u0000\u0000\u00a0A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ca\u00b3\u0097\u00a8\u0006B\b\u001a\u0006HYYX49" + }, + { + "type": "sin_recorrido", + "entity": "\n$e130472c-c3a3-4ad2-88b3-89d53e43e264\"/\u0012\u001d\r\\;\u0013\u00c2\u0015\u001e#\u0092\u00c2\u001d\u0000\u0000\u009aC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00ab\u00aa\u0012A(\u009e\u00e8\u0097\u00a8\u0006B\b\u001a\u0006BLYR50" + }, + { + "type": "sin_recorrido", + "entity": "\n$b5a5d891-0b75-430c-9b22-8e921adbbd8f\"/\u0012\u001d\r\u0096\u00d7\u0012\u00c2\u0015!J\u0092\u00c2\u001d\u0000\u0000\u008cC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00e2\u00ae\u0093\u00a8\u0006B\b\u001a\u0006JZYF47" + }, + { + "type": "sin_recorrido", + "entity": "\n$007f660c-5bc3-4904-b0f4-148edf9a483f\"/\u0012\u001d\r\u009a(\u0013\u00c2\u0015b(\u0092\u00c2\u001d\u0000\u0000\u00a0A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b8\u00c0\u0093\u00a8\u0006B\b\u001a\u0006JSBC90" + }, + { + "type": "sin_recorrido", + "entity": "\n$c3caebe2-ae60-49cd-840c-2ed7b4e249a3\"/\u0012\u001d\r\u00eb^\u0013\u00c2\u0015\u0002\u0005\u0092\u00c2\u001d\u0000\u0000\u008fC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009c\u0097\u0097\u00a8\u0006B\b\u001a\u0006CFZD34" + }, + { + "type": "sin_recorrido", + "entity": "\n$dd639815-cc89-482d-b09a-ef7ee1785b5c\"/\u0012\u001d\r+\u00fd\u0012\u00c2\u0015\u00c7-\u0092\u00c2\u001d\u0000\u0000HC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00fa\u0086\u0097\u00a8\u0006B\b\u001a\u0006LCCH59" + }, + { + "type": "sin_recorrido", + "entity": "\n$d2965af3-587e-49be-aeec-007fb506eb2d\"/\u0012\u001d\r\u00c7(\u0013\u00c2\u0015\u0081(\u0092\u00c2\u001d\u0000\u0000~C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00cc\u00e4\u0097\u00a8\u0006B\b\u001a\u0006GZPF58" + }, + { + "type": "sin_recorrido", + "entity": "\n$48872e08-1c10-465d-a5be-5848be908a62\"/\u0012\u001d\rM_\u0013\u00c2\u0015\u00e3\u0004\u0092\u00c2\u001d\u0000\u0000\u0084C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00d8\u00e6\u0097\u00a8\u0006B\b\u001a\u0006HKWG94" + }, + { + "type": "sin_recorrido", + "entity": "\n$4f3fda8a-333a-4f11-9ec2-6296609d6ead\"/\u0012\u001d\r\u00cd\u00b6\u0013\u00c2\u0015k\t\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c1\u008c\u0097\u00a8\u0006B\b\u001a\u0006FFCC61" + }, + { + "type": "sin_recorrido", + "entity": "\n$9e2ff753-ed1b-4618-bc85-80b17fe2fca9\"/\u0012\u001d\r@\u00c4\u0013\u00c2\u0015\u00d9\u0007\u0092\u00c2\u001d\u0000\u0000\u001aC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009a\u00e8\u0097\u00a8\u0006B\b\u001a\u0006WR4056" + }, + { + "type": "sin_recorrido", + "entity": "\n$52c6d5da-0015-4056-b222-956bd900626c\"/\u0012\u001d\r\u00cd\u00ad\u0013\u00c2\u0015\u009e\f\u0092\u00c2\u001d\u0000\u0080\u00a6C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0087\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HFLR39" + }, + { + "type": "sin_recorrido", + "entity": "\n$1341105c-fed9-471f-86d9-afe4ce5fd06b\"/\u0012\u001d\r\u00fc\u00a7\u0013\u00c2\u0015\u0086\f\u0092\u00c2\u001d\u0000\u0080\u0088C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009f\u008c\u0094\u00a8\u0006B\b\u001a\u0006DKYR64" + }, + { + "type": "sin_recorrido", + "entity": "\n$dc9ea0ab-7e68-4f0e-abfb-b01b74442343\"/\u0012\u001d\r}\u00cb\u0013\u00c2\u0015\u0004\u0006\u0092\u00c2\u001d\u0000\u0000dB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UU\u00d5?(\u0084\u00b6\u0093\u00a8\u0006B\b\u001a\u0006DBXV69" + }, + { + "type": "sin_recorrido", + "entity": "\n$6eec68de-cf7d-4692-97a1-64899170d5bb\"/\u0012\u001d\r!_\u0013\u00c2\u0015%\u0005\u0092\u00c2\u001d\u0000\u0000\u00a4C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00d0\u00f5\u008b\u00a8\u0006B\b\u001a\u0006FYBC41" + }, + { + "type": "sin_recorrido", + "entity": "\n$c7d11308-fdde-4b6e-9a21-1b2c8e40d576\"/\u0012\u001d\r\u009d\u00ba\u0013\u00c2\u0015\u00f9\f\u0092\u00c2\u001d\u0000\u0080\u0096C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u000e@(\u00b4\u008b\u0094\u00a8\u0006B\b\u001a\u0006CXLW89" + }, + { + "type": "sin_recorrido", + "entity": "\n$e0985350-2f77-430d-bbb6-4acb92966a8c\"/\u0012\u001d\r\u0088\u00cb\u0013\u00c2\u0015\u0001\u0006\u0092\u00c2\u001d\u0000\u0000\u008eC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ba\u00e6\u0097\u00a8\u0006B\b\u001a\u0006HYYX18" + }, + { + "type": "sin_recorrido", + "entity": "\n$5536ab73-b062-403d-b4c8-574b9cc93af3\"/\u0012\u001d\r\u00f6\u0002\u0013\u00c2\u0015\u00cb7\u0092\u00c2\u001d\u0000\u0000\u00d0B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00e8\u00b3\u0091\u00a8\u0006B\b\u001a\u0006FYDV51" + }, + { + "type": "sin_recorrido", + "entity": "\n$c890d07a-3ae0-44cf-a5db-6d2035293887\"/\u0012\u001d\r:\u00e4\u0013\u00c2\u0015\u0080\u00da\u0091\u00c2\u001d\u0000\u0000\u00c0A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UU\u00d5?(\u0084\u0081\u0097\u00a8\u0006B\b\u001a\u0006GJLW52" + }, + { + "type": "sin_recorrido", + "entity": "\n$db7a9db2-19ee-413e-9be3-5115a2593856\"/\u0012\u001d\r\u00dd\u00d9\u0013\u00c2\u0015>\u00dd\u0091\u00c2\u001d\u0000\u00008B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u00f0@(\u00cc\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HYHP59" + }, + { + "type": "sin_recorrido", + "entity": "\n$a3287553-3d57-499f-8d9c-741fb7b4943d\"/\u0012\u001d\rr\u0017\u0013\u00c2\u0015j.\u0092\u00c2\u001d\u0000\u0000@@!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c8\u00bd\u0093\u00a8\u0006B\b\u001a\u0006GLDB89" + }, + { + "type": "sin_recorrido", + "entity": "\n$8cbcbebe-ea13-4625-8add-71fd3ea7460d\"/\u0012\u001d\r\u00d9\u00e4\u0013\u00c2\u0015f\u00da\u0091\u00c2\u001d\u0000\u0000\u00c0A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u001c\u00c71@(\u00fe\u00c0\u0093\u00a8\u0006B\b\u001a\u0006FPYX34" + }, + { + "type": "sin_recorrido", + "entity": "\n$ac903df6-6eb7-43a5-aa90-280ac0fea0e1\"/\u0012\u001d\r!\u0019\u0013\u00c2\u0015\u001f\f\u0092\u00c2\u001d\u0000\u0000xB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c0\u00e5\u0096\u00a8\u0006B\b\u001a\u0006FGDF53" + }, + { + "type": "sin_recorrido", + "entity": "\n$b280bcec-dd66-4762-bd0f-db8e4438018b\"/\u0012\u001d\r\u0087R\u0013\u00c2\u0015C?\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0082\u00d8\u0092\u00a8\u0006B\b\u001a\u0006FTPC88" + }, + { + "type": "sin_recorrido", + "entity": "\n$e8afc77b-548c-48b6-8282-c806dbe84674\"/\u0012\u001d\r\u0082T\u0013\u00c2\u0015Y\u0002\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a8\u00ce\u00a4\u00a7\u0006B\b\u001a\u0006BKXV50" + }, + { + "type": "sin_recorrido", + "entity": "\n$1e2f9bb6-c998-426c-8d09-b13772029025\"/\u0012\u001d\r\u00ae\u00c4\u0013\u00c2\u0015\u00bf\b\u0092\u00c2\u001d\u0000\u0000rC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00be\u009d\u0097\u00a8\u0006B\b\u001a\u0006FPHX87" + }, + { + "type": "sin_recorrido", + "entity": "\n$7b4f83dd-7c58-43e4-9fed-0454d9aabc0f\"/\u0012\u001d\r\u00a4R\u0013\u00c2\u0015l?\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f2\u0090\u0097\u00a8\u0006B\b\u001a\u0006DRTS93" + }, + { + "type": "sin_recorrido", + "entity": "\n$df3e17f8-70cf-4803-bc5e-635168c70d57\"/\u0012\u001d\r\u00a3(\u0013\u00c2\u0015Z(\u0092\u00c2\u001d\u0000\u0000\u00b0C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a4\u00a7\u0091\u00a8\u0006B\b\u001a\u0006ZP1890" + }, + { + "type": "sin_recorrido", + "entity": "\n$522a9470-85bd-49ec-b125-9848ae5f269c\"/\u0012\u001d\r'\u001e\u0013\u00c2\u0015\u00f32\u0092\u00c2\u001d\u0000\u0000\u00f4B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00dc\u00b3\u0096\u00a8\u0006B\b\u001a\u0006DJTS15" + }, + { + "type": "sin_recorrido", + "entity": "\n$a7ffd3de-081c-4a50-a8b1-d8f7e06ad9be\"/\u0012\u001d\r\u00fe8\u0013\u00c2\u0015\u00a0\u0013\u0092\u00c2\u001d\u0000\u00000A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b5\u0085\u0097\u00a8\u0006B\b\u001a\u0006CDGG94" + }, + { + "type": "sin_recorrido", + "entity": "\n$0a3e857e-1ce6-4de6-a3d9-7d26d46ee932\"/\u0012\u001d\r\u0019\u0016\u0013\u00c2\u0015D,\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b6\u00f2\u0096\u00a8\u0006B\b\u001a\u0006JSBB39" + }, + { + "type": "sin_recorrido", + "entity": "\n$ccce4dce-f250-4b9f-a9ed-711db0510e3b\"/\u0012\u001d\r\u00da3\u0013\u00c2\u0015\u00de2\u0092\u00c2\u001d\u0000\u0000XC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UUU?(\u0088\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DRFL61" + }, + { + "type": "sin_recorrido", + "entity": "\n$046ea81c-9d29-41c8-ae6e-94aeeb7fc831\"/\u0012\u001d\r6_\u0013\u00c2\u0015\u00db\u0004\u0092\u00c2\u001d\u0000\u00000C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009a\u00a0\u0093\u00a8\u0006B\b\u001a\u0006YR1526" + }, + { + "type": "sin_recorrido", + "entity": "\n$2d70e19a-1070-4608-afa4-e07903de28ef\"/\u0012\u001d\r\u00b8\u00e4\u0013\u00c2\u0015p\u00da\u0091\u00c2\u001d\u0000\u0000@A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c7\u00e6\u0097\u00a8\u0006B\b\u001a\u0006DLDW43" + }, + { + "type": "sin_recorrido", + "entity": "\n$aaf39940-4f32-421a-87c2-1b2a6b577ec0\"/\u0012\u001d\rP_\u0013\u00c2\u0015\u00f8\u0004\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00fa\u00b3\u0091\u00a8\u0006B\b\u001a\u0006DBHL18" + }, + { + "type": "sin_recorrido", + "entity": "\n$9de81ea6-7dcf-4cec-9a48-e1da349465fe\"/\u0012\u001d\r\u0002_\u0013\u00c2\u0015\r\u0005\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0088\u00b9\u0091\u00a8\u0006B\b\u001a\u0006GRWD85" + }, + { + "type": "sin_recorrido", + "entity": "\n$a7ff5181-b228-4f71-b45d-c7a9e0b10b1f\"/\u0012\u001d\r\u00cc\u0089\u0013\u00c2\u0015C\u0013\u0092\u00c2\u001d\u0000\u0000.C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008e\u00e3\u0094A(\u00b0\u00e8\u0097\u00a8\u0006B\b\u001a\u0006UW8145" + }, + { + "type": "sin_recorrido", + "entity": "\n$21a1404d-347d-4ebc-8d58-d7e97e8652bb\"/\u0012\u001d\r(:\u0013\u00c2\u0015U\u001a\u0092\u00c2\u001d\u0000\u0000rC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u008c\u00b3\u0097\u00a8\u0006B\b\u001a\u0006HZHG85" + }, + { + "type": "sin_recorrido", + "entity": "\n$0b1c5178-88e4-49f1-aef2-21754c820a90\"/\u0012\u001d\rZi\u0013\u00c2\u0015\nD\u0092\u00c2\u001d\u0000\u0000DC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008e\u00e3\u00f8@(\u00aa\u00e8\u0097\u00a8\u0006B\b\u001a\u0006JSBB22" + }, + { + "type": "sin_recorrido", + "entity": "\n$ba2f8ae3-d48e-45fc-847e-41c45a56de9e\"/\u0012\u001d\r\u00bdO\u0013\u00c2\u0015\u00a1K\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0082\u00e5\u0097\u00a8\u0006B\b\u001a\u0006ZY3567" + }, + { + "type": "sin_recorrido", + "entity": "\n$ddfb9840-ff36-4a03-8a70-db9373a8ce8b\"/\u0012\u001d\r\u00b6,\u0013\u00c2\u0015u\f\u0092\u00c2\u001d\u0000\u0000\u009eB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c4\u00e7\u0097\u00a8\u0006B\b\u001a\u0006FTBB80" + }, + { + "type": "sin_recorrido", + "entity": "\n$16c072e1-b88b-4542-a62a-1fb1f3fa2278\"/\u0012\u001d\roU\u0013\u00c2\u0015\u00a4K\u0092\u00c2\u001d\u0000\u0000\u00beB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009a\u00e7\u0097\u00a8\u0006B\b\u001a\u0006FDCG86" + }, + { + "type": "sin_recorrido", + "entity": "\n$ac88e0fe-15f5-4bd3-bc9b-ad4cfd7fd68c\"/\u0012\u001d\r\u00efP\u0013\u00c2\u0015\u00bcK\u0092\u00c2\u001d\u0000\u0000 C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a2\u00eb\u0096\u00a8\u0006B\b\u001a\u0006WK9937" + }, + { + "type": "sin_recorrido", + "entity": "\n$76ed5738-0a1c-4192-96e0-797aec9d61ab\"/\u0012\u001d\r\u00caP\u0013\u00c2\u0015\u00a8K\u0092\u00c2\u001d\u0000\u0000\u00a2B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00be\u00d3\u0097\u00a8\u0006B\b\u001a\u0006HYZB31" + }, + { + "type": "sin_recorrido", + "entity": "\n$951612b4-df65-46a4-a71f-b480a74f6346\"/\u0012\u001d\rP.\u0013\u00c2\u0015&,\u0092\u00c2\u001d\u0000\u0080\u0087C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u000e?(\u00fd\u00a3\u0097\u00a8\u0006B\b\u001a\u0006FFZZ68" + }, + { + "type": "sin_recorrido", + "entity": "\n$018aca5b-c022-4123-983a-52c1d8cf76f2\"/\u0012\u001d\rA\u00e0\u0012\u00c2\u0015\u00df=\u0092\u00c2\u001d\u0000\u0000\u0019C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0081\u00b9\u0092\u00a8\u0006B\b\u001a\u0006XY6939" + }, + { + "type": "sin_recorrido", + "entity": "\n$8ae25a4c-744a-4323-86e1-7f90545b49aa\"/\u0012\u001d\r=\u00e4\u0013\u00c2\u0015\u0082\u00da\u0091\u00c2\u001d\u0000\u0000yC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UUU?(\u00b7\u008d\u0094\u00a8\u0006B\b\u001a\u0006HDBZ78" + }, + { + "type": "sin_recorrido", + "entity": "\n$bc00a0bc-64e7-4af8-b7b6-d695d7cc2477\"/\u0012\u001d\r\u0082\u00c8\u0013\u00c2\u0015n\b\u0092\u00c2\u001d\u0000\u0000\u001eC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c4\u00bc\u008e\u00a8\u0006B\b\u001a\u0006DVYS10" + }, + { + "type": "sin_recorrido", + "entity": "\n$4bc88f53-ccf2-49cb-bcfd-e2febb4b474e\"/\u0012\u001d\rU\u00e2\u0013\u00c2\u0015\u00b1\u00e1\u0091\u00c2\u001d\u0000\u0000\u0092C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0081\u00e8\u0097\u00a8\u0006B\b\u001a\u0006GSRS43" + }, + { + "type": "sin_recorrido", + "entity": "\n$2721d4dd-b18d-4dfa-b2cf-be610d1cd34d\"/\u0012\u001d\r\u00fa\u00d4\u0013\u00c2\u0015~\u0005\u0092\u00c2\u001d\u0000\u00000C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ae\u00be\u0097\u00a8\u0006B\b\u001a\u0006JXFY79" + }, + { + "type": "sin_recorrido", + "entity": "\n$0ab46b8e-0706-4faf-bc05-de08e5088596\"/\u0012\u001d\r\u00e9\u00d4\u0013\u00c2\u0015c\u0005\u0092\u00c2\u001d\u0000\u0000\u008eC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0098\u008b\u0094\u00a8\u0006B\b\u001a\u0006JHHJ90" + }, + { + "type": "sin_recorrido", + "entity": "\n$66b98987-9a1e-43e1-b485-3ba5a86679f3\"/\u0012\u001d\r\u00ad\u0019\u0013\u00c2\u0015\u00b5,\u0092\u00c2\u001d\u0000\u0000\u0085C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a2\u00ee\u0093\u00a8\u0006B\b\u001a\u0006RJWZ86" + }, + { + "type": "sin_recorrido", + "entity": "\n$a4c4a7fc-65e0-4862-b595-c99cef0d11b5\"/\u0012\u001d\r\u00a50\u0013\u00c2\u0015\u00e8\u0018\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00bd\u00d9\u0097\u00a8\u0006B\b\u001a\u0006CXLF12" + }, + { + "type": "sin_recorrido", + "entity": "\n$2f49c0e2-1fea-4738-8c77-c9bc38e0a300\"/\u0012\u001d\r\u00cf-\u0013\u00c2\u0015v\u0017\u0092\u00c2\u001d\u0000\u0000>C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UU\u00d5?(\u00eb\u00db\u008d\u00a8\u0006B\b\u001a\u0006YE1784" + }, + { + "type": "sin_recorrido", + "entity": "\n$53451c10-b977-43d5-b5d8-49fa2215ce7b\"/\u0012\u001d\r\u007f-\u0013\u00c2\u0015O\u0017\u0092\u00c2\u001d\u0000\u0000PC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UUU@(\u00f2\u0081\u0093\u00a8\u0006B\b\u001a\u0006BZPH33" + }, + { + "type": "sin_recorrido", + "entity": "\n$085fd450-b1e9-4a28-9d1f-d5ed28be53c0\"/\u0012\u001d\r\u008f(\u0013\u00c2\u0015n(\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00e2\u008c\u0097\u00a8\u0006B\b\u001a\u0006FXRL34" + }, + { + "type": "sin_recorrido", + "entity": "\n$133c0be7-3362-4e1b-8936-c00a8a9f0592\"/\u0012\u001d\r\u009f(\u0013\u00c2\u0015Y(\u0092\u00c2\u001d\u0000\u0000@A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0086\u00ce\u0093\u00a8\u0006B\b\u001a\u0006RFSF84" + }, + { + "type": "sin_recorrido", + "entity": "\n$86128e48-9e3a-4b04-8fa9-522f22ecc960\"/\u0012\u001d\r\u00d6(\u0013\u00c2\u0015N(\u0092\u00c2\u001d\u0000\u0000*C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f0\u00e0\u0093\u00a8\u0006B\b\u001a\u0006LRJX48" + }, + { + "type": "sin_recorrido", + "entity": "\n$e54da266-10f8-4e35-b72f-15f5c1708678\"/\u0012\u001d\r\u00d1(\u0013\u00c2\u0015O(\u0092\u00c2\u001d\u0000\u0000\u00b0A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009e\u00d2\u0093\u00a8\u0006B\b\u001a\u0006FYBD64" + }, + { + "type": "sin_recorrido", + "entity": "\n$7390cde2-e8f8-4d06-bf4f-a4b56f7cb5ba\"/\u0012\u001d\r\u00c4(\u0013\u00c2\u0015a(\u0092\u00c2\u001d\u0000\u0000\u00a0C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0086\u00e5\u0097\u00a8\u0006B\b\u001a\u0006CXPR28" + }, + { + "type": "sin_recorrido", + "entity": "\n$73b6a552-16ce-4da8-bae8-a322d604854f\"/\u0012\u001d\r\u00e16\u0013\u00c2\u0015\u00aa\u0016\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ca\u00dc\u0091\u00a8\u0006B\b\u001a\u0006FXJV68" + }, + { + "type": "sin_recorrido", + "entity": "\n$69f270fa-8eea-4e56-a7df-3aed67958e42\"/\u0012\u001d\r\u00edP\u0013\u00c2\u0015\u00b4K\u0092\u00c2\u001d\u0000\u0000.C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00fe\u00e4\u0097\u00a8\u0006B\b\u001a\u0006LJKK69" + }, + { + "type": "sin_recorrido", + "entity": "\n$062bb761-d9d1-4214-8d48-78f7ef450f6f\"/\u0012\u001d\r\u0003\u00e6\u0012\u00c2\u0015\u00a7\u00f9\u0091\u00c2\u001d\u0000\u0000\u0096C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0088\u00c7\u0097\u00a8\u0006B\b\u001a\u0006FXJV67" + }, + { + "type": "sin_recorrido", + "entity": "\n$12b9e65a-2a20-47bc-8500-9bf61683dbe8\"/\u0012\u001d\r\u00a9\u00d7\u0012\u00c2\u0015\u00edI\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0094\u00f1\u0096\u00a8\u0006B\b\u001a\u0006YS1136" + }, + { + "type": "sin_recorrido", + "entity": "\n$320af8b8-2d0d-4ae1-9f31-b5d733d1d4a5\"/\u0012\u001d\r^:\u0013\u00c2\u0015T\u001a\u0092\u00c2\u001d\u0000\u0000lC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ee\u00a0\u0092\u00a8\u0006B\b\u001a\u0006FXRL36" + }, + { + "type": "sin_recorrido", + "entity": "\n$c6b4759d-1519-4802-b599-db9162fa6dce\"/\u0012\u001d\rx\u001f\u0013\u00c2\u0015\u00c97\u0092\u00c2\u001d\u0000\u0000~C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u001c\u00c7\u00b1?(\u00b2\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HRBZ32" + }, + { + "type": "sin_recorrido", + "entity": "\n$58026ef8-017d-426d-bc5d-c00a20a12b7a\"/\u0012\u001d\r\u00e5\u00dc\u0012\u00c2\u0015\u00f4\u00f4\u0091\u00c2\u001d\u0000\u0000\u0090A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b3\u00f8\u0081\u00a8\u0006B\b\u001a\u0006BHVB23" + }, + { + "type": "sin_recorrido", + "entity": "\n$b9733c71-8877-4ae1-b65c-c83aa2d641f4\"/\u0012\u001d\r,.\u0013\u00c2\u0015\u00fa6\u0092\u00c2\u001d\u0000\u0000\u00abC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0084\u00b7\u0093\u00a8\u0006B\b\u001a\u0006FXRZ75" + }, + { + "type": "sin_recorrido", + "entity": "\n$483d7e86-5c87-4cd4-84c0-383b5b3ad4d2\"/\u0012\u001d\r\u00bcK\u0013\u00c2\u0015\u00c4\u001c\u0092\u00c2\u001d\u0000\u0000\u00a7C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b6\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HYYX56" + }, + { + "type": "sin_recorrido", + "entity": "\n$e28ae597-0bba-48ab-912c-357c17c2e180\"/\u0012\u001d\r\u00e4\u0013\u0013\u00c2\u0015A:\u0092\u00c2\u001d\u0000\u0000>C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c6\u00cc\u0096\u00a8\u0006B\b\u001a\u0006DRTS62" + }, + { + "type": "sin_recorrido", + "entity": "\n$70f7d3cf-2d51-46ca-b6e4-ada861c4e186\"/\u0012\u001d\r\u00ee\u001b\u0013\u00c2\u0015\u00169\u0092\u00c2\u001d\u0000\u0000\u00d4B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b8\u00e8\u0097\u00a8\u0006B\b\u001a\u0006GKGT94" + }, + { + "type": "sin_recorrido", + "entity": "\n$8d5006ea-c308-47b8-b062-6cc2848f60f4\"/\u0012\u001d\r\u0012\u001e\u0013\u00c2\u0015\u00b52\u0092\u00c2\u001d\u0000\u0000\u00e2B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c0\u0091\u0097\u00a8\u0006B\b\u001a\u0006HVXY10" + }, + { + "type": "sin_recorrido", + "entity": "\n$c1cd8ce9-6d86-4321-a9c8-95b94be2d8f2\"/\u0012\u001d\r\u00f4\u0013\u0013\u00c2\u0015':\u0092\u00c2\u001d\u0000\u0000`B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u008e\u008f\u008e\u00a8\u0006B\b\u001a\u0006BBGR90" + }, + { + "type": "sin_recorrido", + "entity": "\n$df811357-3072-4719-9c0a-b270047bd2bd\"/\u0012\u001d\r\u00e7\u0013\u0013\u00c2\u0015.:\u0092\u00c2\u001d\u0000\u0000\u00dcB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c2\u00c2\u0097\u00a8\u0006B\b\u001a\u0006HKRJ92" + }, + { + "type": "sin_recorrido", + "entity": "\n$c7588801-53ea-4eae-bee6-4f5082d29fe0\"/\u0012\u001d\r\u008d\u0013\u0013\u00c2\u0015I:\u0092\u00c2\u001d\u0000\u0000\u00d8B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b2\u00c6\u0097\u00a8\u0006B\b\u001a\u0006BFVR84" + }, + { + "type": "sin_recorrido", + "entity": "\n$038f4c9a-6491-4a86-99fd-a51ed0447efe\"/\u0012\u001d\rIL\u0013\u00c2\u0015\u00abB\u0092\u00c2\u001d\u0000\u0000xB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ca\u0083\u008f\u00a8\u0006B\b\u001a\u0006HRPG11" + }, + { + "type": "sin_recorrido", + "entity": "\n$eb4f5c9f-740e-4074-8f16-389b5f15270c\"/\u0012\u001d\r\u000f\u0014\u0013\u00c2\u00150:\u0092\u00c2\u001d\u0000\u0000fC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0085\u00b3\u0096\u00a8\u0006B\b\u001a\u0006DLVT14" + }, + { + "type": "sin_recorrido", + "entity": "\n$c539b8b8-ba62-44b0-8edb-d62b04c4d3c4\"/\u0012\u001d\r\u00ccP\u0013\u00c2\u0015\u0098K\u0092\u00c2\u001d\u0000\u0000-C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a6\u00e8\u0097\u00a8\u0006B\b\u001a\u0006LJKK18" + }, + { + "type": "sin_recorrido", + "entity": "\n$7fe120a9-a024-4f91-95e0-364e8c6818b8\"/\u0012\u001d\rF\u00c3\u0013\u00c2\u0015\u00de\u000b\u0092\u00c2\u001d\u0000\u0000&C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ae\u00e8\u0097\u00a8\u0006B\b\u001a\u0006CBKL86" + }, + { + "type": "sin_recorrido", + "entity": "\n$199de7ce-561d-490f-99d1-877e9cb8661c\"/\u0012\u001d\r9\u00cc\u0013\u00c2\u0015!\u00dd\u0091\u00c2\u001d\u0000\u0000\u001aC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a0\u00ff\u0093\u00a8\u0006B\b\u001a\u0006HJYB84" + }, + { + "type": "sin_recorrido", + "entity": "\n$d3e2379f-1688-40e6-9171-12065ac5e815\"/\u0012\u001d\r5\u00dd\u0013\u00c2\u0015\u009c\u00e9\u0091\u00c2\u001d\u0000\u0000\u00eaB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ef\u00b9\u00d8\u00a7\u0006B\b\u001a\u0006FLHL95" + }, + { + "type": "sin_recorrido", + "entity": "\n$4740a8ec-7b2b-4f81-abe9-3bc5a7cd9f0c\"/\u0012\u001d\r/\u00d5\u0013\u00c2\u0015\u0087\u0005\u0092\u00c2\u001d\u0000\u0000zC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b6\u009e\u0093\u00a8\u0006B\b\u001a\u0006YG6026" + }, + { + "type": "sin_recorrido", + "entity": "\n$90af81c0-cdd6-4788-b613-66b950551978\"/\u0012\u001d\r\u00b4-\u0013\u00c2\u0015\u00a7\u0017\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f1\u0099\u00fe\u00a7\u0006B\b\u001a\u0006HXZV35" + }, + { + "type": "sin_recorrido", + "entity": "\n$6d891daf-43f1-483b-92b5-00a7f96400db\"/\u0012\u001d\r\u00c1]\u0014\u00c2\u0015\u0088O\u0092\u00c2\u001d\u0000\u0000\bB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00fe\u00e6\u0097\u00a8\u0006B\b\u001a\u0006RLXS59" + }, + { + "type": "sin_recorrido", + "entity": "\n$31869138-3302-42b5-9d91-02973f0b125e\"/\u0012\u001d\r(\u00d5\u0013\u00c2\u0015\u00a4\u0005\u0092\u00c2\u001d\u0000\u0000\u00a8A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UU\u00d5?(\u00d4\u00d5\u0097\u00a8\u0006B\b\u001a\u0006FFVP27" + }, + { + "type": "sin_recorrido", + "entity": "\n$8c7d74f8-bc96-4b45-bfdd-2bcb83230bb6\"/\u0012\u001d\rZ\u00c4\u0013\u00c2\u0015\u00da\u0007\u0092\u00c2\u001d\u0000\u0000\u00b0C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c1\u00e8\u0097\u00a8\u0006B\b\u001a\u0006YR3697" + }, + { + "type": "sin_recorrido", + "entity": "\n$b5863d80-b1a0-4218-a879-c82c997f4b9a\"/\u0012\u001d\r\u0082(\u0013\u00c2\u0015]1\u0092\u00c2\u001d\u0000\u0000\u0084C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ae\u00e8\u0097\u00a8\u0006B\b\u001a\u0006GZGH33" + }, + { + "type": "sin_recorrido", + "entity": "\n$29229c27-527b-435e-9383-107754c779a5\"/\u0012\u001d\rpL\u0013\u00c2\u0015\u00a5B\u0092\u00c2\u001d\u0000\u0000\u001aC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a2\u00e6\u0097\u00a8\u0006B\b\u001a\u0006FXRL61" + }, + { + "type": "sin_recorrido", + "entity": "\n$d69f93d6-f434-4536-b56c-eb4163806b8f\"/\u0012\u001d\r\u008a\u0093\u0013\u00c2\u0015'D\u0092\u00c2\u001d\u0000\u0000@A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0093\u00e8\u0097\u00a8\u0006B\b\u001a\u0006JZVD74" + }, + { + "type": "sin_recorrido", + "entity": "\n$9d69b4bc-9a94-4f91-9b5c-1c1ac346d335\"/\u0012\u001d\r\u0098(\u0013\u00c2\u0015\u0080,\u0092\u00c2\u001d\u0000\u00006C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008e\u00e3(A(\u00aa\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HLHP85" + }, + { + "type": "sin_recorrido", + "entity": "\n$f751c932-24f7-4828-8d08-93c7c7217e96\"/\u0012\u001d\r \u00d5\u0013\u00c2\u0015\u009c\u0005\u0092\u00c2\u001d\u0000\u0000\bB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-9\u008eC@(\u00ca\u00e8\u0097\u00a8\u0006B\b\u001a\u0006TJ9644" + }, + { + "type": "sin_recorrido", + "entity": "\n$7b155959-78dc-47ec-b6ab-edd87e24d805\"/\u0012\u001d\r\u00ea\u00cb\u0013\u00c2\u0015\u001b\u00dd\u0091\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0098\u00f9\u0096\u00a8\u0006B\b\u001a\u0006LPCT47" + }, + { + "type": "sin_recorrido", + "entity": "\n$4f1d7439-fddc-4cfc-9d0f-5cdc16a1b732\"/\u0012\u001d\r\u00f9e\u0013\u00c2\u0015\u00d9H\u0092\u00c2\u001d\u0000\u0000\u00baB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b3\u00ef\u0088\u00a8\u0006B\b\u001a\u0006FSLC61" + }, + { + "type": "sin_recorrido", + "entity": "\n$b0bdff69-a36d-4682-8a55-df48fcbb81d3\"/\u0012\u001d\r\u00e6\u00cc\u0013\u00c2\u0015p\f\u0092\u00c2\u001d\u0000\u0000xC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f6\u00ae\u0093\u00a8\u0006B\b\u001a\u0006XV4457" + }, + { + "type": "sin_recorrido", + "entity": "\n$b3faa8d6-cac9-4bd9-a981-f803e30af70b\"/\u0012\u001d\r\u0084-\u0013\u00c2\u0015\u009e\u0017\u0092\u00c2\u001d\u0000\u0080\u0085C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b7\u00ff\u0096\u00a8\u0006B\b\u001a\u0006XZ9797" + }, + { + "type": "sin_recorrido", + "entity": "\n$84c9f6ea-8e02-44ab-a53f-40564b5d8160\"/\u0012\u001d\r\u00e0-\u0013\u00c2\u0015{\u0017\u0092\u00c2\u001d\u0000\u0000\u0088A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u001c\u00c71@(\u00ca\u00b2\u0093\u00a8\u0006B\b\u001a\u0006BHXT56" + }, + { + "type": "sin_recorrido", + "entity": "\n$c6765fd9-80a9-470e-b47b-250831d895be\"/\u0012\u001d\r\u00b4(\u0013\u00c2\u0015\u0088(\u0092\u00c2\u001d\u0000\u0000jC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b6\u008c\u0094\u00a8\u0006B\b\u001a\u0006FXRL32" + }, + { + "type": "sin_recorrido", + "entity": "\n$52f66dc9-f11e-46e9-9a22-acf5c4d034c6\"/\u0012\u001d\r=\u00dd\u0013\u00c2\u0015\u009f\u00e9\u0091\u00c2\u001d\u0000\u0000\u0004C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-9\u008eC@(\u00ac\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FXRZ71" + }, + { + "type": "sin_recorrido", + "entity": "\n$0fc93254-7482-4115-bb41-00804adf9e66\"/\u0012\u001d\r\u0018\u00c4\u0013\u00c2\u0015\u00e2\r\u0092\u00c2\u001d\u0000\u0000tC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0082\u0098\u0097\u00a8\u0006B\b\u001a\u0006FGYZ21" + }, + { + "type": "sin_recorrido", + "entity": "\n$3b598e23-c948-42fe-8e4b-8157ff4fa700\"/\u0012\u001d\r\u00dcP\u0013\u00c2\u0015\u00e2K\u0092\u00c2\u001d\u0000\u0000pA!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u008d\u00b5\u0093\u00a8\u0006B\b\u001a\u0006XY6941" + }, + { + "type": "sin_recorrido", + "entity": "\n$825a39e2-b6ce-4869-8a3d-719af192dc27\"/\u0012\u001d\rX\u00f1\u0012\u00c2\u0015{4\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a3\u00e0\u0096\u00a8\u0006B\b\u001a\u0006JCPP91" + }, + { + "type": "sin_recorrido", + "entity": "\n$ae91457f-ad93-45cd-9508-2c06202581c0\"/\u0012\u001d\r%\u00db\u0012\u00c2\u0015\u009b\u00f4\u0091\u00c2\u001d\u0000\u0000qC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c6\u00e4\u0097\u00a8\u0006B\b\u001a\u0006GVFL97" + }, + { + "type": "sin_recorrido", + "entity": "\n$755f6c0c-5988-46b4-bd88-08eb830a0681\"/\u0012\u001d\r\u001e\u001e\u0013\u00c2\u0015\u00a42\u0092\u00c2\u001d\u0000\u0000`A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00d2\u009a\u0092\u00a8\u0006B\b\u001a\u0006CSYY24" + }, + { + "type": "sin_recorrido", + "entity": "\n$ea3e05ec-a748-4449-b6a8-e271f0eda0de\"/\u0012\u001d\rxL\u0013\u00c2\u0015\u0097B\u0092\u00c2\u001d\u0000\u0000HC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a9\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FFTL52" + }, + { + "type": "sin_recorrido", + "entity": "\n$f787c927-1ca3-458c-8d90-965901ed1051\"/\u0012\u001d\r\u00c7P\u0013\u00c2\u0015\u0088K\u0092\u00c2\u001d\u0000\u0000\u00aeB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a4\u00e5\u0097\u00a8\u0006B\b\u001a\u0006ZB7134" + }, + { + "type": "sin_recorrido", + "entity": "\n$b5a1ed52-7609-42bb-8143-772d23016fb6\"/\u0012\u001d\r\u0005z\u0013\u00c2\u0015\u00b8E\u0092\u00c2\u001d\u0000\u0000AC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ba\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HPVS37" + }, + { + "type": "sin_recorrido", + "entity": "\n$48272865-6049-44ce-a784-2a41934c1d09\"/\u0012\u001d\r\u00bd_\u0013\u00c2\u0015\u00b8\u001c\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0092\u00e8\u0097\u00a8\u0006B\b\u001a\u0006JHJF80" + }, + { + "type": "sin_recorrido", + "entity": "\n$11353411-3eed-4e8b-b339-1a47b5ded816\"/\u0012\u001d\r\u00ec8\u0013\u00c2\u0015\u009b\u0013\u0092\u00c2\u001d\u0000\u0000\u009cB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UUU@(\u00d2\u00b3\u0097\u00a8\u0006B\b\u001a\u0006DRFP69" + }, + { + "type": "sin_recorrido", + "entity": "\n$ffbd2a42-280d-440d-a778-77276c192642\"/\u0012\u001d\r\u00c1-\u0013\u00c2\u0015w\u0017\u0092\u00c2\u001d\u0000\u0000\u00c8B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00fc\u00f8\u0090\u00a8\u0006B\b\u001a\u0006FXJV64" + }, + { + "type": "sin_recorrido", + "entity": "\n$1d76bd8f-9935-4bac-95dd-e41d5093e937\"/\u0012\u001d\r\u00e4-\u0013\u00c2\u0015z\u0017\u0092\u00c2\u001d\u0000\u00008B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0086\u00e7\u0097\u00a8\u0006B\b\u001a\u0006BFGY14" + }, + { + "type": "sin_recorrido", + "entity": "\n$0ddabeae-d38c-42a6-bdb7-4673125d8d89\"/\u0012\u001d\r\u00c1-\u0013\u00c2\u0015|\u0017\u0092\u00c2\u001d\u0000\u0000CC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UU\u00d5?(\u008a\u0092\u0081\u00a8\u0006B\b\u001a\u0006DRZR92" + }, + { + "type": "sin_recorrido", + "entity": "\n$26757fa7-e4c7-4be8-8784-be2a513e88f3\"/\u0012\u001d\r\u00e2-\u0013\u00c2\u0015\u008d\u0017\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0092\u00c1\u008d\u00a8\u0006B\b\u001a\u0006WZ6630" + }, + { + "type": "sin_recorrido", + "entity": "\n$734aa647-8889-45f0-98d7-dd36ea7d6e6d\"/\u0012\u001d\r\u0099-\u0013\u00c2\u0015n\u0017\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00fd\u00f8\u00e1\u00a7\u0006B\b\u001a\u0006BBFC20" + }, + { + "type": "sin_recorrido", + "entity": "\n$38e66bc7-e2e4-44f9-9705-d9c62367b0af\"/\u0012\u001d\r\u00ddQ\u0013\u00c2\u0015\u00f5=\u0092\u00c2\u001d\u0000\u0000\u001eC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-VUU@(\u00af\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DWKX29" + }, + { + "type": "sin_recorrido", + "entity": "\n$6c4f7a72-d68d-4a78-9471-c574cf33fad1\"/\u0012\u001d\r\u0089R\u0013\u00c2\u00152?\u0092\u00c2\u001d\u0000\u0000 A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00be\u00a7\u0097\u00a8\u0006B\b\u001a\u0006HYVR34" + }, + { + "type": "sin_recorrido", + "entity": "\n$96e32aa1-0714-4e7d-b4fa-ffa52b5fdbb3\"/\u0012\u001d\rQ-\u0013\u00c2\u0015\u009a\u0017\u0092\u00c2\u001d\u0000\u0000:C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0096\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DRXZ78" + }, + { + "type": "sin_recorrido", + "entity": "\n$18068472-c02e-4309-9868-83a5ce34f7bd\"/\u0012\u001d\r\u009a8\u0013\u00c2\u0015.\u0014\u0092\u00c2\u001d\u0000\u0000\u0082C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00aa\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FXRZ72" + }, + { + "type": "sin_recorrido", + "entity": "\n$a3c5a734-3a07-40b4-a69d-196331de49cc\"/\u0012\u001d\r:-\u0013\u00c2\u0015\u0099\u0017\u0092\u00c2\u001d\u0000\u0000 A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00cc\u00e5\u0097\u00a8\u0006B\b\u001a\u0006HYCZ50" + }, + { + "type": "sin_recorrido", + "entity": "\n$8b60b0f0-2a06-4abb-a63b-b254081265ae\"/\u0012\u001d\r{:\u0013\u00c2\u0015\u0000\u000f\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0082\u00eb\u00c2\u00a7\u0006B\b\u001a\u0006JPWD28" + }, + { + "type": "sin_recorrido", + "entity": "\n$1c12bad9-6da9-4bb9-895d-9cc17bf1a49b\"/\u0012\u001d\r(-\u0013\u00c2\u0015\u0098\u0017\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f4\u00bc\u0096\u00a8\u0006B\b\u001a\u0006FHTB59" + }, + { + "type": "sin_recorrido", + "entity": "\n$6e67335e-4328-4919-ba20-cf5b2840daf5\"/\u0012\u001d\r_-\u0013\u00c2\u0015\u008f\u0017\u0092\u00c2\u001d\u0000\u0000DC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0096\u00e5\u0097\u00a8\u0006B\b\u001a\u0006CBKD97" + }, + { + "type": "sin_recorrido", + "entity": "\n$0142b8aa-0eed-473f-be01-b5bf83df65e8\"/\u0012\u001d\r6-\u0013\u00c2\u0015\u0099\u0017\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c8\u00be\u0096\u00a8\u0006B\b\u001a\u0006RFSC18" + }, + { + "type": "sin_recorrido", + "entity": "\n$3ca68ecd-9293-4e5e-88d2-c2ade37738c1\"/\u0012\u001d\r\u0015+\u0013\u00c2\u0015\u00f1\u0014\u0092\u00c2\u001d\u0000\u0000\u009cC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000 A(\u00d0\u00e7\u0097\u00a8\u0006B\b\u001a\u0006UW8872" + }, + { + "type": "sin_recorrido", + "entity": "\n$01659232-f63e-4a1e-b670-9a98a1c80760\"/\u0012\u001d\r\u00c4\u00d8\u0012\u00c2\u0015C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ae\u00bf\u0097\u00a8\u0006B\b\u001a\u0006XR8763" + }, + { + "type": "sin_recorrido", + "entity": "\n$1752bff3-5ce7-497a-83f3-e0eaaf5ac0d4\"/\u0012\u001d\r\u00ba)\u0013\u00c2\u0015@3\u0092\u00c2\u001d\u0000\u0000\u00a0A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0090\u00dc\u008c\u00a8\u0006B\b\u001a\u0006CTRZ85" + }, + { + "type": "sin_recorrido", + "entity": "\n$4162cce4-20fe-4cbb-8eff-b132713bab72\"/\u0012\u001d\r\u00cfT\u0013\u00c2\u0015\u00ee\u001e\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0082\u00b4\u0094\u00a8\u0006B\b\u001a\u0006CVDY56" + }, + { + "type": "sin_recorrido", + "entity": "\n$d2cbf3bf-8747-4d24-8813-10c0f58da427\"/\u0012\u001d\r-_\u0013\u00c2\u0015\u0003\u0005\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f6\u00ea\u0092\u00a8\u0006B\b\u001a\u0006JLZX49" + }, + { + "type": "sin_recorrido", + "entity": "\n$b8d7f200-3643-4a93-be28-7c7fd9b6edcc\"/\u0012\u001d\r\u009a\u00cb\u0013\u00c2\u0015\u00f6\u0005\u0092\u00c2\u001d\u0000\u0000\u008fC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u008f\u00e8\u0097\u00a8\u0006B\b\u001a\u0006GZGD13" + }, + { + "type": "sin_recorrido", + "entity": "\n$d698b0ed-efa0-4d49-b302-fc09b6436a74\"/\u0012\u001d\r\n\u00bf\u0012\u00c2\u0015\u00f2;\u0092\u00c2\u001d\u0000\u0000,C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c6\u00e1\u0087\u00a8\u0006B\b\u001a\u0006BFPL99" + }, + { + "type": "sin_recorrido", + "entity": "\n$ac49743c-1cb6-4318-a20c-3cfd0678935f\"/\u0012\u001d\r\u0085\u00e4\u0013\u00c2\u0015`\u00da\u0091\u00c2\u001d\u0000\u0000\u00dcB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00d4\u0087\u0097\u00a8\u0006B\b\u001a\u0006HFLX61" + }, + { + "type": "sin_recorrido", + "entity": "\n$265ed417-e64f-4216-a46f-d13218cdedda\"/\u0012\u001d\r/\u00d5\u0013\u00c2\u0015\u0099\u0005\u0092\u00c2\u001d\u0000\u0000\"C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ef\u00df\u0097\u00a8\u0006B\b\u001a\u0006WZ6604" + }, + { + "type": "sin_recorrido", + "entity": "\n$1b55e6c2-e14a-4a01-96f7-152953f3cf69\"/\u0012\u001d\r\u00ccQ\u0013\u00c2\u0015\u000bG\u0092\u00c2\u001d\u0000\u0000@A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u00de@(\u0096\u00e8\u0097\u00a8\u0006B\b\u001a\u0006YR1744" + }, + { + "type": "sin_recorrido", + "entity": "\n$25da5f19-62e8-41a9-8020-1fc6a006374c\"/\u0012\u001d\r\u00e6e\u0013\u00c2\u0015\u00f9H\u0092\u00c2\u001d\u0000\u00000A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ae\u00e3\u0093\u00a8\u0006B\b\u001a\u0006WC8942" + }, + { + "type": "sin_recorrido", + "entity": "\n$9db12984-1fdc-4821-b43a-c2162863c19e\"/\u0012\u001d\rk\u00d9\u0012\u00c2\u0015\u001c;\u0092\u00c2\u001d\u0000\u0000\u0080?!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00cc\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DXSH15" + }, + { + "type": "sin_recorrido", + "entity": "\n$7c34adf5-30c5-4950-bc62-dade6c741c32\"/\u0012\u001d\rR\u00df\u0013\u00c2\u00157\u00db\u0091\u00c2\u001d\u0000\u0000\u00c8A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u000e@(\u00c3\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HDCD41" + }, + { + "type": "sin_recorrido", + "entity": "\n$2d4fc684-27bb-46c6-850a-c565b51b8b45\"/\u0012\u001d\r8\u00e4\u0013\u00c2\u0015}\u00da\u0091\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u008e?(\u0082\u00a6\u0094\u00a8\u0006B\b\u001a\u0006FPZB46" + }, + { + "type": "sin_recorrido", + "entity": "\n$50d86988-4f7f-47d3-8dab-c1715819a931\"/\u0012\u001d\r\u0093\u00cb\u0013\u00c2\u0015\u00f6\u0005\u0092\u00c2\u001d\u0000\u0080\u008fC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a0\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FRPH90" + }, + { + "type": "sin_recorrido", + "entity": "\n$68e3f55d-66ba-4112-8c84-f2cf5d2b4fcd\"/\u0012\u001d\r/\u001e\u0013\u00c2\u0015\u00a62\u0092\u00c2\u001d\u0000\u0000\u001aC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ca\u0095\u008c\u00a8\u0006B\b\u001a\u0006ZR7180" + }, + { + "type": "sin_recorrido", + "entity": "\n$3b0619ef-89bd-4403-a9bd-55bdfde3b897\"/\u0012\u001d\r7\u00db\u0012\u00c2\u0015\u009e\u00f4\u0091\u00c2\u001d\u0000\u0080\u008cC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u008e>(\u00a7\u00e2\u008c\u00a8\u0006B\b\u001a\u0006KVYR52" + }, + { + "type": "sin_recorrido", + "entity": "\n$6a3ec6a3-c637-408a-843c-8cdce6f0ae53\"/\u0012\u001d\r\u00c5A\u0013\u00c2\u0015\u00c6%\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009a\u00f1\u0093\u00a8\u0006B\b\u001a\u0006GWZC18" + }, + { + "type": "sin_recorrido", + "entity": "\n$966dcdc4-477f-4de4-844c-eef7fcaba9b2\"/\u0012\u001d\r50\u0013\u00c2\u0015r8\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0084\u00e1\u0097\u00a8\u0006B\b\u001a\u0006WR9449" + }, + { + "type": "sin_recorrido", + "entity": "\n$94bfa256-36c1-48c8-9bb8-3fd9169774fe\"/\u0012\u001d\r\u00ea'\u0013\u00c2\u0015#\u0016\u0092\u00c2\u001d\u0000\u0000\u0083C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u008e>(\u00b2\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HFYB66" + }, + { + "type": "sin_recorrido", + "entity": "\n$1630085d-0882-42ac-bf3b-36bd0ad7fa5d\"/\u0012\u001d\r,-\u0013\u00c2\u0015\u00a1\u0017\u0092\u00c2\u001d\u0000\u0000\u00b2C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0092\u00e8\u0097\u00a8\u0006B\b\u001a\u0006RSZG38" + }, + { + "type": "sin_recorrido", + "entity": "\n$de6bfb62-75f4-426e-883a-276665358b1a\"/\u0012\u001d\rt-\u0013\u00c2\u0015\u00aa\u0017\u0092\u00c2\u001d\u0000\u0000,C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u008a\u00a5\u0093\u00a8\u0006B\b\u001a\u0006YX2547" + }, + { + "type": "sin_recorrido", + "entity": "\n$eb0cf9b3-5d9e-49d9-82a9-803ca22dbfc3\"/\u0012\u001d\rg-\u0013\u00c2\u0015\u00a9\u0017\u0092\u00c2\u001d\u0000\u0000\u0090C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0082\u00ab\u0097\u00a8\u0006B\b\u001a\u0006BGLH33" + }, + { + "type": "sin_recorrido", + "entity": "\n$92d7324b-8e1f-4bcf-9305-7e628b059832\"/\u0012\u001d\rc:\u0013\u00c2\u0015p\u001a\u0092\u00c2\u001d\u0000\u0000\u00aaB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00bf\u00cb\u0097\u00a8\u0006B\b\u001a\u0006WK4116" + }, + { + "type": "sin_recorrido", + "entity": "\n$1cd30962-ffb7-4c73-8b83-b9098a14f96c\"/\u0012\u001d\r\u00ef8\u0013\u00c2\u0015\u00ab\u0013\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f4\u00da\u0092\u00a8\u0006B\b\u001a\u0006CXLY25" + }, + { + "type": "sin_recorrido", + "entity": "\n$a239182e-5889-41ee-a4c4-20950702b2fc\"/\u0012\u001d\r\u0011\u001e\u0013\u00c2\u0015\u00a72\u0092\u00c2\u001d\u0000\u0000PC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0097\u00cf\u0087\u00a8\u0006B\b\u001a\u0006DRPF80" + }, + { + "type": "sin_recorrido", + "entity": "\n$1ac73fb9-bddd-4678-a6d4-030bf6daebd3\"/\u0012\u001d\r\u0097\u001d\u0013\u00c2\u0015\u00ee2\u0092\u00c2\u001d\u0000\u0000lB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009e\u00ed\u0096\u00a8\u0006B\b\u001a\u0006KHXV45" + }, + { + "type": "sin_recorrido", + "entity": "\n$50a5c390-bded-4480-8e74-2778fb003de4\"/\u0012\u001d\r\u00ee\u00d7\u0012\u00c2\u0015\u00bc\u00f2\u0091\u00c2\u001d\u0000\u0000xB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ce\u00e5\u0097\u00a8\u0006B\b\u001a\u0006FXRZ50" + }, + { + "type": "sin_recorrido", + "entity": "\n$71304650-62c2-416a-98a1-46dc9c3eb430\"/\u0012\u001d\r\u008e\u00d8\u0012\u00c2\u0015ZG\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c8\u00e5\u0094\u00a8\u0006B\b\u001a\u0006ZR7429" + }, + { + "type": "sin_recorrido", + "entity": "\n$4d7f6037-5221-4e77-9766-bc3774d7c456\"/\u0012\u001d\r\u0000f\u0013\u00c2\u0015\u00d1H\u0092\u00c2\u001d\u0000\u0000\u00a1C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a9\u00bc\u0092\u00a8\u0006B\b\u001a\u0006DWVX25" + }, + { + "type": "sin_recorrido", + "entity": "\n$87853e1a-e977-48b5-ac74-e441bcf055a6\"/\u0012\u001d\ry\u00d0\u0013\u00c2\u0015k\u000b\u0092\u00c2\u001d\u0000\u0000\u0098C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00e4\u00f0\u0096\u00a8\u0006B\b\u001a\u0006FXRR89" + }, + { + "type": "sin_recorrido", + "entity": "\n$83dd22e1-bf9e-42e9-b99f-d1c3185b443b\"/\u0012\u001d\r\u00a4(\u0013\u00c2\u0015w(\u0092\u00c2\u001d\u0000\u0000\u00b0B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b8\u008f\u0097\u00a8\u0006B\b\u001a\u0006FXRL65" + }, + { + "type": "sin_recorrido", + "entity": "\n$c90df090-2367-452b-9c53-a24937b5a9e2\"/\u0012\u001d\r[3\u0013\u00c2\u0015\u00da\u0019\u0092\u00c2\u001d\u0000\u0000\u0016C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00d0\u0093\u0097\u00a8\u0006B\b\u001a\u0006XS5094" + }, + { + "type": "sin_recorrido", + "entity": "\n$34d41ce9-6365-4bc4-a54a-b5f702764508\"/\u0012\u001d\r\u00d5\u00dd\u0012\u00c2\u0015\u00a5D\u0092\u00c2\u001d\u0000\u0000TC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f0\u009b\u0093\u00a8\u0006B\b\u001a\u0006YR2263" + }, + { + "type": "sin_recorrido", + "entity": "\n$6c091fe3-f828-49a8-bc1b-f451655463c7\"/\u0012\u001d\r0:\u0013\u00c2\u0015\u0087\u001a\u0092\u00c2\u001d\u0000\u0000\u008fC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c0\u00b0\u0097\u00a8\u0006B\b\u001a\u0006JXFX71" + }, + { + "type": "sin_recorrido", + "entity": "\n$71ddd3a2-556f-44bf-965d-01d85c62138d\"/\u0012\u001d\r\"\u001d\u0013\u00c2\u0015\u00fb2\u0092\u00c2\u001d\u0000\u0080\u008aC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0097\u00d4\u0092\u00a8\u0006B\b\u001a\u0006WF1305" + }, + { + "type": "sin_recorrido", + "entity": "\n$e55d6c9e-53b6-4583-b3da-b0d5aa9b5cf1\"/\u0012\u001d\r`g\u0013\u00c2\u0015\u00a5F\u0092\u00c2\u001d\u0000\u0000\u008cC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009d\u00d9\u0097\u00a8\u0006B\b\u001a\u0006XY1975" + }, + { + "type": "sin_recorrido", + "entity": "\n$21068c60-d79f-43c8-aa45-b4b1661def8e\"/\u0012\u001d\rN\u0011\u0013\u00c2\u0015\u00ea9\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ba\u00b1\u0096\u00a8\u0006B\b\u001a\u0006DWVL55" + }, + { + "type": "sin_recorrido", + "entity": "\n$e52e83a8-dc56-4223-984c-09f593a05319\"/\u0012\u001d\rKL\u0013\u00c2\u0015\u00b3B\u0092\u00c2\u001d\u0000\u0000\u0004B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ca\u00bc\u0097\u00a8\u0006B\b\u001a\u0006CVTG83" + }, + { + "type": "sin_recorrido", + "entity": "\n$e0876e20-b042-4f77-a762-6cf998676431\"/\u0012\u001d\r\u008cd\u0013\u00c2\u0015\u009dH\u0092\u00c2\u001d\u0000\u0000\u0001C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a3\u0086\u0097\u00a8\u0006B\b\u001a\u0006WV1926" + }, + { + "type": "sin_recorrido", + "entity": "\n$be0092cc-0475-4d82-8f68-e956fb1d6c61\"/\u0012\u001d\rw\u00f1\u0012\u00c2\u0015V4\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00e9\u00dc\u0096\u00a8\u0006B\b\u001a\u0006KXWX33" + }, + { + "type": "sin_recorrido", + "entity": "\n$7bc040c9-af2a-4e70-98db-ad994f1df8bb\"/\u0012\u001d\r\u0085+\u0013\u00c2\u0015\u0011:\u0092\u00c2\u001d\u0000\u0000\u0096C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b4\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HYHP63" + }, + { + "type": "sin_recorrido", + "entity": "\n$c6e108fb-0bcd-4d4f-a335-213ec4413003\"/\u0012\u001d\r\u00d0P\u0013\u00c2\u0015\u00b4K\u0092\u00c2\u001d\u0000\u0000\u0087C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b6\u00e8\u0097\u00a8\u0006B\b\u001a\u0006YU8449" + }, + { + "type": "sin_recorrido", + "entity": "\n$6bdce928-248f-465e-9892-fa703adbffbf\"/\u0012\u001d\r]\u0011\u0013\u00c2\u0015\u00a59\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a6\u00ea\u00ec\u00a7\u0006B\b\u001a\u0006YU2039" + }, + { + "type": "sin_recorrido", + "entity": "\n$78556ef7-2fd1-4fd4-8502-b95ef664cff2\"/\u0012\u001d\r\u0000\u00de\u0012\u00c2\u0015\u00d6I\u0092\u00c2\u001d\u0000\u0000\u0084B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009c\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HYZC41" + }, + { + "type": "sin_recorrido", + "entity": "\n$58cbbb7c-df09-4c24-92b0-34407c5d6161\"/\u0012\u001d\r\u00f7\u0006\u0013\u00c2\u0015p0\u0092\u00c2\u001d\u0000\u0000\u0090A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-r\u001c?A(\u00b0\u00e8\u0097\u00a8\u0006B\b\u001a\u0006ZT4461" + }, + { + "type": "sin_recorrido", + "entity": "\n$4182c6b7-265d-4ad9-8080-98a25c4e869f\"/\u0012\u001d\r\u00f3\u00d4\u0013\u00c2\u0015]\u0005\u0092\u00c2\u001d\u0000\u0000(C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ac\u00bd\u0093\u00a8\u0006B\b\u001a\u0006FCBR61" + }, + { + "type": "sin_recorrido", + "entity": "\n$85732ec2-7c90-4888-a53f-2163352f4804\"/\u0012\u001d\r[\u00d0\u0013\u00c2\u0015m\u000b\u0092\u00c2\u001d\u0000\u0000RC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f2\u00d8\u0091\u00a8\u0006B\b\u001a\u0006XG3133" + }, + { + "type": "sin_recorrido", + "entity": "\n$4a521c29-e8a9-48ee-a5ec-ca45e1c9b066\"/\u0012\u001d\r\u0083\u00cd\u0013\u00c2\u0015\u00da\b\u0092\u00c2\u001d\u0000\u0000\u0086C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008e\u00e3\u0000A(\u00ec\u00bd\u0097\u00a8\u0006B\b\u001a\u0006WK3744" + }, + { + "type": "sin_recorrido", + "entity": "\n$997b4960-a02f-4f1f-a3ef-776f4dcf64ed\"/\u0012\u001d\rm\u00d0\u0013\u00c2\u0015k\u000b\u0092\u00c2\u001d\u0000\u0000PB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f2\u00c2\u0097\u00a8\u0006B\b\u001a\u0006CPFB37" + }, + { + "type": "sin_recorrido", + "entity": "\n$e3342340-6f3d-421d-8df5-840f13310e0e\"/\u0012\u001d\r\u0096e\u0012\u00c2\u00151\u00e7\u0091\u00c2\u001d\u0000\u0000\u0088B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00fe\u00b9\u0093\u00a8\u0006B\b\u001a\u0006LVLG30" + }, + { + "type": "sin_recorrido", + "entity": "\n$0fb4570d-0130-4e35-9ea1-8ffc889eedde\"/\u0012\u001d\r\u00e1\u0012\u0013\u00c2\u0015P:\u0092\u00c2\u001d\u0000\u0000\u0086C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ce\u00e6\u0097\u00a8\u0006B\b\u001a\u0006LDDD47" + }, + { + "type": "sin_recorrido", + "entity": "\n$b52084db-a20a-45d9-87df-58b4fba8623d\"/\u0012\u001d\r\u0095\u0088\u0013\u00c2\u00158C\u0092\u00c2\u001d\u0000\u0000ZC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00eb\u00e5\u0097\u00a8\u0006B\b\u001a\u0006YU2268" + }, + { + "type": "sin_recorrido", + "entity": "\n$ede2bf44-938e-47c1-9c5d-caeed041adef\"/\u0012\u001d\rNL\u0013\u00c2\u0015\bC\u0092\u00c2\u001d\u0000\u0000\u0012C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00bd\u00e8\u0097\u00a8\u0006B\b\u001a\u0006CVTG78" + }, + { + "type": "sin_recorrido", + "entity": "\n$5f9c2f98-add0-4f7e-b450-20c84b818bd3\"/\u0012\u001d\rq\u00d0\u0013\u00c2\u0015`\u0007\u0092\u00c2\u001d\u0000\u0000,C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ce\u00e3\u0097\u00a8\u0006B\b\u001a\u0006XY9416" + }, + { + "type": "sin_recorrido", + "entity": "\n$566fce30-3fc9-44bd-9587-09e864b42109\"/\u0012\u001d\r\u00ca\u00da\u0012\u00c2\u0015\u0089\u00f4\u0091\u00c2\u001d\u0000\u0000sC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b7\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HXKL13" + }, + { + "type": "sin_recorrido", + "entity": "\n$c1775363-d8b4-4c79-801b-75894330b30e\"/\u0012\u001d\rC\u00c4\u0013\u00c2\u0015G\u0004\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0096\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FWBZ36" + }, + { + "type": "sin_recorrido", + "entity": "\n$33b87190-5ec0-44a4-9cd0-2505f3719db2\"/\u0012\u001d\r\u009dP\u0013\u00c2\u0015\u008eK\u0092\u00c2\u001d\u0000\u0000RC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u008f\u00e4\u0097\u00a8\u0006B\b\u001a\u0006FXRL56" + }, + { + "type": "sin_recorrido", + "entity": "\n$b1892b4b-da71-4de4-9b75-c9e7f79ef3a1\"/\u0012\u001d\rT6\u0013\u00c2\u0015[\u0017\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00d0\u00ae\u0083\u00a8\u0006B\b\u001a\u0006DWVZ74" + }, + { + "type": "sin_recorrido", + "entity": "\n$e7e07fd3-a160-47bd-9ef9-917e716960f0\"/\u0012\u001d\r\u00d2P\u0013\u00c2\u0015\u00a1K\u0092\u00c2\u001d\u0000\u0000\u0015C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00d1\u00ad\u0093\u00a8\u0006B\b\u001a\u0006WZ6588" + }, + { + "type": "sin_recorrido", + "entity": "\n$2a8e0f7d-c134-4dbd-b78c-84479e132d6d\"/\u0012\u001d\r\u001bR\u0013\u00c2\u0015 \u001b\u0092\u00c2\u001d\u0000\u0000\u008eB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009a\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FXRL63" + }, + { + "type": "sin_recorrido", + "entity": "\n$3fa96681-40ee-4002-8759-1ff9c129541d\"/\u0012\u001d\r\u0094R\u0013\u00c2\u0015P?\u0092\u00c2\u001d\u0000\u0000`C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a8\u00d7\u008e\u00a8\u0006B\b\u001a\u0006GXYY76" + }, + { + "type": "sin_recorrido", + "entity": "\n$26067a7e-78c9-457d-b5a0-6bb93848542c\"/\u0012\u001d\r\u0016f\u0013\u00c2\u0015\u00e9H\u0092\u00c2\u001d\u0000\u0000\u00a8B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0092\u00c7\u0097\u00a8\u0006B\b\u001a\u0006CVTG85" + }, + { + "type": "sin_recorrido", + "entity": "\n$51b87b17-76cd-4e2c-9154-edb8ebc09c10\"/\u0012\u001d\r%j\u0012\u00c2\u0015\u00f8\u00ef\u0091\u00c2\u001d\u0000\u0000pC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a8\u00e8\u0097\u00a8\u0006B\b\u001a\u0006RWWZ52" + }, + { + "type": "sin_recorrido", + "entity": "\n$613a2f21-8753-4f8b-bf05-842da9e7bd6e\"/\u0012\u001d\r\u00f1^\u0013\u00c2\u0015\u00fd\u0004\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00da\u0090\u008d\u00a8\u0006B\b\u001a\u0006DWVZ19" + }, + { + "type": "sin_recorrido", + "entity": "\n$5639bb22-3c8f-459d-94f0-2772ea2b9002\"/\u0012\u001d\r\u008f\u00ed\u0012\u00c2\u0015\u008f7\u0092\u00c2\u001d\u0000\u0000\u00a4C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b2\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FXRZ32" + }, + { + "type": "sin_recorrido", + "entity": "\n$9e455aaa-6a58-4b0e-9356-2f7da2dbb247\"/\u0012\u001d\r\t_\u0013\u00c2\u0015\u00db\u0004\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b4\u00c0\u0096\u00a8\u0006B\b\u001a\u0006YR2018" + }, + { + "type": "sin_recorrido", + "entity": "\n$e61d7dbf-e6c3-4e1e-8aae-70d3ffd578af\"/\u0012\u001d\r\u00a5\u00f9\u0012\u00c2\u0015O0\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009f\u00f1\u00d3\u00a7\u0006B\b\u001a\u0006FVYT17" + }, + { + "type": "sin_recorrido", + "entity": "\n$99a1bc56-5258-4597-b496-7e31e8630c09\"/\u0012\u001d\r9\u00e3\u0012\u00c2\u0015\u00a4@\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c4\u0084\u0091\u00a8\u0006B\b\u001a\u0006HYYX93" + }, + { + "type": "sin_recorrido", + "entity": "\n$9e8af14a-701c-40a6-a5df-47a0284ca120\"/\u0012\u001d\rP\u00e0\u0013\u00c2\u0015O\u00de\u0091\u00c2\u001d\u0000\u0000\u00a5C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UU\u00d5?(\u008e\u00e8\u0097\u00a8\u0006B\b\u001a\u0006RGGJ91" + }, + { + "type": "sin_recorrido", + "entity": "\n$b1a4c0fa-dce5-442e-b584-8372ecc21b71\"/\u0012\u001d\r6_\u0013\u00c2\u0015%\u0005\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00cc\u00e6\u0097\u00a8\u0006B\b\u001a\u0006BXFC65" + }, + { + "type": "sin_recorrido", + "entity": "\n$c6c79f07-fca3-44ac-bc7a-bf5fbd17f72f\"/\u0012\u001d\r*\u00d2\u0013\u00c2\u0015\u00de\b\u0092\u00c2\u001d\u0000\u0000\u009cB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b0\u00e8\u0097\u00a8\u0006B\b\u001a\u0006LRGR48" + }, + { + "type": "sin_recorrido", + "entity": "\n$8c0111cd-7370-481a-9a9d-5dc923c6170a\"/\u0012\u001d\rD_\u0013\u00c2\u0015.\u0005\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0086\u00d3\u0092\u00a8\u0006B\b\u001a\u0006BKKS46" + }, + { + "type": "sin_recorrido", + "entity": "\n$2a5de641-27b6-4720-9a32-104c2980aa84\"/\u0012\u001d\r\u00ba[\u0013\u00c2\u0015w\u001c\u0092\u00c2\u001d\u0000\u0000\u0080C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009b\u00d5\u0093\u00a8\u0006B\b\u001a\u0006FXRZ21" + }, + { + "type": "sin_recorrido", + "entity": "\n$43f7049f-4345-4c5d-b46c-3d699d792703\"/\u0012\u001d\r\u00df\u00e7\u0012\u00c2\u0015W8\u0092\u00c2\u001d\u0000\u0000\u00ceB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0083\u00b1\u0087\u00a8\u0006B\b\u001a\u0006CSRS64" + }, + { + "type": "sin_recorrido", + "entity": "\n$b296b965-f4c7-4f63-9b8d-6eb7f248de80\"/\u0012\u001d\rgW\u0013\u00c2\u0015\u008d\u0014\u0092\u00c2\u001d\u0000\u0000\u001cC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b2\u00e8\u0097\u00a8\u0006B\b\u001a\u0006KYDT38" + }, + { + "type": "sin_recorrido", + "entity": "\n$73e79cff-4574-45c8-a74e-dc025c2d5f14\"/\u0012\u001d\rS\u00ff\u0012\u00c2\u0015\u00da0\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ce\u009b\u0089\u00a8\u0006B\b\u001a\u0006YU1608" + }, + { + "type": "sin_recorrido", + "entity": "\n$cfda979a-1494-4f24-af84-376ced4e3a4a\"/\u0012\u001d\r7\u00e3\u0012\u00c2\u0015\u0018I\u0092\u00c2\u001d\u0000\u0000\u00b0A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00fe\u00e5\u0097\u00a8\u0006B\b\u001a\u0006KKYJ64" + }, + { + "type": "sin_recorrido", + "entity": "\n$738ab4fa-990c-4893-bdec-fcd474c70054\"/\u0012\u001d\r\u00b7\u0019\u0013\u00c2\u0015\u00dc\u000b\u0092\u00c2\u001d\u0000\u0080\u009bC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UUU@(\u00cf\u00f0\u0096\u00a8\u0006B\b\u001a\u0006FHGK25" + }, + { + "type": "sin_recorrido", + "entity": "\n$8f9d8a1d-df37-4b01-9d65-769e633432c5\"/\u0012\u001d\r\u000fj\u0012\u00c2\u0015\u00da\u00ef\u0091\u00c2\u001d\u0000\u0000\u0080B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u008c\u00e6\u0097\u00a8\u0006B\b\u001a\u0006GPGG82" + }, + { + "type": "sin_recorrido", + "entity": "\n$4a794435-4b40-484a-8d64-a5247f2579f6\"/\u0012\u001d\r?\u0013\u0013\u00c2\u0015^:\u0092\u00c2\u001d\u0000\u0000BC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UU\u00d5?(\u008d\u009f\u0097\u00a8\u0006B\b\u001a\u0006FXRR68" + }, + { + "type": "sin_recorrido", + "entity": "\n$9bb171a7-8b40-41dc-96a5-7d71545e3f50\"/\u0012\u001d\r\u00f5\n\u0013\u00c2\u0015\u009a-\u0092\u00c2\u001d\u0000\u0000\u001cC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a8\u00e8\u0097\u00a8\u0006B\b\u001a\u0006RTZB49" + }, + { + "type": "sin_recorrido", + "entity": "\n$6568ef50-ef83-46e5-9724-551c01905e7f\"/\u0012\u001d\r\u0084c\u0012\u00c2\u0015G\u00f0\u0091\u00c2\u001d\u0000\u0000\u00b3C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UU\u0085@(\u00f0\u00bf\u0093\u00a8\u0006B\b\u001a\u0006KHSW77" + }, + { + "type": "sin_recorrido", + "entity": "\n$773819c8-b69b-40cb-a3b2-b7e3d5eb8c0b\"/\u0012\u001d\rry\u0012\u00c2\u0015y\u00df\u0091\u00c2\u001d\u0000\u0000\u00bcB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u008e\u00e3\u00f8?(\u0096\u00de\u0093\u00a8\u0006B\b\u001a\u0006DWHF71" + }, + { + "type": "sin_recorrido", + "entity": "\n$813c9ab5-c809-473c-9834-bac15cb8efe2\"/\u0012\u001d\r\r\u0013\u0013\u00c2\u0015q:\u0092\u00c2\u001d\u0000\u0000JC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a0\u00c3\u0093\u00a8\u0006B\b\u001a\u0006KRXK40" + }, + { + "type": "sin_recorrido", + "entity": "\n$b91040c7-50af-409e-9f5d-2417f70f7fc5\"/\u0012\u001d\r\u00c3\u00da\u0012\u00c2\u00156F\u0092\u00c2\u001d\u0000\u0000@C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b0\u0093\u0093\u00a8\u0006B\b\u001a\u0006FYBB62" + }, + { + "type": "sin_recorrido", + "entity": "\n$81ab9d58-c49d-40a7-8f0c-f697f874b4af\"/\u0012\u001d\r\u001b\u0013\u0013\u00c2\u0015\t:\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00fc\u00a1\u0097\u00a8\u0006B\b\u001a\u0006LJKK98" + }, + { + "type": "sin_recorrido", + "entity": "\n$5dfa428a-0fbd-4207-96e0-e800166daa0d\"/\u0012\u001d\rLj\u0012\u00c2\u0015\u00f8\u00ef\u0091\u00c2\u001d\u0000\u0000\u0080@!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00d8\u0086\u0094\u00a8\u0006B\b\u001a\u0006JRZZ58" + }, + { + "type": "sin_recorrido", + "entity": "\n$ce4c3eae-c332-4575-a344-dca4b62a54c4\"/\u0012\u001d\rxe\u0012\u00c2\u0015J\u00e7\u0091\u00c2\u001d\u0000\u0000\u00b4B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ce\u00e5\u0097\u00a8\u0006B\b\u001a\u0006JJJC36" + }, + { + "type": "sin_recorrido", + "entity": "\n$42caac29-6296-4e90-ab94-7f5b8dd09941\"/\u0012\u001d\r\u0011j\u0012\u00c2\u0015\u00d7\u00ef\u0091\u00c2\u001d\u0000\u0000xB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ee\u00dc\u00f3\u00a7\u0006B\b\u001a\u0006FLRY75" + }, + { + "type": "sin_recorrido", + "entity": "\n$5d9c2140-e92d-47a0-8ed7-be9d13739336\"/\u0012\u001d\rc\u00f8\u0012\u00c2\u00153-\u0092\u00c2\u001d\u0000\u00000C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0082\u00d6\u0093\u00a8\u0006B\b\u001a\u0006FCBR16" + }, + { + "type": "sin_recorrido", + "entity": "\n$dfb89f11-02f4-44e2-89f1-ab6dc902cf10\"/\u0012\u001d\r\u0017\u0015\u0013\u00c2\u0015\u00b3!\u0092\u00c2\u001d\u0000\u0000\u00c0A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00de\u00a0\u0093\u00a8\u0006B\b\u001a\u0006LGVV84" + }, + { + "type": "sin_recorrido", + "entity": "\n$1d67c1c3-fe38-431d-8240-0af6861ffa80\"/\u0012\u001d\rH\u00c1\u0013\u00c2\u0015\u009b\u000f\u0092\u00c2\u001d\u0000\u0000\u00a4C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00e4\u00f6\u0092\u00a8\u0006B\b\u001a\u0006XW8423" + }, + { + "type": "sin_recorrido", + "entity": "\n$02b6113b-f706-4be4-b5e6-efd6328b4948\"/\u0012\u001d\rb\u00ff\u0012\u00c2\u0015\u00fd2\u0092\u00c2\u001d\u0000\u0080\u008bC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0088\u00e7\u0097\u00a8\u0006B\b\u001a\u0006DPGK83" + }, + { + "type": "sin_recorrido", + "entity": "\n$221df7ef-0020-49d9-94bb-8ea4c79ce86a\"/\u0012\u001d\rW\u00b3\u0013\u00c2\u0015'\u000b\u0092\u00c2\u001d\u0000\u0000\u000eC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UUU?(\u00d6\u00e7\u0097\u00a8\u0006B\b\u001a\u0006LZPT78" + }, + { + "type": "sin_recorrido", + "entity": "\n$3109e028-0817-484b-8be4-33d280f35529\"/\u0012\u001d\r\u0006\u00bb\u0013\u00c2\u0015\u00a5\u0007\u0092\u00c2\u001d\u0000\u0000\u00b0B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-r\u001cg@(\u00dd\u00b7\u0093\u00a8\u0006B\b\u001a\u0006GYGG99" + }, + { + "type": "sin_recorrido", + "entity": "\n$680068f6-ae74-4729-a4ee-26ceaf6eeb0d\"/\u0012\u001d\rm\u00ba\u0013\u00c2\u0015\u0081\u000b\u0092\u00c2\u001d\u0000\u0000\u001aC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u008a\u00de\u008d\u00a8\u0006B\b\u001a\u0006FTPC75" + }, + { + "type": "sin_recorrido", + "entity": "\n$fae6af9a-0241-4f2b-8522-43ca0fb170a8\"/\u0012\u001d\r\u008d*\u0013\u00c2\u00154$\u0092\u00c2\u001d\u0000\u0000\u001aC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00eb\u00a2\u0093\u00a8\u0006B\b\u001a\u0006CZBW17" + }, + { + "type": "sin_recorrido", + "entity": "\n$3be70b4d-6cf8-4420-8c69-b56f0ec9e500\"/\u0012\u001d\ry\u00d5\u0013\u00c2\u0015\u00a8\u0005\u0092\u00c2\u001d\u0000\u0000EC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c2\u00e8\u0097\u00a8\u0006B\b\u001a\u0006ZY4551" + }, + { + "type": "sin_recorrido", + "entity": "\n$de5b2c9c-6a2d-4a42-b343-d587af108234\"/\u0012\u001d\r+\u00c4\u0013\u00c2\u0015\u00f2\r\u0092\u00c2\u001d\u0000\u0000\u00aaC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00d4\u00cb\u0093\u00a8\u0006B\b\u001a\u0006YJ7926" + }, + { + "type": "sin_recorrido", + "entity": "\n$48d2f4ca-c80f-4cc5-9bce-faec203b8faf\"/\u0012\u001d\r1\u00d5\u0013\u00c2\u0015\u0085\u0005\u0092\u00c2\u001d\u0000\u00004B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00d4\u009b\u0097\u00a8\u0006B\b\u001a\u0006KTFG32" + }, + { + "type": "sin_recorrido", + "entity": "\n$ce425c77-231e-4a59-bf1c-c0c140015a72\"/\u0012\u001d\r\u00d6\u00d4\u0013\u00c2\u0015`\u0005\u0092\u00c2\u001d\u0000\u0000`A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ce\u00f6\u0096\u00a8\u0006B\b\u001a\u0006LGVH69" + }, + { + "type": "sin_recorrido", + "entity": "\n$1b5877e3-0481-47a9-ad2e-acf678f22354\"/\u0012\u001d\r\u00b2P\u0013\u00c2\u0015\u0091K\u0092\u00c2\u001d\u0000\u00004C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009a\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HWHL53" + }, + { + "type": "sin_recorrido", + "entity": "\n$64fe0313-575b-4840-a6b8-158652d78bf1\"/\u0012\u001d\r\u00e2P\u0013\u00c2\u0015\u008cK\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0080\u00dd\u0097\u00a8\u0006B\b\u001a\u0006HJRY42" + }, + { + "type": "sin_recorrido", + "entity": "\n$22595704-f725-448b-82b6-ce50cb49d8a8\"/\u0012\u001d\r\u0098R\u0013\u00c2\u0015'?\u0092\u00c2\u001d\u0000\u0000\u00b0A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0084\u00c6\u0092\u00a8\u0006B\b\u001a\u0006YT2219" + }, + { + "type": "sin_recorrido", + "entity": "\n$d919c1f2-6bd4-4aa9-b040-7f5798bccfa8\"/\u0012\u001d\r\u00acP\u0013\u00c2\u0015\u0093K\u0092\u00c2\u001d\u0000\u00006C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0094\u00e8\u0097\u00a8\u0006B\b\u001a\u0006WF9290" + }, + { + "type": "sin_recorrido", + "entity": "\n$55b67ba0-3dc8-4ad0-af48-18469138658e\"/\u0012\u001d\r\u00feP\u0013\u00c2\u0015\u009eK\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0090\u00e6\u0097\u00a8\u0006B\b\u001a\u0006FXRL54" + }, + { + "type": "sin_recorrido", + "entity": "\n$09a1acfb-1b84-4b90-af4d-faf6314c90fb\"/\u0012\u001d\r\u00daP\u0013\u00c2\u0015\u00f4K\u0092\u00c2\u001d\u0000\u0080\u009dC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u008e>(\u0096\u00e6\u0097\u00a8\u0006B\b\u001a\u0006FLHP40" + }, + { + "type": "sin_recorrido", + "entity": "\n$82a599d5-f68d-41cb-a962-f710b8181dbd\"/\u0012\u001d\r\u00cbe\u0013\u00c2\u0015\u00d5H\u0092\u00c2\u001d\u0000\u0080\u00acC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00e2\u00e5\u0097\u00a8\u0006B\b\u001a\u0006HZSD20" + }, + { + "type": "sin_recorrido", + "entity": "\n$caae6e26-f625-4cd2-873f-0f3a973b1393\"/\u0012\u001d\rjN\u0013\u00c2\u0015\u00d7L\u0092\u00c2\u001d\u0000\u0000\u00abC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u000e?(\u00e6\u00ad\u0093\u00a8\u0006B\b\u001a\u0006LJKK13" + }, + { + "type": "sin_recorrido", + "entity": "\n$d3424fb3-135d-4778-b380-5e2cc8c0ffdf\"/\u0012\u001d\r!f\u0013\u00c2\u0015\u00e3H\u0092\u00c2\u001d\u0000\u0000\u00d4B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0083\u00d8\u0096\u00a8\u0006B\b\u001a\u0006FSLB58" + }, + { + "type": "sin_recorrido", + "entity": "\n$aa383a41-96b6-4e46-a19a-d29c90828b10\"/\u0012\u001d\r\u00f6e\u0013\u00c2\u0015\u00c3H\u0092\u00c2\u001d\u0000\u0000\\B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c9\u00c8\u0093\u00a8\u0006B\b\u001a\u0006YE1570" + }, + { + "type": "sin_recorrido", + "entity": "\n$d6da138b-b563-47d7-87fc-9fe34fe6403c\"/\u0012\u001d\r\ff\u0013\u00c2\u0015\u00d8H\u0092\u00c2\u001d\u0000\u0000\u00e4B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ec\u00a9\u0093\u00a8\u0006B\b\u001a\u0006YU2126" + }, + { + "type": "sin_recorrido", + "entity": "\n$bc2355f0-a774-438b-bd29-2f2f634e8b90\"/\u0012\u001d\r\u0013f\u0013\u00c2\u0015\u00ecH\u0092\u00c2\u001d\u0000\u0000\u00b0B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00d0\u0090\u0093\u00a8\u0006B\b\u001a\u0006WR8678" + }, + { + "type": "sin_recorrido", + "entity": "\n$78deb406-5057-4635-bf8b-d357cf754153\"/\u0012\u001d\r \u00db\u0012\u00c2\u0015\u009e\u00f4\u0091\u00c2\u001d\u0000\u0000tB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0094\u00e5\u0097\u00a8\u0006B\b\u001a\u0006GLZD62" + }, + { + "type": "sin_recorrido", + "entity": "\n$b764eeae-5569-4cd9-83ff-3fd673b5a0bf\"/\u0012\u001d\r6\u00e3\u0012\u00c2\u0015\fI\u0092\u00c2\u001d\u0000\u0000\u0097C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u008a\u00e1\u0093\u00a8\u0006B\b\u001a\u0006DKTD35" + }, + { + "type": "sin_recorrido", + "entity": "\n$e56f00e6-b44b-4bdd-9f74-76eff9ee1513\"/\u0012\u001d\r6\u00db\u0012\u00c2\u0015\u009f\u00f4\u0091\u00c2\u001d\u0000\u0000CC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f2\u00af\u0082\u00a8\u0006B\b\u001a\u0006CRVL31" + }, + { + "type": "sin_recorrido", + "entity": "\n$4a17817f-bc30-465f-9366-df70be7122b7\"/\u0012\u001d\r\u00f4\u00d7\u0012\u00c2\u0015\u00d8\u00f2\u0091\u00c2\u001d\u0000\u0000vC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b5\u00e8\u0097\u00a8\u0006B\b\u001a\u0006BLYK22" + }, + { + "type": "sin_recorrido", + "entity": "\n$b54c5771-cd60-4bd5-a8d2-74f8bae6ae3f\"/\u0012\u001d\r5\u00f7\u0012\u00c2\u0015'\u00fc\u0091\u00c2\u001d\u0000\u0000aC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UU\u00d5?(\u0086\u00b6\u0093\u00a8\u0006B\b\u001a\u0006BLYY38" + }, + { + "type": "sin_recorrido", + "entity": "\n$ebfc601a-2048-4aa3-8461-349e4370dcde\"/\u0012\u001d\r\u009f\u00da\u0012\u00c2\u0015{\u00f4\u0091\u00c2\u001d\u0000\u0000\u00a6C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00da\u00c6\u0093\u00a8\u0006B\b\u001a\u0006CKVL24" + }, + { + "type": "sin_recorrido", + "entity": "\n$22f7d3be-391b-47b0-8e64-dd14f455a29c\"/\u0012\u001d\r\u00b5\u00e4\u0012\u00c2\u0015\u00f2A\u0092\u00c2\u001d\u0000\u0000\u0004C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00e7\u00ba\u00fd\u00a7\u0006B\b\u001a\u0006FCJS57" + }, + { + "type": "sin_recorrido", + "entity": "\n$9443e8f2-e4f5-4c0a-97fc-3f2261f127f3\"/\u0012\u001d\r\u000b\u00d8\u0012\u00c2\u0015\u00f1\u00f2\u0091\u00c2\u001d\u0000\u0000wC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u008e?(\u00fa\u00e6\u0097\u00a8\u0006B\b\u001a\u0006FYBB66" + }, + { + "type": "sin_recorrido", + "entity": "\n$0f9d02a6-c1d2-4ce9-99cb-c67b1b2660f2\"/\u0012\u001d\r\u00df\u00d7\u0012\u00c2\u0015\u00c2\u00f2\u0091\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u009c\u0080\u0088\u00a8\u0006B\b\u001a\u0006FVZD67" + }, + { + "type": "sin_recorrido", + "entity": "\n$17818b5c-954c-4487-bf74-97e5dd7a12a1\"/\u0012\u001d\r\u0092\u001d\u0013\u00c2\u0015*:\u0092\u00c2\u001d\u0000\u0000\u00aeC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0098\u00e8\u0097\u00a8\u0006B\b\u001a\u0006HDLR86" + }, + { + "type": "sin_recorrido", + "entity": "\n$a7d8a996-261c-4ad0-bcff-eacd6fc20024\"/\u0012\u001d\r@\u0011\u0013\u00c2\u0015A:\u0092\u00c2\u001d\u0000\u0000DC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00be\u00e6\u0097\u00a8\u0006B\b\u001a\u0006RKKW57" + }, + { + "type": "sin_recorrido", + "entity": "\n$f3489563-8241-4497-96fc-e64fb9c2c15d\"/\u0012\u001d\rB\u0011\u0013\u00c2\u0015\u00ff9\u0092\u00c2\u001d\u0000\u0000`C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u008e>(\u00a8\u00c7\u0097\u00a8\u0006B\b\u001a\u0006RLYS69" + }, + { + "type": "sin_recorrido", + "entity": "\n$c7d4e058-08a0-4b54-84b7-d356a53f7009\"/\u0012\u001d\r\u00be\u00de\u0012\u00c2\u0015QF\u0092\u00c2\u001d\u0000\u0000\u0094B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0094\u00e8\u0097\u00a8\u0006B\b\u001a\u0006DHDV83" + }, + { + "type": "sin_recorrido", + "entity": "\n$7710501d-8d81-4b3b-8d8d-0fcd139396e1\"/\u0012\u001d\r\t\u0016\u0013\u00c2\u0015\u00b4:\u0092\u00c2\u001d\u0000\u0000&C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u00a0@(\u008e\u00e8\u0097\u00a8\u0006B\b\u001a\u0006YV2199" + }, + { + "type": "sin_recorrido", + "entity": "\n$e7ba6391-ad7f-481c-9427-729330db1c3c\"/\u0012\u001d\r\u0098*\u0013\u00c2\u0015Y6\u0092\u00c2\u001d\u0000\u0000\u0090A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00e5\u0082\u00fd\u00a7\u0006B\b\u001a\u0006DWHP44" + }, + { + "type": "sin_recorrido", + "entity": "\n$f174bea3-e1c1-4e3e-8ac2-8fc1e06acd71\"/\u0012\u001d\r\u008d\u00e2\u0012\u00c2\u0015\tD\u0092\u00c2\u001d\u0000\u0000JC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00ab\u00aa\u00ba@(\u0098\u00e8\u0097\u00a8\u0006B\b\u001a\u0006YR4587" + }, + { + "type": "sin_recorrido", + "entity": "\n$3b04c105-c2a8-4506-b915-e13e67ef39e0\"/\u0012\u001d\r\u00c9\u0013\u0013\u00c2\u0015D:\u0092\u00c2\u001d\u0000\u0080\u0087C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00fa\u00f2\u0096\u00a8\u0006B\b\u001a\u0006FYBD31" + }, + { + "type": "sin_recorrido", + "entity": "\n$14ca2a90-4341-45a3-97dd-8dca32918ec3\"/\u0012\u001d\r\u0089T\u0013\u00c2\u0015\u00e8\u0001\u0092\u00c2\u001d\u0000\u0000\u0080A!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u008e\u009a\u0092\u00a8\u0006B\b\u001a\u0006FXRL50" + }, + { + "type": "sin_recorrido", + "entity": "\n$29a0df92-be05-4615-a97b-cfd013241da1\"/\u0012\u001d\r+\u001e\u0013\u00c2\u0015\u00ad2\u0092\u00c2\u001d\u0000\u0000eC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b6\u00e8\u0097\u00a8\u0006B\b\u001a\u0006JRSS99" + }, + { + "type": "sin_recorrido", + "entity": "\n$39778789-5b79-4557-a261-e6c963b52154\"/\u0012\u001d\r\u00ce-\u0013\u00c2\u0015w\u0017\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00e1\u00f2\u0082\u00a8\u0006B\b\u001a\u0006CYVJ50" + }, + { + "type": "sin_recorrido", + "entity": "\n$08646c91-9cd5-4137-9a9d-df293f1c63fd\"/\u0012\u001d\r\u000e\u001e\u0013\u00c2\u0015\u00b72\u0092\u00c2\u001d\u0000\u0000\u0095C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ce\u00e4\u0093\u00a8\u0006B\b\u001a\u0006HRCC76" + }, + { + "type": "sin_recorrido", + "entity": "\n$7ae21568-e5d4-448b-a4bb-746a35e70b06\"/\u0012\u001d\rL\u0019\u0013\u00c2\u0015\u009d,\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00fb\u00e1\u00f8\u00a7\u0006B\b\u001a\u0006WC4676" + }, + { + "type": "sin_recorrido", + "entity": "\n$9a46132a-86ac-4bd8-bfdd-6b6f91636d12\"/\u0012\u001d\r\"\u00f6\u0012\u00c2\u0015\u008c0\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00d3\u00dc\u0092\u00a8\u0006B\b\u001a\u0006XU2661" + }, + { + "type": "sin_recorrido", + "entity": "\n$609b2e9a-227d-4db7-95db-fdabdd257482\"/\u0012\u001d\r\r\u001e\u0013\u00c2\u0015\u00bc2\u0092\u00c2\u001d\u0000\u0000\u0091C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c6\u00e6\u0097\u00a8\u0006B\b\u001a\u0006RTZZ72" + }, + { + "type": "sin_recorrido", + "entity": "\n$b53bb5fb-0396-41d4-a7ae-eb6480f14566\"/\u0012\u001d\r\u0013\u001e\u0013\u00c2\u0015\u00942\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0088\u00e5\u0096\u00a8\u0006B\b\u001a\u0006XY6940" + }, + { + "type": "sin_recorrido", + "entity": "\n$90e8daf2-472b-4fd2-bbfe-1a12fab35f8e\"/\u0012\u001d\r\u001b\u001e\u0013\u00c2\u0015\u009a2\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a6\u00ee\u0096\u00a8\u0006B\b\u001a\u0006FWGC75" + }, + { + "type": "sin_recorrido", + "entity": "\n$bfe8f4e2-c324-45af-a712-6251b3ea6d6e\"/\u0012\u001d\r\u00a0-\u0013\u00c2\u0015v\u0017\u0092\u00c2\u001d\u0000\u0000wC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000 @(\u00cc\u00e9\u0088\u00a8\u0006B\b\u001a\u0006DCZK29" + }, + { + "type": "sin_recorrido", + "entity": "\n$ab6767dc-d73b-47a5-b53b-7cd7e817ec10\"/\u0012\u001d\rB'\u0013\u00c2\u0015\u00bb4\u0092\u00c2\u001d\u0000\u0080\u0086C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u008e>(\u00ab\u00e8\u0097\u00a8\u0006B\b\u001a\u0006WW5182" + }, + { + "type": "sin_recorrido", + "entity": "\n$760a0029-aff1-4bd7-b7ef-be4150ebd67e\"/\u0012\u001d\r\u001c\u001d\u0013\u00c2\u0015\u00c22\u0092\u00c2\u001d\u0000\u0000>C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00da\u00ee\u0096\u00a8\u0006B\b\u001a\u0006FCHP81" + }, + { + "type": "sin_recorrido", + "entity": "\n$8f28c26a-8555-477e-8eb3-7c30b496d6c9\"/\u0012\u001d\r:\u001e\u0013\u00c2\u0015\u00d82\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00ed\u00ee\u0095\u00a8\u0006B\b\u001a\u0006FXRS14" + }, + { + "type": "sin_recorrido", + "entity": "\n$c65cb4fe-1bdf-47d4-9d7f-8a8f459e6da9\"/\u0012\u001d\r5\u001f\u0013\u00c2\u0015\u0097\u0019\u0092\u00c2\u001d\u0000\u0000zC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u00de@(\u009a\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FXZX50" + }, + { + "type": "sin_recorrido", + "entity": "\n$a7238dc1-cd2f-47ff-a134-a1ed32bb756b\"/\u0012\u001d\rl0\u0013\u00c2\u0015\u00e2\u0018\u0092\u00c2\u001d\u0000\u0000\u0080@!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c6\u00e6\u0097\u00a8\u0006B\b\u001a\u0006JSBB13" + }, + { + "type": "sin_recorrido", + "entity": "\n$33bd6961-15bb-438e-8348-a9d933cbeb19\"/\u0012\u001d\r0(\u0013\u00c2\u0015\u00d9\u0015\u0092\u00c2\u001d\u0000\u0000\u00a8C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UU\u0005A(\u00cd\u00e8\u0097\u00a8\u0006B\b\u001a\u0006XV3434" + }, + { + "type": "sin_recorrido", + "entity": "\n$ed103d3b-322d-4414-a282-700d06ff9b50\"/\u0012\u001d\r\r\u00e0\u0012\u00c2\u0015\u00f0=\u0092\u00c2\u001d\u0000\u0000\u00a4C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0092\u00e8\u0097\u00a8\u0006B\b\u001a\u0006FYBB82" + }, + { + "type": "sin_recorrido", + "entity": "\n$cecc1a88-2eed-4936-acee-dc3fb95ede8b\"/\u0012\u001d\r\u00f6-\u0013\u00c2\u0015m\u0017\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a9\u00fc\u008e\u00a8\u0006B\b\u001a\u0006YF9154" + }, + { + "type": "sin_recorrido", + "entity": "\n$6e55e460-3cab-48cc-b844-bf14b6fe297a\"/\u0012\u001d\r\u00e46\u0013\u00c2\u0015\u00a3\u0016\u0092\u00c2\u001d\u0000\u0000xB!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u008e@(\u008e\u00e6\u0097\u00a8\u0006B\b\u001a\u0006ZT4054" + }, + { + "type": "sin_recorrido", + "entity": "\n$5042c1cd-1d3c-4064-93ea-7d8213da8e31\"/\u0012\u001d\r\u00ed-\u0013\u00c2\u0015|\u0017\u0092\u00c2\u001d\u0000\u0080\u00a9C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-UU\u00d5?(\u00db\u00c9\u0093\u00a8\u0006B\b\u001a\u0006YR4140" + }, + { + "type": "sin_recorrido", + "entity": "\n$e71bb626-bed5-4cac-a756-f6662288188f\"/\u0012\u001d\r\u00a5-\u0013\u00c2\u0015{\u0017\u0092\u00c2\u001d\u0000\u0000\u00a6C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c0\u00b5\u0097\u00a8\u0006B\b\u001a\u0006BZXX79" + }, + { + "type": "sin_recorrido", + "entity": "\n$79be5e6b-a681-4678-be5e-56a06fe48387\"/\u0012\u001d\r\u0081\u00e0\u0012\u00c2\u0015\u00d7=\u0092\u00c2\u001d\u0000\u0000\u00a6C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00f2\u00ee\u0091\u00a8\u0006B\b\u001a\u0006RSTV25" + }, + { + "type": "sin_recorrido", + "entity": "\n$797d2b5c-986a-4cab-bf00-094f32b691a1\"/\u0012\u001d\r\u0084\u0091\u0013\u00c2\u0015\u00adF\u0092\u00c2\u001d\u0000\u0000\u0090C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-r\u001cg@(\u00d6\u0090\u0093\u00a8\u0006B\b\u001a\u0006FNJS27" + }, + { + "type": "sin_recorrido", + "entity": "\n$b7db8e5b-7a6e-4f6a-b1e2-39f441f00e10\"/\u0012\u001d\r\t6\u0013\u00c2\u0015o\u0017\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u008c\u0090\u0082\u00a8\u0006B\b\u001a\u0006YR4142" + }, + { + "type": "sin_recorrido", + "entity": "\n$7deb199b-71a9-415a-8c26-7d39f00d930c\"/\u0012\u001d\r\u000e\u00e0\u0012\u00c2\u0015\u00fc=\u0092\u00c2\u001d\u0000\u0000nC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00e8\u0083\u008d\u00a8\u0006B\b\u001a\u0006WV6704" + }, + { + "type": "sin_recorrido", + "entity": "\n$b987cc97-4c16-4cc6-90db-84e3af870450\"/\u0012\u001d\r.\u00e0\u0012\u00c2\u0015\b>\u0092\u00c2\u001d\u0000\u0000~C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0082\u009d\u0097\u00a8\u0006B\b\u001a\u0006HJRY46" + }, + { + "type": "sin_recorrido", + "entity": "\n$1dccd6be-5c21-49eb-8400-dd139e324a58\"/\u0012\u001d\rk-\u0013\u00c2\u0015\u00af\u0017\u0092\u00c2\u001d\u0000\u0000`C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u000e?(\u00e0\u00cf\u0097\u00a8\u0006B\b\u001a\u0006YB7527" + }, + { + "type": "sin_recorrido", + "entity": "\n$c339ea41-0a7d-4c24-919b-90263ec2fbbb\"/\u0012\u001d\rW-\u0013\u00c2\u0015\u007f\u0017\u0092\u00c2\u001d\u0000\u0000\u0089C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00c8\u00db\u0093\u00a8\u0006B\b\u001a\u0006YR1886" + }, + { + "type": "sin_recorrido", + "entity": "\n$928bf190-7521-4e31-9544-ffcdb3315439\"/\u0012\u001d\r\u00c8=\u0013\u00c2\u0015s\u0010\u0092\u00c2\u001d\u0000\u0000\u0095C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a2\u00dc\u0093\u00a8\u0006B\b\u001a\u0006CPHW22" + }, + { + "type": "sin_recorrido", + "entity": "\n$b2625d35-725f-4921-8b5e-434be8083e76\"/\u0012\u001d\r\u00ed8\u0013\u00c2\u0015p\u000f\u0092\u00c2\u001d\u0000\u0080\u009aC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0086\u00d6\u008d\u00a8\u0006B\b\u001a\u0006CKRB19" + }, + { + "type": "sin_recorrido", + "entity": "\n$12bd7037-f853-4fcf-818c-2e7a246a5d0a\"/\u0012\u001d\r\u00b4\u00e0\u0012\u00c2\u0015\u0005G\u0092\u00c2\u001d\u0000\u0000\u0084B!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u0084\u0084\u0082\u00a8\u0006B\b\u001a\u0006XY9669" + }, + { + "type": "sin_recorrido", + "entity": "\n$ff3a827a-d657-4e01-9e95-e0fca8bd0779\"/\u0012\u001d\r*-\u0013\u00c2\u0015\u00a4\u0017\u0092\u00c2\u001d\u0000\u0000\u00adC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a6\u00e8\u0097\u00a8\u0006B\b\u001a\u0006RSZG39" + }, + { + "type": "sin_recorrido", + "entity": "\n$bce4d453-22dd-4398-b17a-9249995ffc01\"/\u0012\u001d\r\u00ad8\u0013\u00c2\u0015\u00d3\u0013\u0092\u00c2\u001d\u0000\u0000\u00a2C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u00e48\u008e?(\u00d7\u00fc\u0095\u00a8\u0006B\b\u001a\u0006YE2806" + }, + { + "type": "sin_recorrido", + "entity": "\n$06a06471-ef8f-437c-90fd-dca570fe139c\"/\u0012\u001d\r\u00bd-\u0013\u00c2\u0015z6\u0092\u00c2\u001d\u0000\u0000\u0097C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00a4\u00db\u0096\u00a8\u0006B\b\u001a\u0006HFYB67" + }, + { + "type": "sin_recorrido", + "entity": "\n$3238bfcd-8105-40c7-9518-cb5c6537eeb0\"/\u0012\u001d\r\u00d88\u0013\u00c2\u0015\u00ad\u0013\u0092\u00c2\u001d\u0000\u0000\u0010C!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00b4\u00ad\u0093\u00a8\u0006B\b\u001a\u0006CKGR61" + }, + { + "type": "sin_recorrido", + "entity": "\n$f7c79721-13f9-4862-b778-221a893ce05c\"/\u0012\u001d\r\u00b5;\u0013\u00c2\u0015\u00c3\u0019\u0092\u00c2\u001d\u0000\u0000\u0000\u0000!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00be\u00df\u0093\u00a8\u0006B\b\u001a\u0006BVPG38" + }, + { + "type": "sin_recorrido", + "entity": "\n$9ed06546-c0c2-48ab-889d-da13dcd732a8\"/\u0012\u001d\r\u00e38\u0013\u00c2\u0015\u009a\u0013\u0092\u00c2\u001d\u0000\u0000\u008dC!\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-\u0000\u0000\u0000\u0000(\u00e9\u00c8\u008d\u00a8\u0006B\b\u001a\u0006BTRB60" + } +] \ No newline at end of file diff --git a/notebooks/get_realtime_data.ipynb b/notebooks/get_realtime_data.ipynb new file mode 100644 index 0000000..fe94c0b --- /dev/null +++ b/notebooks/get_realtime_data.ipynb @@ -0,0 +1,194 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Requirement already satisfied: protobuf in /usr/local/lib/python3.8/site-packages (4.24.3)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\u001b[33mWARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv\u001b[0m\u001b[33m\n", + "\u001b[0m\n", + "\u001b[1m[\u001b[0m\u001b[34;49mnotice\u001b[0m\u001b[1;39;49m]\u001b[0m\u001b[39;49m A new release of pip is available: \u001b[0m\u001b[31;49m23.0.1\u001b[0m\u001b[39;49m -> \u001b[0m\u001b[32;49m23.2.1\u001b[0m\n", + "\u001b[1m[\u001b[0m\u001b[34;49mnotice\u001b[0m\u001b[1;39;49m]\u001b[0m\u001b[39;49m To update, run: \u001b[0m\u001b[32;49mpip install --upgrade pip\u001b[0m\n", + "\n", + "WARNING: apt does not have a stable CLI interface. Use with caution in scripts.\n", + "\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Hit:1 http://deb.debian.org/debian bookworm InRelease\n", + "Hit:2 http://deb.debian.org/debian bookworm-updates InRelease\n", + "Hit:3 http://deb.debian.org/debian-security bookworm-security InRelease\n", + "Reading package lists...\n", + "Building dependency tree...\n", + "Reading state information...\n", + "9 packages can be upgraded. Run 'apt list --upgradable' to see them.\n", + "Reading package lists..." + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\n", + "WARNING: apt does not have a stable CLI interface. Use with caution in scripts.\n", + "\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "Building dependency tree...\n", + "Reading state information...\n", + "protobuf-compiler is already the newest version (3.21.12-3).\n", + "0 upgraded, 0 newly installed, 0 to remove and 9 not upgraded.\n" + ] + } + ], + "source": [ + "import os\n", + "\n", + "commands = [\n", + " 'pip install protobuf',\n", + " # 'pip install gtfs_realtime_pb2',\n", + " 'apt update -y',\n", + " 'apt install protobuf-compiler -y',\n", + "]\n", + "\n", + "[os.system(cmd) for cmd in commands];" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [], + "source": [ + "from google.transit import gtfs_realtime_pb2\n", + "from google.protobuf.json_format import MessageToDict # Importar la función MessageToDict\n", + "import json\n", + "\n", + "# Ruta al archivo .proto\n", + "nombre_de_archivo_proto = '/app/data/input/proto_file/input.proto'\n", + "\n", + "# Cargar el archivo .proto\n", + "feed = gtfs_realtime_pb2.FeedMessage()\n", + "with open(nombre_de_archivo_proto, 'rb') as proto_file:\n", + " feed.ParseFromString(proto_file.read())\n", + "\n", + "# Listas para almacenar las entidades con y sin 'trip_update'\n", + "entities_with_trip_update = []\n", + "entities_without_trip_update = []\n", + "\n", + "# Dividir las entidades en las dos listas basadas en la presencia del campo 'trip_update'\n", + "for entity in feed.entity:\n", + " entity_dict = MessageToDict(entity) # Convertir el objeto FeedEntity a un diccionario\n", + " if entity.HasField('trip_update'):\n", + " entities_with_trip_update.append(entity_dict)\n", + " else:\n", + " entities_without_trip_update.append(entity_dict)\n", + "\n", + "# Guardar las entidades en archivos .json separados\n", + "with open(\"/app/data/output/json_file/with_trip_update.json\", \"w\") as file:\n", + " json.dump({\"entity\": entities_with_trip_update}, file)\n", + "\n", + "with open(\"/app/data/output/json_file/without_trip_update.json\", \"w\") as file:\n", + " json.dump({\"entity\": entities_without_trip_update}, file)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import json\n", + "\n", + "def load_with_trip_update(json_path):\n", + " \"\"\"\n", + " Carga el archivo JSON con actualizaciones de viaje y lo convierte en un DataFrame.\n", + " \n", + " Parámetros:\n", + " - json_path (str): Ruta del archivo JSON a cargar.\n", + " \n", + " Retorna:\n", + " - DataFrame: Datos del archivo JSON en formato tabular.\n", + " \"\"\"\n", + " with open(json_path, \"r\") as file:\n", + " data = json.load(file)\n", + " \n", + " df = pd.json_normalize(data=data['entity'], \n", + " record_path=['tripUpdate', 'stopTimeUpdate'], \n", + " meta=[['tripUpdate', 'trip', 'tripId'],\n", + " ['tripUpdate', 'trip', 'startTime'],\n", + " ['tripUpdate', 'trip', 'startDate'],\n", + " ['tripUpdate', 'trip', 'routeId'],\n", + " ['tripUpdate', 'trip', 'directionId'],\n", + " ['tripUpdate', 'vehicle', 'licensePlate'],\n", + " ['tripUpdate', 'timestamp'],\n", + " 'id'],\n", + " errors='ignore')\n", + " return df\n", + "\n", + "def load_without_trip_update(json_path):\n", + " \"\"\"\n", + " Carga el archivo JSON sin actualizaciones de viaje y lo convierte en un DataFrame.\n", + " \n", + " Parámetros:\n", + " - json_path (str): Ruta del archivo JSON a cargar.\n", + " \n", + " Retorna:\n", + " - DataFrame: Datos del archivo JSON en formato tabular.\n", + " \"\"\"\n", + " with open(json_path, \"r\") as file:\n", + " data = json.load(file)\n", + " \n", + " df = pd.json_normalize(data=data['entity'], \n", + " meta=[['vehicle', 'trip', 'tripId'],\n", + " ['vehicle', 'trip', 'startTime'],\n", + " ['vehicle', 'trip', 'startDate'],\n", + " ['vehicle', 'trip', 'routeId'],\n", + " ['vehicle', 'trip', 'directionId'],\n", + " ['vehicle', 'position', 'latitude'],\n", + " ['vehicle', 'position', 'longitude'],\n", + " ['vehicle', 'position', 'bearing'],\n", + " ['vehicle', 'position', 'odometer'],\n", + " ['vehicle', 'position', 'speed'],\n", + " ['vehicle', 'timestamp'],\n", + " ['vehicle', 'vehicle', 'licensePlate'],\n", + " 'id'],\n", + " errors='ignore')\n", + " return df\n", + "\n", + "df_wi = load_with_trip_update('/app/data/output/json_file/with_trip_update.json')\n", + "df_wo = load_without_trip_update('/app/data/output/json_file/without_trip_update.json')" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "orig_nbformat": 4 + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/scripts/BusImage.py b/scripts/Poster/BusImage.py similarity index 100% rename from scripts/BusImage.py rename to scripts/Poster/BusImage.py diff --git a/scripts/BusPlate.py b/scripts/Poster/BusPlate.py similarity index 100% rename from scripts/BusPlate.py rename to scripts/Poster/BusPlate.py diff --git a/scripts/BusPoster.py b/scripts/Poster/BusPoster.py similarity index 100% rename from scripts/BusPoster.py rename to scripts/Poster/BusPoster.py diff --git a/scripts/DistanceAnnouncement.py b/scripts/Poster/DistanceAnnouncement.py similarity index 100% rename from scripts/DistanceAnnouncement.py rename to scripts/Poster/DistanceAnnouncement.py diff --git a/scripts/MyDraw.py b/scripts/Poster/MyDraw.py similarity index 100% rename from scripts/MyDraw.py rename to scripts/Poster/MyDraw.py diff --git a/scripts/TimeAnnouncement.py b/scripts/Poster/TimeAnnouncement.py similarity index 100% rename from scripts/TimeAnnouncement.py rename to scripts/Poster/TimeAnnouncement.py diff --git a/scripts/__init__.py b/scripts/Poster/__init__.py similarity index 100% rename from scripts/__init__.py rename to scripts/Poster/__init__.py diff --git a/scripts/main.py b/scripts/Poster/main.py similarity index 100% rename from scripts/main.py rename to scripts/Poster/main.py diff --git a/scripts/other/convert_proto_to_json.py b/scripts/other/convert_proto_to_json.py new file mode 100644 index 0000000..08c649e --- /dev/null +++ b/scripts/other/convert_proto_to_json.py @@ -0,0 +1,70 @@ +import argparse +import json +from google.transit import gtfs_realtime_pb2 + +def convert_protobuf_to_json(input_path, output_path): + try: + # Crea una instancia de FeedMessage + feed = gtfs_realtime_pb2.FeedMessage() + + # Lee y carga los datos desde el archivo protobuf de entrada + with open(input_path, 'rb') as proto_file: + feed.ParseFromString(proto_file.read()) + + # Convierte el objeto FeedMessage a un diccionario JSON + json_data = { + "header": { + "gtfs_realtime_version": feed.header.gtfs_realtime_version, + "incrementality": feed.header.incrementality, + "timestamp": feed.header.timestamp, + }, + "entity": [ + { + "id": entity.id, + "is_deleted": entity.is_deleted, + "trip_update": { + "trip": { + "trip_id": entity.trip_update.trip.trip_id, + "start_date": entity.trip_update.trip.start_date, + "route_id": entity.trip_update.trip.route_id, + }, + "stop_time_update": [ + { + "stop_sequence": stop_time.stop_sequence, + "arrival": { + "delay": stop_time.arrival.delay, + "time": stop_time.arrival.time, + }, + "departure": { + "delay": stop_time.departure.delay, + "time": stop_time.departure.time, + }, + "stop_id": stop_time.stop_id, + } + for stop_time in entity.trip_update.stop_time_update + ], + }, + } + for entity in feed.entity + ], + } + + # Guarda el JSON en el archivo de salida + with open(output_path, 'w') as json_file: + json.dump(json_data, json_file, indent=2) + + print(f"Se ha generado el archivo JSON en {output_path}") + except Exception as e: + print(f"Error: {str(e)}") + +def main(): + parser = argparse.ArgumentParser(description="Convierte un archivo protobuf a JSON.") + parser.add_argument("--input_file", required=True, help="Ruta al archivo protobuf de entrada.") + parser.add_argument("--output_file", required=True, help="Ruta al archivo JSON de salida.") + + args = parser.parse_args() + + convert_protobuf_to_json(args.input_file, args.output_file) + +if __name__ == "__main__": + main()